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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:10:02
  Author: tpowa
Revision: 196915

upgpkg: gawk 4.1.0-2

remove libtool files

Modified:
  gawk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 06:38:50 UTC (rev 196914)
+++ PKGBUILD2013-10-21 07:10:02 UTC (rev 196915)
@@ -4,7 +4,7 @@
 
 pkgname=gawk
 pkgver=4.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GNU version of awk"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/gawk/";



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:10:11
  Author: tpowa
Revision: 196916

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

Added:
  gawk/repos/testing-i686/
  gawk/repos/testing-i686/PKGBUILD
(from rev 196915, gawk/trunk/PKGBUILD)
  gawk/repos/testing-i686/gawk.install
(from rev 196915, gawk/trunk/gawk.install)
  gawk/repos/testing-x86_64/
  gawk/repos/testing-x86_64/PKGBUILD
(from rev 196915, gawk/trunk/PKGBUILD)
  gawk/repos/testing-x86_64/gawk.install
(from rev 196915, gawk/trunk/gawk.install)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-i686/gawk.install   |   22 ++
 testing-x86_64/PKGBUILD |   38 ++
 testing-x86_64/gawk.install |   22 ++
 4 files changed, 120 insertions(+)

Copied: gawk/repos/testing-i686/PKGBUILD (from rev 196915, gawk/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 07:10:11 UTC (rev 196916)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+# Contributor: Tom Newsom 
+
+pkgname=gawk
+pkgver=4.1.0
+pkgrel=2
+pkgdesc="GNU version of awk"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gawk/";
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('sh' 'glibc' 'mpfr')
+provides=('awk')
+install=gawk.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('13e02513105417818a31ef375f9f9f42'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --without-libsigsegv
+  make 
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  #install -dm755 ${pkgdir}/bin 
+  #ln -sf /usr/bin/gawk ${pkgdir}/bin/
+  #ln -sf gawk ${pkgdir}/bin/awk
+}

Copied: gawk/repos/testing-i686/gawk.install (from rev 196915, 
gawk/trunk/gawk.install)
===
--- testing-i686/gawk.install   (rev 0)
+++ testing-i686/gawk.install   2013-10-21 07:10:11 UTC (rev 196916)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(gawk.info.gz gawkinet.info.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gawk/repos/testing-x86_64/PKGBUILD (from rev 196915, 
gawk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 07:10:11 UTC (rev 196916)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+# Contributor: Tom Newsom 
+
+pkgname=gawk
+pkgver=4.1.0
+pkgrel=2
+pkgdesc="GNU version of awk"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gawk/";
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('sh' 'glibc' 'mpfr')
+provides=('awk')
+install=gawk.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('13e02513105417818a31ef375f9f9f42'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --without-libsigsegv
+  make 
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  #install -dm755 ${pkgdir}/bin 
+  #ln -sf /usr/bin/gawk ${pkgdir}/bin/
+  #ln -sf gawk ${pkgdir}/bin/awk
+}

Copied: gawk/repos/testing-x86_64/gawk.install (from rev 196915, 
gawk/trunk/gawk.install)
===
--- testing-x86_64/gawk.install (rev 0)
+++ testing-x86_64/gawk.install 2013-10-21 07:10:11 UTC (rev 196916)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(gawk.info.gz gawkinet.info.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in quagga/repos (40 files)

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:13:03
  Author: seblu
Revision: 98892

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

Added:
  quagga/repos/community-i686/PKGBUILD
(from rev 98891, quagga/trunk/PKGBUILD)
  quagga/repos/community-i686/babeld.service
(from rev 98891, quagga/trunk/babeld.service)
  quagga/repos/community-i686/bgpd.service
(from rev 98891, quagga/trunk/bgpd.service)
  quagga/repos/community-i686/isisd.service
(from rev 98891, quagga/trunk/isisd.service)
  quagga/repos/community-i686/ospf6d.service
(from rev 98891, quagga/trunk/ospf6d.service)
  quagga/repos/community-i686/ospfd.service
(from rev 98891, quagga/trunk/ospfd.service)
  quagga/repos/community-i686/quagga.install
(from rev 98891, quagga/trunk/quagga.install)
  quagga/repos/community-i686/ripd.service
(from rev 98891, quagga/trunk/ripd.service)
  quagga/repos/community-i686/ripngd.service
(from rev 98891, quagga/trunk/ripngd.service)
  quagga/repos/community-i686/zebra.service
(from rev 98891, quagga/trunk/zebra.service)
  quagga/repos/community-x86_64/PKGBUILD
(from rev 98891, quagga/trunk/PKGBUILD)
  quagga/repos/community-x86_64/babeld.service
(from rev 98891, quagga/trunk/babeld.service)
  quagga/repos/community-x86_64/bgpd.service
(from rev 98891, quagga/trunk/bgpd.service)
  quagga/repos/community-x86_64/isisd.service
(from rev 98891, quagga/trunk/isisd.service)
  quagga/repos/community-x86_64/ospf6d.service
(from rev 98891, quagga/trunk/ospf6d.service)
  quagga/repos/community-x86_64/ospfd.service
(from rev 98891, quagga/trunk/ospfd.service)
  quagga/repos/community-x86_64/quagga.install
(from rev 98891, quagga/trunk/quagga.install)
  quagga/repos/community-x86_64/ripd.service
(from rev 98891, quagga/trunk/ripd.service)
  quagga/repos/community-x86_64/ripngd.service
(from rev 98891, quagga/trunk/ripngd.service)
  quagga/repos/community-x86_64/zebra.service
(from rev 98891, quagga/trunk/zebra.service)
Deleted:
  quagga/repos/community-i686/PKGBUILD
  quagga/repos/community-i686/babeld.service
  quagga/repos/community-i686/bgpd.service
  quagga/repos/community-i686/isisd.service
  quagga/repos/community-i686/ospf6d.service
  quagga/repos/community-i686/ospfd.service
  quagga/repos/community-i686/quagga.install
  quagga/repos/community-i686/ripd.service
  quagga/repos/community-i686/ripngd.service
  quagga/repos/community-i686/zebra.service
  quagga/repos/community-x86_64/PKGBUILD
  quagga/repos/community-x86_64/babeld.service
  quagga/repos/community-x86_64/bgpd.service
  quagga/repos/community-x86_64/isisd.service
  quagga/repos/community-x86_64/ospf6d.service
  quagga/repos/community-x86_64/ospfd.service
  quagga/repos/community-x86_64/quagga.install
  quagga/repos/community-x86_64/ripd.service
  quagga/repos/community-x86_64/ripngd.service
  quagga/repos/community-x86_64/zebra.service

-+
 /PKGBUILD   |  172 ++
 /babeld.service |   32 +++
 /bgpd.service   |   32 +++
 /isisd.service  |   32 +++
 /ospf6d.service |   32 +++
 /ospfd.service  |   32 +++
 /quagga.install |   72 +++
 /ripd.service   |   32 +++
 /ripngd.service |   32 +++
 /zebra.service  |   32 +++
 community-i686/PKGBUILD |   86 ---
 community-i686/babeld.service   |   16 ---
 community-i686/bgpd.service |   16 ---
 community-i686/isisd.service|   16 ---
 community-i686/ospf6d.service   |   16 ---
 community-i686/ospfd.service|   16 ---
 community-i686/quagga.install   |   36 ---
 community-i686/ripd.service |   16 ---
 community-i686/ripngd.service   |   16 ---
 community-i686/zebra.service|   16 ---
 community-x86_64/PKGBUILD   |   86 ---
 community-x86_64/babeld.service |   16 ---
 community-x86_64/bgpd.service   |   16 ---
 community-x86_64/isisd.service  |   16 ---
 community-x86_64/ospf6d.service |   16 ---
 community-x86_64/ospfd.service  |   16 ---
 community-x86_64/quagga.install |   36 ---
 community-x86_64/ripd.service   |   16 ---
 community-x86_64/ripngd.service |   16 ---
 community-x86_64/zebra.service  |   16 ---
 30 files changed, 500 insertions(+), 500 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-21 07:12:43 UTC (rev 98891)
+++ community-i686/PKGBUILD 2013-10-21 07:13:03 UTC (rev 98892)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=quagga
-pkgver=0.99.22.4
-pkgrel=1
-pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite'
-arch=('i686' 'x86_64')
-url='http://www.quagga.net'
-license=('GPL2')
-depends=('libcap' 'libnl' 'net-snmp' 'readline' 'ncurses')
-options=('!libtool

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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:12:43
  Author: seblu
Revision: 98891

upgpkg: quagga 0.99.22.4-2

- https://www.archlinux.org/todo/remove-static-libraries/

Modified:
  quagga/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 05:13:12 UTC (rev 98890)
+++ PKGBUILD2013-10-21 07:12:43 UTC (rev 98891)
@@ -3,13 +3,13 @@
 
 pkgname=quagga
 pkgver=0.99.22.4
-pkgrel=1
+pkgrel=2
 pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite'
 arch=('i686' 'x86_64')
 url='http://www.quagga.net'
 license=('GPL2')
 depends=('libcap' 'libnl' 'net-snmp' 'readline' 'ncurses')
-options=('!libtool' '!buildflags')
+options=('!buildflags')
 install=quagga.install
 
source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz";
 'babeld.service'



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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:14:55
  Author: seblu
Revision: 98893

upgpkg: virtualbox 4.3.0-1

- upstream bump
- add vboxreload: shortcut script to reload modules after update
- fix FS#34335
- drop 3.11 bug patch
- split and update others patches

Added:
  virtualbox/trunk/002-fix-dri-driver-path.patch
(from rev 98881, virtualbox/trunk/002-change_default_driver_dir.patch)
  virtualbox/trunk/003-fix-ogl-include-path.patch
  virtualbox/trunk/004-xorg.patch
(from rev 98861, virtualbox/trunk/004-system-xorg.patch)
  virtualbox/trunk/vboxreload
Modified:
  virtualbox/trunk/PKGBUILD
  virtualbox/trunk/virtualbox-guest-dkms.install
  virtualbox/trunk/virtualbox-host-dkms.install
Deleted:
  virtualbox/trunk/002-change_default_driver_dir.patch
  virtualbox/trunk/004-system-xorg.patch
  virtualbox/trunk/005-fix-311-sharedfolders.patch

-+
 002-change_default_driver_dir.patch |   18 --
 002-fix-dri-driver-path.patch   |   28 +++
 003-fix-ogl-include-path.patch  |   26 +++
 004-system-xorg.patch   |  245 --
 004-xorg.patch  |  217 ++
 005-fix-311-sharedfolders.patch |   28 ---
 PKGBUILD|   24 ++-
 vboxreload  |   40 +
 virtualbox-guest-dkms.install   |2 
 virtualbox-host-dkms.install|2 
 10 files changed, 328 insertions(+), 302 deletions(-)

Deleted: 002-change_default_driver_dir.patch
===
--- 002-change_default_driver_dir.patch 2013-10-21 07:13:03 UTC (rev 98892)
+++ 002-change_default_driver_dir.patch 2013-10-21 07:14:55 UTC (rev 98893)
@@ -1,18 +0,0 @@
-diff -Nur 
VirtualBox-4.1.0_OSE.orig/src/VBox/Additions/common/crOpenGL/fakedri_drv.c 
VirtualBox-4.1.0_OSE/src/VBox/Additions/common/crOpenGL/fakedri_drv.c
 VirtualBox-4.1.0_OSE.orig/src/VBox/Additions/common/crOpenGL/fakedri_drv.c 
2011-07-19 15:11:37.903456612 +
-+++ VirtualBox-4.1.0_OSE/src/VBox/Additions/common/crOpenGL/fakedri_drv.c  
2011-07-19 15:12:41.024021274 +
-@@ -36,13 +36,8 @@
- //#define DEBUG_DRI_CALLS
- 
- //@todo this could be different...
--#ifdef RT_ARCH_AMD64
--# define DRI_DEFAULT_DRIVER_DIR 
"/usr/lib64/dri:/usr/lib/dri:/usr/lib/x86_64-linux-gnu/dri"
-+# define DRI_DEFAULT_DRIVER_DIR "/usr/lib/xorg/modules/dri"
- # define DRI_XORG_DRV_DIR "/usr/lib/xorg/modules/drivers/"
--#else
--# define DRI_DEFAULT_DRIVER_DIR "/usr/lib/dri:/usr/lib/i386-linux-gnu/dri"
--# define DRI_XORG_DRV_DIR "/usr/lib/xorg/modules/drivers/"
--#endif
- 
- #ifdef DEBUG_DRI_CALLS
-  #define SWDRI_SHOWNAME(pext, func) \

Copied: virtualbox/trunk/002-fix-dri-driver-path.patch (from rev 98881, 
virtualbox/trunk/002-change_default_driver_dir.patch)
===
--- 002-fix-dri-driver-path.patch   (rev 0)
+++ 002-fix-dri-driver-path.patch   2013-10-21 07:14:55 UTC (rev 98893)
@@ -0,0 +1,28 @@
+# 2013 © Sébastien Luttringer
+--- a/src/VBox/Additions/common/crOpenGL/fakedri_drv.c 2013-09-04 
21:03:47.040743507 +0200
 b/src/VBox/Additions/common/crOpenGL/fakedri_drv.c 2013-10-20 
23:23:49.705371815 +0200
+@@ -58,23 +58,8 @@
+ //#define DEBUG_DRI_CALLS
+ 
+ //@todo this could be different...
+-#ifdef RT_ARCH_AMD64
+-# ifdef RT_OS_FREEBSD
+-#  define DRI_DEFAULT_DRIVER_DIR "/usr/local/lib/dri"
+-#  define DRI_XORG_DRV_DIR "/usr/local/lib/xorg/modules/drivers/"
+-# else
+-#  define DRI_DEFAULT_DRIVER_DIR 
"/usr/lib64/dri:/usr/lib/dri:/usr/lib/x86_64-linux-gnu/dri"
++#  define DRI_DEFAULT_DRIVER_DIR "/usr/lib/xorg/modules/dri"
+ #  define DRI_XORG_DRV_DIR "/usr/lib/xorg/modules/drivers/"
+-# endif
+-#else
+-# ifdef RT_OS_FREEBSD
+-#  define DRI_DEFAULT_DRIVER_DIR "/usr/local/lib/dri"
+-#  define DRI_XORG_DRV_DIR "/usr/local/lib/xorg/modules/drivers/"
+-# else
+-#  define DRI_DEFAULT_DRIVER_DIR "/usr/lib/dri:/usr/lib/i386-linux-gnu/dri"
+-#  define DRI_XORG_DRV_DIR "/usr/lib/xorg/modules/drivers/"
+-# endif
+-#endif
+ 
+ #ifdef DEBUG_DRI_CALLS
+  #define SWDRI_SHOWNAME(pext, func) \

Added: 003-fix-ogl-include-path.patch
===
--- 003-fix-ogl-include-path.patch  (rev 0)
+++ 003-fix-ogl-include-path.patch  2013-10-21 07:14:55 UTC (rev 98893)
@@ -0,0 +1,26 @@
+--- a/src/VBox/Additions/common/crOpenGL/Makefile.kmk  2013-03-19 
18:55:28.774951223 +
 b/src/VBox/Additions/common/crOpenGL/Makefile.kmk  2013-03-19 
18:58:06.337193736 +
+@@ -63,18 +63,12 @@
+ VBoxOGL_INCS   = .
+ if1of ($(KBUILD_TARGET), linux solaris freebsd)
+  VBoxOGL_INCS += \
+-  $(VBOX_PATH_X11_ROOT)/libXdamage-1.1 \
+-  $(VBOX_PATH_X11_ROOT)/libXcomposite-0.4.0 \
+-  $(VBOX_PATH_X11_ROOT)/libXext-1.3.1 \
+-  $(VBOX_PATH_X11_ROOT)/libXfixes-4.0.3 \
+-  $(VBOX_PATH_X11_ROOT)/damageproto-

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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:15:31
  Author: seblu
Revision: 98894

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

Added:
  virtualbox/repos/community-i686/001-vboxdrv-reference.patch
(from rev 98893, virtualbox/trunk/001-vboxdrv-reference.patch)
  virtualbox/repos/community-i686/002-fix-dri-driver-path.patch
(from rev 98893, virtualbox/trunk/002-fix-dri-driver-path.patch)
  virtualbox/repos/community-i686/003-fix-ogl-include-path.patch
(from rev 98893, virtualbox/trunk/003-fix-ogl-include-path.patch)
  virtualbox/repos/community-i686/004-xorg.patch
(from rev 98893, virtualbox/trunk/004-xorg.patch)
  virtualbox/repos/community-i686/10-vboxdrv.rules
(from rev 98893, virtualbox/trunk/10-vboxdrv.rules)
  virtualbox/repos/community-i686/60-vboxguest.rules
(from rev 98893, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-i686/LocalConfig.kmk
(from rev 98893, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-i686/PKGBUILD
(from rev 98893, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-i686/vboxreload
(from rev 98893, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-i686/vboxservice.service
(from rev 98893, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-i686/vboxweb.service
(from rev 98893, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
(from rev 98893, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-i686/virtualbox-guest-dkms.install
(from rev 98893, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
(from rev 98893, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-i686/virtualbox-host-dkms.install
(from rev 98893, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-i686/virtualbox.install
(from rev 98893, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-x86_64/001-vboxdrv-reference.patch
(from rev 98893, virtualbox/trunk/001-vboxdrv-reference.patch)
  virtualbox/repos/community-x86_64/002-fix-dri-driver-path.patch
(from rev 98893, virtualbox/trunk/002-fix-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/003-fix-ogl-include-path.patch
(from rev 98893, virtualbox/trunk/003-fix-ogl-include-path.patch)
  virtualbox/repos/community-x86_64/004-xorg.patch
(from rev 98893, virtualbox/trunk/004-xorg.patch)
  virtualbox/repos/community-x86_64/10-vboxdrv.rules
(from rev 98893, virtualbox/trunk/10-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 98893, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 98893, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 98893, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 98893, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 98893, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 98893, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 98893, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
(from rev 98893, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.install
(from rev 98893, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.install
(from rev 98893, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox.install
(from rev 98893, virtualbox/trunk/virtualbox.install)
Deleted:
  virtualbox/repos/community-i686/001-vboxdrv-reference.patch
  virtualbox/repos/community-i686/002-change_default_driver_dir.patch
  virtualbox/repos/community-i686/004-system-xorg.patch
  virtualbox/repos/community-i686/005-fix-311-sharedfolders.patch
  virtualbox/repos/community-i686/10-vboxdrv.rules
  virtualbox/repos/community-i686/60-vboxguest.rules
  virtualbox/repos/community-i686/LocalConfig.kmk
  virtualbox/repos/community-i686/PKGBUILD
  virtualbox/repos/community-i686/vboxservice.service
  virtualbox/repos/community-i686/vboxweb.service
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
  virtualbox/repos/community-i686/virtualbox-guest-dkms.install
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
  virtualbox/repos/community-i686/virtualbox-host-dkms.install
  virtualbox/repos/community-i686/virtualbox.install
  virtualbox/repos/community-x86_64/001-vboxdrv-reference.patch
  virtualbox/repos/community-x86_64/002-change_default_driver_dir.patch
  virtualbox/repos/community-x86_64/004-system-xorg.patch
  virtualbox/repos/community

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:20:22
  Author: tpowa
Revision: 196917

upgpkg: alsa-oss 1.0.25-2

remove static library

Modified:
  alsa-oss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:10:11 UTC (rev 196916)
+++ PKGBUILD2013-10-21 07:20:22 UTC (rev 196917)
@@ -3,7 +3,7 @@
 
 pkgname=alsa-oss
 pkgver=1.0.25
-pkgrel=1
+pkgrel=2
 pkgdesc="OSS compatibility library"
 arch=('i686' 'x86_64')
 license=('GPL')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:20:36
  Author: tpowa
Revision: 196918

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

Added:
  alsa-oss/repos/extra-i686/PKGBUILD
(from rev 196917, alsa-oss/trunk/PKGBUILD)
  alsa-oss/repos/extra-x86_64/PKGBUILD
(from rev 196917, alsa-oss/trunk/PKGBUILD)
Deleted:
  alsa-oss/repos/extra-i686/PKGBUILD
  alsa-oss/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 07:20:22 UTC (rev 196917)
+++ extra-i686/PKGBUILD 2013-10-21 07:20:36 UTC (rev 196918)
@@ -1,25 +0,0 @@
-# $Id$
-# Contributor: judd 
-
-pkgname=alsa-oss
-pkgver=1.0.25
-pkgrel=1
-pkgdesc="OSS compatibility library"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.alsa-project.org";
-options=('!libtool')
-depends=('alsa-lib')
-source=("ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2";)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-md5sums=('922ea177db15c72f1b5037181c73f934')

Copied: alsa-oss/repos/extra-i686/PKGBUILD (from rev 196917, 
alsa-oss/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 07:20:36 UTC (rev 196918)
@@ -0,0 +1,25 @@
+# $Id$
+# Contributor: judd 
+
+pkgname=alsa-oss
+pkgver=1.0.25
+pkgrel=2
+pkgdesc="OSS compatibility library"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.alsa-project.org";
+options=('!libtool')
+depends=('alsa-lib')
+source=("ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2";)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+md5sums=('922ea177db15c72f1b5037181c73f934')

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 07:20:22 UTC (rev 196917)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:20:36 UTC (rev 196918)
@@ -1,25 +0,0 @@
-# $Id$
-# Contributor: judd 
-
-pkgname=alsa-oss
-pkgver=1.0.25
-pkgrel=1
-pkgdesc="OSS compatibility library"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.alsa-project.org";
-options=('!libtool')
-depends=('alsa-lib')
-source=("ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2";)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-md5sums=('922ea177db15c72f1b5037181c73f934')

Copied: alsa-oss/repos/extra-x86_64/PKGBUILD (from rev 196917, 
alsa-oss/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:20:36 UTC (rev 196918)
@@ -0,0 +1,25 @@
+# $Id$
+# Contributor: judd 
+
+pkgname=alsa-oss
+pkgver=1.0.25
+pkgrel=2
+pkgdesc="OSS compatibility library"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.alsa-project.org";
+options=('!libtool')
+depends=('alsa-lib')
+source=("ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2";)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+md5sums=('922ea177db15c72f1b5037181c73f934')



[arch-commits] Commit in celt0.5.1/trunk (PKGBUILD)

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:22:00
  Author: tpowa
Revision: 196919

upgpkg: celt0.5.1 0.5.1.3-3

remove static library

Modified:
  celt0.5.1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:20:36 UTC (rev 196918)
+++ PKGBUILD2013-10-21 07:22:00 UTC (rev 196919)
@@ -5,7 +5,7 @@
 pkgname=celt0.5.1
 _basename=celt
 pkgver=0.5.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Low-latency audio communication codec - SPICE version"
 arch=(i686 x86_64)
 url="http://www.celt-codec.org";



[arch-commits] Commit in celt0.5.1/repos (4 files)

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:22:11
  Author: tpowa
Revision: 196920

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

Added:
  celt0.5.1/repos/extra-i686/PKGBUILD
(from rev 196919, celt0.5.1/trunk/PKGBUILD)
  celt0.5.1/repos/extra-x86_64/PKGBUILD
(from rev 196919, celt0.5.1/trunk/PKGBUILD)
Deleted:
  celt0.5.1/repos/extra-i686/PKGBUILD
  celt0.5.1/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 07:22:00 UTC (rev 196919)
+++ extra-i686/PKGBUILD 2013-10-21 07:22:11 UTC (rev 196920)
@@ -1,28 +0,0 @@
-# Contributor: Lauri Niskanen 
-# Contributor: Ray Rashif 
-# Contributor: Jon Nordby 
-
-pkgname=celt0.5.1
-_basename=celt
-pkgver=0.5.1.3
-pkgrel=2
-pkgdesc="Low-latency audio communication codec - SPICE version"
-arch=(i686 x86_64)
-url="http://www.celt-codec.org";
-license=('BSD')
-depends=('libogg')
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/celt/celt-$pkgver.tar.gz)
-md5sums=('67e7b5e45db57a6f1f0a6962f5ecb190')
-
-build() {
-  cd "$srcdir/celt-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/celt-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/BSD"
-}

Copied: celt0.5.1/repos/extra-i686/PKGBUILD (from rev 196919, 
celt0.5.1/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 07:22:11 UTC (rev 196920)
@@ -0,0 +1,28 @@
+# Contributor: Lauri Niskanen 
+# Contributor: Ray Rashif 
+# Contributor: Jon Nordby 
+
+pkgname=celt0.5.1
+_basename=celt
+pkgver=0.5.1.3
+pkgrel=3
+pkgdesc="Low-latency audio communication codec - SPICE version"
+arch=(i686 x86_64)
+url="http://www.celt-codec.org";
+license=('BSD')
+depends=('libogg')
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/celt/celt-$pkgver.tar.gz)
+md5sums=('67e7b5e45db57a6f1f0a6962f5ecb190')
+
+build() {
+  cd "$srcdir/celt-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/celt-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/BSD"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 07:22:00 UTC (rev 196919)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:22:11 UTC (rev 196920)
@@ -1,28 +0,0 @@
-# Contributor: Lauri Niskanen 
-# Contributor: Ray Rashif 
-# Contributor: Jon Nordby 
-
-pkgname=celt0.5.1
-_basename=celt
-pkgver=0.5.1.3
-pkgrel=2
-pkgdesc="Low-latency audio communication codec - SPICE version"
-arch=(i686 x86_64)
-url="http://www.celt-codec.org";
-license=('BSD')
-depends=('libogg')
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/celt/celt-$pkgver.tar.gz)
-md5sums=('67e7b5e45db57a6f1f0a6962f5ecb190')
-
-build() {
-  cd "$srcdir/celt-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/celt-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/BSD"
-}

Copied: celt0.5.1/repos/extra-x86_64/PKGBUILD (from rev 196919, 
celt0.5.1/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:22:11 UTC (rev 196920)
@@ -0,0 +1,28 @@
+# Contributor: Lauri Niskanen 
+# Contributor: Ray Rashif 
+# Contributor: Jon Nordby 
+
+pkgname=celt0.5.1
+_basename=celt
+pkgver=0.5.1.3
+pkgrel=3
+pkgdesc="Low-latency audio communication codec - SPICE version"
+arch=(i686 x86_64)
+url="http://www.celt-codec.org";
+license=('BSD')
+depends=('libogg')
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/celt/celt-$pkgver.tar.gz)
+md5sums=('67e7b5e45db57a6f1f0a6962f5ecb190')
+
+build() {
+  cd "$srcdir/celt-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/celt-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/BSD"
+}



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:23:18
  Author: tpowa
Revision: 196921

upgpkg: cracklib 2.9.0-2

remove static libraries

Modified:
  cracklib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:22:11 UTC (rev 196920)
+++ PKGBUILD2013-10-21 07:23:18 UTC (rev 196921)
@@ -4,7 +4,7 @@
 
 pkgname=cracklib
 pkgver=2.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Password Checking Library"
 arch=('i686' 'x86_64')
 license=('GPL')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:23:29
  Author: tpowa
Revision: 196922

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

Added:
  cracklib/repos/testing-i686/
  cracklib/repos/testing-i686/PKGBUILD
(from rev 196921, cracklib/trunk/PKGBUILD)
  cracklib/repos/testing-x86_64/
  cracklib/repos/testing-x86_64/PKGBUILD
(from rev 196921, cracklib/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: cracklib/repos/testing-i686/PKGBUILD (from rev 196921, 
cracklib/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 07:23:29 UTC (rev 196922)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Federico Quagliata (quaqo) 
+
+pkgname=cracklib
+pkgver=2.9.0
+pkgrel=2
+pkgdesc="Password Checking Library"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://sourceforge.net/projects/cracklib";
+depends=('glibc' 'zlib')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('e0f94ac2138fd33c7e77b19c1e9a9390')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --without-python
+  make 
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # symlink cracklib-small #34778
+  mkdir -p $pkgdir/usr/share/dict
+  ln -sf /usr/share/cracklib/cracklib-small 
$pkgdir/usr/share/dict/cracklib-small
+  sh ./util/cracklib-format dicts/cracklib-small \
+| sh ./util/cracklib-packer $pkgdir/usr/share/cracklib/pw_dict
+}

Copied: cracklib/repos/testing-x86_64/PKGBUILD (from rev 196921, 
cracklib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 07:23:29 UTC (rev 196922)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Federico Quagliata (quaqo) 
+
+pkgname=cracklib
+pkgver=2.9.0
+pkgrel=2
+pkgdesc="Password Checking Library"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://sourceforge.net/projects/cracklib";
+depends=('glibc' 'zlib')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('e0f94ac2138fd33c7e77b19c1e9a9390')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --without-python
+  make 
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # symlink cracklib-small #34778
+  mkdir -p $pkgdir/usr/share/dict
+  ln -sf /usr/share/cracklib/cracklib-small 
$pkgdir/usr/share/dict/cracklib-small
+  sh ./util/cracklib-format dicts/cracklib-small \
+| sh ./util/cracklib-packer $pkgdir/usr/share/cracklib/pw_dict
+}



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:25:04
  Author: tpowa
Revision: 196923

upgpkg: dmapi 2.2.12-2

remove static libraries

Modified:
  dmapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:23:29 UTC (rev 196922)
+++ PKGBUILD2013-10-21 07:25:04 UTC (rev 196923)
@@ -3,7 +3,7 @@
 
 pkgname=dmapi
 pkgver=2.2.12
-pkgrel=1
+pkgrel=2
 pkgdesc="Data migration API"
 arch=('i686' 'x86_64')
 url="http://oss.sgi.com/projects/xfs/";



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:25:14
  Author: tpowa
Revision: 196924

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 07:25:04 UTC (rev 196923)
+++ extra-i686/PKGBUILD 2013-10-21 07:25:14 UTC (rev 196924)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=dmapi
-pkgver=2.2.12
-pkgrel=1
-pkgdesc="Data migration API"
-arch=('i686' 'x86_64')
-url="http://oss.sgi.com/projects/xfs/";
-license=('GPL')
-depends=('glibc')
-makedepends=('xfsprogs')
-provides=('xfsdmapi')
-conflicts=('xfsdmapi')
-replaces=('xfsdmapi')
-options=('!libtool')
-source=("ftp://oss.sgi.com/projects/xfs/cmd_tars/$pkgname-$pkgver.tar.gz";)
-
-build() {
-  cd $srcdir/dmapi-$pkgver
-  [ "$CARCH" = "x86_64" ] && export CFLAGS="$CLFAGS -fPIC"
-  export INSTALL_USER=root
-  export INSTALL_GROUP=root
-  export DEBUG=-DNDEBUG
-  autoconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/dmapi-$pkgver
-  make DIST_ROOT=$pkgdir install install-dev
-  # the static lib
-  install -D -m644 libdm/.libs/libdm.a $pkgdir/usr/lib/libdm.a
-  # and the header file, please
-  install -D -m644 include/dmapi.h $pkgdir/usr/include/xfs/dmapi.h
-  # kill libexec dir
-  rm -rf $pkgdir/usr/libexec
-}
-md5sums=('cd825d4e141c16011367e0a0dd98c9c5')

Copied: dmapi/repos/extra-i686/PKGBUILD (from rev 196923, dmapi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 07:25:14 UTC (rev 196924)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=dmapi
+pkgver=2.2.12
+pkgrel=2
+pkgdesc="Data migration API"
+arch=('i686' 'x86_64')
+url="http://oss.sgi.com/projects/xfs/";
+license=('GPL')
+depends=('glibc')
+makedepends=('xfsprogs')
+provides=('xfsdmapi')
+conflicts=('xfsdmapi')
+replaces=('xfsdmapi')
+options=('!libtool')
+source=("ftp://oss.sgi.com/projects/xfs/cmd_tars/$pkgname-$pkgver.tar.gz";)
+
+build() {
+  cd $srcdir/dmapi-$pkgver
+  [ "$CARCH" = "x86_64" ] && export CFLAGS="$CLFAGS -fPIC"
+  export INSTALL_USER=root
+  export INSTALL_GROUP=root
+  export DEBUG=-DNDEBUG
+  autoconf
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/dmapi-$pkgver
+  make DIST_ROOT=$pkgdir install install-dev
+  # the static lib
+  install -D -m644 libdm/.libs/libdm.a $pkgdir/usr/lib/libdm.a
+  # and the header file, please
+  install -D -m644 include/dmapi.h $pkgdir/usr/include/xfs/dmapi.h
+  # kill libexec dir
+  rm -rf $pkgdir/usr/libexec
+}
+md5sums=('cd825d4e141c16011367e0a0dd98c9c5')

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 07:25:04 UTC (rev 196923)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:25:14 UTC (rev 196924)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=dmapi
-pkgver=2.2.12
-pkgrel=1
-pkgdesc="Data migration API"
-arch=('i686' 'x86_64')
-url="http://oss.sgi.com/projects/xfs/";
-license=('GPL')
-depends=('glibc')
-makedepends=('xfsprogs')
-provides=('xfsdmapi')
-conflicts=('xfsdmapi')
-replaces=('xfsdmapi')
-options=('!libtool')
-source=("ftp://oss.sgi.com/projects/xfs/cmd_tars/$pkgname-$pkgver.tar.gz";)
-
-build() {
-  cd $srcdir/dmapi-$pkgver
-  [ "$CARCH" = "x86_64" ] && export CFLAGS="$CLFAGS -fPIC"
-  export INSTALL_USER=root
-  export INSTALL_GROUP=root
-  export DEBUG=-DNDEBUG
-  autoconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/dmapi-$pkgver
-  make DIST_ROOT=$pkgdir install install-dev
-  # the static lib
-  install -D -m644 libdm/.libs/libdm.a $pkgdir/usr/lib/libdm.a
-  # and the header file, please
-  install -D -m644 include/dmapi.h $pkgdir/usr/include/xfs/dmapi.h
-  # kill libexec dir
-  rm -rf $pkgdir/usr/libexec
-}
-md5sums=('cd825d4e141c16011367e0a0dd98c9c5')

Copied: dmapi/repos/extra-x86_64/PKGBUILD (from rev 196923, 
dmapi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:25:14 UTC (rev 196924)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=dmapi
+pkgver=2.2.12
+pkgrel=2
+pkgdesc="Data migration API"
+arch=('i686' 'x86_64')
+url="http://oss.sgi.com/projects/xfs/";
+license=('GPL')
+depends=('glibc')
+ma

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:26:28
  Author: tpowa
Revision: 196925

upgpkg: dmraid 1.0.0.rc16.3-10

remove static libraries

Modified:
  dmraid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:25:14 UTC (rev 196924)
+++ PKGBUILD2013-10-21 07:26:28 UTC (rev 196925)
@@ -4,7 +4,7 @@
 
 pkgname=dmraid
 pkgver=1.0.0.rc16.3
-pkgrel=9
+pkgrel=10
 pkgdesc="Device mapper RAID interface"
 url="http://people.redhat.com/~heinzm/sw/dmraid/";
 conflicts=('mkinitcpio<0.7')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:26:43
  Author: tpowa
Revision: 196926

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

Added:
  dmraid/repos/testing-i686/
  dmraid/repos/testing-i686/PKGBUILD
(from rev 196925, dmraid/trunk/PKGBUILD)
  dmraid/repos/testing-i686/dmraid.install
(from rev 196925, dmraid/trunk/dmraid.install)
  dmraid/repos/testing-i686/dmraid.service
(from rev 196925, dmraid/trunk/dmraid.service)
  dmraid/repos/testing-i686/dmraid_hook
(from rev 196925, dmraid/trunk/dmraid_hook)
  dmraid/repos/testing-i686/dmraid_install
(from rev 196925, dmraid/trunk/dmraid_install)
  dmraid/repos/testing-i686/dmraid_tmpfiles
(from rev 196925, dmraid/trunk/dmraid_tmpfiles)
  dmraid/repos/testing-x86_64/
  dmraid/repos/testing-x86_64/PKGBUILD
(from rev 196925, dmraid/trunk/PKGBUILD)
  dmraid/repos/testing-x86_64/dmraid.install
(from rev 196925, dmraid/trunk/dmraid.install)
  dmraid/repos/testing-x86_64/dmraid.service
(from rev 196925, dmraid/trunk/dmraid.service)
  dmraid/repos/testing-x86_64/dmraid_hook
(from rev 196925, dmraid/trunk/dmraid_hook)
  dmraid/repos/testing-x86_64/dmraid_install
(from rev 196925, dmraid/trunk/dmraid_install)
  dmraid/repos/testing-x86_64/dmraid_tmpfiles
(from rev 196925, dmraid/trunk/dmraid_tmpfiles)

+
 testing-i686/PKGBUILD  |   44 +++
 testing-i686/dmraid.install|   14 
 testing-i686/dmraid.service|   15 +
 testing-i686/dmraid_hook   |   14 
 testing-i686/dmraid_install|   24 +
 testing-i686/dmraid_tmpfiles   |1 
 testing-x86_64/PKGBUILD|   44 +++
 testing-x86_64/dmraid.install  |   14 
 testing-x86_64/dmraid.service  |   15 +
 testing-x86_64/dmraid_hook |   14 
 testing-x86_64/dmraid_install  |   24 +
 testing-x86_64/dmraid_tmpfiles |1 
 12 files changed, 224 insertions(+)

Copied: dmraid/repos/testing-i686/PKGBUILD (from rev 196925, 
dmraid/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 07:26:43 UTC (rev 196926)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+#Contributor: Urs Wolfer 
+
+pkgname=dmraid
+pkgver=1.0.0.rc16.3
+pkgrel=10
+pkgdesc="Device mapper RAID interface"
+url="http://people.redhat.com/~heinzm/sw/dmraid/";
+conflicts=('mkinitcpio<0.7')
+depends=('device-mapper>=2.0.54')
+arch=('i686' 'x86_64')
+license=('GPL')
+source=(#ftp://ftp.archlinux.org/other/dmraid/$pkgname-$pkgver.tar.bz2
+
http://people.redhat.com/~heinzm/sw/dmraid/src/$pkgname-1.0.0.rc16-3.tar.bz2
+dmraid_install
+dmraid_hook
+dmraid_tmpfiles
+dmraid.service)
+install=dmraid.install
+md5sums=('819338fcef98e8e25819f0516722beeb'
+ '7a040ebcba305aba1e47dfe6ca8323b5'
+ 'faec669dc85f87187b45b5d3968efe2c'
+ '56a8bb0ece8d206cd8efb504ee072ddd'
+ 'ea6d280fc6f63fb799abcd882bca53c8')
+
+build() {
+  cd "$pkgname/1.0.0.rc16-3/$pkgname"
+  ./configure --enable-led --enable-intel_led
+  make
+}
+
+package() {
+  cd "$pkgname/1.0.0.rc16-3/$pkgname"
+  make DESTDIR="$pkgdir" sbindir=/usr/bin prefix=/usr libdir=/usr/lib 
mandir=/usr/share/man includedir=/usr/include install
+  install -D -m644 "$srcdir"/dmraid_install 
"$pkgdir"/usr/lib/initcpio/install/dmraid
+  install -D -m644 "$srcdir"/dmraid_hook 
"$pkgdir"/usr/lib/initcpio/hooks/dmraid
+  install -D -m644 "$srcdir"/dmraid_tmpfiles 
"$pkgdir"/usr/lib/tmpfiles.d/dmraid.conf
+
+  # fix permissions
+  chmod 644 "$pkgdir"/usr/include/dmraid/* "$pkgdir"/usr/lib/libdmraid.a
+
+  install -Dm644 "$srcdir/dmraid.service" 
"$pkgdir/usr/lib/systemd/system/dmraid.service"
+}

Copied: dmraid/repos/testing-i686/dmraid.install (from rev 196925, 
dmraid/trunk/dmraid.install)
===
--- testing-i686/dmraid.install (rev 0)
+++ testing-i686/dmraid.install 2013-10-21 07:26:43 UTC (rev 196926)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  if [ "$(vercmp $2 1.0.0.rc15)" -lt 0 ]; then
+# important upgrade notice
+echo ">>>"
+echo ">>> IMPORTANT DMRAID UPGRADE NOTICE"
+echo ">>> ---"
+echo ">>> Version 1.0.0.rc15 and greater introduce a new name scheme:"
+echo ">>> You need to add an additional 'p' in front of your number."
+echo ">>> e.g.  --> p"
+echo ">>>  firsthd1   --> firsthdp1"
+echo ">>> Please change your bootloader and fstab accordingly."
+echo ">>>"
+  fi
+}

Copied: dmraid/repos/testing-i686/dmraid.service (from rev 196925, 
dmraid/trunk/dmraid.service)
===
--- testing-i686/dmraid.service   

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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:28:51
  Author: seblu
Revision: 98895

upgpkg: virtualbox-modules 4.3.0-1

Modified:
  virtualbox-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:15:31 UTC (rev 98894)
+++ PKGBUILD2013-10-21 07:28:51 UTC (rev 98895)
@@ -4,8 +4,8 @@
 
 pkgbase=virtualbox-modules
 pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.2.18
-pkgrel=7
+pkgver=4.3.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')



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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:29:21
  Author: seblu
Revision: 98897

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

Added:
  
opensc/repos/community-i686/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch
(from rev 98896, 
opensc/trunk/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch)
  opensc/repos/community-i686/PKGBUILD
(from rev 98896, opensc/trunk/PKGBUILD)
  
opensc/repos/community-x86_64/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch
(from rev 98896, 
opensc/trunk/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch)
  opensc/repos/community-x86_64/PKGBUILD
(from rev 98896, opensc/trunk/PKGBUILD)
Deleted:
  
opensc/repos/community-i686/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch
  opensc/repos/community-i686/PKGBUILD
  
opensc/repos/community-x86_64/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch
  opensc/repos/community-x86_64/PKGBUILD

--+
 /0001-pkcs15-regression-in-e35febe-compute-cert-length.patch | 
 228 ++
 /PKGBUILD| 
  98 
 community-i686/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch   | 
 114 -
 community-i686/PKGBUILD  | 
  49 --
 community-x86_64/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch | 
 114 -
 community-x86_64/PKGBUILD| 
  49 --
 6 files changed, 326 insertions(+), 326 deletions(-)

Deleted: 
community-i686/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch
===
--- community-i686/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch  
2013-10-21 07:29:04 UTC (rev 98896)
+++ community-i686/0001-pkcs15-regression-in-e35febe-compute-cert-length.patch  
2013-10-21 07:29:21 UTC (rev 98897)
@@ -1,114 +0,0 @@
-From cc5a171ddcc8e49b2252135daac9ad3aa6d66ae7 Mon Sep 17 00:00:00 2001
-From: Viktor Tarasov 
-Date: Tue, 25 Dec 2012 20:05:45 +0100
-Subject: [PATCH] pkcs15: regression in e35febe: compute cert length
-
-parse_x509_cert() reviewed.
-Now certificate's DER data are allocated and the DER data length is determined 
in one place.
-
-https://github.com/OpenSC/OpenSC/pull/114
-https://github.com/OpenSC/OpenSC/commit/e35febe

- src/libopensc/pkcs15-cert.c | 37 +++--
- 1 file changed, 19 insertions(+), 18 deletions(-)
-
-diff --git a/src/libopensc/pkcs15-cert.c b/src/libopensc/pkcs15-cert.c
-index 86bea25..9b08aac 100644
 a/src/libopensc/pkcs15-cert.c
-+++ b/src/libopensc/pkcs15-cert.c
-@@ -34,13 +34,13 @@
- #include "pkcs15.h"
- 
- static int
--parse_x509_cert(sc_context_t *ctx, const u8 *buf, size_t buflen, struct 
sc_pkcs15_cert *cert)
-+parse_x509_cert(sc_context_t *ctx, struct sc_pkcs15_der *der, struct 
sc_pkcs15_cert *cert)
- {
-   int r;
-   struct sc_algorithm_id sig_alg;
--  struct sc_pkcs15_pubkey  * pubkey = NULL;
--  u8 *serial = NULL;
--  size_t serial_len = 0;
-+  struct sc_pkcs15_pubkey *pubkey = NULL;
-+  unsigned char *serial = NULL, *buf =  der->value;
-+  size_t serial_len = 0, data_len = 0, buflen = der->len;
-   struct sc_asn1_entry asn1_version[] = {
-   { "version", SC_ASN1_INTEGER, SC_ASN1_TAG_INTEGER, 0, 
&cert->version, NULL },
-   { NULL, 0, 0, 0, NULL, NULL }
-@@ -87,30 +87,32 @@ parse_x509_cert(sc_context_t *ctx, const u8 *buf, size_t 
buflen, struct sc_pkcs1
-   if (obj == NULL)
-   LOG_TEST_RET(ctx, SC_ERROR_INVALID_ASN1_OBJECT, "X.509 
certificate not found");
- 
--  cert->data.len = objlen + (obj - buf);
-+  data_len = objlen + (obj - buf);
-+  cert->data.value = malloc(data_len);
-+  if (!cert->data.value)
-+  LOG_FUNC_RETURN(ctx, SC_ERROR_OUT_OF_MEMORY);
-+  memcpy(cert->data.value, buf, data_len);
-+  cert->data.len = data_len;
-+
-   r = sc_asn1_decode(ctx, asn1_cert, obj, objlen, NULL, NULL);
-   LOG_TEST_RET(ctx, r, "ASN.1 parsing of certificate failed");
- 
-   cert->version++;
- 
--  if (pubkey) {
--  cert->key = pubkey;
--  pubkey = NULL;
--  }
--  else {
-+  if (!pubkey)
-   LOG_TEST_RET(ctx, SC_ERROR_INVALID_ASN1_OBJECT, "Unable to 
decode subjectPublicKeyInfo from cert");
--  }
-+  cert->key = pubkey;
-+
-   sc_asn1_clear_algorithm_id(&sig_alg);
--  if (r < 0)
--  return r;
- 
-   if (serial && serial_len)   {
-   sc_format_asn1_entry(asn1_serial_number + 0, serial, 
&serial_len, 1);
-   r = sc_asn1_encode(ctx, asn1_serial_number, &cert->serial, 
&cert->serial_len);
-   free(serial);
-+  LOG_TEST_RET(ctx, r, "ASN.1 encoding of serial failed");
-   }
- 
--

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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:29:04
  Author: seblu
Revision: 98896

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-21 07:28:51 UTC (rev 98895)
+++ community-i686/PKGBUILD 2013-10-21 07:29:04 UTC (rev 98896)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.2.18
-pkgrel=7
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux>=3.11' 'linux<3.12'
- 'linux-headers>=3.11' 'linux-headers<3.12'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver")
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.11-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' 'linux<3.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.11' 'linux<3.12')
-  replaces=('virtualbox-archlinux-modules')
-  conflicts=('virtualbox-archlinux-modules')
-  install=virtualbox-guest-modules.install
-
-  cd "dkms/vboxguest/$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 {} +

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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:30:32
  Author: seblu
Revision: 98898

upgpkg: virtualbox-modules-lts 4.3.0-1

Modified:
  virtualbox-modules-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:29:21 UTC (rev 98897)
+++ PKGBUILD2013-10-21 07:30:32 UTC (rev 98898)
@@ -5,8 +5,8 @@
 
 pkgbase=virtualbox-modules-lts
 pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
-pkgver=4.2.18
-pkgrel=9
+pkgver=4.3.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')



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

2013-10-21 Thread Sébastien Luttringer
Date: Monday, October 21, 2013 @ 09:30:43
  Author: seblu
Revision: 98899

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

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

---+
 /PKGBUILD |  130 
 /build.sh |  120 ++
 /virtualbox-guest-modules-lts.install |   42 +
 /virtualbox-host-modules-lts.install  |   46 +
 community-i686/PKGBUILD   |   65 
 community-i686/build.sh   |   60 ---
 community-i686/virtualbox-guest-modules-lts.install   |   21 --
 community-i686/virtualbox-host-modules-lts.install|   23 --
 community-x86_64/PKGBUILD |   65 
 community-x86_64/build.sh |   60 ---
 community-x86_64/virtualbox-guest-modules-lts.install |   21 --
 community-x86_64/virtualbox-host-modules-lts.install  |   23 --
 12 files changed, 338 insertions(+), 338 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-21 07:30:32 UTC (rev 98898)
+++ community-i686/PKGBUILD 2013-10-21 07:30:43 UTC (rev 98899)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Sébastien Luttringer
-
-pkgbase=virtualbox-modules-lts
-pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
-pkgver=4.2.18
-pkgrel=9
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux-lts>=3.10' 'linux-lts<3.11'
- 'linux-lts-headers>=3.10' 'linux-lts-headers<3.11'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver")
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.10-lts
-
-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-lts(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux-lts>=3.10' 'linux-lts<3.11')
-  replaces=('virtualbox-modules-lts')
-  conflicts=('virtualbox-modules-lts')
-  provides=("virtualbox-host-modules=$pkgver")
-  install=virtualbox-host-modules-lts.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-lts(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux-lts>=3.10' 'linux-lts<3.11')
-  replaces=('virtualbox-archlinux

[arch-commits] Commit in gnu-efi-libs/trunk (PKGBUILD)

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:38:29
  Author: tpowa
Revision: 196927

upgpkg: gnu-efi-libs 3.0u-3

remove static libraries

Modified:
  gnu-efi-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:26:43 UTC (rev 196926)
+++ PKGBUILD2013-10-21 07:38:29 UTC (rev 196927)
@@ -5,7 +5,7 @@
 _pkgver="3.0"
 pkgname="gnu-efi-libs"
 pkgver="${_pkgver}u"
-pkgrel="2"
+pkgrel="3"
 pkgdesc="Library for building UEFI Applications using GNU toolchain"
 url="http://sourceforge.net/projects/gnu-efi/";
 license=('GPL')



[arch-commits] Commit in gnu-efi-libs/repos (4 files)

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:38:50
  Author: tpowa
Revision: 196928

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

Added:
  gnu-efi-libs/repos/extra-i686/PKGBUILD
(from rev 196927, gnu-efi-libs/trunk/PKGBUILD)
  gnu-efi-libs/repos/extra-x86_64/PKGBUILD
(from rev 196927, gnu-efi-libs/trunk/PKGBUILD)
Deleted:
  gnu-efi-libs/repos/extra-i686/PKGBUILD
  gnu-efi-libs/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 07:38:29 UTC (rev 196927)
+++ extra-i686/PKGBUILD 2013-10-21 07:38:50 UTC (rev 196928)
@@ -1,47 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Keshav Padram <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
-# Contributor: Alessio 'mOLOk' Bolognino 
-
-_pkgver="3.0"
-pkgname="gnu-efi-libs"
-pkgver="${_pkgver}u"
-pkgrel="2"
-pkgdesc="Library for building UEFI Applications using GNU toolchain"
-url="http://sourceforge.net/projects/gnu-efi/";
-license=('GPL')
-arch=('x86_64' 'i686')
-options=('!strip' '!makeflags')
-makedepends=('pciutils')
-
-source=("http://download.sourceforge.net/gnu-efi/gnu-efi_${pkgver}.orig.tar.gz";)
-md5sums=('d15d3c700e79a1e2938544d73edc572d')
-
-[[ "${CARCH}" == "x86_64" ]] && _EFI_ARCH="x86_64"
-[[ "${CARCH}" == "i686" ]] && _EFI_ARCH="ia32"
-
-build() {
-   
-   cd "${srcdir}/gnu-efi-${_pkgver}/"
-   
-   ## Unset all compiler FLAGS
-   unset CFLAGS
-   unset CPPFLAGS
-   unset CXXFLAGS
-   unset LDFLAGS
-   unset MAKEFLAGS
-   
-   make -j1
-   make -j1 -C apps all
-   
-}
-
-package() {
-   
-   cd "${srcdir}/gnu-efi-${_pkgver}/"
-   
-   make INSTALLROOT="${pkgdir}" PREFIX="/usr" LIBDIR="/usr/lib" install
-   
-   install -d "${pkgdir}/usr/share/gnu-efi/apps/${_EFI_ARCH}/"
-   install -D -m0644 "${srcdir}/gnu-efi-${_pkgver}/apps"/*.efi 
"${pkgdir}/usr/share/gnu-efi/apps/${_EFI_ARCH}/"
-   
-}

Copied: gnu-efi-libs/repos/extra-i686/PKGBUILD (from rev 196927, 
gnu-efi-libs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 07:38:50 UTC (rev 196928)
@@ -0,0 +1,47 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Keshav Padram <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
+# Contributor: Alessio 'mOLOk' Bolognino 
+
+_pkgver="3.0"
+pkgname="gnu-efi-libs"
+pkgver="${_pkgver}u"
+pkgrel="3"
+pkgdesc="Library for building UEFI Applications using GNU toolchain"
+url="http://sourceforge.net/projects/gnu-efi/";
+license=('GPL')
+arch=('x86_64' 'i686')
+options=('!strip' '!makeflags')
+makedepends=('pciutils')
+
+source=("http://download.sourceforge.net/gnu-efi/gnu-efi_${pkgver}.orig.tar.gz";)
+md5sums=('d15d3c700e79a1e2938544d73edc572d')
+
+[[ "${CARCH}" == "x86_64" ]] && _EFI_ARCH="x86_64"
+[[ "${CARCH}" == "i686" ]] && _EFI_ARCH="ia32"
+
+build() {
+   
+   cd "${srcdir}/gnu-efi-${_pkgver}/"
+   
+   ## Unset all compiler FLAGS
+   unset CFLAGS
+   unset CPPFLAGS
+   unset CXXFLAGS
+   unset LDFLAGS
+   unset MAKEFLAGS
+   
+   make -j1
+   make -j1 -C apps all
+   
+}
+
+package() {
+   
+   cd "${srcdir}/gnu-efi-${_pkgver}/"
+   
+   make INSTALLROOT="${pkgdir}" PREFIX="/usr" LIBDIR="/usr/lib" install
+   
+   install -d "${pkgdir}/usr/share/gnu-efi/apps/${_EFI_ARCH}/"
+   install -D -m0644 "${srcdir}/gnu-efi-${_pkgver}/apps"/*.efi 
"${pkgdir}/usr/share/gnu-efi/apps/${_EFI_ARCH}/"
+   
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 07:38:29 UTC (rev 196927)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:38:50 UTC (rev 196928)
@@ -1,47 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Keshav Padram <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
-# Contributor: Alessio 'mOLOk' Bolognino 
-
-_pkgver="3.0"
-pkgname="gnu-efi-libs"
-pkgver="${_pkgver}u"
-pkgrel="2"
-pkgdesc="Library for building UEFI Applications using GNU toolchain"
-url="http://sourceforge.net/projects/gnu-efi/";
-license=('GPL')
-arch=('x86_64' 'i686')
-options=('!strip' '!makeflags')
-makedepends=('pciutils')
-
-source=("http://download.sourceforge.net/gnu-efi/gnu-efi_${pkgver}.orig.tar.gz";)
-md5sums=('d15d3c700e79a1e2938544d73edc572d')
-
-[[ "${CARCH}" == "x86_64" ]] && _EFI_ARCH="x86_64"
-[[ "${CARCH}" == "i686" ]] && _EFI_ARCH="ia32"
-
-build() {
-   
-   cd "${srcdir}/gnu-efi-${_pkgver}/"
-   
-   ## Unset all compiler FLAGS
-   unset CFLAGS
-   un

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:40:50
  Author: tpowa
Revision: 196929

upgpkg: pciutils 3.2.0-4

remove static libraries

Modified:
  pciutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:38:50 UTC (rev 196928)
+++ PKGBUILD2013-10-21 07:40:50 UTC (rev 196929)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski 
 pkgname=pciutils
 pkgver=3.2.0
-pkgrel=3
+pkgrel=4
 pkgdesc="PCI bus configuration space access library and tools"
 arch=(i686 x86_64)
 license=('GPL2')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:43:04
  Author: tpowa
Revision: 196930

upgpkg: ilmbase 2.0.1-2

remove static libraries

Modified:
  ilmbase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:40:50 UTC (rev 196929)
+++ PKGBUILD2013-10-21 07:43:04 UTC (rev 196930)
@@ -3,7 +3,7 @@
 
 pkgname=ilmbase
 pkgver=2.0.1
-pkgrel=1
+pkgrel=2
 depends=('gcc-libs')
 pkgdesc="Base libraries from ILM for OpenEXR"
 arch=(i686 x86_64)



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:43:14
  Author: tpowa
Revision: 196931

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

Added:
  ilmbase/repos/extra-i686/PKGBUILD
(from rev 196930, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/extra-i686/ilmbase-IexMath.patch
(from rev 196930, ilmbase/trunk/ilmbase-IexMath.patch)
  ilmbase/repos/extra-x86_64/PKGBUILD
(from rev 196930, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/extra-x86_64/ilmbase-IexMath.patch
(from rev 196930, ilmbase/trunk/ilmbase-IexMath.patch)
Deleted:
  ilmbase/repos/extra-i686/PKGBUILD
  ilmbase/repos/extra-i686/ilmbase-IexMath.patch
  ilmbase/repos/extra-x86_64/PKGBUILD
  ilmbase/repos/extra-x86_64/ilmbase-IexMath.patch

+
 /PKGBUILD  |   64 +++
 /ilmbase-IexMath.patch |   24 +
 extra-i686/PKGBUILD|   32 -
 extra-i686/ilmbase-IexMath.patch   |   12 --
 extra-x86_64/PKGBUILD  |   32 -
 extra-x86_64/ilmbase-IexMath.patch |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 07:43:04 UTC (rev 196930)
+++ extra-i686/PKGBUILD 2013-10-21 07:43:14 UTC (rev 196931)
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski 
-
-pkgname=ilmbase
-pkgver=2.0.1
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc="Base libraries from ILM for OpenEXR"
-arch=(i686 x86_64)
-url="http://www.openexr.com";
-license=('custom')
-options=('!libtool')
-source=(http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz)
 
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  # one of the tests fails randomly for an unknown reason
-  make check || true
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-md5sums=('74c0d0d2873960bd0dc1993f8e03f0ae')

Copied: ilmbase/repos/extra-i686/PKGBUILD (from rev 196930, 
ilmbase/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 07:43:14 UTC (rev 196931)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski 
+
+pkgname=ilmbase
+pkgver=2.0.1
+pkgrel=2
+depends=('gcc-libs')
+pkgdesc="Base libraries from ILM for OpenEXR"
+arch=(i686 x86_64)
+url="http://www.openexr.com";
+license=('custom')
+options=('!libtool')
+source=(http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz)
 
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+md5sums=('74c0d0d2873960bd0dc1993f8e03f0ae')

Deleted: extra-i686/ilmbase-IexMath.patch
===
--- extra-i686/ilmbase-IexMath.patch2013-10-21 07:43:04 UTC (rev 196930)
+++ extra-i686/ilmbase-IexMath.patch2013-10-21 07:43:14 UTC (rev 196931)
@@ -1,12 +0,0 @@
 IexMath/IexMathFpu.cpp.orig2012-07-26 20:51:55.0 +0200
-+++ IexMath/IexMathFpu.cpp 2012-10-04 15:30:47.0 +0200
-@@ -27,8 +27,7 @@
- #endif
- 
- 
--#ifdef HAVE_UCONTEXT_H
--
-+#if defined(HAVE_UCONTEXT_H) && (defined(x86_64) || defined(i386_))
- 
- #include 
- #include 

Copied: ilmbase/repos/extra-i686/ilmbase-IexMath.patch (from rev 196930, 
ilmbase/trunk/ilmbase-IexMath.patch)
===
--- extra-i686/ilmbase-IexMath.patch(rev 0)
+++ extra-i686/ilmbase-IexMath.patch2013-10-21 07:43:14 UTC (rev 196931)
@@ -0,0 +1,12 @@
+--- IexMath/IexMathFpu.cpp.orig2012-07-26 20:51:55.0 +0200
 IexMath/IexMathFpu.cpp 2012-10-04 15:30:47.0 +0200
+@@ -27,8 +27,7 @@
+ #endif
+ 
+ 
+-#ifdef HAVE_UCONTEXT_H
+-
++#if defined(HAVE_UCONTEXT_H) && (defined(x86_64) || defined(i386_))
+ 
+ #include 
+ #include 

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 07:43:04 UTC (rev 196930)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:43:14 UTC (rev 196931)
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski 
-
-pkgname=ilmbase
-pkgver=2.0.1
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc="Base libraries from ILM for OpenEXR"
-arch=(i686 x86_64)

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:46:00
  Author: tpowa
Revision: 196933

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 07:45:42 UTC (rev 196932)
+++ extra-i686/PKGBUILD 2013-10-21 07:46:00 UTC (rev 196933)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Roman Kyrylych 
-# Contributor: Roman Kyrylych 
-
-pkgname=iniparser
-pkgver=3.1
-pkgrel=3
-pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
-arch=('i686' 'x86_64')
-url="http://ndevilla.free.fr/iniparser/";
-license=('MIT')
-depends=()
-makedepends=('chrpath')
-source=(http://ndevilla.free.fr/iniparser/$pkgname-$pkgver.tar.gz)
-md5sums=('0aa4f995468ed390caf323f50a285bc3')
-
-build() {
-  cd $srcdir/$pkgname
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
-  install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
-  install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
-  install -Dm644 libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so.0
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
-  ln -sf libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so
-  chrpath -d $pkgdir/usr/lib/libiniparser.so
-}

Copied: iniparser/repos/extra-i686/PKGBUILD (from rev 196932, 
iniparser/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 07:46:00 UTC (rev 196933)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Roman Kyrylych 
+# Contributor: Roman Kyrylych 
+
+pkgname=iniparser
+pkgver=3.1
+pkgrel=4
+pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
+arch=('i686' 'x86_64')
+url="http://ndevilla.free.fr/iniparser/";
+license=('MIT')
+depends=('glibc')
+makedepends=('chrpath')
+source=(http://ndevilla.free.fr/iniparser/$pkgname-$pkgver.tar.gz)
+md5sums=('0aa4f995468ed390caf323f50a285bc3')
+
+build() {
+  cd $srcdir/$pkgname
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname
+  install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
+  install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
+  install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
+  install -Dm644 libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so.0
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
+  ln -sf libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so
+  chrpath -d $pkgdir/usr/lib/libiniparser.so
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 07:45:42 UTC (rev 196932)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:46:00 UTC (rev 196933)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Roman Kyrylych 
-# Contributor: Roman Kyrylych 
-
-pkgname=iniparser
-pkgver=3.1
-pkgrel=3
-pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
-arch=('i686' 'x86_64')
-url="http://ndevilla.free.fr/iniparser/";
-license=('MIT')
-depends=()
-makedepends=('chrpath')
-source=(http://ndevilla.free.fr/iniparser/$pkgname-$pkgver.tar.gz)
-md5sums=('0aa4f995468ed390caf323f50a285bc3')
-
-build() {
-  cd $srcdir/$pkgname
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
-  install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
-  install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
-  install -Dm644 libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so.0
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
-  ln -sf libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so
-  chrpath -d $pkgdir/usr/lib/libiniparser.so
-}

Copied: iniparser/repos/extra-x86_64/PKGBUILD (from rev 196932, 
iniparser/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 07:46:00 UTC (rev 196933)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Roman Kyrylych 
+# Contributor: Roman Kyrylych 
+
+pkgname=iniparser
+pkgver=3.1
+pkgrel=4
+pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
+arch=('i686' 

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:45:42
  Author: tpowa
Revision: 196932

upgpkg: iniparser 3.1-4

remove static libraries

Modified:
  iniparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:43:14 UTC (rev 196931)
+++ PKGBUILD2013-10-21 07:45:42 UTC (rev 196932)
@@ -5,12 +5,12 @@
 
 pkgname=iniparser
 pkgver=3.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A free stand-alone ini file parsing library written in portable ANSI 
C"
 arch=('i686' 'x86_64')
 url="http://ndevilla.free.fr/iniparser/";
 license=('MIT')
-depends=()
+depends=('glibc')
 makedepends=('chrpath')
 source=(http://ndevilla.free.fr/iniparser/$pkgname-$pkgver.tar.gz)
 md5sums=('0aa4f995468ed390caf323f50a285bc3')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 09:47:21
  Author: tpowa
Revision: 196934

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

Added:
  pciutils/repos/testing-i686/
  pciutils/repos/testing-i686/PKGBUILD
(from rev 196933, pciutils/trunk/PKGBUILD)
  pciutils/repos/testing-x86_64/
  pciutils/repos/testing-x86_64/PKGBUILD
(from rev 196933, pciutils/trunk/PKGBUILD)
Deleted:
  pciutils/repos/testing-i686/PKGBUILD
  pciutils/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-05-19 09:27:42 UTC (rev 185801)
+++ testing-i686/PKGBUILD   2013-10-21 07:47:21 UTC (rev 196934)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=pciutils
-pkgver=3.2.0
-pkgrel=3
-pkgdesc="PCI bus configuration space access library and tools"
-arch=(i686 x86_64)
-license=('GPL2')
-groups=('base')
-url="http://mj.ucw.cz/sw/pciutils/";
-depends=('glibc' 'hwids' 'kmod')
-source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
-md5sums=('3fccb0b28879adb57d8156115f8003c8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
-  cp lib/libpci.a "${srcdir}/"
-  make clean
-  make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
-  install -m644 "${srcdir}/libpci.a" "${pkgdir}/usr/lib/"
-  # this is now supplied by the hwids package
-  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
-}

Copied: pciutils/repos/testing-i686/PKGBUILD (from rev 196933, 
pciutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 07:47:21 UTC (rev 196934)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=pciutils
+pkgver=3.2.0
+pkgrel=4
+pkgdesc="PCI bus configuration space access library and tools"
+arch=(i686 x86_64)
+license=('GPL2')
+groups=('base')
+url="http://mj.ucw.cz/sw/pciutils/";
+depends=('glibc' 'hwids' 'kmod')
+source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
+md5sums=('3fccb0b28879adb57d8156115f8003c8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
+  cp lib/libpci.a "${srcdir}/"
+  make clean
+  make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
+  install -m644 "${srcdir}/libpci.a" "${pkgdir}/usr/lib/"
+  # this is now supplied by the hwids package
+  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2013-05-19 09:27:42 UTC (rev 185801)
+++ testing-x86_64/PKGBUILD 2013-10-21 07:47:21 UTC (rev 196934)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=pciutils
-pkgver=3.2.0
-pkgrel=3
-pkgdesc="PCI bus configuration space access library and tools"
-arch=(i686 x86_64)
-license=('GPL2')
-groups=('base')
-url="http://mj.ucw.cz/sw/pciutils/";
-depends=('glibc' 'hwids' 'kmod')
-source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
-md5sums=('3fccb0b28879adb57d8156115f8003c8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
-  cp lib/libpci.a "${srcdir}/"
-  make clean
-  make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make S

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

2013-10-21 Thread Allan McRae
Date: Monday, October 21, 2013 @ 10:41:31
  Author: allan
Revision: 196935

upgpkg: zlib 1.2.8-3

static library required for binutils testsuite

Modified:
  zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:47:21 UTC (rev 196934)
+++ PKGBUILD2013-10-21 08:41:31 UTC (rev 196935)
@@ -3,12 +3,13 @@
 
 pkgname=zlib
 pkgver=1.2.8
-pkgrel=2
+pkgrel=3
 pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
 arch=('i686' 'x86_64')
 license=('custom')
 url="http://www.zlib.net/";
 depends=('glibc')
+options=('staticlibs')  # needed by binutils testsuite
 source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
 md5sums=('44d667c142d7cda120332623eab69f40')
 



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

2013-10-21 Thread Allan McRae
Date: Monday, October 21, 2013 @ 10:42:57
  Author: allan
Revision: 196936

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

Added:
  zlib/repos/testing-i686/PKGBUILD
(from rev 196935, zlib/trunk/PKGBUILD)
  zlib/repos/testing-x86_64/PKGBUILD
(from rev 196935, zlib/trunk/PKGBUILD)
Deleted:
  zlib/repos/testing-i686/PKGBUILD
  zlib/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-10-21 08:41:31 UTC (rev 196935)
+++ testing-i686/PKGBUILD   2013-10-21 08:42:57 UTC (rev 196936)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=zlib
-pkgver=1.2.8
-pkgrel=2
-pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://www.zlib.net/";
-depends=('glibc')
-source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
-md5sums=('44d667c142d7cda120332623eab69f40')
-
-prepare() {
-   cd ${srcdir}/zlib-$pkgver
-   grep -A 24 '^  Copyright' zlib.h > LICENSE
-}
-
-build() {
-   cd ${srcdir}/zlib-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd ${srcdir}/zlib-$pkgver
-   make test
-}
-
-package() {
-   cd ${srcdir}/zlib-$pkgver
-   make install DESTDIR=${pkgdir}
-   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
-}

Copied: zlib/repos/testing-i686/PKGBUILD (from rev 196935, zlib/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 08:42:57 UTC (rev 196936)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=zlib
+pkgver=1.2.8
+pkgrel=3
+pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.zlib.net/";
+depends=('glibc')
+options=('staticlibs')  # needed by binutils testsuite
+source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
+md5sums=('44d667c142d7cda120332623eab69f40')
+
+prepare() {
+   cd ${srcdir}/zlib-$pkgver
+   grep -A 24 '^  Copyright' zlib.h > LICENSE
+}
+
+build() {
+   cd ${srcdir}/zlib-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make test
+}
+
+package() {
+   cd ${srcdir}/zlib-$pkgver
+   make install DESTDIR=${pkgdir}
+   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2013-10-21 08:41:31 UTC (rev 196935)
+++ testing-x86_64/PKGBUILD 2013-10-21 08:42:57 UTC (rev 196936)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=zlib
-pkgver=1.2.8
-pkgrel=2
-pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://www.zlib.net/";
-depends=('glibc')
-source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
-md5sums=('44d667c142d7cda120332623eab69f40')
-
-prepare() {
-   cd ${srcdir}/zlib-$pkgver
-   grep -A 24 '^  Copyright' zlib.h > LICENSE
-}
-
-build() {
-   cd ${srcdir}/zlib-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd ${srcdir}/zlib-$pkgver
-   make test
-}
-
-package() {
-   cd ${srcdir}/zlib-$pkgver
-   make install DESTDIR=${pkgdir}
-   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
-}

Copied: zlib/repos/testing-x86_64/PKGBUILD (from rev 196935, 
zlib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 08:42:57 UTC (rev 196936)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=zlib
+pkgver=1.2.8
+pkgrel=3
+pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.zlib.net/";
+depends=('glibc')
+options=('staticlibs')  # needed by binutils testsuite
+source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
+md5sums=('44d667c142d7cda120332623eab69f40')
+
+prepare() {
+   cd ${srcdir}/zlib-$pkgver
+   grep -A 24 '^  Copyright' zlib.h > LICENSE
+}
+
+build() {
+   cd ${srcdir}/zlib-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make test
+}
+
+package() {
+   cd ${srcdir}/zlib-$pkgver

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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 12:03:39
  Author: spupykin
Revision: 98900

upgpkg: anki 2.0.14-2

upd

Modified:
  anki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 07:30:43 UTC (rev 98899)
+++ PKGBUILD2013-10-21 10:03:39 UTC (rev 98900)
@@ -6,10 +6,10 @@
 
 pkgname=anki
 pkgver=2.0.14
-pkgrel=1
+pkgrel=2
 pkgdesc="Helps you remember facts (like words/phrases in a foreign language) 
efficiently"
 url="http://ankisrs.net/";
-license=('GPL')
+license=('AGPL3')
 arch=('any')
 depends=('python2-pyqt' 'python2-sqlalchemy' 'python2-simplejson'
 'python2-pysqlite' 'python2-beautifulsoup3')



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 12:03:53
  Author: spupykin
Revision: 98902

upgpkg: dbmail 3.1.7-3

upd

Modified:
  dbmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:03:48 UTC (rev 98901)
+++ PKGBUILD2013-10-21 10:03:53 UTC (rev 98902)
@@ -4,7 +4,7 @@
 
 pkgname=dbmail
 pkgver=3.1.7
-pkgrel=2
+pkgrel=3
 pkgdesc="Fast and scalable sql based mail services"
 arch=('i686' 'x86_64')
 depends=('gmime' 'libzdb' 'mhash' 'libevent')



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 12:03:48
  Author: spupykin
Revision: 98901

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   82 -
 anki.install |   20 ++---
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-10-21 10:03:39 UTC (rev 98900)
+++ PKGBUILD2013-10-21 10:03:48 UTC (rev 98901)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Timm Preetz 
-# Contributor: Michael 'manveru' Fellinger 
-# Contributor: Dave Pretty 
-
-pkgname=anki
-pkgver=2.0.14
-pkgrel=1
-pkgdesc="Helps you remember facts (like words/phrases in a foreign language) 
efficiently"
-url="http://ankisrs.net/";
-license=('GPL')
-arch=('any')
-depends=('python2-pyqt' 'python2-sqlalchemy' 'python2-simplejson'
-'python2-pysqlite' 'python2-beautifulsoup3')
-makedepends=()
-optdepends=('python2-matplotlib: show graphs'
-   'sox: audio recording'
-   'portaudio')
-install=anki.install
-source=(http://ankisrs.net/download/mirror/anki-$pkgver.tgz)
-md5sums=('9fbc8d9e10b3a295dc22a1343f56522b')
-
-build() {
-  cd $srcdir/anki-$pkgver
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' runanki
-  rm -f anki.bat
-}
-
-package() {
-  cd $srcdir/anki-$pkgver
-  mkdir -p $pkgdir/usr/{bin,share/{anki,pixmaps,applications,man/man1}}
-  cp -av * $pkgdir/usr/share/anki/
-  cd $pkgdir/usr/share/anki && (
-mv runanki ../../bin/anki
-mv anki.xpm anki.png ../pixmaps/
-mv anki.desktop ../applications/
-mv anki.1 ../man/man1/
-  )
-  rm -f $pkgdir/usr/share/anki/thirdparty/py*/_portaudio.so
-}

Copied: anki/repos/community-any/PKGBUILD (from rev 98900, anki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-10-21 10:03:48 UTC (rev 98901)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Timm Preetz 
+# Contributor: Michael 'manveru' Fellinger 
+# Contributor: Dave Pretty 
+
+pkgname=anki
+pkgver=2.0.14
+pkgrel=2
+pkgdesc="Helps you remember facts (like words/phrases in a foreign language) 
efficiently"
+url="http://ankisrs.net/";
+license=('AGPL3')
+arch=('any')
+depends=('python2-pyqt' 'python2-sqlalchemy' 'python2-simplejson'
+'python2-pysqlite' 'python2-beautifulsoup3')
+makedepends=()
+optdepends=('python2-matplotlib: show graphs'
+   'sox: audio recording'
+   'portaudio')
+install=anki.install
+source=(http://ankisrs.net/download/mirror/anki-$pkgver.tgz)
+md5sums=('9fbc8d9e10b3a295dc22a1343f56522b')
+
+build() {
+  cd $srcdir/anki-$pkgver
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' runanki
+  rm -f anki.bat
+}
+
+package() {
+  cd $srcdir/anki-$pkgver
+  mkdir -p $pkgdir/usr/{bin,share/{anki,pixmaps,applications,man/man1}}
+  cp -av * $pkgdir/usr/share/anki/
+  cd $pkgdir/usr/share/anki && (
+mv runanki ../../bin/anki
+mv anki.xpm anki.png ../pixmaps/
+mv anki.desktop ../applications/
+mv anki.1 ../man/man1/
+  )
+  rm -f $pkgdir/usr/share/anki/thirdparty/py*/_portaudio.so
+}

Deleted: anki.install
===
--- anki.install2013-10-21 10:03:39 UTC (rev 98900)
+++ anki.install2013-10-21 10:03:48 UTC (rev 98901)
@@ -1,10 +0,0 @@
-post_install() {
-#  xdg-mime install --novendor usr/share/anki/anki.xml
-#  xdg-mime default anki.desktop application/x-anki
-#  xdg-mime default anki.desktop application/x-apkg
-  [ -x usr/bin/update-desktop-database ] && update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}

Copied: anki/repos/community-any/anki.install (from rev 98900, 
anki/trunk/anki.install)
===
--- anki.install(rev 0)
+++ anki.install2013-10-21 10:03:48 UTC (rev 98901)
@@ -0,0 +1,10 @@
+post_install() {
+#  xdg-mime install --novendor usr/share/anki/anki.xml
+#  xdg-mime default anki.desktop application/x-anki
+#  xdg-mime default anki.desktop application/x-apkg
+  [ -x usr/bin/update-desktop-database ] && update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 12:04:20
  Author: spupykin
Revision: 98903

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

Added:
  dbmail/repos/community-i686/PKGBUILD
(from rev 98902, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-i686/dbmail-7-systemd.diff
(from rev 98902, dbmail/trunk/dbmail-7-systemd.diff)
  dbmail/repos/community-i686/dbmail-imapd.xinetd
(from rev 98902, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
(from rev 98902, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
(from rev 98902, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
(from rev 98902, dbmail/trunk/dbmail-timsieved.xinetd)
  dbmail/repos/community-x86_64/PKGBUILD
(from rev 98902, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-x86_64/dbmail-7-systemd.diff
(from rev 98902, dbmail/trunk/dbmail-7-systemd.diff)
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
(from rev 98902, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
(from rev 98902, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
(from rev 98902, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd
(from rev 98902, dbmail/trunk/dbmail-timsieved.xinetd)
Deleted:
  dbmail/repos/community-i686/PKGBUILD
  dbmail/repos/community-i686/dbmail-7-systemd.diff
  dbmail/repos/community-i686/dbmail-imapd.xinetd
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
  dbmail/repos/community-x86_64/PKGBUILD
  dbmail/repos/community-x86_64/dbmail-7-systemd.diff
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd

--+
 /PKGBUILD|  142 +++
 /dbmail-7-systemd.diff   |  352 +
 /dbmail-imapd.xinetd |   26 ++
 /dbmail-lmtpd.xinetd |   26 ++
 /dbmail-pop3d.xinetd |   26 ++
 /dbmail-timsieved.xinetd |   30 ++
 community-i686/PKGBUILD  |   71 -
 community-i686/dbmail-7-systemd.diff |  176 --
 community-i686/dbmail-imapd.xinetd   |   13 -
 community-i686/dbmail-lmtpd.xinetd   |   13 -
 community-i686/dbmail-pop3d.xinetd   |   13 -
 community-i686/dbmail-timsieved.xinetd   |   15 -
 community-x86_64/PKGBUILD|   71 -
 community-x86_64/dbmail-7-systemd.diff   |  176 --
 community-x86_64/dbmail-imapd.xinetd |   13 -
 community-x86_64/dbmail-lmtpd.xinetd |   13 -
 community-x86_64/dbmail-pop3d.xinetd |   13 -
 community-x86_64/dbmail-timsieved.xinetd |   15 -
 18 files changed, 602 insertions(+), 602 deletions(-)

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


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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:23:27
  Author: tpowa
Revision: 196938

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 10:23:14 UTC (rev 196937)
+++ extra-i686/PKGBUILD 2013-10-21 10:23:27 UTC (rev 196938)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgbase='ocaml'
-pkgname=('ocaml' 'ocaml-compiler-libs')
-pkgver=4.01.0
-pkgrel=1
-pkgdesc="A functional language with OO extensions"
-arch=('i686' 'x86_64')
-license=('LGPL2.1' 'custom: QPL-1.0')
-url="http://caml.inria.fr/";
-depends=('gdbm')
-makedepends=('tk>=8.6.0' 'ncurses>=5.6-7' 'libx11')
-optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
-source=(http://caml.inria.fr/distrib/ocaml-4.01/${pkgname}-${pkgver}.tar.gz)
-options=('!makeflags' '!emptydirs')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure -prefix /usr -x11include /usr/include 
-  make world.opt
-}
-
-package_ocaml() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install
-   
-  # Save >10MB with this one, makepkg only strips debug symbols.
-  #find "${pkgdir}/usr/lib" -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;
-
-  # install license
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-
-package_ocaml-compiler-libs() {
-pkgdesc="Several modules used internally by the OCaml compiler"
-license=('custom: QPL-1.0')
-depends=('ocaml')
-optdepends=()
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # Install compiler libraries
-  local compiler_libs="${pkgdir}/usr/lib/ocaml/compiler-libs"
-  mkdir -p "$compiler_libs"/{parsing,typing,utils}
-  cp parsing/*.{cmi,cmo,cmx,ml,mli,mll,o} "$compiler_libs"/parsing
-  cp typing/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/typing
-  cp utils/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/utils
-  # duplicated by installation
-  rm -f "$compiler_libs"/typing/outcometree.{cmi,mli}
-
-  # install license
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-md5sums=('04dfdd7da189462a4f10ec6530359cef')

Copied: ocaml/repos/extra-i686/PKGBUILD (from rev 196937, ocaml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 10:23:27 UTC (rev 196938)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgbase='ocaml'
+pkgname=('ocaml' 'ocaml-compiler-libs')
+pkgver=4.01.0
+pkgrel=2
+pkgdesc="A functional language with OO extensions"
+arch=('i686' 'x86_64')
+license=('LGPL2.1' 'custom: QPL-1.0')
+url="http://caml.inria.fr/";
+depends=('gdbm')
+makedepends=('tk>=8.6.0' 'ncurses>=5.6-7' 'libx11')
+optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
+source=(http://caml.inria.fr/distrib/ocaml-4.01/${pkgname}-${pkgver}.tar.gz)
+options=('!makeflags' '!emptydirs')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure -prefix /usr -x11include /usr/include 
+  make world.opt
+}
+
+package_ocaml() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install
+   
+  # Save >10MB with this one, makepkg only strips debug symbols.
+  #find "${pkgdir}/usr/lib" -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;
+
+  # install license
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
+}
+
+package_ocaml-compiler-libs() {
+pkgdesc="Several modules used internally by the OCaml compiler"
+license=('custom: QPL-1.0')
+depends=('ocaml')
+optdepends=()
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+
+  # Install compiler libraries
+  local compiler_libs="${pkgdir}/usr/lib/ocaml/compiler-libs"
+  mkdir -p "$compiler_libs"/{parsing,typing,utils}
+  cp parsing/*.{cmi,cmo,cmx,ml,mli,mll,o} "$compiler_libs"/parsing
+  cp typing/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/typing
+  cp utils/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/utils
+  # duplicated by installation
+  rm -f "$compiler_libs"/typing/outcometree.{cmi,mli}
+
+  # install license
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:23:14
  Author: tpowa
Revision: 196937

upgpkg: ocaml 4.01.0-2

remove static libraries

Modified:
  ocaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 08:42:57 UTC (rev 196936)
+++ PKGBUILD2013-10-21 10:23:14 UTC (rev 196937)
@@ -4,7 +4,7 @@
 pkgbase='ocaml'
 pkgname=('ocaml' 'ocaml-compiler-libs')
 pkgver=4.01.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A functional language with OO extensions"
 arch=('i686' 'x86_64')
 license=('LGPL2.1' 'custom: QPL-1.0')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:26:26
  Author: tpowa
Revision: 196939

upgpkg: misdnuser 2.0.17_20120917-3

remove static libraries

Modified:
  misdnuser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:23:27 UTC (rev 196938)
+++ PKGBUILD2013-10-21 10:26:26 UTC (rev 196939)
@@ -3,7 +3,7 @@
 
 pkgname=misdnuser
 pkgver=2.0.17_20120917
-pkgrel=2
+pkgrel=3
 pkgdesc="Tools and library for mISDN"
 arch=('i686' 'x86_64')
 url="http://www.misdn.org";



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:26:59
  Author: tpowa
Revision: 196940

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

Added:
  misdnuser/repos/extra-i686/PKGBUILD
(from rev 196939, misdnuser/trunk/PKGBUILD)
  misdnuser/repos/extra-i686/c2faxrecv-mISDNcapid.service
(from rev 196939, misdnuser/trunk/c2faxrecv-mISDNcapid.service)
  misdnuser/repos/extra-i686/fix-compile-gcc48.patch
(from rev 196939, misdnuser/trunk/fix-compile-gcc48.patch)
  misdnuser/repos/extra-i686/mISDNcapid.conf
(from rev 196939, misdnuser/trunk/mISDNcapid.conf)
  misdnuser/repos/extra-i686/mISDNcapid.service
(from rev 196939, misdnuser/trunk/mISDNcapid.service)
  misdnuser/repos/extra-x86_64/PKGBUILD
(from rev 196939, misdnuser/trunk/PKGBUILD)
  misdnuser/repos/extra-x86_64/c2faxrecv-mISDNcapid.service
(from rev 196939, misdnuser/trunk/c2faxrecv-mISDNcapid.service)
  misdnuser/repos/extra-x86_64/fix-compile-gcc48.patch
(from rev 196939, misdnuser/trunk/fix-compile-gcc48.patch)
  misdnuser/repos/extra-x86_64/mISDNcapid.conf
(from rev 196939, misdnuser/trunk/mISDNcapid.conf)
  misdnuser/repos/extra-x86_64/mISDNcapid.service
(from rev 196939, misdnuser/trunk/mISDNcapid.service)
Deleted:
  misdnuser/repos/extra-i686/PKGBUILD
  misdnuser/repos/extra-i686/c2faxrecv-mISDNcapid.service
  misdnuser/repos/extra-i686/fix-compile-gcc48.patch
  misdnuser/repos/extra-i686/mISDNcapid.conf
  misdnuser/repos/extra-i686/mISDNcapid.service
  misdnuser/repos/extra-x86_64/PKGBUILD
  misdnuser/repos/extra-x86_64/c2faxrecv-mISDNcapid.service
  misdnuser/repos/extra-x86_64/fix-compile-gcc48.patch
  misdnuser/repos/extra-x86_64/mISDNcapid.conf
  misdnuser/repos/extra-x86_64/mISDNcapid.service

---+
 /PKGBUILD |  110 
 /c2faxrecv-mISDNcapid.service |   22 +
 /fix-compile-gcc48.patch  |   30 +++
 /mISDNcapid.conf  |2 
 /mISDNcapid.service   |   22 +
 extra-i686/PKGBUILD   |   55 --
 extra-i686/c2faxrecv-mISDNcapid.service   |   11 --
 extra-i686/fix-compile-gcc48.patch|   15 ---
 extra-i686/mISDNcapid.conf|1 
 extra-i686/mISDNcapid.service |   11 --
 extra-x86_64/PKGBUILD |   55 --
 extra-x86_64/c2faxrecv-mISDNcapid.service |   11 --
 extra-x86_64/fix-compile-gcc48.patch  |   15 ---
 extra-x86_64/mISDNcapid.conf  |1 
 extra-x86_64/mISDNcapid.service   |   11 --
 15 files changed, 186 insertions(+), 186 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 10:26:26 UTC (rev 196939)
+++ extra-i686/PKGBUILD 2013-10-21 10:26:59 UTC (rev 196940)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=misdnuser
-pkgver=2.0.17_20120917
-pkgrel=2
-pkgdesc="Tools and library for mISDN"
-arch=('i686' 'x86_64')
-url="http://www.misdn.org";
-license=('GPL')
-depends=('isdn4k-utils' 'spandsp')
-backup=('etc/capi20.conf') 
-options=('!makeflags' '!libtool' '!strip')
-source=(ftp://ftp.archlinux.org/other/misdnuser/${pkgname}-${pkgver}.tar.gz
-mISDNcapid.service
-c2faxrecv-mISDNcapid.service
-mISDNcapid.conf
-fix-compile-gcc48.patch)
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # fix gcc48 compile error
-  patch -Np1 -i ${srcdir}/fix-compile-gcc48.patch
-}
-
-build() {
-  # only enable for debugging!
-  #export CFLAGS+=" -g -O0"
-  #export CXXFLAGS+=" -g -O0"
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make
-  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --enable-capi 
--enable-softdsp --with-mISDN_group=uucp
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # fix udev rule
-  mkdir -p ${pkgdir}/usr/lib/udev/rules.d
-  mv ${pkgdir}/etc/udev/rules.d/45-misdn.rules ${pkgdir}/usr/lib/udev/rules.d
-  rm -r ${pkgdir}/etc/udev/
-  # add systemd files
-  install -D -m644 ${srcdir}/mISDNcapid.service 
${pkgdir}/usr/lib/systemd/system/mISDNcapid.service
-  # mISDNcapid:
-  # tends to crash on avmfritz card, add an extra systemd file for
-  # restarting the services until segfaults are fixed!
-  install -D -m644 ${srcdir}/c2faxrecv-mISDNcapid.service 
${pkgdir}/usr/lib/systemd/system/c2faxrecv-mISDNcapid.service
-  install -D -m644 ${srcdir}/mISDNcapid.conf 
${pkgdir}/usr/lib/tmpfiles.d/mISDNcapid.conf
-}
-md5sums=('4cdb52f2c0ff1a1426573ac5ef09e9f8'
- 'bfd47480a54b41394ba5cc3f53587130'
- '32ead7f063e007c784aa883d441f33c2'
- '42c3b46880a68c3883ee1ed00af34b45'
- 'b291e9a04378decec33c420a62a5a4b7')

Copied: misdnuser/repos/extra-i686/PKGBUILD (from rev 196939, 
misdnuser/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD   

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:29:35
  Author: tpowa
Revision: 196941

upgpkg: isdn4k-utils 3.25_20130409-3

remove static libraries

Modified:
  isdn4k-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:26:59 UTC (rev 196940)
+++ PKGBUILD2013-10-21 10:29:35 UTC (rev 196941)
@@ -4,7 +4,7 @@
 
 pkgname=isdn4k-utils
 pkgver=3.25_20130409
-pkgrel=2
+pkgrel=3
 pkgdesc="User space administration programs and tools for ISDN"
 arch=('i686' 'x86_64')
 url="http://www.isdn4linux.de/";



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:30:16
  Author: tpowa
Revision: 196942

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

Added:
  isdn4k-utils/repos/testing-i686/
  isdn4k-utils/repos/testing-i686/PKGBUILD
(from rev 196941, isdn4k-utils/trunk/PKGBUILD)
  isdn4k-utils/repos/testing-i686/config
(from rev 196941, isdn4k-utils/trunk/config)
  isdn4k-utils/repos/testing-i686/isdn4k-utils-3.25-build.patch
(from rev 196941, isdn4k-utils/trunk/isdn4k-utils-3.25-build.patch)
  isdn4k-utils/repos/testing-i686/isdn4k-utils-3.2p1-build.patch
(from rev 196941, isdn4k-utils/trunk/isdn4k-utils-3.2p1-build.patch)
  isdn4k-utils/repos/testing-x86_64/
  isdn4k-utils/repos/testing-x86_64/PKGBUILD
(from rev 196941, isdn4k-utils/trunk/PKGBUILD)
  isdn4k-utils/repos/testing-x86_64/config
(from rev 196941, isdn4k-utils/trunk/config)
  isdn4k-utils/repos/testing-x86_64/isdn4k-utils-3.25-build.patch
(from rev 196941, isdn4k-utils/trunk/isdn4k-utils-3.25-build.patch)
  isdn4k-utils/repos/testing-x86_64/isdn4k-utils-3.2p1-build.patch
(from rev 196941, isdn4k-utils/trunk/isdn4k-utils-3.2p1-build.patch)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/config   |  102 +
 testing-i686/isdn4k-utils-3.25-build.patch|   18 
 testing-i686/isdn4k-utils-3.2p1-build.patch   | 2028 
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/config |  102 +
 testing-x86_64/isdn4k-utils-3.25-build.patch  |   18 
 testing-x86_64/isdn4k-utils-3.2p1-build.patch | 2028 
 8 files changed, 4398 insertions(+)

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


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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:31:53
  Author: tpowa
Revision: 196944

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

Added:
  openexr/repos/extra-i686/PKGBUILD
(from rev 196943, openexr/trunk/PKGBUILD)
  openexr/repos/extra-i686/gcc43.patch
(from rev 196943, openexr/trunk/gcc43.patch)
  openexr/repos/extra-x86_64/PKGBUILD
(from rev 196943, openexr/trunk/PKGBUILD)
  openexr/repos/extra-x86_64/gcc43.patch
(from rev 196943, openexr/trunk/gcc43.patch)
Deleted:
  openexr/repos/extra-i686/PKGBUILD
  openexr/repos/extra-i686/gcc43.patch
  openexr/repos/extra-x86_64/PKGBUILD
  openexr/repos/extra-x86_64/gcc43.patch

--+
 /PKGBUILD|   52 +
 /gcc43.patch |   22 +++
 extra-i686/PKGBUILD  |   26 --
 extra-i686/gcc43.patch   |   11 -
 extra-x86_64/PKGBUILD|   26 --
 extra-x86_64/gcc43.patch |   11 -
 6 files changed, 74 insertions(+), 74 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 10:31:44 UTC (rev 196943)
+++ extra-i686/PKGBUILD 2013-10-21 10:31:53 UTC (rev 196944)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=openexr
-pkgver=2.0.1
-pkgrel=1
-pkgdesc="An high dynamic-range image file format library"
-url="http://www.openexr.com/";
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('zlib' 'ilmbase')
-options=('!libtool')
-source=("http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-md5sums=('4387e6050d2faa65dd5215618ff2ddce')

Copied: openexr/repos/extra-i686/PKGBUILD (from rev 196943, 
openexr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 10:31:53 UTC (rev 196944)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=openexr
+pkgver=2.0.1
+pkgrel=2
+pkgdesc="An high dynamic-range image file format library"
+url="http://www.openexr.com/";
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('zlib' 'ilmbase')
+options=('!libtool')
+source=("http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+md5sums=('4387e6050d2faa65dd5215618ff2ddce')

Deleted: extra-i686/gcc43.patch
===
--- extra-i686/gcc43.patch  2013-10-21 10:31:44 UTC (rev 196943)
+++ extra-i686/gcc43.patch  2013-10-21 10:31:53 UTC (rev 196944)
@@ -1,11 +0,0 @@
 exrenvmap/blurImage.cpp
-+++ exrenvmap/blurImage.cpp
-@@ -39,6 +39,8 @@
- //
- 
//-
- 
-+#include 
-+
- #include 
- 
- #include 

Copied: openexr/repos/extra-i686/gcc43.patch (from rev 196943, 
openexr/trunk/gcc43.patch)
===
--- extra-i686/gcc43.patch  (rev 0)
+++ extra-i686/gcc43.patch  2013-10-21 10:31:53 UTC (rev 196944)
@@ -0,0 +1,11 @@
+--- exrenvmap/blurImage.cpp
 exrenvmap/blurImage.cpp
+@@ -39,6 +39,8 @@
+ //
+ 
//-
+ 
++#include 
++
+ #include 
+ 
+ #include 

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 10:31:44 UTC (rev 196943)
+++ extra-x86_64/PKGBUILD   2013-10-21 10:31:53 UTC (rev 196944)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=openexr
-pkgver=2.0.1
-pkgrel=1
-pkgdesc="An high dynamic-range image file format library"
-url="http://www.openexr.com/";
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('zlib' 'ilmbase')
-options=('!libtool')
-source=("http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-md5sums=('4387e6050d2faa65dd5215618ff2ddce')

Copied: openexr/repos/extra-x86_64/PKGBUILD (from rev 196943, 
openexr/trunk/PKGBUILD)
===

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:31:44
  Author: tpowa
Revision: 196943

upgpkg: openexr 2.0.1-2

remove static libraries

Modified:
  openexr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:30:16 UTC (rev 196942)
+++ PKGBUILD2013-10-21 10:31:44 UTC (rev 196943)
@@ -3,7 +3,7 @@
 
 pkgname=openexr
 pkgver=2.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An high dynamic-range image file format library"
 url="http://www.openexr.com/";
 arch=('i686' 'x86_64')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:34:44
  Author: tpowa
Revision: 196945

upgpkg: progsreiserfs 0.3.0.5-8

remove static libraries

Modified:
  progsreiserfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:31:53 UTC (rev 196944)
+++ PKGBUILD2013-10-21 10:34:44 UTC (rev 196945)
@@ -3,7 +3,7 @@
 
 pkgname=progsreiserfs
 pkgver=0.3.0.5
-pkgrel=7
+pkgrel=8
 pkgdesc="library for accessing and manipulating reiserfs partitions"
 arch=(i686 x86_64)
 url="http://www.namesys.com";



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:34:53
  Author: tpowa
Revision: 196946

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

Added:
  progsreiserfs/repos/extra-i686/PKGBUILD
(from rev 196945, progsreiserfs/trunk/PKGBUILD)
  progsreiserfs/repos/extra-i686/fix-underquoted-definition.patch
(from rev 196945, progsreiserfs/trunk/fix-underquoted-definition.patch)
  progsreiserfs/repos/extra-x86_64/PKGBUILD
(from rev 196945, progsreiserfs/trunk/PKGBUILD)
  progsreiserfs/repos/extra-x86_64/fix-underquoted-definition.patch
(from rev 196945, progsreiserfs/trunk/fix-underquoted-definition.patch)
Deleted:
  progsreiserfs/repos/extra-i686/PKGBUILD
  progsreiserfs/repos/extra-i686/fix-underquoted-definition.patch
  progsreiserfs/repos/extra-x86_64/PKGBUILD
  progsreiserfs/repos/extra-x86_64/fix-underquoted-definition.patch

---+
 /PKGBUILD |   68 
 /fix-underquoted-definition.patch |   22 +++
 extra-i686/PKGBUILD   |   34 
 extra-i686/fix-underquoted-definition.patch   |   11 ---
 extra-x86_64/PKGBUILD |   34 
 extra-x86_64/fix-underquoted-definition.patch |   11 ---
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 10:34:44 UTC (rev 196945)
+++ extra-i686/PKGBUILD 2013-10-21 10:34:53 UTC (rev 196946)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=progsreiserfs
-pkgver=0.3.0.5
-pkgrel=7
-pkgdesc="library for accessing and manipulating reiserfs partitions"
-arch=(i686 x86_64)
-url="http://www.namesys.com";
-license=('GPL')
-depends=('e2fsprogs')
-options=('!libtool')
-source=(#ftp://ftp.namesys.com/pub/libreiserfs/${pkgname}-${pkgver}.tar.gz
-   ftp://ftp.archlinux.org/other/progsreiserfs/${pkgname}-${pkgver}.tar.gz
-fix-underquoted-definition.patch
-   )
-md5sums=('d822579bbd4a29a1be5e4490869d9bee')
-
-build(){
-cd ${srcdir}/${pkgname}-${pkgver}
-patch -Np0 -i ../fix-underquoted-definition.patch
-./configure --prefix=/usr --mandir=/usr/share/man 
-make
-}
-package() {
-cd ${srcdir}/${pkgname}-${pkgver} 
-make DESTDIR=${pkgdir} install
-# only provide lib and includes files
-# https://bugs.archlinux.org/task/22255
-rm -r ${pkgdir}/usr/sbin
-   rm -r ${pkgdir}/usr/share/man/
-}
-md5sums=('d822579bbd4a29a1be5e4490869d9bee'
- '4c47c1f136d01f60cb73f84116edbcc2')

Copied: progsreiserfs/repos/extra-i686/PKGBUILD (from rev 196945, 
progsreiserfs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 10:34:53 UTC (rev 196946)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=progsreiserfs
+pkgver=0.3.0.5
+pkgrel=8
+pkgdesc="library for accessing and manipulating reiserfs partitions"
+arch=(i686 x86_64)
+url="http://www.namesys.com";
+license=('GPL')
+depends=('e2fsprogs')
+options=('!libtool')
+source=(#ftp://ftp.namesys.com/pub/libreiserfs/${pkgname}-${pkgver}.tar.gz
+   ftp://ftp.archlinux.org/other/progsreiserfs/${pkgname}-${pkgver}.tar.gz
+fix-underquoted-definition.patch
+   )
+md5sums=('d822579bbd4a29a1be5e4490869d9bee')
+
+build(){
+cd ${srcdir}/${pkgname}-${pkgver}
+patch -Np0 -i ../fix-underquoted-definition.patch
+./configure --prefix=/usr --mandir=/usr/share/man 
+make
+}
+package() {
+cd ${srcdir}/${pkgname}-${pkgver} 
+make DESTDIR=${pkgdir} install
+# only provide lib and includes files
+# https://bugs.archlinux.org/task/22255
+rm -r ${pkgdir}/usr/sbin
+   rm -r ${pkgdir}/usr/share/man/
+}
+md5sums=('d822579bbd4a29a1be5e4490869d9bee'
+ '4c47c1f136d01f60cb73f84116edbcc2')

Deleted: extra-i686/fix-underquoted-definition.patch
===
--- extra-i686/fix-underquoted-definition.patch 2013-10-21 10:34:44 UTC (rev 
196945)
+++ extra-i686/fix-underquoted-definition.patch 2013-10-21 10:34:53 UTC (rev 
196946)
@@ -1,11 +0,0 @@
 progsreiserfs.m4~  2011-08-26 17:02:36.263433559 +0200
-+++ progsreiserfs.m4   2011-08-26 17:02:36.263433559 +0200
-@@ -10,7 +10,7 @@
- dnl Adds the required libraries to $REISERFS_LIBS and does an
- dnl AC_SUBST(REISERFS_LIBS)
- 
--AC_DEFUN(AC_CHECK_LIBREISERFS,
-+AC_DEFUN([AC_CHECK_LIBREISERFS],
- [
- 
- dnl save LIBS

Copied: progsreiserfs/repos/extra-i686/fix-underquoted-definition.patch (from 
rev 196945, progsreiserfs/trunk/fix-underquoted-definition.patch)
===
--- extra-i686/fix-underquoted-definition.patch (rev 0)
+++ extra-i686

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:36:00
  Author: tpowa
Revision: 196947

upgpkg: xfsprogs 3.1.11-2

remove static libraries

Modified:
  xfsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:34:53 UTC (rev 196946)
+++ PKGBUILD2013-10-21 10:36:00 UTC (rev 196947)
@@ -2,7 +2,7 @@
 #
 pkgname=xfsprogs
 pkgver=3.1.11
-pkgrel=1
+pkgrel=2
 pkgdesc="XFS filesystem utilities"
 arch=('i686' 'x86_64')
 license=('LGPL')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:36:09
  Author: tpowa
Revision: 196948

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

Added:
  xfsprogs/repos/testing-i686/
  xfsprogs/repos/testing-i686/PKGBUILD
(from rev 196947, xfsprogs/trunk/PKGBUILD)
  xfsprogs/repos/testing-x86_64/
  xfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 196947, xfsprogs/trunk/PKGBUILD)

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

Copied: xfsprogs/repos/testing-i686/PKGBUILD (from rev 196947, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 10:36:09 UTC (rev 196948)
@@ -0,0 +1,33 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=3.1.11
+pkgrel=2
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/";
+groups=('base')
+depends=('util-linux')
+options=('!makeflags' '!libtool')
+# We mirror the sources as upstream tends to move them once a new release is 
out
+source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('de9f1f45026c2f4e0776058d429ff4b6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}

Copied: xfsprogs/repos/testing-x86_64/PKGBUILD (from rev 196947, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 10:36:09 UTC (rev 196948)
@@ -0,0 +1,33 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=3.1.11
+pkgrel=2
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/";
+groups=('base')
+depends=('util-linux')
+options=('!makeflags' '!libtool')
+# We mirror the sources as upstream tends to move them once a new release is 
out
+source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('de9f1f45026c2f4e0776058d429ff4b6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:37:47
  Author: tpowa
Revision: 196950

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

Added:
  musicbrainz/repos/extra-i686/PKGBUILD
(from rev 196949, musicbrainz/trunk/PKGBUILD)
  musicbrainz/repos/extra-i686/gcc4.3.patch
(from rev 196949, musicbrainz/trunk/gcc4.3.patch)
  musicbrainz/repos/extra-x86_64/PKGBUILD
(from rev 196949, musicbrainz/trunk/PKGBUILD)
  musicbrainz/repos/extra-x86_64/gcc4.3.patch
(from rev 196949, musicbrainz/trunk/gcc4.3.patch)
Deleted:
  musicbrainz/repos/extra-i686/PKGBUILD
  musicbrainz/repos/extra-i686/gcc4.3.patch
  musicbrainz/repos/extra-x86_64/PKGBUILD
  musicbrainz/repos/extra-x86_64/gcc4.3.patch

---+
 /PKGBUILD |   74 
 /gcc4.3.patch |  114 
 extra-i686/PKGBUILD   |   37 --
 extra-i686/gcc4.3.patch   |   57 --
 extra-x86_64/PKGBUILD |   37 --
 extra-x86_64/gcc4.3.patch |   57 --
 6 files changed, 188 insertions(+), 188 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 10:37:38 UTC (rev 196949)
+++ extra-i686/PKGBUILD 2013-10-21 10:37:47 UTC (rev 196950)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Alexander Baldeck 
-# Contributor: dorphell 
-# Contributor: Tom Newsom 
-# Contributor: Sarah Hay 
-
-pkgname=musicbrainz
-pkgver=2.1.5
-pkgrel=5
-pkgdesc="The second generation incarnation of the CD Index"
-arch=('i686' 'x86_64')
-url="http://www.musicbrainz.org";
-license=('LGPL')
-depends=('expat>=2.0' 'gcc-libs')
-makedepends=('python2')
-options=('!libtool')
-source=(ftp://ftp.musicbrainz.org/pub/$pkgname/libmusicbrainz-${pkgver}.tar.gz
-   'gcc4.3.patch')
-
-build() {
-  cd ${srcdir}/lib${pkgname}-${pkgver}
-
-  patch -p1 -i ${srcdir}/gcc4.3.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/lib${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  cd python
-  python2 setup.py install --root=${pkgdir}
-}
-md5sums=('d5e19bb77edd6ea798ce206bd05ccc5f'
- '945d03e3bd15d488ffdb2287ffa7')

Copied: musicbrainz/repos/extra-i686/PKGBUILD (from rev 196949, 
musicbrainz/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 10:37:47 UTC (rev 196950)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: 
+# Contributor: Alexander Baldeck 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+# Contributor: Sarah Hay 
+
+pkgname=musicbrainz
+pkgver=2.1.5
+pkgrel=6
+pkgdesc="The second generation incarnation of the CD Index"
+arch=('i686' 'x86_64')
+url="http://www.musicbrainz.org";
+license=('LGPL')
+depends=('expat>=2.0' 'gcc-libs')
+makedepends=('python2')
+options=('!libtool')
+source=(ftp://ftp.musicbrainz.org/pub/$pkgname/libmusicbrainz-${pkgver}.tar.gz
+   'gcc4.3.patch')
+
+build() {
+  cd ${srcdir}/lib${pkgname}-${pkgver}
+
+  patch -p1 -i ${srcdir}/gcc4.3.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/lib${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  cd python
+  python2 setup.py install --root=${pkgdir}
+}
+md5sums=('d5e19bb77edd6ea798ce206bd05ccc5f'
+ '945d03e3bd15d488ffdb2287ffa7')

Deleted: extra-i686/gcc4.3.patch
===
--- extra-i686/gcc4.3.patch 2013-10-21 10:37:38 UTC (rev 196949)
+++ extra-i686/gcc4.3.patch 2013-10-21 10:37:47 UTC (rev 196950)
@@ -1,57 +0,0 @@
-diff -Naur libmusicbrainz-2.1.4-orig/lib/c_wrapper.cpp 
libmusicbrainz-2.1.4/lib/c_wrapper.cpp
 libmusicbrainz-2.1.4-orig/lib/c_wrapper.cpp2003-10-16 
16:21:10.0 -0600
-+++ libmusicbrainz-2.1.4/lib/c_wrapper.cpp 2007-12-16 09:45:21.0 
-0600
-@@ -24,6 +24,7 @@
- #include "musicbrainz.h"
- #include "trm.h"
- #include "mb_c.h"
-+#include 
- 
- extern "C"
- {
-diff -Naur libmusicbrainz-2.1.4-orig/lib/comhttpsocket.cpp 
libmusicbrainz-2.1.4/lib/comhttpsocket.cpp
 libmusicbrainz-2.1.4-orig/lib/comhttpsocket.cpp2006-05-11 
12:46:54.0 -0600
-+++ libmusicbrainz-2.1.4/lib/comhttpsocket.cpp 2007-12-16 09:46:28.0 
-0600
-@@ -20,6 +20,7 @@
- #endif
- #include 
- #include 
-+#include 
- 
- const char* g_strCOMVer = "libmusicbrainz/"VERSION;
- 
-diff -Naur libmusicbrainz-2.1.4-orig/lib/comsocket.cpp 
libmusicbrainz-2.1.4/lib/comsocket.cpp
 libmusicbrainz-2.1.4-orig/lib/comsocket.cpp2006-05-11 
12:46:54.0 -0600
-+++ libmusicbrainz-2.1.4/lib/comsocket.cpp 2007-12-16 09:46:08.0 
-0600
-@@ -37,6 +37,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-diff -Naur libmusicbrainz-2.1.4-orig/lib/http.cpp 
libmusicbrainz-2.1.4/lib/http.cpp
 libmusicbrainz-2.1.4-orig/lib

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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 12:37:38
  Author: tpowa
Revision: 196949

upgpkg: musicbrainz 2.1.5-6

remove static libraries

Modified:
  musicbrainz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:36:09 UTC (rev 196948)
+++ PKGBUILD2013-10-21 10:37:38 UTC (rev 196949)
@@ -7,7 +7,7 @@
 
 pkgname=musicbrainz
 pkgver=2.1.5
-pkgrel=5
+pkgrel=6
 pkgdesc="The second generation incarnation of the CD Index"
 arch=('i686' 'x86_64')
 url="http://www.musicbrainz.org";



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

2013-10-21 Thread Lukas Jirkovsky
Date: Monday, October 21, 2013 @ 12:45:48
  Author: stativ
Revision: 98911

upgpkg: log4cpp 1.1-2

remove static libraries

Modified:
  log4cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:30:06 UTC (rev 98910)
+++ PKGBUILD2013-10-21 10:45:48 UTC (rev 98911)
@@ -4,7 +4,7 @@
 
 pkgname=log4cpp
 pkgver=1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA 
and other destinations."
 arch=('i686' 'x86_64')
 url="http://log4cpp.sourceforge.net/";



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

2013-10-21 Thread Lukas Jirkovsky
Date: Monday, October 21, 2013 @ 12:46:13
  Author: stativ
Revision: 98912

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

Added:
  log4cpp/repos/community-i686/PKGBUILD
(from rev 98911, log4cpp/trunk/PKGBUILD)
  log4cpp/repos/community-x86_64/PKGBUILD
(from rev 98911, log4cpp/trunk/PKGBUILD)
Deleted:
  log4cpp/repos/community-i686/PKGBUILD
  log4cpp/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-10-21 10:45:48 UTC (rev 98911)
+++ community-i686/PKGBUILD 2013-10-21 10:46:13 UTC (rev 98912)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-# Contributor : Geraud Le Falher 
-
-pkgname=log4cpp
-pkgver=1.1
-pkgrel=1
-pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA 
and other destinations."
-arch=('i686' 'x86_64')
-url="http://log4cpp.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('b9ef6244baa5e5e435f35e0b9474b35d')
-
-build() {
-   cd "$srcdir/$pkgname"
-  ./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa
-   make
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: set ft=sh ts=2 sw=2 et:

Copied: log4cpp/repos/community-i686/PKGBUILD (from rev 98911, 
log4cpp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-21 10:46:13 UTC (rev 98912)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor : Geraud Le Falher 
+
+pkgname=log4cpp
+pkgver=1.1
+pkgrel=2
+pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA 
and other destinations."
+arch=('i686' 'x86_64')
+url="http://log4cpp.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('b9ef6244baa5e5e435f35e0b9474b35d')
+
+build() {
+   cd "$srcdir/$pkgname"
+  ./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa
+   make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: set ft=sh ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-10-21 10:45:48 UTC (rev 98911)
+++ community-x86_64/PKGBUILD   2013-10-21 10:46:13 UTC (rev 98912)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-# Contributor : Geraud Le Falher 
-
-pkgname=log4cpp
-pkgver=1.1
-pkgrel=1
-pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA 
and other destinations."
-arch=('i686' 'x86_64')
-url="http://log4cpp.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('b9ef6244baa5e5e435f35e0b9474b35d')
-
-build() {
-   cd "$srcdir/$pkgname"
-  ./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa
-   make
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: set ft=sh ts=2 sw=2 et:

Copied: log4cpp/repos/community-x86_64/PKGBUILD (from rev 98911, 
log4cpp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-10-21 10:46:13 UTC (rev 98912)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor : Geraud Le Falher 
+
+pkgname=log4cpp
+pkgver=1.1
+pkgrel=2
+pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA 
and other destinations."
+arch=('i686' 'x86_64')
+url="http://log4cpp.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('b9ef6244baa5e5e435f35e0b9474b35d')
+
+build() {
+   cd "$srcdir/$pkgname"
+  ./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa
+   make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: set ft=sh ts=2 sw=2 et:



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 12:52:00
  Author: heftig
Revision: 196952

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 10:51:34 UTC (rev 196951)
+++ extra-i686/PKGBUILD 2013-10-21 10:52:00 UTC (rev 196952)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Lauri Niskanen 
-# Contributor: Ray Rashif 
-
-pkgname=celt
-pkgver=0.11.3
-pkgrel=1
-pkgdesc="Low-latency audio communication codec"
-arch=(i686 x86_64)
-url="http://www.celt-codec.org/";
-license=(BSD)
-depends=(libogg)
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5511732a426cc42bf986ca79b5cdd02f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: celt/repos/extra-i686/PKGBUILD (from rev 196951, celt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 10:52:00 UTC (rev 196952)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Lauri Niskanen 
+# Contributor: Ray Rashif 
+
+pkgname=celt
+pkgver=0.11.3
+pkgrel=2
+pkgdesc="Low-latency audio communication codec"
+arch=(i686 x86_64)
+url="http://www.celt-codec.org/";
+license=(BSD)
+depends=(libogg)
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('5511732a426cc42bf986ca79b5cdd02f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 10:51:34 UTC (rev 196951)
+++ extra-x86_64/PKGBUILD   2013-10-21 10:52:00 UTC (rev 196952)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Lauri Niskanen 
-# Contributor: Ray Rashif 
-
-pkgname=celt
-pkgver=0.11.3
-pkgrel=1
-pkgdesc="Low-latency audio communication codec"
-arch=(i686 x86_64)
-url="http://www.celt-codec.org/";
-license=(BSD)
-depends=(libogg)
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5511732a426cc42bf986ca79b5cdd02f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: celt/repos/extra-x86_64/PKGBUILD (from rev 196951, celt/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 10:52:00 UTC (rev 196952)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Lauri Niskanen 
+# Contributor: Ray Rashif 
+
+pkgname=celt
+pkgver=0.11.3
+pkgrel=2
+pkgdesc="Low-latency audio communication codec"
+arch=(i686 x86_64)
+url="http://www.celt-codec.org/";
+license=(BSD)
+depends=(libogg)
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('5511732a426cc42bf986ca79b5cdd02f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 12:51:34
  Author: heftig
Revision: 196951

staticlibs

Modified:
  celt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:37:47 UTC (rev 196950)
+++ PKGBUILD2013-10-21 10:51:34 UTC (rev 196951)
@@ -6,7 +6,7 @@
 
 pkgname=celt
 pkgver=0.11.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Low-latency audio communication codec"
 arch=(i686 x86_64)
 url="http://www.celt-codec.org/";
@@ -18,7 +18,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
   make
 }
 



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 12:59:56
  Author: heftig
Revision: 196953

staticlibs

Modified:
  freealut/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:52:00 UTC (rev 196952)
+++ PKGBUILD2013-10-21 10:59:56 UTC (rev 196953)
@@ -4,7 +4,7 @@
 
 pkgname=freealut
 pkgver=1.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc="OpenAL Utility Toolkit (ALUT)"
 arch=('i686' 'x86_64')
 url="http://www.openal.org";
@@ -11,12 +11,12 @@
 license=("LGPL")
 depends=('openal')
 options=('!libtool')
-source=(http://connect.creativelabs.com/openal/Downloads/ALUT/$pkgname-$pkgver.tar.gz)
+source=(http://pkgs.fedoraproject.org/repo/pkgs/freealut/freealut-1.1.0.tar.gz/e089b28a0267faabdb6c079ee173664a/freealut-1.1.0.tar.gz)
 md5sums=('e089b28a0267faabdb6c079ee173664a')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr 
+  ./configure --prefix=/usr  --disable-static
   make
 }
 



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

2013-10-21 Thread Lukas Jirkovsky
Date: Monday, October 21, 2013 @ 13:02:54
  Author: stativ
Revision: 98913

pion: prepare update to 5.0.4, change the plugin dir to /usr/lib

Modified:
  pion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:46:13 UTC (rev 98912)
+++ PKGBUILD2013-10-21 11:02:54 UTC (rev 98913)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=pion
-pkgver=5.0.2
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
 url="https://github.com/cloudmeter/pion";
@@ -13,7 +13,7 @@
 conflicts=('pion-net')
 replaces=('pion-net')
 source=(https://github.com/cloudmeter/pion/archive/$pkgver.zip)
-md5sums=('1f6a9f69114235ca98756cbcab16d162')
+md5sums=('5807d39beb0c80fdef5b8ad5cee71c1c')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -25,7 +25,7 @@
   # override Makefile bug
   sed -i "/docs:/ s/doxygen-doc//" Makefile.in
 
-  ./configure --prefix=/usr --disable-doxygen-doc
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins 
--disable-doxygen-doc
 
   make
 }



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

2013-10-21 Thread Allan McRae
Date: Monday, October 21, 2013 @ 13:23:31
  Author: allan
Revision: 196954

upgpkg: gcc 4.8.2-3

add back some needed static libraries

Modified:
  gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 10:59:56 UTC (rev 196953)
+++ PKGBUILD2013-10-21 11:23:31 UTC (rev 196954)
@@ -6,7 +6,7 @@
 
 pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
 pkgver=4.8.2
-pkgrel=2
+pkgrel=3
 #_snapshot=4.8-20130725
 pkgdesc="The GNU Compiler Collection"
 arch=('i686' 'x86_64')
@@ -153,7 +153,9 @@
   rm 
$pkgdir/usr/share/info/{gccgo,gfortran,gnat*,libgomp,libquadmath,libitm}.info
   rm $pkgdir/usr/share/locale/{de,fr}/LC_MESSAGES/libstdc++.mo
   rm $pkgdir/usr/share/man/man1/{gccgo,gfortran}.1
-  rm $pkgdir/usr/lib/lib{asan,gomp,itm,mudflap{,th},quadmath,stdc++}.a
+  
+  # remove static libraries - note libstdc++.a is needed for the binutils and 
glibc testsuite
+  rm $pkgdir/usr/lib/lib{asan,gomp,itm,mudflap{,th},quadmath}.a
   [[ $CARCH = "x86_64" ]] && rm $pkgdir/usr/lib/libtsan.a
 
   # many packages expect this symlinks
@@ -259,8 +261,6 @@
 
   ln -s gcc ${pkgdir}/usr/bin/gnatgcc
 
-  rm ${pkgdir}/usr/lib/gcc/$CHOST/${pkgver}/adalib/libgna{rl,t}.a
-
   # Install Runtime Library Exception
   install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
 ${pkgdir}/usr/share/licenses/gcc-ada/RUNTIME.LIBRARY.EXCEPTION



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

2013-10-21 Thread Allan McRae
Date: Monday, October 21, 2013 @ 13:26:02
  Author: allan
Revision: 196955

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

Added:
  gcc/repos/testing-i686/PKGBUILD
(from rev 196954, gcc/trunk/PKGBUILD)
  gcc/repos/testing-i686/gcc-4.8-filename-output.patch
(from rev 196954, gcc/trunk/gcc-4.8-filename-output.patch)
  gcc/repos/testing-i686/gcc-ada.install
(from rev 196954, gcc/trunk/gcc-ada.install)
  gcc/repos/testing-i686/gcc-fortran.install
(from rev 196954, gcc/trunk/gcc-fortran.install)
  gcc/repos/testing-i686/gcc-go.install
(from rev 196954, gcc/trunk/gcc-go.install)
  gcc/repos/testing-i686/gcc-libs.install
(from rev 196954, gcc/trunk/gcc-libs.install)
  gcc/repos/testing-i686/gcc.install
(from rev 196954, gcc/trunk/gcc.install)
  gcc/repos/testing-x86_64/PKGBUILD
(from rev 196954, gcc/trunk/PKGBUILD)
  gcc/repos/testing-x86_64/gcc-4.8-filename-output.patch
(from rev 196954, gcc/trunk/gcc-4.8-filename-output.patch)
  gcc/repos/testing-x86_64/gcc-ada.install
(from rev 196954, gcc/trunk/gcc-ada.install)
  gcc/repos/testing-x86_64/gcc-fortran.install
(from rev 196954, gcc/trunk/gcc-fortran.install)
  gcc/repos/testing-x86_64/gcc-go.install
(from rev 196954, gcc/trunk/gcc-go.install)
  gcc/repos/testing-x86_64/gcc-libs.install
(from rev 196954, gcc/trunk/gcc-libs.install)
  gcc/repos/testing-x86_64/gcc.install
(from rev 196954, gcc/trunk/gcc.install)
Deleted:
  gcc/repos/testing-i686/PKGBUILD
  gcc/repos/testing-i686/gcc-4.8-filename-output.patch
  gcc/repos/testing-i686/gcc-ada.install
  gcc/repos/testing-i686/gcc-fortran.install
  gcc/repos/testing-i686/gcc-go.install
  gcc/repos/testing-i686/gcc-libs.install
  gcc/repos/testing-i686/gcc.install
  gcc/repos/testing-x86_64/PKGBUILD
  gcc/repos/testing-x86_64/gcc-4.8-filename-output.patch
  gcc/repos/testing-x86_64/gcc-ada.install
  gcc/repos/testing-x86_64/gcc-fortran.install
  gcc/repos/testing-x86_64/gcc-go.install
  gcc/repos/testing-x86_64/gcc-libs.install
  gcc/repos/testing-x86_64/gcc.install

--+
 /PKGBUILD|  570 +
 /gcc-4.8-filename-output.patch   |   34 +
 /gcc-ada.install |   40 +
 /gcc-fortran.install |   32 +
 /gcc-go.install  |   40 +
 /gcc-libs.install|   32 +
 /gcc.install |   40 +
 testing-i686/PKGBUILD|  285 
 testing-i686/gcc-4.8-filename-output.patch   |   17 
 testing-i686/gcc-ada.install |   20 
 testing-i686/gcc-fortran.install |   16 
 testing-i686/gcc-go.install  |   20 
 testing-i686/gcc-libs.install|   16 
 testing-i686/gcc.install |   20 
 testing-x86_64/PKGBUILD  |  285 
 testing-x86_64/gcc-4.8-filename-output.patch |   17 
 testing-x86_64/gcc-ada.install   |   20 
 testing-x86_64/gcc-fortran.install   |   16 
 testing-x86_64/gcc-go.install|   20 
 testing-x86_64/gcc-libs.install  |   16 
 testing-x86_64/gcc.install   |   20 
 21 files changed, 788 insertions(+), 788 deletions(-)

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


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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:28:57
  Author: pierre
Revision: 196956

upgpkg: psi 0.15-2

rebuild old package

Modified:
  psi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:26:02 UTC (rev 196955)
+++ PKGBUILD2013-10-21 11:28:57 UTC (rev 196956)
@@ -3,7 +3,7 @@
 
 pkgname=psi
 pkgver=0.15
-pkgrel=1
+pkgrel=2
 pkgdesc='Instant messaging application designed for the Jabber IM'
 url='http://psi-im.org/'
 license=('GPL')
@@ -16,9 +16,13 @@
 md5sums=('aea15f17cf93e7cea52f305523f761be'
  '2ed44ef84007b5b7f9a3f0a4f5f6a86d')
 
+prepare() {
+   cd ${srcdir}/psi-${pkgver}
+   patch -p0 -i ${srcdir}/archlinux.patch
+}
+
 build() {
cd ${srcdir}/psi-${pkgver}
-   patch -p0 -i ${srcdir}/archlinux.patch
./configure --prefix=/usr --release --no-separate-debug-info
make
 }



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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:29:09
  Author: pierre
Revision: 196957

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

Added:
  psi/repos/testing-i686/
  psi/repos/testing-i686/PKGBUILD
(from rev 196956, psi/trunk/PKGBUILD)
  psi/repos/testing-i686/archlinux.patch
(from rev 196956, psi/trunk/archlinux.patch)
  psi/repos/testing-i686/psi.install
(from rev 196956, psi/trunk/psi.install)
  psi/repos/testing-x86_64/
  psi/repos/testing-x86_64/PKGBUILD
(from rev 196956, psi/trunk/PKGBUILD)
  psi/repos/testing-x86_64/archlinux.patch
(from rev 196956, psi/trunk/archlinux.patch)
  psi/repos/testing-x86_64/psi.install
(from rev 196956, psi/trunk/psi.install)

+
 testing-i686/PKGBUILD  |   34 ++
 testing-i686/archlinux.patch   |   11 +++
 testing-i686/psi.install   |   12 
 testing-x86_64/PKGBUILD|   34 ++
 testing-x86_64/archlinux.patch |   11 +++
 testing-x86_64/psi.install |   12 
 6 files changed, 114 insertions(+)

Copied: psi/repos/testing-i686/PKGBUILD (from rev 196956, psi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 11:29:09 UTC (rev 196957)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=psi
+pkgver=0.15
+pkgrel=2
+pkgdesc='Instant messaging application designed for the Jabber IM'
+url='http://psi-im.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qca-ossl' 'qca-gnupg' 'enchant' 'libxss' 'xdg-utils')
+makedepends=('icu')
+install='psi.install'
+source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2";
+'archlinux.patch')
+md5sums=('aea15f17cf93e7cea52f305523f761be'
+ '2ed44ef84007b5b7f9a3f0a4f5f6a86d')
+
+prepare() {
+   cd ${srcdir}/psi-${pkgver}
+   patch -p0 -i ${srcdir}/archlinux.patch
+}
+
+build() {
+   cd ${srcdir}/psi-${pkgver}
+   ./configure --prefix=/usr --release --no-separate-debug-info
+   make
+}
+
+package() {
+   cd ${srcdir}/psi-${pkgver}
+   make INSTALL_ROOT=${pkgdir} install
+   rm -rf ${pkgdir}/usr/share/psi/certs/
+}

Copied: psi/repos/testing-i686/archlinux.patch (from rev 196956, 
psi/trunk/archlinux.patch)
===
--- testing-i686/archlinux.patch(rev 0)
+++ testing-i686/archlinux.patch2013-10-21 11:29:09 UTC (rev 196957)
@@ -0,0 +1,11 @@
+--- src/systeminfo.cpp 2012-10-04 02:53:03.0 +0200
 src/systeminfo.cpp 2012-10-04 07:18:45.111088591 +0200
+@@ -114,7 +114,7 @@
+   { LinuxSlackware,   OsAppendFile,   
"/etc/slackware-version",   "Slackware Linux"   },
+   { LinuxPLD, OsUseFile,  "/etc/pld-release", 
"PLD Linux" },
+   { LinuxAurox,   OsUseName,  "/etc/aurox-release",   
"Aurox Linux"   },
+-  { LinuxArch,OsUseFile,  "/etc/arch-release",
"Arch Linux"},
++  { LinuxArch,OsUseName,  "/etc/arch-release",
"Arch Linux"},
+   { LinuxLFS, OsAppendFile,   "/etc/lfs-release", 
"LFS Linux" },
+ 
+   // untested

Copied: psi/repos/testing-i686/psi.install (from rev 196956, 
psi/trunk/psi.install)
===
--- testing-i686/psi.install(rev 0)
+++ testing-i686/psi.install2013-10-21 11:29:09 UTC (rev 196957)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: psi/repos/testing-x86_64/PKGBUILD (from rev 196956, psi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 11:29:09 UTC (rev 196957)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=psi
+pkgver=0.15
+pkgrel=2
+pkgdesc='Instant messaging application designed for the Jabber IM'
+url='http://psi-im.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qca-ossl' 'qca-gnupg' 'enchant' 'libxss' 'xdg-utils')
+makedepends=('icu')
+install='psi.install'
+source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2";
+'archlinux.patch')
+md5sums=('aea15f17cf93e7cea52f305523f761be'
+ '2ed44ef84007b5b7f9a3f0a4f5f6a86d')
+
+prepare() {
+   cd ${srcdir}/psi-${pkgver}
+   patch -p0 -i ${srcdir}/archlinux.patch
+}
+
+build() {
+   cd ${srcdir}/psi-${pkgver}
+   

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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:32:45
  Author: pierre
Revision: 196958

upgpkg: psi-i18n 0.15-2

rebuild old package

Modified:
  psi-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:29:09 UTC (rev 196957)
+++ PKGBUILD2013-10-21 11:32:45 UTC (rev 196958)
@@ -3,7 +3,7 @@
 
 pkgname=psi-i18n
 pkgver=0.15
-pkgrel=1
+pkgrel=2
 arch=('any')
 pkgdesc='Language packs for Psi'
 depends=('psi')



[arch-commits] Commit in psi-i18n/repos (testing-any testing-any/PKGBUILD)

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:32:51
  Author: pierre
Revision: 196959

archrelease: copy trunk to testing-any

Added:
  psi-i18n/repos/testing-any/
  psi-i18n/repos/testing-any/PKGBUILD
(from rev 196958, psi-i18n/trunk/PKGBUILD)

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

Copied: psi-i18n/repos/testing-any/PKGBUILD (from rev 196958, 
psi-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-10-21 11:32:51 UTC (rev 196959)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=psi-i18n
+pkgver=0.15
+pkgrel=2
+arch=('any')
+pkgdesc='Language packs for Psi'
+depends=('psi')
+license=('GPL')
+url='http://www.psi-im.org'
+source=('http://psi-im.org/download/lang/psi_be.qm'
+   'http://psi-im.org/download/lang/psi_cs.qm'
+   'http://psi-im.org/download/lang/psi_de.qm'
+   'http://psi-im.org/download/lang/psi_eo.qm'
+   'http://psi-im.org/download/lang/psi_es.qm'
+   'http://psi-im.org/download/lang/psi_es_ES.qm'
+   'http://psi-im.org/download/lang/psi_fr.qm'
+   'http://psi-im.org/download/lang/psi_it.qm'
+   'http://psi-im.org/download/lang/psi_ja.qm'
+   'http://psi-im.org/download/lang/psi_mk.qm'
+   'http://psi-im.org/download/lang/psi_pl.qm'
+   'http://psi-im.org/download/lang/psi_pt_BR.qm'
+   'http://psi-im.org/download/lang/psi_ru.qm'
+   'http://psi-im.org/download/lang/psi_sl.qm'
+   'http://psi-im.org/download/lang/psi_sv.qm'
+   'http://psi-im.org/download/lang/psi_uk.qm'
+'http://psi-im.org/download/lang/psi_ur_PK.qm'
+   'http://psi-im.org/download/lang/psi_vi.qm'
+   'http://psi-im.org/download/lang/psi_zh_CN.qm'
+'http://psi-im.org/download/lang/psi_zh_TW.qm')
+md5sums=('47d59547b763cc5faf239f88e33013f3'
+ '2800b4c549553b3ffc9962a11421e216'
+ '6a10c7ee8f1bbbdeb312c2307ff69745'
+ '95ffaa69e5faf0e80fe61269eac4'
+ 'e98895000e5e8a2b4e60ff6e0422a9e7'
+ '4201fb6718e11f09c64f636294ae4f9d'
+ 'b9fdc4a0743665994de37bfd0904d891'
+ 'b19c3c63817a4aa9a158be3be7de2538'
+ '930572adf773b1a7dfcfd6838e5ed438'
+ '0f1641a990f07619f9d48892a7992223'
+ '2ed61225f1f3e39384c9d21c1ad570fc'
+ '4555e2e489ad1fbe1887d1a3efbff03a'
+ '89d8b66aac37d83ecd4c2eb69950a4f0'
+ '701a2233dfad17e9e716a2bb6433cf79'
+ 'dc40389d3ef8b09e1cdd1d026e3e5519'
+ '7471c4f6ede205a85af27a735f4247e1'
+ 'b8deead1c303c38e64f7db72493a3be6'
+ 'acbb012cb0d1366378553938545e7191'
+ 'cfe0ca65a4441056b8c7284d9d015167'
+ 'df75abcd3d8bf30cd14af6d5a7f217cb')
+
+package() {
+   for i in $srcdir/*.qm; do
+   install -D -m644 $i $pkgdir/usr/share/psi/$(basename $i)
+   done
+}



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 13:46:02
  Author: heftig
Revision: 196961

staticlibs

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:45:38 UTC (rev 196960)
+++ PKGBUILD2013-10-21 11:46:02 UTC (rev 196961)
@@ -6,7 +6,7 @@
 
 pkgname=opus
 pkgver=1.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
 arch=(i686 x86_64)
 url="http://www.opus-codec.org/";
@@ -18,7 +18,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
   make
 }
 



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 13:45:38
  Author: heftig
Revision: 196960

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 11:32:51 UTC (rev 196959)
+++ extra-i686/PKGBUILD 2013-10-21 11:45:38 UTC (rev 196960)
@@ -1,26 +0,0 @@
-# $Id$ 
-# Maintainer:
-# Contributor: Arkamririon 
-
-pkgname=freealut
-pkgver=1.1.0
-pkgrel=4
-pkgdesc="OpenAL Utility Toolkit (ALUT)"
-arch=('i686' 'x86_64')
-url="http://www.openal.org";
-license=("LGPL")
-depends=('openal')
-options=('!libtool')
-source=(http://connect.creativelabs.com/openal/Downloads/ALUT/$pkgname-$pkgver.tar.gz)
-md5sums=('e089b28a0267faabdb6c079ee173664a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr 
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: freealut/repos/extra-i686/PKGBUILD (from rev 196959, 
freealut/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 11:45:38 UTC (rev 196960)
@@ -0,0 +1,26 @@
+# $Id$ 
+# Maintainer:
+# Contributor: Arkamririon 
+
+pkgname=freealut
+pkgver=1.1.0
+pkgrel=5
+pkgdesc="OpenAL Utility Toolkit (ALUT)"
+arch=('i686' 'x86_64')
+url="http://www.openal.org";
+license=("LGPL")
+depends=('openal')
+options=('!libtool')
+source=(http://pkgs.fedoraproject.org/repo/pkgs/freealut/freealut-1.1.0.tar.gz/e089b28a0267faabdb6c079ee173664a/freealut-1.1.0.tar.gz)
+md5sums=('e089b28a0267faabdb6c079ee173664a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr  --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 11:32:51 UTC (rev 196959)
+++ extra-x86_64/PKGBUILD   2013-10-21 11:45:38 UTC (rev 196960)
@@ -1,26 +0,0 @@
-# $Id$ 
-# Maintainer:
-# Contributor: Arkamririon 
-
-pkgname=freealut
-pkgver=1.1.0
-pkgrel=4
-pkgdesc="OpenAL Utility Toolkit (ALUT)"
-arch=('i686' 'x86_64')
-url="http://www.openal.org";
-license=("LGPL")
-depends=('openal')
-options=('!libtool')
-source=(http://connect.creativelabs.com/openal/Downloads/ALUT/$pkgname-$pkgver.tar.gz)
-md5sums=('e089b28a0267faabdb6c079ee173664a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr 
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: freealut/repos/extra-x86_64/PKGBUILD (from rev 196959, 
freealut/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 11:45:38 UTC (rev 196960)
@@ -0,0 +1,26 @@
+# $Id$ 
+# Maintainer:
+# Contributor: Arkamririon 
+
+pkgname=freealut
+pkgver=1.1.0
+pkgrel=5
+pkgdesc="OpenAL Utility Toolkit (ALUT)"
+arch=('i686' 'x86_64')
+url="http://www.openal.org";
+license=("LGPL")
+depends=('openal')
+options=('!libtool')
+source=(http://pkgs.fedoraproject.org/repo/pkgs/freealut/freealut-1.1.0.tar.gz/e089b28a0267faabdb6c079ee173664a/freealut-1.1.0.tar.gz)
+md5sums=('e089b28a0267faabdb6c079ee173664a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr  --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 13:46:35
  Author: heftig
Revision: 196962

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 11:46:02 UTC (rev 196961)
+++ extra-i686/PKGBUILD 2013-10-21 11:46:35 UTC (rev 196962)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.0.3
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/";
-license=(BSD)
-depends=(glibc)
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('86eedbd3c5a0171d2437850435e6edff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-i686/PKGBUILD (from rev 196961, opus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 11:46:35 UTC (rev 196962)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.0.3
+pkgrel=2
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/";
+license=(BSD)
+depends=(glibc)
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('86eedbd3c5a0171d2437850435e6edff')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 11:46:02 UTC (rev 196961)
+++ extra-x86_64/PKGBUILD   2013-10-21 11:46:35 UTC (rev 196962)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.0.3
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/";
-license=(BSD)
-depends=(glibc)
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('86eedbd3c5a0171d2437850435e6edff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-x86_64/PKGBUILD (from rev 196961, opus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 11:46:35 UTC (rev 196962)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.0.3
+pkgrel=2
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/";
+license=(BSD)
+depends=(glibc)
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('86eedbd3c5a0171d2437850435e6edff')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in ptlib/trunk (PKGBUILD ptlib-2.10.10-bison_fixes-1.patch)

2013-10-21 Thread Jan de Groot
Date: Monday, October 21, 2013 @ 13:47:53
  Author: jgc
Revision: 196963

upgpkg: ptlib 2.10.11-1

Remove static libs
Patch taken from blfs to work compile with recent version of bison

Added:
  ptlib/trunk/ptlib-2.10.10-bison_fixes-1.patch
Modified:
  ptlib/trunk/PKGBUILD

---+
 PKGBUILD  |   17 
 ptlib-2.10.10-bison_fixes-1.patch | 2895 
 2 files changed, 2907 insertions(+), 5 deletions(-)

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


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

2013-10-21 Thread Jan de Groot
Date: Monday, October 21, 2013 @ 13:48:01
  Author: jgc
Revision: 196964

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

Added:
  ptlib/repos/extra-i686/PKGBUILD
(from rev 196963, ptlib/trunk/PKGBUILD)
  ptlib/repos/extra-i686/ptlib-2.10.10-bison_fixes-1.patch
(from rev 196963, ptlib/trunk/ptlib-2.10.10-bison_fixes-1.patch)
  ptlib/repos/extra-x86_64/PKGBUILD
(from rev 196963, ptlib/trunk/PKGBUILD)
  ptlib/repos/extra-x86_64/ptlib-2.10.10-bison_fixes-1.patch
(from rev 196963, ptlib/trunk/ptlib-2.10.10-bison_fixes-1.patch)
Deleted:
  ptlib/repos/extra-i686/PKGBUILD
  ptlib/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   80 
 extra-i686/PKGBUILD|   33 
 extra-i686/ptlib-2.10.10-bison_fixes-1.patch   | 2895 +++
 extra-x86_64/PKGBUILD  |   33 
 extra-x86_64/ptlib-2.10.10-bison_fixes-1.patch | 2895 +++
 5 files changed, 5870 insertions(+), 66 deletions(-)

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


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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:52:49
  Author: pierre
Revision: 196967

upgpkg: lynx 2.8.7-7

rebuild old package

Modified:
  lynx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:52:49 UTC (rev 196966)
+++ PKGBUILD2013-10-21 11:52:49 UTC (rev 196967)
@@ -5,8 +5,7 @@
 
 pkgname=lynx
 pkgver=2.8.7
-_pkgver=2-8-7
-pkgrel=6
+pkgrel=7
 pkgdesc="A text browser for the World Wide Web"
 url="http://lynx.isc.org/";
 arch=('i686' 'x86_64')
@@ -17,10 +16,10 @@
 md5sums=('e36d70f3f09b2d502055ca67f09e363c')
 
 build() {
-  cd ${srcdir}/${pkgname}${_pkgver}
+  cd ${srcdir}/${pkgname}${pkgver//./-}
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
---with-ssl \
+--with-ssl=/usr \
 --enable-nls \
 --enable-ipv6 \
 --mandir=/usr/share/man
@@ -28,7 +27,7 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}${_pkgver}
+  cd ${srcdir}/${pkgname}${pkgver//./-}
   make DESTDIR=${pkgdir} install
 
   # FS#20404 - points to local help



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 13:52:15
  Author: heftig
Revision: 196965

staticlibs

Modified:
  speex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:48:01 UTC (rev 196964)
+++ PKGBUILD2013-10-21 11:52:15 UTC (rev 196965)
@@ -4,7 +4,7 @@
 
 pkgname=speex
 pkgver=1.2rc1
-pkgrel=3
+pkgrel=4
 pkgdesc="A free codec for free speech"
 arch=(i686 x86_64)
 url="http://www.speex.org/";
@@ -16,7 +16,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-static
   make
 }
 



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

2013-10-21 Thread Jan Steffens
Date: Monday, October 21, 2013 @ 13:52:49
  Author: heftig
Revision: 196966

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 11:52:15 UTC (rev 196965)
+++ extra-i686/PKGBUILD 2013-10-21 11:52:49 UTC (rev 196966)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributer: Jason Chu 
-
-pkgname=speex
-pkgver=1.2rc1
-pkgrel=3
-pkgdesc="A free codec for free speech"
-arch=(i686 x86_64)
-url="http://www.speex.org/";
-license=(BSD)
-depends=(libogg)
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('c4438b22c08e5811ff10e2b06ee9b9ae')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: speex/repos/extra-i686/PKGBUILD (from rev 196965, speex/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 11:52:49 UTC (rev 196966)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributer: Jason Chu 
+
+pkgname=speex
+pkgver=1.2rc1
+pkgrel=4
+pkgdesc="A free codec for free speech"
+arch=(i686 x86_64)
+url="http://www.speex.org/";
+license=(BSD)
+depends=(libogg)
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('c4438b22c08e5811ff10e2b06ee9b9ae')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 11:52:15 UTC (rev 196965)
+++ extra-x86_64/PKGBUILD   2013-10-21 11:52:49 UTC (rev 196966)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributer: Jason Chu 
-
-pkgname=speex
-pkgver=1.2rc1
-pkgrel=3
-pkgdesc="A free codec for free speech"
-arch=(i686 x86_64)
-url="http://www.speex.org/";
-license=(BSD)
-depends=(libogg)
-options=('!libtool')
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('c4438b22c08e5811ff10e2b06ee9b9ae')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: speex/repos/extra-x86_64/PKGBUILD (from rev 196965, 
speex/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 11:52:49 UTC (rev 196966)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributer: Jason Chu 
+
+pkgname=speex
+pkgver=1.2rc1
+pkgrel=4
+pkgdesc="A free codec for free speech"
+arch=(i686 x86_64)
+url="http://www.speex.org/";
+license=(BSD)
+depends=(libogg)
+options=('!libtool')
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('c4438b22c08e5811ff10e2b06ee9b9ae')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:52:57
  Author: pierre
Revision: 196968

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

Added:
  lynx/repos/testing-i686/
  lynx/repos/testing-i686/PKGBUILD
(from rev 196967, lynx/trunk/PKGBUILD)
  lynx/repos/testing-x86_64/
  lynx/repos/testing-x86_64/PKGBUILD
(from rev 196967, lynx/trunk/PKGBUILD)

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

Copied: lynx/repos/testing-i686/PKGBUILD (from rev 196967, lynx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 11:52:57 UTC (rev 196968)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Tom Newsom 
+
+pkgname=lynx
+pkgver=2.8.7
+pkgrel=7
+pkgdesc="A text browser for the World Wide Web"
+url="http://lynx.isc.org/";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'openssl')
+backup=('etc/lynx.cfg')
+source=("http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz";)
+md5sums=('e36d70f3f09b2d502055ca67f09e363c')
+
+build() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-ssl=/usr \
+--enable-nls \
+--enable-ipv6 \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  make DESTDIR=${pkgdir} install
+
+  # FS#20404 - points to local help
+  sed -i -e 
"s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|"
 ${pkgdir}/etc/lynx.cfg
+
+  install -d ${pkgdir}/usr/share/doc/lynx
+  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
+}

Copied: lynx/repos/testing-x86_64/PKGBUILD (from rev 196967, 
lynx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 11:52:57 UTC (rev 196968)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Tom Newsom 
+
+pkgname=lynx
+pkgver=2.8.7
+pkgrel=7
+pkgdesc="A text browser for the World Wide Web"
+url="http://lynx.isc.org/";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'openssl')
+backup=('etc/lynx.cfg')
+source=("http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz";)
+md5sums=('e36d70f3f09b2d502055ca67f09e363c')
+
+build() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-ssl=/usr \
+--enable-nls \
+--enable-ipv6 \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}${pkgver//./-}
+  make DESTDIR=${pkgdir} install
+
+  # FS#20404 - points to local help
+  sed -i -e 
"s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|"
 ${pkgdir}/etc/lynx.cfg
+
+  install -d ${pkgdir}/usr/share/doc/lynx
+  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
+}



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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:55:00
  Author: pierre
Revision: 196970

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

Added:
  aspell-de/repos/testing-i686/
  aspell-de/repos/testing-i686/PKGBUILD
(from rev 196969, aspell-de/trunk/PKGBUILD)
  aspell-de/repos/testing-x86_64/
  aspell-de/repos/testing-x86_64/PKGBUILD
(from rev 196969, aspell-de/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   40 
 testing-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: aspell-de/repos/testing-i686/PKGBUILD (from rev 196969, 
aspell-de/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 11:55:00 UTC (rev 196970)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone 
+# Contributor: Tobias Kieslich 
+
+pkgname=aspell-de
+pkgver=20120607
+pkgrel=2
+pkgdesc="German dictionary for aspell"
+arch=('i686' 'x86_64')
+url="http://j3e.de/ispell/igerman98/index.html";
+license=('GPL2')
+depends=('aspell')
+source=("http://j3e.de/ispell/igerman98/dict/igerman98-${pkgver}.tar.bz2";)
+md5sums=('9433d0ccd7db3c7681037980ece3f710')
+
+build() {
+  cd "${srcdir}/igerman98-${pkgver}"
+
+  LANGS="de_DE de_AT de_CH"
+  for l in ${LANGS}; do
+make aspell/${l}.rws
+  done
+}
+
+package() {
+  cd "${srcdir}/igerman98-${pkgver}/aspell"
+
+  install -d "${pkgdir}/usr/lib/aspell-0.60"
+
+  LANGS="de_DE de_AT de_CH"
+  for l in ${LANGS}; do
+install -m644 ${l}.alias ${l}.dat ${l}_affix.dat ${l}.multi ${l}.rws \
+  "${pkgdir}/usr/lib/aspell-0.60/"
+  done
+
+  echo "add de_DE.multi" > "${pkgdir}/usr/lib/aspell-0.60/deutsch.alias"
+  echo "add de_DE.multi" > "${pkgdir}/usr/lib/aspell-0.60/german.alias"
+  echo "add de_CH.multi" > "${pkgdir}/usr/lib/aspell-0.60/swiss.alias"
+}

Copied: aspell-de/repos/testing-x86_64/PKGBUILD (from rev 196969, 
aspell-de/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 11:55:00 UTC (rev 196970)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone 
+# Contributor: Tobias Kieslich 
+
+pkgname=aspell-de
+pkgver=20120607
+pkgrel=2
+pkgdesc="German dictionary for aspell"
+arch=('i686' 'x86_64')
+url="http://j3e.de/ispell/igerman98/index.html";
+license=('GPL2')
+depends=('aspell')
+source=("http://j3e.de/ispell/igerman98/dict/igerman98-${pkgver}.tar.bz2";)
+md5sums=('9433d0ccd7db3c7681037980ece3f710')
+
+build() {
+  cd "${srcdir}/igerman98-${pkgver}"
+
+  LANGS="de_DE de_AT de_CH"
+  for l in ${LANGS}; do
+make aspell/${l}.rws
+  done
+}
+
+package() {
+  cd "${srcdir}/igerman98-${pkgver}/aspell"
+
+  install -d "${pkgdir}/usr/lib/aspell-0.60"
+
+  LANGS="de_DE de_AT de_CH"
+  for l in ${LANGS}; do
+install -m644 ${l}.alias ${l}.dat ${l}_affix.dat ${l}.multi ${l}.rws \
+  "${pkgdir}/usr/lib/aspell-0.60/"
+  done
+
+  echo "add de_DE.multi" > "${pkgdir}/usr/lib/aspell-0.60/deutsch.alias"
+  echo "add de_DE.multi" > "${pkgdir}/usr/lib/aspell-0.60/german.alias"
+  echo "add de_CH.multi" > "${pkgdir}/usr/lib/aspell-0.60/swiss.alias"
+}



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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:54:52
  Author: pierre
Revision: 196969

upgpkg: aspell-de 20120607-2

rebuild old package

Modified:
  aspell-de/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:52:57 UTC (rev 196968)
+++ PKGBUILD2013-10-21 11:54:52 UTC (rev 196969)
@@ -5,7 +5,7 @@
 
 pkgname=aspell-de
 pkgver=20120607
-pkgrel=1
+pkgrel=2
 pkgdesc="German dictionary for aspell"
 arch=('i686' 'x86_64')
 url="http://j3e.de/ispell/igerman98/index.html";



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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:58:16
  Author: pierre
Revision: 196971

upgpkg: pkgstats 2.3-3

rebuild old package

Modified:
  pkgstats/trunk/PKGBUILD
  pkgstats/trunk/pkgstats.install

--+
 PKGBUILD |2 +-
 pkgstats.install |6 --
 2 files changed, 1 insertion(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:55:00 UTC (rev 196970)
+++ PKGBUILD2013-10-21 11:58:16 UTC (rev 196971)
@@ -3,7 +3,7 @@
 
 pkgname=pkgstats
 pkgver=2.3
-pkgrel=2
+pkgrel=3
 pkgdesc='submits a list of installed packages to the Arch Linux project'
 arch=('any')
 url='https://www.archlinux.de'

Modified: pkgstats.install
===
--- pkgstats.install2013-10-21 11:55:00 UTC (rev 196970)
+++ pkgstats.install2013-10-21 11:58:16 UTC (rev 196971)
@@ -1,9 +1,3 @@
-post_upgrade() {
-   if [ "$(vercmp $2 2.1-4)" -lt 0 ]; then
-   post_install
-   fi
-}
-
 post_install() {
echo "Note: A weekly cronjob was installed to /etc/cron.weekly/pkgstats"
echo "  For more information see 
https://bbs.archlinux.org/viewtopic.php?id=105431";



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

2013-10-21 Thread Pierre Schmitz
Date: Monday, October 21, 2013 @ 13:58:22
  Author: pierre
Revision: 196972

archrelease: copy trunk to testing-any

Added:
  pkgstats/repos/testing-any/
  pkgstats/repos/testing-any/PKGBUILD
(from rev 196971, pkgstats/trunk/PKGBUILD)
  pkgstats/repos/testing-any/pkgstats.cron
(from rev 196971, pkgstats/trunk/pkgstats.cron)
  pkgstats/repos/testing-any/pkgstats.install
(from rev 196971, pkgstats/trunk/pkgstats.install)
  pkgstats/repos/testing-any/pkgstats.sh
(from rev 196971, pkgstats/trunk/pkgstats.sh)

--+
 PKGBUILD |   20 +
 pkgstats.cron|2 +
 pkgstats.install |4 ++
 pkgstats.sh  |   79 +
 4 files changed, 105 insertions(+)

Copied: pkgstats/repos/testing-any/PKGBUILD (from rev 196971, 
pkgstats/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-10-21 11:58:22 UTC (rev 196972)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=pkgstats
+pkgver=2.3
+pkgrel=3
+pkgdesc='submits a list of installed packages to the Arch Linux project'
+arch=('any')
+url='https://www.archlinux.de'
+license=('GPL')
+depends=('bash' 'curl' 'pacman' 'sed' 'coreutils' 'cron' 'awk' 'grep')
+source=('pkgstats.sh' 'pkgstats.cron')
+install='pkgstats.install'
+md5sums=('2943bc8c6d8e3c0bd9b368a3f17b'
+ 'e86e6b9778303367f2e31f5c311da685')
+
+package() {
+   install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats
+   install -D -m744 ${srcdir}/pkgstats.cron 
${pkgdir}/etc/cron.weekly/pkgstats
+}

Copied: pkgstats/repos/testing-any/pkgstats.cron (from rev 196971, 
pkgstats/trunk/pkgstats.cron)
===
--- testing-any/pkgstats.cron   (rev 0)
+++ testing-any/pkgstats.cron   2013-10-21 11:58:22 UTC (rev 196972)
@@ -0,0 +1,2 @@
+#!/bin/sh
+su -s /bin/bash -c '/usr/bin/pkgstats -q' nobody

Copied: pkgstats/repos/testing-any/pkgstats.install (from rev 196971, 
pkgstats/trunk/pkgstats.install)
===
--- testing-any/pkgstats.install(rev 0)
+++ testing-any/pkgstats.install2013-10-21 11:58:22 UTC (rev 196972)
@@ -0,0 +1,4 @@
+post_install() {
+   echo "Note: A weekly cronjob was installed to /etc/cron.weekly/pkgstats"
+   echo "  For more information see 
https://bbs.archlinux.org/viewtopic.php?id=105431";
+}

Copied: pkgstats/repos/testing-any/pkgstats.sh (from rev 196971, 
pkgstats/trunk/pkgstats.sh)
===
--- testing-any/pkgstats.sh (rev 0)
+++ testing-any/pkgstats.sh 2013-10-21 11:58:22 UTC (rev 196972)
@@ -0,0 +1,79 @@
+#!/bin/bash
+
+pkgstatsver='2.3'
+showonly=false
+quiet=false
+option='-q -s -S -4'
+
+usage() {
+   echo "usage: ${0} [option]"
+   echo 'options:'
+   echo '  -v  show the version of pkgstats'
+   echo '  -d  enable debug mode'
+   echo '  -h  show this help'
+   echo '  -s  show what information would be sent'
+   echo '  (but do not send anything)'
+   echo '  -q  be quiet except on errors'
+   echo ''
+   echo 'pkgstats sends a list of all installed packages,'
+   echo 'the architecture and the mirror you are using'
+   echo 'to the Arch Linux project.'
+   echo ''
+   echo 'Statistics are available at 
https://www.archlinux.de/?page=Statistics'
+}
+
+while getopts 'vdhsq' parameter; do
+   case ${parameter} in
+   v)  echo "pkgstats, version ${pkgstatsver}"; exit 0;;
+   d)  option="${option} --trace-ascii -";;
+   s)  showonly=true;;
+   q)  quiet=true;;
+   *)  usage; exit 1;;
+   esac
+done
+
+${quiet} || echo 'Collecting data...'
+pkglist="$(mktemp --tmpdir pkglist.XX)"
+moduleslist="$(mktemp --tmpdir modules.XX)"
+trap 'rm -f "${pkglist}" "${moduleslist}"' EXIT
+pacman -Qq > "${pkglist}"
+if [[ -f /proc/modules ]]; then
+   awk '{ print $1 }' /proc/modules > "${moduleslist}"
+fi
+arch="$(uname -m)"
+if [[ -f /proc/cpuinfo ]]; then
+   if grep -qE '^flags\s*:.*\slm\s' /proc/cpuinfo; then
+   cpuarch='x86_64'
+   else
+   cpuarch='i686'
+   fi
+else
+   cpuarch=''
+fi
+mirror="$(pacman -Sddp extra/pkgstats 2>/dev/null | sed -E 
's#(.*/)extra/os/.*#\1#;s#(.*://).*@#\1#')"
+
+if ${showonly}; then
+   echo 'packages='
+   cat  "${pkglist}"
+   echo ''
+   echo 'modules='
+   cat "${moduleslist}"
+   echo ''
+   echo "arch=${arch}"
+   echo "cpuarch=${cpuarch}"
+   echo "pkgstatsver=${pkgstatsver}"
+   echo "mirror=${mirror}"
+   echo "quiet=${quiet}"
+else
+   ${quiet}

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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:07:01
  Author: andrea
Revision: 196974

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 12:06:53 UTC (rev 196973)
+++ extra-i686/PKGBUILD 2013-10-21 12:07:01 UTC (rev 196974)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: jose 
-
-pkgname=libdmtx
-pkgver=0.7.4
-pkgrel=4
-pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
-url="http://www.libdmtx.org/";
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('glibc')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('d3a4c0becd92895eb606dbdb78b023e2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdmtx/repos/extra-i686/PKGBUILD (from rev 196973, 
libdmtx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 12:07:01 UTC (rev 196974)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: jose 
+
+pkgname=libdmtx
+pkgver=0.7.4
+pkgrel=5
+pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
+url="http://www.libdmtx.org/";
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('glibc')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('d3a4c0becd92895eb606dbdb78b023e2')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 12:06:53 UTC (rev 196973)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:07:01 UTC (rev 196974)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: jose 
-
-pkgname=libdmtx
-pkgver=0.7.4
-pkgrel=4
-pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
-url="http://www.libdmtx.org/";
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('glibc')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('d3a4c0becd92895eb606dbdb78b023e2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdmtx/repos/extra-x86_64/PKGBUILD (from rev 196973, 
libdmtx/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:07:01 UTC (rev 196974)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: jose 
+
+pkgname=libdmtx
+pkgver=0.7.4
+pkgrel=5
+pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
+url="http://www.libdmtx.org/";
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('glibc')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('d3a4c0becd92895eb606dbdb78b023e2')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:06:53
  Author: andrea
Revision: 196973

upgpkg: libdmtx 0.7.4-5

remove static libs

Modified:
  libdmtx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:58:22 UTC (rev 196972)
+++ PKGBUILD2013-10-21 12:06:53 UTC (rev 196973)
@@ -4,13 +4,12 @@
 
 pkgname=libdmtx
 pkgver=0.7.4
-pkgrel=4
+pkgrel=5
 pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
 url="http://www.libdmtx.org/";
 arch=('i686' 'x86_64')
 license=('GPL2')
 depends=('glibc')
-options=('!libtool')
 
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
 md5sums=('d3a4c0becd92895eb606dbdb78b023e2')
 



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:11:03
  Author: andrea
Revision: 196976

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 12:10:55 UTC (rev 196975)
+++ extra-i686/PKGBUILD 2013-10-21 12:11:03 UTC (rev 196976)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=libical
-pkgver=1.0
-pkgrel=2
-pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
-arch=('i686' 'x86_64')
-url='http://sourceforge.net/projects/freeassociation/'
-license=('LGPL' 'MPL')
-depends=('glibc')
-makedepends=('cmake')
-source=("http://downloads.sourceforge.net/freeassociation/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('4438c31d00ec434f02867a267a92f8a1')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libical/repos/extra-i686/PKGBUILD (from rev 196975, 
libical/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 12:11:03 UTC (rev 196976)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=libical
+pkgver=1.0
+pkgrel=3
+pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/freeassociation/'
+license=('LGPL' 'MPL')
+depends=('glibc')
+makedepends=('cmake')
+source=("http://downloads.sourceforge.net/freeassociation/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('4438c31d00ec434f02867a267a92f8a1')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 12:10:55 UTC (rev 196975)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:11:03 UTC (rev 196976)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=libical
-pkgver=1.0
-pkgrel=2
-pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
-arch=('i686' 'x86_64')
-url='http://sourceforge.net/projects/freeassociation/'
-license=('LGPL' 'MPL')
-depends=('glibc')
-makedepends=('cmake')
-source=("http://downloads.sourceforge.net/freeassociation/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('4438c31d00ec434f02867a267a92f8a1')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libical/repos/extra-x86_64/PKGBUILD (from rev 196975, 
libical/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:11:03 UTC (rev 196976)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=libical
+pkgver=1.0
+pkgrel=3
+pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/freeassociation/'
+license=('LGPL' 'MPL')
+depends=('glibc')
+makedepends=('cmake')
+source=("http://downloads.sourceforge.net/freeassociation/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('4438c31d00ec434f02867a267a92f8a1')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:10:55
  Author: andrea
Revision: 196975

upgpkg: libical 1.0-3

remove static libs

Modified:
  libical/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:07:01 UTC (rev 196974)
+++ PKGBUILD2013-10-21 12:10:55 UTC (rev 196975)
@@ -4,7 +4,7 @@
 
 pkgname=libical
 pkgver=1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
 arch=('i686' 'x86_64')
 url='http://sourceforge.net/projects/freeassociation/'
@@ -14,8 +14,11 @@
 
source=("http://downloads.sourceforge.net/freeassociation/${pkgname}-${pkgver}.tar.gz";)
 md5sums=('4438c31d00ec434f02867a267a92f8a1')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  mkdir -p build
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:12:28
  Author: tpowa
Revision: 196978

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

Added:
  vde2/repos/extra-i686/PKGBUILD
(from rev 196977, vde2/trunk/PKGBUILD)
  vde2/repos/extra-i686/dhcpd.conf.sample
(from rev 196977, vde2/trunk/dhcpd.conf.sample)
  vde2/repos/extra-i686/iptables.rules.sample
(from rev 196977, vde2/trunk/iptables.rules.sample)
  vde2/repos/extra-i686/vde-config.sample
(from rev 196977, vde2/trunk/vde-config.sample)
  vde2/repos/extra-i686/vde-connection.sample
(from rev 196977, vde2/trunk/vde-connection.sample)
  vde2/repos/extra-i686/vde2.install
(from rev 196977, vde2/trunk/vde2.install)
  vde2/repos/extra-x86_64/PKGBUILD
(from rev 196977, vde2/trunk/PKGBUILD)
  vde2/repos/extra-x86_64/dhcpd.conf.sample
(from rev 196977, vde2/trunk/dhcpd.conf.sample)
  vde2/repos/extra-x86_64/iptables.rules.sample
(from rev 196977, vde2/trunk/iptables.rules.sample)
  vde2/repos/extra-x86_64/vde-config.sample
(from rev 196977, vde2/trunk/vde-config.sample)
  vde2/repos/extra-x86_64/vde-connection.sample
(from rev 196977, vde2/trunk/vde-connection.sample)
  vde2/repos/extra-x86_64/vde2.install
(from rev 196977, vde2/trunk/vde2.install)
Deleted:
  vde2/repos/extra-i686/PKGBUILD
  vde2/repos/extra-i686/dhcpd.conf.sample
  vde2/repos/extra-i686/iptables.rules.sample
  vde2/repos/extra-i686/vde-config.sample
  vde2/repos/extra-i686/vde-connection.sample
  vde2/repos/extra-i686/vde2.install
  vde2/repos/extra-x86_64/PKGBUILD
  vde2/repos/extra-x86_64/dhcpd.conf.sample
  vde2/repos/extra-x86_64/iptables.rules.sample
  vde2/repos/extra-x86_64/vde-config.sample
  vde2/repos/extra-x86_64/vde-connection.sample
  vde2/repos/extra-x86_64/vde2.install

+
 /PKGBUILD  |   84 +++
 /dhcpd.conf.sample |   24 ++
 /iptables.rules.sample |   10 
 /vde-config.sample |   70 +
 /vde-connection.sample |   12 +
 /vde2.install  |   18 +++
 extra-i686/PKGBUILD|   48 
 extra-i686/dhcpd.conf.sample   |   12 -
 extra-i686/iptables.rules.sample   |5 --
 extra-i686/vde-config.sample   |   35 --
 extra-i686/vde-connection.sample   |6 --
 extra-i686/vde2.install|9 ---
 extra-x86_64/PKGBUILD  |   48 
 extra-x86_64/dhcpd.conf.sample |   12 -
 extra-x86_64/iptables.rules.sample |5 --
 extra-x86_64/vde-config.sample |   35 --
 extra-x86_64/vde-connection.sample |6 --
 extra-x86_64/vde2.install  |9 ---
 18 files changed, 218 insertions(+), 230 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 12:12:06 UTC (rev 196977)
+++ extra-i686/PKGBUILD 2013-10-21 12:12:28 UTC (rev 196978)
@@ -1,48 +0,0 @@
-# $Id$
-# Contributor: Sergej Pupykin
-# Maintainer: Tobias Powalowski 
-pkgname=vde2
-pkgver=2.3.2
-pkgrel=4
-pkgdesc="Virtual Distributed Ethernet for emulators like qemu"
-url="http://sourceforge.net/projects/vde/";
-license=("GPL" "LGPL" "CUSTOM")
-arch=('i686' 'x86_64')
-depends=('bash' 'libpcap' 'openssl')
-makedepends=('python')
-backup=(etc/conf.d/vde)
-source=(http://downloads.sourceforge.net/vde/$pkgname-$pkgver.tar.bz2
-dhcpd.conf.sample
-iptables.rules.sample
-vde-config.sample
-vde-connection.sample)
-install=vde2.install
-options=(!libtool !makeflags)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--libexecdir=/usr/lib/vde2 \
- --enable-experimental
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver 
-  make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc sbindir=$pkgdir/usr/bin 
libexecdir=$pkgdir/usr/lib/vde2 install
-  install -D -m 644 ../vde-config.sample $pkgdir/etc/vde/vde-config.sample
-  install -D -m 644 ../vde-connection.sample 
$pkgdir/etc/vde/vde-connection.sample
-  install -D -m 644 ../dhcpd.conf.sample 
$pkgdir/usr/share/vde2/dhcpd.conf.sample
-  install -D -m 644 ../iptables.rules.sample 
$pkgdir/usr/share/vde2/iptables.rules.sample
-  # install slirp license
-  install -D -m 644 COPYING.slirpvde 
$pkgdir/usr/share/licenses/vde2/COPYING.slirpvde
-}
-md5sums=('46fbc5f97f03dc517aa3b2c9d9ea6628'
- '7d9bc56d2e561d849e915000d1c0f269'
- 'a920123fc620bcedbccb703a8d1bdc55'
- 'cb8ace28e8efd4dad128be4be71b3b07'
- '63033c33565e2030541c5e05e9d9b063')
-md5sums=('46fbc5f97f03dc517aa3b2c9d9ea6628'
- '7d9bc56d2e561d849e915000d1c0f269'
- 'a920123fc620bcedbccb703a8d1bdc55'
- 'f47d3372382dc9d67c1174d2796729fe'
- '63033c33565e2030541c5e05e9d9b063')

Copied: vde2/repos/extra-i686/PKGBUILD (from rev 196977, vde2/t

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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:11:43
  Author: spupykin
Revision: 98914

Modified:
  python2-babel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 11:02:54 UTC (rev 98913)
+++ PKGBUILD2013-10-21 12:11:43 UTC (rev 98914)
@@ -2,24 +2,30 @@
 # Maintainer: Sergej Pupykin 
 # Contributor : Giedrius Slavinskas 
 
-pkgname=python2-babel
-pkgver=0.9.6
-pkgrel=4
+pkgbase=python-babel
+pkgname=(python-babel python2-babel)
+pkgver=1.3
+pkgrel=1
 pkgdesc="A collection of tools for internationalizing Python applications"
-url="http://babel.edgewall.org/";
+url="http://babel.pocoo.org/";
 license=("BSD")
 arch=('any')
-depends=('python2')
-conflicts=('python-babel<=0.9.6-2')
-replaces=('python-babel<=0.9.6-2')
-makedepends=('setuptools')
-source=("http://ftp.edgewall.com/pub/babel/Babel-$pkgver.tar.gz";)
-md5sums=('f0edcad03dfdb5505f337ef1a7690325')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/mitsuhiko/babel/archive/$pkgver.tar.gz";)
+md5sums=('752ecd661a4002d64ba07384404a2988')
 
-package() {
-  cd $srcdir/Babel-${pkgver}
-  # python2 fix
-  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' 
babel/messages/frontend.py
+package_python-babel() {
+  depends=('python')
+
+  cd $srcdir/babel-${pkgver}
+  python setup.py install --root=$pkgdir
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-babel() {
+  depends=('python2')
+
+  cd $srcdir/babel-${pkgver}
   python2 setup.py install --root=$pkgdir
-  install -D -m0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:12:06
  Author: tpowa
Revision: 196977

upgpkg: vde2 2.3.2-5

remove static libraries

Modified:
  vde2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:11:03 UTC (rev 196976)
+++ PKGBUILD2013-10-21 12:12:06 UTC (rev 196977)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski 
 pkgname=vde2
 pkgver=2.3.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Virtual Distributed Ethernet for emulators like qemu"
 url="http://sourceforge.net/projects/vde/";
 license=("GPL" "LGPL" "CUSTOM")
@@ -38,10 +38,5 @@
 md5sums=('46fbc5f97f03dc517aa3b2c9d9ea6628'
  '7d9bc56d2e561d849e915000d1c0f269'
  'a920123fc620bcedbccb703a8d1bdc55'
- 'cb8ace28e8efd4dad128be4be71b3b07'
- '63033c33565e2030541c5e05e9d9b063')
-md5sums=('46fbc5f97f03dc517aa3b2c9d9ea6628'
- '7d9bc56d2e561d849e915000d1c0f269'
- 'a920123fc620bcedbccb703a8d1bdc55'
  'f47d3372382dc9d67c1174d2796729fe'
  '63033c33565e2030541c5e05e9d9b063')



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

2013-10-21 Thread Florian Pritz
Date: Monday, October 21, 2013 @ 14:13:19
  Author: bluewind
Revision: 98916

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-21 12:13:14 UTC (rev 98915)
+++ community-i686/PKGBUILD 2013-10-21 12:13:19 UTC (rev 98916)
@@ -1,25 +0,0 @@
-# Maintainer: Florian Pritz 
-
-pkgname=echoping
-pkgver=6.0.2
-pkgrel=3
-pkgdesc="tests performance of a remote host by sending HTTP, TCP and UDP 
requests"
-arch=('i686' 'x86_64')
-url="http://echoping.sourceforge.net/";
-license=('GPL')
-depends=(libidn popt libldap)
-source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('991478532b56ab3b6f46ea9fa332626f')
-options=(!libtool)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --config-cache
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: echoping/repos/community-i686/PKGBUILD (from rev 98915, 
echoping/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-21 12:13:19 UTC (rev 98916)
@@ -0,0 +1,25 @@
+# Maintainer: Florian Pritz 
+
+pkgname=echoping
+pkgver=6.0.2
+pkgrel=4
+pkgdesc="tests performance of a remote host by sending HTTP, TCP and UDP 
requests"
+arch=('i686' 'x86_64')
+url="http://echoping.sourceforge.net/";
+license=('GPL')
+depends=(libidn popt libldap)
+source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+md5sums=('991478532b56ab3b6f46ea9fa332626f')
+options=(!libtool)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --config-cache
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-10-21 12:13:14 UTC (rev 98915)
+++ community-x86_64/PKGBUILD   2013-10-21 12:13:19 UTC (rev 98916)
@@ -1,25 +0,0 @@
-# Maintainer: Florian Pritz 
-
-pkgname=echoping
-pkgver=6.0.2
-pkgrel=3
-pkgdesc="tests performance of a remote host by sending HTTP, TCP and UDP 
requests"
-arch=('i686' 'x86_64')
-url="http://echoping.sourceforge.net/";
-license=('GPL')
-depends=(libidn popt libldap)
-source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('991478532b56ab3b6f46ea9fa332626f')
-options=(!libtool)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --config-cache
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: echoping/repos/community-x86_64/PKGBUILD (from rev 98915, 
echoping/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-10-21 12:13:19 UTC (rev 98916)
@@ -0,0 +1,25 @@
+# Maintainer: Florian Pritz 
+
+pkgname=echoping
+pkgver=6.0.2
+pkgrel=4
+pkgdesc="tests performance of a remote host by sending HTTP, TCP and UDP 
requests"
+arch=('i686' 'x86_64')
+url="http://echoping.sourceforge.net/";
+license=('GPL')
+depends=(libidn popt libldap)
+source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+md5sums=('991478532b56ab3b6f46ea9fa332626f')
+options=(!libtool)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --config-cache
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:13:04
  Author: andrea
Revision: 196979

upgpkg: libindi 0.9.6-4

remove static libs

Modified:
  libindi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:12:28 UTC (rev 196978)
+++ PKGBUILD2013-10-21 12:13:04 UTC (rev 196979)
@@ -4,7 +4,7 @@
 
 pkgname=libindi
 pkgver=0.9.6
-pkgrel=3
+pkgrel=4
 pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
 url="http://www.indilib.org/index.php?title=Main_Page";
 license=('GPL2')
@@ -11,7 +11,6 @@
 arch=('i686' 'x86_64')
 depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat')
 makedepends=('cmake' 'boost')
-options=('!libtool')
 source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz";)
 md5sums=('c1456544a36f543e2884f88913cf3eb0')
 



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

2013-10-21 Thread Florian Pritz
Date: Monday, October 21, 2013 @ 14:13:14
  Author: bluewind
Revision: 98915

upgpkg: echoping 6.0.2-4

remove static libs

Modified:
  echoping/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:11:43 UTC (rev 98914)
+++ PKGBUILD2013-10-21 12:13:14 UTC (rev 98915)
@@ -2,7 +2,7 @@
 
 pkgname=echoping
 pkgver=6.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc="tests performance of a remote host by sending HTTP, TCP and UDP 
requests"
 arch=('i686' 'x86_64')
 url="http://echoping.sourceforge.net/";



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:13:11
  Author: andrea
Revision: 196980

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

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

---+
 /PKGBUILD |   74 
 extra-i686/PKGBUILD   |   38 
 extra-x86_64/PKGBUILD |   38 
 3 files changed, 74 insertions(+), 76 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 12:13:04 UTC (rev 196979)
+++ extra-i686/PKGBUILD 2013-10-21 12:13:11 UTC (rev 196980)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=libindi
-pkgver=0.9.6
-pkgrel=3
-pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
-url="http://www.indilib.org/index.php?title=Main_Page";
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat')
-makedepends=('cmake' 'boost')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz";)
-md5sums=('c1456544a36f543e2884f88913cf3eb0')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  install -d "${pkgdir}"/usr/lib/udev/rules.d
-  mv "${pkgdir}"/etc/udev/rules.d/99-gpusb.rules \
-"${pkgdir}"/usr/lib/udev/rules.d/
-  rmdir "${pkgdir}"/etc/udev/rules.d "${pkgdir}"/etc/udev "${pkgdir}"/etc
-}

Copied: libindi/repos/extra-i686/PKGBUILD (from rev 196979, 
libindi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 12:13:11 UTC (rev 196980)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libindi
+pkgver=0.9.6
+pkgrel=4
+pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
+url="http://www.indilib.org/index.php?title=Main_Page";
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat')
+makedepends=('cmake' 'boost')
+source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz";)
+md5sums=('c1456544a36f543e2884f88913cf3eb0')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}"/usr/lib/udev/rules.d
+  mv "${pkgdir}"/etc/udev/rules.d/99-gpusb.rules \
+"${pkgdir}"/usr/lib/udev/rules.d/
+  rmdir "${pkgdir}"/etc/udev/rules.d "${pkgdir}"/etc/udev "${pkgdir}"/etc
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 12:13:04 UTC (rev 196979)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:13:11 UTC (rev 196980)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=libindi
-pkgver=0.9.6
-pkgrel=3
-pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
-url="http://www.indilib.org/index.php?title=Main_Page";
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat')
-makedepends=('cmake' 'boost')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz";)
-md5sums=('c1456544a36f543e2884f88913cf3eb0')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  install -d "${pkgdir}"/usr/lib/udev/rules.d
-  mv "${pkgdir}"/etc/udev/rules.d/99-gpusb.rules \
-"${pkgdir}"/usr/lib/udev/rules.d/
-  rmdir "${pkgdir}"/etc/udev/rules.d "${pkgdir}"/etc/udev "${pkgdir}"/etc
-}

Copied: libindi/repos/extra-x86_64/PKGBUILD (from rev 196979, 
libindi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:13:11 UTC (rev 196980)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libindi
+pkgver=0.9.6
+pkgrel=4
+pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
+url="http://www.indilib.org/index.php?title=Main_Page";
+license=('GPL

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

2013-10-21 Thread Florian Pritz
Date: Monday, October 21, 2013 @ 14:15:57
  Author: bluewind
Revision: 98918

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-21 12:15:51 UTC (rev 98917)
+++ community-i686/PKGBUILD 2013-10-21 12:15:57 UTC (rev 98918)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: dorphell 
-
-pkgname=xplc
-pkgver=0.3.13
-pkgrel=4
-pkgdesc="Cross-Platform Lightweight Components"
-arch=('i686' 'x86_64')
-url="http://xplc.sourceforge.net";
-license=('LGPL')
-depends=('gcc-libs')
-source=("http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz";)
-md5sums=('39da3270527c8712b8e8fcf03768d29f')
-options=('!buildflags')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---without-libuuid
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mv $pkgdir/usr/share/man/man1/{uuidgen.1,uuidcdef.1}
-  rm -f $pkgdir/usr/bin/uuidgen
-}

Copied: xplc/repos/community-i686/PKGBUILD (from rev 98917, xplc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-21 12:15:57 UTC (rev 98918)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: dorphell 
+
+pkgname=xplc
+pkgver=0.3.13
+pkgrel=5
+pkgdesc="Cross-Platform Lightweight Components"
+arch=('i686' 'x86_64')
+url="http://xplc.sourceforge.net";
+license=('LGPL')
+depends=('gcc-libs')
+source=("http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz";)
+md5sums=('39da3270527c8712b8e8fcf03768d29f')
+options=('!buildflags')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--without-libuuid
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mv $pkgdir/usr/share/man/man1/{uuidgen.1,uuidcdef.1}
+  rm -f $pkgdir/usr/bin/uuidgen
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-10-21 12:15:51 UTC (rev 98917)
+++ community-x86_64/PKGBUILD   2013-10-21 12:15:57 UTC (rev 98918)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: dorphell 
-
-pkgname=xplc
-pkgver=0.3.13
-pkgrel=4
-pkgdesc="Cross-Platform Lightweight Components"
-arch=('i686' 'x86_64')
-url="http://xplc.sourceforge.net";
-license=('LGPL')
-depends=('gcc-libs')
-source=("http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz";)
-md5sums=('39da3270527c8712b8e8fcf03768d29f')
-options=('!buildflags')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---without-libuuid
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mv $pkgdir/usr/share/man/man1/{uuidgen.1,uuidcdef.1}
-  rm -f $pkgdir/usr/bin/uuidgen
-}

Copied: xplc/repos/community-x86_64/PKGBUILD (from rev 98917, 
xplc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-10-21 12:15:57 UTC (rev 98918)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: dorphell 
+
+pkgname=xplc
+pkgver=0.3.13
+pkgrel=5
+pkgdesc="Cross-Platform Lightweight Components"
+arch=('i686' 'x86_64')
+url="http://xplc.sourceforge.net";
+license=('LGPL')
+depends=('gcc-libs')
+source=("http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz";)
+md5sums=('39da3270527c8712b8e8fcf03768d29f')
+options=('!buildflags')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--without-libuuid
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mv $pkgdir/usr/share/man/man1/{uuidgen.1,uuidcdef.1}
+  rm -f $pkgdir/usr/bin/uuidgen
+}



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

2013-10-21 Thread Florian Pritz
Date: Monday, October 21, 2013 @ 14:15:51
  Author: bluewind
Revision: 98917

upgpkg: xplc 0.3.13-5

remove static libs

Modified:
  xplc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:13:19 UTC (rev 98916)
+++ PKGBUILD2013-10-21 12:15:51 UTC (rev 98917)
@@ -4,7 +4,7 @@
 
 pkgname=xplc
 pkgver=0.3.13
-pkgrel=4
+pkgrel=5
 pkgdesc="Cross-Platform Lightweight Components"
 arch=('i686' 'x86_64')
 url="http://xplc.sourceforge.net";



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:18:22
  Author: andrea
Revision: 196981

upgpkg: libvncserver 0.9.9-2

remove static libs

Modified:
  libvncserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:13:11 UTC (rev 196980)
+++ PKGBUILD2013-10-21 12:18:22 UTC (rev 196981)
@@ -5,23 +5,22 @@
 
 pkgname=libvncserver
 pkgver=0.9.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
 arch=('i686' 'x86_64')
 url="http://libvncserver.sourceforge.net/";
 license=('GPL')
 depends=('libjpeg' 'gnutls' 'libgcrypt' 'openssl')
-options=('!libtool')
 
source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
 md5sums=('70422169b122765693d2a294d13e3714')
 
 build() {
-  cd "${srcdir}/LibVNCServer-${pkgver}"
+  cd LibVNCServer-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/LibVNCServer-${pkgver}"
+  cd LibVNCServer-${pkgver}
   make DESTDIR="${pkgdir}" install
 }



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

2013-10-21 Thread Andrea Scarpino
Date: Monday, October 21, 2013 @ 14:18:29
  Author: andrea
Revision: 196982

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-21 12:18:22 UTC (rev 196981)
+++ extra-i686/PKGBUILD 2013-10-21 12:18:29 UTC (rev 196982)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=libvncserver
-pkgver=0.9.9
-pkgrel=1
-pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
-arch=('i686' 'x86_64')
-url="http://libvncserver.sourceforge.net/";
-license=('GPL')
-depends=('libjpeg' 'gnutls' 'libgcrypt' 'openssl')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
-md5sums=('70422169b122765693d2a294d13e3714')
-
-build() {
-  cd "${srcdir}/LibVNCServer-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/LibVNCServer-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libvncserver/repos/extra-i686/PKGBUILD (from rev 196981, 
libvncserver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-21 12:18:29 UTC (rev 196982)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libvncserver
+pkgver=0.9.9
+pkgrel=2
+pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
+arch=('i686' 'x86_64')
+url="http://libvncserver.sourceforge.net/";
+license=('GPL')
+depends=('libjpeg' 'gnutls' 'libgcrypt' 'openssl')
+source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
+md5sums=('70422169b122765693d2a294d13e3714')
+
+build() {
+  cd LibVNCServer-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd LibVNCServer-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-21 12:18:22 UTC (rev 196981)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:18:29 UTC (rev 196982)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=libvncserver
-pkgver=0.9.9
-pkgrel=1
-pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
-arch=('i686' 'x86_64')
-url="http://libvncserver.sourceforge.net/";
-license=('GPL')
-depends=('libjpeg' 'gnutls' 'libgcrypt' 'openssl')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
-md5sums=('70422169b122765693d2a294d13e3714')
-
-build() {
-  cd "${srcdir}/LibVNCServer-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/LibVNCServer-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libvncserver/repos/extra-x86_64/PKGBUILD (from rev 196981, 
libvncserver/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-21 12:18:29 UTC (rev 196982)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libvncserver
+pkgver=0.9.9
+pkgrel=2
+pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
+arch=('i686' 'x86_64')
+url="http://libvncserver.sourceforge.net/";
+license=('GPL')
+depends=('libjpeg' 'gnutls' 'libgcrypt' 'openssl')
+source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
+md5sums=('70422169b122765693d2a294d13e3714')
+
+build() {
+  cd LibVNCServer-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd LibVNCServer-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:17:43
  Author: spupykin
Revision: 98919

Modified:
  qcad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:15:57 UTC (rev 98918)
+++ PKGBUILD2013-10-21 12:17:43 UTC (rev 98919)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=qcad
-pkgver=3.3.1.0
+pkgver=3.3.4.0
 pkgrel=1
 pkgdesc="A 2D CAD package based upon Qt"
 arch=('i686' 'x86_64')
@@ -16,17 +16,13 @@
 options=(libtool)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
 QCad.desktop)
-md5sums=('e6e469482b40515980c416e61482abc2'
+md5sums=('ceec731e034aa2e2e9a1f1669ec55e57'
  '35100eaedbdf6625f6e6a09b177854cd')
 
 prepare() {
   cd ${srcdir}/qcad-$pkgver
-  sed -i '1,1i#include ' src/core/{RLocalPeer,RS}.cpp
-  sed -i '1,1i#include ' src/core/{RScriptHandler,RS}.cpp
-  (cd src/3rdparty &&
-cp -a qt-labs-qtscriptgenerator-4.8.4 qt-labs-qtscriptgenerator-4.8.5)
-  (cd src/3rdparty/qt-labs-qtscriptgenerator-4.8.5 &&
-mv qt-labs-qtscriptgenerator-4.8.4.pro qt-labs-qtscriptgenerator-4.8.5.pro)
+#  sed -i '1,1i#include ' src/core/{RLocalPeer,RS}.cpp
+#  sed -i '1,1i#include ' src/core/{RScriptHandler,RS}.cpp
 }
 
 build() {



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:18:38
  Author: spupykin
Revision: 98920

Modified:
  python-babel/trunk/PKGBUILD
Deleted:
  python2-babel/

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

Modified: python-babel/trunk/PKGBUILD
===
--- python-babel/trunk/PKGBUILD 2013-10-21 12:17:43 UTC (rev 98919)
+++ python-babel/trunk/PKGBUILD 2013-10-21 12:18:38 UTC (rev 98920)
@@ -2,22 +2,30 @@
 # Maintainer: Sergej Pupykin 
 # Contributor : Giedrius Slavinskas 
 
-pkgname=python-babel
-pkgver=0.9.6
-pkgrel=2
+pkgbase=python-babel
+pkgname=(python-babel python2-babel)
+pkgver=1.3
+pkgrel=1
 pkgdesc="A collection of tools for internationalizing Python applications"
-url="http://babel.edgewall.org/";
+url="http://babel.pocoo.org/";
 license=("BSD")
 arch=('any')
-depends=('python2')
-makedepends=('setuptools')
-source=("http://ftp.edgewall.com/pub/babel/Babel-$pkgver.tar.gz";)
-md5sums=('f0edcad03dfdb5505f337ef1a7690325')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/mitsuhiko/babel/archive/$pkgver.tar.gz";)
+md5sums=('752ecd661a4002d64ba07384404a2988')
 
-build() {
-  cd $srcdir/Babel-${pkgver}
-  # python2 fix
-  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' 
babel/messages/frontend.py
+package_python-babel() {
+  depends=('python')
+
+  cd $srcdir/babel-${pkgver}
+  python setup.py install --root=$pkgdir
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-babel() {
+  depends=('python2')
+
+  cd $srcdir/babel-${pkgver}
   python2 setup.py install --root=$pkgdir
-  install -D -m0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:19:39
  Author: tpowa
Revision: 196984

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

Added:
  nfsidmap/repos/testing-i686/
  nfsidmap/repos/testing-i686/PKGBUILD
(from rev 196983, nfsidmap/trunk/PKGBUILD)
  nfsidmap/repos/testing-x86_64/
  nfsidmap/repos/testing-x86_64/PKGBUILD
(from rev 196983, nfsidmap/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   29 +
 testing-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: nfsidmap/repos/testing-i686/PKGBUILD (from rev 196983, 
nfsidmap/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 12:19:39 UTC (rev 196984)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: 
+# Contributor: Judd 
+
+pkgname=nfsidmap
+pkgver=0.25
+pkgrel=2
+pkgdesc="Library to help mapping IDs, mainly for NFSv4"
+arch=('i686' 'x86_64')
+url="http://www.citi.umich.edu/projects/nfsv4/linux/";
+depends=('glibc' 'libldap>=2.4.18')
+license=('custom:nfsidmap')
+options=(!libtool)
+source=(http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-$pkgver.tar.gz)
+
+build() {
+  cd $srcdir/lib$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/lib$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install license
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/nfsidmap/LICENSE
+}
+md5sums=('2ac4893c92716add1a1447ae01df77ab')

Copied: nfsidmap/repos/testing-x86_64/PKGBUILD (from rev 196983, 
nfsidmap/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 12:19:39 UTC (rev 196984)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: 
+# Contributor: Judd 
+
+pkgname=nfsidmap
+pkgver=0.25
+pkgrel=2
+pkgdesc="Library to help mapping IDs, mainly for NFSv4"
+arch=('i686' 'x86_64')
+url="http://www.citi.umich.edu/projects/nfsv4/linux/";
+depends=('glibc' 'libldap>=2.4.18')
+license=('custom:nfsidmap')
+options=(!libtool)
+source=(http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-$pkgver.tar.gz)
+
+build() {
+  cd $srcdir/lib$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/lib$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install license
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/nfsidmap/LICENSE
+}
+md5sums=('2ac4893c92716add1a1447ae01df77ab')



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:19:29
  Author: tpowa
Revision: 196983

upgpkg: nfsidmap 0.25-2

remove static libraries

Modified:
  nfsidmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:18:29 UTC (rev 196982)
+++ PKGBUILD2013-10-21 12:19:29 UTC (rev 196983)
@@ -4,7 +4,7 @@
 
 pkgname=nfsidmap
 pkgver=0.25
-pkgrel=1
+pkgrel=2
 pkgdesc="Library to help mapping IDs, mainly for NFSv4"
 arch=('i686' 'x86_64')
 url="http://www.citi.umich.edu/projects/nfsv4/linux/";



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:19:46
  Author: spupykin
Revision: 98921

archrelease: copy trunk to community-any

Added:
  python-babel/repos/community-any/
  python-babel/repos/community-any/PKGBUILD
(from rev 98920, python-babel/trunk/PKGBUILD)

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

Copied: python-babel/repos/community-any/PKGBUILD (from rev 98920, 
python-babel/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-10-21 12:19:46 UTC (rev 98921)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor : Giedrius Slavinskas 
+
+pkgbase=python-babel
+pkgname=(python-babel python2-babel)
+pkgver=1.3
+pkgrel=1
+pkgdesc="A collection of tools for internationalizing Python applications"
+url="http://babel.pocoo.org/";
+license=("BSD")
+arch=('any')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/mitsuhiko/babel/archive/$pkgver.tar.gz";)
+md5sums=('752ecd661a4002d64ba07384404a2988')
+
+package_python-babel() {
+  depends=('python')
+
+  cd $srcdir/babel-${pkgver}
+  python setup.py install --root=$pkgdir
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-babel() {
+  depends=('python2')
+
+  cd $srcdir/babel-${pkgver}
+  python2 setup.py install --root=$pkgdir
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:21:10
  Author: tpowa
Revision: 196986

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

Added:
  lzo2/repos/testing-i686/
  lzo2/repos/testing-i686/PKGBUILD
(from rev 196985, lzo2/trunk/PKGBUILD)
  lzo2/repos/testing-x86_64/
  lzo2/repos/testing-x86_64/PKGBUILD
(from rev 196985, lzo2/trunk/PKGBUILD)

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

Copied: lzo2/repos/testing-i686/PKGBUILD (from rev 196985, lzo2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 12:21:10 UTC (rev 196986)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Low Kian Seong 
+# Maintainer: dorphell 
+pkgname=lzo2
+pkgver=2.06
+pkgrel=3
+pkgdesc="Portable lossless data compression library"
+arch=('i686' 'x86_64')
+url="http://www.oberhumer.com/opensource/lzo";
+license=('GPL')
+depends=('glibc')
+source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
+options=(!libtool)
+md5sums=('95380bd4081f85ef08c5209f4107e9f8')
+
+build() {
+  cd "${srcdir}/lzo-${pkgver}"
+
+  ./configure --prefix=/usr --enable-shared
+  make
+
+  # build minilzo
+  gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
+  gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 
minilzo/minilzo.o
+}
+
+check() {
+  cd "${srcdir}/lzo-${pkgver}"
+  make test # Larger test
+  make check
+}
+
+package() {
+  cd "${srcdir}/lzo-${pkgver}"
+  make DESTDIR=${pkgdir} install
+
+  # install minilzo
+  install -m 755 libminilzo.so.0 ${pkgdir}/usr/lib
+  install -p -m 644 minilzo/minilzo.h ${pkgdir}/usr/include/lzo
+  cd ${pkgdir}/usr/lib
+  ln -s libminilzo.so.0 libminilzo.so
+}

Copied: lzo2/repos/testing-x86_64/PKGBUILD (from rev 196985, 
lzo2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 12:21:10 UTC (rev 196986)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Low Kian Seong 
+# Maintainer: dorphell 
+pkgname=lzo2
+pkgver=2.06
+pkgrel=3
+pkgdesc="Portable lossless data compression library"
+arch=('i686' 'x86_64')
+url="http://www.oberhumer.com/opensource/lzo";
+license=('GPL')
+depends=('glibc')
+source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
+options=(!libtool)
+md5sums=('95380bd4081f85ef08c5209f4107e9f8')
+
+build() {
+  cd "${srcdir}/lzo-${pkgver}"
+
+  ./configure --prefix=/usr --enable-shared
+  make
+
+  # build minilzo
+  gcc $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c minilzo/minilzo.c
+  gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0 
minilzo/minilzo.o
+}
+
+check() {
+  cd "${srcdir}/lzo-${pkgver}"
+  make test # Larger test
+  make check
+}
+
+package() {
+  cd "${srcdir}/lzo-${pkgver}"
+  make DESTDIR=${pkgdir} install
+
+  # install minilzo
+  install -m 755 libminilzo.so.0 ${pkgdir}/usr/lib
+  install -p -m 644 minilzo/minilzo.h ${pkgdir}/usr/include/lzo
+  cd ${pkgdir}/usr/lib
+  ln -s libminilzo.so.0 libminilzo.so
+}



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:21:36
  Author: spupykin
Revision: 98922

upgpkg: buildbot 0.8.8-1

upd

Modified:
  buildbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:19:46 UTC (rev 98921)
+++ PKGBUILD2013-10-21 12:21:36 UTC (rev 98922)
@@ -3,7 +3,7 @@
 # Contributor: William Rea 
 
 pkgname=buildbot
-pkgver=0.8.7_p1
+pkgver=0.8.8
 pkgrel=1
 pkgdesc="A system to automate the compile/test cycle required by most software 
projects"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('twisted' 'python2-jinja' 'python2-simplejson' 'python2-pysqlite'
 'python2-migrate' 'python2-dateutil')
 source=(http://buildbot.googlecode.com/files/buildbot-${pkgver/_/}.tar.gz)
-md5sums=('bf3fa19e954adfa407d93dd7840c8975')
+md5sums=('472f512584bbb18cc677ca2ec3b3a905')
 
 package() {
   cd "$srcdir"/buildbot-${pkgver/_/}



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:21:01
  Author: tpowa
Revision: 196985

upgpkg: lzo2 2.06-3

remove static libraries

Modified:
  lzo2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:19:39 UTC (rev 196984)
+++ PKGBUILD2013-10-21 12:21:01 UTC (rev 196985)
@@ -3,7 +3,7 @@
 # Maintainer: dorphell 
 pkgname=lzo2
 pkgver=2.06
-pkgrel=2
+pkgrel=3
 pkgdesc="Portable lossless data compression library"
 arch=('i686' 'x86_64')
 url="http://www.oberhumer.com/opensource/lzo";



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:21:51
  Author: spupykin
Revision: 98924

upgpkg: buildbot-slave 0.8.8-1

upd

Modified:
  buildbot-slave/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-21 12:21:47 UTC (rev 98923)
+++ PKGBUILD2013-10-21 12:21:51 UTC (rev 98924)
@@ -3,7 +3,7 @@
 # Maintainer: Pierre Bourdon 
 
 pkgname=buildbot-slave
-pkgver=0.8.7_p1
+pkgver=0.8.8
 pkgrel=1
 pkgdesc="A system to automate the compile/test cycle required by most software 
projects (slave part)"
 arch=('any')
@@ -11,7 +11,7 @@
 license=("GPL")
 depends=("twisted>=10.2.0" "python2")
 
source=(http://buildbot.googlecode.com/files/buildbot-slave-${pkgver/_/}.tar.gz)
-md5sums=('b3618c51f2f183dd18113fa960514074')
+md5sums=('9854d1df35cb09a5320b30b76eefd9ba')
 
 package() {
   cd $srcdir/$pkgname-${pkgver/_/}



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

2013-10-21 Thread Sergej Pupykin
Date: Monday, October 21, 2013 @ 14:21:47
  Author: spupykin
Revision: 98923

archrelease: copy trunk to community-any

Added:
  buildbot/repos/community-any/PKGBUILD
(from rev 98922, buildbot/trunk/PKGBUILD)
Deleted:
  buildbot/repos/community-any/PKGBUILD

--+
 PKGBUILD |   40 
 1 file changed, 20 insertions(+), 20 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-10-21 12:21:36 UTC (rev 98922)
+++ PKGBUILD2013-10-21 12:21:47 UTC (rev 98923)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=buildbot
-pkgver=0.8.7_p1
-pkgrel=1
-pkgdesc="A system to automate the compile/test cycle required by most software 
projects"
-arch=('any')
-url="http://buildbot.net";
-license=("GPL")
-depends=('twisted' 'python2-jinja' 'python2-simplejson' 'python2-pysqlite'
-'python2-migrate' 'python2-dateutil')
-source=(http://buildbot.googlecode.com/files/buildbot-${pkgver/_/}.tar.gz)
-md5sums=('bf3fa19e954adfa407d93dd7840c8975')
-
-package() {
-  cd "$srcdir"/buildbot-${pkgver/_/}
-  python2 setup.py install --root="$pkgdir"
-}

Copied: buildbot/repos/community-any/PKGBUILD (from rev 98922, 
buildbot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-10-21 12:21:47 UTC (rev 98923)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=buildbot
+pkgver=0.8.8
+pkgrel=1
+pkgdesc="A system to automate the compile/test cycle required by most software 
projects"
+arch=('any')
+url="http://buildbot.net";
+license=("GPL")
+depends=('twisted' 'python2-jinja' 'python2-simplejson' 'python2-pysqlite'
+'python2-migrate' 'python2-dateutil')
+source=(http://buildbot.googlecode.com/files/buildbot-${pkgver/_/}.tar.gz)
+md5sums=('472f512584bbb18cc677ca2ec3b3a905')
+
+package() {
+  cd "$srcdir"/buildbot-${pkgver/_/}
+  python2 setup.py install --root="$pkgdir"
+}



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

2013-10-21 Thread Tobias Powalowski
Date: Monday, October 21, 2013 @ 14:22:22
  Author: tpowa
Revision: 196988

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

Added:
  linux-atm/repos/testing-i686/
  linux-atm/repos/testing-i686/PKGBUILD
(from rev 196987, linux-atm/trunk/PKGBUILD)
  linux-atm/repos/testing-i686/man-pages.patch
(from rev 196987, linux-atm/trunk/man-pages.patch)
  linux-atm/repos/testing-x86_64/
  linux-atm/repos/testing-x86_64/PKGBUILD
(from rev 196987, linux-atm/trunk/PKGBUILD)
  linux-atm/repos/testing-x86_64/man-pages.patch
(from rev 196987, linux-atm/trunk/man-pages.patch)

+
 testing-i686/PKGBUILD  |   33 
 testing-i686/man-pages.patch   |   45 +++
 testing-x86_64/PKGBUILD|   33 
 testing-x86_64/man-pages.patch |   45 +++
 4 files changed, 156 insertions(+)

Copied: linux-atm/repos/testing-i686/PKGBUILD (from rev 196987, 
linux-atm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-21 12:22:22 UTC (rev 196988)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Surain Mallawa Arachchi 
+
+pkgname=linux-atm
+pkgver=2.5.2
+pkgrel=4
+pkgdesc="Drivers and tools to support ATM networking under Linux."
+arch=('i686' 'x86_64')
+depends=('glibc')
+url="http://linux-atm.sourceforge.net/";
+license=(GPL)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+man-pages.patch)
+options=(!libtool !makeflags)
+md5sums=('d49499368c3cf15f73a05d9bce8824a8'
+ '181390736336cdb615ae32f1ae5acfa6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i ../man-pages.patch
+
+  # install firmware in /usr/lib
+  sed -i "s#/lib/firmware#/usr/lib/firmware#" src/extra/Makefile.in
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: linux-atm/repos/testing-i686/man-pages.patch (from rev 196987, 
linux-atm/trunk/man-pages.patch)
===
--- testing-i686/man-pages.patch(rev 0)
+++ testing-i686/man-pages.patch2013-10-21 12:22:22 UTC (rev 196988)
@@ -0,0 +1,45 @@
+diff -up linux-atm-2.5.1/src/led/zeppelin.8.fixman 
linux-atm-2.5.1/src/led/zeppelin.8
+--- linux-atm-2.5.1/src/led/zeppelin.8.fixman  2003-05-02 19:35:04.0 
+0200
 linux-atm-2.5.1/src/led/zeppelin.8 2010-10-13 12:58:18.0 +0200
+@@ -99,7 +99,7 @@ Ring and ATM parts of the ELAN, so using
+ recommended. Token Ring support has received less testing than its
+ Ethernet counterpart.
+ .SH FILES
+-.IP \fI/var/run/lec[interface number].pid\fP
++\fI/var/run/lec[interface number].pid\fP
+ The file containing the process id of zeppelin.
+ .SH BUGS
+ John Bonham died 1980 and Led Zeppelin broke.
+diff -up linux-atm-2.5.1/src/mpoad/mpcd.8.fixman 
linux-atm-2.5.1/src/mpoad/mpcd.8
+--- linux-atm-2.5.1/src/mpoad/mpcd.8.fixman2001-10-10 00:33:07.0 
+0200
 linux-atm-2.5.1/src/mpoad/mpcd.8   2010-10-13 12:59:14.0 +0200
+@@ -28,7 +28,7 @@ mpcd \- ATM MPOA (Multi\-Protocol Over A
+ .B ]]
+ .SH DESCRIPTION
+ MPOA client
+-.SM(MPC) is responsible for creating and receiving
++.SM (MPC) is responsible for creating and receiving
+ internetwork layer shortcuts. Using these shortcuts MPCs forward
+ unicast internetwork layer packets effectively over ATM without need
+ for routing protocols.
+@@ -43,7 +43,7 @@ accepts shortcuts and packets arriving o
+ shortcuts is done with the help of
+ .SM MPOA
+ server
+-.SM(MPS).
++.SM (MPS).
+ .PP
+ Just as the Linux
+ .SM LAN
+diff -up linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 
linux-atm-2.5.1/src/sigd/atmsigd.conf.4
+--- linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 2001-10-10 
00:33:07.0 +0200
 linux-atm-2.5.1/src/sigd/atmsigd.conf.42010-10-13 12:58:49.0 
+0200
+@@ -125,7 +125,7 @@ a comment. The `#' character cannot be e
+ .P
+ If an option is specified in \fBatmsigd.conf\fP and on the command
+ line, the command line has priority.
+-.COMPATIBILITY
++.SH COMPATIBILITY
+ Certain options used by past versions of \fBatmsigd\fP but no longer 
documented
+ on the man page are still recognized and supported, but they also yield a
+ warning message. Future versions of \fBatmsigd\fP will not recognize those

Copied: linux-atm/repos/testing-x86_64/PKGBUILD (from rev 196987, 
linux-atm/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-21 12:22:22 UTC (rev 196988)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# C

  1   2   3   >