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

2014-08-25 Thread Felix Yan
Date: Tuesday, August 26, 2014 @ 07:09:17
  Author: fyan
Revision: 117887

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

Added:
  python-matplotlib/repos/community-testing-i686/
  python-matplotlib/repos/community-testing-i686/PKGBUILD
(from rev 117886, python-matplotlib/trunk/PKGBUILD)
  python-matplotlib/repos/community-testing-i686/ffmpeg-2.0.patch
(from rev 117886, python-matplotlib/trunk/ffmpeg-2.0.patch)
  python-matplotlib/repos/community-testing-x86_64/
  python-matplotlib/repos/community-testing-x86_64/PKGBUILD
(from rev 117886, python-matplotlib/trunk/PKGBUILD)
  python-matplotlib/repos/community-testing-x86_64/ffmpeg-2.0.patch
(from rev 117886, python-matplotlib/trunk/ffmpeg-2.0.patch)

---+
 community-testing-i686/PKGBUILD   |  108 
 community-testing-i686/ffmpeg-2.0.patch   |   98 +
 community-testing-x86_64/PKGBUILD |  108 
 community-testing-x86_64/ffmpeg-2.0.patch |   98 +
 4 files changed, 412 insertions(+)

Copied: python-matplotlib/repos/community-testing-i686/PKGBUILD (from rev 
117886, python-matplotlib/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-26 05:09:17 UTC (rev 117887)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Stefan Husmann 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-matplotlib
+pkgname=('python2-matplotlib' 'python-matplotlib')
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="A python plotting library, making publication quality plots"
+arch=('i686' 'x86_64')
+url='http://matplotlib.org'
+license=('custom')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'xorg-server-xvfb'
+  'texlive-core' 'texlive-latexextra' 'imagemagick' 'ffmpeg' 
'mencoder' 'inkscape')
+makedepends=('python2-pytz' 'python2-numpy' 'python2-pyqt4' 'python-pytz' 
'python-numpy'
+ 'python-pyqt4' 'tk' 'python-cairo' 'python2-cairo' 
'python-dateutil'
+ 'python2-dateutil' 'python-gobject' 'python2-gobject' 
'python-pyparsing'
+ 'python2-pyparsing' 'pygtk' 'python-six' 'ghostscript' 
'texlive-bin'
+ 'python-tornado' 'python2-tornado' 'gtk3' 'wxpython' 
'python-pyqt5' 'python2-pyqt5')
+source=("https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz";)
+sha512sums=('1d127e3da4eb208af57b9890defc1d95f2f2b9c6d44ba2fde5dbeac6d95112a2542090fe198b31022887c5c2102710fbc11b01e0c1032c8ea9f88a8c91336830')
+
+prepare() {
+   cp -a matplotlib-${pkgver} matplotlib-${pkgver}-py2
+
+   cd matplotlib-${pkgver}
+   for file in $(find . -name '*.py' -print); do
+  sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python2|" \
+ -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python3|" ${file}
+   done
+
+   cd ../matplotlib-${pkgver}-py2
+   for file in $(find . -name '*.py' -print); do
+  sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python3|" \
+ -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" ${file}
+   done
+}
+
+build() {
+   # this seems to need to be present or gtk/gdk dies
+   # and hangs the build checking if gtk3cairo is installed
+   export XDG_RUNTIME_DIR=/tmp
+
+   cd matplotlib-${pkgver}
+   python3 setup.py build
+
+   cd ../matplotlib-${pkgver}-py2
+   python2 setup.py build
+}
+
+check() {
+   cd matplotlib-${pkgver}
+   (
+ export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.4:$PYTHONPATH"
+ python -c "from matplotlib import font_manager"
+ rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir
+ xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 
1280x1024x24" \
+   python ../matplotlib-${pkgver}/tests.py -sv --processes=8 
--process-timeout=300 || warning "Tests failed"
+   )
+
+   cd ../matplotlib-${pkgver}-py2
+   (
+ export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH"
+ python2 -c "from matplotlib import font_manager"
+ rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir
+ xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 
1280x1024x24" \
+   python2 ../matplotlib-${pkgver}-py2/tests.py -sv --processes=8 
--process-timeout=300 || warning "Tests failed"
+   )
+}
+
+package_python2-matplotlib() {
+   depends=('python2-pytz' 'python2-numpy' 'python2-cairo' 'python2-pyqt4' 
'python2-dateutil' 'python2-pyparsing')
+   optdepends=('pygtk: for GTK/GTKAgg/GTKCairo backend'
+   'python2-cairo: for GTKCairo/GTK3Cairo backend'
+   'python2-pyqt5: for Qt5Agg backend'
+   'tk: used by the TkAgg backend'
+   'ghostscript: usetex dependencies'
+   'texlive-bin

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

2014-08-25 Thread Felix Yan
Date: Tuesday, August 26, 2014 @ 07:08:35
  Author: fyan
Revision: 117886

upgpkg: python-matplotlib 1.4.0-1

- upstream new release

Modified:
  python-matplotlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-26 04:01:06 UTC (rev 117885)
+++ PKGBUILD2014-08-26 05:08:35 UTC (rev 117886)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
 # Contributor: Stefan Husmann 
 # Contributor: Angel 'angvp' Velasquez 
 # Contributor: Douglas Soares de Andrade 
@@ -6,47 +7,68 @@
 
 pkgbase=python-matplotlib
 pkgname=('python2-matplotlib' 'python-matplotlib')
-pkgver=1.3.1
-pkgrel=4
+pkgver=1.4.0
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=('i686' 'x86_64')
 url='http://matplotlib.org'
 license=('custom')
-checkdepends=('python-nose' 'python2-nose')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'xorg-server-xvfb'
+  'texlive-core' 'texlive-latexextra' 'imagemagick' 'ffmpeg' 
'mencoder' 'inkscape')
 makedepends=('python2-pytz' 'python2-numpy' 'python2-pyqt4' 'python-pytz' 
'python-numpy'
  'python-pyqt4' 'tk' 'python-cairo' 'python2-cairo' 
'python-dateutil'
  'python2-dateutil' 'python-gobject' 'python2-gobject' 
'python-pyparsing'
  'python2-pyparsing' 'pygtk' 'python-six' 'ghostscript' 
'texlive-bin'
- 'python-tornado' 'python2-tornado' 'gtk3' 'wxpython')
-source=("http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-${pkgver}/matplotlib-${pkgver}.tar.gz";
-"ffmpeg-2.0.patch")
-sha512sums=('04877aa15b6d52a6f813e8377098d13c432f66ae2522c544575440180944c9b73a2164ae63edd3a0eff807883bf7b39cd55f28454ccee8c76146567ff4a6fd40'
-
'f76cde48aee9819f080bc34717c9cb6270f6dfac0490e7b19673ee665392be1837621aa858435f48595fa7d095e8efaee6737c87f9d42419499f5b8b8b001129')
+ 'python-tornado' 'python2-tornado' 'gtk3' 'wxpython' 
'python-pyqt5' 'python2-pyqt5')
+source=("https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz";)
+sha512sums=('1d127e3da4eb208af57b9890defc1d95f2f2b9c6d44ba2fde5dbeac6d95112a2542090fe198b31022887c5c2102710fbc11b01e0c1032c8ea9f88a8c91336830')
 
 prepare() {
-   cp -a matplotlib-${pkgver} matplotlib-${pkgver}-py3
+   cp -a matplotlib-${pkgver} matplotlib-${pkgver}-py2
 
cd matplotlib-${pkgver}
-   patch -Np1 -i ../ffmpeg-2.0.patch
for file in $(find . -name '*.py' -print); do
   sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python2|" \
- -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" ${file}
+ -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python3|" ${file}
done
 
-   cd ../matplotlib-${pkgver}-py3
-   patch -Np1 -i ../ffmpeg-2.0.patch
+   cd ../matplotlib-${pkgver}-py2
for file in $(find . -name '*.py' -print); do
   sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python3|" \
- -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python3|" ${file}
+ -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" ${file}
done
 }
 
 build() {
+   # this seems to need to be present or gtk/gdk dies
+   # and hangs the build checking if gtk3cairo is installed
+   export XDG_RUNTIME_DIR=/tmp
+
cd matplotlib-${pkgver}
+   python3 setup.py build
+
+   cd ../matplotlib-${pkgver}-py2
python2 setup.py build
+}
 
