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

2013-11-06 Thread Gaetan Bisson
Date: Wednesday, November 6, 2013 @ 09:04:22
  Author: bisson
Revision: 199005

no need to remove files already removed by makepkg

Modified:
  graphicsmagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 07:24:53 UTC (rev 199004)
+++ PKGBUILD2013-11-06 08:04:22 UTC (rev 199005)
@@ -17,6 +17,8 @@
 
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
 sha1sums=('085c23666adcf88585119cb6aea7efe5c58481d4')
 
+options=('!emptydirs')
+
 build() {
cd ${srcdir}/GraphicsMagick-${pkgver}
 
@@ -46,8 +48,4 @@
sed -i -e s/LDLOADLIBS =/LDLOADLIBS = -lGraphicsMagick/ Makefile
make
make install
-
-   # Remove perllocal.pod and .packlist
-   rm -rf ${pkgdir}/usr/lib/perl5/core_perl
-   rm ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Graphics/Magick/.packlist
 }



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

2013-11-06 Thread Andrea Scarpino
Date: Wednesday, November 6, 2013 @ 09:10:12
  Author: andrea
Revision: 199006

upgpkg: phonon 4.7.0-2

db-remove removed phonon (as pkgbase) instead of phonon (as pkgname) so I'm 
pushing this again

Modified:
  phonon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 08:04:22 UTC (rev 199005)
+++ PKGBUILD2013-11-06 08:10:12 UTC (rev 199006)
@@ -4,7 +4,7 @@
 pkgbase=phonon
 pkgname=('phonon-qt4' 'phonon-qt5')
 pkgver=4.7.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
 license=('LGPL')



[arch-commits] Commit in phonon/repos (extra-x86_64 extra-x86_64/PKGBUILD)

2013-11-06 Thread Andrea Scarpino
Date: Wednesday, November 6, 2013 @ 09:10:18
  Author: andrea
Revision: 199007

archrelease: copy trunk to extra-x86_64

Added:
  phonon/repos/extra-x86_64/
  phonon/repos/extra-x86_64/PKGBUILD
(from rev 199006, phonon/trunk/PKGBUILD)

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

