[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD buildfix.diff)

2016-07-31 Thread Andreas Radke
Date: Monday, August 1, 2016 @ 03:38:31
  Author: andyrtr
Revision: 272766

fix build with new curl

Added:
  libreoffice-still/trunk/buildfix.diff
Modified:
  libreoffice-still/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ---
 buildfix.diff |   27 +++
 2 files changed, 35 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 22:44:11 UTC (rev 272765)
+++ PKGBUILD2016-08-01 03:38:31 UTC (rev 272766)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.0.6.3
 pkgver=5.0.6
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -65,7 +65,8 @@
libreoffice-still.sh libreoffice-still.csh
gcc6_buildfix.diff
fix_gcc_build_error.diff
-   hunspell14_buildfix.diff)
+   hunspell14_buildfix.diff
+   buildfix.diff)
 noextract=(d6eef4b4cacb2183f2bf265a5a03a354-boost_1_55_0.tar.bz2
1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -144,7 +145,8 @@
  'f82232620f3e27d1532c49af4b36ce9a'
  '6752d22fc5bcbdbef0640c6aca163e50'
  '60a6a9bf86bbcefa8c712dc8ba8ab73f'
- '2afac5aa93f7bcd85058348147c962e4')
+ '2afac5aa93f7bcd85058348147c962e4'
+ 'd386f3a0b484cd3929329a294159f5bc')
 
 prepare() {
cd libreoffice-$_LOver
@@ -155,6 +157,9 @@
ln -s ${srcdir}/$source .
done
popd
+   
+   # 
https://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-5-2=e13db0f16c4ac5a243587e881d7b18979d07f478
+   patch -Np1 -i ../buildfix.diff
 
# unowinreg.dll must be a file not a symlink or the result will become 
a broken symlink
# /usr/share/libreoffice/sdk/classes/win/unowinreg.dll -> 
/build/libreoffice/src/185d60944ea767075d27247c3162b3bc-unowinreg.dll

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2016-08-01 03:38:31 UTC (rev 272766)
@@ -0,0 +1,27 @@
+From e13db0f16c4ac5a243587e881d7b18979d07f478 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= 
+Date: Mon, 25 Jul 2016 12:08:35 +0100
+Subject: curl 7.50.0 has CURL as typedef struct Curl_easy
+
+Change-Id: I22e5e2cdf78c38087579071c1b1570a8adc7d3c4
+(cherry picked from commit 0b8e589875ffd84150470832de18ebd79989efc0)
+Reviewed-on: https://gerrit.libreoffice.org/27513
+Reviewed-by: David Tardon 
+Tested-by: Jenkins 
+
+diff --git a/ucb/source/ucp/ftp/ftploaderthread.cxx 
b/ucb/source/ucp/ftp/ftploaderthread.cxx
+index 25bc26d..5d1cfb5 100644
+--- a/ucb/source/ucp/ftp/ftploaderthread.cxx
 b/ucb/source/ucp/ftp/ftploaderthread.cxx
+@@ -77,7 +77,7 @@ FTPLoaderThread::~FTPLoaderThread() {
+ 
+ 
+ CURL* FTPLoaderThread::handle() {
+-CURL* ret = osl_getThreadKeyData(m_threadKey);
++CURL* ret = static_cast(osl_getThreadKeyData(m_threadKey));
+ if(!ret) {
+ ret = curl_easy_init();
+ if (ret != nullptr) {
+-- 
+cgit v0.10.2
+


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

2016-07-31 Thread Felix Yan
Date: Sunday, July 31, 2016 @ 06:45:43
  Author: felixonmars
Revision: 184700

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-31 06:44:19 UTC (rev 184699)
+++ PKGBUILD2016-07-31 06:45:43 UTC (rev 184700)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=python-phonenumbers
-pkgname=(python-phonenumbers python2-phonenumbers)
-pkgver=7.4.5
-pkgrel=1
-pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
-arch=('any')
-url="https://github.com/daviddrysdale/python-phonenumbers;
-license=('Apache')
-makedepends=("python-setuptools" "python2-setuptools" "git")
-source=("git+https://github.com/daviddrysdale/python-phonenumbers.git#tag=release-$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a python-phonenumbers{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-phonenumbers
-  python setup.py build
-
-  cd "$srcdir"/python-phonenumbers-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-phonenumbers
-  python setup.py test
-
-  cd "$srcdir"/python-phonenumbers-py2
-  python2 setup.py test
-}
-
-package_python-phonenumbers() {
-  depends=('python')
-
-  cd python-phonenumbers
-  python setup.py install -O1 --root "$pkgdir"
-}
-
-package_python2-phonenumbers() {
-  depends=('python2')
-
-  cd python-phonenumbers-py2
-  python2 setup.py install -O1 --root "$pkgdir"
-}

Copied: python-phonenumbers/repos/community-any/PKGBUILD (from rev 184699, 
python-phonenumbers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-31 06:45:43 UTC (rev 184700)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python-phonenumbers
+pkgname=(python-phonenumbers python2-phonenumbers)
+pkgver=7.5.1
+pkgrel=1
+pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
+arch=('any')
+url="https://github.com/daviddrysdale/python-phonenumbers;
+license=('Apache')
+makedepends=("python-setuptools" "python2-setuptools" "git")
+source=("git+https://github.com/daviddrysdale/python-phonenumbers.git#tag=release-$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a python-phonenumbers{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-phonenumbers
+  python setup.py build
+
+  cd "$srcdir"/python-phonenumbers-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-phonenumbers
+  python setup.py test
+
+  cd "$srcdir"/python-phonenumbers-py2
+  python2 setup.py test
+}
+
+package_python-phonenumbers() {
+  depends=('python')
+
+  cd python-phonenumbers
+  python setup.py install -O1 --root "$pkgdir"
+}
+
+package_python2-phonenumbers() {
+  depends=('python2')
+
+  cd python-phonenumbers-py2
+  python2 setup.py install -O1 --root "$pkgdir"
+}


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

2016-07-31 Thread Gaëtan Bisson
Date: Sunday, July 31, 2016 @ 09:30:48
  Author: bisson
Revision: 272753

rebuild for glew-2.0.0

Modified:
  hugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 09:30:08 UTC (rev 272752)
+++ PKGBUILD2016-07-31 09:30:48 UTC (rev 272753)
@@ -6,7 +6,7 @@
 
 pkgname=hugin
 pkgver=2016.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Panorama photo stitcher'
 url='http://hugin.sourceforge.net/'
 license=('GPL')


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

2016-07-31 Thread Gaëtan Bisson
Date: Sunday, July 31, 2016 @ 09:31:14
  Author: bisson
Revision: 272754

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

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

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

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

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


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 10:17:19
  Author: andyrtr
Revision: 272759

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

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

-+
 staging-i686/PKGBUILD   |  349 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   31 ++
 staging-x86_64/PKGBUILD |  349 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   31 ++
 6 files changed, 784 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 272758, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 10:17:19 UTC (rev 272759)
@@ -0,0 +1,349 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2016.41290
+pkgrel=3
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '7303361f2d441eb5c962a996fd77e8fa')
+
+build() {
+   cd "$srcdir"
+
+   # 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_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' 

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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 10:17:07
  Author: andyrtr
Revision: 272758

upgpkg: texlive-bin 2016.41290-3

poppler rebuild

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 10:13:11 UTC (rev 272757)
+++ PKGBUILD2016-07-31 10:17:07 UTC (rev 272758)
@@ -4,7 +4,7 @@
 
 pkgname=('texlive-bin' 'libsynctex')
 pkgver=2016.41290
-pkgrel=2
+pkgrel=3
 license=('GPL')
 arch=('i686' 'x86_64')
 makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:14:02
  Author: andyrtr
Revision: 272744

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

Added:
  poppler/repos/staging-i686/
  poppler/repos/staging-i686/PKGBUILD
(from rev 272743, poppler/trunk/PKGBUILD)
  poppler/repos/staging-x86_64/
  poppler/repos/staging-x86_64/PKGBUILD
(from rev 272743, poppler/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   93 ++
 staging-x86_64/PKGBUILD |   93 ++
 2 files changed, 186 insertions(+)

Copied: poppler/repos/staging-i686/PKGBUILD (from rev 272743, 
poppler/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 08:14:02 UTC (rev 272744)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
+pkgver=0.46.0
+pkgrel=1
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
+options=('!emptydirs')
+url="https://poppler.freedesktop.org/;
+source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
+md5sums=('a6513d6fe72751c58b501403c3da6ef1'
+ 'SKIP')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-cairo-output \
+  --enable-xpdf-headers \
+  --enable-libjpeg --enable-zlib \
+  --enable-poppler-qt4 \
+  --enable-poppler-qt5 \
+  --enable-poppler-glib
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  LANG=en_US.UTF8 make check
+}
+
+package_poppler() {
+  pkgdesc="PDF rendering library based on xpdf 3.0"
+  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'lcms2')
+  optdepends=('poppler-data: encoding data to display PDF documents containing 
CJK characters')
+  conflicts=("poppler-qt3<${pkgver}")
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  sed -e 's/^glib_subdir =.*/glib_subdir =/' \
+  -e 's/^qt4_subdir =.*/qt4_subdir =/' \
+  -e 's/^qt5_subdir =.*/qt5_subdir =/' -i Makefile
+  make DESTDIR="${pkgdir}" install
+
+  rm -f "${pkgdir}"/usr/lib/pkgconfig/poppler-{glib,qt4,qt5}.pc
+}
+
+package_poppler-glib() {
+  pkgdesc="Poppler glib bindings"
+  depends=("poppler=${pkgver}" 'glib2')
+
+  cd "${pkgbase}-${pkgver}"
+  make -C poppler DESTDIR="${pkgdir}" install-libLTLIBRARIES
+  make -C glib DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-glib.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -f "${pkgdir}"/usr/lib/libpoppler.*
+  rm -f "${pkgdir}/usr/bin/poppler-glib-demo"
+}
+
+package_poppler-qt4() {
+  pkgdesc="Poppler Qt4 bindings"
+  provides=("poppler-qt=${pkgver}")
+  replaces=('poppler-qt')
+  conflicts=('poppler-qt')
+  depends=("poppler=${pkgver}" 'qt4')
+
+  cd "${pkgbase}-${pkgver}"
+  make -C poppler DESTDIR="${pkgdir}" install-libLTLIBRARIES
+  make -C qt4 DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-qt4.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -f "${pkgdir}"/usr/lib/libpoppler.*
+}
+
+package_poppler-qt5() {
+  pkgdesc="Poppler Qt5 bindings"
+  depends=("poppler=${pkgver}" 'qt5-base')
+
+  cd "${pkgbase}-${pkgver}"
+  make -C poppler DESTDIR="${pkgdir}" install-libLTLIBRARIES
+  make -C qt5 DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-qt5.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -f "${pkgdir}"/usr/lib/libpoppler.*
+}

Copied: poppler/repos/staging-x86_64/PKGBUILD (from rev 272743, 
poppler/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-31 08:14:02 UTC (rev 272744)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
+pkgver=0.46.0
+pkgrel=1
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
+options=('!emptydirs')
+url="https://poppler.freedesktop.org/;
+source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
+md5sums=('a6513d6fe72751c58b501403c3da6ef1'
+ 'SKIP')
+
+build() {
+  cd 

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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:13:53
  Author: andyrtr
Revision: 272743

upgpkg: poppler 0.46.0-1

upstream update 0.46.0

Modified:
  poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 08:06:15 UTC (rev 272742)
+++ PKGBUILD2016-07-31 08:13:53 UTC (rev 272743)
@@ -1,9 +1,10 @@
 # $Id$
+# Maintainer: AndyRTR 
 # Maintainer: Jan de Groot 
 
 pkgbase=poppler
 pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
-pkgver=0.45.0
+pkgver=0.46.0
 pkgrel=1
 arch=(i686 x86_64)
 license=('GPL')
@@ -12,9 +13,9 @@
 url="https://poppler.freedesktop.org/;
 source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
 test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
-sha256sums=('96dd1a6024bcdaa4530a3b49687db3d5c24ddfd072ccb37c6de0e42599728798'
-'SKIP')
- 
+md5sums=('a6513d6fe72751c58b501403c3da6ef1'
+ 'SKIP')
+
 build() {
   cd ${pkgbase}-${pkgver}
   ./configure --prefix=/usr --sysconfdir=/etc \


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:49:20
  Author: andyrtr
Revision: 272748

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

Added:
  mesa-demos/repos/staging-i686/
  mesa-demos/repos/staging-i686/LICENSE
(from rev 272747, mesa-demos/trunk/LICENSE)
  mesa-demos/repos/staging-i686/PKGBUILD
(from rev 272747, mesa-demos/trunk/PKGBUILD)
  mesa-demos/repos/staging-x86_64/
  mesa-demos/repos/staging-x86_64/LICENSE
(from rev 272747, mesa-demos/trunk/LICENSE)
  mesa-demos/repos/staging-x86_64/PKGBUILD
(from rev 272747, mesa-demos/trunk/PKGBUILD)

-+
 staging-i686/LICENSE|   82 ++
 staging-i686/PKGBUILD   |   31 +
 staging-x86_64/LICENSE  |   82 ++
 staging-x86_64/PKGBUILD |   31 +
 4 files changed, 226 insertions(+)

Copied: mesa-demos/repos/staging-i686/LICENSE (from rev 272747, 
mesa-demos/trunk/LICENSE)
===
--- staging-i686/LICENSE(rev 0)
+++ staging-i686/LICENSE2016-07-31 08:49:20 UTC (rev 272748)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Attention, Contributors
+
+When contributing to the Mesa project you must agree to the licensing terms
+of the component to which you're contributing.
+The following section lists the primary components of the Mesa distribution
+and their respective licenses.
+
+
+Mesa Component Licenses
+
+Component Location   Primary Author  License
+
+Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
+
+Device driverssrc/mesa/drivers/* See drivers See drivers
+
+Ext headers   include/GL/glext.h SGI SGI Free B
+  include/GL/glxext.h
+
+GLUT  src/glut/  Mark KilgardMark's copyright
+
+Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
+
+SGI GLU library   src/glu/sgi/   SGI SGI Free B
+
+demo programs progs/demos/   various see source files
+
+X demos   progs/xdemos/  Brian Paul  see source files
+
+SGI demos progs/samples/ SGI SGI copyright
+
+RedBook demos progs/redbook/ SGI SGI copyright

Copied: mesa-demos/repos/staging-i686/PKGBUILD (from rev 272747, 
mesa-demos/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   

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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:49:09
  Author: andyrtr
Revision: 272747

upgpkg: mesa-demos 8.3.0-2

glew rebuild

Modified:
  mesa-demos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 08:28:56 UTC (rev 272746)
+++ PKGBUILD2016-07-31 08:49:09 UTC (rev 272747)
@@ -4,7 +4,7 @@
 
 pkgname='mesa-demos'
 pkgver=8.3.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 pkgdesc="Mesa demos and tools"
 url="http://mesa3d.sourceforge.net;


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 07:56:10
  Author: andyrtr
Revision: 184704

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

Added:
  toxcore/repos/community-staging-i686/
  toxcore/repos/community-staging-i686/PKGBUILD
(from rev 184703, toxcore/trunk/PKGBUILD)
  toxcore/repos/community-staging-i686/toxcore.conf
(from rev 184703, toxcore/trunk/toxcore.conf)
  toxcore/repos/community-staging-i686/toxcore.install
(from rev 184703, toxcore/trunk/toxcore.install)
  toxcore/repos/community-staging-x86_64/
  toxcore/repos/community-staging-x86_64/PKGBUILD
(from rev 184703, toxcore/trunk/PKGBUILD)
  toxcore/repos/community-staging-x86_64/toxcore.conf
(from rev 184703, toxcore/trunk/toxcore.conf)
  toxcore/repos/community-staging-x86_64/toxcore.install
(from rev 184703, toxcore/trunk/toxcore.install)

--+
 community-staging-i686/PKGBUILD  |   54 +
 community-staging-i686/toxcore.conf  |2 +
 community-staging-i686/toxcore.install   |   11 +
 community-staging-x86_64/PKGBUILD|   54 +
 community-staging-x86_64/toxcore.conf|2 +
 community-staging-x86_64/toxcore.install |   11 +
 6 files changed, 134 insertions(+)

Copied: toxcore/repos/community-staging-i686/PKGBUILD (from rev 184703, 
toxcore/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-07-31 07:56:10 UTC (rev 184704)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Håvard Pettersson 
+# Contributor: naxuroqa 
+# Contributor: Boohbah 
+# Contributor: Kevin MacMartin 
+
+pkgname=toxcore
+pkgver=3747
+_commit=c510e2407f8caa880f38d77386cebc52ae7c1360
+pkgrel=2
+pkgdesc='Secure, configuration-free, P2P Skype replacement backend'
+arch=('i686' 'x86_64')
+url='https://tox.chat'
+license=('GPL3')
+depends=('systemd' 'libconfig' 'libsodium' 'libvpx' 'opus')
+makedepends=('git' 'check')
+conflicts=("tox")
+provides=("tox")
+backup=('etc/tox-bootstrapd.conf')
+install=$pkgname.install
+source=("git+https://github.com/irungentoo/toxcore.git#commit=$_commit;
+'toxcore.conf')
+sha512sums=('SKIP'
+
'71885e69f7b84955f6bdbf27b9e8196349cdd254b02b510433851bd218374d9c47aa7d3946dcc6a5cff6c8e705bc98d8a09de27039f60b8b088784cf8fa9d719')
+
+prepare() {
+  cd $pkgname
+  sed -i "s|/usr/local|/usr|" other/bootstrap_daemon/tox-bootstrapd.service
+}
+
+build() {
+  cd $pkgname
+  autoreconf -if
+  ./configure \
+--prefix=/usr \
+--enable-daemon \
+--disable-ntox \
+--enable-tests
+  make
+}
+
+check() {
+  cd $pkgname
+#  make check || warning "Tests failed" - onion test runs endless
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/toxcore.conf" 
"$pkgdir/usr/lib/sysusers.d/toxcore.conf"
+  install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service 
"$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service"
+  install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.conf 
"$pkgdir/etc/tox-bootstrapd.conf"
+}

Copied: toxcore/repos/community-staging-i686/toxcore.conf (from rev 184703, 
toxcore/trunk/toxcore.conf)
===
--- community-staging-i686/toxcore.conf (rev 0)
+++ community-staging-i686/toxcore.conf 2016-07-31 07:56:10 UTC (rev 184704)
@@ -0,0 +1,2 @@
+u tox-bootstrapd - "Tox bootstrapd"
+g tox-bootstrapd -
\ No newline at end of file

Copied: toxcore/repos/community-staging-i686/toxcore.install (from rev 184703, 
toxcore/trunk/toxcore.install)
===
--- community-staging-i686/toxcore.install  (rev 0)
+++ community-staging-i686/toxcore.install  2016-07-31 07:56:10 UTC (rev 
184704)
@@ -0,0 +1,11 @@
+post_install() {
+  systemd-sysusers toxcore.conf
+  [[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd -g 
tox-bootstrapd var/lib/tox-bootstrapd
+}
+
+post_upgrade() {
+  (( $(vercmp $2 '3523-3') < 0 )) && (
+systemd-sysusers toxcore.conf
+[[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd -g 
tox-bootstrapd var/lib/tox-bootstrapd
+  ) || true
+}

Copied: toxcore/repos/community-staging-x86_64/PKGBUILD (from rev 184703, 
toxcore/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-31 07:56:10 UTC (rev 184704)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Håvard Pettersson 
+# Contributor: naxuroqa 
+# Contributor: Boohbah 
+# Contributor: Kevin MacMartin 
+
+pkgname=toxcore

[arch-commits] Commit in toxcore/repos (staging-i686 staging-x86_64)

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 07:55:40
  Author: andyrtr
Revision: 184703

oops, it's a community pkg

Deleted:
  toxcore/repos/staging-i686/
  toxcore/repos/staging-x86_64/


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:06:04
  Author: andyrtr
Revision: 272741

upgpkg: glew 2.0.0-1

upstream update 2.0.0

Modified:
  glew/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 08:00:28 UTC (rev 272740)
+++ PKGBUILD2016-07-31 08:06:04 UTC (rev 272741)
@@ -4,7 +4,7 @@
 # Contributor: SleepyDog
 
 pkgname=glew
-pkgver=1.13.0
+pkgver=2.0.0
 pkgrel=1
 pkgdesc="The OpenGL Extension Wrangler Library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('BSD' 'MIT' 'GPL')
 depends=('libxmu' 'libxi' 'glu')
 source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
-sha1sums=('d5b1c499f429aa91c466193b4e8ea94a84019e37')
+sha1sums=('6e15c84f7e1fad34cd3679f784a233744ddf048f')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:06:15
  Author: andyrtr
Revision: 272742

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

Added:
  glew/repos/staging-i686/
  glew/repos/staging-i686/PKGBUILD
(from rev 272741, glew/trunk/PKGBUILD)
  glew/repos/staging-x86_64/
  glew/repos/staging-x86_64/PKGBUILD
(from rev 272741, glew/trunk/PKGBUILD)

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

Copied: glew/repos/staging-i686/PKGBUILD (from rev 272741, glew/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 08:06:15 UTC (rev 272742)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Stéphane Gaudreault 
+# Contributor: SleepyDog
+
+pkgname=glew
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="The OpenGL Extension Wrangler Library"
+arch=('i686' 'x86_64')
+url="http://glew.sourceforge.net;
+license=('BSD' 'MIT' 'GPL')
+depends=('libxmu' 'libxi' 'glu')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+sha1sums=('6e15c84f7e1fad34cd3679f784a233744ddf048f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  
+  sed -i 's|lib64|lib|' config/Makefile.linux
+  sed -i '/^.PHONY: .*\.pc$/d' Makefile
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make GLEW_DEST="${pkgdir}/usr" install.all
+  install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+#  chmod 0755 "${pkgdir}"/usr/lib/libGLEW*.so.${pkgver}
+}

Copied: glew/repos/staging-x86_64/PKGBUILD (from rev 272741, 
glew/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-31 08:06:15 UTC (rev 272742)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Stéphane Gaudreault 
+# Contributor: SleepyDog
+
+pkgname=glew
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="The OpenGL Extension Wrangler Library"
+arch=('i686' 'x86_64')
+url="http://glew.sourceforge.net;
+license=('BSD' 'MIT' 'GPL')
+depends=('libxmu' 'libxi' 'glu')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+sha1sums=('6e15c84f7e1fad34cd3679f784a233744ddf048f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  
+  sed -i 's|lib64|lib|' config/Makefile.linux
+  sed -i '/^.PHONY: .*\.pc$/d' Makefile
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make GLEW_DEST="${pkgdir}/usr" install.all
+  install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+#  chmod 0755 "${pkgdir}"/usr/lib/libGLEW*.so.${pkgver}
+}


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:28:56
  Author: andyrtr
Revision: 272746

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

Added:
  cups-filters/repos/staging-i686/
  cups-filters/repos/staging-i686/PKGBUILD
(from rev 272745, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/staging-x86_64/
  cups-filters/repos/staging-x86_64/PKGBUILD
(from rev 272745, cups-filters/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   59 ++
 staging-x86_64/PKGBUILD |   59 ++
 2 files changed, 118 insertions(+)

Copied: cups-filters/repos/staging-i686/PKGBUILD (from rev 272745, 
cups-filters/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 08:28:56 UTC (rev 272746)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.10.0
+pkgrel=2
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups')
+makedepends=('ghostscript' 'ttf-dejavu' 'python') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('d84c6cb3df637a9655e46dfae41dce50')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|cups.service|org.cups.cupsd.service|g" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  
+  # use lp group from cups pkg FS#36769
+  chgrp -R lp ${pkgdir}/etc/cups
+
+  # license
+  mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 "${srcdir}"/${pkgname}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Copied: cups-filters/repos/staging-x86_64/PKGBUILD (from rev 272745, 
cups-filters/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-31 08:28:56 UTC (rev 272746)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.10.0
+pkgrel=2
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups')
+makedepends=('ghostscript' 'ttf-dejavu' 'python') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('d84c6cb3df637a9655e46dfae41dce50')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no 

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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 08:28:48
  Author: andyrtr
Revision: 272745

upgpkg: cups-filters 1.10.0-2

poppler rebuild

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 08:14:02 UTC (rev 272744)
+++ PKGBUILD2016-07-31 08:28:48 UTC (rev 272745)
@@ -3,12 +3,12 @@
 
 pkgname=cups-filters
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="OpenPrinting CUPS Filters"
 arch=('i686' 'x86_64')
 url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
 license=('custom')
-depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups')
 makedepends=('ghostscript' 'ttf-dejavu' 'python') # ttf-dejavu for make check
 optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'


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

2016-07-31 Thread Gaëtan Bisson
Date: Sunday, July 31, 2016 @ 09:22:07
  Author: bisson
Revision: 272750

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

Added:
  inkscape/repos/staging-i686/
  inkscape/repos/staging-i686/PKGBUILD
(from rev 272749, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-x86_64/
  inkscape/repos/staging-x86_64/PKGBUILD
(from rev 272749, inkscape/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   59 ++
 staging-x86_64/PKGBUILD |   59 ++
 2 files changed, 118 insertions(+)

Copied: inkscape/repos/staging-i686/PKGBUILD (from rev 272749, 
inkscape/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 09:22:07 UTC (rev 272750)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.91
+pkgrel=19
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+makedepends=('boost' 'intltool')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib' 
'popt'
+ 'ttf-dejavu' 'python2' 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('gvfs: import clip art'
+'pstoedit: latex formulas'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
+'python2-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=("https://inkscape.org/en/gallery/item/3860/inkscape-0.91.tar.bz2;
+
'http://bazaar.launchpad.net/~inkscape.dev/inkscape/RELEASE_0_91_BRANCH/download/head:/markers_strokepaint.-20091128124040-aej0x7yhxng1m6ly-8339/markers_strokepaint.inx.disabled')
+sha1sums=('9941ee467af570ac71a70f965cd9c48d4993b8f3'
+  'f61909a58c185ed9249b19f71242af2edd32ef9a')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py
+   sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' 
share/*/{test/,}*.py
+   sed -i 's|"python" },|"python2" },|g' 
src/extension/implementation/script.cpp
+   sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
+   sed -i 's|"python"|"python2"|g' src/main.cpp
+
+   # FS#43744
+   mv ../markers_strokepaint.inx.disabled 
share/extensions/markers_strokepaint.inx
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # glibmm 2.46 uses C++11 features
+   CXXFLAGS+=' -std=c++11'
+
+   ./configure \
+   --prefix=/usr \
+   --with-python \
+   --with-perl \
+   --enable-lcms \
+   --enable-poppler-cairo \
+   --disable-strict-build \
+   --disable-dependency-tracking
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: inkscape/repos/staging-x86_64/PKGBUILD (from rev 272749, 
inkscape/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-31 09:22:07 UTC (rev 272750)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.91
+pkgrel=19
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+makedepends=('boost' 'intltool')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib' 
'popt'
+ 'ttf-dejavu' 'python2' 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('gvfs: import clip art'
+'pstoedit: latex formulas'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
+'python2-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=("https://inkscape.org/en/gallery/item/3860/inkscape-0.91.tar.bz2;
+
'http://bazaar.launchpad.net/~inkscape.dev/inkscape/RELEASE_0_91_BRANCH/download/head:/markers_strokepaint.-20091128124040-aej0x7yhxng1m6ly-8339/markers_strokepaint.inx.disabled')
+sha1sums=('9941ee467af570ac71a70f965cd9c48d4993b8f3'
+  'f61909a58c185ed9249b19f71242af2edd32ef9a')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py
+   sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' 
share/*/{test/,}*.py
+   sed -i 's|"python" },|"python2" },|g' 
src/extension/implementation/script.cpp
+   

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

2016-07-31 Thread Gaëtan Bisson
Date: Sunday, July 31, 2016 @ 09:21:16
  Author: bisson
Revision: 272749

rebuild for poppler-0.46.0

Modified:
  inkscape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 08:49:20 UTC (rev 272748)
+++ PKGBUILD2016-07-31 09:21:16 UTC (rev 272749)
@@ -5,7 +5,7 @@
 
 pkgname=inkscape
 pkgver=0.91
-pkgrel=18
+pkgrel=19
 pkgdesc='Professional vector graphics editor'
 url='https://inkscape.org/'
 license=('GPL' 'LGPL')


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

2016-07-31 Thread Gaëtan Bisson
Date: Sunday, July 31, 2016 @ 10:04:51
  Author: bisson
Revision: 272755

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

Added:
  gsfonts/repos/extra-any/PKGBUILD
(from rev 272754, gsfonts/repos/testing-any/PKGBUILD)
  gsfonts/repos/extra-any/install
(from rev 272754, gsfonts/repos/testing-any/install)
Deleted:
  gsfonts/repos/extra-any/PKGBUILD
  gsfonts/repos/extra-any/install
  gsfonts/repos/testing-any/

+
 /PKGBUILD  |   25 +
 /install   |   13 +
 extra-any/PKGBUILD |   25 -
 extra-any/install  |   13 -
 4 files changed, 38 insertions(+), 38 deletions(-)

Deleted: extra-any/PKGBUILD
===
--- extra-any/PKGBUILD  2016-07-31 09:31:14 UTC (rev 272754)
+++ extra-any/PKGBUILD  2016-07-31 10:04:51 UTC (rev 272755)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Firmicus 
-# Contributor: dorphell 
-
-pkgname=gsfonts
-_pkgname=urw-core35-fonts
-pkgver=20150811
-pkgrel=1
-pkgdesc='URW+ Postscript core35 fonts'
-url='http://git.ghostscript.com/?p=urw-core35-fonts.git'
-arch=('any')
-license=('AGPL3')
-makedepends=('git')
-depends=('xorg-font-utils' 'fontconfig')
-source=("git://git.ghostscript.com/${_pkgname}.git#commit=c983ed400dc278dcf20bdff68252fad6d9db7af9")
-sha1sums=('SKIP')
-
-install=install
-
-package() {
-   cd "${srcdir}/${_pkgname}"
-   install -d "${pkgdir}"/usr/share/fonts/Type1
-   install -m644 *.{pfb,pfm,afm} "${pkgdir}"/usr/share/fonts/Type1
-}

Copied: gsfonts/repos/extra-any/PKGBUILD (from rev 272754, 
gsfonts/repos/testing-any/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2016-07-31 10:04:51 UTC (rev 272755)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Firmicus 
+# Contributor: dorphell 
+
+pkgname=gsfonts
+_pkgname=urw-core35-fonts
+pkgver=20160531
+pkgrel=3
+pkgdesc='URW+ Postscript core35 fonts'
+url='http://git.ghostscript.com/?p=urw-core35-fonts.git'
+arch=('any')
+license=('AGPL3')
+makedepends=('git')
+depends=('xorg-font-utils' 'fontconfig')
+source=("git://git.ghostscript.com/${_pkgname}.git#commit=79bcdfb34fbce12b592cce389fa7a19da6b5b018")
+sha1sums=('SKIP')
+
+install=install
+
+package() {
+   cd "${srcdir}/${_pkgname}"
+   install -d "${pkgdir}"/usr/share/fonts/OTF
+   install -m644 *.otf "${pkgdir}"/usr/share/fonts/OTF
+}

Deleted: extra-any/install
===
--- extra-any/install   2016-07-31 09:31:14 UTC (rev 272754)
+++ extra-any/install   2016-07-31 10:04:51 UTC (rev 272755)
@@ -1,13 +0,0 @@
-post_install() {
-   fc-cache -s > /dev/null
-   mkfontscale /usr/share/fonts/Type1
-   mkfontdir /usr/share/fonts/Type1
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: gsfonts/repos/extra-any/install (from rev 272754, 
gsfonts/repos/testing-any/install)
===
--- extra-any/install   (rev 0)
+++ extra-any/install   2016-07-31 10:04:51 UTC (rev 272755)
@@ -0,0 +1,13 @@
+post_install() {
+   fc-cache -s &> /dev/null
+   mkfontscale /usr/share/fonts/OTF &>/dev/null
+   mkfontdir /usr/share/fonts/OTF &>/dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


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

2016-07-31 Thread Felix Yan
Date: Sunday, July 31, 2016 @ 06:44:19
  Author: felixonmars
Revision: 184699

upgpkg: python-phonenumbers 7.5.1-1

Modified:
  python-phonenumbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-30 23:58:02 UTC (rev 184698)
+++ PKGBUILD2016-07-31 06:44:19 UTC (rev 184699)
@@ -3,7 +3,7 @@
 
 pkgname=python-phonenumbers
 pkgname=(python-phonenumbers python2-phonenumbers)
-pkgver=7.4.5
+pkgver=7.5.1
 pkgrel=1
 pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
 arch=('any')


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 07:53:42
  Author: andyrtr
Revision: 184701

upgpkg: toxcore 3747-2

libvpx rebuild, disable testsuite for now - onio test runs endless

Modified:
  toxcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 06:45:43 UTC (rev 184700)
+++ PKGBUILD2016-07-31 07:53:42 UTC (rev 184701)
@@ -8,7 +8,7 @@
 pkgname=toxcore
 pkgver=3747
 _commit=c510e2407f8caa880f38d77386cebc52ae7c1360
-pkgrel=1
+pkgrel=2
 pkgdesc='Secure, configuration-free, P2P Skype replacement backend'
 arch=('i686' 'x86_64')
 url='https://tox.chat'
@@ -42,7 +42,7 @@
 
 check() {
   cd $pkgname
-  make check || warning "Tests failed"
+#  make check || warning "Tests failed" - onion test runs endless
 }
 
 package() {


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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 07:53:56
  Author: andyrtr
Revision: 184702

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

Added:
  toxcore/repos/staging-i686/
  toxcore/repos/staging-i686/PKGBUILD
(from rev 184701, toxcore/trunk/PKGBUILD)
  toxcore/repos/staging-i686/toxcore.conf
(from rev 184701, toxcore/trunk/toxcore.conf)
  toxcore/repos/staging-i686/toxcore.install
(from rev 184701, toxcore/trunk/toxcore.install)
  toxcore/repos/staging-x86_64/
  toxcore/repos/staging-x86_64/PKGBUILD
(from rev 184701, toxcore/trunk/PKGBUILD)
  toxcore/repos/staging-x86_64/toxcore.conf
(from rev 184701, toxcore/trunk/toxcore.conf)
  toxcore/repos/staging-x86_64/toxcore.install
(from rev 184701, toxcore/trunk/toxcore.install)

+
 staging-i686/PKGBUILD  |   54 +++
 staging-i686/toxcore.conf  |2 +
 staging-i686/toxcore.install   |   11 +++
 staging-x86_64/PKGBUILD|   54 +++
 staging-x86_64/toxcore.conf|2 +
 staging-x86_64/toxcore.install |   11 +++
 6 files changed, 134 insertions(+)

Copied: toxcore/repos/staging-i686/PKGBUILD (from rev 184701, 
toxcore/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 07:53:56 UTC (rev 184702)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Håvard Pettersson 
+# Contributor: naxuroqa 
+# Contributor: Boohbah 
+# Contributor: Kevin MacMartin 
+
+pkgname=toxcore
+pkgver=3747
+_commit=c510e2407f8caa880f38d77386cebc52ae7c1360
+pkgrel=2
+pkgdesc='Secure, configuration-free, P2P Skype replacement backend'
+arch=('i686' 'x86_64')
+url='https://tox.chat'
+license=('GPL3')
+depends=('systemd' 'libconfig' 'libsodium' 'libvpx' 'opus')
+makedepends=('git' 'check')
+conflicts=("tox")
+provides=("tox")
+backup=('etc/tox-bootstrapd.conf')
+install=$pkgname.install
+source=("git+https://github.com/irungentoo/toxcore.git#commit=$_commit;
+'toxcore.conf')
+sha512sums=('SKIP'
+
'71885e69f7b84955f6bdbf27b9e8196349cdd254b02b510433851bd218374d9c47aa7d3946dcc6a5cff6c8e705bc98d8a09de27039f60b8b088784cf8fa9d719')
+
+prepare() {
+  cd $pkgname
+  sed -i "s|/usr/local|/usr|" other/bootstrap_daemon/tox-bootstrapd.service
+}
+
+build() {
+  cd $pkgname
+  autoreconf -if
+  ./configure \
+--prefix=/usr \
+--enable-daemon \
+--disable-ntox \
+--enable-tests
+  make
+}
+
+check() {
+  cd $pkgname
+#  make check || warning "Tests failed" - onion test runs endless
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/toxcore.conf" 
"$pkgdir/usr/lib/sysusers.d/toxcore.conf"
+  install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service 
"$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service"
+  install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.conf 
"$pkgdir/etc/tox-bootstrapd.conf"
+}

Copied: toxcore/repos/staging-i686/toxcore.conf (from rev 184701, 
toxcore/trunk/toxcore.conf)
===
--- staging-i686/toxcore.conf   (rev 0)
+++ staging-i686/toxcore.conf   2016-07-31 07:53:56 UTC (rev 184702)
@@ -0,0 +1,2 @@
+u tox-bootstrapd - "Tox bootstrapd"
+g tox-bootstrapd -
\ No newline at end of file

Copied: toxcore/repos/staging-i686/toxcore.install (from rev 184701, 
toxcore/trunk/toxcore.install)
===
--- staging-i686/toxcore.install(rev 0)
+++ staging-i686/toxcore.install2016-07-31 07:53:56 UTC (rev 184702)
@@ -0,0 +1,11 @@
+post_install() {
+  systemd-sysusers toxcore.conf
+  [[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd -g 
tox-bootstrapd var/lib/tox-bootstrapd
+}
+
+post_upgrade() {
+  (( $(vercmp $2 '3523-3') < 0 )) && (
+systemd-sysusers toxcore.conf
+[[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd -g 
tox-bootstrapd var/lib/tox-bootstrapd
+  ) || true
+}

Copied: toxcore/repos/staging-x86_64/PKGBUILD (from rev 184701, 
toxcore/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-31 07:53:56 UTC (rev 184702)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Håvard Pettersson 
+# Contributor: naxuroqa 
+# Contributor: Boohbah 
+# Contributor: Kevin MacMartin 
+
+pkgname=toxcore
+pkgver=3747
+_commit=c510e2407f8caa880f38d77386cebc52ae7c1360
+pkgrel=2
+pkgdesc='Secure, configuration-free, P2P Skype replacement backend'
+arch=('i686' 'x86_64')
+url='https://tox.chat'
+license=('GPL3')
+depends=('systemd' 'libconfig' 'libsodium' 

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

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 09:30:00
  Author: andyrtr
Revision: 272751

upgpkg: xdg-utils 1.1.1-4

fix chromium binary call - FS#50184

Modified:
  xdg-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 09:22:07 UTC (rev 272750)
+++ PKGBUILD2016-07-31 09:30:00 UTC (rev 272751)
@@ -4,7 +4,7 @@
 
 pkgname=xdg-utils
 pkgver=1.1.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Command line tools that assist applications with a variety of desktop 
integration tasks"
 arch=('any')
 url="http://www.freedesktop.org/wiki/Software/xdg-utils/;
@@ -28,6 +28,9 @@
 
 prepare() {
cd $pkgname-$pkgver
+   # fix wrong hardcoded chromium binary name - FS#50184
+   sed -i "s:chromium-browser:chromium:" scripts/xdg-open.in
+   
# fix KDE support, FS#48668
patch -Np1 -i $srcdir/support_for_KDE_Frameworks_5.6.diff
 }


[arch-commits] Commit in xdg-utils/repos/extra-any (4 files)

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 09:30:08
  Author: andyrtr
Revision: 272752

archrelease: copy trunk to extra-any

Added:
  xdg-utils/repos/extra-any/PKGBUILD
(from rev 272751, xdg-utils/trunk/PKGBUILD)
  xdg-utils/repos/extra-any/support_for_KDE_Frameworks_5.6.diff
(from rev 272751, xdg-utils/trunk/support_for_KDE_Frameworks_5.6.diff)
Deleted:
  xdg-utils/repos/extra-any/PKGBUILD
  xdg-utils/repos/extra-any/support_for_KDE_Frameworks_5.6.diff

-+
 PKGBUILD|   99 +-
 support_for_KDE_Frameworks_5.6.diff |   86 ++---
 2 files changed, 94 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-31 09:30:00 UTC (rev 272751)
+++ PKGBUILD2016-07-31 09:30:08 UTC (rev 272752)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=xdg-utils
-pkgver=1.1.1
-pkgrel=3
-pkgdesc="Command line tools that assist applications with a variety of desktop 
integration tasks"
-arch=('any')
-url="http://www.freedesktop.org/wiki/Software/xdg-utils/;
-license=('MIT')
-depends=('sh' 'xorg-xset') # xset needed inside xdg-screensaver
-makedepends=('docbook-xsl' 'lynx' 'xmlto' 'git')
-optdepends=('kde-cli-tools: for KDE Plasma5 support in xdg-open'
-'libgnome: for GNOME support in xdg-open'
-'exo: for Xfce support in xdg-open'
-'xorg-xprop: for Xfce support in xdg-open'
-'pcmanfm: for LXDE support in xdg-open'
-'perl-file-mimeinfo: for generic support in xdg-open'
-'perl-net-dbus: Perl extension to dbus used in xdg-screensaver'
-'perl-x11-protocol: Perl X11 protocol used in xdg-screensaver')
-source=(http://portland.freedesktop.org/download/$pkgname-$pkgver.tar.gz{,.asc}
-support_for_KDE_Frameworks_5.6.diff)
-md5sums=('2d0aec6037769a5f138ff404b1bb4b15'
- 'SKIP'
- 'fc0a612362e00cc091d2c1ebbfbfc500')
-validpgpkeys=('8B75CA7811367175D05F3B03C43570F80CC295E6') # "Per Olofsson 
"
-
-prepare() {
-   cd $pkgname-$pkgver
-   # fix KDE support, FS#48668
-   patch -Np1 -i $srcdir/support_for_KDE_Frameworks_5.6.diff
-}
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="${pkgdir}" install
-   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   
-   # install empty directory to prevent xdg-desktop-menu install *.desktop 
to fail, see FS#33316
-   install -dm755 $pkgdir/usr/share/desktop-directories
-}

Copied: xdg-utils/repos/extra-any/PKGBUILD (from rev 272751, 
xdg-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-31 09:30:08 UTC (rev 272752)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xdg-utils
+pkgver=1.1.1
+pkgrel=4
+pkgdesc="Command line tools that assist applications with a variety of desktop 
integration tasks"
+arch=('any')
+url="http://www.freedesktop.org/wiki/Software/xdg-utils/;
+license=('MIT')
+depends=('sh' 'xorg-xset') # xset needed inside xdg-screensaver
+makedepends=('docbook-xsl' 'lynx' 'xmlto' 'git')
+optdepends=('kde-cli-tools: for KDE Plasma5 support in xdg-open'
+'libgnome: for GNOME support in xdg-open'
+'exo: for Xfce support in xdg-open'
+'xorg-xprop: for Xfce support in xdg-open'
+'pcmanfm: for LXDE support in xdg-open'
+'perl-file-mimeinfo: for generic support in xdg-open'
+'perl-net-dbus: Perl extension to dbus used in xdg-screensaver'
+'perl-x11-protocol: Perl X11 protocol used in xdg-screensaver')
+source=(http://portland.freedesktop.org/download/$pkgname-$pkgver.tar.gz{,.asc}
+support_for_KDE_Frameworks_5.6.diff)
+md5sums=('2d0aec6037769a5f138ff404b1bb4b15'
+ 'SKIP'
+ 'fc0a612362e00cc091d2c1ebbfbfc500')
+validpgpkeys=('8B75CA7811367175D05F3B03C43570F80CC295E6') # "Per Olofsson 
"
+
+prepare() {
+   cd $pkgname-$pkgver
+   # fix wrong hardcoded chromium binary name - FS#50184
+   sed -i "s:chromium-browser:chromium:" scripts/xdg-open.in
+   
+   # fix KDE support, FS#48668
+   patch -Np1 -i $srcdir/support_for_KDE_Frameworks_5.6.diff
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   
+   # install empty directory to prevent 

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

2016-07-31 Thread Jelle van der Waa
Date: Sunday, July 31, 2016 @ 14:12:29
  Author: jelle
Revision: 184720

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

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

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

Copied: pdf2djvu/repos/community-staging-i686/PKGBUILD (from rev 184719, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-07-31 14:12:29 UTC (rev 184720)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Maintainer: Jelle van der Waa 
+
+pkgname=pdf2djvu
+pkgver=0.9.4
+pkgrel=4
+pkgdesc="Creates DjVu files from PDF files"
+arch=('i686' 'x86_64')
+url="http://jwilk.net/software/pdf2djvu;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
+makedepends=('python2-nose' 'ttf-liberation')
+source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
+validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
+md5sums=('bb4ce32b199301b754c77d0c4aa83410'
+ 'SKIP')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2016-07-31 14:04:07 UTC (rev 184719)
+++ community-staging-x86_64/PKGBUILD   2016-07-31 14:12:29 UTC (rev 184720)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Paulo Matias 
-# Maintainer: Jelle van der Waa 
-
-pkgname=pdf2djvu
-pkgver=0.9.4
-pkgrel=4
-pkgdesc="Creates DjVu files from PDF files"
-arch=('i686' 'x86_64')
-url="http://jwilk.net/software/pdf2djvu;
-license=('GPL')
-depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
-makedepends=('python2-nose' 'ttf-liberation')
-source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
-validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
-md5sums=('bb4ce32b199301b754c77d0c4aa83410'
- 'SKIP')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-sed -i 's/nosetests/nosetests2/' tests/Makefile
-make test
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-make install DESTDIR=${pkgdir}
-}

Copied: pdf2djvu/repos/community-staging-x86_64/PKGBUILD (from rev 184719, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-31 14:12:29 UTC (rev 184720)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Maintainer: Jelle van der Waa 
+
+pkgname=pdf2djvu
+pkgver=0.9.4
+pkgrel=4
+pkgdesc="Creates DjVu files from PDF files"
+arch=('i686' 'x86_64')
+url="http://jwilk.net/software/pdf2djvu;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
+makedepends=('python2-nose' 'ttf-liberation')
+source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
+validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
+md5sums=('bb4ce32b199301b754c77d0c4aa83410'
+ 'SKIP')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+}


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

2016-07-31 Thread Levente Polyak
Date: Sunday, July 31, 2016 @ 15:03:23
  Author: anthraxx
Revision: 184722

archrelease: copy trunk to community-any

Added:
  strip-nondeterminism/repos/community-any/PKGBUILD
(from rev 184721, strip-nondeterminism/trunk/PKGBUILD)
Deleted:
  strip-nondeterminism/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-31 15:03:16 UTC (rev 184721)
+++ PKGBUILD2016-07-31 15:03:23 UTC (rev 184722)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=strip-nondeterminism
-pkgver=0.019
-pkgrel=1
-pkgdesc='Tool for stripping bits of non-deterministic information from files'
-url='https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git'
-arch=('any')
-license=('GPL3')
-depends=("perl" 'perl-archive-zip')
-makedepends=('git')
-options=('!emptydirs')
-source=(${pkgname}::"git+https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git#tag=${pkgver};)
-sha512sums=('SKIP')
-validpgpkeys=('C2FE4BD271C139B86C533E461E953E27D4311E58'  # Chris Lamb 

-  'EF5D84C1838F2EB6D8968C0410378EFC2080080C'  # Andrew Ayer 

-  '2F5DAF3FC1F793D94F3D900CA721DA055374AA4F'  # Reiner Herrmann 

-  '66AE2B4AFCCF3F52DA184D184B043FCDB9444540') # Mattia Rizzolo 

-
-prepare() {
-  cd ${pkgname}
-  git tag --verify ${pkgver}
-  sed -r 's|bin/dh_strip_nondeterminism ||g' -i Makefile.PL
-}
-
-build() {
-  cd ${pkgname}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
-}
-
-# vim: ts=2 sw=2 et:

Copied: strip-nondeterminism/repos/community-any/PKGBUILD (from rev 184721, 
strip-nondeterminism/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-31 15:03:23 UTC (rev 184722)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+
+pkgname=strip-nondeterminism
+pkgver=0.022
+pkgrel=1
+pkgdesc='Tool for stripping bits of non-deterministic information from files'
+url='https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git'
+arch=('any')
+license=('GPL3')
+depends=("perl" 'perl-archive-zip')
+makedepends=('git')
+options=('!emptydirs')
+source=(${pkgname}::"git+https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git#tag=${pkgver};)
+sha512sums=('SKIP')
+validpgpkeys=('C2FE4BD271C139B86C533E461E953E27D4311E58'  # Chris Lamb 

+  'EF5D84C1838F2EB6D8968C0410378EFC2080080C'  # Andrew Ayer 

+  '2F5DAF3FC1F793D94F3D900CA721DA055374AA4F'  # Reiner Herrmann 

+  '66AE2B4AFCCF3F52DA184D184B043FCDB9444540') # Mattia Rizzolo 

+
+prepare() {
+  cd ${pkgname}
+  git tag --verify ${pkgver}
+  sed -r 's|bin/dh_strip_nondeterminism ||g' -i Makefile.PL
+}
+
+build() {
+  cd ${pkgname}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-07-31 Thread Levente Polyak
Date: Sunday, July 31, 2016 @ 15:03:16
  Author: anthraxx
Revision: 184721

upgpkg: strip-nondeterminism 0.022-1

Modified:
  strip-nondeterminism/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 14:12:29 UTC (rev 184720)
+++ PKGBUILD2016-07-31 15:03:16 UTC (rev 184721)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=strip-nondeterminism
-pkgver=0.019
+pkgver=0.022
 pkgrel=1
 pkgdesc='Tool for stripping bits of non-deterministic information from files'
 url='https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git'


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

2016-07-31 Thread Alexander Rødseth
Date: Sunday, July 31, 2016 @ 13:53:56
  Author: arodseth
Revision: 184717

Use Ninja.

Does not compile.

Modified:
  projectm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 08:02:13 UTC (rev 184716)
+++ PKGBUILD2016-07-31 13:53:56 UTC (rev 184717)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: Alexander Rødseth 
+# Maintainer: Alexander F Rødseth 
 # Contributor: Lukas Fleischer 
 # Contributor: Alexander Baldeck 
 # Contributor: Denis A. Altoe Falqueto 
@@ -7,11 +7,11 @@
 pkgbase=projectm
 pkgname=('projectm' 'projectm-libvisual' 'projectm-pulseaudio' 'projectm-jack' 
'projectm-qt' 'projectm-test')
 pkgver=2.1.0
-pkgrel=13
+pkgrel=14
 arch=('x86_64' 'i686')
 url='http://projectm.sourceforge.net/'
 license=('LGPL')
-makedepends=('mesa-libgl' 'qt4' 'cmake' 'ftgl' 'glew' 'gtkglext' 'libvisual' 
'sdl' 'libxext' 'pulseaudio' 'jack')
+makedepends=('mesa-libgl' 'qt4' 'cmake' 'ftgl' 'glew' 'gtkglext' 'libvisual' 
'sdl' 'libxext' 'pulseaudio' 'jack' 'ninja')
 
source=("http://downloads.sourceforge.net/$pkgname/projectM-complete-$pkgver-Source.tar.gz;
 'projectm-test-opengl.patch'
 'projectm-install-vera-ttf.patch')
@@ -22,31 +22,29 @@
 prepare() {
   cd "projectM-complete-$pkgver-Source"
 
-  patch -p1 -i "$srcdir/projectm-test-opengl.patch"
-  patch -p1 -i "$srcdir/projectm-install-vera-ttf.patch"
-  mkdir -p "$srcdir/build"
+  patch -p1 -i ../projectm-test-opengl.patch
+  patch -p1 -i ../projectm-install-vera-ttf.patch
+  sed 's/projectM_isnan/std::isnan/g' -i 
src/libprojectM/Renderer/BeatDetect.cpp 
 }
 
 build() {
+  mkdir -p build
   cd build
-
   cmake \
 -Wno-dev \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release \
 -DINCLUDE-PROJECTM-JACK=ON \
+-GNinja \
 "../projectM-complete-$pkgver-Source"
-  make
+  ninja
 }
 
 package_projectm() {
   pkgdesc='Music visualizer which uses 3D accelerated iterative image based 
rendering'
   depends=('ftgl' 'glew' 'libgl')
-
-  cd "$srcdir/build"
-  for dirs in src/{NativePresets,libprojectM}; do
-make -C "$dirs" DESTDIR="$pkgdir" install
-  done
+  DESTDIR="$pkgdir" ninja -C "build/src/NativePresets" install
+  DESTDIR="$pkgdir" ninja -C "build/src/libprojectM" install
 }
 
 package_projectm-libvisual() {
@@ -54,41 +52,31 @@
   depends=('projectm' 'libvisual' 'gcc-libs')
   replaces=('libvisual-projectm')
   provides=('libvisual-projectm')
-  
-  cd "$srcdir/build/src/projectM-libvisual"
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja -C "build/src/projectM-libvisual" install
 }
 
 package_projectm-pulseaudio() {
   pkgdesc='ProjectM support for Pulseaudio'
   depends=('projectm-qt' 'pulseaudio')
-  
-  cd "$srcdir/build/src/projectM-pulseaudio"
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja -C "$srcdir/build/src/projectM-pulseaudio" install
 }
 
 package_projectm-jack() {
   pkgdesc='ProjectM support for Jack'
   depends=('projectm-qt' 'jack')
-  
-  cd "$srcdir/build/src/projectM-jack"
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja -C "$srcdir/build/src/projectM-jack" install
 }
 
 package_projectm-qt() {
   pkgdesc='Qt bindings for ProjectM'
   depends=('projectm' 'qt4' 'libgl')
-  
-  cd "$srcdir/build/src/projectM-qt"
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja -C "$srcdir/build/src/projectM-qt" install
 }
 
 package_projectm-test() {
   pkgdesc='ProjectM test applications'
   depends=('projectm' 'sdl' 'libgl')
-  
-  cd "$srcdir/build/src/projectM-test"
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja -C "$srcdir/build/src/projectM-test" install
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-07-31 Thread Jelle van der Waa
Date: Sunday, July 31, 2016 @ 14:04:01
  Author: jelle
Revision: 184718

upgpkg: pdf2djvu 0.9.4-4

glew 2.0.0 / poppler 0.46.0 rebuild

Modified:
  pdf2djvu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 13:53:56 UTC (rev 184717)
+++ PKGBUILD2016-07-31 14:04:01 UTC (rev 184718)
@@ -4,7 +4,7 @@
 
 pkgname=pdf2djvu
 pkgver=0.9.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Creates DjVu files from PDF files"
 arch=('i686' 'x86_64')
 url="http://jwilk.net/software/pdf2djvu;


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

2016-07-31 Thread Jelle van der Waa
Date: Sunday, July 31, 2016 @ 14:04:07
  Author: jelle
Revision: 184719

archrelease: copy trunk to community-staging-x86_64

Added:
  pdf2djvu/repos/community-staging-x86_64/
  pdf2djvu/repos/community-staging-x86_64/PKGBUILD
(from rev 184718, pdf2djvu/trunk/PKGBUILD)

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

Copied: pdf2djvu/repos/community-staging-x86_64/PKGBUILD (from rev 184718, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-31 14:04:07 UTC (rev 184719)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Maintainer: Jelle van der Waa 
+
+pkgname=pdf2djvu
+pkgver=0.9.4
+pkgrel=4
+pkgdesc="Creates DjVu files from PDF files"
+arch=('i686' 'x86_64')
+url="http://jwilk.net/software/pdf2djvu;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'gcc-libs' 'graphicsmagick' 'exiv2')
+makedepends=('python2-nose' 'ttf-liberation')
+source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
+validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
+md5sums=('bb4ce32b199301b754c77d0c4aa83410'
+ 'SKIP')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+}


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

2016-07-31 Thread Alexander Rødseth
Date: Sunday, July 31, 2016 @ 23:32:01
  Author: arodseth
Revision: 184727

FS#48606

Modified:
  cargo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 22:10:15 UTC (rev 184726)
+++ PKGBUILD2016-07-31 23:32:01 UTC (rev 184727)
@@ -4,22 +4,21 @@
 
 pkgname=cargo
 pkgver=0.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Rust package manager'
 url='http://crates.io/'
 arch=('x86_64' 'i686')
 license=('APACHE' 'MIT' 'custom')
-depends=('curl' 'rust' 'clang')
-makedepends=('cmake' 'git' 'python')
+depends=('curl' 'rust')
+makedepends=('git' 'python' 'cmake')
 options=('!emptydirs')
 source=("git+https://github.com/rust-lang/cargo.git#tag=$pkgver;)
 md5sums=('SKIP')
 
 prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git submodule update
+  for cmd in init update; do (cd "$pkgname"; git submodule "$cmd"); done
+  sed 's^share/doc^share/licenses^g' -i "$pkgname/Makefile.in"
+  sed 's^bash_completion.d/^bash-completion/completions/^g' -i 
"$pkgname/Makefile.in"
 }
 
 build() {
@@ -34,20 +33,13 @@
 
   make DESTDIR="$pkgdir" install
 
-  # Contains reference to $srcdir and $pkgdir
-  find "$pkgdir" -name install.log -delete
-  find "$pkgdir" -name manifest-cargo -delete
-
-  # Conflicts with the rust package
-  find "$pkgdir" -name uninstall.sh -delete
-
-  install -d "$pkgdir/usr/share/bash-completion/completions"
-  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
-"$pkgdir/usr/share/bash-completion/completions/cargo"
-
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  mv "$pkgdir/usr/share/doc/cargo/LICENSE"* \
-"$pkgdir/usr/share/licenses/$pkgname"
+  # Remove files that contains references to $srcdir or $pkgdir,
+  # or that conflicts with the rust package.
+  find "$pkgdir" \
+-name install.log \
+-o -name manifest-cargo \
+-o -name uninstall.sh \
+-delete
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-07-31 Thread Alexander Rødseth
Date: Monday, August 1, 2016 @ 00:03:02
  Author: arodseth
Revision: 184728

Path fix

Modified:
  cargo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 23:32:01 UTC (rev 184727)
+++ PKGBUILD2016-08-01 00:03:02 UTC (rev 184728)
@@ -18,7 +18,6 @@
 prepare() {
   for cmd in init update; do (cd "$pkgname"; git submodule "$cmd"); done
   sed 's^share/doc^share/licenses^g' -i "$pkgname/Makefile.in"
-  sed 's^bash_completion.d/^bash-completion/completions/^g' -i 
"$pkgname/Makefile.in"
 }
 
 build() {
@@ -40,6 +39,10 @@
 -o -name manifest-cargo \
 -o -name uninstall.sh \
 -delete
+
+  install -d "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
+"$pkgdir/usr/share/bash-completion/completions/cargo"
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-07-31 Thread Antonio Rojas
Date: Sunday, July 31, 2016 @ 17:17:14
  Author: arojas
Revision: 272760

poppler 0.46 rebuild

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 10:17:19 UTC (rev 272759)
+++ PKGBUILD2016-07-31 17:17:14 UTC (rev 272760)
@@ -21,7 +21,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.9.11
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')


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

2016-07-31 Thread Pierre Schmitz
Date: Sunday, July 31, 2016 @ 17:55:43
  Author: pierre
Revision: 272763

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

Added:
  lighttpd/repos/extra-i686/PKGBUILD
(from rev 272762, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-i686/lighttpd.conf
(from rev 272762, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-i686/lighttpd.install
(from rev 272762, lighttpd/trunk/lighttpd.install)
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
(from rev 272762, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-i686/lighttpd.service
(from rev 272762, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
(from rev 272762, lighttpd/trunk/lighttpd.tmpfiles)
  lighttpd/repos/extra-x86_64/PKGBUILD
(from rev 272762, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-x86_64/lighttpd.conf
(from rev 272762, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-x86_64/lighttpd.install
(from rev 272762, lighttpd/trunk/lighttpd.install)
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
(from rev 272762, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-x86_64/lighttpd.service
(from rev 272762, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles
(from rev 272762, lighttpd/trunk/lighttpd.tmpfiles)
Deleted:
  lighttpd/repos/extra-i686/PKGBUILD
  lighttpd/repos/extra-i686/lighttpd.conf
  lighttpd/repos/extra-i686/lighttpd.install
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
  lighttpd/repos/extra-i686/lighttpd.service
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
  lighttpd/repos/extra-x86_64/PKGBUILD
  lighttpd/repos/extra-x86_64/lighttpd.conf
  lighttpd/repos/extra-x86_64/lighttpd.install
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
  lighttpd/repos/extra-x86_64/lighttpd.service
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles

---+
 /PKGBUILD |  146 
 /lighttpd.conf|   44 ++
 /lighttpd.install |   18 
 /lighttpd.logrotate.d |   18 
 /lighttpd.service |   24 +
 /lighttpd.tmpfiles|4 
 extra-i686/PKGBUILD   |   72 -
 extra-i686/lighttpd.conf  |   22 -
 extra-i686/lighttpd.install   |9 --
 extra-i686/lighttpd.logrotate.d   |9 --
 extra-i686/lighttpd.service   |   12 --
 extra-i686/lighttpd.tmpfiles  |2 
 extra-x86_64/PKGBUILD |   72 -
 extra-x86_64/lighttpd.conf|   22 -
 extra-x86_64/lighttpd.install |9 --
 extra-x86_64/lighttpd.logrotate.d |9 --
 extra-x86_64/lighttpd.service |   12 --
 extra-x86_64/lighttpd.tmpfiles|2 
 18 files changed, 254 insertions(+), 252 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-31 17:55:21 UTC (rev 272762)
+++ extra-i686/PKGBUILD 2016-07-31 17:55:43 UTC (rev 272763)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.40
-pkgrel=1
-pkgdesc='A secure, fast, compliant and very flexible web-server'
-license=('custom')
-arch=('i686' 'x86_64')
-url="http://www.lighttpd.net/;
-depends=('pcre' 'bzip2' 'libldap' 'util-linux' 'systemd')
-makedepends=('fcgi' 'libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 
'gdbm' 'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'libmariadbclient: mod_mysql_vhost'
-'sqlite: mod_webdav')
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
-options=('emptydirs')
-install='lighttpd.install'
-source=("http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
-'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha256sums=('80450dfcf7604d6c516a00a0ce750937074ef844bbdee3b3f23384187b9d4f8d'
-'SKIP'
-'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
-'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
-'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
-'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
-validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libdir=/usr/lib/lighttpd/ \
-   --sysconfdir=/etc/lighttpd \
-   --with-mysql \
-   --with-ldap \
-   --with-attr \
-   --with-openssl \
-   --with-kerberos5 \
-   --without-fam \
-   --with-webdav-props \
-   --with-webdav-locks \
-   

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

2016-07-31 Thread Pierre Schmitz
Date: Sunday, July 31, 2016 @ 17:55:21
  Author: pierre
Revision: 272762

upgpkg: lighttpd 1.4.41-1

Modified:
  lighttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 17:20:07 UTC (rev 272761)
+++ PKGBUILD2016-07-31 17:55:21 UTC (rev 272762)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=lighttpd
-pkgver=1.4.40
+pkgver=1.4.41
 pkgrel=1
 pkgdesc='A secure, fast, compliant and very flexible web-server'
 license=('custom')
@@ -19,7 +19,7 @@
 install='lighttpd.install'
 
source=("http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
 'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha256sums=('80450dfcf7604d6c516a00a0ce750937074ef844bbdee3b3f23384187b9d4f8d'
+sha256sums=('4bcc383ef6d6dc7b284f68882d71a178e2986c83c4e85eeb3c8f3b882e346b6c'
 'SKIP'
 '41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
 'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
@@ -26,7 +26,8 @@
 'd8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
 '0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
 validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8')
+  '649D0DD767FF206202A76C5158F14A786FE198C8'
+  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
 
 build() {
cd $srcdir/$pkgname-$pkgver


[arch-commits] Commit in bluegriffon/repos (staging-i686 staging-x86_64)

2016-07-31 Thread Fabio Castelli
Date: Sunday, July 31, 2016 @ 18:31:20
  Author: muflone
Revision: 184723

Removed wrong repository for bluegriffon package

Deleted:
  bluegriffon/repos/staging-i686/
  bluegriffon/repos/staging-x86_64/


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

2016-07-31 Thread Antonio Rojas
Date: Sunday, July 31, 2016 @ 17:20:07
  Author: arojas
Revision: 272761

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/PKGBUILD
(from rev 272760, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/libwps-0.4.patch
(from rev 272760, calligra/trunk/libwps-0.4.patch)
  calligra/repos/staging-x86_64/
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 272760, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/libwps-0.4.patch
(from rev 272760, calligra/trunk/libwps-0.4.patch)

-+
 staging-i686/PKGBUILD   |  228 ++
 staging-i686/libwps-0.4.patch   |   51 
 staging-x86_64/PKGBUILD |  228 ++
 staging-x86_64/libwps-0.4.patch |   51 
 4 files changed, 558 insertions(+)

Copied: calligra/repos/staging-i686/PKGBUILD (from rev 272760, 
calligra/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 17:20:07 UTC (rev 272761)
@@ -0,0 +1,228 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Ronald van Haren 
+
+pkgbase=calligra
+pkgname=('calligra-braindump'
+ 'calligra-devtools'
+ 'calligra-extras'
+ 'calligra-filters'
+ 'calligra-flow'
+ 'calligra-gemini'
+ 'calligra-handbook'
+ 'calligra-karbon'
+ 'calligra-kexi'
+ 'calligra-libs'
+ 'calligra-plan'
+ 'calligra-plugins'
+ 'calligra-sheets'
+ 'calligra-stage'
+ 'calligra-words')
+pkgver=2.9.11
+pkgrel=5
+arch=('i686' 'x86_64')
+url='http://www.calligra-suite.org/'
+license=('FDL1.2' 'GPL2' 'LGPL')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepimlibs4' 'eigen' 'libmarble4'
+ 'lcms2' 'libmariadbclient' 'freetds' 'xbase' 'libwpg'
+ 'libwps' 'gsl' 'glew' 'fftw' 'poppler-qt4' 'libodfgen'
+ 'openjpeg' 'kdegraphics-okular' 'pstoedit' 'libvisio'
+ 'libetonyek' 'libpqxx' 'libspnav' 'postgresql') # 'libqgit2'
+groups=('calligra')
+source=("http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.xz;
 'libwps-0.4.patch')
+md5sums=('a1a4935debae64724cd4c0d17d61ae4e'
+ '6ea15f8b3938838d89ea0aa08921afd1')
+
+prepare() {
+  mkdir -p build
+
+# Fix build against libwps 0.4
+  cd $pkgbase-$pkgver
+  patch -p1 -i "$srcdir"/libwps-0.4.patch
+
+# Fix build against libmarble4
+  sed -e 's|PATH_SUFFIXES marble|PATH_SUFFIXES marble4|g' -i CMakeLists.txt
+  sed -e 's|#include 
+Date: Sat, 6 Jun 2015 18:27:24 +0200
+Subject: [PATCH] adapt to libwps 0.4
+
+---
+ cmake/modules/FindLibWps.cmake   | 6 +++---
+ filters/words/works/import/WPSImport.cpp | 4 +++-
+ 2 files changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/cmake/modules/FindLibWps.cmake b/cmake/modules/FindLibWps.cmake
+index f8c8225..58ef2b5 100644
+--- a/cmake/modules/FindLibWps.cmake
 b/cmake/modules/FindLibWps.cmake
+@@ -10,16 +10,16 @@
+ 
+ include(LibFindMacros)
+ libfind_package(LIBWPS LibWpd)
+-libfind_pkg_check_modules(LIBWPS_PKGCONF libwps-0.3)
++libfind_pkg_check_modules(LIBWPS_PKGCONF libwps-0.4)
+ 
+ find_path(LIBWPS_INCLUDE_DIR
+ NAMES libwps/libwps.h
+ HINTS ${LIBWPS_PKGCONF_INCLUDE_DIRS} ${LIBWPS_PKGCONF_INCLUDEDIR}
+-PATH_SUFFIXES libwps-0.3
++PATH_SUFFIXES libwps-0.4
+ )
+ 
+ find_library(LIBWPS_LIBRARY
+-NAMES wps wps-0.3
++NAMES wps wps-0.4
+ HINTS ${LIBWPS_PKGCONF_LIBRARY_DIRS} ${LIBWPS_PKGCONF_LIBDIR}
+ )
+ 
+diff --git a/filters/words/works/import/WPSImport.cpp 
b/filters/words/works/import/WPSImport.cpp
+index eea2cc9..94b859d 100644
+--- a/filters/words/works/import/WPSImport.cpp
 b/filters/words/works/import/WPSImport.cpp
+@@ -91,7 +91,9 @@ public:
+ bool isSupportedFormat(librevenge::RVNGInputStream )
+ {
+ WPSKind kind = WPS_TEXT;
+-WPSConfidence confidence = WPSDocument::isFileFormatSupported(, 
kind);
++WPSCreator creator = WPS_MSWORKS;
++bool needsEncoding = false;
++WPSConfidence confidence = WPSDocument::isFileFormatSupported(, 
kind, creator, needsEncoding);
+ if (confidence == WPS_CONFIDENCE_NONE || kind != WPS_TEXT)
+ return false;
+ return true;
+-- 
+2.4.2

Copied: calligra/repos/staging-x86_64/PKGBUILD (from rev 272760, 
calligra/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-31 17:20:07 UTC (rev 272761)
@@ -0,0 +1,228 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# 

[arch-commits] Commit in sweethome3d/repos/community-any (sweethome3d.install)

2016-07-31 Thread Fabio Castelli
Date: Sunday, July 31, 2016 @ 18:35:26
  Author: muflone
Revision: 184724

Removed pending install file

Deleted:
  sweethome3d/repos/community-any/sweethome3d.install

-+
 sweethome3d.install |   12 
 1 file changed, 12 deletions(-)

Deleted: sweethome3d.install
===
--- sweethome3d.install 2016-07-31 18:31:20 UTC (rev 184723)
+++ sweethome3d.install 2016-07-31 18:35:26 UTC (rev 184724)
@@ -1,12 +0,0 @@
-post_install() {
-  update-mime-database usr/share/mime
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-


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

2016-07-31 Thread Alexander Rødseth
Date: Sunday, July 31, 2016 @ 22:10:15
  Author: arodseth
Revision: 184726

archrelease: copy trunk to community-any

Added:
  asciinema/repos/community-any/PKGBUILD
(from rev 184725, asciinema/trunk/PKGBUILD)
  asciinema/repos/community-any/asciinema.sh
(from rev 184725, asciinema/trunk/asciinema.sh)
Deleted:
  asciinema/repos/community-any/PKGBUILD

--+
 PKGBUILD |   47 +--
 asciinema.sh |2 ++
 2 files changed, 27 insertions(+), 22 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-31 22:10:08 UTC (rev 184725)
+++ PKGBUILD2016-07-31 22:10:15 UTC (rev 184726)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Marcin Kulik 
-
-pkgname=asciinema
-pkgver=1.3.0
-pkgrel=3
-pkgdesc='Record and share your terminal sessions'
-arch=('any')
-url='https://asciinema.org/'
-license=('GPL3')
-depends=('python')
-source=("$pkgname.tar.gz::https://github.com/asciinema/asciinema/archive/v${pkgver}.tar.gz;)
-sha256sums=('968016828119d53b8e4e6ccf40a2635704d236f8e805f635c15adc09a4373a55')
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: asciinema/repos/community-any/PKGBUILD (from rev 184725, 
asciinema/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-31 22:10:15 UTC (rev 184726)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Marcin Kulik 
+
+pkgname=asciinema
+pkgver=1.3.0
+pkgrel=4
+pkgdesc='Record and share terminal sessions'
+arch=('any')
+url='https://asciinema.org/'
+license=('GPL3')
+depends=('python')
+source=("$pkgname.tar.gz::https://github.com/asciinema/asciinema/archive/v${pkgver}.tar.gz;
+'asciinema.sh')
+sha256sums=('968016828119d53b8e4e6ccf40a2635704d236f8e805f635c15adc09a4373a55'
+'14a2dd176aa95010e1e4876265f12288499008c1cf530da5b1d9aff9d74917cd')
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm755 "$srcdir/asciinema.sh" "$pkgdir/usr/bin/asciinema"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: asciinema/repos/community-any/asciinema.sh (from rev 184725, 
asciinema/trunk/asciinema.sh)
===
--- asciinema.sh(rev 0)
+++ asciinema.sh2016-07-31 22:10:15 UTC (rev 184726)
@@ -0,0 +1,2 @@
+#!/bin/sh
+/usr/bin/python -m asciinema "$@"


[arch-commits] Commit in asciinema/trunk (PKGBUILD asciinema.sh)

2016-07-31 Thread Alexander Rødseth
Date: Sunday, July 31, 2016 @ 22:10:08
  Author: arodseth
Revision: 184725

upgpkg: asciinema 1.3.0-4

Added:
  asciinema/trunk/asciinema.sh
Modified:
  asciinema/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 asciinema.sh |2 ++
 2 files changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 18:35:26 UTC (rev 184724)
+++ PKGBUILD2016-07-31 22:10:08 UTC (rev 184725)
@@ -4,19 +4,22 @@
 
 pkgname=asciinema
 pkgver=1.3.0
-pkgrel=3
-pkgdesc='Record and share your terminal sessions'
+pkgrel=4
+pkgdesc='Record and share terminal sessions'
 arch=('any')
 url='https://asciinema.org/'
 license=('GPL3')
 depends=('python')
-source=("$pkgname.tar.gz::https://github.com/asciinema/asciinema/archive/v${pkgver}.tar.gz;)
-sha256sums=('968016828119d53b8e4e6ccf40a2635704d236f8e805f635c15adc09a4373a55')
+source=("$pkgname.tar.gz::https://github.com/asciinema/asciinema/archive/v${pkgver}.tar.gz;
+'asciinema.sh')
+sha256sums=('968016828119d53b8e4e6ccf40a2635704d236f8e805f635c15adc09a4373a55'
+'14a2dd176aa95010e1e4876265f12288499008c1cf530da5b1d9aff9d74917cd')
 
 package() {
   cd "$pkgname-$pkgver"
 
-  python setup.py install --root="$pkgdir/" --optimize=1
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm755 "$srcdir/asciinema.sh" "$pkgdir/usr/bin/asciinema"
 }
 
 # vim:set ts=2 sw=2 et:

Added: asciinema.sh
===
--- asciinema.sh(rev 0)
+++ asciinema.sh2016-07-31 22:10:08 UTC (rev 184725)
@@ -0,0 +1,2 @@
+#!/bin/sh
+/usr/bin/python -m asciinema "$@"


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

2016-07-31 Thread Sébastien Luttringer
Date: Sunday, July 31, 2016 @ 22:44:11
  Author: seblu
Revision: 272765

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 272764, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 272764, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.service
(from rev 272764, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.timer
(from rev 272764, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 272764, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 272764, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 272764, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 272764, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service
(from rev 272764, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer
(from rev 272764, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 272764, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 272764, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   61 
 testing-i686/btrfs-progs.install  |   15 +++
 testing-i686/btrfs-scrub@.service |7 +++
 testing-i686/btrfs-scrub@.timer   |   10 +
 testing-i686/initcpio-hook-btrfs  |7 +++
 testing-i686/initcpio-install-btrfs   |   17 
 testing-x86_64/PKGBUILD   |   61 
 testing-x86_64/btrfs-progs.install|   15 +++
 testing-x86_64/btrfs-scrub@.service   |7 +++
 testing-x86_64/btrfs-scrub@.timer |   10 +
 testing-x86_64/initcpio-hook-btrfs|7 +++
 testing-x86_64/initcpio-install-btrfs |   17 
 12 files changed, 234 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 272764, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-31 22:44:11 UTC (rev 272765)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.7
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
+source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs'
+'btrfs-scrub@.service'
+'btrfs-scrub@.timer')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ 'ce139902859bb0ed9efd3b120ede371e'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad'
+ '794b867e09451284c545bae112aa0cfd'
+ '502221c1b47a3bb2c06703d4fb90a0c2')
+
+build() {
+  cd $pkgname-v$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-v$pkgver
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname-v$pkgver
+  make prefix="$pkgdir"/usr install
+
+  # install bash completion (FS#44618)
+  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
+
+  # install mkinitcpio hooks
+  cd "$srcdir"
+  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
+  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
+
+  # install scrub service/timer
+  install -Dm644 btrfs-scrub@.service 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.service"
+  install -Dm644 btrfs-scrub@.timer 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.timer"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 272764, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2016-07-31 22:44:11 UTC (rev 272765)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+## arg 1:  the new package version
+## arg 2:  the 

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

2016-07-31 Thread Sébastien Luttringer
Date: Sunday, July 31, 2016 @ 22:43:49
  Author: seblu
Revision: 272764

upgpkg: btrfs-progs 4.7-1

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 17:55:43 UTC (rev 272763)
+++ PKGBUILD2016-07-31 22:43:49 UTC (rev 272764)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.6.1
+pkgver=4.7
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')
@@ -24,11 +24,11 @@
 install=btrfs-progs.install
 options=(!staticlibs)
 md5sums=('SKIP'
- '39c6395eeb5cb0d642b78464e05d9283'
+ 'ce139902859bb0ed9efd3b120ede371e'
  '7241ba3a4286d08da0d50b7176941112'
  'b09688a915a0ec8f40e2f5aacbabc9ad'
  '794b867e09451284c545bae112aa0cfd'
- 'a290e0ab88b7b4675cd20f5a2befc8cb')
+ '502221c1b47a3bb2c06703d4fb90a0c2')
 
 build() {
   cd $pkgname-v$pkgver


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

2016-07-31 Thread Alexander Rødseth
Date: Monday, August 1, 2016 @ 00:27:01
  Author: arodseth
Revision: 184729

Fix removal of conflicting files

Modified:
  cargo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-01 00:03:02 UTC (rev 184728)
+++ PKGBUILD2016-08-01 00:27:01 UTC (rev 184729)
@@ -34,11 +34,7 @@
 
   # Remove files that contains references to $srcdir or $pkgdir,
   # or that conflicts with the rust package.
-  find "$pkgdir" \
--name install.log \
--o -name manifest-cargo \
--o -name uninstall.sh \
--delete
+  rm -f "$pkgdir/usr/lib/rustlib/{install.log,manifest-cargo}"
 
   install -d "$pkgdir/usr/share/bash-completion/completions"
   mv "$pkgdir/usr/etc/bash_completion.d/cargo" \


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

2016-07-31 Thread Alexander Rødseth
Date: Monday, August 1, 2016 @ 00:57:30
  Author: arodseth
Revision: 184731

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

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

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   53 --
 community-x86_64/PKGBUILD |   53 --
 3 files changed, 88 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-01 00:57:18 UTC (rev 184730)
+++ community-i686/PKGBUILD 2016-08-01 00:57:30 UTC (rev 184731)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Christopher Reimer 
-
-pkgname=cargo
-pkgver=0.11.0
-pkgrel=1
-pkgdesc='Rust package manager'
-url='http://crates.io/'
-arch=('x86_64' 'i686')
-license=('APACHE' 'MIT' 'custom')
-depends=('curl' 'rust' 'clang')
-makedepends=('cmake' 'git' 'python')
-options=('!emptydirs')
-source=("git+https://github.com/rust-lang/cargo.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git submodule update
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure --prefix=/usr --enable-optimize
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-
-  # Contains reference to $srcdir and $pkgdir
-  find "$pkgdir" -name install.log -delete
-  find "$pkgdir" -name manifest-cargo -delete
-
-  # Conflicts with the rust package
-  find "$pkgdir" -name uninstall.sh -delete
-
-  install -d "$pkgdir/usr/share/bash-completion/completions"
-  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
-"$pkgdir/usr/share/bash-completion/completions/cargo"
-
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  mv "$pkgdir/usr/share/doc/cargo/LICENSE"* \
-"$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cargo/repos/community-i686/PKGBUILD (from rev 184730, 
cargo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-01 00:57:30 UTC (rev 184731)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Christopher Reimer 
+
+pkgname=cargo
+pkgver=0.11.0
+pkgrel=2
+pkgdesc='Rust package manager'
+url='http://crates.io/'
+arch=('x86_64' 'i686')
+license=('APACHE' 'MIT' 'custom')
+depends=('curl' 'rust')
+makedepends=('git' 'python' 'cmake')
+options=('!emptydirs')
+source=("git+https://github.com/rust-lang/cargo.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  for cmd in init update; do (cd "$pkgname"; git submodule "$cmd"); done
+  sed 's^share/doc^share/licenses^g' -i "$pkgname/Makefile.in"
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr --enable-optimize
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove files that contains references to $srcdir or $pkgdir,
+  # or that conflicts with the rust package.
+  rm -f "$pkgdir/usr/lib/rustlib/"{install.log,manifest-cargo,uninstall.sh}
+
+  install -d "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
+"$pkgdir/usr/share/bash-completion/completions/cargo"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-01 00:57:18 UTC (rev 184730)
+++ community-x86_64/PKGBUILD   2016-08-01 00:57:30 UTC (rev 184731)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Christopher Reimer 
-
-pkgname=cargo
-pkgver=0.11.0
-pkgrel=1
-pkgdesc='Rust package manager'
-url='http://crates.io/'
-arch=('x86_64' 'i686')
-license=('APACHE' 'MIT' 'custom')
-depends=('curl' 'rust' 'clang')
-makedepends=('cmake' 'git' 'python')
-options=('!emptydirs')
-source=("git+https://github.com/rust-lang/cargo.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git submodule update
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure --prefix=/usr --enable-optimize
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-
-  # Contains reference to $srcdir and $pkgdir
-  find "$pkgdir" -name install.log -delete
-  find "$pkgdir" -name manifest-cargo -delete
-
-  # Conflicts with the rust package
-  find "$pkgdir" -name uninstall.sh -delete
-
-  install -d "$pkgdir/usr/share/bash-completion/completions"
-  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
-

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

2016-07-31 Thread Alexander Rødseth
Date: Monday, August 1, 2016 @ 00:57:18
  Author: arodseth
Revision: 184730

upgpkg: cargo 0.11.0-2

Modified:
  cargo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-01 00:27:01 UTC (rev 184729)
+++ PKGBUILD2016-08-01 00:57:18 UTC (rev 184730)
@@ -34,7 +34,7 @@
 
   # Remove files that contains references to $srcdir or $pkgdir,
   # or that conflicts with the rust package.
-  rm -f "$pkgdir/usr/lib/rustlib/{install.log,manifest-cargo}"
+  rm -f "$pkgdir/usr/lib/rustlib/"{install.log,manifest-cargo,uninstall.sh}
 
   install -d "$pkgdir/usr/share/bash-completion/completions"
   mv "$pkgdir/usr/etc/bash_completion.d/cargo" \