-   cd ../matplotlib-${pkgver}-py3
-   python3 setup.py build
+check() {
+   cd matplotlib-${pkgver}
+   (
+ export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.4:$PYTHONPATH"
+ python -c "from matplotlib import font_manager"
+ rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir
+ xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 
1280x1024x24" \
+   python ../matplotlib-${pkgver}/tests.py -sv --processes=8 
--process-timeout=300 || warning "Tests failed"
+   )
+
+   cd ../matplotlib-${pkgver}-py2
+   (
+ export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH"
+ python2 -c "from matplotlib import font_manager"
+ rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir
+ xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 
1280x1024x24" \
+   python2 ../matplotlib-${pkgver}-py2/tests.py -sv --processes=8 
--process-timeout=300 || warning "Tests failed"
+   )
 }
 
 package_python2-matplotlib() {
@@ -53,6 +75,7 @@
depends=('python2-pytz' 'python2-numpy' 'python2-cairo' 'python2-pyqt4' 
'python2-dateutil' 'python2-pyparsing')
optdepends=('pygtk: for GTK/GTKAgg/GTKCairo backend'
'python2-cairo: for GTKCairo/GTK3Cairo backend'
+   'python2-pyqt5: for Qt5Agg backend'
'tk: used by the TkAgg backend'
 

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

2014-08-25 Thread Felix Yan
Date: Tuesday, August 26, 2014 @ 06:00:46
  Author: fyan
Revision: 117884

upgpkg: flake8 1:2.2.3-1

Modified:
  flake8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-26 02:36:56 UTC (rev 117883)
+++ PKGBUILD2014-08-26 04:00:46 UTC (rev 117884)
@@ -6,7 +6,7 @@
 
 pkgbase=flake8
 pkgname=(flake8 python2-flake8)
-pkgver=2.2.2
+pkgver=2.2.3
 pkgrel=1
 epoch=1
 pkgdesc="The modular source code checker: pep8, pyflakes and co"
@@ -17,7 +17,7 @@
  'pep8-python3' 'pep8-python2' 'python-mccabe' 'python2-mccabe')
 checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
 
source=("http://pypi.python.org/packages/source/f/${pkgbase}/${pkgbase}-${pkgver}.tar.gz";)
-md5sums=('5489f7dbec86de460839fa4290997040')
+md5sums=('dc26f97ab25f659761aee131a25e98b6')
 
 prepare() {
   cp -r ${pkgbase}-${pkgver}{,-py2}



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

2014-08-25 Thread Felix Yan
Date: Tuesday, August 26, 2014 @ 06:01:06
  Author: fyan
Revision: 117885

archrelease: copy trunk to community-any

Added:
  flake8/repos/community-any/PKGBUILD
(from rev 117884, flake8/trunk/PKGBUILD)
Deleted:
  flake8/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-26 04:00:46 UTC (rev 117884)
+++ PKGBUILD2014-08-26 04:01:06 UTC (rev 117885)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Karol "Kenji Takahashi" Woźniak 
-# Contributor: spider-mario 
-# Contributor: Allen Li 
-
-pkgbase=flake8
-pkgname=(flake8 python2-flake8)
-pkgver=2.2.2
-pkgrel=1
-epoch=1
-pkgdesc="The modular source code checker: pep8, pyflakes and co"
-arch=('any')
-url="http://bitbucket.org/tarek/flake8";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pyflakes' 
'python2-pyflakes'
- 'pep8-python3' 'pep8-python2' 'python-mccabe' 'python2-mccabe')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
-source=("http://pypi.python.org/packages/source/f/${pkgbase}/${pkgbase}-${pkgver}.tar.gz";)
-md5sums=('5489f7dbec86de460839fa4290997040')
-
-prepare() {
-  cp -r ${pkgbase}-${pkgver}{,-py2}
-}
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  python setup.py build
-
-  cd "${srcdir}/${pkgbase}-${pkgver}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  python setup.py test
-
-  cd "${srcdir}/${pkgbase}-${pkgver}-py2"
-  python2 setup.py test
-}
-
-package_flake8() {
-  depends=('python' 'python-pyflakes' 'python-mccabe' 'pep8')
-  provides=('flake8-python3')
-  replaces=('flake8-python3')
-  conflicts=('flake8-python3')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  python setup.py install --root="${pkgdir}/" --prefix=/usr --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-flake8() {
-  depends=('python2' 'python2-pyflakes' 'python2-mccabe' 'python2-pep8')
-  provides=('flake8-python2')
-  replaces=('flake8-python2')
-  conflicts=('flake8-python2')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}-py2"
-  python2 setup.py install --root="${pkgdir}/" --prefix=/usr --optimize=1
-  mv "${pkgdir}/usr/bin/flake8" "${pkgdir}/usr/bin/flake8-python2"
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: flake8/repos/community-any/PKGBUILD (from rev 117884, 
flake8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-26 04:01:06 UTC (rev 117885)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Karol "Kenji Takahashi" Woźniak 
+# Contributor: spider-mario 
+# Contributor: Allen Li 
+
+pkgbase=flake8
+pkgname=(flake8 python2-flake8)
+pkgver=2.2.3
+pkgrel=1
+epoch=1
+pkgdesc="The modular source code checker: pep8, pyflakes and co"
+arch=('any')
+url="http://bitbucket.org/tarek/flake8";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pyflakes' 
'python2-pyflakes'
+ 'pep8-python3' 'pep8-python2' 'python-mccabe' 'python2-mccabe')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
+source=("http://pypi.python.org/packages/source/f/${pkgbase}/${pkgbase}-${pkgver}.tar.gz";)
+md5sums=('dc26f97ab25f659761aee131a25e98b6')
+
+prepare() {
+  cp -r ${pkgbase}-${pkgver}{,-py2}
+}
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python setup.py build
+
+  cd "${srcdir}/${pkgbase}-${pkgver}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python setup.py test
+
+  cd "${srcdir}/${pkgbase}-${pkgver}-py2"
+  python2 setup.py test
+}
+
+package_flake8() {
+  depends=('python' 'python-pyflakes' 'python-mccabe' 'pep8')
+  provides=('flake8-python3')
+  replaces=('flake8-python3')
+  conflicts=('flake8-python3')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python setup.py install --root="${pkgdir}/" --prefix=/usr --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-flake8() {
+  depends=('python2' 'python2-pyflakes' 'python2-mccabe' 'python2-pep8')
+  provides=('flake8-python2')
+  replaces=('flake8-python2')
+  conflicts=('flake8-python2')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}-py2"
+  python2 setup.py install --root="${pkgdir}/" --prefix=/usr --optimize=1
+  mv "${pkgdir}/usr/bin/flake8" "${pkgdir}/usr/bin/flake8-python2"
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 04:36:56
  Author: eric
Revision: 117883

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-26 02:35:33 UTC (rev 117882)
+++ PKGBUILD2014-08-26 02:36:56 UTC (rev 117883)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2014.08.24.6
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/";
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('e88491339a0efd47d89a661f4e79682c0626a357'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
-"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 117882, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-26 02:36:56 UTC (rev 117883)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2014.08.25.3
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/";
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('593e77037d6433a3062f0205d2ebec3681ee6e5e'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 04:35:33
  Author: eric
Revision: 117882

upgpkg: youtube-dl 2014.08.25.3-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 23:06:48 UTC (rev 117881)
+++ PKGBUILD2014-08-26 02:35:33 UTC (rev 117882)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2014.08.24.6
+pkgver=2014.08.25.3
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -13,7 +13,7 @@
 'rtmpdump: for rtmp streams support')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('e88491339a0efd47d89a661f4e79682c0626a357'
+sha1sums=('593e77037d6433a3062f0205d2ebec3681ee6e5e'
   'SKIP')
 
 prepare() {



[arch-commits] Commit in imagemagick/repos/extra-x86_64 (2 files)

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 04:22:37
  Author: eric
Revision: 220662

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 220661, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 220661, imagemagick/trunk/perlmagick.rpath.patch)

+
 PKGBUILD   |   90 +++
 perlmagick.rpath.patch |   11 +
 2 files changed, 101 insertions(+)

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 220661, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-26 02:22:37 UTC (rev 220662)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick
+pkgname=('imagemagick' 'imagemagick-doc')
+pkgver=6.8.9.7
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.imagemagick.org/";
+license=('custom')
+makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
+ 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2'
+ 'opencl-headers' 'libcl' 'libwebp' 'subversion')
+#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
+source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
+perlmagick.rpath.patch)
+sha1sums=('896a31574a06d2f2a9c1558fe05afe0c65012124'
+  'SKIP'
+  'e143cf9d530fabf3b58023899b5cc544ba93daec')
+
+prepare() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  sed '/AC_PATH_XTRA/d' -i configure.ac
+  autoreconf --force --install
+  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
+}
+
+build() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
+  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
+--enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \
+--with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
+--with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
+--enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
+--without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
+  make
+}
+
+check() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+#  make check
+}
+
+package_imagemagick() {
+  pkgdesc="An image viewing/manipulation program"
+  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
+  optdepends=('imagemagick-doc: for additional information'
+  'ghostscript: for Ghostscript support' 
+  'openexr: for OpenEXR support' 
+ 'openjpeg2: for JP2 support' 
+  'libwmf: for WMF support' 
+  'librsvg: for SVG support' 
+  'libxml2: for XML support' 
+  'libpng: for PNG support' 
+ 'libwebp: for WEBP support')
+  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
+  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
+  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
+  "etc/ImageMagick-${pkgver%%.*}/log.xml"
+  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
+  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
+  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
+  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
+  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
+  options=('!docs' 'libtool' '!emptydirs')
+
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  make -j1 DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
+  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
+
+#Cleaning
+  rm -f "${pkgdir}"/usr/lib/*.la
+}
+
+package_imagemagick-doc() {
+  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
+
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  make DESTDIR="${pkgdir}" install-data-html
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE"
+  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE"
+}

Copied: imagemagick/repos/extra-x86_64/perlmagick.rpath.patch (from rev 220661, 
imagemagick/trunk/perlmagick.rpath.patch)
===
--- perlmagick.rpath.patch  (rev 0)
+++ perlmagick.rpath.patch  2014-08-26 02:22:37 UTC (rev 220662)
@@ -0,0 +1,11 @@
+--- Makefile.in.orig   2013-02-21 03:26:56.785156600 -0500
 Makefile.in2013-02-21 03:39:03.102411457 -0500
+@

[arch-commits] Commit in imagemagick/repos/extra-i686 (2 files)

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 04:21:19
  Author: eric
Revision: 220661

archrelease: copy trunk to extra-i686

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 220660, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 220660, imagemagick/trunk/perlmagick.rpath.patch)

+
 PKGBUILD   |   90 +++
 perlmagick.rpath.patch |   11 +
 2 files changed, 101 insertions(+)

Copied: imagemagick/repos/extra-i686/PKGBUILD (from rev 220660, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-26 02:21:19 UTC (rev 220661)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick
+pkgname=('imagemagick' 'imagemagick-doc')
+pkgver=6.8.9.7
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.imagemagick.org/";
+license=('custom')
+makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
+ 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2'
+ 'opencl-headers' 'libcl' 'libwebp' 'subversion')
+#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
+source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
+perlmagick.rpath.patch)
+sha1sums=('896a31574a06d2f2a9c1558fe05afe0c65012124'
+  'SKIP'
+  'e143cf9d530fabf3b58023899b5cc544ba93daec')
+
+prepare() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  sed '/AC_PATH_XTRA/d' -i configure.ac
+  autoreconf --force --install
+  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
+}
+
+build() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
+  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
+--enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \
+--with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
+--with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
+--enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
+--without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
+  make
+}
+
+check() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+#  make check
+}
+
+package_imagemagick() {
+  pkgdesc="An image viewing/manipulation program"
+  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
+  optdepends=('imagemagick-doc: for additional information'
+  'ghostscript: for Ghostscript support' 
+  'openexr: for OpenEXR support' 
+ 'openjpeg2: for JP2 support' 
+  'libwmf: for WMF support' 
+  'librsvg: for SVG support' 
+  'libxml2: for XML support' 
+  'libpng: for PNG support' 
+ 'libwebp: for WEBP support')
+  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
+  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
+  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
+  "etc/ImageMagick-${pkgver%%.*}/log.xml"
+  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
+  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
+  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
+  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
+  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
+  options=('!docs' 'libtool' '!emptydirs')
+
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  make -j1 DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
+  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
+
+#Cleaning
+  rm -f "${pkgdir}"/usr/lib/*.la
+}
+
+package_imagemagick-doc() {
+  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
+
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  make DESTDIR="${pkgdir}" install-data-html
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE"
+  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE"
+}

Copied: imagemagick/repos/extra-i686/perlmagick.rpath.patch (from rev 220660, 
imagemagick/trunk/perlmagick.rpath.patch)
===
--- perlmagick.rpath.patch  (rev 0)
+++ perlmagick.rpath.patch  2014-08-26 02:21:19 UTC (rev 220661)
@@ -0,0 +1,11 @@
+--- Makefile.in.orig   2013-02-21 03:26:56.785156600 -0500
 Makefile.in2013-02-21 03:39:03.102411457 -0500
+@@ -10469,6

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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 04:09:08
  Author: eric
Revision: 220660

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

Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 extra-i686/PKGBUILD |   90 --
 extra-i686/perlmagick.rpath.patch   |   11 
 extra-x86_64/PKGBUILD   |   90 --
 extra-x86_64/perlmagick.rpath.patch |   11 
 4 files changed, 202 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-26 02:06:20 UTC (rev 220659)
+++ extra-i686/PKGBUILD 2014-08-26 02:09:08 UTC (rev 220660)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.9.7
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.imagemagick.org/";
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2'
- 'opencl-headers' 'libcl' 'libwebp' 'subversion')
-#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-perlmagick.rpath.patch)
-sha1sums=('896a31574a06d2f2a9c1558fe05afe0c65012124'
-  'SKIP'
-  'e143cf9d530fabf3b58023899b5cc544ba93daec')
-
-prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
-}
-
-build() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
-  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
---enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
-  make
-}
-
-check() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc="An image viewing/manipulation program"
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
- 'openjpeg2: for JP2 support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support')
-  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
-  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
-  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
-  "etc/ImageMagick-${pkgver%%.*}/log.xml"
-  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
-  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
-  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
-  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
-  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make -j1 DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
-  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
-
-#Cleaning
-  rm -f "${pkgdir}"/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR="${pkgdir}" install-data-html
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE"
-  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE"
-}

Deleted: extra-i686/perlmagick.rpath.patch
===
--- extra-i686/perlmagick.rpath.patch   2014-08-26 02:06:20 UTC (rev 220659)
+++ extra-i686/perlmagick.rpath.patch   2014-08-26 02:09:08 UTC (rev 220660)
@@ -1,11 +0,0 @@
 Makefile.in.orig   2013-02-21 03:26:56.785156600 -0500
-+++ Makefile.in

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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 04:06:20
  Author: eric
Revision: 220659

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

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 220658, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 220658, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 220658, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 220658, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 /PKGBUILD   |  180 ++
 /perlmagick.rpath.patch |   22 
 extra-i686/PKGBUILD |   90 -
 extra-i686/perlmagick.rpath.patch   |   11 --
 extra-x86_64/PKGBUILD   |   90 -
 extra-x86_64/perlmagick.rpath.patch |   11 --
 6 files changed, 202 insertions(+), 202 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-26 01:59:17 UTC (rev 220658)
+++ extra-i686/PKGBUILD 2014-08-26 02:06:20 UTC (rev 220659)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.9.7
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.imagemagick.org/";
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2'
- 'opencl-headers' 'libcl' 'libwebp' 'subversion')
-#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-perlmagick.rpath.patch)
-sha1sums=('896a31574a06d2f2a9c1558fe05afe0c65012124'
-  'SKIP'
-  'e143cf9d530fabf3b58023899b5cc544ba93daec')
-
-prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
-}
-
-build() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
-  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
---enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
-  make
-}
-
-check() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc="An image viewing/manipulation program"
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
- 'openjpeg2: for JP2 support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support')
-  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
-  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
-  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
-  "etc/ImageMagick-${pkgver%%.*}/log.xml"
-  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
-  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
-  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
-  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
-  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make -j1 DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
-  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
-
-#Cleaning
-  rm -f "${pkgdir}"/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR="${pkgdir}" install-

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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 03:59:17
  Author: eric
Revision: 220658

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

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 220655, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 220655, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 220656, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 220656, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 /PKGBUILD   |  180 ++
 /perlmagick.rpath.patch |   22 
 extra-i686/PKGBUILD |   90 -
 extra-i686/perlmagick.rpath.patch   |   11 --
 extra-x86_64/PKGBUILD   |   90 -
 extra-x86_64/perlmagick.rpath.patch |   11 --
 6 files changed, 202 insertions(+), 202 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-26 01:59:01 UTC (rev 220657)
+++ extra-i686/PKGBUILD 2014-08-26 01:59:17 UTC (rev 220658)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.9.6
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.imagemagick.org/";
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2'
- 'opencl-headers' 'libcl' 'libwebp' 'subversion')
-#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-perlmagick.rpath.patch)
-sha1sums=('d2e30cdc0e3becb781ac011f0452171926a72a2a'
-  'SKIP'
-  'e143cf9d530fabf3b58023899b5cc544ba93daec')
-
-prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
-}
-
-build() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
-  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
---enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
-  make
-}
-
-check() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc="An image viewing/manipulation program"
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
- 'openjpeg2: for JP2 support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support')
-  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
-  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
-  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
-  "etc/ImageMagick-${pkgver%%.*}/log.xml"
-  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
-  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
-  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
-  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
-  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make -j1 DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
-  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
-
-#Cleaning
-  rm -f "${pkgdir}"/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR="${pkgdir}" install-

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

2014-08-25 Thread Gaetan Bisson
Date: Tuesday, August 26, 2014 @ 03:59:01
  Author: bisson
Revision: 220657

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

Added:
  ntp/repos/extra-i686/PKGBUILD
(from rev 220656, ntp/trunk/PKGBUILD)
  ntp/repos/extra-i686/install
(from rev 220656, ntp/trunk/install)
  ntp/repos/extra-i686/ntp.conf
(from rev 220656, ntp/trunk/ntp.conf)
  ntp/repos/extra-i686/ntpd.service
(from rev 220656, ntp/trunk/ntpd.service)
  ntp/repos/extra-i686/ntpdate.service
(from rev 220656, ntp/trunk/ntpdate.service)
  ntp/repos/extra-x86_64/PKGBUILD
(from rev 220656, ntp/trunk/PKGBUILD)
  ntp/repos/extra-x86_64/install
(from rev 220656, ntp/trunk/install)
  ntp/repos/extra-x86_64/ntp.conf
(from rev 220656, ntp/trunk/ntp.conf)
  ntp/repos/extra-x86_64/ntpd.service
(from rev 220656, ntp/trunk/ntpd.service)
  ntp/repos/extra-x86_64/ntpdate.service
(from rev 220656, ntp/trunk/ntpdate.service)
Deleted:
  ntp/repos/extra-i686/PKGBUILD
  ntp/repos/extra-i686/install
  ntp/repos/extra-i686/ntp.conf
  ntp/repos/extra-i686/ntpd.service
  ntp/repos/extra-i686/ntpdate.service
  ntp/repos/extra-x86_64/PKGBUILD
  ntp/repos/extra-x86_64/install
  ntp/repos/extra-x86_64/ntp.conf
  ntp/repos/extra-x86_64/ntpd.service
  ntp/repos/extra-x86_64/ntpdate.service

--+
 /PKGBUILD|  110 +
 /install |   22 
 /ntp.conf|   38 ++
 /ntpd.service|   28 ++
 /ntpdate.service |   24 
 extra-i686/PKGBUILD  |   55 
 extra-i686/install   |   11 
 extra-i686/ntp.conf  |   19 ---
 extra-i686/ntpd.service  |   14 -
 extra-i686/ntpdate.service   |   12 
 extra-x86_64/PKGBUILD|   55 
 extra-x86_64/install |   11 
 extra-x86_64/ntp.conf|   19 ---
 extra-x86_64/ntpd.service|   14 -
 extra-x86_64/ntpdate.service |   12 
 15 files changed, 222 insertions(+), 222 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-26 01:58:09 UTC (rev 220656)
+++ extra-i686/PKGBUILD 2014-08-26 01:59:01 UTC (rev 220657)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: kevin 
-
-pkgname=ntp
-_pkgname=ntp-dev
-_pkgver=4.2.7p446
-pkgver=${_pkgver/p/.p}
-pkgrel=2
-pkgdesc='Network Time Protocol reference implementation'
-url='http://www.ntp.org/'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libcap' 'libedit')
-backup=('etc/ntp.conf')
-source=("http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz";
-'ntp.conf'
-'ntpd.service'
-'ntpdate.service')
-sha1sums=('634afa46e77c1fd7f0a797f4d46a4f0654b9ca8d'
-  'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
-  'c6d540074f98f57a162738f2bdae409b52cce72d'
-  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
-
-options=('!emptydirs')
-install=install
-
-build() {
-   cd "${srcdir}/${_pkgname}-${_pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --enable-linuxcaps \
-   --enable-ntp-signd \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}-${_pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-
-   install -Dm644 ../ntp.conf "${pkgdir}"/etc/ntp.conf
-   install -Dm644 ../ntpd.service 
"${pkgdir}"/usr/lib/systemd/system/ntpd.service
-   install -Dm644 ../ntpdate.service 
"${pkgdir}"/usr/lib/systemd/system/ntpdate.service
-   install -Dm644 COPYRIGHT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-   install -d -o 87 "${pkgdir}"/var/lib/ntp
-   echo > "${pkgdir}/var/lib/ntp/.placeholder"
-
-   install -dm755 "${pkgdir}/usr/lib/systemd/ntp-units.d"
-   echo 'ntpd.service' > 
"${pkgdir}/usr/lib/systemd/ntp-units.d/50-${pkgname}.list"
-}

Copied: ntp/repos/extra-i686/PKGBUILD (from rev 220656, ntp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-26 01:59:01 UTC (rev 220657)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: kevin 
+
+pkgname=ntp
+_pkgname=ntp-dev
+_pkgver=4.2.7p465
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=("http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz";
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('fa25baa9c215403c4f54ab005a65bc9eb744cdd3'
+  'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
+  'c6d540074f98f57a162738f2bdae

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

2014-08-25 Thread Gaetan Bisson
Date: Tuesday, August 26, 2014 @ 03:58:09
  Author: bisson
Revision: 220656

upstream update

Modified:
  ntp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-26 01:56:55 UTC (rev 220655)
+++ PKGBUILD2014-08-26 01:58:09 UTC (rev 220656)
@@ -4,9 +4,9 @@
 
 pkgname=ntp
 _pkgname=ntp-dev
-_pkgver=4.2.7p446
+_pkgver=4.2.7p465
 pkgver=${_pkgver/p/.p}
-pkgrel=2
+pkgrel=1
 pkgdesc='Network Time Protocol reference implementation'
 url='http://www.ntp.org/'
 license=('custom')
@@ -17,7 +17,7 @@
 'ntp.conf'
 'ntpd.service'
 'ntpdate.service')
-sha1sums=('634afa46e77c1fd7f0a797f4d46a4f0654b9ca8d'
+sha1sums=('fa25baa9c215403c4f54ab005a65bc9eb744cdd3'
   'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
   'c6d540074f98f57a162738f2bdae409b52cce72d'
   '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')



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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 03:56:55
  Author: eric
Revision: 220655

upgpkg: imagemagick 6.8.9.7-1

Upstream update

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-26 01:53:40 UTC (rev 220654)
+++ PKGBUILD2014-08-26 01:56:55 UTC (rev 220655)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.9.6
+pkgver=6.8.9.7
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.imagemagick.org/";
@@ -14,7 +14,7 @@
 
#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 perlmagick.rpath.patch)
-sha1sums=('d2e30cdc0e3becb781ac011f0452171926a72a2a'
+sha1sums=('896a31574a06d2f2a9c1558fe05afe0c65012124'
   'SKIP'
   'e143cf9d530fabf3b58023899b5cc544ba93daec')
 



[arch-commits] Commit in mlocate/trunk (updatedb.service updatedb.timer)

2014-08-25 Thread Gaetan Bisson
Date: Tuesday, August 26, 2014 @ 03:53:40
  Author: bisson
Revision: 220654

tentative fix for FS#41688: follow systemd-tmpfiles-clean.timer

Modified:
  mlocate/trunk/updatedb.service
  mlocate/trunk/updatedb.timer

--+
 updatedb.service |4 +---
 updatedb.timer   |5 ++---
 2 files changed, 3 insertions(+), 6 deletions(-)

Modified: updatedb.service
===
--- updatedb.service2014-08-26 01:17:27 UTC (rev 220653)
+++ updatedb.service2014-08-26 01:53:40 UTC (rev 220654)
@@ -4,6 +4,4 @@
 [Service]
 Type=oneshot
 ExecStart=/usr/bin/updatedb
-Nice=19
-IOSchedulingClass=best-effort
-IOSchedulingPriority=7
+IOSchedulingClass=idle

Modified: updatedb.timer
===
--- updatedb.timer  2014-08-26 01:17:27 UTC (rev 220653)
+++ updatedb.timer  2014-08-26 01:53:40 UTC (rev 220654)
@@ -2,6 +2,5 @@
 Description=Daily locate database update
 
 [Timer]
-OnCalendar=daily
-AccuracySec=12h
-Persistent=true
+OnBootSec=15min
+OnUnitActiveSec=1d



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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 03:15:15
  Author: eric
Revision: 220652

upgpkg: liferea 1.10.11-1

Upstream update

Modified:
  liferea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-26 00:26:44 UTC (rev 220651)
+++ PKGBUILD2014-08-26 01:15:15 UTC (rev 220652)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=liferea
-pkgver=1.10.9
+pkgver=1.10.11
 pkgrel=1
 pkgdesc="A desktop news aggregator for online news feeds and weblogs"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 options=('!emptydirs')
 install=liferea.install
 
source=(https://github.com/lwindolf/liferea/releases/download/v${pkgver}/liferea-${pkgver}.tar.bz2)
-sha1sums=('04ff66e4f08ad2f46563a6784c656439cda1f223')
+sha1sums=('7ff8197989f4caad5f50c6b4c18ee19699ecf70c')
 
 build() {
   cd liferea-${pkgver}



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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 03:17:27
  Author: eric
Revision: 220653

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

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

--+
 /PKGBUILD|   66 +
 /liferea.install |   42 ++
 extra-i686/PKGBUILD  |   33 
 extra-i686/liferea.install   |   21 -
 extra-x86_64/PKGBUILD|   33 
 extra-x86_64/liferea.install |   21 -
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-26 01:15:15 UTC (rev 220652)
+++ extra-i686/PKGBUILD 2014-08-26 01:17:27 UTC (rev 220653)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=liferea
-pkgver=1.10.9
-pkgrel=1
-pkgdesc="A desktop news aggregator for online news feeds and weblogs"
-arch=('i686' 'x86_64')
-url="http://liferea.sourceforge.net/";
-license=('GPL')
-depends=('webkitgtk' 'libnotify' 'json-glib' 'libpeas' 'python2-gobject' 
- 'gnome-icon-theme' 'desktop-file-utils')
-makedepends=('intltool')
-optdepends=('gnome-keyring: for keyring plugin support'
-'libgnome-keyring: for keyring plugin support'
-   'gst-plugins-base: for media player plugin support'
-   'gst-plugins-good: for media player plugin support'
-   'gst-plugins-bad: for media player plugin support')
-options=('!emptydirs')
-install=liferea.install
-source=(https://github.com/lwindolf/liferea/releases/download/v${pkgver}/liferea-${pkgver}.tar.bz2)
-sha1sums=('04ff66e4f08ad2f46563a6784c656439cda1f223')
-
-build() {
-  cd liferea-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-compile
-  make
-}
-
-package() {
-  cd liferea-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: liferea/repos/extra-i686/PKGBUILD (from rev 220652, 
liferea/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-26 01:17:27 UTC (rev 220653)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=liferea
+pkgver=1.10.11
+pkgrel=1
+pkgdesc="A desktop news aggregator for online news feeds and weblogs"
+arch=('i686' 'x86_64')
+url="http://liferea.sourceforge.net/";
+license=('GPL')
+depends=('webkitgtk' 'libnotify' 'json-glib' 'libpeas' 'python2-gobject' 
+ 'gnome-icon-theme' 'desktop-file-utils')
+makedepends=('intltool')
+optdepends=('gnome-keyring: for keyring plugin support'
+'libgnome-keyring: for keyring plugin support'
+   'gst-plugins-base: for media player plugin support'
+   'gst-plugins-good: for media player plugin support'
+   'gst-plugins-bad: for media player plugin support')
+options=('!emptydirs')
+install=liferea.install
+source=(https://github.com/lwindolf/liferea/releases/download/v${pkgver}/liferea-${pkgver}.tar.bz2)
+sha1sums=('7ff8197989f4caad5f50c6b4c18ee19699ecf70c')
+
+build() {
+  cd liferea-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-compile
+  make
+}
+
+package() {
+  cd liferea-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/liferea.install
===
--- extra-i686/liferea.install  2014-08-26 01:15:15 UTC (rev 220652)
+++ extra-i686/liferea.install  2014-08-26 01:17:27 UTC (rev 220653)
@@ -1,21 +0,0 @@
-pkgname=liferea
-
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-pre_upgrade() {
-  if [ -f usr/share/gconf/schemas/$pkgname.schemas ]; then
-gconfpkg --uninstall $pkgname
-  fi
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: liferea/repos/extra-i686/liferea.install (from rev 220652, 
liferea/trunk/liferea.install)
===
--- extra-i686/liferea.install  (rev 0)
+++ extra-i686/liferea.install  2014-08-26 01:17:27 UTC (rev 220653)
@@ -0,0 +1,21 @@
+pkgname=liferea
+
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  u

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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 02:26:44
  Author: eric
Revision: 220651

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

Added:
  openslp/repos/testing-i686/
  openslp/repos/testing-i686/PKGBUILD
(from rev 220650, openslp/trunk/PKGBUILD)
  openslp/repos/testing-i686/openslp.service
(from rev 220650, openslp/trunk/openslp.service)
  openslp/repos/testing-x86_64/
  openslp/repos/testing-x86_64/PKGBUILD
(from rev 220650, openslp/trunk/PKGBUILD)
  openslp/repos/testing-x86_64/openslp.service
(from rev 220650, openslp/trunk/openslp.service)

+
 testing-i686/PKGBUILD  |   44 +++
 testing-i686/openslp.service   |   11 +
 testing-x86_64/PKGBUILD|   44 +++
 testing-x86_64/openslp.service |   11 +
 4 files changed, 110 insertions(+)

Copied: openslp/repos/testing-i686/PKGBUILD (from rev 220650, 
openslp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-26 00:26:44 UTC (rev 220651)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=openslp
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Open-source implementation of Service Location Protocol"
+arch=('i686' 'x86_64')
+url="http://www.openslp.org";
+license=('BSD')
+depends=('bash' 'openssl')
+makedepends=('doxygen')
+backup=('etc/slp.conf' 'etc/slp.reg' 'etc/slp.spi')
+options=(!makeflags)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+
#https://github.com/lunar-linux/moonbase-other/commit/ae74b5873e639d50db0a563d2424114a530c01ae
+openslp.service)
+md5sums=('18cf7940bcc444e32592cf34e84f833f'
+ '90eea4426492287ebfc01b2056a3ef9d')
+
+prepare() {
+  sed -i 's|$(datadir)/doc|$(docdir)|' ${pkgname}-${pkgver}/doc/Makefile.in
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--docdir=/usr/share/doc/openslp-${pkgver} \
+--enable-slpv1 \
+--enable-slpv2-security # service would fail to start without this
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" INSTALL_DATA="cp -r" install-docs
+  rm "${pkgdir}/usr/share/doc/openslp-${pkgver}/openslp-doxy-${pkgver}.tar.gz"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -D -m644 "${srcdir}/openslp.service" 
"${pkgdir}/usr/lib/systemd/system/openslp.service"
+}

Copied: openslp/repos/testing-i686/openslp.service (from rev 220650, 
openslp/trunk/openslp.service)
===
--- testing-i686/openslp.service(rev 0)
+++ testing-i686/openslp.service2014-08-26 00:26:44 UTC (rev 220651)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Service Location Protocol
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/slpd -c /etc/slp.conf -r /etc/slp.reg -s /etc/slp.spi
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=network.target

Copied: openslp/repos/testing-x86_64/PKGBUILD (from rev 220650, 
openslp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-26 00:26:44 UTC (rev 220651)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=openslp
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Open-source implementation of Service Location Protocol"
+arch=('i686' 'x86_64')
+url="http://www.openslp.org";
+license=('BSD')
+depends=('bash' 'openssl')
+makedepends=('doxygen')
+backup=('etc/slp.conf' 'etc/slp.reg' 'etc/slp.spi')
+options=(!makeflags)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+
#https://github.com/lunar-linux/moonbase-other/commit/ae74b5873e639d50db0a563d2424114a530c01ae
+openslp.service)
+md5sums=('18cf7940bcc444e32592cf34e84f833f'
+ '90eea4426492287ebfc01b2056a3ef9d')
+
+prepare() {
+  sed -i 's|$(datadir)/doc|$(docdir)|' ${pkgname}-${pkgver}/doc/Makefile.in
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--docdir=/usr/share/doc/openslp-${pkgver} \
+--enable-slpv1 \
+--enable-slpv2-security # service would fail to start without this
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" INSTALL_DATA="cp -r" install-docs
+  rm "${pkgdir}/usr/share/doc/openslp-${pkgver}/openslp-doxy-${pkgver}.tar.gz"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -D -m644 "${srcdir}/openslp.service" 
"${pkgdir}/usr/lib/system

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

2014-08-25 Thread Eric Bélanger
Date: Tuesday, August 26, 2014 @ 02:24:54
  Author: eric
Revision: 220650

upgpkg: openslp 2.0.0-1

Upstream update

Modified:
  openslp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 19:42:14 UTC (rev 220649)
+++ PKGBUILD2014-08-26 00:24:54 UTC (rev 220650)
@@ -2,25 +2,33 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=openslp
-pkgver=1.2.1
-pkgrel=7
+pkgver=2.0.0
+pkgrel=1
 pkgdesc="Open-source implementation of Service Location Protocol"
 arch=('i686' 'x86_64')
 url="http://www.openslp.org";
 license=('BSD')
 depends=('bash' 'openssl')
+makedepends=('doxygen')
 backup=('etc/slp.conf' 'etc/slp.reg' 'etc/slp.spi')
+options=(!makeflags)
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
 
#https://github.com/lunar-linux/moonbase-other/commit/ae74b5873e639d50db0a563d2424114a530c01ae
 openslp.service)
-md5sums=('ffd1b44017281dd00ed2c4d32330'
+md5sums=('18cf7940bcc444e32592cf34e84f833f'
  '90eea4426492287ebfc01b2056a3ef9d')
 
+prepare() {
+  sed -i 's|$(datadir)/doc|$(docdir)|' ${pkgname}-${pkgver}/doc/Makefile.in
+}
+
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \
 --sbindir=/usr/bin \
---disable-static \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--docdir=/usr/share/doc/openslp-${pkgver} \
 --enable-slpv1 \
 --enable-slpv2-security # service would fail to start without this
   make
@@ -27,8 +35,10 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} DOC_DIR=/usr/share/doc/openslp-${pkgver} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  install -D -m644 $srcdir/openslp.service 
${pkgdir}/usr/lib/systemd/system/openslp.service
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" INSTALL_DATA="cp -r" install-docs
+  rm "${pkgdir}/usr/share/doc/openslp-${pkgver}/openslp-doxy-${pkgver}.tar.gz"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -D -m644 "${srcdir}/openslp.service" 
"${pkgdir}/usr/lib/systemd/system/openslp.service"
 }



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

2014-08-25 Thread Daniel Micay
Date: Monday, August 25, 2014 @ 21:58:07
  Author: thestinger
Revision: 117879

upgpkg: playpen 1:10-1

Modified:
  playpen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 16:57:44 UTC (rev 117878)
+++ PKGBUILD2014-08-25 19:58:07 UTC (rev 117879)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Daniel Micay 
 pkgname=playpen
-pkgver=9
+pkgver=10
 pkgrel=1
 epoch=1
 pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'



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

2014-08-25 Thread Daniel Micay
Date: Monday, August 25, 2014 @ 21:58:49
  Author: thestinger
Revision: 117880

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-25 19:58:07 UTC (rev 117879)
+++ community-i686/PKGBUILD 2014-08-25 19:58:49 UTC (rev 117880)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=playpen
-pkgver=9
-pkgrel=1
-epoch=1
-pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
-arch=(i686 x86_64)
-url='https://github.com/thestinger/playpen/'
-license=(MIT)
-depends=(libseccomp systemd)
-makedepends=(git)
-source=(git://github.com/thestinger/playpen#tag=$pkgver)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  CC=cc make
-}
-
-package() {
-  cd $pkgname
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: playpen/repos/community-i686/PKGBUILD (from rev 117879, 
playpen/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-08-25 19:58:49 UTC (rev 117880)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Daniel Micay 
+pkgname=playpen
+pkgver=10
+pkgrel=1
+epoch=1
+pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
+arch=(i686 x86_64)
+url='https://github.com/thestinger/playpen/'
+license=(MIT)
+depends=(libseccomp systemd)
+makedepends=(git)
+source=(git://github.com/thestinger/playpen#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  CC=cc make
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-08-25 19:58:07 UTC (rev 117879)
+++ community-x86_64/PKGBUILD   2014-08-25 19:58:49 UTC (rev 117880)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=playpen
-pkgver=9
-pkgrel=1
-epoch=1
-pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
-arch=(i686 x86_64)
-url='https://github.com/thestinger/playpen/'
-license=(MIT)
-depends=(libseccomp systemd)
-makedepends=(git)
-source=(git://github.com/thestinger/playpen#tag=$pkgver)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  CC=cc make
-}
-
-package() {
-  cd $pkgname
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: playpen/repos/community-x86_64/PKGBUILD (from rev 117879, 
playpen/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-08-25 19:58:49 UTC (rev 117880)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Daniel Micay 
+pkgname=playpen
+pkgver=10
+pkgrel=1
+epoch=1
+pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
+arch=(i686 x86_64)
+url='https://github.com/thestinger/playpen/'
+license=(MIT)
+depends=(libseccomp systemd)
+makedepends=(git)
+source=(git://github.com/thestinger/playpen#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  CC=cc make
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2014-08-25 Thread Ronald van Haren
Date: Monday, August 25, 2014 @ 21:42:14
  Author: ronald
Revision: 220649

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-25 19:41:51 UTC (rev 220648)
+++ extra-i686/PKGBUILD 2014-08-25 19:42:14 UTC (rev 220649)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-
-pkgname=suitesparse
-pkgver=4.2.1
-pkgrel=1
-pkgdesc="A collection of sparse matrix libraries"
-url="http://www.cise.ufl.edu/research/sparse/SuiteSparse/";
-arch=('i686' 'x86_64')
-conflicts=('umfpack')
-provides=('umfpack')
-replaces=('umfpack')
-depends=('blas' 'lapack')
-makedepends=('gcc-fortran')
-license=('GPL')
-options=('staticlibs')
-source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
-sha1sums=('ea6688bd6f6adf81e2e5aacdc71d7dcf9a5d208d')
-
-build() {
-   cd "$srcdir"/SuiteSparse
-   export CFLAGS=" ${CFLAGS} -DNPARTITION"
-   
-   make -C SuiteSparse_config/xerbla
-   make -C SuiteSparse_config 
-   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
-  make -C ${_lib} library
-   done
-}
-
-
-package() {
-   cd "${srcdir}"/SuiteSparse
-   install -dm755 "${pkgdir}"/usr/{lib,include}
-   
-   for _lib in SuiteSparse_config AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK 
CHOLMOD CXSparse SPQR; do
-  make -C ${_lib} INSTALL_LIB="${pkgdir}"/usr/lib 
INSTALL_INCLUDE="${pkgdir}"/usr/include install
-   done
-
-   chmod 644 "${pkgdir}"/usr/include/*.{h,hpp}
-}

Copied: suitesparse/repos/extra-i686/PKGBUILD (from rev 220648, 
suitesparse/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-25 19:42:14 UTC (rev 220649)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+
+pkgname=suitesparse
+pkgver=4.3.1
+pkgrel=1
+pkgdesc="A collection of sparse matrix libraries"
+url="http://www.cise.ufl.edu/research/sparse/SuiteSparse/";
+arch=('i686' 'x86_64')
+conflicts=('umfpack')
+provides=('umfpack')
+replaces=('umfpack')
+depends=('blas' 'lapack')
+makedepends=('gcc-fortran')
+license=('GPL')
+options=('staticlibs')
+source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
+sha1sums=('f7087d6178331d570c1ec811bbd17cbce70ce2f5')
+
+build() {
+   cd "$srcdir"/SuiteSparse
+   export CFLAGS=" ${CFLAGS} -DNPARTITION"
+   
+   make -C SuiteSparse_config/xerbla
+   make -C SuiteSparse_config 
+   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
+  make -C ${_lib} library
+   done
+}
+
+
+package() {
+   cd "${srcdir}"/SuiteSparse
+   install -dm755 "${pkgdir}"/usr/{lib,include}
+   
+   for _lib in SuiteSparse_config AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK 
CHOLMOD CXSparse SPQR; do
+  make -C ${_lib} INSTALL_LIB="${pkgdir}"/usr/lib 
INSTALL_INCLUDE="${pkgdir}"/usr/include install
+   done
+
+   chmod 644 "${pkgdir}"/usr/include/*.{h,hpp}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-08-25 19:41:51 UTC (rev 220648)
+++ extra-x86_64/PKGBUILD   2014-08-25 19:42:14 UTC (rev 220649)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-
-pkgname=suitesparse
-pkgver=4.2.1
-pkgrel=1
-pkgdesc="A collection of sparse matrix libraries"
-url="http://www.cise.ufl.edu/research/sparse/SuiteSparse/";
-arch=('i686' 'x86_64')
-conflicts=('umfpack')
-provides=('umfpack')
-replaces=('umfpack')
-depends=('blas' 'lapack')
-makedepends=('gcc-fortran')
-license=('GPL')
-options=('staticlibs')
-source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
-sha1sums=('ea6688bd6f6adf81e2e5aacdc71d7dcf9a5d208d')
-
-build() {
-   cd "$srcdir"/SuiteSparse
-   export CFLAGS=" ${CFLAGS} -DNPARTITION"
-   
-   make -C SuiteSparse_config/xerbla
-   make -C SuiteSparse_config 
-   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
-  make -C ${_lib} library
-   done
-}
-
-
-package() {
-   cd "${srcdir}"/SuiteSparse
-   install -dm755 "${pkgdir}"/usr/{lib,include}
-   
-   for _lib in SuiteSparse_config AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK 
CHOLMOD CXSparse SPQR; do
-  make -C ${_lib} INSTALL_LIB="${pkgdir}"/usr/lib 
INSTALL_INCLUDE="${pkgdir}"/usr/include install
- 

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

2014-08-25 Thread Ronald van Haren
Date: Monday, August 25, 2014 @ 21:41:51
  Author: ronald
Revision: 220648

upgpkg: suitesparse 4.3.1-1

update to 4.3.1

Modified:
  suitesparse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 19:26:57 UTC (rev 220647)
+++ PKGBUILD2014-08-25 19:41:51 UTC (rev 220648)
@@ -2,7 +2,7 @@
 # Maintainer: Ronald van Haren 
 
 pkgname=suitesparse
-pkgver=4.2.1
+pkgver=4.3.1
 pkgrel=1
 pkgdesc="A collection of sparse matrix libraries"
 url="http://www.cise.ufl.edu/research/sparse/SuiteSparse/";
@@ -15,7 +15,7 @@
 license=('GPL')
 options=('staticlibs')
 
source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
-sha1sums=('ea6688bd6f6adf81e2e5aacdc71d7dcf9a5d208d')
+sha1sums=('f7087d6178331d570c1ec811bbd17cbce70ce2f5')
 
 build() {
cd "$srcdir"/SuiteSparse



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

2014-08-25 Thread Ronald van Haren
Date: Monday, August 25, 2014 @ 21:26:57
  Author: ronald
Revision: 220647

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

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

--+
 /PKGBUILD|  116 +
 /texmacs.install |   28 +
 extra-i686/PKGBUILD  |   58 
 extra-i686/texmacs.install   |   14 
 extra-x86_64/PKGBUILD|   58 
 extra-x86_64/texmacs.install |   14 
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-08-25 19:26:40 UTC (rev 220646)
+++ extra-i686/PKGBUILD 2014-08-25 19:26:57 UTC (rev 220647)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa  # Contributor: 
Christopher Reimer 
-
-pkgname=texmacs
-pkgver=1.99.1
-pkgrel=1
-pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG 
editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, 
Pari, Qcl, R and Yacas) in one."
-arch=('i686' 'x86_64')
-url="http://www.texmacs.org/";
-license=('GPL')
-depends=('perl' 'guile1.8' 'texlive-core' 'python2' 'libxext' 'freetype2' 
'shared-mime-info'
- 'desktop-file-utils' 'qt4')
-# do not remove texlive-core dependency, as it is needed!
-optdepends=('transfig: convert images using fig2ps'
-'gawk: conversion of some files')
-makedepends=('ghostscript')
-source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
-install=texmacs.install
-options=('!emptydirs')
-sha1sums=('a5c7171644c84866445334b2d0cb39a6d9dd5f54')
-
-prepare() {
-  cd "${srcdir}/TeXmacs-${pkgver}-src"
-  sed -i 's/env python/env python2/' \
-
plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage} \
-TeXmacs/misc/inkscape_plugin/texmacs_reedit.py
-  sed -i 's/"python"/"python2"/' plugins/python/progs/init-python.scm
-  sed -i '/^LDPATH/d' src/makefile.in
-  sed -i -e 's/guile /guile1.8 /g' \
- -e 's/guile-config/guile-config1.8/g' \
- configure
-
- # Don't generate icon-cache and mime-database (namcap tells that they should 
not be in a package)
-  sed -i '/update-mime-database/d' Makefile.in
-  sed -i '/gtk-update-icon-cache/d' Makefile.in
-  sed -i '\/icons\/gnome 2>\/dev\/null/d' Makefile.in
-
-}
-
-build() {
-  cd "${srcdir}/TeXmacs-${pkgver}-src"
-  export QMAKE=qmake-qt4
-  export MOC=moc-qt4
-  export UIC=uic-qt4
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --libexecdir=/usr/lib
-  make
-}
-
-package() {
-  cd "${srcdir}/TeXmacs-${pkgver}-src"
-  make DESTDIR=${pkgdir} install
-
- # fix fig2ps script
- sed -i 's|${prefix}|/usr|' "${pkgdir}/usr/bin/fig2ps"
-}

Copied: texmacs/repos/extra-i686/PKGBUILD (from rev 220646, 
texmacs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-08-25 19:26:57 UTC (rev 220647)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa  # Contributor: 
Christopher Reimer 
+
+pkgname=texmacs
+pkgver=1.99.2
+pkgrel=1
+pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG 
editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, 
Pari, Qcl, R and Yacas) in one."
+arch=('i686' 'x86_64')
+url="http://www.texmacs.org/";
+license=('GPL')
+depends=('perl' 'guile1.8' 'texlive-core' 'python2' 'libxext' 'freetype2' 
'shared-mime-info'
+ 'desktop-file-utils' 'qt4')
+# do not remove texlive-core dependency, as it is needed!
+optdepends=('transfig: convert images using fig2ps'
+'gawk: conversion of some files')
+makedepends=('ghostscript')
+source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
+install=texmacs.install
+options=('!emptydirs')
+sha1sums=('5298e9bd3f61cd8f2117fe1d96a7435f8a788cc8')
+   
+prepare() {
+  cd "${srcdir}/TeXmacs-${pkgver}-src"
+  sed -i 's/env python/env python2/' \
+
plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage} \
+TeXmacs/misc/inkscape_extension/texmacs_reedit.py
+  sed -i 's/"python"/"python2"/' plugins/python/progs/init-python.scm
+  sed -i '/^LDPATH/d' src/makefile.in
+  sed -i -e 's/guile /guile1.8 /g' \
+ -e 's/gui

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

2014-08-25 Thread Ronald van Haren
Date: Monday, August 25, 2014 @ 21:26:40
  Author: ronald
Revision: 220646

upgpkg: texmacs 1.99.2-1

update to 1.99.2

Modified:
  texmacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 02:36:50 UTC (rev 220645)
+++ PKGBUILD2014-08-25 19:26:40 UTC (rev 220646)
@@ -3,7 +3,7 @@
 # Contributor: Damir Perisa  # Contributor: 
Christopher Reimer 
 
 pkgname=texmacs
-pkgver=1.99.1
+pkgver=1.99.2
 pkgrel=1
 pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG 
editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, 
Pari, Qcl, R and Yacas) in one."
 arch=('i686' 'x86_64')
@@ -18,13 +18,13 @@
 
source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
 install=texmacs.install
 options=('!emptydirs')
-sha1sums=('a5c7171644c84866445334b2d0cb39a6d9dd5f54')
-
+sha1sums=('5298e9bd3f61cd8f2117fe1d96a7435f8a788cc8')
+   
 prepare() {
   cd "${srcdir}/TeXmacs-${pkgver}-src"
   sed -i 's/env python/env python2/' \
 
plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage} \
-TeXmacs/misc/inkscape_plugin/texmacs_reedit.py
+TeXmacs/misc/inkscape_extension/texmacs_reedit.py
   sed -i 's/"python"/"python2"/' plugins/python/progs/init-python.scm
   sed -i '/^LDPATH/d' src/makefile.in
   sed -i -e 's/guile /guile1.8 /g' \



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

2014-08-25 Thread Bartłomiej Piotrowski
Date: Monday, August 25, 2014 @ 18:57:33
  Author: bpiotrowski
Revision: 117877

upgpkg: profanity 1:0.4.4-1

new upstream release

Modified:
  profanity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 14:39:45 UTC (rev 117876)
+++ PKGBUILD2014-08-25 16:57:33 UTC (rev 117877)
@@ -3,8 +3,8 @@
 # Contributor: jason ryan 
 
 pkgname=profanity
-pkgver=0.4.3
-pkgrel=2
+pkgver=0.4.4
+pkgrel=1
 epoch=1
 pkgdesc='Console based XMPP client'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('curl' 'expat' 'glib2' 'libotr' 'libstrophe')
 makedepends=('doxygen')
 source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
-md5sums=('bdeadf6790bd04b0a796affb670bc894')
+md5sums=('325b52b8319891ad09a43cf164a902d5')
 
 build() {
   cd $pkgname-$pkgver



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

2014-08-25 Thread Bartłomiej Piotrowski
Date: Monday, August 25, 2014 @ 18:57:44
  Author: bpiotrowski
Revision: 117878

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-25 16:57:33 UTC (rev 117877)
+++ community-i686/PKGBUILD 2014-08-25 16:57:44 UTC (rev 117878)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: jason ryan 
-
-pkgname=profanity
-pkgver=0.4.3
-pkgrel=2
-epoch=1
-pkgdesc='Console based XMPP client'
-arch=('i686' 'x86_64')
-url='http://www.profanity.im'
-license=('GPL3')
-depends=('curl' 'expat' 'glib2' 'libotr' 'libstrophe')
-makedepends=('doxygen')
-source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
-md5sums=('bdeadf6790bd04b0a796affb670bc894')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: profanity/repos/community-i686/PKGBUILD (from rev 117877, 
profanity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-08-25 16:57:44 UTC (rev 117878)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: jason ryan 
+
+pkgname=profanity
+pkgver=0.4.4
+pkgrel=1
+epoch=1
+pkgdesc='Console based XMPP client'
+arch=('i686' 'x86_64')
+url='http://www.profanity.im'
+license=('GPL3')
+depends=('curl' 'expat' 'glib2' 'libotr' 'libstrophe')
+makedepends=('doxygen')
+source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
+md5sums=('325b52b8319891ad09a43cf164a902d5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-08-25 16:57:33 UTC (rev 117877)
+++ community-x86_64/PKGBUILD   2014-08-25 16:57:44 UTC (rev 117878)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: jason ryan 
-
-pkgname=profanity
-pkgver=0.4.3
-pkgrel=2
-epoch=1
-pkgdesc='Console based XMPP client'
-arch=('i686' 'x86_64')
-url='http://www.profanity.im'
-license=('GPL3')
-depends=('curl' 'expat' 'glib2' 'libotr' 'libstrophe')
-makedepends=('doxygen')
-source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
-md5sums=('bdeadf6790bd04b0a796affb670bc894')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: profanity/repos/community-x86_64/PKGBUILD (from rev 117877, 
profanity/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-08-25 16:57:44 UTC (rev 117878)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: jason ryan 
+
+pkgname=profanity
+pkgver=0.4.4
+pkgrel=1
+epoch=1
+pkgdesc='Console based XMPP client'
+arch=('i686' 'x86_64')
+url='http://www.profanity.im'
+license=('GPL3')
+depends=('curl' 'expat' 'glib2' 'libotr' 'libstrophe')
+makedepends=('doxygen')
+source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
+md5sums=('325b52b8319891ad09a43cf164a902d5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}



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

2014-08-25 Thread Anatol Pomozov
Date: Monday, August 25, 2014 @ 16:39:45
  Author: anatolik
Revision: 117876

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

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 117875, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/adbMakefile
(from rev 117875, android-tools/trunk/adbMakefile)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 117875, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-i686/fastbootMakefile
(from rev 117875, android-tools/trunk/fastbootMakefile)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 117875, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/adbMakefile
(from rev 117875, android-tools/trunk/adbMakefile)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 117875, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/fastbootMakefile
(from rev 117875, android-tools/trunk/fastbootMakefile)

---+
 community-testing-i686/PKGBUILD   |   38 +
 community-testing-i686/adbMakefile|   43 +
 community-testing-i686/bash_completion|  202 
 community-testing-i686/fastbootMakefile   |   54 +++
 community-testing-x86_64/PKGBUILD |   38 +
 community-testing-x86_64/adbMakefile  |   43 +
 community-testing-x86_64/bash_completion  |  202 
 community-testing-x86_64/fastbootMakefile |   54 +++
 8 files changed, 674 insertions(+)

Copied: android-tools/repos/community-testing-i686/PKGBUILD (from rev 117875, 
android-tools/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-25 14:39:45 UTC (rev 117876)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: 謝致邦 
+# Contributor: Alucryd 
+
+pkgname=android-tools
+pkgver=4.4.4_r2.0.1
+pkgrel=1
+pkgdesc='Android platform tools'
+arch=(i686 x86_64)
+url='http://tools.android.com/'
+license=(Apache MIT)
+depends=(openssl)
+makedepends=(git)
+source=(git+https://android.googlesource.com/platform/system/core#tag=android-$pkgver
+
git+https://android.googlesource.com/platform/system/extras#tag=android-$pkgver
+
git+https://android.googlesource.com/platform/external/libselinux#tag=android-$pkgver
+adbMakefile
+fastbootMakefile
+bash_completion) # Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ '887d868e544330ef850334961685cab3'
+ 'cd1a1a9d16b523119245bfe17120d73b'
+ '421f8640d7b4ec156f1d37167f3e7a45')
+
+build() {
+  make -C core/adb -f "$srcdir"/adbMakefile
+  make -C core/fastboot -f "$srcdir"/fastbootMakefile
+}
+
+package(){
+  install -Dm 755 core/adb/adb "$pkgdir"/usr/bin/adb
+  install -Dm 755 core/fastboot/fastboot "$pkgdir"/usr/bin/fastboot
+
+  install -Dm 644 bash_completion "$pkgdir"/etc/bash_completion.d/$pkgname
+}

Copied: android-tools/repos/community-testing-i686/adbMakefile (from rev 
117875, android-tools/trunk/adbMakefile)
===
--- community-testing-i686/adbMakefile  (rev 0)
+++ community-testing-i686/adbMakefile  2014-08-25 14:39:45 UTC (rev 117876)
@@ -0,0 +1,43 @@
+SRCS+= adb.c
+SRCS+= adb_auth_host.c
+SRCS+= adb_client.c
+SRCS+= commandline.c
+SRCS+= console.c
+SRCS+= fdevent.c
+SRCS+= file_sync_client.c
+SRCS+= get_my_path_linux.c
+SRCS+= services.c
+SRCS+= sockets.c
+SRCS+= transport.c
+SRCS+= transport_local.c
+SRCS+= transport_usb.c
+SRCS+= usb_linux.c
+SRCS+= usb_vendors.c
+
+VPATH+= ../libcutils
+SRCS+= list.c
+SRCS+= load_file.c
+SRCS+= socket_inaddr_any_server.c
+SRCS+= socket_local_client.c
+SRCS+= socket_local_server.c
+SRCS+= socket_loopback_client.c
+SRCS+= socket_loopback_server.c
+SRCS+= socket_network_client.c
+
+VPATH+= ../libzipfile
+SRCS+= centraldir.c
+SRCS+= zipfile.c
+
+CPPFLAGS+= -DADB_HOST=1
+CPPFLAGS+= -DHAVE_FORKEXEC=1
+CPPFLAGS+= -I.
+CPPFLAGS+= -I../include
+
+LIBS+= -lcrypto -lpthread -lz
+
+OBJS= $(SRCS:.c=.o)
+
+all: adb
+
+adb: $(OBJS)
+   cc -o $@ $(LDFLAGS) $(OBJS) $(LIBS)

Copied: android-tools/repos/community-testing-i686/bash_completion (from rev 
117875, android-tools/trunk/bash_completion)
===
--- community-testing-i686/bash_completion  (rev 0)
+++ community-testing-i686/bash_completion  2014-08-25 14:39:45 UTC (rev 
117876)
@@ -0,0 +1,202 @@
+## Bash completion for the Android SDK tools.
+##
+## Cop

[arch-commits] Commit in android-tools/trunk (PKGBUILD bash_completion)

2014-08-25 Thread Anatol Pomozov
Date: Monday, August 25, 2014 @ 16:38:55
  Author: anatolik
Revision: 117875

upgpkg: android-tools 4.4.4_r2.0.1-1

Modified:
  android-tools/trunk/PKGBUILD
  android-tools/trunk/bash_completion

-+
 PKGBUILD|4 ++--
 bash_completion |2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 14:18:03 UTC (rev 117874)
+++ PKGBUILD2014-08-25 14:38:55 UTC (rev 117875)
@@ -4,7 +4,7 @@
 # Contributor: Alucryd 
 
 pkgname=android-tools
-pkgver=4.4.2_r2
+pkgver=4.4.4_r2.0.1
 pkgrel=1
 pkgdesc='Android platform tools'
 arch=(i686 x86_64)
@@ -23,7 +23,7 @@
  'SKIP'
  '887d868e544330ef850334961685cab3'
  'cd1a1a9d16b523119245bfe17120d73b'
- '94ba9c753e9c3d2f29ffdef2eaf7888d')
+ '421f8640d7b4ec156f1d37167f3e7a45')
 
 build() {
   make -C core/adb -f "$srcdir"/adbMakefile

Modified: bash_completion
===
--- bash_completion 2014-08-25 14:18:03 UTC (rev 117874)
+++ bash_completion 2014-08-25 14:38:55 UTC (rev 117875)
@@ -133,8 +133,6 @@
 }
 complete -o default -F _adb adb
 
-
-
 function _fastboot()
 {
   local cur prev opts cmds c subcommand device_selected



[arch-commits] Commit in dkms/trunk (dkms.hook)

2014-08-25 Thread Sébastien Luttringer
Date: Monday, August 25, 2014 @ 16:18:03
  Author: seblu
Revision: 117874

Remove hook file... not a good direction

Deleted:
  dkms/trunk/dkms.hook

---+
 dkms.hook |   12 
 1 file changed, 12 deletions(-)

Deleted: dkms.hook
===
--- dkms.hook   2014-08-25 13:58:05 UTC (rev 117873)
+++ dkms.hook   2014-08-25 14:18:03 UTC (rev 117874)
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-dkms_autoinstall() {
-  export TMPDIR=/dev/shm
-  status 'Starting DKMS autoinstall' dkms autoinstall
-  unset TMPDIR
-}
-
-add_hook single_udevlaunched dkms_autoinstall
-add_hook sysinit_udevlaunched dkms_autoinstall
-
-# vim:set ts=2 sw=2 ft=sh et:



[arch-commits] Commit in ndisc6/trunk (5 files)

2014-08-25 Thread Sébastien Luttringer
Date: Monday, August 25, 2014 @ 15:57:44
  Author: seblu
Revision: 117872

upgpkg: ndisc6 1.0.2-8

- fix FS#39813

Added:
  ndisc6/trunk/rdnssd@.service
(from rev 117867, ndisc6/trunk/rdnssd.service)
  ndisc6/trunk/resolvconf-hook
Modified:
  ndisc6/trunk/PKGBUILD
  ndisc6/trunk/ndisc6.install
Deleted:
  ndisc6/trunk/rdnssd.service

-+
 PKGBUILD|   24 +---
 ndisc6.install  |   13 -
 rdnssd.service  |   12 
 rdnssd@.service |   10 ++
 resolvconf-hook |5 +
 5 files changed, 44 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 13:09:30 UTC (rev 117871)
+++ PKGBUILD2014-08-25 13:57:44 UTC (rev 117872)
@@ -5,19 +5,21 @@
 
 pkgname=ndisc6
 pkgver=1.0.2
-pkgrel=7
+pkgrel=8
 pkgdesc='Collection of IPv6 networking utilities'
 arch=('i686' 'x86_64')
 url='http://www.remlab.net/ndisc6/'
 license=('GPL')
 depends=('glibc' 'perl')
-makedepends=('glibc' 'gcc')
-options=(!emptydirs)
+makedepends=('glibc' 'gcc' 'systemd')
+options=('!emptydirs')
 install=$pkgname.install
 source=("http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2";
- 'rdnssd.service')
+ 'rdnssd@.service'
+'resolvconf-hook')
 md5sums=('50cb4c19606cf6ff2b7388e71832f579'
- '88a290cbcf51ac5e10ed5f995a8ba4b9')
+ '58b44cbe6d38082fb299eb136754bf31'
+ '48d0a77ed9536cd0d4642e1f1ca0b255')
 
 prepare() {
   # patch invalid path
@@ -36,11 +38,19 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  pushd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/rdnssd.service" 
"$pkgdir/usr/lib/systemd/system/rdnssd.service"
+  popd
+
+  # service
+  install -Dm644 "$srcdir/rdnssd@.service" 
"$pkgdir/usr/lib/systemd/system/rdnssd@.service"
+
+  # tmpfiles
   install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
   echo 'd /run/rdnssd 0755 nobody root' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+
+  # resolvconf merge hook
+  install -Dm755 "$srcdir/resolvconf-hook" "$pkgdir/etc/rdnssd/resolvconf-hook"
 }
 
 # vim:set ts=2 sw=2 et:

Modified: ndisc6.install
===
--- ndisc6.install  2014-08-25 13:09:30 UTC (rev 117871)
+++ ndisc6.install  2014-08-25 13:57:44 UTC (rev 117872)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # arg 1:  the new package version
 post_install() {
@@ -5,4 +5,15 @@
   systemd-tmpfiles --create ndisc6.conf
 }
 
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if (( "$(vercmp $2 1.0.2-7)" <= 0 )); then
+cat << EOF
+===> rdnssd.service has been replaced by rdnssd@.service. Update your setup.
+===> hint: systemctl enable rdnssd@merge-hook.service
+EOF
+  fi
+}
+
 # vim:set ts=2 sw=2 ft=sh et:

Deleted: rdnssd.service
===
--- rdnssd.service  2014-08-25 13:09:30 UTC (rev 117871)
+++ rdnssd.service  2014-08-25 13:57:44 UTC (rev 117872)
@@ -1,12 +0,0 @@
-[Unit]
-Description=RDNSS daemon for Linux
-Before=network.target
-Requires=network.target
-
-[Service]
-Type=forking
-PIDFile=/run/rdnssd.pid
-ExecStart=/usr/bin/rdnssd -H /etc/rdnssd/merge-hook
-
-[Install]
-WantedBy=multi-user.target

Copied: ndisc6/trunk/rdnssd@.service (from rev 117867, 
ndisc6/trunk/rdnssd.service)
===
--- rdnssd@.service (rev 0)
+++ rdnssd@.service 2014-08-25 13:57:44 UTC (rev 117872)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RDNSS daemon for Linux
+Before=network.target
+Requires=network.target
+
+[Service]
+ExecStart=/usr/bin/rdnssd -f -H /etc/rdnssd/%i
+
+[Install]
+WantedBy=multi-user.target

Added: resolvconf-hook
===
--- resolvconf-hook (rev 0)
+++ resolvconf-hook 2014-08-25 13:57:44 UTC (rev 117872)
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+if [[ -f /run/rdnssd/resolv.conf ]]; then
+   /usr/bin/resolvconf -a rdnssd < /run/rdnssd/resolv.conf
+fi



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

2014-08-25 Thread Sébastien Luttringer
Date: Monday, August 25, 2014 @ 15:58:05
  Author: seblu
Revision: 117873

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

Added:
  ndisc6/repos/community-testing-i686/
  ndisc6/repos/community-testing-i686/PKGBUILD
(from rev 117872, ndisc6/trunk/PKGBUILD)
  ndisc6/repos/community-testing-i686/ndisc6.install
(from rev 117872, ndisc6/trunk/ndisc6.install)
  ndisc6/repos/community-testing-i686/rdnssd@.service
(from rev 117872, ndisc6/trunk/rdnssd@.service)
  ndisc6/repos/community-testing-i686/resolvconf-hook
(from rev 117872, ndisc6/trunk/resolvconf-hook)
  ndisc6/repos/community-testing-x86_64/
  ndisc6/repos/community-testing-x86_64/PKGBUILD
(from rev 117872, ndisc6/trunk/PKGBUILD)
  ndisc6/repos/community-testing-x86_64/ndisc6.install
(from rev 117872, ndisc6/trunk/ndisc6.install)
  ndisc6/repos/community-testing-x86_64/rdnssd@.service
(from rev 117872, ndisc6/trunk/rdnssd@.service)
  ndisc6/repos/community-testing-x86_64/resolvconf-hook
(from rev 117872, ndisc6/trunk/resolvconf-hook)

--+
 community-testing-i686/PKGBUILD  |   56 +
 community-testing-i686/ndisc6.install|   19 +
 community-testing-i686/rdnssd@.service   |   10 +
 community-testing-i686/resolvconf-hook   |5 ++
 community-testing-x86_64/PKGBUILD|   56 +
 community-testing-x86_64/ndisc6.install  |   19 +
 community-testing-x86_64/rdnssd@.service |   10 +
 community-testing-x86_64/resolvconf-hook |5 ++
 8 files changed, 180 insertions(+)

Copied: ndisc6/repos/community-testing-i686/PKGBUILD (from rev 117872, 
ndisc6/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Chris Brannon 
+# Contributor: Mark Smith 
+
+pkgname=ndisc6
+pkgver=1.0.2
+pkgrel=8
+pkgdesc='Collection of IPv6 networking utilities'
+arch=('i686' 'x86_64')
+url='http://www.remlab.net/ndisc6/'
+license=('GPL')
+depends=('glibc' 'perl')
+makedepends=('glibc' 'gcc' 'systemd')
+options=('!emptydirs')
+install=$pkgname.install
+source=("http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2";
+ 'rdnssd@.service'
+'resolvconf-hook')
+md5sums=('50cb4c19606cf6ff2b7388e71832f579'
+ '58b44cbe6d38082fb299eb136754bf31'
+ '48d0a77ed9536cd0d4642e1f1ca0b255')
+
+prepare() {
+  # patch invalid path
+  sed -ri 's,PATH=/sbin:/bin,PATH=/sbin:/bin:/usr/sbin:/usr/bin,' \
+$pkgname-$pkgver/rdnssd/merge-hook.in
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  popd
+
+  # service
+  install -Dm644 "$srcdir/rdnssd@.service" 
"$pkgdir/usr/lib/systemd/system/rdnssd@.service"
+
+  # tmpfiles
+  install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+  echo 'd /run/rdnssd 0755 nobody root' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+
+  # resolvconf merge hook
+  install -Dm755 "$srcdir/resolvconf-hook" "$pkgdir/etc/rdnssd/resolvconf-hook"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ndisc6/repos/community-testing-i686/ndisc6.install (from rev 117872, 
ndisc6/trunk/ndisc6.install)
===
--- community-testing-i686/ndisc6.install   (rev 0)
+++ community-testing-i686/ndisc6.install   2014-08-25 13:58:05 UTC (rev 
117873)
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+post_install() {
+  systemd-tmpfiles --create ndisc6.conf
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if (( "$(vercmp $2 1.0.2-7)" <= 0 )); then
+cat << EOF
+===> rdnssd.service has been replaced by rdnssd@.service. Update your setup.
+===> hint: systemctl enable rdnssd@merge-hook.service
+EOF
+  fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: ndisc6/repos/community-testing-i686/rdnssd@.service (from rev 117872, 
ndisc6/trunk/rdnssd@.service)
===
--- community-testing-i686/rdnssd@.service  (rev 0)
+++ community-testing-i686/rdnssd@.service  2014-08-25 13:58:05 UTC (rev 
117873)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RDNSS daemon for Linux
+Before=network.target
+Requires=network.target
+
+[Service]
+ExecStart=/usr/bin/rdnssd -f -H /etc/rdnssd/%i
+
+[Install]
+WantedBy=multi-user.target

Copied: ndisc6/repos/community-testing-i686/resolvconf-hook (from rev 117872, 
ndisc6/trunk/resolvconf-hook)
===
--- community-te

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

2014-08-25 Thread Sergej Pupykin
Date: Monday, August 25, 2014 @ 15:09:30
  Author: spupykin
Revision: 117871

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

Added:
  freetalk/repos/community-i686/ChangeLog
(from rev 117870, freetalk/trunk/ChangeLog)
  freetalk/repos/community-i686/PKGBUILD
(from rev 117870, freetalk/trunk/PKGBUILD)
  freetalk/repos/community-i686/freetalk.install
(from rev 117870, freetalk/trunk/freetalk.install)
  freetalk/repos/community-x86_64/ChangeLog
(from rev 117870, freetalk/trunk/ChangeLog)
  freetalk/repos/community-x86_64/PKGBUILD
(from rev 117870, freetalk/trunk/PKGBUILD)
  freetalk/repos/community-x86_64/freetalk.install
(from rev 117870, freetalk/trunk/freetalk.install)
Deleted:
  freetalk/repos/community-i686/ChangeLog
  freetalk/repos/community-i686/PKGBUILD
  freetalk/repos/community-i686/freetalk-3.2-glibc210.patch
  freetalk/repos/community-i686/freetalk.install
  freetalk/repos/community-x86_64/ChangeLog
  freetalk/repos/community-x86_64/PKGBUILD
  freetalk/repos/community-x86_64/freetalk-3.2-glibc210.patch
  freetalk/repos/community-x86_64/freetalk.install

--+
 /ChangeLog   |6 ++
 /PKGBUILD|   56 
 /freetalk.install|   38 +
 community-i686/ChangeLog |3 -
 community-i686/PKGBUILD  |   36 -
 community-i686/freetalk-3.2-glibc210.patch   |   68 -
 community-i686/freetalk.install  |   19 --
 community-x86_64/ChangeLog   |3 -
 community-x86_64/PKGBUILD|   36 -
 community-x86_64/freetalk-3.2-glibc210.patch |   68 -
 community-x86_64/freetalk.install|   19 --
 11 files changed, 100 insertions(+), 252 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2014-08-25 13:09:14 UTC (rev 117870)
+++ community-i686/ChangeLog2014-08-25 13:09:30 UTC (rev 117871)
@@ -1,3 +0,0 @@
-2007-07-02 tardo 
-* Built for x86_64
-

Copied: freetalk/repos/community-i686/ChangeLog (from rev 117870, 
freetalk/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2014-08-25 13:09:30 UTC (rev 117871)
@@ -0,0 +1,3 @@
+2007-07-02 tardo 
+* Built for x86_64
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-25 13:09:14 UTC (rev 117870)
+++ community-i686/PKGBUILD 2014-08-25 13:09:30 UTC (rev 117871)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=freetalk
-pkgver=3.2
-pkgrel=6
-pkgdesc="A console based Jabber client"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/freetalk";
-license=('GPL')
-depends=('loudmouth' 'guile1.8')
-install=freetalk.install
-source=(http://savannah.gnu.org/download/freetalk/freetalk-$pkgver.tar.gz
-freetalk-3.2-glibc210.patch)
-md5sums=('ab09bd07dde158551f151d281b14642c'
- '0da1d0a0f606d2b279fe676a80a3eb32')
-
-prepare(){
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../freetalk-3.2-glibc210.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-rpath \
-GUILE=/usr/bin/guile1.8 \
-GUILE_CONFIG=/usr/bin/guile-config1.8
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm "$pkgdir/usr/share/info/dir"
-}

Copied: freetalk/repos/community-i686/PKGBUILD (from rev 117870, 
freetalk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-08-25 13:09:30 UTC (rev 117871)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=freetalk
+pkgver=4.0rc5
+pkgrel=1
+pkgdesc="A console based Jabber client"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/freetalk";
+license=('GPL')
+depends=('loudmouth' 'guile' 'jansson' 'curl')
+install=freetalk.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GNUFreetalk/freetalk/archive/v$pkgver.tar.gz";)
+md5sums=('a19a6025a13ef9f922606a843f892b4d')
+
+build() {
+  cd $pkgname-$pkgver
+  [ -x configure ] || ./autogen.sh
+  ./configure --prefix=/usr --disable-rpath
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  rm "$pkgdir/usr/share/info/dir"
+}

Deleted: community-i686/freetalk-3.2-glibc210.patch
===
--- community-i686/freetalk-3.2-glibc210.patch  2014-08-25 13:09:14 UTC (rev 
117870)
+++ community-i686/freetalk-3.2-glibc210.patch  2014-08-25 13:09

[arch-commits] Commit in freetalk/trunk (PKGBUILD freetalk-3.2-glibc210.patch)

2014-08-25 Thread Sergej Pupykin
Date: Monday, August 25, 2014 @ 15:09:14
  Author: spupykin
Revision: 117870

upgpkg: freetalk 4.0rc5-1

upd

Modified:
  freetalk/trunk/PKGBUILD
Deleted:
  freetalk/trunk/freetalk-3.2-glibc210.patch

-+
 PKGBUILD|   22 -
 freetalk-3.2-glibc210.patch |   68 --
 2 files changed, 7 insertions(+), 83 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 12:53:48 UTC (rev 117869)
+++ PKGBUILD2014-08-25 13:09:14 UTC (rev 117870)
@@ -3,29 +3,21 @@
 # Contributor: William Rea 
 
 pkgname=freetalk
-pkgver=3.2
-pkgrel=6
+pkgver=4.0rc5
+pkgrel=1
 pkgdesc="A console based Jabber client"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/freetalk";
 license=('GPL')
-depends=('loudmouth' 'guile1.8')
+depends=('loudmouth' 'guile' 'jansson' 'curl')
 install=freetalk.install
-source=(http://savannah.gnu.org/download/freetalk/freetalk-$pkgver.tar.gz
-freetalk-3.2-glibc210.patch)
-md5sums=('ab09bd07dde158551f151d281b14642c'
- '0da1d0a0f606d2b279fe676a80a3eb32')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GNUFreetalk/freetalk/archive/v$pkgver.tar.gz";)
+md5sums=('a19a6025a13ef9f922606a843f892b4d')
 
-prepare(){
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../freetalk-3.2-glibc210.patch
-}
-
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-rpath \
-GUILE=/usr/bin/guile1.8 \
-GUILE_CONFIG=/usr/bin/guile-config1.8
+  [ -x configure ] || ./autogen.sh
+  ./configure --prefix=/usr --disable-rpath
   make
 }
 

Deleted: freetalk-3.2-glibc210.patch
===
--- freetalk-3.2-glibc210.patch 2014-08-25 12:53:48 UTC (rev 117869)
+++ freetalk-3.2-glibc210.patch 2014-08-25 13:09:14 UTC (rev 117870)
@@ -1,68 +0,0 @@
-diff -urNp freetalk-3.2.orig/src/callbacks.cc freetalk-3.2/src/callbacks.cc
 freetalk-3.2.orig/src/callbacks.cc 2009-02-25 01:31:29.826691032 +0530
-+++ freetalk-3.2/src/callbacks.cc  2009-02-25 02:56:04.323962193 +0530
-@@ -1,7 +1,7 @@
- /*
-   callbacks.c: Callback functions
-   
--  Copyright (c) 2005, 2006, 2007 Freetalk Core Team
-+  Copyright (c) 2005, 2006, 2007, 2009 Freetalk Core Team
-   This file is part of GNU Freetalk.
-   
-   Freetalk is free software; you can redistribute it and/or modify
-@@ -20,6 +20,7 @@
- */
- 
- #include 
-+#include 
- #include 
- #include 
- #include  
-@@ -116,8 +117,9 @@ ft_msg_msg_handler (LmMessageHandler *ha
-   LmMessage *msg, gpointer user_data)
- {
-   LmMessageNode *root, *body, *x;
--  const char *from, *msg_str, *type;
-+  const char *msg_str, *type;
-   char *ts = NULL;
-+  std::string from;
- 
-   root = lm_message_get_node (msg);
-   body = lm_message_node_get_child (root, "body");
-@@ -152,11 +154,12 @@ ft_msg_msg_handler (LmMessageHandler *ha
- set_hook_return (0);
- /* TBD : make the below stripping of /Resource configurable */
- if (1) {
--  if (strchr (from, '/'))
--  *strchr (from, '/') = '\0';
-+  const size_t pos = from.find("/");
-+  if (pos != std::string::npos)
-+  from.replace(pos, from.size() - pos, "");
- }
- {
--  FtRosterItem *item = ft_roster_lookup (from);
-+  FtRosterItem *item = ft_roster_lookup (from.c_str());
-   char *nickname;
-   
-   if (!item)
-@@ -166,17 +169,17 @@ ft_msg_msg_handler (LmMessageHandler *ha
-   
-   scm_run_hook (ex_message_receive_hook,
-   scm_list_n (ts ? scm_from_locale_string (ts) : 
scm_from_locale_string (""),
--  scm_from_locale_string (from),
-+  scm_from_locale_string (from.c_str()),
-   nickname ? scm_from_locale_string (nickname) : 
scm_from_locale_string (""),
-   scm_from_locale_string (msg_str),
-   SCM_UNDEFINED));
- }
- if (ts) g_free (ts);
- 
--if (get_hook_return () == 1)
-+if (get_hook_return () == 1) 
-   return LM_HANDLER_RESULT_REMOVE_MESSAGE;
- 
--PRINTF ("%s: %s", from, msg_str);
-+PRINTF ("%s: %s", from.c_str(), msg_str);
-   } else {
- /* This logic should be looked into : FIXME */
- ft_send_file_message_data (msg);



[arch-commits] Commit in unifi/trunk (PKGBUILD unifi.service)

2014-08-25 Thread Sébastien Luttringer
Date: Monday, August 25, 2014 @ 14:53:34
  Author: seblu
Revision: 117868

upgpkg: unifi 3.2.1-2

- fix FS#41659

Modified:
  unifi/trunk/PKGBUILD
  unifi/trunk/unifi.service

---+
 PKGBUILD  |4 ++--
 unifi.service |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 12:24:52 UTC (rev 117867)
+++ PKGBUILD2014-08-25 12:53:34 UTC (rev 117868)
@@ -4,7 +4,7 @@
 
 pkgname=unifi
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Centralized management system for Ubiquiti UniFi AP'
 arch=('any')
 url='https://community.ubnt.com/unifi'
@@ -19,7 +19,7 @@
 'unifi.service'
 'LICENSE')
 md5sums=('9b2d59e6be25db2210f4d85512315e6f'
- 'a660012bdaa5c09a789e774514ae5c1e'
+ '79998cabf110d9a96ba4d3367101c94c'
  '63a6f9e67db6a466f31a40c228c16d63')
 
 package() {

Modified: unifi.service
===
--- unifi.service   2014-08-25 12:24:52 UTC (rev 117867)
+++ unifi.service   2014-08-25 12:53:34 UTC (rev 117868)
@@ -4,6 +4,7 @@
 
 [Service]
 User=unifi
+WorkingDirectory=/usr/lib/unifi
 ExecStart=/usr/bin/java -jar /usr/lib/unifi/lib/ace.jar start
 ExecStop=/usr/bin/java -jar /usr/lib/unifi/lib/ace.jar stop
 



[arch-commits] Commit in unifi/repos/community-any (8 files)

2014-08-25 Thread Sébastien Luttringer
Date: Monday, August 25, 2014 @ 14:53:48
  Author: seblu
Revision: 117869

archrelease: copy trunk to community-any

Added:
  unifi/repos/community-any/LICENSE
(from rev 117868, unifi/trunk/LICENSE)
  unifi/repos/community-any/PKGBUILD
(from rev 117868, unifi/trunk/PKGBUILD)
  unifi/repos/community-any/unifi.install
(from rev 117868, unifi/trunk/unifi.install)
  unifi/repos/community-any/unifi.service
(from rev 117868, unifi/trunk/unifi.service)
Deleted:
  unifi/repos/community-any/LICENSE
  unifi/repos/community-any/PKGBUILD
  unifi/repos/community-any/unifi.install
  unifi/repos/community-any/unifi.service

---+
 LICENSE   |6 +-
 PKGBUILD  |  120 
 unifi.install |   32 +++---
 unifi.service |   23 +-
 4 files changed, 91 insertions(+), 90 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-08-25 12:53:34 UTC (rev 117868)
+++ LICENSE 2014-08-25 12:53:48 UTC (rev 117869)
@@ -1,3 +0,0 @@
-Ubiquiti Networks - All Rights Reserved.
-Permission granted to Archlinux to re-package.
-https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Copied: unifi/repos/community-any/LICENSE (from rev 117868, unifi/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-08-25 12:53:48 UTC (rev 117869)
@@ -0,0 +1,3 @@
+Ubiquiti Networks - All Rights Reserved.
+Permission granted to Archlinux to re-package.
+https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-25 12:53:34 UTC (rev 117868)
+++ PKGBUILD2014-08-25 12:53:48 UTC (rev 117869)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Frederik Schwan frederik dot schwan at linux dot com>
-
-pkgname=unifi
-pkgver=3.2.1
-pkgrel=1
-pkgdesc='Centralized management system for Ubiquiti UniFi AP'
-arch=('any')
-url='https://community.ubnt.com/unifi'
-# We are allowed to ship the software in our repository
-# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
-license=('custom')
-depends=('mongodb' 'jre7-openjdk-headless')
-makedepends=('jdk7-openjdk')
-conflicts=('tomcat-native')
-install=unifi.install
-source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip";
-'unifi.service'
-'LICENSE')
-md5sums=('9b2d59e6be25db2210f4d85512315e6f'
- 'a660012bdaa5c09a789e774514ae5c1e'
- '63a6f9e67db6a466f31a40c228c16d63')
-
-package() {
-  # lib
-  install -dm755 "$pkgdir/usr/lib/unifi"
-  cp -r UniFi/{bin,dl,lib,webapps} "$pkgdir/usr/lib/unifi"
-  # unjar
-  pushd "$pkgdir/usr/lib/unifi/webapps"
-  mkdir ROOT
-  cd ROOT
-  jar -xf ../ROOT.war
-  rm ../ROOT.war
-  popd
-
-  # data
-  install -dm750 "$pkgdir/var/lib/unifi"
-  for _d in data run work; do
-install -dm750 "$pkgdir/var/lib/unifi/$_d"
-ln -s "../../../var/lib/unifi/$_d" "$pkgdir/usr/lib/unifi/$_d"
-  done
-  chown -R 113:113 "$pkgdir/var/lib/unifi"
-
-  # log
-  install -dm750 "$pkgdir/var/log/unifi"
-  ln -s ../../../var/log/unifi "$pkgdir/usr/lib/unifi/logs"
-  chown -R 113:113 "$pkgdir/var/log/unifi"
-
-  # readme
-  install -Dm644 UniFi/readme.txt "$pkgdir/usr/share/doc/$pkgname/README"
-
-  # license
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # systemd
-  install -Dm644 unifi.service "$pkgdir/usr/lib/systemd/system/unifi.service"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: unifi/repos/community-any/PKGBUILD (from rev 117868, 
unifi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-25 12:53:48 UTC (rev 117869)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Frederik Schwan frederik dot schwan at linux dot com>
+
+pkgname=unifi
+pkgver=3.2.1
+pkgrel=2
+pkgdesc='Centralized management system for Ubiquiti UniFi AP'
+arch=('any')
+url='https://community.ubnt.com/unifi'
+# We are allowed to ship the software in our repository
+# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
+license=('custom')
+depends=('mongodb' 'jre7-openjdk-headless')
+makedepends=('jdk7-openjdk')
+conflicts=('tomcat-native')
+install=unifi.install
+source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip";
+'unifi.service'
+'LICENSE')
+md5sums=('9b2d59e6be25db2210f4d85512315e6f'
+ '79998cabf110d9a96ba4d3367101c94c'
+ '63a6f9e67db6a466f31a40c228c16d63')
+
+package() {
+  # lib
+  install -dm755 "$pkgdir/usr/lib/unifi"
+  cp -r UniFi/{bin,dl,lib,webapps} "$pkgdir/usr/lib/unifi"
+  # unjar
+  pushd "$pkgdir/usr/lib/unifi/webapps"
+  mkdir ROOT
+  cd 

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

2014-08-25 Thread Massimiliano Torromeo
Date: Monday, August 25, 2014 @ 14:24:52
  Author: mtorromeo
Revision: 117867

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

Added:
  elasticsearch/repos/community-i686/PKGBUILD
(from rev 117866, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-i686/elasticsearch-sysctl.conf
(from rev 117866, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-i686/elasticsearch-tmpfile.conf
(from rev 117866, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-i686/elasticsearch.default
(from rev 117866, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-i686/elasticsearch.install
(from rev 117866, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-i686/elasticsearch.service
(from rev 117866, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-i686/elasticsearch@.service
(from rev 117866, elasticsearch/trunk/elasticsearch@.service)
  elasticsearch/repos/community-x86_64/PKGBUILD
(from rev 117866, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
(from rev 117866, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
(from rev 117866, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-x86_64/elasticsearch.default
(from rev 117866, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-x86_64/elasticsearch.install
(from rev 117866, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-x86_64/elasticsearch.service
(from rev 117866, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-x86_64/elasticsearch@.service
(from rev 117866, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-i686/PKGBUILD
  elasticsearch/repos/community-i686/elasticsearch-sysctl.conf
  elasticsearch/repos/community-i686/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-i686/elasticsearch.default
  elasticsearch/repos/community-i686/elasticsearch.install
  elasticsearch/repos/community-i686/elasticsearch.service
  elasticsearch/repos/community-i686/elasticsearch@.service
  elasticsearch/repos/community-x86_64/PKGBUILD
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-x86_64/elasticsearch.default
  elasticsearch/repos/community-x86_64/elasticsearch.install
  elasticsearch/repos/community-x86_64/elasticsearch.service
  elasticsearch/repos/community-x86_64/elasticsearch@.service

-+
 /PKGBUILD   |  158 ++
 /elasticsearch-sysctl.conf  |2 
 /elasticsearch-tmpfile.conf |4 
 /elasticsearch.default  |   26 
 /elasticsearch.install  |   46 +++
 /elasticsearch.service  |   42 ++
 /elasticsearch@.service |   42 ++
 community-i686/PKGBUILD |   84 -
 community-i686/elasticsearch-sysctl.conf|1 
 community-i686/elasticsearch-tmpfile.conf   |2 
 community-i686/elasticsearch.default|   11 -
 community-i686/elasticsearch.install|   23 ---
 community-i686/elasticsearch.service|   20 ---
 community-i686/elasticsearch@.service   |   20 ---
 community-x86_64/PKGBUILD   |   84 -
 community-x86_64/elasticsearch-sysctl.conf  |1 
 community-x86_64/elasticsearch-tmpfile.conf |2 
 community-x86_64/elasticsearch.default  |   11 -
 community-x86_64/elasticsearch.install  |   23 ---
 community-x86_64/elasticsearch.service  |   20 ---
 community-x86_64/elasticsearch@.service |   20 ---
 21 files changed, 320 insertions(+), 322 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-25 12:23:11 UTC (rev 117866)
+++ community-i686/PKGBUILD 2014-08-25 12:24:52 UTC (rev 117867)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=1.3.2
-pkgrel=1
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('i686' 'x86_64')
-url="http://www.elasticsearch.org/";
-license=('APACHE')
-depends=('java-runtime' 'systemd')
-install='elasticsearch.install'
-source=(
-  "http://download.elasticsearch.org/$pkgname/$pkgname/$pkgname-$pkgver.tar.gz";
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums

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

2014-08-25 Thread Massimiliano Torromeo
Date: Monday, August 25, 2014 @ 14:23:11
  Author: mtorromeo
Revision: 117866

upgpkg: elasticsearch 1.3.2-2

Updated to use java-default-runtime without patching the scripts

Modified:
  elasticsearch/trunk/PKGBUILD
  elasticsearch/trunk/elasticsearch.default
  elasticsearch/trunk/elasticsearch.service
  elasticsearch/trunk/elasticsearch@.service

+
 PKGBUILD   |   13 -
 elasticsearch.default  |2 ++
 elasticsearch.service  |1 +
 elasticsearch@.service |1 +
 4 files changed, 8 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 11:56:06 UTC (rev 117865)
+++ PKGBUILD2014-08-25 12:23:11 UTC (rev 117866)
@@ -5,7 +5,7 @@
 
 pkgname=elasticsearch
 pkgver=1.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('i686' 'x86_64')
 url="http://www.elasticsearch.org/";
@@ -21,11 +21,11 @@
   elasticsearch.default
 )
 sha256sums=('7525d0a4db4f7eb791a1f8da97b081a5d8b44a2b232d8324877177bdee992ea4'
-'f3a6e5b968ffe38edc42c80193f75ab1682a5224c977c8957816d321733aabc4'
-'c3ea4d82da44da8ea9bcb4d7d9cdfb086d25fd8ec2ea457adec290f0d6ebe083'
+'3c3aaa3439b7b5db2171cb87f674a5df0f74aed427e87debebb780738b1557cb'
+'fe6c38d29bdde0ea5c0f1798bcd194912a269167cd8caa35289fbb59c037cfda'
 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
 '39ab5801b45c0f49af43c4d1826a655a981bfa07e4b3791d7a0719f8c191d8d9'
-'a0ee0761156a02d3f79db5ef295613c1a6d4267482c8db889d92a94b59feb497')
+'d29a050c80739801a340231a8bf5e8b565ee2a46285482f3425319349c2df6c5')
 
 backup=('etc/elasticsearch/elasticsearch.yml'
 'etc/elasticsearch/logging.yml'
@@ -37,11 +37,6 @@
   for script in plugin elasticsearch; do
 sed 's|^ES_HOME=.*dirname.*|ES_HOME=/usr/share/elasticsearch|' \
   -i bin/$script
-
-for java in jre jdk; do
-  sed "/^CDPATH/i [ -f /etc/profile.d/$java.sh ] && . 
/etc/profile.d/$java.sh" \
--i bin/$script
-done
   done
 
   sed 's|$ES_HOME/lib|/usr/lib/elasticsearch|g' -i bin/elasticsearch.in.sh 
bin/plugin

Modified: elasticsearch.default
===
--- elasticsearch.default   2014-08-25 11:56:06 UTC (rev 117865)
+++ elasticsearch.default   2014-08-25 12:23:11 UTC (rev 117866)
@@ -1,3 +1,5 @@
+JAVA_HOME=/usr/lib/jvm/java-default-runtime
+
 # Heap Size (defaults to 256m min, 1g max)
 #ES_HEAP_SIZE=1g
 

Modified: elasticsearch.service
===
--- elasticsearch.service   2014-08-25 11:56:06 UTC (rev 117865)
+++ elasticsearch.service   2014-08-25 12:23:11 UTC (rev 117866)
@@ -8,6 +8,7 @@
 User=elasticsearch
 Group=elasticsearch
 ExecStart=/usr/bin/elasticsearch -d -p /run/elasticsearch/elasticsearch.pid
+Environment=JAVA_HOME=/usr/lib/jvm/java-default-runtime
 EnvironmentFile=-/etc/default/elasticsearch
 RuntimeDirectory=elasticsearch
 PIDFile=/run/elasticsearch/elasticsearch.pid

Modified: elasticsearch@.service
===
--- elasticsearch@.service  2014-08-25 11:56:06 UTC (rev 117865)
+++ elasticsearch@.service  2014-08-25 12:23:11 UTC (rev 117866)
@@ -8,6 +8,7 @@
 User=elasticsearch
 Group=elasticsearch
 ExecStart=/usr/bin/elasticsearch -d -p /run/elasticsearch/%I.pid 
-Des.config=/etc/elasticsearch/%I.yml
+Environment=JAVA_HOME=/usr/lib/jvm/java-default-runtime
 EnvironmentFile=-/etc/default/elasticsearch
 RuntimeDirectory=elasticsearch
 PIDFile=/run/elasticsearch/%I.pid



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

2014-08-25 Thread Sergej Pupykin
Date: Monday, August 25, 2014 @ 13:56:06
  Author: spupykin
Revision: 117865

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-08-25 11:55:49 UTC (rev 117864)
+++ community-i686/PKGBUILD 2014-08-25 11:56:06 UTC (rev 117865)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Thorsten Töpper 
-# Contributor:  3ED 
-
-pkgname=mcabber
-pkgver=0.10.3
-pkgrel=1
-pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
-arch=('i686' 'x86_64')
-url="http://www.lilotux.net/~mikael/mcabber/";
-license=('GPL')
-depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr3' 'aspell')
-makedepends=('pkg-config')
-source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
-md5sums=('f6b0a075ba678de15af0129653a553da')
-
-build() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-
-  sed -i 's|lotr|lotr3|' configure
-  sed -i 's|libotr/version.h|libotr3/version.h|' configure
-  sed -i 's|#include 
+# Maintainer: Thorsten Töpper 
+# Contributor:  3ED 
+
+pkgname=mcabber
+pkgver=0.10.3
+pkgrel=2
+pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
+arch=('i686' 'x86_64')
+url="http://www.lilotux.net/~mikael/mcabber/";
+license=('GPL')
+depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
+makedepends=('pkg-config')
+source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
+md5sums=('f6b0a075ba678de15af0129653a553da')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+  ./configure --prefix=/usr --enable-hgcset \
+  --mandir=/usr/share/man \
+  --enable-aspell --enable-otr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+
+  make DESTDIR="${pkgdir}" install
+  mkdir -p "${pkgdir}"/usr/share/mcabber/example
+  msg "Copying mcabberrc.example to usr/share/mcabber/example/mcabberrc"
+  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
+   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-08-25 11:55:49 UTC (rev 117864)
+++ community-x86_64/PKGBUILD   2014-08-25 11:56:06 UTC (rev 117865)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Thorsten Töpper 
-# Contributor:  3ED 
-
-pkgname=mcabber
-pkgver=0.10.3
-pkgrel=1
-pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
-arch=('i686' 'x86_64')
-url="http://www.lilotux.net/~mikael/mcabber/";
-license=('GPL')
-depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr3' 'aspell')
-makedepends=('pkg-config')
-source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
-md5sums=('f6b0a075ba678de15af0129653a553da')
-
-build() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-
-  sed -i 's|lotr|lotr3|' configure
-  sed -i 's|libotr/version.h|libotr3/version.h|' configure
-  sed -i 's|#include 
+# Maintainer: Thorsten Töpper 
+# Contributor:  3ED 
+
+pkgname=mcabber
+pkgver=0.10.3
+pkgrel=2
+pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
+arch=('i686' 'x86_64')
+url="http://www.lilotux.net/~mikael/mcabber/";
+license=('GPL')
+depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
+makedepends=('pkg-config')
+source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
+md5sums=('f6b0a075ba678de15af0129653a553da')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+  ./configure --prefix=/usr --enable-hgcset \
+  --mandir=/usr/share/man \
+  --enable-aspell --enable-otr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+
+  make DESTDIR="${pkgdir}" install
+  mkdir -p "${pkgdir}"/usr/share/mcabber/example
+  msg "Copying mcabberrc.example to usr/share/mcabber/example/mcabberrc"
+  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
+   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
+}
+



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

2014-08-25 Thread Sergej Pupykin
Date: Monday, August 25, 2014 @ 13:55:49
  Author: spupykin
Revision: 117864

upgpkg: mcabber 0.10.3-2

upd

Modified:
  mcabber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 08:39:28 UTC (rev 117863)
+++ PKGBUILD2014-08-25 11:55:49 UTC (rev 117864)
@@ -5,12 +5,12 @@
 
 pkgname=mcabber
 pkgver=0.10.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
 arch=('i686' 'x86_64')
 url="http://www.lilotux.net/~mikael/mcabber/";
 license=('GPL')
-depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr3' 'aspell')
+depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
 makedepends=('pkg-config')
 
source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
 md5sums=('f6b0a075ba678de15af0129653a553da')
@@ -17,11 +17,6 @@
 
 build() {
   cd "${srcdir}"/$pkgname-${pkgver/_/-}
-
-  sed -i 's|lotr|lotr3|' configure
-  sed -i 's|libotr/version.h|libotr3/version.h|' configure
-  sed -i 's|#include 

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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:05:30
  Author: fyan
Revision: 117860

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

Added:
  dnscrypt-proxy/repos/community-testing-i686/
  dnscrypt-proxy/repos/community-testing-i686/PKGBUILD
(from rev 117859, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-i686/conf.d.file
(from rev 117859, dnscrypt-proxy/trunk/conf.d.file)
  dnscrypt-proxy/repos/community-testing-i686/dnscrypt-proxy.service
(from rev 117859, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
(from rev 117859, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-x86_64/conf.d.file
(from rev 117859, dnscrypt-proxy/trunk/conf.d.file)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service
(from rev 117859, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
Deleted:
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
  dnscrypt-proxy/repos/community-testing-x86_64/conf.d.file
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service

-+
 /PKGBUILD   |   42 ++
 /conf.d.file|7 +++
 /dnscrypt-proxy.service |   18 +
 community-testing-i686/PKGBUILD |   42 ++
 community-testing-i686/conf.d.file  |7 +++
 community-testing-i686/dnscrypt-proxy.service   |   18 +
 community-testing-x86_64/PKGBUILD   |   42 --
 community-testing-x86_64/conf.d.file|7 ---
 community-testing-x86_64/dnscrypt-proxy.service |   18 -
 9 files changed, 134 insertions(+), 67 deletions(-)

Copied: dnscrypt-proxy/repos/community-testing-i686/PKGBUILD (from rev 117859, 
dnscrypt-proxy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-25 07:05:30 UTC (rev 117860)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.4.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium')
+makedepends=('clang')
+source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
+   conf.d.file
+   dnscrypt-proxy.service)
+backup=(etc/conf.d/dnscrypt-proxy)
+
+build() {
+  cd $pkgname-$pkgver
+  export CC=clang
+  CFLAGS="${CFLAGS/-fstack-protector-strong/} -fPIC"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make -j2
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p 
"$pkgdir"/{usr/share/{licenses,doc}/$pkgname,etc/conf.d,usr/lib/systemd/system}
+  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
+  install -m 644 "$srcdir"/conf.d.file "$pkgdir"/etc/conf.d/$pkgname
+  install -m 644 "$srcdir"/dnscrypt-proxy.service 
"$pkgdir"/usr/lib/systemd/system
+}
+
+sha512sums=('cf21231d60a12dc413d7ce7d577b3698a2a347caca00c65f18b0fbcb715d872b6839f20863fb6bd69f3dee3b2836d6db8d446de5c0ec4925e3b4c75d5d5c4d47'
+
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
+
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')

Copied: dnscrypt-proxy/repos/community-testing-i686/conf.d.file (from rev 
117859, dnscrypt-proxy/trunk/conf.d.file)
===
--- community-testing-i686/conf.d.file  (rev 0)
+++ community-testing-i686/conf.d.file  2014-08-25 07:05:30 UTC (rev 117860)
@@ -0,0 +1,7 @@
+DNSCRYPT_LOCALIP=127.0.0.1
+DNSCRYPT_LOCALPORT=53
+DNSCRYPT_USER=nobody
+DNSCRYPT_PROVIDER_NAME=2.dnscrypt-cert.opendns.com
+DNSCRYPT_PROVIDER_KEY=B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79
+DNSCRYPT_RESOLVERIP=208.67.220.220
+DNSCRYPT_RESOLVERPORT=443

Copied: dnscrypt-proxy/repos/community-testing-i686/dnscrypt-proxy.service 
(from rev 117859, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
===
--- community-testing-i686/dnscrypt-proxy.service   
(rev 0)
+++ community-testing-i686/dnscrypt-proxy.service   2014-08-25 07:05:30 UTC 
(rev 117860)
@@ -0,0 +1,18 @@
+[Unit]
+Description=A tool for securing communications between a client and a DNS 
resolver.
+After=network.target
+# Only needed if you use pdnsd, other cac

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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:00:57
  Author: fyan
Revision: 117857

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

Added:
  zeromq/repos/community-testing-i686/
  zeromq/repos/community-testing-i686/PKGBUILD
(from rev 117855, zeromq/trunk/PKGBUILD)
  zeromq/repos/community-testing-x86_64/
  zeromq/repos/community-testing-x86_64/PKGBUILD
(from rev 117856, zeromq/trunk/PKGBUILD)

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

Copied: zeromq/repos/community-testing-i686/PKGBUILD (from rev 117855, 
zeromq/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-25 07:00:57 UTC (rev 117857)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=zeromq
+pkgver=4.0.4
+pkgrel=4
+pkgdesc="Fast messaging system built on sockets.  C and C++ bindings.  aka 
0MQ, ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org";
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium')
+makedepends=('python2')
+options=('staticlibs')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+https://raw.githubusercontent.com/zeromq/cppzmq/04d289760/zmq.hpp)
+md5sums=('f3c3defbb5ef6cc000ca65e529fdab3b'
+ '37b74022028bd4dc9253f123fa27da63')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium
+  sed -i 's/python$/&2/' 
foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+
+

Copied: zeromq/repos/community-testing-x86_64/PKGBUILD (from rev 117856, 
zeromq/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-08-25 07:00:57 UTC (rev 117857)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=zeromq
+pkgver=4.0.4
+pkgrel=4
+pkgdesc="Fast messaging system built on sockets.  C and C++ bindings.  aka 
0MQ, ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org";
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium')
+makedepends=('python2')
+options=('staticlibs')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+https://raw.githubusercontent.com/zeromq/cppzmq/04d289760/zmq.hpp)
+md5sums=('f3c3defbb5ef6cc000ca65e529fdab3b'
+ '37b74022028bd4dc9253f123fa27da63')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium
+  sed -i 's/python$/&2/' 
foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+
+



[arch-commits] Commit in dnscrypt-proxy/repos/community-testing-x86_64 (6 files)

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:02:37
  Author: fyan
Revision: 117859

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

Added:
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
(from rev 117858, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-x86_64/conf.d.file
(from rev 117858, dnscrypt-proxy/trunk/conf.d.file)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service
(from rev 117858, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
Deleted:
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
  dnscrypt-proxy/repos/community-testing-x86_64/conf.d.file
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service

+
 PKGBUILD   |   84 +++
 conf.d.file|   14 +++
 dnscrypt-proxy.service |   36 ++--
 3 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-25 07:01:36 UTC (rev 117858)
+++ PKGBUILD2014-08-25 07:02:37 UTC (rev 117859)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Techlive Zheng 
-# Contributor: peace4all 
-
-pkgname=dnscrypt-proxy
-pkgver=1.4.0
-pkgrel=2
-pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
-arch=('i686' 'x86_64')
-url="http://dnscrypt.org/";
-license=('custom:ISC')
-depends=('libsodium')
-makedepends=('clang')
-source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
-   conf.d.file
-   dnscrypt-proxy.service)
-backup=(etc/conf.d/dnscrypt-proxy)
-
-build() {
-  cd $pkgname-$pkgver
-  export CC=clang
-  CFLAGS="${CFLAGS/-fstack-protector-strong/} -fPIC"
-
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make -j2
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p 
"$pkgdir"/{usr/share/{licenses,doc}/$pkgname,etc/conf.d,usr/lib/systemd/system}
-  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
-  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
-  install -m 644 "$srcdir"/conf.d.file "$pkgdir"/etc/conf.d/$pkgname
-  install -m 644 "$srcdir"/dnscrypt-proxy.service 
"$pkgdir"/usr/lib/systemd/system
-}
-
-sha512sums=('cf21231d60a12dc413d7ce7d577b3698a2a347caca00c65f18b0fbcb715d872b6839f20863fb6bd69f3dee3b2836d6db8d446de5c0ec4925e3b4c75d5d5c4d47'
-
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
-
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')

Copied: dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD (from rev 
117858, dnscrypt-proxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-25 07:02:37 UTC (rev 117859)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.4.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium')
+makedepends=('clang')
+source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
+   conf.d.file
+   dnscrypt-proxy.service)
+backup=(etc/conf.d/dnscrypt-proxy)
+
+build() {
+  cd $pkgname-$pkgver
+  export CC=clang
+  CFLAGS="${CFLAGS/-fstack-protector-strong/} -fPIC"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make -j2
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p 
"$pkgdir"/{usr/share/{licenses,doc}/$pkgname,etc/conf.d,usr/lib/systemd/system}
+  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
+  install -m 644 "$srcdir"/conf.d.file "$pkgdir"/etc/conf.d/$pkgname
+  install -m 644 "$srcdir"/dnscrypt-proxy.service 
"$pkgdir"/usr/lib/systemd/system
+}
+
+sha512sums=('cf21231d60a12dc413d7ce7d577b3698a2a347caca00c65f18b0fbcb715d872b6839f20863fb6bd69f3dee3b2836d6db8d446de5c0ec4925e3b4c75d5d5c4d47'
+
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
+
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')

Deleted: conf.d.file
===
--- conf.d.file 2014-08-25 07:01:36 UTC (rev 117858)
+++ conf.d.file 2014-08-25 07:02:37 UTC (rev 117859)
@@ -1,7 +0,0 @@
-DNSCRYPT_LOCALIP=127.0.0.1
-DNSCRYPT_LOCALPORT=53
-DNSCRYPT_USER=nobody
-DNSCRYPT_PROVIDER_NAME=2.dnscrypt-cer

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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:01:36
  Author: fyan
Revision: 117858

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

Added:
  dnscrypt-proxy/repos/community-testing-x86_64/
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
(from rev 117856, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-x86_64/conf.d.file
(from rev 117856, dnscrypt-proxy/trunk/conf.d.file)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service
(from rev 117857, dnscrypt-proxy/trunk/dnscrypt-proxy.service)

+
 PKGBUILD   |   42 ++
 conf.d.file|7 +++
 dnscrypt-proxy.service |   18 ++
 3 files changed, 67 insertions(+)

Copied: dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD (from rev 
117856, dnscrypt-proxy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-08-25 07:01:36 UTC (rev 117858)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.4.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium')
+makedepends=('clang')
+source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
+   conf.d.file
+   dnscrypt-proxy.service)
+backup=(etc/conf.d/dnscrypt-proxy)
+
+build() {
+  cd $pkgname-$pkgver
+  export CC=clang
+  CFLAGS="${CFLAGS/-fstack-protector-strong/} -fPIC"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make -j2
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p 
"$pkgdir"/{usr/share/{licenses,doc}/$pkgname,etc/conf.d,usr/lib/systemd/system}
+  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
+  install -m 644 "$srcdir"/conf.d.file "$pkgdir"/etc/conf.d/$pkgname
+  install -m 644 "$srcdir"/dnscrypt-proxy.service 
"$pkgdir"/usr/lib/systemd/system
+}
+
+sha512sums=('cf21231d60a12dc413d7ce7d577b3698a2a347caca00c65f18b0fbcb715d872b6839f20863fb6bd69f3dee3b2836d6db8d446de5c0ec4925e3b4c75d5d5c4d47'
+
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
+
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')

Copied: dnscrypt-proxy/repos/community-testing-x86_64/conf.d.file (from rev 
117856, dnscrypt-proxy/trunk/conf.d.file)
===
--- community-testing-x86_64/conf.d.file(rev 0)
+++ community-testing-x86_64/conf.d.file2014-08-25 07:01:36 UTC (rev 
117858)
@@ -0,0 +1,7 @@
+DNSCRYPT_LOCALIP=127.0.0.1
+DNSCRYPT_LOCALPORT=53
+DNSCRYPT_USER=nobody
+DNSCRYPT_PROVIDER_NAME=2.dnscrypt-cert.opendns.com
+DNSCRYPT_PROVIDER_KEY=B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79
+DNSCRYPT_RESOLVERIP=208.67.220.220
+DNSCRYPT_RESOLVERPORT=443

Copied: dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service 
(from rev 117857, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
===
--- community-testing-x86_64/dnscrypt-proxy.service 
(rev 0)
+++ community-testing-x86_64/dnscrypt-proxy.service 2014-08-25 07:01:36 UTC 
(rev 117858)
@@ -0,0 +1,18 @@
+[Unit]
+Description=A tool for securing communications between a client and a DNS 
resolver.
+After=network.target
+# Only needed if you use pdnsd, other caching DNS servers can go here. Could 
be ignored too.
+#Before=pdnsd.service
+
+[Service]
+EnvironmentFile=/etc/conf.d/dnscrypt-proxy
+ExecStart=/usr/bin/dnscrypt-proxy \
+   --local-address=${DNSCRYPT_LOCALIP}:${DNSCRYPT_LOCALPORT} \
+--resolver-address=${DNSCRYPT_RESOLVERIP}:${DNSCRYPT_RESOLVERPORT} \
+--provider-name=${DNSCRYPT_PROVIDER_NAME} \
+--provider-key=${DNSCRYPT_PROVIDER_KEY} \
+   --user=${DNSCRYPT_USER}
+Restart=on-abort
+
+[Install]
+WantedBy=multi-user.target



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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:00:13
  Author: fyan
Revision: 117854

upgpkg: zeromq 4.0.4-4

rebuild for libsodium 0.7.0

Modified:
  zeromq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 06:59:58 UTC (rev 117853)
+++ PKGBUILD2014-08-25 07:00:13 UTC (rev 117854)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen 
 pkgname=zeromq
 pkgver=4.0.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Fast messaging system built on sockets.  C and C++ bindings.  aka 
0MQ, ZMQ."
 arch=('i686' 'x86_64')
 url="http://www.zeromq.org";



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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:00:22
  Author: fyan
Revision: 117855

upgpkg: dnscrypt-proxy 1.4.0-2

rebuild for libsodium 0.7.0

Modified:
  dnscrypt-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 07:00:13 UTC (rev 117854)
+++ PKGBUILD2014-08-25 07:00:22 UTC (rev 117855)
@@ -5,7 +5,7 @@
 
 pkgname=dnscrypt-proxy
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
 arch=('i686' 'x86_64')
 url="http://dnscrypt.org/";



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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 09:00:26
  Author: fyan
Revision: 117856

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

Added:
  libsodium/repos/community-testing-i686/
  libsodium/repos/community-testing-i686/PKGBUILD
(from rev 117853, libsodium/trunk/PKGBUILD)
  libsodium/repos/community-testing-x86_64/
  libsodium/repos/community-testing-x86_64/PKGBUILD
(from rev 117854, libsodium/trunk/PKGBUILD)

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

Copied: libsodium/repos/community-testing-i686/PKGBUILD (from rev 117853, 
libsodium/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-25 07:00:26 UTC (rev 117856)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: namelessjon 
+# Contributor: Alessio Sergi 
+
+pkgname=libsodium
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
+arch=('i686' 'x86_64')
+url="https://github.com/jedisct1/libsodium";
+license=('custom:ISC')
+depends=('glibc')
+#makedepends=('clang')
+source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('3b1a976ac83e2a740cc462f0589abcfe85604357e601f976b3d7f9d2aec7fca4705871f0fb937d6f9321102a5cc80b0cee6ec9c7864ce9d2c4735e20885b39ff')
+
+build() {
+  cd "$pkgname-$pkgver"
+  #export CC=clang
+  #CFLAGS=${CFLAGS/-fstack-protector-strong/}
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -d -m 755 "$pkgdir/usr/share/licenses/$pkgname"
+  install -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libsodium/repos/community-testing-x86_64/PKGBUILD (from rev 117854, 
libsodium/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-08-25 07:00:26 UTC (rev 117856)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: namelessjon 
+# Contributor: Alessio Sergi 
+
+pkgname=libsodium
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
+arch=('i686' 'x86_64')
+url="https://github.com/jedisct1/libsodium";
+license=('custom:ISC')
+depends=('glibc')
+#makedepends=('clang')
+source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('3b1a976ac83e2a740cc462f0589abcfe85604357e601f976b3d7f9d2aec7fca4705871f0fb937d6f9321102a5cc80b0cee6ec9c7864ce9d2c4735e20885b39ff')
+
+build() {
+  cd "$pkgname-$pkgver"
+  #export CC=clang
+  #CFLAGS=${CFLAGS/-fstack-protector-strong/}
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -d -m 755 "$pkgdir/usr/share/licenses/$pkgname"
+  install -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-08-25 Thread Felix Yan
Date: Monday, August 25, 2014 @ 08:59:58
  Author: fyan
Revision: 117853

upgpkg: libsodium 0.7.0-1

upstream new release with soname bump

Modified:
  libsodium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-25 05:43:18 UTC (rev 117852)
+++ PKGBUILD2014-08-25 06:59:58 UTC (rev 117853)
@@ -4,7 +4,7 @@
 # Contributor: Alessio Sergi 
 
 pkgname=libsodium
-pkgver=0.6.1
+pkgver=0.7.0
 pkgrel=1
 pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
 arch=('i686' 'x86_64')
@@ -11,14 +11,14 @@
 url="https://github.com/jedisct1/libsodium";
 license=('custom:ISC')
 depends=('glibc')
-makedepends=('clang')
+#makedepends=('clang')
 
source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
-sha512sums=('80524d4017ccd98f5aa96d7df1d4450c890f5c1aaee9c2bfc277fab98f4fb01ac2a3f11850e4f6610feea0279d707e1dede70991d252beeaf80bde3b6eff8ff3')
+sha512sums=('3b1a976ac83e2a740cc462f0589abcfe85604357e601f976b3d7f9d2aec7fca4705871f0fb937d6f9321102a5cc80b0cee6ec9c7864ce9d2c4735e20885b39ff')
 
 build() {
   cd "$pkgname-$pkgver"
-  export CC=clang
-  CFLAGS=${CFLAGS/-fstack-protector-strong/}
+  #export CC=clang
+  #CFLAGS=${CFLAGS/-fstack-protector-strong/}
 
   ./configure --prefix=/usr
   make