Copied: phonon/repos/extra-x86_64/PKGBUILD (from rev 199006, 
phonon/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-06 08:10:18 UTC (rev 199007)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=phonon
+pkgname=('phonon-qt4' 'phonon-qt5')
+pkgver=4.7.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'libpulse' 'libqzeitgeist' 'qt5-base' 
'qt5-tools' 'qt5-quick1')
+options=('!emptydirs')
+source=(http://download.kde.org/stable/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('f5c1a847ac8ae73e67bf762199978278')
+
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+
+  cd ../build-qt5
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DPHONON_BUILD_PHONON4QT5=ON \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package_phonon-qt4(){
+  pkgdesc=The multimedia framework for KDE4
+  depends=('phonon-backend' 'libpulse' 'libqzeitgeist')
+  optdepends=('pulseaudio: PulseAudio support')
+  replaces=('phonon')
+  provides=('phonon')
+  conflicts=('phonon')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Install headers into the Qt4 dir
+  install -d ${pkgdir}/usr/include/qt4
+  mv ${pkgdir}/usr/include/{phonon,KDE} ${pkgdir}/usr/include/qt4/
+
+  sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
+${pkgdir}/usr/lib/pkgconfig/phonon.pc
+}
+
+package_phonon-qt5(){
+  pkgdesc=The multimedia framework for KF5
+  depends=('phonon-backend' 'libpulse' 'qt5-base')
+  optdepends=('pulseaudio: PulseAudio support')
+
+  cd build-qt5
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in phonon/repos (extra-i686 extra-i686/PKGBUILD)

2013-11-06 Thread Andrea Scarpino
Date: Wednesday, November 6, 2013 @ 09:14:04
  Author: andrea
Revision: 199008

archrelease: copy trunk to extra-i686

Added:
  phonon/repos/extra-i686/
  phonon/repos/extra-i686/PKGBUILD
(from rev 199007, phonon/trunk/PKGBUILD)

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

Copied: phonon/repos/extra-i686/PKGBUILD (from rev 199007, 
phonon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-06 08:14:04 UTC (rev 199008)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=phonon
+pkgname=('phonon-qt4' 'phonon-qt5')
+pkgver=4.7.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'libpulse' 'libqzeitgeist' 'qt5-base' 
'qt5-tools' 'qt5-quick1')
+options=('!emptydirs')
+source=(http://download.kde.org/stable/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('f5c1a847ac8ae73e67bf762199978278')
+
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+
+  cd ../build-qt5
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DPHONON_BUILD_PHONON4QT5=ON \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package_phonon-qt4(){
+  pkgdesc=The multimedia framework for KDE4
+  depends=('phonon-backend' 'libpulse' 'libqzeitgeist')
+  optdepends=('pulseaudio: PulseAudio support')
+  replaces=('phonon')
+  provides=('phonon')
+  conflicts=('phonon')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Install headers into the Qt4 dir
+  install -d ${pkgdir}/usr/include/qt4
+  mv ${pkgdir}/usr/include/{phonon,KDE} ${pkgdir}/usr/include/qt4/
+
+  sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
+${pkgdir}/usr/lib/pkgconfig/phonon.pc
+}
+
+package_phonon-qt5(){
+  pkgdesc=The multimedia framework for KF5
+  depends=('phonon-backend' 'libpulse' 'qt5-base')
+  optdepends=('pulseaudio: PulseAudio support')
+
+  cd build-qt5
+  make DESTDIR=${pkgdir} install
+}



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

2013-11-06 Thread Tobias Powalowski
Date: Wednesday, November 6, 2013 @ 09:26:56
  Author: tpowa
Revision: 199009

upgpkg: linux 3.12-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config
  linux/trunk/config.x86_64

---+
 PKGBUILD  |   11 ---
 config|6 +++---
 config.x86_64 |6 +++---
 3 files changed, 14 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 08:14:04 UTC (rev 199008)
+++ PKGBUILD2013-11-06 08:26:56 UTC (rev 199009)
@@ -21,12 +21,11 @@
 'change-default-console-loglevel.patch'
 'criu-no-expert.patch')
 md5sums=('cc6ee608854e0da4b64f6c1ff8b6398c'
- 'dc43ea54ac044242539e4995df4b45fa'
- 'e10cb607bb55ef75c74b254649597c35'
+ '798bca5d2f0a1505c9b86a5227a2b339'
+ '8fa6cbb28dda5a4b38730c7f728e1845'
  'eb14dcfd80c00852ef81ded6e826826a'
  '98beb36f9b8cf16e58de2483ea9985e3'
  'd50c1ac47394e9aec637002ef3392bd1')
-
 _kernelname=${pkgbase#linux}
 
 # module.symbols md5sums
@@ -333,3 +332,9 @@
 done
 
 # vim:set ts=8 sts=2 sw=2 et:
+md5sums=('cc6ee608854e0da4b64f6c1ff8b6398c'
+ '798bca5d2f0a1505c9b86a5227a2b339'
+ '8fa6cbb28dda5a4b38730c7f728e1845'
+ 'eb14dcfd80c00852ef81ded6e826826a'
+ '98beb36f9b8cf16e58de2483ea9985e3'
+ 'd50c1ac47394e9aec637002ef3392bd1')

Modified: config
===
--- config  2013-11-06 08:14:04 UTC (rev 199008)
+++ config  2013-11-06 08:26:56 UTC (rev 199009)
@@ -1347,9 +1347,9 @@
 CONFIG_BT_RFCOMM=m
 CONFIG_BT_RFCOMM_TTY=y
 CONFIG_BT_BNEP=m
-# CONFIG_BT_BNEP_MC_FILTER is not set
-# CONFIG_BT_BNEP_PROTO_FILTER is not set
-# CONFIG_BT_CMTP is not set
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_CMTP=m
 CONFIG_BT_HIDP=m
 
 #

Modified: config.x86_64
===
--- config.x86_64   2013-11-06 08:14:04 UTC (rev 199008)
+++ config.x86_64   2013-11-06 08:26:56 UTC (rev 199009)
@@ -1318,9 +1318,9 @@
 CONFIG_BT_RFCOMM=m
 CONFIG_BT_RFCOMM_TTY=y
 CONFIG_BT_BNEP=m
-# CONFIG_BT_BNEP_MC_FILTER is not set
-# CONFIG_BT_BNEP_PROTO_FILTER is not set
-# CONFIG_BT_CMTP is not set
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_CMTP=m
 CONFIG_BT_HIDP=m
 
 #



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

2013-11-06 Thread Tobias Powalowski
Date: Wednesday, November 6, 2013 @ 09:27:18
  Author: tpowa
Revision: 199010

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

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

--+
 /PKGBUILD|  680 
 /change-default-console-loglevel.patch   |   24 
 /config  |12960 +
 /config.x86_64   |12560 
 /criu-no-expert.patch|   44 
 /linux.install   |   62 
 /linux.preset|   28 
 testing-i686/PKGBUILD|  335 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6480 
 testing-i686/config.x86_64   | 6280 
 testing-i686/criu-no-expert.patch|   22 
 testing-i686/linux.install   |   31 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  335 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6480 
 testing-x86_64/config.x86_64 | 6280 
 testing-x86_64/criu-no-expert.patch  |   22 
 testing-x86_64/linux.install |   31 
 testing-x86_64/linux.preset  |   14 
 21 files changed, 26358 insertions(+), 26348 deletions(-)

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


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

2013-11-06 Thread Timothy Redaelli
Date: Wednesday, November 6, 2013 @ 11:00:59
  Author: tredaelli
Revision: 100577

upgpkg: wireshark 1.10.3-2

Enable portaudio (FS#37658)

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 07:57:04 UTC (rev 100576)
+++ PKGBUILD2013-11-06 10:00:59 UTC (rev 100577)
@@ -5,10 +5,10 @@
 pkgname=('wireshark-cli' 'wireshark-gtk')
 pkgbase=wireshark
 pkgver=1.10.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL2')
-makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls'
+makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
  'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
 url='http://www.wireshark.org/'
 source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
@@ -27,16 +27,19 @@
   ./autogen.sh
   ./configure \
   --prefix=/usr \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
   --with-ssl \
-  --with-zlib=yes \
-  --with-lua \
-  --with-gtk3=yes
+  --with-krb5
   make all
 }
 
 package_wireshark-cli() {
   pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libpcap' 'bash' 'gnutls'  'glib2' 'lua')
+  depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua' 'portaudio')
   install=wireshark.install
   conflicts=(wireshark)
 



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

2013-11-06 Thread Timothy Redaelli
Date: Wednesday, November 6, 2013 @ 11:01:45
  Author: tredaelli
Revision: 100578

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

Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/wireshark-gtk.install
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark-gtk.install
  wireshark/repos/community-x86_64/wireshark.install

+
 community-i686/PKGBUILD|   81 ---
 community-i686/wireshark-gtk.install   |   12 
 community-i686/wireshark.install   |   18 --
 community-x86_64/PKGBUILD  |   81 ---
 community-x86_64/wireshark-gtk.install |   12 
 community-x86_64/wireshark.install |   18 --
 6 files changed, 222 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 10:00:59 UTC (rev 100577)
+++ community-i686/PKGBUILD 2013-11-06 10:01:45 UTC (rev 100578)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
-pkgname=('wireshark-cli' 'wireshark-gtk')
-pkgbase=wireshark
-pkgver=1.10.3
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls'
- 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
-wireshark-1.10.3-gtk3.10-compile.patch)
-sha256sums=('c1641b36aeb0ca2c1a95fb01d2c647888b65e00a215c9a6464b5fc61e0fd498c'
-'45274cca58f0abdd3a560beb79a6f0bc8f35736426a1855ed048c9ad8e94f3c0')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  patch -p1 -i ${srcdir}/wireshark-1.10.3-gtk3.10-compile.patch
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-ssl \
-  --with-zlib=yes \
-  --with-lua \
-  --with-gtk3=yes
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libpcap' 'bash' 'gnutls'  'glib2' 'lua')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  #wireshark uid group is 150
-  chgrp 150 ${pkgdir}/usr/bin/dumpcap
-  chmod 754 ${pkgdir}/usr/bin/dumpcap
-  rm ${pkgdir}/usr/bin/wireshark
-
-  # Headers
-  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes wiretap 
wsutil; do
-install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('gtk3' 'wireshark-cli' 'desktop-file-utils' 'hicolor-icon-theme')
-  install=wireshark-gtk.install
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
-  for d in 16 32 48; do
-install -Dm644 image/hi${d}-app-wireshark.png  \
-   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
-  done
-
-  for d in 16 24 32 48 64 128 256 ; do
-install -Dm644 image/WiresharkDoc-${d}.png \
-   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/mimetypes/application-vnd.tcpdump.pcap.png
-  done
-  install -Dm644 wireshark.desktop 
${pkgdir}/usr/share/applications/wireshark.desktop
-}

Deleted: community-i686/wireshark-gtk.install
===
--- community-i686/wireshark-gtk.install2013-11-06 10:00:59 UTC (rev 
100577)
+++ community-i686/wireshark-gtk.install2013-11-06 10:01:45 UTC (rev 
100578)
@@ -1,12 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Deleted: community-i686/wireshark.install
===
--- community-i686/wireshark.install2013-11-06 10:00:59 UTC (rev 100577)
+++ community-i686/wireshark.install2013-11-06 10:01:45 UTC (rev 100578)
@@ -1,18 +0,0 @@
-post_install() {
-getent group wireshark /dev/null 21 ||  groupadd -g 150 wireshark 
/dev/null
-
-setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/dumpcap
-echo NOTE: To run wireshark as normal user you have to add yourself into 
wireshark group
-}
-
-post_upgrade() {
-getent group 

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

2013-11-06 Thread Timothy Redaelli
Date: Wednesday, November 6, 2013 @ 11:04:45
  Author: tredaelli
Revision: 100579

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 100578, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 100578, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 100578, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 100578, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 100578, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 100578, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 100578, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 100578, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/wireshark-1.10.3-gtk3.10-compile.patch
  wireshark/repos/community-x86_64/wireshark-1.10.3-gtk3.10-compile.patch

-+
 /wireshark-1.10.3-gtk3.10-compile.patch |   24 
 community-i686/PKGBUILD |   84 ++
 community-i686/wireshark-1.10.3-gtk3.10-compile.patch   |   12 --
 community-i686/wireshark-gtk.install|   12 ++
 community-i686/wireshark.install|   18 +++
 community-x86_64/PKGBUILD   |   84 ++
 community-x86_64/wireshark-1.10.3-gtk3.10-compile.patch |   12 --
 community-x86_64/wireshark-gtk.install  |   12 ++
 community-x86_64/wireshark.install  |   18 +++
 9 files changed, 252 insertions(+), 24 deletions(-)

Copied: wireshark/repos/community-i686/PKGBUILD (from rev 100578, 
wireshark/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 10:04:45 UTC (rev 100579)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
+pkgname=('wireshark-cli' 'wireshark-gtk')
+pkgbase=wireshark
+pkgver=1.10.3
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
+ 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
+url='http://www.wireshark.org/'
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+wireshark-1.10.3-gtk3.10-compile.patch)
+sha256sums=('c1641b36aeb0ca2c1a95fb01d2c647888b65e00a215c9a6464b5fc61e0fd498c'
+'45274cca58f0abdd3a560beb79a6f0bc8f35736426a1855ed048c9ad8e94f3c0')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ${srcdir}/wireshark-1.10.3-gtk3.10-compile.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
+  --with-ssl \
+  --with-krb5
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua' 'portaudio')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  #wireshark uid group is 150
+  chgrp 150 ${pkgdir}/usr/bin/dumpcap
+  chmod 754 ${pkgdir}/usr/bin/dumpcap
+  rm ${pkgdir}/usr/bin/wireshark
+
+  # Headers
+  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes wiretap 
wsutil; do
+install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('gtk3' 'wireshark-cli' 'desktop-file-utils' 'hicolor-icon-theme')
+  install=wireshark-gtk.install
+  replaces=(wireshark)
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
+  for d in 16 32 48; do
+install -Dm644 image/hi${d}-app-wireshark.png  \
+   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
+  done
+
+  for d in 16 24 32 48 64 128 256 ; do
+install -Dm644 image/WiresharkDoc-${d}.png \
+   

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

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 11:52:39
  Author: arodseth
Revision: 100581

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 10:52:27 UTC (rev 100580)
+++ community-i686/PKGBUILD 2013-11-06 10:52:39 UTC (rev 100581)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jeff Horelick jdho...@gmail.com
-# Contributor: skydrome skydr...@i2pmail.org
-
-pkgname=the_silver_searcher
-pkgver=0.18
-pkgrel=1
-pkgdesc='Code searching tool similar to Ack, but faster'
-url='https://github.com/ggreer/the_silver_searcher'
-license=('Apache')
-depends=('pcre' 'zlib' 'xz')
-arch=('x86_64' 'i686')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('9d3cdb7ab42308351f951adf1d149241b25f27d676322d96cdb215e4a0d90ea2')
-
-prepare() {
-  cd $pkgname-$pkgver
-  
-  sed -i 's:configure:configure --prefix=/usr:' build.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./build.sh
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: the_silver_searcher/repos/community-i686/PKGBUILD (from rev 100580, 
the_silver_searcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 10:52:39 UTC (rev 100581)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jeff Horelick jdho...@gmail.com
+# Contributor: skydrome skydr...@i2pmail.org
+
+pkgname=the_silver_searcher
+pkgver=0.18.1
+pkgrel=1
+pkgdesc='Code searching tool similar to Ack, but faster'
+url='https://github.com/ggreer/the_silver_searcher'
+license=('Apache')
+depends=('pcre' 'zlib' 'xz')
+arch=('x86_64' 'i686')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=('1f5cdacf955d5707cdb60f3f46aab3aae7fe96f105f00ab2d6a5a52d0aad5dc5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  
+  sed -i 's:configure:configure --prefix=/usr:' build.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./build.sh
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 10:52:27 UTC (rev 100580)
+++ community-x86_64/PKGBUILD   2013-11-06 10:52:39 UTC (rev 100581)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jeff Horelick jdho...@gmail.com
-# Contributor: skydrome skydr...@i2pmail.org
-
-pkgname=the_silver_searcher
-pkgver=0.18
-pkgrel=1
-pkgdesc='Code searching tool similar to Ack, but faster'
-url='https://github.com/ggreer/the_silver_searcher'
-license=('Apache')
-depends=('pcre' 'zlib' 'xz')
-arch=('x86_64' 'i686')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('9d3cdb7ab42308351f951adf1d149241b25f27d676322d96cdb215e4a0d90ea2')
-
-prepare() {
-  cd $pkgname-$pkgver
-  
-  sed -i 's:configure:configure --prefix=/usr:' build.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./build.sh
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: the_silver_searcher/repos/community-x86_64/PKGBUILD (from rev 100580, 
the_silver_searcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 10:52:39 UTC (rev 100581)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jeff Horelick jdho...@gmail.com
+# Contributor: skydrome skydr...@i2pmail.org
+
+pkgname=the_silver_searcher
+pkgver=0.18.1
+pkgrel=1
+pkgdesc='Code searching tool similar to Ack, but faster'
+url='https://github.com/ggreer/the_silver_searcher'
+license=('Apache')
+depends=('pcre' 'zlib' 'xz')
+arch=('x86_64' 'i686')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz;)

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

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 11:52:27
  Author: arodseth
Revision: 100580

upgpkg: the_silver_searcher 0.18.1-1

Modified:
  the_silver_searcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 10:04:45 UTC (rev 100579)
+++ PKGBUILD2013-11-06 10:52:27 UTC (rev 100580)
@@ -4,7 +4,7 @@
 # Contributor: skydrome skydr...@i2pmail.org
 
 pkgname=the_silver_searcher
-pkgver=0.18
+pkgver=0.18.1
 pkgrel=1
 pkgdesc='Code searching tool similar to Ack, but faster'
 url='https://github.com/ggreer/the_silver_searcher'
@@ -12,7 +12,7 @@
 depends=('pcre' 'zlib' 'xz')
 arch=('x86_64' 'i686')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('9d3cdb7ab42308351f951adf1d149241b25f27d676322d96cdb215e4a0d90ea2')
+sha256sums=('1f5cdacf955d5707cdb60f3f46aab3aae7fe96f105f00ab2d6a5a52d0aad5dc5')
 
 prepare() {
   cd $pkgname-$pkgver



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

2013-11-06 Thread Jan de Groot
Date: Wednesday, November 6, 2013 @ 12:02:22
  Author: jgc
Revision: 199011

upgpkg: brasero 3.8.0-4

Add gvfs dependency (FS#37389)

Modified:
  brasero/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 08:27:18 UTC (rev 199010)
+++ PKGBUILD2013-11-06 11:02:22 UTC (rev 199011)
@@ -5,13 +5,13 @@
 
 pkgname=brasero
 pkgver=3.8.0
-pkgrel=3
+pkgrel=4
 pkgdesc=A disc burning application for Gnome
 arch=('i686' 'x86_64')
 url=http://www.gnome.org/projects/brasero;
 license=('GPL')
 options=('!emptydirs')
-depends=('gtk3' 'gst-plugins-good' 'totem-plparser' 'cdrkit' 'cdrdao' 
'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info'  'libcanberra' 
'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql' 'libnotify')
+depends=('gtk3' 'gst-plugins-good' 'totem-plparser' 'cdrkit' 'cdrdao' 
'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info'  'libcanberra' 
'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql' 'libnotify' 'gvfs')
 makedepends=('gtk-doc' 'yelp-tools' 'gnome-common' 'intltool' 'libburn' 
'libisofs' 'libnautilus-extension' 'gobject-introspection' 'gconf' 'itstool' 
'docbook-xsl')
 optdepends=('libburn: alternative back-end'
 'libisofs: libburn back-end'



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

2013-11-06 Thread Jan de Groot
Date: Wednesday, November 6, 2013 @ 12:02:30
  Author: jgc
Revision: 199012

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

Added:
  brasero/repos/extra-i686/PKGBUILD
(from rev 199011, brasero/trunk/PKGBUILD)
  brasero/repos/extra-i686/brasero.install
(from rev 199011, brasero/trunk/brasero.install)
  brasero/repos/extra-i686/bug655513.patch
(from rev 199011, brasero/trunk/bug655513.patch)
  brasero/repos/extra-x86_64/PKGBUILD
(from rev 199011, brasero/trunk/PKGBUILD)
  brasero/repos/extra-x86_64/brasero.install
(from rev 199011, brasero/trunk/brasero.install)
  brasero/repos/extra-x86_64/bug655513.patch
(from rev 199011, brasero/trunk/bug655513.patch)
Deleted:
  brasero/repos/extra-i686/PKGBUILD
  brasero/repos/extra-i686/brasero.install
  brasero/repos/extra-i686/bug655513.patch
  brasero/repos/extra-x86_64/PKGBUILD
  brasero/repos/extra-x86_64/brasero.install
  brasero/repos/extra-x86_64/bug655513.patch

--+
 /PKGBUILD|  104 +
 /brasero.install |   28 +++
 /bug655513.patch |   74 +
 extra-i686/PKGBUILD  |   52 
 extra-i686/brasero.install   |   14 -
 extra-i686/bug655513.patch   |   37 --
 extra-x86_64/PKGBUILD|   52 
 extra-x86_64/brasero.install |   14 -
 extra-x86_64/bug655513.patch |   37 --
 9 files changed, 206 insertions(+), 206 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-06 11:02:22 UTC (rev 199011)
+++ extra-i686/PKGBUILD 2013-11-06 11:02:30 UTC (rev 199012)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=brasero
-pkgver=3.8.0
-pkgrel=3
-pkgdesc=A disc burning application for Gnome
-arch=('i686' 'x86_64')
-url=http://www.gnome.org/projects/brasero;
-license=('GPL')
-options=('!emptydirs')
-depends=('gtk3' 'gst-plugins-good' 'totem-plparser' 'cdrkit' 'cdrdao' 
'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info'  'libcanberra' 
'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql' 'libnotify')
-makedepends=('gtk-doc' 'yelp-tools' 'gnome-common' 'intltool' 'libburn' 
'libisofs' 'libnautilus-extension' 'gobject-introspection' 'gconf' 'itstool' 
'docbook-xsl')
-optdepends=('libburn: alternative back-end'
-'libisofs: libburn back-end'
-'dvdauthor: video project'
-'vcdimager: video project')
-replaces=('nautilus-cd-burner')
-install=brasero.install
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-bug655513.patch)
-sha256sums=('d98a368a6129e50681e8243c5e0833c32cca699bd50b839c6a551d52b396bce4'
-'3e774040c570881fe120af7c250a91e8a69331289490c823feed87c4d00f98fb')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Update tracker dep
-  sed -i '/tracker/s/0\.14/0.16/' configure.ac
-
-  # Fix infinite loop after cancelling the burn image dialog
-  patch -Np1 -i ../bug655513.patch
-}
-  
-build() {
-  cd $pkgname-$pkgver
-  autoreconf -f -v -i
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-caches \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-

Copied: brasero/repos/extra-i686/PKGBUILD (from rev 199011, 
brasero/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-06 11:02:30 UTC (rev 199012)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=brasero
+pkgver=3.8.0
+pkgrel=4
+pkgdesc=A disc burning application for Gnome
+arch=('i686' 'x86_64')
+url=http://www.gnome.org/projects/brasero;
+license=('GPL')
+options=('!emptydirs')
+depends=('gtk3' 'gst-plugins-good' 'totem-plparser' 'cdrkit' 'cdrdao' 
'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info'  'libcanberra' 
'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql' 'libnotify' 'gvfs')
+makedepends=('gtk-doc' 'yelp-tools' 'gnome-common' 'intltool' 'libburn' 
'libisofs' 'libnautilus-extension' 'gobject-introspection' 'gconf' 'itstool' 
'docbook-xsl')
+optdepends=('libburn: alternative back-end'
+'libisofs: libburn back-end'
+'dvdauthor: video project'
+'vcdimager: video project')
+replaces=('nautilus-cd-burner')
+install=brasero.install
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+bug655513.patch)

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

2013-11-06 Thread Jan de Groot
Date: Wednesday, November 6, 2013 @ 12:10:28
  Author: jgc
Revision: 199013

upgpkg: python-geoip 1.2.8-3

Add conflicts on older python-geoip, should fix FS#37146

Modified:
  python-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 11:02:30 UTC (rev 199012)
+++ PKGBUILD2013-11-06 11:10:28 UTC (rev 199013)
@@ -1,12 +1,11 @@
 # $Id$
-# Maintainer:
+# Maintainer: Jan de Groot j...@archlinux.org
 # Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=('python2-geoip')
 pkgbase=python-geoip
 pkgver=1.2.8
-pkgrel=2
+pkgrel=3
 pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
 arch=('i686' 'x86_64')
 url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
@@ -21,6 +20,8 @@
 }
 
 package_python2-geoip() {
+  conflicts=('python-geoip1.2.8')
+
   cd GeoIP-Python-$pkgver
   python2 setup.py install --root=$pkgdir -O1
 }



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

2013-11-06 Thread Jan de Groot
Date: Wednesday, November 6, 2013 @ 12:10:37
  Author: jgc
Revision: 199014

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

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

---+
 /PKGBUILD |   58 
 extra-i686/PKGBUILD   |   28 ---
 extra-x86_64/PKGBUILD |   28 ---
 3 files changed, 58 insertions(+), 56 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-06 11:10:28 UTC (rev 199013)
+++ extra-i686/PKGBUILD 2013-11-06 11:10:37 UTC (rev 199014)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=('python2-geoip')
-pkgbase=python-geoip
-pkgver=1.2.8
-pkgrel=2
-pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
-arch=('i686' 'x86_64')
-url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
-license=('LGPL')
-depends=('python2' 'geoip')
-source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
-sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
-
-build() {
-  cd GeoIP-Python-$pkgver
-  python2 setup.py build
-}
-
-package_python2-geoip() {
-  cd GeoIP-Python-$pkgver
-  python2 setup.py install --root=$pkgdir -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-geoip/repos/extra-i686/PKGBUILD (from rev 199013, 
python-geoip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-06 11:10:37 UTC (rev 199014)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+
+pkgname=('python2-geoip')
+pkgbase=python-geoip
+pkgver=1.2.8
+pkgrel=3
+pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
+arch=('i686' 'x86_64')
+url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
+license=('LGPL')
+depends=('python2' 'geoip')
+source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
+sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
+
+build() {
+  cd GeoIP-Python-$pkgver
+  python2 setup.py build
+}
+
+package_python2-geoip() {
+  conflicts=('python-geoip1.2.8')
+
+  cd GeoIP-Python-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-06 11:10:28 UTC (rev 199013)
+++ extra-x86_64/PKGBUILD   2013-11-06 11:10:37 UTC (rev 199014)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=('python2-geoip')
-pkgbase=python-geoip
-pkgver=1.2.8
-pkgrel=2
-pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
-arch=('i686' 'x86_64')
-url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
-license=('LGPL')
-depends=('python2' 'geoip')
-source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
-sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
-
-build() {
-  cd GeoIP-Python-$pkgver
-  python2 setup.py build
-}
-
-package_python2-geoip() {
-  cd GeoIP-Python-$pkgver
-  python2 setup.py install --root=$pkgdir -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-geoip/repos/extra-x86_64/PKGBUILD (from rev 199013, 
python-geoip/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-06 11:10:37 UTC (rev 199014)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+
+pkgname=('python2-geoip')
+pkgbase=python-geoip
+pkgver=1.2.8
+pkgrel=3
+pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
+arch=('i686' 'x86_64')
+url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
+license=('LGPL')
+depends=('python2' 'geoip')
+source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
+sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
+
+build() {
+  cd GeoIP-Python-$pkgver
+  python2 setup.py build
+}
+
+package_python2-geoip() {
+  conflicts=('python-geoip1.2.8')
+
+  cd GeoIP-Python-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in dmd/trunk (PKGBUILD soname.diff)

2013-11-06 Thread Михаил Страшун
Date: Wednesday, November 6, 2013 @ 12:18:11
  Author: dicebot
Revision: 100582

upgpkg: dmd 2.064.2-1

dmd - 2.064

Modified:
  dmd/trunk/PKGBUILD
Deleted:
  dmd/trunk/soname.diff

-+
 PKGBUILD|   15 ++-
 soname.diff |   15 ---
 2 files changed, 6 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 10:52:39 UTC (rev 100581)
+++ PKGBUILD2013-11-06 11:18:11 UTC (rev 100582)
@@ -9,8 +9,8 @@
 pkgname=('dmd' 'libphobos-devel' 'libphobos' 'dtools')
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.063.2
-pkgrel=4
+pkgver=2.064.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.dlang.org;
 makedepends=('git' 'gcc' 'make')
@@ -17,13 +17,11 @@
 source=(git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver;
 
git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver;
 git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver;
-git+http://github.com/D-Programming-Language/tools#tag=v$pkgver; 
-soname.diff)
+git+http://github.com/D-Programming-Language/tools#tag=v$pkgver;)
 sha1sums=('SKIP'
   'SKIP'
   'SKIP'
-  'SKIP'
-  '5a2198e8a024e1e6494034da569f0df18fabcf9d')
+  'SKIP')
 
 [[ $CARCH == x86_64 ]]  _archbits=64
 [[ $CARCH == i686 ]]  _archbits=32
@@ -36,8 +34,6 @@
 make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
 
 cd $srcdir/phobos
-# will be in upstream in next release but making naming change as early as 
possible
-git apply $srcdir/soname.diff
 make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
 
 cd $srcdir/tools
@@ -82,6 +78,7 @@
 package_libphobos-devel() {
 pkgdesc=The Phobos standard library for D programming language. Modules 
and static library.
 depends=(dmd)
+options=(staticlibs)
 provides=(d-runtime=$pkgver d-stdlib=$pkgver)
 license=(custom)
 
@@ -123,5 +120,5 @@
 ln -s dtools-dustmite usr/bin/dustmite
 
 # same Boost license as Phobos
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
usr/share/licenses/$pkgname/LICENSE-phobos
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
usr/share/licenses/$pkgname/LICENSE
 }

Deleted: soname.diff
===
--- soname.diff 2013-11-06 10:52:39 UTC (rev 100581)
+++ soname.diff 2013-11-06 11:18:11 UTC (rev 100582)
@@ -1,15 +0,0 @@
-diff --git a/posix.mak b/posix.mak
-index 8fd953e..3776bb4 100644
 a/posix.mak
-+++ b/posix.mak
-@@ -153,8 +153,8 @@ DDOC=$(DMD)
- VERSION=../dmd/VERSION
- 
- # Set SONAME, the name of the shared library.
--# The awk script will produce the last 2 digits of the version string, i.e. 
2.063 produces 63
--SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$NF + 0 }' $(VERSION))
-+# The awk script will return the second group without leading zeros of the 
version string, i.e. 2.063.2 produces 63
-+SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$2 + 0 }' $(VERSION))
- 
- # Set LIB, the ultimate target
- ifeq (,$(findstring win,$(OS)))



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

2013-11-06 Thread Михаил Страшун
Date: Wednesday, November 6, 2013 @ 12:18:29
  Author: dicebot
Revision: 100583

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

Added:
  dmd/repos/community-i686/PKGBUILD
(from rev 100582, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/PKGBUILD
(from rev 100582, dmd/trunk/PKGBUILD)
Deleted:
  dmd/repos/community-i686/PKGBUILD
  dmd/repos/community-i686/soname.diff
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/soname.diff

--+
 /PKGBUILD|  248 +
 community-i686/PKGBUILD  |  127 
 community-i686/soname.diff   |   15 --
 community-x86_64/PKGBUILD|  127 
 community-x86_64/soname.diff |   15 --
 5 files changed, 248 insertions(+), 284 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 11:18:11 UTC (rev 100582)
+++ community-i686/PKGBUILD 2013-11-06 11:18:29 UTC (rev 100583)
@@ -1,127 +0,0 @@
-# $Id$
-# Maintainer: Mihails Strasunse pub...@dicebot.lv
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Chris Brannon cmbranno...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Anders Bergh ande...@gmail.com
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgname=('dmd' 'libphobos-devel' 'libphobos' 'dtools')
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.063.2
-pkgrel=4
-arch=('i686' 'x86_64')
-url=http://www.dlang.org;
-makedepends=('git' 'gcc' 'make')
-source=(git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver;
-
git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver;
-git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver;
-git+http://github.com/D-Programming-Language/tools#tag=v$pkgver; 
-soname.diff)
-sha1sums=('SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  '5a2198e8a024e1e6494034da569f0df18fabcf9d')
-
-[[ $CARCH == x86_64 ]]  _archbits=64
-[[ $CARCH == i686 ]]  _archbits=32
-
-build() {
-cd $srcdir/dmd/src
-make -f posix.mak MODEL=$_archbits RELEASE=1
-
-cd $srcdir/druntime
-make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-cd $srcdir/phobos
-# will be in upstream in next release but making naming change as early as 
possible
-git apply $srcdir/soname.diff
-make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-cd $srcdir/tools
-
-# rdmd is used to buil others
-$srcdir/dmd/src/dmd -I../druntime/import -I../phobos 
-L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-rdmd rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$srcdir/dmd/src/dmd --build-only 
-I../druntime/import -I../phobos 
-L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-`basename 
$tool` $tool.d
-done
-}
-
-package_dmd() {
-pkgdesc=The D programming language reference compiler
-backup=('etc/dmd.conf')
-depends=('gcc')
-optdepends=('dtools: collection of useful utilities for development in D' 
'libphobos-devel: standard library, development package')
-provides=(d-compiler=$pkgver)
-license=('custom')
-backup=('etc/dmd.conf')
-
-install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
-
-mkdir -p $pkgdir/etc
-echo -e [Environment]\nDFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib 
-L-L/usr/lib32 -L--no-warn-search-mismatch -L--export-dynamic  
$pkgdir/etc/dmd.conf
-
-install -Dm644 $srcdir/dmd/docs/man/man1/dmd.1 
$pkgdir/usr/share/man/man1/dmd.1
-install -Dm644 $srcdir/dmd/docs/man/man1/dmd.conf.5 
$pkgdir/usr/share/man/man5/dmd.conf.5
-
-install -Dm644 $srcdir/dmd/src/backendlicense.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
-install -Dm644 $srcdir/dmd/src/gpl.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.1
-install -Dm644 $srcdir/dmd/src/artistic.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.2
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-
-mkdir -p $pkgdir/usr/share/d/samples/
-cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
-
-find $pkgdir/usr -type f | xargs chmod 0644
-chmod 755 $pkgdir/usr/bin/*
-}
-
-package_libphobos-devel() {
-pkgdesc=The Phobos standard library for D programming language. Modules 
and static library.
-depends=(dmd)
-provides=(d-runtime=$pkgver d-stdlib=$pkgver)
-license=(custom)
-
-install -Dm644 
$srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a 
$pkgdir/usr/lib/libphobos2.a
-
-mkdir -p $pkgdir/usr/include/dlang/dmd
-cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
-cp -r $srcdir/druntime/import/* $pkgdir/usr/include/dlang/dmd/
-
-find $pkgdir/usr -type 

[arch-commits] Commit in (haveged)

2013-11-06 Thread Bartłomiej Piotrowski
Date: Wednesday, November 6, 2013 @ 12:29:13
  Author: bpiotrowski
Revision: 100586

community2extra: Moving haveged from community to extra

Deleted:
  haveged/



[arch-commits] Commit in (6 files)

2013-11-06 Thread Bartłomiej Piotrowski
Date: Wednesday, November 6, 2013 @ 12:28:46
  Author: bpiotrowski
Revision: 199015

community2extra: Moving haveged from community to extra

Added:
  haveged/
  haveged/repos/
  haveged/trunk/
  haveged/trunk/PKGBUILD
  haveged/trunk/cleanexit.patch
  haveged/trunk/service

-+
 PKGBUILD|   39 +++
 cleanexit.patch |   21 +
 service |   11 +++
 3 files changed, 71 insertions(+)

Added: haveged/trunk/PKGBUILD
===
--- haveged/trunk/PKGBUILD  (rev 0)
+++ haveged/trunk/PKGBUILD  2013-11-06 11:28:46 UTC (rev 199015)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
+# Contributor: kfgz kfgz at interia dot pl
+# Contributor: pootzko pootzko at gmail dot com
+
+pkgname=haveged
+pkgver=1.7.c
+_pkgver=${pkgver/.c/c}
+pkgrel=3
+pkgdesc='Entropy harvesting daemon using CPU timings'
+arch=('i686' 'x86_64')
+url='http://www.issihosts.com/haveged'
+license=('GPL')
+depends=('glibc')
+source=($url/$pkgname-$_pkgver.tar.gz
+service cleanexit.patch)
+sha256sums=('40397eded96fc0d624a6a81c8e888ab023e46f3114f1ee64e645531bf121'
+'badf8ceb5484d45888a089fabdfba5f44f6ec2930bca203c50200051a4d83e12'
+'be896659dd96cb85915ac5a9c2bd8d81d1ff348508362d1b71d64b207f69fa5c')
+
+prepare() {
+  cd $pkgname-$_pkgver
+  patch -Np1 -i ../cleanexit.patch
+}
+
+build() {
+  cd $pkgname-$_pkgver
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  rm -rf $pkgdir/etc/init.d
+  install -D -m644 $srcdir/service \
+$pkgdir/usr/lib/systemd/system/haveged.service
+}


Property changes on: haveged/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haveged/trunk/cleanexit.patch
===
--- haveged/trunk/cleanexit.patch   (rev 0)
+++ haveged/trunk/cleanexit.patch   2013-11-06 11:28:46 UTC (rev 199015)
@@ -0,0 +1,21 @@
+diff -u -r haveged-1.7c/src/haveged.c haveged-1.7c-cleanexit/src/haveged.c
+--- haveged-1.7c/src/haveged.c 2013-01-12 19:20:04.0 +0100
 haveged-1.7c-cleanexit/src/haveged.c   2013-11-05 22:40:22.202935493 
+0100
+@@ -642,7 +642,16 @@
+ static void tidy_exit(   /* OUT: nothing  */
+int signum)   /* IN: signal number */
+ {
+-   error_exit(Stopping due to signal %d\n, signum);
++#ifndef NO_DAEMON
++   if (params-detached!=0) {
++  unlink(params-pid_file);
++  syslog(LOG_INFO, %s Stopping due to signal %d, params-daemon, 
signum);
++  }
++   else
++#endif
++  fprintf(stderr, %s Stopping due to signal %d\n, params-daemon, 
signum);
++   havege_destroy(handle);
++   exit(0);
+ }
+ /**
+  * send usage display to stderr

Added: haveged/trunk/service
===
--- haveged/trunk/service   (rev 0)
+++ haveged/trunk/service   2013-11-06 11:28:46 UTC (rev 199015)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Entropy Harvesting Daemon
+Documentation=man:haveged(8)
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/haveged -w 1024 -v 1
+PIDFile=/var/run/haveged.pid
+
+[Install]
+WantedBy=multi-user.target



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

2013-11-06 Thread Bartłomiej Piotrowski
Date: Wednesday, November 6, 2013 @ 12:28:54
  Author: bpiotrowski
Revision: 199016

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

Added:
  haveged/repos/extra-i686/
  haveged/repos/extra-i686/PKGBUILD
(from rev 199015, haveged/trunk/PKGBUILD)
  haveged/repos/extra-i686/cleanexit.patch
(from rev 199015, haveged/trunk/cleanexit.patch)
  haveged/repos/extra-i686/service
(from rev 199015, haveged/trunk/service)
  haveged/repos/extra-x86_64/
  haveged/repos/extra-x86_64/PKGBUILD
(from rev 199015, haveged/trunk/PKGBUILD)
  haveged/repos/extra-x86_64/cleanexit.patch
(from rev 199015, haveged/trunk/cleanexit.patch)
  haveged/repos/extra-x86_64/service
(from rev 199015, haveged/trunk/service)

--+
 extra-i686/PKGBUILD  |   39 +++
 extra-i686/cleanexit.patch   |   21 +
 extra-i686/service   |   11 +++
 extra-x86_64/PKGBUILD|   39 +++
 extra-x86_64/cleanexit.patch |   21 +
 extra-x86_64/service |   11 +++
 6 files changed, 142 insertions(+)

Copied: haveged/repos/extra-i686/PKGBUILD (from rev 199015, 
haveged/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-06 11:28:54 UTC (rev 199016)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
+# Contributor: kfgz kfgz at interia dot pl
+# Contributor: pootzko pootzko at gmail dot com
+
+pkgname=haveged
+pkgver=1.7.c
+_pkgver=${pkgver/.c/c}
+pkgrel=3
+pkgdesc='Entropy harvesting daemon using CPU timings'
+arch=('i686' 'x86_64')
+url='http://www.issihosts.com/haveged'
+license=('GPL')
+depends=('glibc')
+source=($url/$pkgname-$_pkgver.tar.gz
+service cleanexit.patch)
+sha256sums=('40397eded96fc0d624a6a81c8e888ab023e46f3114f1ee64e645531bf121'
+'badf8ceb5484d45888a089fabdfba5f44f6ec2930bca203c50200051a4d83e12'
+'be896659dd96cb85915ac5a9c2bd8d81d1ff348508362d1b71d64b207f69fa5c')
+
+prepare() {
+  cd $pkgname-$_pkgver
+  patch -Np1 -i ../cleanexit.patch
+}
+
+build() {
+  cd $pkgname-$_pkgver
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  rm -rf $pkgdir/etc/init.d
+  install -D -m644 $srcdir/service \
+$pkgdir/usr/lib/systemd/system/haveged.service
+}

Copied: haveged/repos/extra-i686/cleanexit.patch (from rev 199015, 
haveged/trunk/cleanexit.patch)
===
--- extra-i686/cleanexit.patch  (rev 0)
+++ extra-i686/cleanexit.patch  2013-11-06 11:28:54 UTC (rev 199016)
@@ -0,0 +1,21 @@
+diff -u -r haveged-1.7c/src/haveged.c haveged-1.7c-cleanexit/src/haveged.c
+--- haveged-1.7c/src/haveged.c 2013-01-12 19:20:04.0 +0100
 haveged-1.7c-cleanexit/src/haveged.c   2013-11-05 22:40:22.202935493 
+0100
+@@ -642,7 +642,16 @@
+ static void tidy_exit(   /* OUT: nothing  */
+int signum)   /* IN: signal number */
+ {
+-   error_exit(Stopping due to signal %d\n, signum);
++#ifndef NO_DAEMON
++   if (params-detached!=0) {
++  unlink(params-pid_file);
++  syslog(LOG_INFO, %s Stopping due to signal %d, params-daemon, 
signum);
++  }
++   else
++#endif
++  fprintf(stderr, %s Stopping due to signal %d\n, params-daemon, 
signum);
++   havege_destroy(handle);
++   exit(0);
+ }
+ /**
+  * send usage display to stderr

Copied: haveged/repos/extra-i686/service (from rev 199015, 
haveged/trunk/service)
===
--- extra-i686/service  (rev 0)
+++ extra-i686/service  2013-11-06 11:28:54 UTC (rev 199016)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Entropy Harvesting Daemon
+Documentation=man:haveged(8)
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/haveged -w 1024 -v 1
+PIDFile=/var/run/haveged.pid
+
+[Install]
+WantedBy=multi-user.target

Copied: haveged/repos/extra-x86_64/PKGBUILD (from rev 199015, 
haveged/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-06 11:28:54 UTC (rev 199016)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
+# Contributor: kfgz kfgz at interia dot pl
+# Contributor: pootzko pootzko at gmail dot com
+
+pkgname=haveged
+pkgver=1.7.c
+_pkgver=${pkgver/.c/c}
+pkgrel=3
+pkgdesc='Entropy harvesting daemon using CPU timings'
+arch=('i686' 'x86_64')
+url='http://www.issihosts.com/haveged'
+license=('GPL')
+depends=('glibc')
+source=($url/$pkgname-$_pkgver.tar.gz
+service cleanexit.patch)
+sha256sums=('40397eded96fc0d624a6a81c8e888ab023e46f3114f1ee64e645531bf121'
+  

[arch-commits] Commit in (6 files)

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 13:00:27
  Author: arodseth
Revision: 100587

Moving prolog to [community]

Added:
  swi-prolog/
  swi-prolog/repos/
  swi-prolog/repos/community-i686/
  swi-prolog/repos/community-x86_64/
  swi-prolog/trunk/
  swi-prolog/trunk/PKGBUILD

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

Added: swi-prolog/trunk/PKGBUILD
===
--- swi-prolog/trunk/PKGBUILD   (rev 0)
+++ swi-prolog/trunk/PKGBUILD   2013-11-06 12:00:27 UTC (rev 100587)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jachym Barvinek jach...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: John Proctor jproc...@prium.net
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=swi-prolog
+pkgver=6.4.1
+pkgrel=2
+pkgdesc='Prolog environment'
+arch=('x86_64' 'i686')
+url='http://www.swi-prolog.org/'
+license=('GPL' 'LGPL')
+depends=('gmp' 'readline' 'openssl' 'libarchive')
+makedepends=('libxft' 'libjpeg' 'unixodbc' 'libxpm' 'libxinerama')
+optdepends=('unixodbc: for using the odbc4pl library'
+'libjpeg: for using the pl2xpce library'
+'libxpm: for using the pl2xpce library'
+'libxinerama: for using the pl2xpce library'
+'libxft: for using the pl2xpce library')
+options=('!makeflags')
+source=(http://www.swi-prolog.org/download/stable/src/pl-$pkgver.tar.gz;)
+sha256sums=('48439529784a855ce9246419b51ebe5388acc28d1483a947c6a0397c3dc7f8eb')
+
+build() {
+  cd pl-$pkgver
+
+  ./configure --prefix=/usr --with-world --enable-shared
+  make
+}
+
+check() {
+  make -C pl-$pkgver check || true
+}
+
+package() {
+  make -C pl-$pkgver DESTDIR=$pkgdir install
+
+  # fix https://bugs.archlinux.org/task/20873
+  chmod +x $pkgdir/usr/lib/swipl-$pkgver/library/dialect/sicstus/swipl-lfr.pl
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 13:00:42
  Author: arodseth
Revision: 100589

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

Added:
  swi-prolog/repos/community-i686/PKGBUILD
(from rev 100587, swi-prolog/trunk/PKGBUILD)
  swi-prolog/repos/community-x86_64/PKGBUILD
(from rev 100587, swi-prolog/trunk/PKGBUILD)

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

Copied: swi-prolog/repos/community-i686/PKGBUILD (from rev 100587, 
swi-prolog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 12:00:42 UTC (rev 100589)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jachym Barvinek jach...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: John Proctor jproc...@prium.net
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=swi-prolog
+pkgver=6.4.1
+pkgrel=2
+pkgdesc='Prolog environment'
+arch=('x86_64' 'i686')
+url='http://www.swi-prolog.org/'
+license=('GPL' 'LGPL')
+depends=('gmp' 'readline' 'openssl' 'libarchive')
+makedepends=('libxft' 'libjpeg' 'unixodbc' 'libxpm' 'libxinerama')
+optdepends=('unixodbc: for using the odbc4pl library'
+'libjpeg: for using the pl2xpce library'
+'libxpm: for using the pl2xpce library'
+'libxinerama: for using the pl2xpce library'
+'libxft: for using the pl2xpce library')
+options=('!makeflags')
+source=(http://www.swi-prolog.org/download/stable/src/pl-$pkgver.tar.gz;)
+sha256sums=('48439529784a855ce9246419b51ebe5388acc28d1483a947c6a0397c3dc7f8eb')
+
+build() {
+  cd pl-$pkgver
+
+  ./configure --prefix=/usr --with-world --enable-shared
+  make
+}
+
+check() {
+  make -C pl-$pkgver check || true
+}
+
+package() {
+  make -C pl-$pkgver DESTDIR=$pkgdir install
+
+  # fix https://bugs.archlinux.org/task/20873
+  chmod +x $pkgdir/usr/lib/swipl-$pkgver/library/dialect/sicstus/swipl-lfr.pl
+}
+
+# vim:set ts=2 sw=2 et:

Copied: swi-prolog/repos/community-x86_64/PKGBUILD (from rev 100587, 
swi-prolog/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 12:00:42 UTC (rev 100589)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jachym Barvinek jach...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: John Proctor jproc...@prium.net
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=swi-prolog
+pkgver=6.4.1
+pkgrel=2
+pkgdesc='Prolog environment'
+arch=('x86_64' 'i686')
+url='http://www.swi-prolog.org/'
+license=('GPL' 'LGPL')
+depends=('gmp' 'readline' 'openssl' 'libarchive')
+makedepends=('libxft' 'libjpeg' 'unixodbc' 'libxpm' 'libxinerama')
+optdepends=('unixodbc: for using the odbc4pl library'
+'libjpeg: for using the pl2xpce library'
+'libxpm: for using the pl2xpce library'
+'libxinerama: for using the pl2xpce library'
+'libxft: for using the pl2xpce library')
+options=('!makeflags')
+source=(http://www.swi-prolog.org/download/stable/src/pl-$pkgver.tar.gz;)
+sha256sums=('48439529784a855ce9246419b51ebe5388acc28d1483a947c6a0397c3dc7f8eb')
+
+build() {
+  cd pl-$pkgver
+
+  ./configure --prefix=/usr --with-world --enable-shared
+  make
+}
+
+check() {
+  make -C pl-$pkgver check || true
+}
+
+package() {
+  make -C pl-$pkgver DESTDIR=$pkgdir install
+
+  # fix https://bugs.archlinux.org/task/20873
+  chmod +x $pkgdir/usr/lib/swipl-$pkgver/library/dialect/sicstus/swipl-lfr.pl
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:00:40
  Author: foutrelis
Revision: 100588

upgpkg: frostwire 5.6.7-1

New upstream release.

Modified:
  frostwire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 12:00:27 UTC (rev 100587)
+++ PKGBUILD2013-11-06 12:00:40 UTC (rev 100588)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras evange...@foutrelis.com
 
 pkgname=frostwire
-pkgver=5.6.6
+pkgver=5.6.7
 pkgrel=1
 pkgdesc=BitTorrent client with integrated search
 arch=('any')
@@ -15,7 +15,7 @@
 frostwire.sh
 icons.tar.gz
 java-version-detection.patch)
-sha256sums=('4a9e135a4a0c8028b692c8245b7796214d21618f106512393c2867cafbaa8bb0'
+sha256sums=('3992577db7b62b1a7c4175e199d6c5066beed8d5a08d87c183376f118a85e64e'
 '9a05e5f1005856cd67f6e01fc499d1b64bc372bf3a390e412359196f65cc0ea6'
 '00e425501b33b7213a337314a5035d52459f743f623f9f37abbc60d6e56a2186'
 '50828981c20273c86ef7c05f801d0fcec28253a544f95e231db35402c738a62e')



[arch-commits] Commit in frostwire/repos/community-any (10 files)

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:00:52
  Author: foutrelis
Revision: 100590

archrelease: copy trunk to community-any

Added:
  frostwire/repos/community-any/PKGBUILD
(from rev 100589, frostwire/trunk/PKGBUILD)
  frostwire/repos/community-any/frostwire.install
(from rev 100589, frostwire/trunk/frostwire.install)
  frostwire/repos/community-any/frostwire.sh
(from rev 100589, frostwire/trunk/frostwire.sh)
  frostwire/repos/community-any/icons.tar.gz
(from rev 100589, frostwire/trunk/icons.tar.gz)
  frostwire/repos/community-any/java-version-detection.patch
(from rev 100589, frostwire/trunk/java-version-detection.patch)
Deleted:
  frostwire/repos/community-any/PKGBUILD
  frostwire/repos/community-any/frostwire.install
  frostwire/repos/community-any/frostwire.sh
  frostwire/repos/community-any/icons.tar.gz
  frostwire/repos/community-any/java-version-detection.patch

--+
 PKGBUILD |   84 -
 frostwire.install|   28 ++---
 frostwire.sh |6 +-
 java-version-detection.patch |   22 +-
 4 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-06 12:00:42 UTC (rev 100589)
+++ PKGBUILD2013-11-06 12:00:52 UTC (rev 100590)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-
-pkgname=frostwire
-pkgver=5.6.6
-pkgrel=1
-pkgdesc=BitTorrent client with integrated search
-arch=('any')
-url=http://www.frostwire.com;
-license=('GPL')
-depends=('java-runtime' 'mplayer' 'hicolor-icon-theme' 'desktop-file-utils'
- 'gtk-update-icon-cache')
-install=frostwire.install
-source=(http://dl.frostwire.com/$pkgname/$pkgver/$pkgname-$pkgver.noarch.tar.gz
-frostwire.sh
-icons.tar.gz
-java-version-detection.patch)
-sha256sums=('4a9e135a4a0c8028b692c8245b7796214d21618f106512393c2867cafbaa8bb0'
-'9a05e5f1005856cd67f6e01fc499d1b64bc372bf3a390e412359196f65cc0ea6'
-'00e425501b33b7213a337314a5035d52459f743f623f9f37abbc60d6e56a2186'
-'50828981c20273c86ef7c05f801d0fcec28253a544f95e231db35402c738a62e')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver.noarch
-
-  # FS#15544 (Java version detection fails when _JAVA_OPTIONS is set)
-  patch -Np0 -i $srcdir/java-version-detection.patch
-
-  install -d $pkgdir/usr/share/$pkgname
-  cp -r * $pkgdir/usr/share/$pkgname
-  cp -r $srcdir/icons $pkgdir/usr/share
-
-  install -D $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
-  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $srcdir/icons/hicolor/16x16/apps/$pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-
-  # Remove uneeded files
-  rm -rf 
$pkgdir/usr/share/frostwire/{runFrostwireOSX.sh,unpack200.py,root/{.svn,magnet10/.svn}}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: frostwire/repos/community-any/PKGBUILD (from rev 100589, 
frostwire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-06 12:00:52 UTC (rev 100590)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+
+pkgname=frostwire
+pkgver=5.6.7
+pkgrel=1
+pkgdesc=BitTorrent client with integrated search
+arch=('any')
+url=http://www.frostwire.com;
+license=('GPL')
+depends=('java-runtime' 'mplayer' 'hicolor-icon-theme' 'desktop-file-utils'
+ 'gtk-update-icon-cache')
+install=frostwire.install
+source=(http://dl.frostwire.com/$pkgname/$pkgver/$pkgname-$pkgver.noarch.tar.gz
+frostwire.sh
+icons.tar.gz
+java-version-detection.patch)
+sha256sums=('3992577db7b62b1a7c4175e199d6c5066beed8d5a08d87c183376f118a85e64e'
+'9a05e5f1005856cd67f6e01fc499d1b64bc372bf3a390e412359196f65cc0ea6'
+'00e425501b33b7213a337314a5035d52459f743f623f9f37abbc60d6e56a2186'
+'50828981c20273c86ef7c05f801d0fcec28253a544f95e231db35402c738a62e')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver.noarch
+
+  # FS#15544 (Java version detection fails when _JAVA_OPTIONS is set)
+  patch -Np0 -i $srcdir/java-version-detection.patch
+
+  install -d $pkgdir/usr/share/$pkgname
+  cp -r * $pkgdir/usr/share/$pkgname
+  cp -r $srcdir/icons $pkgdir/usr/share
+
+  install -D $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 $srcdir/icons/hicolor/16x16/apps/$pkgname.png \
+$pkgdir/usr/share/pixmaps/$pkgname.png
+
+  # Remove uneeded files
+  rm -rf 
$pkgdir/usr/share/frostwire/{runFrostwireOSX.sh,unpack200.py,root/{.svn,magnet10/.svn}}
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: frostwire.install
===
--- frostwire.install   2013-11-06 12:00:42 UTC (rev 100589)
+++ frostwire.install   

[arch-commits] Commit in geoip-database/repos/extra-any (PKGBUILD PKGBUILD)

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:06:49
  Author: foutrelis
Revision: 199018

archrelease: copy trunk to extra-any

Added:
  geoip-database/repos/extra-any/PKGBUILD
(from rev 199017, geoip-database/trunk/PKGBUILD)
Deleted:
  geoip-database/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-06 12:06:41 UTC (rev 199017)
+++ PKGBUILD2013-11-06 12:06:49 UTC (rev 199018)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-
-pkgname=geoip-database
-pkgver=20130919
-pkgrel=1
-pkgdesc=GeoLite country geolocation database compiled by MaxMind
-arch=('any')
-url=http://www.maxmind.com/app/ip-location;
-license=('custom:OPEN DATA LICENSE')
-source=(GeoIP-$pkgver.dat.gz::http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
-
GeoIPv6-$pkgver.dat.gz::http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
-http://geolite.maxmind.com/download/geoip/database/LICENSE.txt)
-noextract=(GeoIP-$pkgver.dat.gz
-   GeoIPv6-$pkgver.dat.gz)
-sha256sums=('f90161d9b13ab8e3cef77bf3645f2d394dc7e0c7df381c09927564a703064a71'
-'1a141c9c122dad5d93ee614e5309a6d82d7f43ad7ded9fbe4e2e7e68c3c28980'
-'83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
-
-prepare() {
-  cd $srcdir
-
-  for _database_name in GeoIP GeoIPv6; do
-gunzip -c $_database_name-$pkgver.dat.gz $_database_name.dat
-  done
-}
-
-check() {
-  cd $srcdir
-
-  for _database in {GeoIP,GeoIPv6}.dat; do
-if ! grep -q 'MaxMind Inc All Rights Reserved' $_database; then
-  error Copyright notice is missing from $_database; something is fishy!
-  return 1
-fi
-  done
-}
-
-package() {
-  cd $srcdir
-
-  install -d $pkgdir/usr/share/GeoIP
-  install -m644 -t $pkgdir/usr/share/GeoIP GeoIP.dat GeoIPv6.dat
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip-database/repos/extra-any/PKGBUILD (from rev 199017, 
geoip-database/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-06 12:06:49 UTC (rev 199018)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+
+pkgname=geoip-database
+pkgver=20131106
+pkgrel=1
+pkgdesc=GeoLite country geolocation database compiled by MaxMind
+arch=('any')
+url=http://www.maxmind.com/app/ip-location;
+license=('custom:OPEN DATA LICENSE')
+source=(GeoIP-$pkgver.dat.gz::http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
+
GeoIPv6-$pkgver.dat.gz::http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
+http://geolite.maxmind.com/download/geoip/database/LICENSE.txt)
+noextract=(GeoIP-$pkgver.dat.gz
+   GeoIPv6-$pkgver.dat.gz)
+sha256sums=('025e516ec14a8a705fb479880ffce43f9fdb8869666d522c38c791069f4b0acf'
+'4538364e5e97c8b23e15427e381a5a814134153f6de96cfcce4e7f0d1732164f'
+'83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
+
+prepare() {
+  cd $srcdir
+
+  for _database_name in GeoIP GeoIPv6; do
+gunzip -c $_database_name-$pkgver.dat.gz $_database_name.dat
+  done
+}
+
+check() {
+  cd $srcdir
+
+  for _database in {GeoIP,GeoIPv6}.dat; do
+if ! grep -q 'MaxMind Inc All Rights Reserved' $_database; then
+  error Copyright notice is missing from $_database; something is fishy!
+  return 1
+fi
+  done
+}
+
+package() {
+  cd $srcdir
+
+  install -d $pkgdir/usr/share/GeoIP
+  install -m644 -t $pkgdir/usr/share/GeoIP GeoIP.dat GeoIPv6.dat
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:06:41
  Author: foutrelis
Revision: 199017

upgpkg: geoip-database 20131106-1

New upstream release.

Modified:
  geoip-database/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 11:28:54 UTC (rev 199016)
+++ PKGBUILD2013-11-06 12:06:41 UTC (rev 199017)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras evange...@foutrelis.com
 
 pkgname=geoip-database
-pkgver=20130919
+pkgver=20131106
 pkgrel=1
 pkgdesc=GeoLite country geolocation database compiled by MaxMind
 arch=('any')
@@ -13,8 +13,8 @@
 http://geolite.maxmind.com/download/geoip/database/LICENSE.txt)
 noextract=(GeoIP-$pkgver.dat.gz
GeoIPv6-$pkgver.dat.gz)
-sha256sums=('f90161d9b13ab8e3cef77bf3645f2d394dc7e0c7df381c09927564a703064a71'
-'1a141c9c122dad5d93ee614e5309a6d82d7f43ad7ded9fbe4e2e7e68c3c28980'
+sha256sums=('025e516ec14a8a705fb479880ffce43f9fdb8869666d522c38c791069f4b0acf'
+'4538364e5e97c8b23e15427e381a5a814134153f6de96cfcce4e7f0d1732164f'
 '83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
 
 prepare() {



[arch-commits] Commit in (6 files)

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 13:13:30
  Author: arodseth
Revision: 100591

Useful module for using Prolog from Python

Added:
  python2-pyswip/
  python2-pyswip/repos/
  python2-pyswip/repos/community-i686/
  python2-pyswip/repos/community-x86_64/
  python2-pyswip/trunk/
  python2-pyswip/trunk/PKGBUILD

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

Added: python2-pyswip/trunk/PKGBUILD
===
--- python2-pyswip/trunk/PKGBUILD   (rev 0)
+++ python2-pyswip/trunk/PKGBUILD   2013-11-06 12:13:30 UTC (rev 100591)
@@ -0,0 +1,35 @@
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: p2k patrick.schnei...@uni-ulm.de
+
+pkgname=python2-pyswip
+pkgver=0.2.3
+pkgrel=2
+pkgdesc='Python wrapper for SWI-Prolog'
+arch=('x86_64' 'i686')
+url='http://code.google.com/p/pyswip/'
+license=('MIT')
+source=(http://pyswip.googlecode.com/files/pyswip-$pkgver.tar.gz;)
+depends=('python2' 'swi-prolog')
+makedepends=('setuptools')
+sha256sums=('dfaf68aeb04c9388d5f11311cacaab95f9a72a73f7a0595ac477e17545353b9d')
+
+build() {
+  cd pyswip-$pkgver
+
+  python2 setup.py build
+}
+
+check() {
+  python2 setup.py check
+}
+
+package() {
+  cd pyswip-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+  install -d $pkgdir/usr/share/$pkgname
+  cp -R README examples $pkgdir/usr/share/doc/$pkgname
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:18:10
  Author: foutrelis
Revision: 100592

upgpkg: virtualbox-modules 4.3.2-3

Linux 3.12 rebuild.

Modified:
  virtualbox-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 12:13:30 UTC (rev 100591)
+++ PKGBUILD2013-11-06 12:18:10 UTC (rev 100592)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules
 pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
 pkgver=4.3.2
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
@@ -33,7 +33,7 @@
 package_virtualbox-host-modules(){
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux=3.11' 'linux3.12')
+  depends=('linux=3.12' 'linux3.13')
   replaces=('virtualbox-modules')
   conflicts=('virtualbox-modules')
   install=virtualbox-host-modules.install
@@ -60,3 +60,4 @@
 }
 
 # vim:set ts=2 sw=2 et:
+md5sums=()



[arch-commits] Commit in virtualbox-modules/repos (16 files)

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:18:25
  Author: foutrelis
Revision: 100593

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

Added:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
(from rev 100592, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-i686/build.sh
(from rev 100592, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
(from rev 100592, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
(from rev 100592, virtualbox-modules/trunk/virtualbox-host-modules.install)
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 100592, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-x86_64/build.sh
(from rev 100592, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
(from rev 100592, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install
(from rev 100592, virtualbox-modules/trunk/virtualbox-host-modules.install)
Deleted:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
  virtualbox-modules/repos/community-testing-i686/build.sh
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
  virtualbox-modules/repos/community-testing-x86_64/build.sh
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install

---+
 /PKGBUILD |  126 
 /build.sh |  120 +++
 /virtualbox-guest-modules.install |   42 
 /virtualbox-host-modules.install  |   46 
 community-testing-i686/PKGBUILD   |   62 -
 community-testing-i686/build.sh   |   60 -
 community-testing-i686/virtualbox-guest-modules.install   |   21 --
 community-testing-i686/virtualbox-host-modules.install|   23 --
 community-testing-x86_64/PKGBUILD |   62 -
 community-testing-x86_64/build.sh |   60 -
 community-testing-x86_64/virtualbox-guest-modules.install |   21 --
 community-testing-x86_64/virtualbox-host-modules.install  |   23 --
 12 files changed, 334 insertions(+), 332 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-11-06 12:18:10 UTC (rev 100592)
+++ community-testing-i686/PKGBUILD 2013-11-06 12:18:25 UTC (rev 100593)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.3.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux=3.12' 'linux3.13'
- 'linux-headers=3.12' 'linux-headers3.13'
- virtualbox-host-dkms=$pkgver
- virtualbox-guest-dkms=$pkgver)
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.12-ARCH
-
-build() {
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  # dkms need modification to be run as user
-  cp -r /var/lib/dkms .
-  echo dkms_tree='$srcdir/dkms'  dkms.conf
-  # build host modules
-  msg2 'Host modules'
-  dkms --dkmsframework dkms.conf build vboxhost/$pkgver -k $_kernver
-  # build guest modules
-  msg2 'Guest modules'
-  dkms --dkmsframework dkms.conf build vboxguest/$pkgver -k $_kernver
-}
-
-package_virtualbox-host-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux=3.11' 'linux3.12')
-  replaces=('virtualbox-modules')
-  conflicts=('virtualbox-modules')
-  install=virtualbox-host-modules.install
-
-  cd dkms/vboxhost/$pkgver/$_kernver/$CARCH/module
-  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
-  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
-  find $pkgdir -name '*.ko' -exec gzip -9 {} +
-}
-
-package_virtualbox-guest-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux=3.12' 'linux3.13')
-  replaces=('virtualbox-archlinux-modules')
-  conflicts=('virtualbox-archlinux-modules')
-  

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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:54:33
  Author: foutrelis
Revision: 100594

upgpkg: virtualbox-modules 4.3.2-4

Linux 3.12 rebuild.

Modified:
  virtualbox-modules/trunk/PKGBUILD
  virtualbox-modules/trunk/virtualbox-guest-modules.install
  virtualbox-modules/trunk/virtualbox-host-modules.install

--+
 PKGBUILD |2 +-
 virtualbox-guest-modules.install |2 +-
 virtualbox-host-modules.install  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 12:18:25 UTC (rev 100593)
+++ PKGBUILD2013-11-06 12:54:33 UTC (rev 100594)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules
 pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
 pkgver=4.3.2
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')

Modified: virtualbox-guest-modules.install
===
--- virtualbox-guest-modules.install2013-11-06 12:18:25 UTC (rev 100593)
+++ virtualbox-guest-modules.install2013-11-06 12:54:33 UTC (rev 100594)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-3.11-ARCH
+  EXTRAMODULES=extramodules-3.12-ARCH
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 

Modified: virtualbox-host-modules.install
===
--- virtualbox-host-modules.install 2013-11-06 12:18:25 UTC (rev 100593)
+++ virtualbox-host-modules.install 2013-11-06 12:54:33 UTC (rev 100594)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-3.11-ARCH
+  EXTRAMODULES=extramodules-3.12-ARCH
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 



[arch-commits] Commit in virtualbox-modules/repos (16 files)

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 13:54:48
  Author: foutrelis
Revision: 100595

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

Added:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
(from rev 100594, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-i686/build.sh
(from rev 100594, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
(from rev 100594, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
(from rev 100594, virtualbox-modules/trunk/virtualbox-host-modules.install)
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 100594, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-x86_64/build.sh
(from rev 100594, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
(from rev 100594, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install
(from rev 100594, virtualbox-modules/trunk/virtualbox-host-modules.install)
Deleted:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
  virtualbox-modules/repos/community-testing-i686/build.sh
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
  virtualbox-modules/repos/community-testing-x86_64/build.sh
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install

---+
 /PKGBUILD |  126 
 /build.sh |  120 +++
 /virtualbox-guest-modules.install |   42 
 /virtualbox-host-modules.install  |   46 
 community-testing-i686/PKGBUILD   |   63 --
 community-testing-i686/build.sh   |   60 -
 community-testing-i686/virtualbox-guest-modules.install   |   21 --
 community-testing-i686/virtualbox-host-modules.install|   23 --
 community-testing-x86_64/PKGBUILD |   63 --
 community-testing-x86_64/build.sh |   60 -
 community-testing-x86_64/virtualbox-guest-modules.install |   21 --
 community-testing-x86_64/virtualbox-host-modules.install  |   23 --
 12 files changed, 334 insertions(+), 334 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-11-06 12:54:33 UTC (rev 100594)
+++ community-testing-i686/PKGBUILD 2013-11-06 12:54:48 UTC (rev 100595)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.3.2
-pkgrel=3
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux=3.12' 'linux3.13'
- 'linux-headers=3.12' 'linux-headers3.13'
- virtualbox-host-dkms=$pkgver
- virtualbox-guest-dkms=$pkgver)
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.12-ARCH
-
-build() {
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  # dkms need modification to be run as user
-  cp -r /var/lib/dkms .
-  echo dkms_tree='$srcdir/dkms'  dkms.conf
-  # build host modules
-  msg2 'Host modules'
-  dkms --dkmsframework dkms.conf build vboxhost/$pkgver -k $_kernver
-  # build guest modules
-  msg2 'Guest modules'
-  dkms --dkmsframework dkms.conf build vboxguest/$pkgver -k $_kernver
-}
-
-package_virtualbox-host-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux=3.12' 'linux3.13')
-  replaces=('virtualbox-modules')
-  conflicts=('virtualbox-modules')
-  install=virtualbox-host-modules.install
-
-  cd dkms/vboxhost/$pkgver/$_kernver/$CARCH/module
-  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
-  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
-  find $pkgdir -name '*.ko' -exec gzip -9 {} +
-}
-
-package_virtualbox-guest-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux=3.12' 'linux3.13')
-  replaces=('virtualbox-archlinux-modules')
-  conflicts=('virtualbox-archlinux-modules')
-  

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

2013-11-06 Thread Михаил Страшун
Date: Wednesday, November 6, 2013 @ 14:03:24
  Author: dicebot
Revision: 100596

ldc description typo

Modified:
  ldc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 12:54:48 UTC (rev 100595)
+++ PKGBUILD2013-11-06 13:03:24 UTC (rev 100596)
@@ -35,7 +35,7 @@
 }
 
 package_ldc() {
-optdepends=(liblphobos-devel: stadard library, static one + imports, LDC 
version)
+optdepends=(liblphobos-devel: standard library, static one + imports, LDC 
version)
 backup=(etc/ldc2.conf
 etc/ldc2.rebuild.conf
)



[arch-commits] Commit in python2-pyswip (4 files)

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 14:12:16
  Author: arodseth
Revision: 100597

Minor changes

Added:
  python2-pyswip/repos/community-any/
Modified:
  python2-pyswip/trunk/PKGBUILD
Deleted:
  python2-pyswip/repos/community-i686/
  python2-pyswip/repos/community-x86_64/

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

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2013-11-06 13:03:24 UTC (rev 100596)
+++ trunk/PKGBUILD  2013-11-06 13:12:16 UTC (rev 100597)
@@ -5,7 +5,7 @@
 pkgver=0.2.3
 pkgrel=2
 pkgdesc='Python wrapper for SWI-Prolog'
-arch=('x86_64' 'i686')
+arch=('any')
 url='http://code.google.com/p/pyswip/'
 license=('MIT')
 source=(http://pyswip.googlecode.com/files/pyswip-$pkgver.tar.gz;)
@@ -20,6 +20,8 @@
 }
 
 check() {
+  cd pyswip-$pkgver
+
   python2 setup.py check
 }
 
@@ -27,9 +29,9 @@
   cd pyswip-$pkgver
 
   python2 setup.py install --prefix=/usr --root=$pkgdir
-  install -d $pkgdir/usr/share/$pkgname
+  install -d $pkgdir/usr/share/doc/$pkgname
   cp -R README examples $pkgdir/usr/share/doc/$pkgname
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-11-06 Thread Alexander Rødseth
Date: Wednesday, November 6, 2013 @ 14:16:10
  Author: arodseth
Revision: 100598

archrelease: copy trunk to community-any

Added:
  python2-pyswip/repos/community-any/PKGBUILD
(from rev 100597, python2-pyswip/trunk/PKGBUILD)

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

Copied: python2-pyswip/repos/community-any/PKGBUILD (from rev 100597, 
python2-pyswip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-06 13:16:10 UTC (rev 100598)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: p2k patrick.schnei...@uni-ulm.de
+
+pkgname=python2-pyswip
+pkgver=0.2.3
+pkgrel=2
+pkgdesc='Python wrapper for SWI-Prolog'
+arch=('any')
+url='http://code.google.com/p/pyswip/'
+license=('MIT')
+source=(http://pyswip.googlecode.com/files/pyswip-$pkgver.tar.gz;)
+depends=('python2' 'swi-prolog')
+makedepends=('setuptools')
+sha256sums=('dfaf68aeb04c9388d5f11311cacaab95f9a72a73f7a0595ac477e17545353b9d')
+
+build() {
+  cd pyswip-$pkgver
+
+  python2 setup.py build
+}
+
+check() {
+  cd pyswip-$pkgver
+
+  python2 setup.py check
+}
+
+package() {
+  cd pyswip-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+  install -d $pkgdir/usr/share/doc/$pkgname
+  cp -R README examples $pkgdir/usr/share/doc/$pkgname
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:20:48
  Author: spupykin
Revision: 100599

upgpkg: couchdb 1.5.0-1

upd

Modified:
  couchdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:16:10 UTC (rev 100598)
+++ PKGBUILD2013-11-06 13:20:48 UTC (rev 100599)
@@ -4,8 +4,8 @@
 # Contributor: Michael Fellinger m.fellin...@gmail.com
 
 pkgname=couchdb
-pkgver=1.4.0
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 pkgdesc=A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON
 arch=('i686' 'x86_64')
 url=http://couchdb.apache.org;
@@ -20,7 +20,7 @@
 
source=(http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz{,.asc}
couchdb.service
couchdb.tmpfiles)
-md5sums=('9d2ecad195f2991098a542a0904ec0a5'
+md5sums=('55a2f86469e0697817da8defee730f04'
  'SKIP'
  '8914a7ffc6745f94106d96206709acb4'
  '1e254ebe32eeb061be64193bafa35dbf')



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:21:19
  Author: spupykin
Revision: 100600

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

Added:
  couchdb/repos/community-i686/PKGBUILD
(from rev 100599, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-i686/couchdb.install
(from rev 100599, couchdb/trunk/couchdb.install)
  couchdb/repos/community-i686/couchdb.service
(from rev 100599, couchdb/trunk/couchdb.service)
  couchdb/repos/community-i686/couchdb.tmpfiles
(from rev 100599, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-x86_64/PKGBUILD
(from rev 100599, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-x86_64/couchdb.install
(from rev 100599, couchdb/trunk/couchdb.install)
  couchdb/repos/community-x86_64/couchdb.service
(from rev 100599, couchdb/trunk/couchdb.service)
  couchdb/repos/community-x86_64/couchdb.tmpfiles
(from rev 100599, couchdb/trunk/couchdb.tmpfiles)
Deleted:
  couchdb/repos/community-i686/PKGBUILD
  couchdb/repos/community-i686/couchdb.install
  couchdb/repos/community-i686/couchdb.service
  couchdb/repos/community-i686/couchdb.tmpfiles
  couchdb/repos/community-x86_64/PKGBUILD
  couchdb/repos/community-x86_64/couchdb.install
  couchdb/repos/community-x86_64/couchdb.service
  couchdb/repos/community-x86_64/couchdb.tmpfiles

---+
 /PKGBUILD |   94 
 /couchdb.install  |   44 
 /couchdb.service  |   24 +
 /couchdb.tmpfiles |2 
 community-i686/PKGBUILD   |   47 --
 community-i686/couchdb.install|   22 
 community-i686/couchdb.service|   12 
 community-i686/couchdb.tmpfiles   |1 
 community-x86_64/PKGBUILD |   47 --
 community-x86_64/couchdb.install  |   22 
 community-x86_64/couchdb.service  |   12 
 community-x86_64/couchdb.tmpfiles |1 
 12 files changed, 164 insertions(+), 164 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:20:48 UTC (rev 100599)
+++ community-i686/PKGBUILD 2013-11-06 13:21:19 UTC (rev 100600)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-# Contributor: Michael Fellinger m.fellin...@gmail.com
-
-pkgname=couchdb
-pkgver=1.4.0
-pkgrel=2
-pkgdesc=A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON
-arch=('i686' 'x86_64')
-url=http://couchdb.apache.org;
-license=('APACHE')
-depends=('icu' 'erlang-nox' 'js185' 'openssl' 'curl')
-makedepends=('autoconf-archive' 'git')
-install=couchdb.install
-backup=('etc/couchdb/local.ini'
-   'etc/conf.d/couchdb'
-   'etc/logrotate.d/couchdb')
-#source=(git://github.com/apache/couchdb.git#commit=8d7ab8b18dd20f8785e69f4420c6f93a2edbfa60
-source=(http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz{,.asc}
-   couchdb.service
-   couchdb.tmpfiles)
-md5sums=('9d2ecad195f2991098a542a0904ec0a5'
- 'SKIP'
- '8914a7ffc6745f94106d96206709acb4'
- '1e254ebe32eeb061be64193bafa35dbf')
-
-build() {
-  cd $srcdir/apache-couchdb-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var
-  make
-}
-
-package() {
-  cd $srcdir/apache-couchdb-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 etc/default/couchdb $pkgdir/etc/conf.d/couchdb
-  sed -i 's|\(COUCHDB_OPTIONS=\)|\1-p /var/run/couchdb/couchdb.pid|' 
$pkgdir/etc/conf.d/couchdb
-
-  rm -rf $pkgdir/etc/default/ $pkgdir/var/run
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm0644 $srcdir/$pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
-}

Copied: couchdb/repos/community-i686/PKGBUILD (from rev 100599, 
couchdb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:21:19 UTC (rev 100600)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+# Contributor: Michael Fellinger m.fellin...@gmail.com
+
+pkgname=couchdb
+pkgver=1.5.0
+pkgrel=1
+pkgdesc=A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON
+arch=('i686' 'x86_64')
+url=http://couchdb.apache.org;
+license=('APACHE')
+depends=('icu' 'erlang-nox' 'js185' 'openssl' 'curl')
+makedepends=('autoconf-archive' 'git')
+install=couchdb.install
+backup=('etc/couchdb/local.ini'
+   'etc/conf.d/couchdb'
+   'etc/logrotate.d/couchdb')
+#source=(git://github.com/apache/couchdb.git#commit=8d7ab8b18dd20f8785e69f4420c6f93a2edbfa60

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:22:07
  Author: spupykin
Revision: 100601

upgpkg: haskell-bytestring-show 0.3.5.4-6

upd

Modified:
  haskell-bytestring-show/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:21:19 UTC (rev 100600)
+++ PKGBUILD2013-11-06 13:22:07 UTC (rev 100601)
@@ -3,12 +3,13 @@
 
 pkgname=haskell-bytestring-show
 pkgver=0.3.5.4
-pkgrel=5
+pkgrel=6
 pkgdesc=Efficient conversion of values into readable byte strings.
 url=http://hackage.haskell.org/package/bytestring-show;
 license=(BSD3)
 arch=('i686' 'x86_64')
 depends=(ghc)
+options=('staticlibs')
 install=${pkgname}.install
 
source=(http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz;)
 md5sums=('2a4ab243c4b6fffed1fc663975a9ec6d')



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:22:28
  Author: spupykin
Revision: 100603

upgpkg: haskell-hslogger 1.2.1-6

upd

Modified:
  haskell-hslogger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:22:23 UTC (rev 100602)
+++ PKGBUILD2013-11-06 13:22:28 UTC (rev 100603)
@@ -4,12 +4,13 @@
 
 pkgname=haskell-hslogger
 pkgver=1.2.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Versatile logging framework
 url=http://hackage.haskell.org/package/hslogger;
 license=('LGPL')
 arch=('i686' 'x86_64')
 depends=('ghc' 'haskell-mtl' 'haskell-network')
+options=('staticlibs')
 install=${pkgname}.install
 
source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
 md5sums=('d94e39cd6a262565cf0758a6ead74919')



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:22:42
  Author: spupykin
Revision: 100604

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

Added:
  haskell-hslogger/repos/community-i686/PKGBUILD
(from rev 100603, haskell-hslogger/trunk/PKGBUILD)
  haskell-hslogger/repos/community-i686/haskell-hslogger.install
(from rev 100603, haskell-hslogger/trunk/haskell-hslogger.install)
  haskell-hslogger/repos/community-x86_64/PKGBUILD
(from rev 100603, haskell-hslogger/trunk/PKGBUILD)
  haskell-hslogger/repos/community-x86_64/haskell-hslogger.install
(from rev 100603, haskell-hslogger/trunk/haskell-hslogger.install)
Deleted:
  haskell-hslogger/repos/community-i686/PKGBUILD
  haskell-hslogger/repos/community-i686/haskell-hslogger.install
  haskell-hslogger/repos/community-x86_64/PKGBUILD
  haskell-hslogger/repos/community-x86_64/haskell-hslogger.install

---+
 /PKGBUILD |   74 
 /haskell-hslogger.install |   36 +
 community-i686/PKGBUILD   |   36 -
 community-i686/haskell-hslogger.install   |   18 --
 community-x86_64/PKGBUILD |   36 -
 community-x86_64/haskell-hslogger.install |   18 --
 6 files changed, 110 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:22:28 UTC (rev 100603)
+++ community-i686/PKGBUILD 2013-11-06 13:22:42 UTC (rev 100604)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Arch Haskell Team arch-hask...@haskell.org
-
-pkgname=haskell-hslogger
-pkgver=1.2.1
-pkgrel=5
-pkgdesc=Versatile logging framework
-url=http://hackage.haskell.org/package/hslogger;
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=('ghc' 'haskell-mtl' 'haskell-network')
-install=${pkgname}.install
-source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
-md5sums=('d94e39cd6a262565cf0758a6ead74919')
-
-build() {
-  cd ${srcdir}/hslogger-${pkgver}
-  runhaskell Setup configure -p --prefix=/usr 
--docdir=/usr/share/doc/${pkgname} -O \
-   --enable-split-objs --enable-shared 
--libsubdir=\$compiler/site-local/\$pkgid \
-   --enable-library-profiling
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register   --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd ${srcdir}/hslogger-${pkgver}
-  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/hslogger
-  runhaskell Setup copy --destdir=${pkgdir}
-}

Copied: haskell-hslogger/repos/community-i686/PKGBUILD (from rev 100603, 
haskell-hslogger/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:22:42 UTC (rev 100604)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Arch Haskell Team arch-hask...@haskell.org
+
+pkgname=haskell-hslogger
+pkgver=1.2.1
+pkgrel=6
+pkgdesc=Versatile logging framework
+url=http://hackage.haskell.org/package/hslogger;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-mtl' 'haskell-network')
+options=('staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
+md5sums=('d94e39cd6a262565cf0758a6ead74919')
+
+build() {
+  cd ${srcdir}/hslogger-${pkgver}
+  runhaskell Setup configure -p --prefix=/usr 
--docdir=/usr/share/doc/${pkgname} -O \
+   --enable-split-objs --enable-shared 
--libsubdir=\$compiler/site-local/\$pkgid \
+   --enable-library-profiling
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${srcdir}/hslogger-${pkgver}
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/hslogger
+  runhaskell Setup copy --destdir=${pkgdir}
+}

Deleted: community-i686/haskell-hslogger.install
===
--- community-i686/haskell-hslogger.install 

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:22:47
  Author: spupykin
Revision: 100605

upgpkg: haskell-vector 0.10.0.1-6

upd

Modified:
  haskell-vector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:22:42 UTC (rev 100604)
+++ PKGBUILD2013-11-06 13:22:47 UTC (rev 100605)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-vector
 pkgver=0.10.0.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Efficient Arrays
 url=http://code.haskell.org/vector;
 license=(custom:BSD3)
@@ -11,7 +11,7 @@
 makedepends=()
 # deps adjusted to specific versions in package()
 depends=(ghc haskell-primitive)
-options=('strip')
+options=('strip' 'staticlibs')
 install=${pkgname}.install
 
source=(http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
 sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')



[arch-commits] Commit in haskell-bytestring-show/repos (8 files)

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:22:23
  Author: spupykin
Revision: 100602

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

Added:
  haskell-bytestring-show/repos/community-i686/PKGBUILD
(from rev 100601, haskell-bytestring-show/trunk/PKGBUILD)
  haskell-bytestring-show/repos/community-i686/haskell-bytestring-show.install
(from rev 100601, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
  haskell-bytestring-show/repos/community-x86_64/PKGBUILD
(from rev 100601, haskell-bytestring-show/trunk/PKGBUILD)
  haskell-bytestring-show/repos/community-x86_64/haskell-bytestring-show.install
(from rev 100601, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
Deleted:
  haskell-bytestring-show/repos/community-i686/PKGBUILD
  haskell-bytestring-show/repos/community-i686/haskell-bytestring-show.install
  haskell-bytestring-show/repos/community-x86_64/PKGBUILD
  haskell-bytestring-show/repos/community-x86_64/haskell-bytestring-show.install

--+
 /PKGBUILD|   88 +
 /haskell-bytestring-show.install |   48 +++
 community-i686/PKGBUILD  |   43 --
 community-i686/haskell-bytestring-show.install   |   24 -
 community-x86_64/PKGBUILD|   43 --
 community-x86_64/haskell-bytestring-show.install |   24 -
 6 files changed, 136 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:22:07 UTC (rev 100601)
+++ community-i686/PKGBUILD 2013-11-06 13:22:23 UTC (rev 100602)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=haskell-bytestring-show
-pkgver=0.3.5.4
-pkgrel=5
-pkgdesc=Efficient conversion of values into readable byte strings.
-url=http://hackage.haskell.org/package/bytestring-show;
-license=(BSD3)
-arch=('i686' 'x86_64')
-depends=(ghc)
-install=${pkgname}.install
-source=(http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz;)
-md5sums=('2a4ab243c4b6fffed1fc663975a9ec6d')
-
-build() {
-  cd ${srcdir}/bytestring-show-${pkgver}
-
-  # update outdated dependency
-  sed 's/build-depends: integer-gmp = 0.2   0.5/build-depends: integer-gmp 
= 0.2 \\  0.6/' -i bytestring-show.cabal
-
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
-   --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
-   --libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  depends=(ghc=`pacman -Q ghc | cut -f2 -d\ |cut -f1 -d-`)
-
-  cd ${srcdir}/bytestring-show-${pkgver}
-  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/bytestring-show
-  runhaskell Setup copy --destdir=${pkgdir}
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
-}

Copied: haskell-bytestring-show/repos/community-i686/PKGBUILD (from rev 100601, 
haskell-bytestring-show/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:22:23 UTC (rev 100602)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.4
+pkgrel=6
+pkgdesc=Efficient conversion of values into readable byte strings.
+url=http://hackage.haskell.org/package/bytestring-show;
+license=(BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc)
+options=('staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz;)
+md5sums=('2a4ab243c4b6fffed1fc663975a9ec6d')
+
+build() {
+  cd ${srcdir}/bytestring-show-${pkgver}
+
+  # update outdated dependency
+  sed 's/build-depends: integer-gmp = 0.2   0.5/build-depends: integer-gmp 
= 0.2 \\  0.6/' -i bytestring-show.cabal
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+   --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:23:01
  Author: spupykin
Revision: 100606

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

Added:
  haskell-vector/repos/community-i686/PKGBUILD
(from rev 100605, haskell-vector/trunk/PKGBUILD)
  haskell-vector/repos/community-i686/haskell-vector.install
(from rev 100605, haskell-vector/trunk/haskell-vector.install)
  haskell-vector/repos/community-x86_64/PKGBUILD
(from rev 100605, haskell-vector/trunk/PKGBUILD)
  haskell-vector/repos/community-x86_64/haskell-vector.install
(from rev 100605, haskell-vector/trunk/haskell-vector.install)
Deleted:
  haskell-vector/repos/community-i686/PKGBUILD
  haskell-vector/repos/community-i686/haskell-vector.install
  haskell-vector/repos/community-x86_64/PKGBUILD
  haskell-vector/repos/community-x86_64/haskell-vector.install

-+
 /PKGBUILD   |   86 ++
 /haskell-vector.install |   52 ++
 community-i686/PKGBUILD |   43 ---
 community-i686/haskell-vector.install   |   26 -
 community-x86_64/PKGBUILD   |   43 ---
 community-x86_64/haskell-vector.install |   26 -
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:22:47 UTC (rev 100605)
+++ community-i686/PKGBUILD 2013-11-06 13:23:01 UTC (rev 100606)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=haskell-vector
-pkgver=0.10.0.1
-pkgrel=5
-pkgdesc=Efficient Arrays
-url=http://code.haskell.org/vector;
-license=(custom:BSD3)
-arch=('i686' 'x86_64')
-makedepends=()
-# deps adjusted to specific versions in package()
-depends=(ghc haskell-primitive)
-options=('strip')
-install=${pkgname}.install
-source=(http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
-sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')
-
-build() {
-  cd ${srcdir}/vector-${pkgver}
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/${pkgname} \
---libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  _ghcver=`pacman -Q ghc | cut -f2 -d\  | cut -f1 -d-`
-  depends=(ghc=${_ghcver} haskell-primitive)
-
-  cd ${srcdir}/vector-${pkgver}
-  install -Dm744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install -Dm744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/vector
-  runhaskell Setup copy --destdir=${pkgdir}
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
-}

Copied: haskell-vector/repos/community-i686/PKGBUILD (from rev 100605, 
haskell-vector/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:23:01 UTC (rev 100606)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-vector
+pkgver=0.10.0.1
+pkgrel=6
+pkgdesc=Efficient Arrays
+url=http://code.haskell.org/vector;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+# deps adjusted to specific versions in package()
+depends=(ghc haskell-primitive)
+options=('strip' 'staticlibs')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
+sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')
+
+build() {
+  cd ${srcdir}/vector-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  _ghcver=`pacman -Q ghc | cut -f2 -d\  | cut -f1 -d-`
+  depends=(ghc=${_ghcver} haskell-primitive)
+
+  cd ${srcdir}/vector-${pkgver}
+  install -Dm744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install -Dm744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:23:18
  Author: spupykin
Revision: 100608

archrelease: copy trunk to community-any

Added:
  phpldapadmin/repos/community-any/PKGBUILD
(from rev 100607, phpldapadmin/trunk/PKGBUILD)
  phpldapadmin/repos/community-any/phpldapadmin-1.2.3-php5_5.patch
(from rev 100607, phpldapadmin/trunk/phpldapadmin-1.2.3-php5_5.patch)
Deleted:
  phpldapadmin/repos/community-any/PKGBUILD
  phpldapadmin/repos/community-any/phpldapadmin-1.2.3-php5_5.patch

-+
 PKGBUILD|   95 +-
 phpldapadmin-1.2.3-php5_5.patch |  134 +++---
 2 files changed, 113 insertions(+), 116 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-06 13:23:08 UTC (rev 100607)
+++ PKGBUILD2013-11-06 13:23:18 UTC (rev 100608)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=phpldapadmin
-pkgver=1.2.3
-pkgrel=4
-pkgdesc=A PHP and hence web-based tool to administrate LDAP over the WWW
-arch=('any')
-url=http://phpldapadmin.sourceforge.net/;
-license=('GPL')
-depends=('libldap' 'php' 'php-ldap')
-makedepends=('optipng')
-backup=(etc/webapps/phpldapadmin/.htaccess
-   etc/webapps/phpldapadmin/config.php)
-source=(http://downloads.sourceforge.net/project/phpldapadmin/phpldapadmin-php5/$pkgver/phpldapadmin-$pkgver.tgz
-phpldapadmin-1.2.3-php5_5.patch )
-md5sums=('59a49054039ceb852c2da377d8742360'
- '966de02d066d9cb90dadf12a213726d3')
-
-build() {
-  cd $srcdir/phpldapadmin-${pkgver}/
-  find -name '*.png' -exec optipng -quiet -force -fix {} \;
-  # patch from http://pkgs.fedoraproject.org/cgit/phpldapadmin.git/tree/
-  patch -p1 -i $srcdir/phpldapadmin-1.2.3-php5_5.patch
-}
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpldapadmin
-  mkdir -p ${_instdir} $pkgdir/etc/webapps/phpldapadmin
-  cd ${_instdir}
-
-  cp -ra $srcdir/phpldapadmin-${pkgver}/* .
-  echo deny from all $pkgdir/etc/webapps/phpldapadmin/.htaccess
-
-  ln -s /etc/webapps/phpldapadmin/.htaccess ${_instdir}/.htaccess
-  ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
-  cp ${_instdir}/config/config.php.example 
$pkgdir/etc/webapps/phpldapadmin/config.php
-
-  cat $pkgdir/etc/webapps/phpldapadmin/apache.example.conf EOF
-   Alias /phpldapadmin /usr/share/webapps/phpldapadmin
-   Directory /usr/share/webapps/phpldapadmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
-}

Copied: phpldapadmin/repos/community-any/PKGBUILD (from rev 100607, 
phpldapadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-06 13:23:18 UTC (rev 100608)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=phpldapadmin
+pkgver=1.2.3
+pkgrel=5
+pkgdesc=A PHP and hence web-based tool to administrate LDAP over the WWW
+arch=('any')
+url=http://phpldapadmin.sourceforge.net/;
+license=('GPL')
+depends=('libldap' 'php' 'php-ldap')
+makedepends=('optipng')
+backup=(etc/webapps/phpldapadmin/config.php)
+source=(http://downloads.sourceforge.net/project/phpldapadmin/phpldapadmin-php5/$pkgver/phpldapadmin-$pkgver.tgz
+phpldapadmin-1.2.3-php5_5.patch )
+md5sums=('59a49054039ceb852c2da377d8742360'
+ '966de02d066d9cb90dadf12a213726d3')
+
+build() {
+  cd $srcdir/phpldapadmin-${pkgver}/
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+  # patch from http://pkgs.fedoraproject.org/cgit/phpldapadmin.git/tree/
+  patch -p1 -i $srcdir/phpldapadmin-1.2.3-php5_5.patch
+}
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpldapadmin
+  mkdir -p ${_instdir} $pkgdir/etc/webapps/phpldapadmin
+  cd ${_instdir}
+
+  cp -ra $srcdir/phpldapadmin-${pkgver}/* .
+
+  ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
+  cp ${_instdir}/config/config.php.example 
$pkgdir/etc/webapps/phpldapadmin/config.php
+
+  cat $pkgdir/etc/webapps/phpldapadmin/apache.example.conf EOF
+   Alias /phpldapadmin /usr/share/webapps/phpldapadmin
+   Directory /usr/share/webapps/phpldapadmin
+   AllowOverride All
+   Options FollowSymlinks
+   Order allow,deny
+   Allow from all
+   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
+   /Directory
+EOF
+}

Deleted: phpldapadmin-1.2.3-php5_5.patch
===
--- phpldapadmin-1.2.3-php5_5.patch 2013-11-06 13:23:08 UTC (rev 100607)
+++ phpldapadmin-1.2.3-php5_5.patch 2013-11-06 13:23:18 UTC (rev 100608)
@@ -1,67 

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:23:08
  Author: spupykin
Revision: 100607

upgpkg: phpldapadmin 1.2.3-5

upd

Modified:
  phpldapadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:23:01 UTC (rev 100606)
+++ PKGBUILD2013-11-06 13:23:08 UTC (rev 100607)
@@ -3,7 +3,7 @@
 
 pkgname=phpldapadmin
 pkgver=1.2.3
-pkgrel=4
+pkgrel=5
 pkgdesc=A PHP and hence web-based tool to administrate LDAP over the WWW
 arch=('any')
 url=http://phpldapadmin.sourceforge.net/;
@@ -10,8 +10,7 @@
 license=('GPL')
 depends=('libldap' 'php' 'php-ldap')
 makedepends=('optipng')
-backup=(etc/webapps/phpldapadmin/.htaccess
-   etc/webapps/phpldapadmin/config.php)
+backup=(etc/webapps/phpldapadmin/config.php)
 
source=(http://downloads.sourceforge.net/project/phpldapadmin/phpldapadmin-php5/$pkgver/phpldapadmin-$pkgver.tgz
 phpldapadmin-1.2.3-php5_5.patch )
 md5sums=('59a49054039ceb852c2da377d8742360'
@@ -30,9 +29,7 @@
   cd ${_instdir}
 
   cp -ra $srcdir/phpldapadmin-${pkgver}/* .
-  echo deny from all $pkgdir/etc/webapps/phpldapadmin/.htaccess
 
-  ln -s /etc/webapps/phpldapadmin/.htaccess ${_instdir}/.htaccess
   ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
   cp ${_instdir}/config/config.php.example 
$pkgdir/etc/webapps/phpldapadmin/config.php
 



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:23:22
  Author: spupykin
Revision: 100609

upgpkg: qmc2 0.41-1

upd

Modified:
  qmc2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:23:18 UTC (rev 100608)
+++ PKGBUILD2013-11-06 13:23:22 UTC (rev 100609)
@@ -3,7 +3,7 @@
 # Contributor: JJDaNiMoTh jjdanim...@gmail.com
 
 pkgname=qmc2
-pkgver=0.39
+pkgver=0.41
 pkgrel=1
 pkgdesc=Qt 4 based UNIX MAME frontend supporting SDLMAME
 url=http://qmc2.arcadehits.net;
@@ -12,7 +12,7 @@
 depends=('qtwebkit' 'phonon' 'sdl')
 makedepends=('rsync' 'mesa')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2;)
-md5sums=('c736d62a6ee98b2e157801751760afe7')
+md5sums=('aae4396cc27875b969f51c7bfa600fcf')
 
 build() {
   cd $srcdir/$pkgname



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:23:38
  Author: spupykin
Revision: 100610

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:23:22 UTC (rev 100609)
+++ community-i686/PKGBUILD 2013-11-06 13:23:38 UTC (rev 100610)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: JJDaNiMoTh jjdanim...@gmail.com
-
-pkgname=qmc2
-pkgver=0.39
-pkgrel=1
-pkgdesc=Qt 4 based UNIX MAME frontend supporting SDLMAME
-url=http://qmc2.arcadehits.net;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('qtwebkit' 'phonon' 'sdl')
-makedepends=('rsync' 'mesa')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2;)
-md5sums=('c736d62a6ee98b2e157801751760afe7')
-
-build() {
-  cd $srcdir/$pkgname
-  export CTIME=0
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  install -D -m644 $srcdir/qmc2/data/img/mame.png $pkgdir/usr/share/pixmaps
-}

Copied: qmc2/repos/community-i686/PKGBUILD (from rev 100609, 
qmc2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:23:38 UTC (rev 100610)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: JJDaNiMoTh jjdanim...@gmail.com
+
+pkgname=qmc2
+pkgver=0.41
+pkgrel=1
+pkgdesc=Qt 4 based UNIX MAME frontend supporting SDLMAME
+url=http://qmc2.arcadehits.net;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('qtwebkit' 'phonon' 'sdl')
+makedepends=('rsync' 'mesa')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2;)
+md5sums=('aae4396cc27875b969f51c7bfa600fcf')
+
+build() {
+  cd $srcdir/$pkgname
+  export CTIME=0
+  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
+}
+
+package() {
+  cd $srcdir/$pkgname
+  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
+  install -d $pkgdir/usr/share/{applications,pixmaps}
+  install -D -m644 $srcdir/qmc2/data/img/mame.png $pkgdir/usr/share/pixmaps
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 13:23:22 UTC (rev 100609)
+++ community-x86_64/PKGBUILD   2013-11-06 13:23:38 UTC (rev 100610)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: JJDaNiMoTh jjdanim...@gmail.com
-
-pkgname=qmc2
-pkgver=0.39
-pkgrel=1
-pkgdesc=Qt 4 based UNIX MAME frontend supporting SDLMAME
-url=http://qmc2.arcadehits.net;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('qtwebkit' 'phonon' 'sdl')
-makedepends=('rsync' 'mesa')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2;)
-md5sums=('c736d62a6ee98b2e157801751760afe7')
-
-build() {
-  cd $srcdir/$pkgname
-  export CTIME=0
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  install -D -m644 $srcdir/qmc2/data/img/mame.png $pkgdir/usr/share/pixmaps
-}

Copied: qmc2/repos/community-x86_64/PKGBUILD (from rev 100609, 
qmc2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 13:23:38 UTC (rev 100610)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: JJDaNiMoTh jjdanim...@gmail.com
+
+pkgname=qmc2
+pkgver=0.41
+pkgrel=1
+pkgdesc=Qt 4 based UNIX MAME frontend supporting SDLMAME
+url=http://qmc2.arcadehits.net;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('qtwebkit' 'phonon' 'sdl')
+makedepends=('rsync' 'mesa')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2;)
+md5sums=('aae4396cc27875b969f51c7bfa600fcf')
+
+build() {
+  cd $srcdir/$pkgname
+  

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

2013-11-06 Thread Sven-Hendrik Haase
Date: Wednesday, November 6, 2013 @ 14:34:04
  Author: svenstaro
Revision: 100611

upgpkg: assaultcube 1.2.0.1-1

Updating to 1.2.0.1

Modified:
  assaultcube/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:23:38 UTC (rev 100610)
+++ PKGBUILD2013-11-06 13:34:04 UTC (rev 100611)
@@ -5,14 +5,14 @@
 # Contributor: Rabyte rabyte [at] gmail (dot) com
 
 pkgname=assaultcube
-pkgver=1.2.0.0
-pkgrel=2
+pkgver=1.2.0.1
+pkgrel=1
 pkgdesc='A realistic team oriented multiplayer FPS based on the Cube engine'
 arch=('i686' 'x86_64')
 url='http://assault.cubers.net/'
 license=('ZLIB' 'custom')
 depends=('sdl' 'sdl_mixer' 'sdl_image' 'openal' 'zlib' 'gcc-libs' 'libgl' 
'desktop-file-utils' 'glu')
-makedepends=('mesa')
+makedepends=('mesa' 'clang')
 
source=(http://downloads.sourceforge.net/actiongame/AssaultCube_v${pkgver}.tar.bz2;
 
http://downloads.sourceforge.net/actiongame/AssaultCube_v${pkgver}.source.tar.bz2;
 'assaultcube'
@@ -19,8 +19,8 @@
 'assaultcube-server'
 'assaultcube.desktop'
 'assaultcube.png')
-md5sums=('73f3a4df81d44b9dc8953037afba0c56'
- '6238e9313a3d04dc3737302573a1af3c'
+md5sums=('d159e60bc7cc09e7675c0db941906f56'
+ '22118d5dbb1ef7ab3369da4ba11c236f'
  'd658ad3ee476bfe92afa5b5a04a7b4f5'
  '553e2c3b38c4d13e5d77c23efd51a6a6'
  'a37dfbe8263f4ef8fe41120196194eae'



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:34:30
  Author: spupykin
Revision: 100614

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

Added:
  ejabberd/repos/community-i686/PKGBUILD
(from rev 100613, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-i686/ejabberd.install
(from rev 100613, ejabberd/trunk/ejabberd.install)
  ejabberd/repos/community-i686/ejabberd.logrotate
(from rev 100613, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-i686/ejabberd.service
(from rev 100613, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 100612, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.install
(from rev 100612, ejabberd/trunk/ejabberd.install)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 100612, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/ejabberd.service
(from rev 100612, ejabberd/trunk/ejabberd.service)
Deleted:
  ejabberd/repos/community-i686/PKGBUILD
  ejabberd/repos/community-i686/ejabberd.install
  ejabberd/repos/community-i686/ejabberd.logrotate
  ejabberd/repos/community-i686/ejabberd.service
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.install
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/ejabberd.service

-+
 /PKGBUILD   |  136 ++
 /ejabberd.install   |   50 
 /ejabberd.logrotate |   24 ++
 /ejabberd.service   |   26 ++
 community-i686/PKGBUILD |   45 ---
 community-i686/ejabberd.install |   25 --
 community-i686/ejabberd.logrotate   |   12 ---
 community-i686/ejabberd.service |   13 ---
 community-x86_64/PKGBUILD   |   45 ---
 community-x86_64/ejabberd.install   |   25 --
 community-x86_64/ejabberd.logrotate |   12 ---
 community-x86_64/ejabberd.service   |   13 ---
 12 files changed, 236 insertions(+), 190 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:34:16 UTC (rev 100613)
+++ community-i686/PKGBUILD 2013-11-06 13:34:30 UTC (rev 100614)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jeff 'codemac' Mickey j...@archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-
-pkgname=ejabberd
-pkgver=2.1.13
-pkgrel=1
-pkgdesc=Jabber server written in Erlang
-arch=('x86_64' 'i686')
-url=http://www.ejabberd.im/;
-license=(GPL)
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2')
-backup=('etc/ejabberd/ejabberd.cfg'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/v$pkgver.tar.gz;
-   $pkgname.logrotate
-   ejabberd.service)
-md5sums=('2a7c3b711b4f7091f811c51b52beb735'
- 'f97c8a96160f30e0aecc9526c12e6606'
- 'df32aa17e40a7bc5d9946d3ba6fe5e16')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver/src
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-pam --enable-odbc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver/src
-  make DESTDIR=$pkgdir install
-  install -d $pkgdir/var/lib/$pkgname
-  install -D -m0644 $srcdir/$pkgname.logrotate 
$pkgdir/etc/logrotate.d/$pkgname
-  chmod ug+r $pkgdir/etc/$pkgname/*
-  mkdir -p $pkgdir/usr/bin
-  mv $pkgdir/usr/sbin/ejabberdctl $pkgdir/usr/bin/ejabberdctl
-  chmod a+rx $pkgdir/usr/bin/ejabberdctl 
$pkgdir/usr/lib/ejabberd/priv/bin/captcha.sh
-  rm -rf $pkgdir/var/lock $pkgdir/usr/sbin
-  install -Dm0644 $srcdir/ejabberd.service 
$pkgdir/usr/lib/systemd/system/ejabberd.service
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ejabberd/repos/community-i686/PKGBUILD (from rev 100613, 
ejabberd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:34:30 UTC (rev 100614)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Jeff 'codemac' Mickey j...@archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=ejabberd
+pkgver=13.10
+pkgrel=1
+pkgdesc=Jabber server written in Erlang
+arch=('x86_64' 'i686')
+url=http://www.ejabberd.im/;
+license=(GPL)
+depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc' 'libyaml')
+makedepends=('git') # TODO: build all deps as packages
+backup=('etc/ejabberd/ejabberd.cfg'
+   'etc/ejabberd/ejabberdctl.cfg'
+   'etc/logrotate.d/ejabberd')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
+   git://github.com/processone/cache_tab
+  

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

2013-11-06 Thread Sven-Hendrik Haase
Date: Wednesday, November 6, 2013 @ 14:34:16
  Author: svenstaro
Revision: 100613

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

Added:
  assaultcube/repos/community-i686/PKGBUILD
(from rev 100612, assaultcube/trunk/PKGBUILD)
  assaultcube/repos/community-i686/assaultcube
(from rev 100612, assaultcube/trunk/assaultcube)
  assaultcube/repos/community-i686/assaultcube-server
(from rev 100612, assaultcube/trunk/assaultcube-server)
  assaultcube/repos/community-i686/assaultcube.desktop
(from rev 100612, assaultcube/trunk/assaultcube.desktop)
  assaultcube/repos/community-i686/assaultcube.install
(from rev 100612, assaultcube/trunk/assaultcube.install)
  assaultcube/repos/community-i686/assaultcube.png
(from rev 100612, assaultcube/trunk/assaultcube.png)
  assaultcube/repos/community-x86_64/PKGBUILD
(from rev 100612, assaultcube/trunk/PKGBUILD)
  assaultcube/repos/community-x86_64/assaultcube
(from rev 100612, assaultcube/trunk/assaultcube)
  assaultcube/repos/community-x86_64/assaultcube-server
(from rev 100612, assaultcube/trunk/assaultcube-server)
  assaultcube/repos/community-x86_64/assaultcube.desktop
(from rev 100612, assaultcube/trunk/assaultcube.desktop)
  assaultcube/repos/community-x86_64/assaultcube.install
(from rev 100612, assaultcube/trunk/assaultcube.install)
  assaultcube/repos/community-x86_64/assaultcube.png
(from rev 100612, assaultcube/trunk/assaultcube.png)
Deleted:
  assaultcube/repos/community-i686/PKGBUILD
  assaultcube/repos/community-i686/assaultcube
  assaultcube/repos/community-i686/assaultcube-server
  assaultcube/repos/community-i686/assaultcube.desktop
  assaultcube/repos/community-i686/assaultcube.install
  assaultcube/repos/community-i686/assaultcube.png
  assaultcube/repos/community-x86_64/PKGBUILD
  assaultcube/repos/community-x86_64/assaultcube
  assaultcube/repos/community-x86_64/assaultcube-server
  assaultcube/repos/community-x86_64/assaultcube.desktop
  assaultcube/repos/community-x86_64/assaultcube.install
  assaultcube/repos/community-x86_64/assaultcube.png

--+
 /PKGBUILD|  102 +
 /assaultcube |8 ++
 /assaultcube-server  |8 ++
 /assaultcube.desktop |   24 +++
 /assaultcube.install |   26 
 community-i686/PKGBUILD  |   51 
 community-i686/assaultcube   |4 -
 community-i686/assaultcube-server|4 -
 community-i686/assaultcube.desktop   |   12 ---
 community-i686/assaultcube.install   |   13 
 community-x86_64/PKGBUILD|   51 
 community-x86_64/assaultcube |4 -
 community-x86_64/assaultcube-server  |4 -
 community-x86_64/assaultcube.desktop |   12 ---
 community-x86_64/assaultcube.install |   13 
 15 files changed, 168 insertions(+), 168 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:34:08 UTC (rev 100612)
+++ community-i686/PKGBUILD 2013-11-06 13:34:16 UTC (rev 100613)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
-# Contributor: Roman Kyrylych roman.kyryl...@gmail.com
-# Contributor: Rabyte rabyte [at] gmail (dot) com
-
-pkgname=assaultcube
-pkgver=1.2.0.0
-pkgrel=2
-pkgdesc='A realistic team oriented multiplayer FPS based on the Cube engine'
-arch=('i686' 'x86_64')
-url='http://assault.cubers.net/'
-license=('ZLIB' 'custom')
-depends=('sdl' 'sdl_mixer' 'sdl_image' 'openal' 'zlib' 'gcc-libs' 'libgl' 
'desktop-file-utils' 'glu')
-makedepends=('mesa')
-source=(http://downloads.sourceforge.net/actiongame/AssaultCube_v${pkgver}.tar.bz2;
-
http://downloads.sourceforge.net/actiongame/AssaultCube_v${pkgver}.source.tar.bz2;
-'assaultcube'
-'assaultcube-server'
-'assaultcube.desktop'
-'assaultcube.png')
-md5sums=('73f3a4df81d44b9dc8953037afba0c56'
- '6238e9313a3d04dc3737302573a1af3c'
- 'd658ad3ee476bfe92afa5b5a04a7b4f5'
- '553e2c3b38c4d13e5d77c23efd51a6a6'
- 'a37dfbe8263f4ef8fe41120196194eae'
- 'f688c59ecee2ebc5c589720aa1480765')
-install=assaultcube.install
-
-build() {
-  cd AssaultCube_v${pkgver}.source/source/src
-
-  make
-}
-
-package() {
-  cd AssaultCube_v${pkgver}.source/source/src
-  install -Dm755 ac_client ${pkgdir}/usr/bin/ac_client
-  install -Dm755 ac_server ${pkgdir}/usr/bin/ac_server
-
-  cd ${srcdir}/AssaultCube_v${pkgver}
-  mkdir -p ${pkgdir}/usr/share/assaultcube
-  cp -rf config packages docs mods ${pkgdir}/usr/share/assaultcube
-  install -Dm644 ${srcdir}/assaultcube.png 
${pkgdir}/usr/share/pixmaps/assaultcube.png
-  install -Dm644 ${srcdir}/assaultcube.desktop 
${pkgdir}/usr/share/applications/assaultcube.desktop
-  

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:34:08
  Author: spupykin
Revision: 100612

upgpkg: ejabberd 13.10-1

upd

Modified:
  ejabberd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:34:04 UTC (rev 100611)
+++ PKGBUILD2013-11-06 13:34:08 UTC (rev 100612)
@@ -4,26 +4,49 @@
 # Contributor: Alexander Rødseth rods...@gmail.com
 
 pkgname=ejabberd
-pkgver=2.1.12
-pkgrel=9
+pkgver=13.10
+pkgrel=1
 pkgdesc=Jabber server written in Erlang
 arch=('x86_64' 'i686')
 url=http://www.ejabberd.im/;
 license=(GPL)
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2')
+depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc' 'libyaml')
+makedepends=('git') # TODO: build all deps as packages
 backup=('etc/ejabberd/ejabberd.cfg'
'etc/ejabberd/ejabberdctl.cfg'
'etc/logrotate.d/ejabberd')
 install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/v$pkgver.tar.gz;
+source=($pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
+   git://github.com/processone/cache_tab
+   git://github.com/processone/tls
+   git://github.com/processone/stringprep
+   git://github.com/processone/xml
+   git://github.com/processone/p1_yaml
+   git://github.com/rds13/xmlrpc
+   git://github.com/processone/epam
+   git://github.com/processone/zlib
+   git://github.com/basho/lager
+   git://github.com/processone/eiconv
+   git://github.com/DeadZen/goldrush.git
$pkgname.logrotate
ejabberd.service)
-md5sums=('d51ce6c557aae355f2046df392242d8d'
+md5sums=('70a78db576e36c1e714205c983c8a568'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
  'f97c8a96160f30e0aecc9526c12e6606'
  'df32aa17e40a7bc5d9946d3ba6fe5e16')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver/src
+  cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --enable-pam --enable-odbc
   make
@@ -30,7 +53,7 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver/src
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
   install -d $pkgdir/var/lib/$pkgname
   install -D -m0644 $srcdir/$pkgname.logrotate 
$pkgdir/etc/logrotate.d/$pkgname



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:35:13
  Author: spupykin
Revision: 100616

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:34:44 UTC (rev 100615)
+++ community-i686/PKGBUILD 2013-11-06 13:35:13 UTC (rev 100616)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Brian Knox taote...@gmail.com
-
-pkgname=libestr
-pkgver=0.1.5
-pkgrel=2
-pkgdesc=essentials for string handling (and a bit more)
-url=http://libestr.adiscon.com/;
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-depends=()
-source=(http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz;)
-md5sums=('f180c0cdc82883d161eba3f2e8a34eb4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-}

Copied: libestr/repos/community-i686/PKGBUILD (from rev 100615, 
libestr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:35:13 UTC (rev 100616)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Brian Knox taote...@gmail.com
+
+pkgname=libestr
+pkgver=0.1.9
+pkgrel=1
+pkgdesc=essentials for string handling (and a bit more)
+url=http://libestr.adiscon.com/;
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+depends=()
+source=(http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz;)
+md5sums=('681ca0ed7e5ae6ddff70fdec413096e4')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 13:34:44 UTC (rev 100615)
+++ community-x86_64/PKGBUILD   2013-11-06 13:35:13 UTC (rev 100616)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Brian Knox taote...@gmail.com
-
-pkgname=libestr
-pkgver=0.1.5
-pkgrel=2
-pkgdesc=essentials for string handling (and a bit more)
-url=http://libestr.adiscon.com/;
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-depends=()
-source=(http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz;)
-md5sums=('f180c0cdc82883d161eba3f2e8a34eb4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-}

Copied: libestr/repos/community-x86_64/PKGBUILD (from rev 100615, 
libestr/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 13:35:13 UTC (rev 100616)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Brian Knox taote...@gmail.com
+
+pkgname=libestr
+pkgver=0.1.9
+pkgrel=1
+pkgdesc=essentials for string handling (and a bit more)
+url=http://libestr.adiscon.com/;
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+depends=()
+source=(http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz;)
+md5sums=('681ca0ed7e5ae6ddff70fdec413096e4')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+}



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:34:44
  Author: spupykin
Revision: 100615

upgpkg: libestr 0.1.9-1

upd

Modified:
  libestr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:34:30 UTC (rev 100614)
+++ PKGBUILD2013-11-06 13:34:44 UTC (rev 100615)
@@ -3,8 +3,8 @@
 # Maintainer: Brian Knox taote...@gmail.com
 
 pkgname=libestr
-pkgver=0.1.5
-pkgrel=2
+pkgver=0.1.9
+pkgrel=1
 pkgdesc=essentials for string handling (and a bit more)
 url=http://libestr.adiscon.com/;
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('LGPL2.1')
 depends=()
 source=(http://libestr.adiscon.com/files/download/libestr-$pkgver.tar.gz;)
-md5sums=('f180c0cdc82883d161eba3f2e8a34eb4')
+md5sums=('681ca0ed7e5ae6ddff70fdec413096e4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:35:16
  Author: spupykin
Revision: 100617

upgpkg: rsyslog 7.4.6-1

upd

Modified:
  rsyslog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:35:13 UTC (rev 100616)
+++ PKGBUILD2013-11-06 13:35:16 UTC (rev 100617)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=rsyslog
-pkgver=7.4.4
+pkgver=7.4.6
 pkgrel=1
 pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
 url=http://www.rsyslog.com/;
@@ -22,7 +22,7 @@
 source=(http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
'rsyslog.logrotate'
'rsyslog.conf')
-md5sums=('ebcc010a6205c28eb505c0fe862f32c6'
+md5sums=('6916d86d0d17fe097afde5035e8e079e'
  '0d990373f5c70ddee989296007b4df5b'
  'd61dd424e660eb16401121eed20d98bc')
 



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 14:35:33
  Author: spupykin
Revision: 100618

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

Added:
  rsyslog/repos/community-i686/PKGBUILD
(from rev 100617, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-i686/rsyslog.conf
(from rev 100617, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-i686/rsyslog.logrotate
(from rev 100617, rsyslog/trunk/rsyslog.logrotate)
  rsyslog/repos/community-x86_64/PKGBUILD
(from rev 100617, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-x86_64/rsyslog.conf
(from rev 100617, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-x86_64/rsyslog.logrotate
(from rev 100617, rsyslog/trunk/rsyslog.logrotate)
Deleted:
  rsyslog/repos/community-i686/PKGBUILD
  rsyslog/repos/community-i686/rsyslog.conf
  rsyslog/repos/community-i686/rsyslog.logrotate
  rsyslog/repos/community-x86_64/PKGBUILD
  rsyslog/repos/community-x86_64/rsyslog.conf
  rsyslog/repos/community-x86_64/rsyslog.logrotate

+
 /PKGBUILD  |  118 +++
 /rsyslog.conf  |   88 ++
 /rsyslog.logrotate |   14 
 community-i686/PKGBUILD|   59 -
 community-i686/rsyslog.conf|   44 -
 community-i686/rsyslog.logrotate   |7 --
 community-x86_64/PKGBUILD  |   59 -
 community-x86_64/rsyslog.conf  |   44 -
 community-x86_64/rsyslog.logrotate |7 --
 9 files changed, 220 insertions(+), 220 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:35:16 UTC (rev 100617)
+++ community-i686/PKGBUILD 2013-11-06 13:35:33 UTC (rev 100618)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=rsyslog
-pkgver=7.4.4
-pkgrel=1
-pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
-url=http://www.rsyslog.com/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd')
-makedepends=('postgresql-libs=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
-'python-docutils')
-optdepends=('postgresql-libs: PostgreSQL Database Support'
-   'libmariadbclient: MySQL Database Support'
-   'net-snmp'
-   'gnutls')
-backup=('etc/rsyslog.conf'
-   'etc/logrotate.d/rsyslog'
-   'etc/conf.d/rsyslog')
-options=('strip' 'zipman')
-source=(http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
-   'rsyslog.logrotate'
-   'rsyslog.conf')
-md5sums=('ebcc010a6205c28eb505c0fe862f32c6'
- '0d990373f5c70ddee989296007b4df5b'
- 'd61dd424e660eb16401121eed20d98bc')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --enable-mysql \
-  --enable-pgsql \
-  --enable-mail \
-  --enable-imfile \
-  --enable-snmp \
-  --enable-gnutls \
-  --enable-inet \
-  --enable-imjournal \
-  --enable-omjournal \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-  echo rsyslogd_LDADD += \$(LIBESTR_LIBS) -lm tools/Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-  # Install Daemons and Configuration Files
-  install -D -m644 doc/${pkgname}-example.conf 
${pkgdir}/usr/share/doc/$pkgname/${pkgname}.conf.example
-  install -D -m644 $srcdir/${pkgname}.conf ${pkgdir}/etc/${pkgname}.conf
-  install -D -m644 $srcdir/${pkgname}.logrotate 
${pkgdir}/etc/logrotate.d/${pkgname}
-
-  # fix location of systemctl and remove start precondition
-  sed -i $pkgdir/usr/lib/systemd/system/rsyslog.service \
--e 's@/bin/systemctl@/usr@' \
--e '/^ExecStartPre/d'
-}

Copied: rsyslog/repos/community-i686/PKGBUILD (from rev 100617, 
rsyslog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:35:33 UTC (rev 100618)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=rsyslog
+pkgver=7.4.6
+pkgrel=1
+pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
+url=http://www.rsyslog.com/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd')
+makedepends=('postgresql-libs=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
+'python-docutils')
+optdepends=('postgresql-libs: PostgreSQL Database Support'
+   'libmariadbclient: MySQL Database Support'
+   'net-snmp'
+   'gnutls')
+backup=('etc/rsyslog.conf'
+   'etc/logrotate.d/rsyslog'
+   'etc/conf.d/rsyslog')

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

2013-11-06 Thread Sven-Hendrik Haase
Date: Wednesday, November 6, 2013 @ 14:53:48
  Author: svenstaro
Revision: 100619

upgpkg: box2d 2.3.0-1

Updating to 2.3.0

Modified:
  box2d/trunk/PKGBUILD

--+
 PKGBUILD |   29 +++--
 1 file changed, 15 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:35:33 UTC (rev 100618)
+++ PKGBUILD2013-11-06 13:53:48 UTC (rev 100619)
@@ -2,20 +2,20 @@
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 
 pkgname=box2d
-pkgver=2.2.1
-pkgrel=2
+pkgver=2.3.0
+pkgrel=1
 pkgdesc=2D rigid body simulation library for games
 url=http://www.box2d.org/;
 license=('zlib')
 arch=('i686' 'x86_64')
 #depends=('freeglut')
-makedepends=('cmake')
+makedepends=('cmake' 'doxygen')
 optdepends=()
-source=(http://box2d.googlecode.com/files/Box2D_v${pkgver}.zip)
-md5sums=('9e9d32a34fb5554c47f0f9cade0fa611')
+source=(svn+http://box2d.googlecode.com/svn/tags/v${pkgver})
+md5sums=('SKIP')
 
 build() {
-  cd ${srcdir}/Box2D_v${pkgver}
+  cd ${srcdir}/v${pkgver}/Box2D
  
   msg Starting build
   [[ -d build ]]  rm -r build
@@ -22,8 +22,9 @@
   mkdir build  cd build 
cmake .. \
 -DBOX2D_INSTALL=ON \
+-DBOX2D_INSTALL_DOC=ON \
 -DBOX2D_BUILD_SHARED=ON \
--DBOX2D_BUILD_STATIC=ON \
+-DBOX2D_BUILD_STATIC=OFF \
 -DBOX2D_BUILD_EXAMPLES=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr
   make
@@ -30,15 +31,15 @@
 }
 
 package() {
-  cd ${srcdir}/Box2D_v${pkgver}/build
+  cd ${srcdir}/v${pkgver}/Box2D
 
+  cd Documentation
+  doxygen
+
+  cd ../build
+
   make DESTDIR=${pkgdir} install
 
-  mkdir -p ${pkgdir}/usr/share/doc/box2d/
-  cp -r ${srcdir}/Box2D_v${pkgver}/Documentation/* 
${pkgdir}/usr/share/doc/box2d/
-  find ${pkgdir}/usr/share/doc/box2d/ -type f | xargs chmod 644
-  find ${pkgdir}/usr/share/doc/box2d/ -type d | xargs chmod 755
-
-  install -Dm644 ${srcdir}/Box2D_v${pkgver}/License.txt 
${pkgdir}/usr/share/licenses/box2d/LICENSE
+  install -Dm644 ${srcdir}/v${pkgver}/Box2D/License.txt 
${pkgdir}/usr/share/licenses/box2d/LICENSE
 }
 # vim: sw=2 ts=2 et:



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

2013-11-06 Thread Sven-Hendrik Haase
Date: Wednesday, November 6, 2013 @ 14:54:05
  Author: svenstaro
Revision: 100620

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 13:53:48 UTC (rev 100619)
+++ community-i686/PKGBUILD 2013-11-06 13:54:05 UTC (rev 100620)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-
-pkgname=box2d
-pkgver=2.2.1
-pkgrel=2
-pkgdesc=2D rigid body simulation library for games
-url=http://www.box2d.org/;
-license=('zlib')
-arch=('i686' 'x86_64')
-#depends=('freeglut')
-makedepends=('cmake')
-optdepends=()
-source=(http://box2d.googlecode.com/files/Box2D_v${pkgver}.zip)
-md5sums=('9e9d32a34fb5554c47f0f9cade0fa611')
-
-build() {
-  cd ${srcdir}/Box2D_v${pkgver}
- 
-  msg Starting build
-  [[ -d build ]]  rm -r build
-  mkdir build  cd build 
-   cmake .. \
--DBOX2D_INSTALL=ON \
--DBOX2D_BUILD_SHARED=ON \
--DBOX2D_BUILD_STATIC=ON \
--DBOX2D_BUILD_EXAMPLES=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/Box2D_v${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mkdir -p ${pkgdir}/usr/share/doc/box2d/
-  cp -r ${srcdir}/Box2D_v${pkgver}/Documentation/* 
${pkgdir}/usr/share/doc/box2d/
-  find ${pkgdir}/usr/share/doc/box2d/ -type f | xargs chmod 644
-  find ${pkgdir}/usr/share/doc/box2d/ -type d | xargs chmod 755
-
-  install -Dm644 ${srcdir}/Box2D_v${pkgver}/License.txt 
${pkgdir}/usr/share/licenses/box2d/LICENSE
-}
-# vim: sw=2 ts=2 et:

Copied: box2d/repos/community-i686/PKGBUILD (from rev 100619, 
box2d/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 13:54:05 UTC (rev 100620)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=box2d
+pkgver=2.3.0
+pkgrel=1
+pkgdesc=2D rigid body simulation library for games
+url=http://www.box2d.org/;
+license=('zlib')
+arch=('i686' 'x86_64')
+#depends=('freeglut')
+makedepends=('cmake' 'doxygen')
+optdepends=()
+source=(svn+http://box2d.googlecode.com/svn/tags/v${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd ${srcdir}/v${pkgver}/Box2D
+ 
+  msg Starting build
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build 
+   cmake .. \
+-DBOX2D_INSTALL=ON \
+-DBOX2D_INSTALL_DOC=ON \
+-DBOX2D_BUILD_SHARED=ON \
+-DBOX2D_BUILD_STATIC=OFF \
+-DBOX2D_BUILD_EXAMPLES=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/v${pkgver}/Box2D
+
+  cd Documentation
+  doxygen
+
+  cd ../build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/v${pkgver}/Box2D/License.txt 
${pkgdir}/usr/share/licenses/box2d/LICENSE
+}
+# vim: sw=2 ts=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 13:53:48 UTC (rev 100619)
+++ community-x86_64/PKGBUILD   2013-11-06 13:54:05 UTC (rev 100620)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-
-pkgname=box2d
-pkgver=2.2.1
-pkgrel=2
-pkgdesc=2D rigid body simulation library for games
-url=http://www.box2d.org/;
-license=('zlib')
-arch=('i686' 'x86_64')
-#depends=('freeglut')
-makedepends=('cmake')
-optdepends=()
-source=(http://box2d.googlecode.com/files/Box2D_v${pkgver}.zip)
-md5sums=('9e9d32a34fb5554c47f0f9cade0fa611')
-
-build() {
-  cd ${srcdir}/Box2D_v${pkgver}
- 
-  msg Starting build
-  [[ -d build ]]  rm -r build
-  mkdir build  cd build 
-   cmake .. \
--DBOX2D_INSTALL=ON \
--DBOX2D_BUILD_SHARED=ON \
--DBOX2D_BUILD_STATIC=ON \
--DBOX2D_BUILD_EXAMPLES=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/Box2D_v${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mkdir -p ${pkgdir}/usr/share/doc/box2d/
-  cp -r ${srcdir}/Box2D_v${pkgver}/Documentation/* 
${pkgdir}/usr/share/doc/box2d/
-  find ${pkgdir}/usr/share/doc/box2d/ -type f | xargs chmod 644
-  find ${pkgdir}/usr/share/doc/box2d/ -type d | xargs chmod 755
-
-  install -Dm644 ${srcdir}/Box2D_v${pkgver}/License.txt 
${pkgdir}/usr/share/licenses/box2d/LICENSE
-}
-# vim: sw=2 ts=2 et:

Copied: box2d/repos/community-x86_64/PKGBUILD (from rev 100619, 
box2d/trunk/PKGBUILD)

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

2013-11-06 Thread Sven-Hendrik Haase
Date: Wednesday, November 6, 2013 @ 14:59:14
  Author: svenstaro
Revision: 199019

upgpkg: sdl2_gfx 1:1.0.0-1

Updating to 1.0.0

Modified:
  sdl2_gfx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 12:06:49 UTC (rev 199018)
+++ PKGBUILD2013-11-06 13:59:14 UTC (rev 199019)
@@ -2,7 +2,8 @@
 # Contributor: Jameson Pugh imntr...@gmail.com
 
 pkgname=sdl2_gfx
-pkgver=7
+epoch=1
+pkgver=1.0.0
 pkgrel=1
 pkgdesc=SDL Graphic Primitives (Version 2)
 arch=('i686' 'x86_64')
@@ -10,11 +11,11 @@
 license=('zlib')
 depends=('sdl2')
 makedepends=('svn')
-source=(sdl2-gfx::svn://svn.code.sf.net/p/sdl2gfx/code/trunk#revision=$pkgver)
-md5sums=('SKIP')
+source=(http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-${pkgver}.tar.gz;)
+md5sums=('f008cc117cb901aec6bf5c2f0b11f7ea')
 
 build() {
-  cd ${srcdir}/sdl2-gfx
+  cd ${srcdir}/SDL2_gfx-${pkgver}
 
   ./autogen.sh
   ./configure --disable-static --prefix=/usr
@@ -22,7 +23,7 @@
 }
 
 package() {
-  cd ${srcdir}/sdl2-gfx
+  cd ${srcdir}/SDL2_gfx-${pkgver}
   make DESTDIR=${pkgdir}/ install
 
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE



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

2013-11-06 Thread Sven-Hendrik Haase
Date: Wednesday, November 6, 2013 @ 14:59:24
  Author: svenstaro
Revision: 199020

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-06 13:59:14 UTC (rev 199019)
+++ extra-i686/PKGBUILD 2013-11-06 13:59:24 UTC (rev 199020)
@@ -1,29 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jameson Pugh imntr...@gmail.com
-
-pkgname=sdl2_gfx
-pkgver=7
-pkgrel=1
-pkgdesc=SDL Graphic Primitives (Version 2)
-arch=('i686' 'x86_64')
-url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
-license=('zlib')
-depends=('sdl2')
-makedepends=('svn')
-source=(sdl2-gfx::svn://svn.code.sf.net/p/sdl2gfx/code/trunk#revision=$pkgver)
-md5sums=('SKIP')
-
-build() {
-  cd ${srcdir}/sdl2-gfx
-
-  ./autogen.sh
-  ./configure --disable-static --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/sdl2-gfx
-  make DESTDIR=${pkgdir}/ install
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: sdl2_gfx/repos/extra-i686/PKGBUILD (from rev 199019, 
sdl2_gfx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-06 13:59:24 UTC (rev 199020)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Jameson Pugh imntr...@gmail.com
+
+pkgname=sdl2_gfx
+epoch=1
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=SDL Graphic Primitives (Version 2)
+arch=('i686' 'x86_64')
+url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
+license=('zlib')
+depends=('sdl2')
+makedepends=('svn')
+source=(http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-${pkgver}.tar.gz;)
+md5sums=('f008cc117cb901aec6bf5c2f0b11f7ea')
+
+build() {
+  cd ${srcdir}/SDL2_gfx-${pkgver}
+
+  ./autogen.sh
+  ./configure --disable-static --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/SDL2_gfx-${pkgver}
+  make DESTDIR=${pkgdir}/ install
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-06 13:59:14 UTC (rev 199019)
+++ extra-x86_64/PKGBUILD   2013-11-06 13:59:24 UTC (rev 199020)
@@ -1,29 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jameson Pugh imntr...@gmail.com
-
-pkgname=sdl2_gfx
-pkgver=7
-pkgrel=1
-pkgdesc=SDL Graphic Primitives (Version 2)
-arch=('i686' 'x86_64')
-url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
-license=('zlib')
-depends=('sdl2')
-makedepends=('svn')
-source=(sdl2-gfx::svn://svn.code.sf.net/p/sdl2gfx/code/trunk#revision=$pkgver)
-md5sums=('SKIP')
-
-build() {
-  cd ${srcdir}/sdl2-gfx
-
-  ./autogen.sh
-  ./configure --disable-static --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/sdl2-gfx
-  make DESTDIR=${pkgdir}/ install
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: sdl2_gfx/repos/extra-x86_64/PKGBUILD (from rev 199019, 
sdl2_gfx/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-06 13:59:24 UTC (rev 199020)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Jameson Pugh imntr...@gmail.com
+
+pkgname=sdl2_gfx
+epoch=1
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=SDL Graphic Primitives (Version 2)
+arch=('i686' 'x86_64')
+url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
+license=('zlib')
+depends=('sdl2')
+makedepends=('svn')
+source=(http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-${pkgver}.tar.gz;)
+md5sums=('f008cc117cb901aec6bf5c2f0b11f7ea')
+
+build() {
+  cd ${srcdir}/SDL2_gfx-${pkgver}
+
+  ./autogen.sh
+  ./configure --disable-static --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/SDL2_gfx-${pkgver}
+  make DESTDIR=${pkgdir}/ install
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-11-06 Thread Jan de Groot
Date: Wednesday, November 6, 2013 @ 15:06:11
  Author: jgc
Revision: 199021

Add upstream security fix that disallows deleting root user
upgpkg: accountsservice 0.6.35-2

Added:
  accountsservice/trunk/avoid-deleting-the-root-user.patch
Modified:
  accountsservice/trunk/PKGBUILD

+
 PKGBUILD   |   13 +++--
 avoid-deleting-the-root-user.patch |   47 +++
 2 files changed, 57 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:59:24 UTC (rev 199020)
+++ PKGBUILD2013-11-06 14:06:11 UTC (rev 199021)
@@ -3,7 +3,7 @@
 
 pkgname=accountsservice
 pkgver=0.6.35
-pkgrel=1
+pkgrel=2
 pkgdesc=D-Bus interface for user account query and manipulation
 arch=(i686 x86_64)
 url=http://www.freedesktop.org/software/accountsservice/;
@@ -10,9 +10,16 @@
 license=('GPL3')
 depends=('glib2' 'polkit' 'systemd')
 makedepends=('intltool' 'gobject-introspection')
-source=($url/$pkgname-$pkgver.tar.xz)
-md5sums=('3a81133e95faafb603de4475802cb06a')
+source=($url/$pkgname-$pkgver.tar.xz
+avoid-deleting-the-root-user.patch)
+md5sums=('3a81133e95faafb603de4475802cb06a'
+ '4970e77c3c0d56e513f9a5f29fdacd2c')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../avoid-deleting-the-root-user.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \

Added: avoid-deleting-the-root-user.patch
===
--- avoid-deleting-the-root-user.patch  (rev 0)
+++ avoid-deleting-the-root-user.patch  2013-11-06 14:06:11 UTC (rev 199021)
@@ -0,0 +1,47 @@
+From 980692e6b9cfe4a34e22f566e0981a8c549e4348 Mon Sep 17 00:00:00 2001
+From: Matthias Clasen mcla...@redhat.com
+Date: Fri, 01 Nov 2013 21:09:25 +
+Subject: Avoid deleting the root user
+
+The check we have in place against deleting the root user can
+be tricked by exploiting the fact that we are checking a gint64,
+and then later cast it to a uid_t. This can be seen with the
+following test, which will delete your root account:
+
+qdbus --system org.freedesktop.Accounts /org/freedesktop/Accounts \
+ org.freedesktop.Accounts.DeleteUser -9223372036854775808 true
+
+Found with the dfuzzer tool,
+https://github.com/matusmarhefka/dfuzzer
+---
+diff --git a/src/daemon.c b/src/daemon.c
+index ea75190..9c7001b 100644
+--- a/src/daemon.c
 b/src/daemon.c
+@@ -1227,7 +1227,7 @@ daemon_uncache_user (AccountsAccounts  *accounts,
+ }
+ 
+ typedef struct {
+-gint64 uid;
++uid_t uid;
+ gboolean remove_files;
+ } DeleteUserData;
+ 
+@@ -1309,13 +1309,13 @@ daemon_delete_user (AccountsAccounts  *accounts,
+ Daemon *daemon = (Daemon*)accounts;
+ DeleteUserData *data;
+ 
+-if (uid == 0) {
++if ((uid_t)uid == 0) {
+ throw_error (context, ERROR_FAILED, Refuse to delete root 
user);
+ return TRUE;
+ }
+ 
+ data = g_new0 (DeleteUserData, 1);
+-data-uid = uid;
++data-uid = (uid_t)uid;
+ data-remove_files = remove_files;
+ 
+ daemon_local_check_auth (daemon,
+--
+cgit v0.9.0.2-2-gbebe



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

2013-11-06 Thread Jan de Groot
Date: Wednesday, November 6, 2013 @ 15:06:17
  Author: jgc
Revision: 199022

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

Added:
  accountsservice/repos/extra-i686/PKGBUILD
(from rev 199021, accountsservice/trunk/PKGBUILD)
  accountsservice/repos/extra-i686/avoid-deleting-the-root-user.patch
(from rev 199021, accountsservice/trunk/avoid-deleting-the-root-user.patch)
  accountsservice/repos/extra-x86_64/PKGBUILD
(from rev 199021, accountsservice/trunk/PKGBUILD)
  accountsservice/repos/extra-x86_64/avoid-deleting-the-root-user.patch
(from rev 199021, accountsservice/trunk/avoid-deleting-the-root-user.patch)
Deleted:
  accountsservice/repos/extra-i686/PKGBUILD
  accountsservice/repos/extra-x86_64/PKGBUILD

-+
 /PKGBUILD   |   74 ++
 extra-i686/PKGBUILD |   30 
 extra-i686/avoid-deleting-the-root-user.patch   |   47 +
 extra-x86_64/PKGBUILD   |   30 
 extra-x86_64/avoid-deleting-the-root-user.patch |   47 +
 5 files changed, 168 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-06 14:06:11 UTC (rev 199021)
+++ extra-i686/PKGBUILD 2013-11-06 14:06:17 UTC (rev 199022)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=accountsservice
-pkgver=0.6.35
-pkgrel=1
-pkgdesc=D-Bus interface for user account query and manipulation
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/software/accountsservice/;
-license=('GPL3')
-depends=('glib2' 'polkit' 'systemd')
-makedepends=('intltool' 'gobject-introspection')
-source=($url/$pkgname-$pkgver.tar.xz)
-md5sums=('3a81133e95faafb603de4475802cb06a')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/accountsservice \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---localstatedir=/var --disable-static --enable-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: accountsservice/repos/extra-i686/PKGBUILD (from rev 199021, 
accountsservice/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-06 14:06:17 UTC (rev 199022)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=accountsservice
+pkgver=0.6.35
+pkgrel=2
+pkgdesc=D-Bus interface for user account query and manipulation
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/software/accountsservice/;
+license=('GPL3')
+depends=('glib2' 'polkit' 'systemd')
+makedepends=('intltool' 'gobject-introspection')
+source=($url/$pkgname-$pkgver.tar.xz
+avoid-deleting-the-root-user.patch)
+md5sums=('3a81133e95faafb603de4475802cb06a'
+ '4970e77c3c0d56e513f9a5f29fdacd2c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../avoid-deleting-the-root-user.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/accountsservice \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--localstatedir=/var --disable-static --enable-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: accountsservice/repos/extra-i686/avoid-deleting-the-root-user.patch 
(from rev 199021, accountsservice/trunk/avoid-deleting-the-root-user.patch)
===
--- extra-i686/avoid-deleting-the-root-user.patch   
(rev 0)
+++ extra-i686/avoid-deleting-the-root-user.patch   2013-11-06 14:06:17 UTC 
(rev 199022)
@@ -0,0 +1,47 @@
+From 980692e6b9cfe4a34e22f566e0981a8c549e4348 Mon Sep 17 00:00:00 2001
+From: Matthias Clasen mcla...@redhat.com
+Date: Fri, 01 Nov 2013 21:09:25 +
+Subject: Avoid deleting the root user
+
+The check we have in place against deleting the root user can
+be tricked by exploiting the fact that we are checking a gint64,
+and then later cast it to a uid_t. This can be seen with the
+following test, which will delete your root account:
+
+qdbus --system org.freedesktop.Accounts /org/freedesktop/Accounts \
+ org.freedesktop.Accounts.DeleteUser -9223372036854775808 true
+
+Found with the dfuzzer tool,
+https://github.com/matusmarhefka/dfuzzer
+---
+diff --git a/src/daemon.c b/src/daemon.c
+index ea75190..9c7001b 100644
+--- a/src/daemon.c
 b/src/daemon.c
+@@ -1227,7 +1227,7 @@ daemon_uncache_user (AccountsAccounts  *accounts,
+ }
+ 
+ typedef struct {
+-gint64 uid;
++uid_t uid;
+ gboolean remove_files;
+ } DeleteUserData;
+ 
+@@ -1309,13 +1309,13 @@ daemon_delete_user (AccountsAccounts  *accounts,
+

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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 15:11:05
  Author: spupykin
Revision: 100621

upgpkg: myodbc 5.2.6-1

upd

Modified:
  myodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 13:54:05 UTC (rev 100620)
+++ PKGBUILD2013-11-06 14:11:05 UTC (rev 100621)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=myodbc
-pkgver=5.2.5
+pkgver=5.2.6
 pkgrel=1
 pkgdesc=ODBC driver/connector for mariadb
 arch=(i686 x86_64)
@@ -12,12 +12,16 @@
 license=('GPL')
 options=('libtool')
 
source=(http://cdn.mysql.com/Downloads/Connector-ODBC/5.2/mysql-connector-odbc-$pkgver-src.tar.gz;)
-md5sums=('909e0c3c9c341fe777d0a620c4084442')
+md5sums=('066bfed7dc472ef4b68bafc95ca45027')
 
 build() {
   cd $srcdir/mysql-connector-odbc-${pkgver}-src
-  unset LDFLAGS
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DWITH_UNIXODBC=1 .
+  unset CFLAGS
+  export LDFLAGS=-lpthread -ldl
+  cmake -G Unix Makefiles \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYSQLCLIENT_LIB_NAME=libmysqlclient_r.so \
+-DWITH_UNIXODBC=1 .
   make
 }
 



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 15:11:22
  Author: spupykin
Revision: 100622

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 14:11:05 UTC (rev 100621)
+++ community-i686/PKGBUILD 2013-11-06 14:11:22 UTC (rev 100622)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=myodbc
-pkgver=5.2.5
-pkgrel=1
-pkgdesc=ODBC driver/connector for mariadb
-arch=(i686 x86_64)
-url=http://dev.mysql.com/downloads/connector/odbc/;
-depends=('unixodbc' 'libmariadbclient')
-makedepends=('cmake')
-license=('GPL')
-options=('libtool')
-source=(http://cdn.mysql.com/Downloads/Connector-ODBC/5.2/mysql-connector-odbc-$pkgver-src.tar.gz;)
-md5sums=('909e0c3c9c341fe777d0a620c4084442')
-
-build() {
-  cd $srcdir/mysql-connector-odbc-${pkgver}-src
-  unset LDFLAGS
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DWITH_UNIXODBC=1 .
-  make
-}
-
-package() {
-  cd $srcdir/mysql-connector-odbc-${pkgver}-src
-  make DESTDIR=$pkgdir install
-  pushd $pkgdir/usr
-  rm -rf test
-  install -dm0755 share/mysql-connector-odbc
-  mv ChangeLog COPYING INSTALL Licenses_for_Third-Party_Components.txt README 
README.debug \
-   share/mysql-connector-odbc/
-  popd
-}

Copied: myodbc/repos/community-i686/PKGBUILD (from rev 100621, 
myodbc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 14:11:22 UTC (rev 100622)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=myodbc
+pkgver=5.2.6
+pkgrel=1
+pkgdesc=ODBC driver/connector for mariadb
+arch=(i686 x86_64)
+url=http://dev.mysql.com/downloads/connector/odbc/;
+depends=('unixodbc' 'libmariadbclient')
+makedepends=('cmake')
+license=('GPL')
+options=('libtool')
+source=(http://cdn.mysql.com/Downloads/Connector-ODBC/5.2/mysql-connector-odbc-$pkgver-src.tar.gz;)
+md5sums=('066bfed7dc472ef4b68bafc95ca45027')
+
+build() {
+  cd $srcdir/mysql-connector-odbc-${pkgver}-src
+  unset CFLAGS
+  export LDFLAGS=-lpthread -ldl
+  cmake -G Unix Makefiles \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYSQLCLIENT_LIB_NAME=libmysqlclient_r.so \
+-DWITH_UNIXODBC=1 .
+  make
+}
+
+package() {
+  cd $srcdir/mysql-connector-odbc-${pkgver}-src
+  make DESTDIR=$pkgdir install
+  pushd $pkgdir/usr
+  rm -rf test
+  install -dm0755 share/mysql-connector-odbc
+  mv ChangeLog COPYING INSTALL Licenses_for_Third-Party_Components.txt README 
README.debug \
+   share/mysql-connector-odbc/
+  popd
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 14:11:05 UTC (rev 100621)
+++ community-x86_64/PKGBUILD   2013-11-06 14:11:22 UTC (rev 100622)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=myodbc
-pkgver=5.2.5
-pkgrel=1
-pkgdesc=ODBC driver/connector for mariadb
-arch=(i686 x86_64)
-url=http://dev.mysql.com/downloads/connector/odbc/;
-depends=('unixodbc' 'libmariadbclient')
-makedepends=('cmake')
-license=('GPL')
-options=('libtool')
-source=(http://cdn.mysql.com/Downloads/Connector-ODBC/5.2/mysql-connector-odbc-$pkgver-src.tar.gz;)
-md5sums=('909e0c3c9c341fe777d0a620c4084442')
-
-build() {
-  cd $srcdir/mysql-connector-odbc-${pkgver}-src
-  unset LDFLAGS
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DWITH_UNIXODBC=1 .
-  make
-}
-
-package() {
-  cd $srcdir/mysql-connector-odbc-${pkgver}-src
-  make DESTDIR=$pkgdir install
-  pushd $pkgdir/usr
-  rm -rf test
-  install -dm0755 share/mysql-connector-odbc
-  mv ChangeLog COPYING INSTALL Licenses_for_Third-Party_Components.txt README 
README.debug \
-   share/mysql-connector-odbc/
-  popd
-}

Copied: myodbc/repos/community-x86_64/PKGBUILD (from rev 100621, 
myodbc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 14:11:22 UTC (rev 100622)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=myodbc
+pkgver=5.2.6
+pkgrel=1
+pkgdesc=ODBC driver/connector for mariadb
+arch=(i686 x86_64)
+url=http://dev.mysql.com/downloads/connector/odbc/;
+depends=('unixodbc' 'libmariadbclient')

[arch-commits] Commit in (4 files)

2013-11-06 Thread Felix Yan
Date: Wednesday, November 6, 2013 @ 15:16:14
  Author: fyan
Revision: 100623

addpkg: dd_rescue 1.40-2

Added:
  dd_rescue/
  dd_rescue/repos/
  dd_rescue/trunk/
  dd_rescue/trunk/PKGBUILD

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

Added: dd_rescue/trunk/PKGBUILD
===
--- dd_rescue/trunk/PKGBUILD(rev 0)
+++ dd_rescue/trunk/PKGBUILD2013-11-06 14:16:14 UTC (rev 100623)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+# Contributor: Patrick Leslie Polzer leslie.pol...@gmx.net
+# Contributor: Jose Riha jose1711 gmail com
+
+pkgname=dd_rescue
+pkgver=1.40
+pkgrel=2
+pkgdesc=A dd version that is very useful for data-recovery
+url=http://www.garloff.de/kurt/linux/ddrescue/;
+license=(GPL)
+depends=('glibc')
+arch=('x86_64' 'i686')
+source=(http://www.garloff.de/kurt/linux/ddrescue/$pkgname-${pkgver}.tar.gz;)
+md5sums=('690bc25884272461d994aca10f620b98')
+
+build() {
+  cd $pkgname
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir INSTALLDIR=$pkgdir/usr/bin install
+}


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


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

2013-11-06 Thread Felix Yan
Date: Wednesday, November 6, 2013 @ 15:17:22
  Author: fyan
Revision: 100624

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

Added:
  dd_rescue/repos/community-i686/
  dd_rescue/repos/community-i686/PKGBUILD
(from rev 100623, dd_rescue/trunk/PKGBUILD)
  dd_rescue/repos/community-x86_64/
  dd_rescue/repos/community-x86_64/PKGBUILD
(from rev 100623, dd_rescue/trunk/PKGBUILD)

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

Copied: dd_rescue/repos/community-i686/PKGBUILD (from rev 100623, 
dd_rescue/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 14:17:22 UTC (rev 100624)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+# Contributor: Patrick Leslie Polzer leslie.pol...@gmx.net
+# Contributor: Jose Riha jose1711 gmail com
+
+pkgname=dd_rescue
+pkgver=1.40
+pkgrel=2
+pkgdesc=A dd version that is very useful for data-recovery
+url=http://www.garloff.de/kurt/linux/ddrescue/;
+license=(GPL)
+depends=('glibc')
+arch=('x86_64' 'i686')
+source=(http://www.garloff.de/kurt/linux/ddrescue/$pkgname-${pkgver}.tar.gz;)
+md5sums=('690bc25884272461d994aca10f620b98')
+
+build() {
+  cd $pkgname
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir INSTALLDIR=$pkgdir/usr/bin install
+}

Copied: dd_rescue/repos/community-x86_64/PKGBUILD (from rev 100623, 
dd_rescue/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 14:17:22 UTC (rev 100624)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+# Contributor: Patrick Leslie Polzer leslie.pol...@gmx.net
+# Contributor: Jose Riha jose1711 gmail com
+
+pkgname=dd_rescue
+pkgver=1.40
+pkgrel=2
+pkgdesc=A dd version that is very useful for data-recovery
+url=http://www.garloff.de/kurt/linux/ddrescue/;
+license=(GPL)
+depends=('glibc')
+arch=('x86_64' 'i686')
+source=(http://www.garloff.de/kurt/linux/ddrescue/$pkgname-${pkgver}.tar.gz;)
+md5sums=('690bc25884272461d994aca10f620b98')
+
+build() {
+  cd $pkgname
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir INSTALLDIR=$pkgdir/usr/bin install
+}



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 16:24:46
  Author: spupykin
Revision: 100625

upgpkg: ejabberd 13.10-2

upd

Modified:
  ejabberd/trunk/PKGBUILD
  ejabberd/trunk/ejabberd.install
  ejabberd/trunk/ejabberd.service

--+
 PKGBUILD |   32 
 ejabberd.install |   10 +++---
 ejabberd.service |3 ++-
 3 files changed, 25 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 14:17:22 UTC (rev 100624)
+++ PKGBUILD2013-11-06 15:24:46 UTC (rev 100625)
@@ -5,28 +5,28 @@
 
 pkgname=ejabberd
 pkgver=13.10
-pkgrel=1
+pkgrel=2
 pkgdesc=Jabber server written in Erlang
 arch=('x86_64' 'i686')
 url=http://www.ejabberd.im/;
 license=(GPL)
 depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc' 'libyaml')
-makedepends=('git') # TODO: build all deps as packages
-backup=('etc/ejabberd/ejabberd.cfg'
+makedepends=('git')
+backup=('etc/ejabberd/ejabberd.yml'
'etc/ejabberd/ejabberdctl.cfg'
'etc/logrotate.d/ejabberd')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   git://github.com/processone/cache_tab
-   git://github.com/processone/tls
-   git://github.com/processone/stringprep
-   git://github.com/processone/xml
-   git://github.com/processone/p1_yaml
+   p1_cache_tab::git://github.com/processone/cache_tab
+   p1_tls::git://github.com/processone/tls
+   p1_stringprep::git://github.com/processone/stringprep
+   p1_xml::git://github.com/processone/xml
+   p1_yaml::git://github.com/processone/p1_yaml
git://github.com/rds13/xmlrpc
-   git://github.com/processone/epam
-   git://github.com/processone/zlib
+   p1_pam::git://github.com/processone/epam
+   p1_zlib::git://github.com/processone/zlib
git://github.com/basho/lager
-   git://github.com/processone/eiconv
+   p1_iconv::git://github.com/processone/eiconv
git://github.com/DeadZen/goldrush.git
$pkgname.logrotate
ejabberd.service)
@@ -43,8 +43,16 @@
  'SKIP'
  'SKIP'
  'f97c8a96160f30e0aecc9526c12e6606'
- 'df32aa17e40a7bc5d9946d3ba6fe5e16')
+ 'a437aff9d7d477fb036d527205617e18')
 
+prepare() {
+  mkdir -p $srcdir/$pkgname-$pkgver/deps
+  for i in goldrush lager p1_cache_tab p1_iconv p1_pam p1_stringprep p1_tls 
p1_xml p1_yaml p1_zlib xmlrpc; do
+rm -rf $srcdir/$pkgname-$pkgver/deps/$i
+mv $srcdir/$i $srcdir/$pkgname-$pkgver/deps
+  done
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \

Modified: ejabberd.install
===
--- ejabberd.install2013-11-06 14:17:22 UTC (rev 100624)
+++ ejabberd.install2013-11-06 15:24:46 UTC (rev 100625)
@@ -3,18 +3,14 @@
   useradd -r -G jabber -d /var/lib/ejabberd ejabberd
   chown -R ejabberd.jabber /var/log/ejabberd
   chown -R ejabberd.jabber /var/lib/ejabberd
-  chown root:ejabberd /usr/lib/ejabberd/priv/bin/epam
-  chown root:ejabberd /etc/ejabberd/ejabberd.cfg /etc/ejabberd/ejabberdctl.cfg 
/etc/ejabberd
-  chmod 4750 /usr/lib/ejabberd/priv/bin/epam
+  chown root:ejabberd /etc/ejabberd/ejabberd.yml /etc/ejabberd/ejabberdctl.cfg 
/etc/ejabberd
 }
 
 post_upgrade() {
   chown -R ejabberd.jabber /var/log/ejabberd
   chown -R ejabberd.jabber /var/lib/ejabberd
-  chown root:ejabberd /etc/ejabberd/ejabberd.cfg /etc/ejabberd/ejabberdctl.cfg 
/etc/ejabberd
-  chown root:ejabberd /usr/lib/ejabberd/priv/bin/epam
-  chmod 4750 /usr/lib/ejabberd/priv/bin/epam
-  echo  ejabberd looks into /var/lib/ejabberd for mnesia db now
+  chown root:ejabberd /etc/ejabberd/ejabberd.yml /etc/ejabberd/ejabberdctl.cfg 
/etc/ejabberd
+  echo !!! it is major update. Config must be converted to yaml format.
 }
 
 post_remove() {

Modified: ejabberd.service
===
--- ejabberd.service2013-11-06 14:17:22 UTC (rev 100624)
+++ ejabberd.service2013-11-06 15:24:46 UTC (rev 100625)
@@ -7,7 +7,8 @@
 User=ejabberd
 LimitNOFILE=16000
 RestartSec=5
-ExecStart=/usr/bin/erl -pa /usr/lib/ejabberd/ebin -sname ejabberd -s ejabberd 
-ejabberd config \/etc/ejabberd/ejabberd.cfg\ log_path 
\/var/log/ejabberd/ejabberd.log\ -sasl sasl_error_logger 
\{file,\/var/log/ejabberd/sasl.log\\} -mnesia dir \/var/lib/ejabberd\ 
-detached -kernel inetrc \/etc/ejabberd/inetrc\
+ExecStart=/usr/bin/ejabberdctl start
+ExecStop=/usr/bin/ejabberdctl stop
 
 [Install]
 WantedBy=multi-user.target



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

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 16:25:10
  Author: spupykin
Revision: 100626

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

Added:
  ejabberd/repos/community-i686/PKGBUILD
(from rev 100625, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-i686/ejabberd.install
(from rev 100625, ejabberd/trunk/ejabberd.install)
  ejabberd/repos/community-i686/ejabberd.logrotate
(from rev 100625, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-i686/ejabberd.service
(from rev 100625, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 100625, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.install
(from rev 100625, ejabberd/trunk/ejabberd.install)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 100625, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/ejabberd.service
(from rev 100625, ejabberd/trunk/ejabberd.service)
Deleted:
  ejabberd/repos/community-i686/PKGBUILD
  ejabberd/repos/community-i686/ejabberd.install
  ejabberd/repos/community-i686/ejabberd.logrotate
  ejabberd/repos/community-i686/ejabberd.service
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.install
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/ejabberd.service

-+
 /PKGBUILD   |  152 ++
 /ejabberd.install   |   42 +
 /ejabberd.logrotate |   24 +
 /ejabberd.service   |   28 ++
 community-i686/PKGBUILD |   68 ---
 community-i686/ejabberd.install |   25 -
 community-i686/ejabberd.logrotate   |   12 --
 community-i686/ejabberd.service |   13 --
 community-x86_64/PKGBUILD   |   68 ---
 community-x86_64/ejabberd.install   |   25 -
 community-x86_64/ejabberd.logrotate |   12 --
 community-x86_64/ejabberd.service   |   13 --
 12 files changed, 246 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 15:24:46 UTC (rev 100625)
+++ community-i686/PKGBUILD 2013-11-06 15:25:10 UTC (rev 100626)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jeff 'codemac' Mickey j...@archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-
-pkgname=ejabberd
-pkgver=13.10
-pkgrel=1
-pkgdesc=Jabber server written in Erlang
-arch=('x86_64' 'i686')
-url=http://www.ejabberd.im/;
-license=(GPL)
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc' 'libyaml')
-makedepends=('git') # TODO: build all deps as packages
-backup=('etc/ejabberd/ejabberd.cfg'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   git://github.com/processone/cache_tab
-   git://github.com/processone/tls
-   git://github.com/processone/stringprep
-   git://github.com/processone/xml
-   git://github.com/processone/p1_yaml
-   git://github.com/rds13/xmlrpc
-   git://github.com/processone/epam
-   git://github.com/processone/zlib
-   git://github.com/basho/lager
-   git://github.com/processone/eiconv
-   git://github.com/DeadZen/goldrush.git
-   $pkgname.logrotate
-   ejabberd.service)
-md5sums=('70a78db576e36c1e714205c983c8a568'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'f97c8a96160f30e0aecc9526c12e6606'
- 'df32aa17e40a7bc5d9946d3ba6fe5e16')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-pam --enable-odbc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -d $pkgdir/var/lib/$pkgname
-  install -D -m0644 $srcdir/$pkgname.logrotate 
$pkgdir/etc/logrotate.d/$pkgname
-  chmod ug+r $pkgdir/etc/$pkgname/*
-  mkdir -p $pkgdir/usr/bin
-  mv $pkgdir/usr/sbin/ejabberdctl $pkgdir/usr/bin/ejabberdctl
-  chmod a+rx $pkgdir/usr/bin/ejabberdctl 
$pkgdir/usr/lib/ejabberd/priv/bin/captcha.sh
-  rm -rf $pkgdir/var/lock $pkgdir/usr/sbin
-  install -Dm0644 $srcdir/ejabberd.service 
$pkgdir/usr/lib/systemd/system/ejabberd.service
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ejabberd/repos/community-i686/PKGBUILD (from rev 100625, 
ejabberd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 15:25:10 UTC (rev 100626)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Sergej Pupykin 

[arch-commits] Commit in xbmc-pvr-addons/trunk (PKGBUILD)

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 17:33:23
  Author: spupykin
Revision: 100627

upgpkg: xbmc-pvr-addons 20131106git-1

upd

Modified:
  xbmc-pvr-addons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 15:25:10 UTC (rev 100626)
+++ PKGBUILD2013-11-06 16:33:23 UTC (rev 100627)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=xbmc-pvr-addons
-pkgver=20131105git
+pkgver=20131106git
 pkgrel=1
 pkgdesc=XBMC PVR add-ons for current stable xbmc
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 conflicts=('xbmc-pvr-addons-git')
 
#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
 #source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
-source=(git://github.com/fetzerch/xbmc-pvr-addons.git)
+source=(git://github.com/fetzerch/xbmc-pvr-addons.git#branch=frodo)
 md5sums=('SKIP')
 
 build() {



[arch-commits] Commit in xbmc-pvr-addons/repos (4 files)

2013-11-06 Thread Sergej Pupykin
Date: Wednesday, November 6, 2013 @ 17:33:42
  Author: spupykin
Revision: 100628

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

Added:
  xbmc-pvr-addons/repos/community-i686/PKGBUILD
(from rev 100627, xbmc-pvr-addons/trunk/PKGBUILD)
  xbmc-pvr-addons/repos/community-x86_64/PKGBUILD
(from rev 100627, xbmc-pvr-addons/trunk/PKGBUILD)
Deleted:
  xbmc-pvr-addons/repos/community-i686/PKGBUILD
  xbmc-pvr-addons/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 16:33:23 UTC (rev 100627)
+++ community-i686/PKGBUILD 2013-11-06 16:33:42 UTC (rev 100628)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=xbmc-pvr-addons
-pkgver=20131105git
-pkgrel=1
-pkgdesc=XBMC PVR add-ons for current stable xbmc
-arch=('i686' 'x86_64')
-url=https://github.com/opdenkamp/xbmc-pvr-addons;
-license=('GPL3')
-depends=('xbmc' 'libmysqlclient')
-makedepends=('git' 'libmysqlclient' 'boost')
-optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
-conflicts=('xbmc-pvr-addons-git')
-#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
-#source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
-source=(git://github.com/fetzerch/xbmc-pvr-addons.git)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-  ./bootstrap
-  ./configure --prefix=/usr --enable-addons-with-dependencies
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir/ install
-}

Copied: xbmc-pvr-addons/repos/community-i686/PKGBUILD (from rev 100627, 
xbmc-pvr-addons/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 16:33:42 UTC (rev 100628)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=xbmc-pvr-addons
+pkgver=20131106git
+pkgrel=1
+pkgdesc=XBMC PVR add-ons for current stable xbmc
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('xbmc' 'libmysqlclient')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+conflicts=('xbmc-pvr-addons-git')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
+#source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
+source=(git://github.com/fetzerch/xbmc-pvr-addons.git#branch=frodo)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/$pkgname
+  ./bootstrap
+  ./configure --prefix=/usr --enable-addons-with-dependencies
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 16:33:23 UTC (rev 100627)
+++ community-x86_64/PKGBUILD   2013-11-06 16:33:42 UTC (rev 100628)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=xbmc-pvr-addons
-pkgver=20131105git
-pkgrel=1
-pkgdesc=XBMC PVR add-ons for current stable xbmc
-arch=('i686' 'x86_64')
-url=https://github.com/opdenkamp/xbmc-pvr-addons;
-license=('GPL3')
-depends=('xbmc' 'libmysqlclient')
-makedepends=('git' 'libmysqlclient' 'boost')
-optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
-conflicts=('xbmc-pvr-addons-git')
-#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
-#source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
-source=(git://github.com/fetzerch/xbmc-pvr-addons.git)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-  ./bootstrap
-  ./configure --prefix=/usr --enable-addons-with-dependencies
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir/ install
-}

Copied: xbmc-pvr-addons/repos/community-x86_64/PKGBUILD (from rev 100627, 
xbmc-pvr-addons/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 16:33:42 UTC (rev 100628)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=xbmc-pvr-addons
+pkgver=20131106git
+pkgrel=1
+pkgdesc=XBMC PVR add-ons for current stable xbmc
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('xbmc' 'libmysqlclient')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 

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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 17:42:30
  Author: foutrelis
Revision: 100630

archrelease: copy trunk to community-any

Added:
  gcompris-data/repos/community-any/PKGBUILD
(from rev 100629, gcompris-data/trunk/PKGBUILD)
Deleted:
  gcompris-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-06 16:42:19 UTC (rev 100629)
+++ PKGBUILD2013-11-06 16:42:30 UTC (rev 100630)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
-
-pkgname=gcompris-data
-pkgver=12.11
-pkgrel=1
-pkgdesc=Data files for GCompris
-arch=('any')
-url=http://gcompris.net/;
-license=('GPL3')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess'
- 'pygtk' 'librsvg' 'gnet' 'python2-pysqlite'
- 'gstreamer0.10-base-plugins')
-source=(http://downloads.sourceforge.net/project/gcompris/$pkgver/gcompris-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
-
-build() {
-  cd $srcdir/gcompris-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/gcompris-$pkgver
-  make DESTDIR=$pkgdir install-data
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris-data/repos/community-any/PKGBUILD (from rev 100629, 
gcompris-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-06 16:42:30 UTC (rev 100630)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
+
+pkgname=gcompris-data
+pkgver=13.11
+pkgrel=1
+pkgdesc=Data files for GCompris
+arch=('any')
+url=http://gcompris.net/;
+license=('GPL3')
+makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'pygtk' 'librsvg'
+ 'gnet' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
+source=(http://downloads.sourceforge.net/project/gcompris/$pkgver/gcompris-$pkgver.tar.bz2)
+sha256sums=('418dad2c8f0fc90e16e97ab67b6700e3af5f33ae05d83f28f3b1117183f88c57')
+
+build() {
+  cd $srcdir/gcompris-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gcompris-$pkgver
+  make DESTDIR=$pkgdir install-data
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 17:42:37
  Author: foutrelis
Revision: 100631

upgpkg: gcompris 13.11-1

New upstream release.

Modified:
  gcompris/trunk/PKGBUILD

--+
 PKGBUILD |   19 ---
 1 file changed, 12 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 16:42:30 UTC (rev 100630)
+++ PKGBUILD2013-11-06 16:42:37 UTC (rev 100631)
@@ -3,8 +3,8 @@
 # Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
 
 pkgname=gcompris
-pkgver=12.11
-pkgrel=2
+pkgver=13.11
+pkgrel=1
 pkgdesc=Educational software suite comprising of numerous activities for 
children aged 2 to 10
 arch=('i686' 'x86_64')
 url=http://gcompris.net/;
@@ -11,12 +11,17 @@
 license=('GPL3')
 depends=('pygtk' 'librsvg' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
 optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity'
-'gnuchess: for the chess activity')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
+'tuxpaint: for the painting activity')
+makedepends=('texinfo' 'texi2html' 'intltool' 'gettext')
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
+sha256sums=('418dad2c8f0fc90e16e97ab67b6700e3af5f33ae05d83f28f3b1117183f88c57')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i 's/$GNUCHESS/gcompris-gnuchess/' configure
+}
+
 build() {
   cd $pkgname-$pkgver
 
@@ -25,7 +30,7 @@
 }
 
 package() {
-  depends+=('gcompris-data')
+  depends+=(gcompris-data=$pkgver-$pkgrel)
 
   cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install-exec



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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 17:42:19
  Author: foutrelis
Revision: 100629

upgpkg: gcompris-data 13.11-1

New upstream release.

Modified:
  gcompris-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 16:33:42 UTC (rev 100628)
+++ PKGBUILD2013-11-06 16:42:19 UTC (rev 100629)
@@ -3,17 +3,16 @@
 # Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
 
 pkgname=gcompris-data
-pkgver=12.11
+pkgver=13.11
 pkgrel=1
 pkgdesc=Data files for GCompris
 arch=('any')
 url=http://gcompris.net/;
 license=('GPL3')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess'
- 'pygtk' 'librsvg' 'gnet' 'python2-pysqlite'
- 'gstreamer0.10-base-plugins')
+makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'pygtk' 'librsvg'
+ 'gnet' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
 
source=(http://downloads.sourceforge.net/project/gcompris/$pkgver/gcompris-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
+sha256sums=('418dad2c8f0fc90e16e97ab67b6700e3af5f33ae05d83f28f3b1117183f88c57')
 
 build() {
   cd $srcdir/gcompris-$pkgver



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

2013-11-06 Thread Evangelos Foutras
Date: Wednesday, November 6, 2013 @ 17:42:49
  Author: foutrelis
Revision: 100632

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 16:42:37 UTC (rev 100631)
+++ community-i686/PKGBUILD 2013-11-06 16:42:49 UTC (rev 100632)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
-
-pkgname=gcompris
-pkgver=12.11
-pkgrel=2
-pkgdesc=Educational software suite comprising of numerous activities for 
children aged 2 to 10
-arch=('i686' 'x86_64')
-url=http://gcompris.net/;
-license=('GPL3')
-depends=('pygtk' 'librsvg' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
-optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity'
-'gnuchess: for the chess activity')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=('gcompris-data')
-
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install-exec
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris/repos/community-i686/PKGBUILD (from rev 100631, 
gcompris/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 16:42:49 UTC (rev 100632)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
+
+pkgname=gcompris
+pkgver=13.11
+pkgrel=1
+pkgdesc=Educational software suite comprising of numerous activities for 
children aged 2 to 10
+arch=('i686' 'x86_64')
+url=http://gcompris.net/;
+license=('GPL3')
+depends=('pygtk' 'librsvg' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
+optdepends=('gnucap: for computer simulation within the electricity activity'
+'tuxpaint: for the painting activity')
+makedepends=('texinfo' 'texi2html' 'intltool' 'gettext')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('418dad2c8f0fc90e16e97ab67b6700e3af5f33ae05d83f28f3b1117183f88c57')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i 's/$GNUCHESS/gcompris-gnuchess/' configure
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends+=(gcompris-data=$pkgver-$pkgrel)
+
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install-exec
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-06 16:42:37 UTC (rev 100631)
+++ community-x86_64/PKGBUILD   2013-11-06 16:42:49 UTC (rev 100632)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Daniel Isenmann daniel.isenmann [at] gmx.de
-
-pkgname=gcompris
-pkgver=12.11
-pkgrel=2
-pkgdesc=Educational software suite comprising of numerous activities for 
children aged 2 to 10
-arch=('i686' 'x86_64')
-url=http://gcompris.net/;
-license=('GPL3')
-depends=('pygtk' 'librsvg' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
-optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity'
-'gnuchess: for the chess activity')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=('gcompris-data')
-
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install-exec
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris/repos/community-x86_64/PKGBUILD (from rev 100631, 
gcompris/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-06 16:42:49 

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

2013-11-06 Thread Jan Steffens
Date: Wednesday, November 6, 2013 @ 18:47:33
  Author: heftig
Revision: 199024

2.0.25

Modified:
  sdl_gfx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 15:42:15 UTC (rev 199023)
+++ PKGBUILD2013-11-06 17:47:33 UTC (rev 199024)
@@ -4,8 +4,8 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=sdl_gfx
-pkgver=2.0.24
-pkgrel=2
+pkgver=2.0.25
+pkgrel=1
 pkgdesc=SDL Graphic Primitives
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -12,7 +12,7 @@
 
url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
 source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
 depends=('sdl')
-md5sums=('838514185ff9a3b6377760aaa52fef8a')
+md5sums=('ea24ed4b82ff1304809c363494fa8e16')
 
 build() {
   cd SDL_gfx-${pkgver}



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

2013-11-06 Thread Jan Steffens
Date: Wednesday, November 6, 2013 @ 18:48:20
  Author: heftig
Revision: 199025

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

Added:
  sdl_gfx/repos/staging-i686/
  sdl_gfx/repos/staging-i686/PKGBUILD
(from rev 199024, sdl_gfx/trunk/PKGBUILD)
  sdl_gfx/repos/staging-x86_64/
  sdl_gfx/repos/staging-x86_64/PKGBUILD
(from rev 199024, sdl_gfx/trunk/PKGBUILD)

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

Copied: sdl_gfx/repos/staging-i686/PKGBUILD (from rev 199024, 
sdl_gfx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-11-06 17:48:20 UTC (rev 199025)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=sdl_gfx
+pkgver=2.0.25
+pkgrel=1
+pkgdesc=SDL Graphic Primitives
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
+source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
+depends=('sdl')
+md5sums=('ea24ed4b82ff1304809c363494fa8e16')
+
+build() {
+  cd SDL_gfx-${pkgver}
+
+  if [ ${CARCH} == x86_64 ]; then
+./configure --prefix=/usr --disable-mmx
+  else
+./configure --prefix=/usr
+  fi
+
+  make
+}
+
+package() {
+  cd SDL_gfx-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: sdl_gfx/repos/staging-x86_64/PKGBUILD (from rev 199024, 
sdl_gfx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-11-06 17:48:20 UTC (rev 199025)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=sdl_gfx
+pkgver=2.0.25
+pkgrel=1
+pkgdesc=SDL Graphic Primitives
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx;
+source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
+depends=('sdl')
+md5sums=('ea24ed4b82ff1304809c363494fa8e16')
+
+build() {
+  cd SDL_gfx-${pkgver}
+
+  if [ ${CARCH} == x86_64 ]; then
+./configure --prefix=/usr --disable-mmx
+  else
+./configure --prefix=/usr
+  fi
+
+  make
+}
+
+package() {
+  cd SDL_gfx-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2013-11-06 Thread Jan Steffens
Date: Wednesday, November 6, 2013 @ 19:12:09
  Author: heftig
Revision: 199026

sdl_gfx rebuild

Modified:
  perl-sdl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 17:48:20 UTC (rev 199025)
+++ PKGBUILD2013-11-06 18:12:09 UTC (rev 199026)
@@ -5,7 +5,7 @@
 
 pkgname=perl-sdl
 pkgver=2.540
-pkgrel=4
+pkgrel=5
 pkgdesc=Simple DirectMedia Layer for Perl
 arch=(i686 x86_64)
 license=(LGPL)



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

2013-11-06 Thread Jan Steffens
Date: Wednesday, November 6, 2013 @ 19:12:56
  Author: heftig
Revision: 199027

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

Added:
  perl-sdl/repos/staging-i686/
  perl-sdl/repos/staging-i686/PKGBUILD
(from rev 199026, perl-sdl/trunk/PKGBUILD)
  perl-sdl/repos/staging-x86_64/
  perl-sdl/repos/staging-x86_64/PKGBUILD
(from rev 199026, perl-sdl/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   42 ++
 staging-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: perl-sdl/repos/staging-i686/PKGBUILD (from rev 199026, 
perl-sdl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-11-06 18:12:56 UTC (rev 199027)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Sarah Hay sarah...@mb.sympatico.ca
+
+pkgname=perl-sdl
+pkgver=2.540
+pkgrel=5
+pkgdesc=Simple DirectMedia Layer for Perl
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://sdl.perl.org;
+depends=(perl-alien-sdl perl-tie-simple
+ sdl_net sdl_ttf sdl_image sdl_mixer sdl_gfx sdl_pango smpeg)
+makedepends=('perl-module-build=0.40')
+options=('!emptydirs')
+replaces=(sdl_perl)
+conflicts=(sdl_perl)
+provides=(sdl_perl=$pkgver)
+# http://search.cpan.org/dist/SDL/
+_author=JTPALMER
+source=(http://search.cpan.org/CPAN/authors/id/${_author::1}/${_author::2}/$_author/SDL-$pkgver.tar.gz)
+md5sums=('1a5d7849cbdfde4982b28458e38ab172')
+
+build() {
+  cd SDL-$pkgver
+  # Perl selects the proper CFLAGS set for binary modules
+  unset CFLAGS
+  # install module in vendor directories
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd SDL-$pkgver
+  perl Build test || true
+}
+
+package() {
+  cd SDL-$pkgver
+  perl Build install destdir=$pkgdir
+}

Copied: perl-sdl/repos/staging-x86_64/PKGBUILD (from rev 199026, 
perl-sdl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-11-06 18:12:56 UTC (rev 199027)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Sarah Hay sarah...@mb.sympatico.ca
+
+pkgname=perl-sdl
+pkgver=2.540
+pkgrel=5
+pkgdesc=Simple DirectMedia Layer for Perl
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://sdl.perl.org;
+depends=(perl-alien-sdl perl-tie-simple
+ sdl_net sdl_ttf sdl_image sdl_mixer sdl_gfx sdl_pango smpeg)
+makedepends=('perl-module-build=0.40')
+options=('!emptydirs')
+replaces=(sdl_perl)
+conflicts=(sdl_perl)
+provides=(sdl_perl=$pkgver)
+# http://search.cpan.org/dist/SDL/
+_author=JTPALMER
+source=(http://search.cpan.org/CPAN/authors/id/${_author::1}/${_author::2}/$_author/SDL-$pkgver.tar.gz)
+md5sums=('1a5d7849cbdfde4982b28458e38ab172')
+
+build() {
+  cd SDL-$pkgver
+  # Perl selects the proper CFLAGS set for binary modules
+  unset CFLAGS
+  # install module in vendor directories
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd SDL-$pkgver
+  perl Build test || true
+}
+
+package() {
+  cd SDL-$pkgver
+  perl Build install destdir=$pkgdir
+}



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

2013-11-06 Thread Ike Devolder
Date: Wednesday, November 6, 2013 @ 20:23:09
  Author: idevolder
Revision: 100633

php-mongo :: 1.4.5

Modified:
  php-mongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 16:42:49 UTC (rev 100632)
+++ PKGBUILD2013-11-06 19:23:09 UTC (rev 100633)
@@ -2,8 +2,8 @@
 # Contributor: Jarek Sedlacek jareksedla...@gmail.com
 
 pkgname=php-mongo
-pkgver=1.4.3
-pkgrel=3
+pkgver=1.4.5
+pkgrel=1
 pkgdesc=Officially supported PHP driver for MongoDB
 arch=(i686 x86_64)
 url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
@@ -26,5 +26,5 @@
make INSTALL_ROOT=$pkgdir install
install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
 }
-sha256sums=('43686e8c9fabfec6852fa42eb664aa662a6d423b4bd3eba41f42514892d8d4a4'
+sha256sums=('45b20d4fc37e2ce1bc85dfb79418993ecfe61c519d6ad24e7d28cb4e1b380a55'
 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')



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

2013-11-06 Thread Ike Devolder
Date: Wednesday, November 6, 2013 @ 20:23:24
  Author: idevolder
Revision: 100634

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

Added:
  php-mongo/repos/community-i686/PKGBUILD
(from rev 100633, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-i686/mongo.ini
(from rev 100633, php-mongo/trunk/mongo.ini)
  php-mongo/repos/community-x86_64/PKGBUILD
(from rev 100633, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-x86_64/mongo.ini
(from rev 100633, php-mongo/trunk/mongo.ini)
Deleted:
  php-mongo/repos/community-i686/PKGBUILD
  php-mongo/repos/community-i686/mongo.ini
  php-mongo/repos/community-x86_64/PKGBUILD
  php-mongo/repos/community-x86_64/mongo.ini

+
 /PKGBUILD  |   60 +++
 /mongo.ini |   56 
 community-i686/PKGBUILD|   30 -
 community-i686/mongo.ini   |   28 
 community-x86_64/PKGBUILD  |   30 -
 community-x86_64/mongo.ini |   28 
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-06 19:23:09 UTC (rev 100633)
+++ community-i686/PKGBUILD 2013-11-06 19:23:24 UTC (rev 100634)
@@ -1,30 +0,0 @@
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Jarek Sedlacek jareksedla...@gmail.com
-
-pkgname=php-mongo
-pkgver=1.4.3
-pkgrel=3
-pkgdesc=Officially supported PHP driver for MongoDB
-arch=(i686 x86_64)
-url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
-license=(APACHE)
-depends=(php)
-backup=(etc/php/conf.d/mongo.ini)
-source=(
-   http://pecl.php.net/get/mongo-$pkgver.tgz;
-   mongo.ini
-)
-
-build() {
-   cd mongo-$pkgver
-   phpize
-   ./configure --prefix=/usr --enable-mongo
-}
-
-package() {
-   cd mongo-$pkgver
-   make INSTALL_ROOT=$pkgdir install
-   install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
-}
-sha256sums=('43686e8c9fabfec6852fa42eb664aa662a6d423b4bd3eba41f42514892d8d4a4'
-'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Copied: php-mongo/repos/community-i686/PKGBUILD (from rev 100633, 
php-mongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 19:23:24 UTC (rev 100634)
@@ -0,0 +1,30 @@
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Jarek Sedlacek jareksedla...@gmail.com
+
+pkgname=php-mongo
+pkgver=1.4.5
+pkgrel=1
+pkgdesc=Officially supported PHP driver for MongoDB
+arch=(i686 x86_64)
+url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
+license=(APACHE)
+depends=(php)
+backup=(etc/php/conf.d/mongo.ini)
+source=(
+   http://pecl.php.net/get/mongo-$pkgver.tgz;
+   mongo.ini
+)
+
+build() {
+   cd mongo-$pkgver
+   phpize
+   ./configure --prefix=/usr --enable-mongo
+}
+
+package() {
+   cd mongo-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+   install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
+}
+sha256sums=('45b20d4fc37e2ce1bc85dfb79418993ecfe61c519d6ad24e7d28cb4e1b380a55'
+'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Deleted: community-i686/mongo.ini
===
--- community-i686/mongo.ini2013-11-06 19:23:09 UTC (rev 100633)
+++ community-i686/mongo.ini2013-11-06 19:23:24 UTC (rev 100634)
@@ -1,28 +0,0 @@
-; Tell PHP to load the Mongo Extension on startup
-extension=mongo.so
-
-[mongo]
-; If the driver should reconnect to mongo
-mongo.auto_reconnect = False
-
-; Whether to allow persistent connections
-mongo.allow_persistent = On
-
-; Maximum number of persistent connections (-1 means unlimited)
-mongo.max_persistent = -1
-
-; Maximum number of links (persistent and non-persistent, -1 means unlimited)
-mongo.max_connections = -1
-
-; Default host for mongo connection
-mongo.default_host = localhost
-
-; Default port for mongo database
-mongo.default_port = 27017
-
-; When saving files to the database, size of chunks to split them into
-mongo.chunk_size = 262400
-
-; Specify an alternate character to $ to use for special db functions ($set, 
$push, $exists, etc.)
-mongo.cmd = $
-

Copied: php-mongo/repos/community-i686/mongo.ini (from rev 100633, 
php-mongo/trunk/mongo.ini)
===
--- community-i686/mongo.ini(rev 0)
+++ community-i686/mongo.ini2013-11-06 19:23:24 UTC (rev 100634)
@@ -0,0 +1,28 @@
+; Tell PHP to load the Mongo Extension on startup
+extension=mongo.so
+
+[mongo]
+; If the driver should reconnect to mongo
+mongo.auto_reconnect = 

[arch-commits] Commit in bluez/trunk (PKGBUILD bluetooth.modprobe)

2013-11-06 Thread Andreas Radke
Date: Wednesday, November 6, 2013 @ 20:33:13
  Author: andyrtr
Revision: 199028

upgpkg: bluez 5.10-3

add api documentation; add a fix for btusb module loading that should solve 
some issues with broken devices

Added:
  bluez/trunk/bluetooth.modprobe
Modified:
  bluez/trunk/PKGBUILD

+
 PKGBUILD   |   17 +
 bluetooth.modprobe |3 +++
 2 files changed, 16 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 18:12:56 UTC (rev 199027)
+++ PKGBUILD2013-11-06 19:33:13 UTC (rev 199028)
@@ -6,13 +6,15 @@
 pkgbase=bluez
 pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
 pkgver=5.10
-pkgrel=2
+pkgrel=3
 url=http://www.bluez.org/;
 arch=('i686' 'x86_64')
 license=('GPL2')
 makedepends=('dbus' 'libical' 'systemd')
-source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('7dce03b332b3a3e7465fb88352b8a404')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+bluetooth.modprobe)
+md5sums=('7dce03b332b3a3e7465fb88352b8a404'
+ '671c15e99d7154c2df987b71c5851b3d')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -26,7 +28,7 @@
   --enable-library # this is deprecated
 #  --enable-experimental \
 
-  make
+  make all V=1
 }
 
 check() {
@@ -50,6 +52,13 @@
install-dbussystembusDATA \
install-dbusDATA \
install-man8
+
+  # add basic documention
+  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
+  cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/
+  # fix module loading errors
+  install -dm755 ${pkgdir}/usr/lib/modprobe.d
+  install -Dm644 ${srcdir}/bluetooth.modprobe 
${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf  
 }
 
 package_bluez-utils() {

Added: bluetooth.modprobe
===
--- bluetooth.modprobe  (rev 0)
+++ bluetooth.modprobe  2013-11-06 19:33:13 UTC (rev 199028)
@@ -0,0 +1,3 @@
+# use reset=1 as default, since it should be safe for recent devices and
+# solves all kind of problems.
+options btusb reset=1



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

2013-11-06 Thread Andreas Radke
Date: Wednesday, November 6, 2013 @ 20:33:41
  Author: andyrtr
Revision: 199029

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

Added:
  bluez/repos/testing-i686/PKGBUILD
(from rev 199028, bluez/trunk/PKGBUILD)
  bluez/repos/testing-i686/bluetooth.modprobe
(from rev 199028, bluez/trunk/bluetooth.modprobe)
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 199028, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 199028, bluez/trunk/bluetooth.modprobe)
Deleted:
  bluez/repos/testing-i686/PKGBUILD
  bluez/repos/testing-x86_64/PKGBUILD

---+
 /PKGBUILD |  232 
 testing-i686/PKGBUILD |  107 
 testing-i686/bluetooth.modprobe   |3 
 testing-x86_64/PKGBUILD   |  107 
 testing-x86_64/bluetooth.modprobe |3 
 5 files changed, 238 insertions(+), 214 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-11-06 19:33:13 UTC (rev 199028)
+++ testing-i686/PKGBUILD   2013-11-06 19:33:41 UTC (rev 199029)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Geoffroy Carrier geoff...@archlinux.org
-
-pkgbase=bluez
-pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
-pkgver=5.10
-pkgrel=2
-url=http://www.bluez.org/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('dbus' 'libical' 'systemd')
-source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('7dce03b332b3a3e7465fb88352b8a404')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure \
-  --prefix=/usr \
-  --mandir=/usr/share/man \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-library # this is deprecated
-#  --enable-experimental \
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-
-package_bluez() {
-  pkgdesc=Daemons for the bluetooth protocol stack
-  depends=('libical' 'dbus' 'glib2')
-  backup=('etc/dbus-1/system.d/bluetooth.conf')
-  conflicts=('obexd-client' 'obexd-server')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-libexecPROGRAMS \
-   install-dbussessionbusDATA \
-   install-systemdsystemunitDATA \
-   install-systemduserunitDATA \
-   install-dbussystembusDATA \
-   install-dbusDATA \
-   install-man8
-}
-
-package_bluez-utils() {
-  pkgdesc=Development and debugging utilities for the bluetooth protocol 
stack
-  depends=('dbus' 'systemd')
-  conflicts=('bluez-hcidump')
-  provides=('bluez-hcidump')
-  replaces=('bluez-hcidump' 'bluez=4.101')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-binPROGRAMS \
-   install-man1
-
-  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
-  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
-  #rmdir ${pkgdir}/usr/lib
-  rm -rf ${pkgdir}/usr/lib
-  
-  # move the hid2hci man page out
-  mv ${pkgdir}/usr/share/man/man1/hid2hci.1 ${srcdir}/
-}
-
-package_bluez-libs() {
-  pkgdesc=Deprecated libraries for the bluetooth protocol stack
-  depends=('glibc')
-  license=('LGPL2.1')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-includeHEADERS \
-   install-libLTLIBRARIES \
-   install-pkgconfigDATA
-}
-
-package_bluez-cups() {
-  pkgdesc=CUPS printer backend for Bluetooth printers
-  depends=('cups')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install-cupsPROGRAMS
-}
-
-package_bluez-hid2hci() {
-  pkgdesc=Put HID proxying bluetooth HCI's into HCI mode
-  depends=('systemd')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} \
-   install-udevPROGRAMS \
-   install-rulesDATA
-  
-  install -dm755 ${pkgdir}/usr/share/man/man1
-  mv ${srcdir}/hid2hci.1 ${pkgdir}/usr/share/man/man1/hid2hci.1
-}

Copied: bluez/repos/testing-i686/PKGBUILD (from rev 199028, 
bluez/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-06 19:33:41 UTC (rev 199029)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
+pkgver=5.10
+pkgrel=3
+url=http://www.bluez.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd')
+source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
+bluetooth.modprobe)
+md5sums=('7dce03b332b3a3e7465fb88352b8a404'
+ '671c15e99d7154c2df987b71c5851b3d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  

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

2013-11-06 Thread Federico Cinelli
Date: Wednesday, November 6, 2013 @ 20:53:24
  Author: cinelli
Revision: 100635

upgpkg: ifuse 1.1.2-5

Added:
  ifuse/trunk/0001-Updated-for-libimobiledevice-1.1.5.patch
Modified:
  ifuse/trunk/PKGBUILD

---+
 0001-Updated-for-libimobiledevice-1.1.5.patch |   83 
 PKGBUILD  |   13 ++-
 2 files changed, 93 insertions(+), 3 deletions(-)

Added: 0001-Updated-for-libimobiledevice-1.1.5.patch
===
--- 0001-Updated-for-libimobiledevice-1.1.5.patch   
(rev 0)
+++ 0001-Updated-for-libimobiledevice-1.1.5.patch   2013-11-06 19:53:24 UTC 
(rev 100635)
@@ -0,0 +1,83 @@
+From 9ac32aa3cb2ed5242c0fe3c58ef5f571bf2b95d7 Mon Sep 17 00:00:00 2001
+From: Nikias Bassen nik...@gmx.li
+Date: Sun, 24 Mar 2013 02:45:23 +0100
+Subject: [PATCH 1/1] Updated for libimobiledevice = 1.1.5
+
+---
+ configure.ac |  4 
+ src/ifuse.c  | 20 +++-
+ 2 files changed, 23 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 85d131a..ca518ff 100644
+--- a/configure.ac
 b/configure.ac
+@@ -17,6 +17,10 @@ PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 
= 1.1.0, libimobiled
+ if test x$libimobiledevice_1_1 = xyes; then
+   AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1], 1, [Define if libimobiledevice is 
using 1.1.0 API])
+ fi
++PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 = 1.1.5, 
libimobiledevice_1_1_5=yes, libimobiledevice_1_1_5=no)
++if test x$libimobiledevice_1_1_5 = xyes; then
++  AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1_5], 1, [Define if libimobiledevice is 
using 1.1.5 API])
++fi
+ libimobiledevice_VERSION=`$PKG_CONFIG --modversion libimobiledevice-1.0 
21`
+ PKG_CHECK_MODULES(libfuse, fuse = 2.7.0)
+ PKG_CHECK_MODULES(libplist, libplist)
+diff --git a/src/ifuse.c b/src/ifuse.c
+index b5735ee..9fafb47 100644
+--- a/src/ifuse.c
 b/src/ifuse.c
+@@ -71,7 +71,11 @@ static struct {
+   char *appid;
+ #endif
+   char *service_name;
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  lockdownd_service_descriptor_t service;
++#else
+   uint16_t port;
++#endif
+ } opts;
+ 
+ enum {
+@@ -402,7 +406,11 @@ void *ifuse_init(struct fuse_conn_info *conn)
+   afc_client_new_from_house_arrest_client(house_arrest, afc);
+   } else { 
+ #endif
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  afc_client_new(phone, opts.service, afc);
++#else
+   afc_client_new(phone, opts.port, afc);
++#endif
+ #ifdef HAVE_LIBIMOBILEDEVICE_1_1
+   }
+ #endif
+@@ -744,7 +752,13 @@ int main(int argc, char *argv[])
+   return EXIT_FAILURE;
+   }
+ 
+-  if ((lockdownd_start_service(control, opts.service_name, opts.port) != 
LOCKDOWN_E_SUCCESS) || !opts.port) {
++  if (
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  (lockdownd_start_service(control, opts.service_name, opts.service) != 
LOCKDOWN_E_SUCCESS) || !opts.service
++#else
++  (lockdownd_start_service(control, opts.service_name, opts.port) != 
LOCKDOWN_E_SUCCESS) || !opts.port
++#endif
++  ) {
+   lockdownd_client_free(control);
+   idevice_free(phone);
+   fprintf(stderr, Failed to start AFC service '%s' on the 
device.\n, opts.service_name);
+@@ -757,7 +771,11 @@ int main(int argc, char *argv[])
+ 
+ #ifdef HAVE_LIBIMOBILEDEVICE_1_1
+   if (!strcmp(opts.service_name, HOUSE_ARREST_SERVICE_NAME)) {
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  house_arrest_client_new(phone, opts.service, house_arrest);
++#else
+   house_arrest_client_new(phone, opts.port, house_arrest);
++#endif
+   if (!house_arrest) {
+   fprintf(stderr, Could not start document sharing 
service!\n);
+   return EXIT_FAILURE;
+-- 
+1.8.4.2
+

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 19:23:24 UTC (rev 100634)
+++ PKGBUILD2013-11-06 19:53:24 UTC (rev 100635)
@@ -5,15 +5,22 @@
 
 pkgname=ifuse
 pkgver=1.1.2
-pkgrel=4
+pkgrel=5
 pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch'
 url='http://libimobiledevice.org/'
 arch=('i686' 'x86_64')
 license=('LGPL2.1')
 depends=('libimobiledevice' 'fuse')
-source=(http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2;)
-md5sums=('4152526b2ac3c505cb41797d997be14d')
+source=(http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2;
+'0001-Updated-for-libimobiledevice-1.1.5.patch')
+md5sums=('4152526b2ac3c505cb41797d997be14d'
+'ca4d4af7f830c10645b605f1572c0ba6')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i $srcdir/0001-Updated-for-libimobiledevice-1.1.5.patch
+}
+
 build() {
   cd $pkgname-$pkgver
 



[arch-commits] Commit in ifuse/repos/community-x86_64 (3 files)

2013-11-06 Thread Federico Cinelli
Date: Wednesday, November 6, 2013 @ 20:54:56
  Author: cinelli
Revision: 100637

archrelease: copy trunk to community-x86_64

Added:
  ifuse/repos/community-x86_64/0001-Updated-for-libimobiledevice-1.1.5.patch
(from rev 100636, ifuse/trunk/0001-Updated-for-libimobiledevice-1.1.5.patch)
  ifuse/repos/community-x86_64/PKGBUILD
(from rev 100636, ifuse/trunk/PKGBUILD)
Deleted:
  ifuse/repos/community-x86_64/PKGBUILD

---+
 0001-Updated-for-libimobiledevice-1.1.5.patch |   83 
 PKGBUILD  |   61 +
 2 files changed, 117 insertions(+), 27 deletions(-)

Copied: 
ifuse/repos/community-x86_64/0001-Updated-for-libimobiledevice-1.1.5.patch 
(from rev 100636, ifuse/trunk/0001-Updated-for-libimobiledevice-1.1.5.patch)
===
--- 0001-Updated-for-libimobiledevice-1.1.5.patch   
(rev 0)
+++ 0001-Updated-for-libimobiledevice-1.1.5.patch   2013-11-06 19:54:56 UTC 
(rev 100637)
@@ -0,0 +1,83 @@
+From 9ac32aa3cb2ed5242c0fe3c58ef5f571bf2b95d7 Mon Sep 17 00:00:00 2001
+From: Nikias Bassen nik...@gmx.li
+Date: Sun, 24 Mar 2013 02:45:23 +0100
+Subject: [PATCH 1/1] Updated for libimobiledevice = 1.1.5
+
+---
+ configure.ac |  4 
+ src/ifuse.c  | 20 +++-
+ 2 files changed, 23 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 85d131a..ca518ff 100644
+--- a/configure.ac
 b/configure.ac
+@@ -17,6 +17,10 @@ PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 
= 1.1.0, libimobiled
+ if test x$libimobiledevice_1_1 = xyes; then
+   AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1], 1, [Define if libimobiledevice is 
using 1.1.0 API])
+ fi
++PKG_CHECK_MODULES(libimobiledevice11, libimobiledevice-1.0 = 1.1.5, 
libimobiledevice_1_1_5=yes, libimobiledevice_1_1_5=no)
++if test x$libimobiledevice_1_1_5 = xyes; then
++  AC_DEFINE([HAVE_LIBIMOBILEDEVICE_1_1_5], 1, [Define if libimobiledevice is 
using 1.1.5 API])
++fi
+ libimobiledevice_VERSION=`$PKG_CONFIG --modversion libimobiledevice-1.0 
21`
+ PKG_CHECK_MODULES(libfuse, fuse = 2.7.0)
+ PKG_CHECK_MODULES(libplist, libplist)
+diff --git a/src/ifuse.c b/src/ifuse.c
+index b5735ee..9fafb47 100644
+--- a/src/ifuse.c
 b/src/ifuse.c
+@@ -71,7 +71,11 @@ static struct {
+   char *appid;
+ #endif
+   char *service_name;
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  lockdownd_service_descriptor_t service;
++#else
+   uint16_t port;
++#endif
+ } opts;
+ 
+ enum {
+@@ -402,7 +406,11 @@ void *ifuse_init(struct fuse_conn_info *conn)
+   afc_client_new_from_house_arrest_client(house_arrest, afc);
+   } else { 
+ #endif
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  afc_client_new(phone, opts.service, afc);
++#else
+   afc_client_new(phone, opts.port, afc);
++#endif
+ #ifdef HAVE_LIBIMOBILEDEVICE_1_1
+   }
+ #endif
+@@ -744,7 +752,13 @@ int main(int argc, char *argv[])
+   return EXIT_FAILURE;
+   }
+ 
+-  if ((lockdownd_start_service(control, opts.service_name, opts.port) != 
LOCKDOWN_E_SUCCESS) || !opts.port) {
++  if (
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  (lockdownd_start_service(control, opts.service_name, opts.service) != 
LOCKDOWN_E_SUCCESS) || !opts.service
++#else
++  (lockdownd_start_service(control, opts.service_name, opts.port) != 
LOCKDOWN_E_SUCCESS) || !opts.port
++#endif
++  ) {
+   lockdownd_client_free(control);
+   idevice_free(phone);
+   fprintf(stderr, Failed to start AFC service '%s' on the 
device.\n, opts.service_name);
+@@ -757,7 +771,11 @@ int main(int argc, char *argv[])
+ 
+ #ifdef HAVE_LIBIMOBILEDEVICE_1_1
+   if (!strcmp(opts.service_name, HOUSE_ARREST_SERVICE_NAME)) {
++#ifdef HAVE_LIBIMOBILEDEVICE_1_1_5
++  house_arrest_client_new(phone, opts.service, house_arrest);
++#else
+   house_arrest_client_new(phone, opts.port, house_arrest);
++#endif
+   if (!house_arrest) {
+   fprintf(stderr, Could not start document sharing 
service!\n);
+   return EXIT_FAILURE;
+-- 
+1.8.4.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-06 19:54:28 UTC (rev 100636)
+++ PKGBUILD2013-11-06 19:54:56 UTC (rev 100637)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
-# Contributor: Thomas Dziedzic   gostrc at gmail 
-# Contributor: Gabriel Martinez  reitaka at gmail dot com 
-
-pkgname=ifuse
-pkgver=1.1.2
-pkgrel=4
-pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch'
-url='http://libimobiledevice.org/'
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-depends=('libimobiledevice' 'fuse')
-source=(http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2;)

[arch-commits] Commit in sage-mathematics/trunk (PKGBUILD fix-atlas.patch)

2013-11-06 Thread Evgeniy Alekseev
Date: Wednesday, November 6, 2013 @ 20:54:28
  Author: arcanis
Revision: 100636

upgpkg: sage-mathematics 5.12-1

Update to 5.12-1

Added:
  sage-mathematics/trunk/fix-atlas.patch
Modified:
  sage-mathematics/trunk/PKGBUILD

-+
 PKGBUILD|  128 +-
 fix-atlas.patch |   10 
 2 files changed, 81 insertions(+), 57 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 19:53:24 UTC (rev 100635)
+++ PKGBUILD2013-11-06 19:54:28 UTC (rev 100636)
@@ -1,71 +1,93 @@
 # $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Antonio Rojas  nqn1976 @ gmail.com 
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Osman Ugus ugu...@yahoo.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Maintainer: Evgeniy Alekseev arcanis.arch at gmail dot com
+# Contributor: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Antonio Rojas nqn1976 at gmail dot com
+# Contributor: Thomas Dziedzic gostrc at gmail dot com
+# Contributor: Osman Ugus ugus11 at yahoo dot com
+# Contributor: Stefan Husmann stefan-husmann at t-online dot de
 # Special thanks to Nareto for moving the compile from the .install to the 
PKGBUILD
 
 pkgname=sage-mathematics
-pkgver=5.11
+pkgver=5.12
 pkgrel=1
-pkgdesc='SAGE: Open Source Mathematics Software, a viable free alternative to 
Magma, Maple, Mathematica, and Matlab.'
-url='http://www.sagemath.org'
+pkgdesc=SAGE: Open Source Mathematics Software, a viable free alternative to 
Magma, Maple, Mathematica, and Matlab
 arch=('i686' 'x86_64')
+url=http://www.sagemath.org;
 license=('GPL')
-#depends=('xz' 'java-environment=7' 'desktop-file-utils' 'libxmu' 'libtiff' 
'sqlite' 'libjpeg-turbo')
-depends=('desktop-file-utils')
-makedepends=('gcc-fortran' 'freetype2')
+#depends=('desktop-file-utils' 'java-environment=7' 'libjpeg-turbo' 'libtiff' 
'libxmu' 'sqlite' 'xz')
+makedepends=('gcc-fortran' 'freetype2' 'desktop-file-utils')
 optdepends=('imagemagick: some plotting functionality benefits from it'
 'texlive-core: some plotting functionality benefits from it, also 
to use SageTeX'
 'openssh: to use the notebook in secure mode'
 'ffmpeg: to show animations'
 'cairo: R plots')
-install=${pkgname}.install
 
source=(http://sage.math.washington.edu/home/release/sage-${pkgver}/sage-${pkgver}.tar;
+'fix-atlas.patch'
 'SAGE-notebook.desktop'
 'sage.service')
+install=${pkgname}.install
+md5sums=('21d62a8a61e351c3c124167b3eead46f'
+ '527a621b19dd93941cd018d2c1559f96'
+ 'b82f94383829eee26648feb977e2d89b'
+ '985da1c1d1dcdc3ea9aa73035cb7996b')
 
+prepare() {
+  # fix ATLAS build 
http://sourceforge.net/p/math-atlas/discussion/75123/thread/dc45bb67/
+  cd sage-${pkgver}/spkg/standard
+  tar xjf atlas-3.10.1.p5.spkg
+  rm atlas-3.10.1.p5.spkg
+  cd atlas-3.10.1.p5
+  patch -p0 -i ${srcdir}/fix-atlas.patch
+  cd ..
+  tar cjf atlas-3.10.1.p5.spkg atlas-3.10.1.p5
+  rm -r atlas-3.10.1.p5
+  
+  # create DOT_SAGE directory
+  if [[ -d ${srcdir}/build ]]; then
+rm -rf ${srcdir}/build
+  fi
+  mkdir ${srcdir}/build
+}
+
 build() {
-  cd sage-${pkgver}
-
+  cd sage-${pkgver}
+  
   # fix missing sage.all error during build
   unset CFLAGS
   unset CXXFLAGS
-
   # fix build errors
   unset LDFLAGS
-
-  # enable multiple threads while building, is this really needed? check if 
uses MAKEFLAGS
+  
   export MAKE=make -j$(nproc)
-
+  
   # use archlinux's fortran rather then the one that ships with sage to 
compile sage's fortran
   export FC=/usr/bin/gfortran
-
+  
   # disable building with debugging support
   export SAGE_DEBUG='no'
-
+  
   # enable fat binaries (disables processor specific optimizations)
   # comment out if you're only building it for yourself
   export SAGE_FAT_BINARY='yes'
-
+  
   # can't write to root in a clean chroot
-  mkdir $srcdir/buiild
-  export DOT_SAGE=$srcdir/build
-
-  # Singular is broken
+  export DOT_SAGE=${srcdir}/build
+  
+  # singular is broken
   export CPP='/usr/bin/cpp'
-
+  
   # only build sage, no documents
   #make build
   make
-  ./sage --bdist $pkgver
+  ./sage --bdist ${pkgver}
 }
 
  COMMENT
 check() {
-  cd sage-${pkgver}
-
+  cd sage-${pkgver}
+  
+  make test
+  
   # uncomment if we want to run all the tests (warning: very long)
   #make ptestlong
 }
@@ -72,40 +94,32 @@
 COMMENT
 
 package() {
-  cd sage-${pkgver}
-
+  cd sage-${pkgver}
+  
   # cp because make install is experimental and will corrupt the install
-  install -d ${pkgdir}/opt/sage
-  cp -dpr --no-preserve=ownership dist/sage-$pkgver-$CARCH-Linux/* 
${pkgdir}/opt/sage/
-
+  install -d ${pkgdir}/opt/sage
+  cp -dpr --no-preserve=ownership dist/sage-${pkgver}-$CARCH-Linux/* 
${pkgdir}/opt/sage/
+  
   # move SageTeX files to more appropriate directory
-  install -d ${pkgdir}/usr/share
-  mv 

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

2013-11-06 Thread Evgeniy Alekseev
Date: Wednesday, November 6, 2013 @ 20:56:00
  Author: arcanis
Revision: 100638

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

Added:
  sage-mathematics/repos/community-staging-i686/
  sage-mathematics/repos/community-staging-i686/PKGBUILD
(from rev 100637, sage-mathematics/trunk/PKGBUILD)
  sage-mathematics/repos/community-staging-i686/SAGE-notebook.desktop
(from rev 100637, sage-mathematics/trunk/SAGE-notebook.desktop)
  sage-mathematics/repos/community-staging-i686/fix-atlas.patch
(from rev 100637, sage-mathematics/trunk/fix-atlas.patch)
  sage-mathematics/repos/community-staging-i686/sage-mathematics.install
(from rev 100637, sage-mathematics/trunk/sage-mathematics.install)
  sage-mathematics/repos/community-staging-i686/sage.service
(from rev 100637, sage-mathematics/trunk/sage.service)
  sage-mathematics/repos/community-staging-x86_64/
  sage-mathematics/repos/community-staging-x86_64/PKGBUILD
(from rev 100637, sage-mathematics/trunk/PKGBUILD)
  sage-mathematics/repos/community-staging-x86_64/SAGE-notebook.desktop
(from rev 100637, sage-mathematics/trunk/SAGE-notebook.desktop)
  sage-mathematics/repos/community-staging-x86_64/fix-atlas.patch
(from rev 100637, sage-mathematics/trunk/fix-atlas.patch)
  sage-mathematics/repos/community-staging-x86_64/sage-mathematics.install
(from rev 100637, sage-mathematics/trunk/sage-mathematics.install)
  sage-mathematics/repos/community-staging-x86_64/sage.service
(from rev 100637, sage-mathematics/trunk/sage.service)

---+
 community-staging-i686/PKGBUILD   |  125 
 community-staging-i686/SAGE-notebook.desktop  |   19 +++
 community-staging-i686/fix-atlas.patch|   10 +
 community-staging-i686/sage-mathematics.install   |   60 +
 community-staging-i686/sage.service   |8 +
 community-staging-x86_64/PKGBUILD |  125 
 community-staging-x86_64/SAGE-notebook.desktop|   19 +++
 community-staging-x86_64/fix-atlas.patch  |   10 +
 community-staging-x86_64/sage-mathematics.install |   60 +
 community-staging-x86_64/sage.service |8 +
 10 files changed, 444 insertions(+)

Copied: sage-mathematics/repos/community-staging-i686/PKGBUILD (from rev 
100637, sage-mathematics/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-06 19:56:00 UTC (rev 100638)
@@ -0,0 +1,125 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis.arch at gmail dot com
+# Contributor: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Antonio Rojas nqn1976 at gmail dot com
+# Contributor: Thomas Dziedzic gostrc at gmail dot com
+# Contributor: Osman Ugus ugus11 at yahoo dot com
+# Contributor: Stefan Husmann stefan-husmann at t-online dot de
+# Special thanks to Nareto for moving the compile from the .install to the 
PKGBUILD
+
+pkgname=sage-mathematics
+pkgver=5.12
+pkgrel=1
+pkgdesc=SAGE: Open Source Mathematics Software, a viable free alternative to 
Magma, Maple, Mathematica, and Matlab
+arch=('i686' 'x86_64')
+url=http://www.sagemath.org;
+license=('GPL')
+#depends=('desktop-file-utils' 'java-environment=7' 'libjpeg-turbo' 'libtiff' 
'libxmu' 'sqlite' 'xz')
+makedepends=('gcc-fortran' 'freetype2' 'desktop-file-utils')
+optdepends=('imagemagick: some plotting functionality benefits from it'
+'texlive-core: some plotting functionality benefits from it, also 
to use SageTeX'
+'openssh: to use the notebook in secure mode'
+'ffmpeg: to show animations'
+'cairo: R plots')
+source=(http://sage.math.washington.edu/home/release/sage-${pkgver}/sage-${pkgver}.tar;
+'fix-atlas.patch'
+'SAGE-notebook.desktop'
+'sage.service')
+install=${pkgname}.install
+md5sums=('21d62a8a61e351c3c124167b3eead46f'
+ '527a621b19dd93941cd018d2c1559f96'
+ 'b82f94383829eee26648feb977e2d89b'
+ '985da1c1d1dcdc3ea9aa73035cb7996b')
+
+prepare() {
+  # fix ATLAS build 
http://sourceforge.net/p/math-atlas/discussion/75123/thread/dc45bb67/
+  cd sage-${pkgver}/spkg/standard
+  tar xjf atlas-3.10.1.p5.spkg
+  rm atlas-3.10.1.p5.spkg
+  cd atlas-3.10.1.p5
+  patch -p0 -i ${srcdir}/fix-atlas.patch
+  cd ..
+  tar cjf atlas-3.10.1.p5.spkg atlas-3.10.1.p5
+  rm -r atlas-3.10.1.p5
+  
+  # create DOT_SAGE directory
+  if [[ -d ${srcdir}/build ]]; then
+rm -rf ${srcdir}/build
+  fi
+  mkdir ${srcdir}/build
+}
+
+build() {
+  cd sage-${pkgver}
+  
+  # fix missing sage.all error during build
+  unset CFLAGS
+  unset CXXFLAGS
+  # fix build errors
+  unset LDFLAGS
+  
+  export MAKE=make -j$(nproc)
+  
+  # use archlinux's fortran rather then the one that ships with sage to 
compile sage's fortran
+  export 

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

2013-11-06 Thread Eric Bélanger
Date: Thursday, November 7, 2013 @ 00:42:28
  Author: eric
Revision: 100640

upgpkg: lincity-ng 2.0-6

Rebuild against sdl_gfx 2.0.25, Update url, Add glu makedepends

Modified:
  lincity-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 20:15:47 UTC (rev 100639)
+++ PKGBUILD2013-11-06 23:42:28 UTC (rev 100640)
@@ -3,24 +3,24 @@
 
 pkgname=lincity-ng
 pkgver=2.0
-pkgrel=5.1
+pkgrel=6
 pkgdesc=A city simulation game
 arch=('i686' 'x86_64')
-url=https://fedorahosted.org/LinCity-NG;
+url=http://sourceforge.net/projects/lincity-ng.berlios/;
 license=('GPL' 'custom')
-depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'physfs' 'libxml2' 'sdl_gfx' 
'gcc-libs' 'libgl')
-makedepends=('ftjam' 'mesa')
+depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'physfs' 'libxml2' 'sdl_gfx' 
'libgl')
+makedepends=('ftjam' 'mesa' 'glu')
 
source=(http://sourceforge.net/projects/${pkgname}.berlios/files/${pkgname}-${pkgver}.tar.bz2)
 sha1sums=('2961a3f60f7481b33858d7d5ef7cf9c788d01077')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   jam
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   jam -sprefix=${pkgdir}/usr install
   install -D -m644 COPYING-data.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING-data.txt
   install -D -m644 COPYING-fonts.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING-fonts.txt



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

2013-11-06 Thread Eric Bélanger
Date: Thursday, November 7, 2013 @ 00:43:15
  Author: eric
Revision: 100641

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

Added:
  lincity-ng/repos/community-staging-i686/
  lincity-ng/repos/community-staging-i686/PKGBUILD
(from rev 100640, lincity-ng/trunk/PKGBUILD)
  lincity-ng/repos/community-staging-x86_64/
  lincity-ng/repos/community-staging-x86_64/PKGBUILD
(from rev 100640, lincity-ng/trunk/PKGBUILD)

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

Copied: lincity-ng/repos/community-staging-i686/PKGBUILD (from rev 100640, 
lincity-ng/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-06 23:43:15 UTC (rev 100641)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=lincity-ng
+pkgver=2.0
+pkgrel=6
+pkgdesc=A city simulation game
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/lincity-ng.berlios/;
+license=('GPL' 'custom')
+depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'physfs' 'libxml2' 'sdl_gfx' 
'libgl')
+makedepends=('ftjam' 'mesa' 'glu')
+source=(http://sourceforge.net/projects/${pkgname}.berlios/files/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2961a3f60f7481b33858d7d5ef7cf9c788d01077')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  jam
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  jam -sprefix=${pkgdir}/usr install
+  install -D -m644 COPYING-data.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING-data.txt
+  install -D -m644 COPYING-fonts.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING-fonts.txt
+}

Copied: lincity-ng/repos/community-staging-x86_64/PKGBUILD (from rev 100640, 
lincity-ng/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-11-06 23:43:15 UTC (rev 100641)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=lincity-ng
+pkgver=2.0
+pkgrel=6
+pkgdesc=A city simulation game
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/lincity-ng.berlios/;
+license=('GPL' 'custom')
+depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'physfs' 'libxml2' 'sdl_gfx' 
'libgl')
+makedepends=('ftjam' 'mesa' 'glu')
+source=(http://sourceforge.net/projects/${pkgname}.berlios/files/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2961a3f60f7481b33858d7d5ef7cf9c788d01077')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  jam
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  jam -sprefix=${pkgdir}/usr install
+  install -D -m644 COPYING-data.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING-data.txt
+  install -D -m644 COPYING-fonts.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING-fonts.txt
+}



[arch-commits] Commit in intel-gpu-tools/trunk (PKGBUILD)

2013-11-06 Thread Daniel Micay
Date: Thursday, November 7, 2013 @ 06:54:54
  Author: thestinger
Revision: 100642

upgpkg: intel-gpu-tools 1.5-1

Modified:
  intel-gpu-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-06 23:43:15 UTC (rev 100641)
+++ PKGBUILD2013-11-07 05:54:54 UTC (rev 100642)
@@ -4,16 +4,16 @@
 # Originally by: Denis Smirnov detana...@gmail.com
 
 pkgname=intel-gpu-tools
-pkgver=1.4
+pkgver=1.5
 pkgrel=1
 pkgdesc=Tools for development and testing of the Intel DRM driver
 arch=(i686 x86_64)
 license=(MIT)
-url=http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/;
-depends=('libdrm' 'libpciaccess' 'cairo' python)
+url='http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/'
+depends=(libdrm libpciaccess cairo python dri2proto)
 makedepends=(swig)
 
source=(http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2)
-md5sums=('bfa2ff70c09c95fcad46e7d332e08d28')
+md5sums=('6165a9054de2609f5b1bf0ca0d913f31')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in intel-gpu-tools/repos (4 files)

2013-11-06 Thread Daniel Micay
Date: Thursday, November 7, 2013 @ 06:56:05
  Author: thestinger
Revision: 100643

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

Added:
  intel-gpu-tools/repos/community-i686/PKGBUILD
(from rev 100642, intel-gpu-tools/trunk/PKGBUILD)
  intel-gpu-tools/repos/community-x86_64/PKGBUILD
(from rev 100642, intel-gpu-tools/trunk/PKGBUILD)
Deleted:
  intel-gpu-tools/repos/community-i686/PKGBUILD
  intel-gpu-tools/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-07 05:54:54 UTC (rev 100642)
+++ community-i686/PKGBUILD 2013-11-07 05:56:05 UTC (rev 100643)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Mikael Eriksson mikael_eriks...@miffe.org
-# Originally by: Denis Smirnov detana...@gmail.com
-
-pkgname=intel-gpu-tools
-pkgver=1.4
-pkgrel=1
-pkgdesc=Tools for development and testing of the Intel DRM driver
-arch=(i686 x86_64)
-license=(MIT)
-url=http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/;
-depends=('libdrm' 'libpciaccess' 'cairo' python)
-makedepends=(swig)
-source=(http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2)
-md5sums=('bfa2ff70c09c95fcad46e7d332e08d28')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/intel-gpu-tools/COPYING
-}

Copied: intel-gpu-tools/repos/community-i686/PKGBUILD (from rev 100642, 
intel-gpu-tools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-07 05:56:05 UTC (rev 100643)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Mikael Eriksson mikael_eriks...@miffe.org
+# Originally by: Denis Smirnov detana...@gmail.com
+
+pkgname=intel-gpu-tools
+pkgver=1.5
+pkgrel=1
+pkgdesc=Tools for development and testing of the Intel DRM driver
+arch=(i686 x86_64)
+license=(MIT)
+url='http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/'
+depends=(libdrm libpciaccess cairo python dri2proto)
+makedepends=(swig)
+source=(http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2)
+md5sums=('6165a9054de2609f5b1bf0ca0d913f31')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/intel-gpu-tools/COPYING
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-07 05:54:54 UTC (rev 100642)
+++ community-x86_64/PKGBUILD   2013-11-07 05:56:05 UTC (rev 100643)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Mikael Eriksson mikael_eriks...@miffe.org
-# Originally by: Denis Smirnov detana...@gmail.com
-
-pkgname=intel-gpu-tools
-pkgver=1.4
-pkgrel=1
-pkgdesc=Tools for development and testing of the Intel DRM driver
-arch=(i686 x86_64)
-license=(MIT)
-url=http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/;
-depends=('libdrm' 'libpciaccess' 'cairo' python)
-makedepends=(swig)
-source=(http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2)
-md5sums=('bfa2ff70c09c95fcad46e7d332e08d28')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/intel-gpu-tools/COPYING
-}

Copied: intel-gpu-tools/repos/community-x86_64/PKGBUILD (from rev 100642, 
intel-gpu-tools/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-07 05:56:05 UTC (rev 100643)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Mikael Eriksson mikael_eriks...@miffe.org
+# Originally by: Denis Smirnov detana...@gmail.com
+
+pkgname=intel-gpu-tools
+pkgver=1.5
+pkgrel=1
+pkgdesc=Tools for development and testing of the Intel DRM driver
+arch=(i686 x86_64)
+license=(MIT)
+url='http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/'
+depends=(libdrm libpciaccess cairo python dri2proto)
+makedepends=(swig)
+source=(http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2)
+md5sums=('6165a9054de2609f5b1bf0ca0d913f31')
+
+build() {
+  cd