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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 13:14:47
  Author: kkeen
Revision: 115566

archrelease: copy trunk to community-any

Added:
  bpython/repos/community-any/PKGBUILD
(from rev 115565, bpython/trunk/PKGBUILD)
Deleted:
  bpython/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 11:14:25 UTC (rev 115565)
+++ PKGBUILD2014-07-12 11:14:47 UTC (rev 115566)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Mike Sampson mike at sambodata dot com
-# Contributor: Anton Bazhenov anton.bazhenov at gmail
-
-pkgname=('bpython' 'bpython2')
-pkgver=0.12
-pkgrel=3
-pkgdesc='Fancy interface to the Python interpreter'
-arch=('any')
-url='http://bpython-interpreter.org/'
-license=('MIT')
-makedepends=('python-distribute' 'python2-distribute')
-source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
-md5sums=('14cbe92620d386a769b3faa282a1d6c3')
-
-build() {
-  cp -r bpython-$pkgver bpython2-$pkgver
-
-  cd bpython-$pkgver
-  python setup.py build
-
-  cd $srcdir/bpython2-$pkgver
-  python2 setup.py build
-}
-
-package_bpython() {
-  depends=('python-pygments')
-  optdepends=('python-urwid: for bpython-urwid')
-
-  cd bpython-$pkgver
-
-  python setup.py install --root=$pkgdir --optimize=0
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython/LICENSE
-
-  # pygtk isn't available for python3 (fs#33705)
-  rm $pkgdir/usr/bin/bpython-gtk
-}
-
-package_bpython2() {
-  depends=('python2-pygments')
-  optdepends=('pygtk: for bpython2-gtk'
-  'python2-urwid: for bpython2-urwid')
-
-  cd bpython2-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=0
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython2/LICENSE
-
-  # conflicting files with bpython
-  mv $pkgdir/usr/bin/bpython $pkgdir/usr/bin/bpython2
-  mv $pkgdir/usr/bin/bpython-gtk $pkgdir/usr/bin/bpython2-gtk
-  mv $pkgdir/usr/bin/bpython-urwid $pkgdir/usr/bin/bpython2-urwid
-  mv $pkgdir/usr/share/applications/bpython.desktop \
- $pkgdir/usr/share/applications/bpython2.desktop
-
-  # fix the .desktop file for the rename
-  sed -e 's/bpython/2/' \
--i $pkgdir/usr/share/applications/bpython2.desktop
-}

Copied: bpython/repos/community-any/PKGBUILD (from rev 115565, 
bpython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 11:14:47 UTC (rev 115566)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Kyle Keen  keenerd at gmail 
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Mike Sampson mike at sambodata dot com
+# Contributor: Anton Bazhenov anton.bazhenov at gmail
+
+pkgname=('bpython' 'bpython2')
+pkgver=0.13
+pkgrel=1
+pkgdesc='Fancy interface to the Python interpreter'
+arch=('any')
+url='http://bpython-interpreter.org/'
+license=('MIT')
+makedepends=('python-distribute' 'python2-distribute')
+source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
+md5sums=('2ff926ff50570bcc172917af831be1e6')
+
+build() {
+  cp -r bpython-$pkgver bpython2-$pkgver
+
+  cd bpython-$pkgver
+  python setup.py build
+
+  cd $srcdir/bpython2-$pkgver
+  python2 setup.py build
+}
+
+package_bpython() {
+  depends=('python-pygments')
+  optdepends=('python-urwid: for bpython-urwid')
+
+  cd bpython-$pkgver
+
+  python setup.py install --root=$pkgdir --optimize=0
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython/LICENSE
+
+  # pygtk isn't available for python3 (fs#33705)
+  rm $pkgdir/usr/bin/bpython-gtk
+}
+
+package_bpython2() {
+  depends=('python2-pygments')
+  optdepends=('pygtk: for bpython2-gtk'
+  'python2-urwid: for bpython2-urwid')
+
+  cd bpython2-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=0
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython2/LICENSE
+
+  # conflicting files with bpython
+  pushd $pkgdir/usr/bin/
+  mv bpython bpython2
+  mv bpython-gtk bpython2-gtk
+  mv bpython-urwid bpython2-urwid
+  mv bpython-curtsies bpython2-curtsies
+  popd
+  pushd $pkgdir/usr/share/applications/
+  mv bpython.desktop bpython2.desktop
+
+  # fix the .desktop file for the rename
+  sed -i 's/bpython/2/' bpython2.desktop
+  popd
+}



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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 13:14:25
  Author: kkeen
Revision: 115565

upgpkg: bpython 0.13-1

Modified:
  bpython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 03:44:36 UTC (rev 115564)
+++ PKGBUILD2014-07-12 11:14:25 UTC (rev 115565)
@@ -1,11 +1,12 @@
 # $Id$
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
+# Maintainer: Kyle Keen  keenerd at gmail 
+# Contributor: Thomas Dziedzic  gostrc at gmail 
 # Contributor: Mike Sampson mike at sambodata dot com
 # Contributor: Anton Bazhenov anton.bazhenov at gmail
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.12
-pkgrel=3
+pkgver=0.13
+pkgrel=1
 pkgdesc='Fancy interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -12,7 +13,7 @@
 license=('MIT')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
-md5sums=('14cbe92620d386a769b3faa282a1d6c3')
+md5sums=('2ff926ff50570bcc172917af831be1e6')
 
 build() {
   cp -r bpython-$pkgver bpython2-$pkgver
@@ -50,13 +51,16 @@
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython2/LICENSE
 
   # conflicting files with bpython
-  mv $pkgdir/usr/bin/bpython $pkgdir/usr/bin/bpython2
-  mv $pkgdir/usr/bin/bpython-gtk $pkgdir/usr/bin/bpython2-gtk
-  mv $pkgdir/usr/bin/bpython-urwid $pkgdir/usr/bin/bpython2-urwid
-  mv $pkgdir/usr/share/applications/bpython.desktop \
- $pkgdir/usr/share/applications/bpython2.desktop
+  pushd $pkgdir/usr/bin/
+  mv bpython bpython2
+  mv bpython-gtk bpython2-gtk
+  mv bpython-urwid bpython2-urwid
+  mv bpython-curtsies bpython2-curtsies
+  popd
+  pushd $pkgdir/usr/share/applications/
+  mv bpython.desktop bpython2.desktop
 
   # fix the .desktop file for the rename
-  sed -e 's/bpython/2/' \
--i $pkgdir/usr/share/applications/bpython2.desktop
+  sed -i 's/bpython/2/' bpython2.desktop
+  popd
 }



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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 13:35:35
  Author: speps
Revision: 115567

upgpkg: guitarix2 0.30.0-1

Modified:
  guitarix2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 11:14:47 UTC (rev 115566)
+++ PKGBUILD2014-07-12 11:35:35 UTC (rev 115567)
@@ -2,13 +2,13 @@
 # Maintainer: speps speps at aur dot archlinux dot org
 
 pkgname=guitarix2
-pkgver=0.29.0
+pkgver=0.30.0
 pkgrel=1
 pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
 arch=('i686' 'x86_64')
 url=http://guitarix.sourceforge.net/;
 license=('GPL')
-depends=('gtkmm' 'jack' 'librsvg' 'liblrdf' 'bluez-libs' 'boost-libs'
+depends=('gtkmm' 'librsvg' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs'
  'zita-convolver' 'zita-resampler' 'desktop-file-utils')
 makedepends=('python' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
 optdepends=('meterbridge: sound meters')
@@ -17,7 +17,7 @@
 replaces=('guitarix' 'gx_head')
 install=$pkgname.install
 
source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
-md5sums=('c75821c75094c9592ff0543bb2c18449')
+md5sums=('7ce86e5942a4b274be2037c24a6eec6f')
 
 build() {
   cd guitarix-$pkgver



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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 13:35:58
  Author: speps
Revision: 115568

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

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

+
 /PKGBUILD  |   72 +++
 /guitarix2.install |   22 ++
 community-i686/PKGBUILD|   36 -
 community-i686/guitarix2.install   |   11 -
 community-x86_64/PKGBUILD  |   36 -
 community-x86_64/guitarix2.install |   11 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 11:35:35 UTC (rev 115567)
+++ community-i686/PKGBUILD 2014-07-12 11:35:58 UTC (rev 115568)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=guitarix2
-pkgver=0.29.0
-pkgrel=1
-pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
-arch=('i686' 'x86_64')
-url=http://guitarix.sourceforge.net/;
-license=('GPL')
-depends=('gtkmm' 'jack' 'librsvg' 'liblrdf' 'bluez-libs' 'boost-libs'
- 'zita-convolver' 'zita-resampler' 'desktop-file-utils')
-makedepends=('python' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
-optdepends=('meterbridge: sound meters')
-provides=('guitarix' 'gx_head')
-conflicts=('guitarix' 'gx_head')
-replaces=('guitarix' 'gx_head')
-install=$pkgname.install
-source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
-md5sums=('c75821c75094c9592ff0543bb2c18449')
-
-build() {
-  cd guitarix-$pkgver
-  python waf configure --prefix=/usr \
---no-desktop-update \
---no-ldconfig \
---no-faust \
---shared-lib \
---lib-dev
-  python waf build
-}
-
-package() {
-  cd guitarix-$pkgver
-  python waf install --destdir=$pkgdir
-}

Copied: guitarix2/repos/community-i686/PKGBUILD (from rev 115567, 
guitarix2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 11:35:58 UTC (rev 115568)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=guitarix2
+pkgver=0.30.0
+pkgrel=1
+pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
+arch=('i686' 'x86_64')
+url=http://guitarix.sourceforge.net/;
+license=('GPL')
+depends=('gtkmm' 'librsvg' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs'
+ 'zita-convolver' 'zita-resampler' 'desktop-file-utils')
+makedepends=('python' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+install=$pkgname.install
+source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
+md5sums=('7ce86e5942a4b274be2037c24a6eec6f')
+
+build() {
+  cd guitarix-$pkgver
+  python waf configure --prefix=/usr \
+--no-desktop-update \
+--no-ldconfig \
+--no-faust \
+--shared-lib \
+--lib-dev
+  python waf build
+}
+
+package() {
+  cd guitarix-$pkgver
+  python waf install --destdir=$pkgdir
+}

Deleted: community-i686/guitarix2.install
===
--- community-i686/guitarix2.install2014-07-12 11:35:35 UTC (rev 115567)
+++ community-i686/guitarix2.install2014-07-12 11:35:58 UTC (rev 115568)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: guitarix2/repos/community-i686/guitarix2.install (from rev 115567, 
guitarix2/trunk/guitarix2.install)
===
--- community-i686/guitarix2.install(rev 0)
+++ community-i686/guitarix2.install2014-07-12 11:35:58 UTC (rev 115568)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD

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

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 15:06:37
  Author: heftig
Revision: 216835

1.3.7, for real this time

Modified:
  deluge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 04:49:50 UTC (rev 216834)
+++ PKGBUILD2014-07-12 13:06:37 UTC (rev 216835)
@@ -5,8 +5,7 @@
 
 pkgname=deluge
 pkgver=1.3.7
-pkgrel=1
-_commit=018330c
+pkgrel=2
 pkgdesc=A BitTorrent client with multiple user interfaces in a client/server 
model
 arch=('any')
 url=http://deluge-torrent.org/;
@@ -19,23 +18,23 @@
 'librsvg: needed for gtk ui'
 'python2-mako: needed for web ui')
 install=deluge.install
-source=(http://git.deluge-torrent.org/deluge/snapshot/$pkgname-$_commit.tar.bz2
+source=(http://download.deluge-torrent.org/source/$pkgname-$pkgver.tar.lzma
 deluged.service deluge-web.service)
-md5sums=('272853d17d9ec67769efda16bb3b14e9'
+md5sums=('86a9a4033b6e3bd4823fbd60a6db316e'
  '17f51ac9a90f0dc41a20291444a7489b'
  '2a73f62c04e8b147c731fbb50666e846')
 
 prepare() {
-  cd $pkgname-$_commit
+  cd $pkgname-$pkgver
 }
 
 build() {
-  cd $pkgname-$_commit
+  cd $pkgname-$pkgver
   python2 setup.py build
 }
 
 package() {
-  cd $pkgname-$_commit
+  cd $pkgname-$pkgver
   python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
 
   sed -i '1s/python$/2/' \



[arch-commits] Commit in deluge/repos/extra-any (8 files)

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 15:07:44
  Author: heftig
Revision: 216836

archrelease: copy trunk to extra-any

Added:
  deluge/repos/extra-any/PKGBUILD
(from rev 216835, deluge/trunk/PKGBUILD)
  deluge/repos/extra-any/deluge-web.service
(from rev 216835, deluge/trunk/deluge-web.service)
  deluge/repos/extra-any/deluge.install
(from rev 216835, deluge/trunk/deluge.install)
  deluge/repos/extra-any/deluged.service
(from rev 216835, deluge/trunk/deluged.service)
Deleted:
  deluge/repos/extra-any/PKGBUILD
  deluge/repos/extra-any/deluge-web.service
  deluge/repos/extra-any/deluge.install
  deluge/repos/extra-any/deluged.service

+
 PKGBUILD   |   99 +--
 deluge-web.service |   20 +-
 deluge.install |   44 +++---
 deluged.service|   22 +--
 4 files changed, 92 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 13:06:37 UTC (rev 216835)
+++ PKGBUILD2014-07-12 13:07:44 UTC (rev 216836)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=deluge
-pkgver=1.3.7
-pkgrel=1
-_commit=018330c
-pkgdesc=A BitTorrent client with multiple user interfaces in a client/server 
model
-arch=('any')
-url=http://deluge-torrent.org/;
-license=('GPL3')
-depends=(python2-xdg libtorrent-rasterbar twisted python2-pyopenssl
- python2-chardet python2-setuptools)
-makedepends=(intltool pygtk librsvg python2-mako)
-optdepends=('python2-notify: libnotify notifications'
-'pygtk: needed for gtk ui'
-'librsvg: needed for gtk ui'
-'python2-mako: needed for web ui')
-install=deluge.install
-source=(http://git.deluge-torrent.org/deluge/snapshot/$pkgname-$_commit.tar.bz2
-deluged.service deluge-web.service)
-md5sums=('272853d17d9ec67769efda16bb3b14e9'
- '17f51ac9a90f0dc41a20291444a7489b'
- '2a73f62c04e8b147c731fbb50666e846')
-
-prepare() {
-  cd $pkgname-$_commit
-}
-
-build() {
-  cd $pkgname-$_commit
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$_commit
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  sed -i '1s/python$/2/' \
-$pkgdir/usr/lib/python2.7/site-packages/deluge/ui/Win32IconImagePlugin.py
-
-  cd ..
-  install -Dm644 deluged.service 
$pkgdir/usr/lib/systemd/system/deluged.service
-  install -Dm644 deluge-web.service 
$pkgdir/usr/lib/systemd/system/deluge-web.service
- 
-  install -d $pkgdir/srv
-  install -d -m 775 -o 125 -g 125 $pkgdir/srv/deluge
-}

Copied: deluge/repos/extra-any/PKGBUILD (from rev 216835, deluge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 13:07:44 UTC (rev 216836)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=deluge
+pkgver=1.3.7
+pkgrel=2
+pkgdesc=A BitTorrent client with multiple user interfaces in a client/server 
model
+arch=('any')
+url=http://deluge-torrent.org/;
+license=('GPL3')
+depends=(python2-xdg libtorrent-rasterbar twisted python2-pyopenssl
+ python2-chardet python2-setuptools)
+makedepends=(intltool pygtk librsvg python2-mako)
+optdepends=('python2-notify: libnotify notifications'
+'pygtk: needed for gtk ui'
+'librsvg: needed for gtk ui'
+'python2-mako: needed for web ui')
+install=deluge.install
+source=(http://download.deluge-torrent.org/source/$pkgname-$pkgver.tar.lzma
+deluged.service deluge-web.service)
+md5sums=('86a9a4033b6e3bd4823fbd60a6db316e'
+ '17f51ac9a90f0dc41a20291444a7489b'
+ '2a73f62c04e8b147c731fbb50666e846')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  sed -i '1s/python$/2/' \
+$pkgdir/usr/lib/python2.7/site-packages/deluge/ui/Win32IconImagePlugin.py
+
+  cd ..
+  install -Dm644 deluged.service 
$pkgdir/usr/lib/systemd/system/deluged.service
+  install -Dm644 deluge-web.service 
$pkgdir/usr/lib/systemd/system/deluge-web.service
+ 
+  install -d $pkgdir/srv
+  install -d -m 775 -o 125 -g 125 $pkgdir/srv/deluge
+}

Deleted: deluge-web.service
===
--- deluge-web.service  2014-07-12 13:06:37 UTC (rev 216835)
+++ deluge-web.service  2014-07-12 13:07:44 UTC (rev 216836)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Deluge WebUI
-After=deluged.service
-
-[Service]
-User=deluge
-ExecStart=/usr/bin/deluge-web
-
-[Install]

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

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 15:12:36
  Author: heftig
Revision: 115569

Compat broken with 3.15.5

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 11:35:58 UTC (rev 115568)
+++ PKGBUILD2014-07-12 13:12:36 UTC (rev 115569)
@@ -6,7 +6,7 @@
 pkgname=vhba-module
 pkgver=20140629
 _extramodules=extramodules-3.15-ARCH
-pkgrel=2
+pkgrel=3
 pkgdesc=Kernel module that emulates SCSI devices
 arch=('i686' 'x86_64')
 url=http://cdemu.sourceforge.net/;



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

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 15:13:47
  Author: heftig
Revision: 115570

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

Added:
  vhba-module/repos/community-i686/60-vhba.rules
(from rev 115569, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-i686/PKGBUILD
(from rev 115569, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-i686/vhba-module.install
(from rev 115569, vhba-module/trunk/vhba-module.install)
  vhba-module/repos/community-x86_64/60-vhba.rules
(from rev 115569, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-x86_64/PKGBUILD
(from rev 115569, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-x86_64/vhba-module.install
(from rev 115569, vhba-module/trunk/vhba-module.install)
Deleted:
  vhba-module/repos/community-i686/60-vhba.rules
  vhba-module/repos/community-i686/PKGBUILD
  vhba-module/repos/community-i686/vhba-module.install
  vhba-module/repos/community-x86_64/60-vhba.rules
  vhba-module/repos/community-x86_64/PKGBUILD
  vhba-module/repos/community-x86_64/vhba-module.install

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   88 +
 /vhba-module.install |   44 
 community-i686/60-vhba.rules |1 
 community-i686/PKGBUILD  |   44 
 community-i686/vhba-module.install   |   22 
 community-x86_64/60-vhba.rules   |1 
 community-x86_64/PKGBUILD|   44 
 community-x86_64/vhba-module.install |   22 
 9 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/60-vhba.rules
===
--- community-i686/60-vhba.rules2014-07-12 13:12:36 UTC (rev 115569)
+++ community-i686/60-vhba.rules2014-07-12 13:13:47 UTC (rev 115570)
@@ -1 +0,0 @@
-ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Copied: vhba-module/repos/community-i686/60-vhba.rules (from rev 115569, 
vhba-module/trunk/60-vhba.rules)
===
--- community-i686/60-vhba.rules(rev 0)
+++ community-i686/60-vhba.rules2014-07-12 13:13:47 UTC (rev 115570)
@@ -0,0 +1 @@
+ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 13:12:36 UTC (rev 115569)
+++ community-i686/PKGBUILD 2014-07-12 13:13:47 UTC (rev 115570)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Mateusz Herych heni...@gmail.com
-# Contributor: Charles Lindsay char...@chaoslizard.org
-
-pkgname=vhba-module
-pkgver=20140629
-_extramodules=extramodules-3.15-ARCH
-pkgrel=2
-pkgdesc=Kernel module that emulates SCSI devices
-arch=('i686' 'x86_64')
-url=http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux=3.15' 'linux3.16')
-makedepends=('linux-headers=3.15' 'linux-headers3.16')
-options=(!makeflags)
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-md5sums=('6b307a80df9c163768cc7ecb3ccebb71'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko $pkgdir/usr/lib/modules/$_extramodules/vhba.ko
-  install -Dm644 ../60-vhba.rules $pkgdir/usr/lib/udev/rules.d/60-vhba.rules
-
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true  install=${install}.pkg
-  sed -i s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/ $install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-i686/PKGBUILD (from rev 115569, 
vhba-module/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 13:13:47 UTC (rev 115570)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Charles Lindsay char...@chaoslizard.org
+
+pkgname=vhba-module
+pkgver=20140629
+_extramodules=extramodules-3.15-ARCH
+pkgrel=3
+pkgdesc=Kernel module that emulates SCSI devices
+arch=('i686' 'x86_64')
+url=http://cdemu.sourceforge.net/;
+license=('GPL')
+depends=('linux=3.15' 'linux3.16')
+makedepends=('linux-headers=3.15' 'linux-headers3.16')
+options=(!makeflags)
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
+'60-vhba.rules')
+md5sums=('6b307a80df9c163768cc7ecb3ccebb71'
+ 

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:02:51
  Author: jelle
Revision: 115572

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

Added:
  haskell-data-default/repos/community-staging-i686/
  haskell-data-default/repos/community-staging-i686/PKGBUILD
(from rev 115571, haskell-data-default/trunk/PKGBUILD)
  haskell-data-default/repos/community-staging-i686/haskell-data-default.install
(from rev 115571, haskell-data-default/trunk/haskell-data-default.install)
  haskell-data-default/repos/community-staging-x86_64/
  haskell-data-default/repos/community-staging-x86_64/PKGBUILD
(from rev 115571, haskell-data-default/trunk/PKGBUILD)
  
haskell-data-default/repos/community-staging-x86_64/haskell-data-default.install
(from rev 115571, haskell-data-default/trunk/haskell-data-default.install)

---+
 community-staging-i686/PKGBUILD   |   37 
 community-staging-i686/haskell-data-default.install   |   18 +++
 community-staging-x86_64/PKGBUILD |   37 
 community-staging-x86_64/haskell-data-default.install |   18 +++
 4 files changed, 110 insertions(+)

Copied: haskell-data-default/repos/community-staging-i686/PKGBUILD (from rev 
115571, haskell-data-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:02:51 UTC (rev 115572)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default
+pkgname=haskell-data-default
+pkgver=0.5.3
+pkgrel=4
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('03a98d999273ad20d5bc0c711bf1c533')
+options=('staticlibs')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: 
haskell-data-default/repos/community-staging-i686/haskell-data-default.install 
(from rev 115571, haskell-data-default/trunk/haskell-data-default.install)
===
--- community-staging-i686/haskell-data-default.install 
(rev 0)
+++ community-staging-i686/haskell-data-default.install 2014-07-12 14:02:51 UTC 
(rev 115572)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-data-default/repos/community-staging-x86_64/PKGBUILD (from rev 
115571, haskell-data-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-07-12 14:02:51 UTC (rev 115572)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default
+pkgname=haskell-data-default
+pkgver=0.5.3
+pkgrel=4
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.3' 'haskell-data-default-class' 

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:02:42
  Author: jelle
Revision: 115571

upgpkg: haskell-data-default 0.5.3-4

ghc 7.8.3 rebuild

Modified:
  haskell-data-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 13:13:47 UTC (rev 115570)
+++ PKGBUILD2014-07-12 14:02:42 UTC (rev 115571)
@@ -2,13 +2,13 @@
 _hkgname=data-default
 pkgname=haskell-data-default
 pkgver=0.5.3
-pkgrel=3
+pkgrel=4
 pkgdesc=A class for types with a default value
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
-depends=('ghc=7.8.2' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
+depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:07:53
  Author: jelle
Revision: 115573

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

Added:
  haskell-data-default/repos/community-staging-i686/PKGBUILD
(from rev 115572, haskell-data-default/trunk/PKGBUILD)
  haskell-data-default/repos/community-staging-i686/haskell-data-default.install
(from rev 115572, haskell-data-default/trunk/haskell-data-default.install)
  haskell-data-default/repos/community-staging-x86_64/PKGBUILD
(from rev 115572, haskell-data-default/trunk/PKGBUILD)
  
haskell-data-default/repos/community-staging-x86_64/haskell-data-default.install
(from rev 115572, haskell-data-default/trunk/haskell-data-default.install)
Deleted:
  haskell-data-default/repos/community-staging-i686/PKGBUILD
  haskell-data-default/repos/community-staging-i686/haskell-data-default.install
  haskell-data-default/repos/community-staging-x86_64/PKGBUILD
  
haskell-data-default/repos/community-staging-x86_64/haskell-data-default.install

---+
 /PKGBUILD |   74 
 /haskell-data-default.install |   36 +++
 community-staging-i686/PKGBUILD   |   37 
 community-staging-i686/haskell-data-default.install   |   18 ---
 community-staging-x86_64/PKGBUILD |   37 
 community-staging-x86_64/haskell-data-default.install |   18 ---
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-07-12 14:02:51 UTC (rev 115572)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:07:53 UTC (rev 115573)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa je...@vdwaa.nl
-_hkgname=data-default
-pkgname=haskell-data-default
-pkgver=0.5.3
-pkgrel=4
-pkgdesc=A class for types with a default value
-url=http://hackage.haskell.org/package/${_hkgname};
-license=('custom:BSD3')
-arch=('i686' 'x86_64')
-makedepends=()
-depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-install=${pkgname}.install
-md5sums=('03a98d999273ad20d5bc0c711bf1c533')
-options=('staticlibs')
-
-build() {
-cd ${srcdir}/${_hkgname}-${pkgver}
-runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
-   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup haddock
-runhaskell Setup register   --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-package() {
-cd ${srcdir}/${_hkgname}-${pkgver}
-install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
-runhaskell Setup copy --destdir=${pkgdir}
-install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
-}

Copied: haskell-data-default/repos/community-staging-i686/PKGBUILD (from rev 
115572, haskell-data-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:07:53 UTC (rev 115573)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default
+pkgname=haskell-data-default
+pkgver=0.5.3
+pkgrel=4
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('03a98d999273ad20d5bc0c711bf1c533')
+options=('staticlibs')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} 

[arch-commits] Commit in (6 files)

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:14:49
  Author: jelle
Revision: 115574

add haskell-http again because xmobar needs it

Added:
  haskell-http/
  haskell-http/repos/
  haskell-http/trunk/
  haskell-http/trunk/0001-relax-upper-bound-on-network.patch
  haskell-http/trunk/PKGBUILD
  haskell-http/trunk/haskell-http.install

-+
 0001-relax-upper-bound-on-network.patch |   25 +
 PKGBUILD|   54 ++
 haskell-http.install|   35 +++
 3 files changed, 114 insertions(+)

Added: haskell-http/trunk/0001-relax-upper-bound-on-network.patch
===
--- haskell-http/trunk/0001-relax-upper-bound-on-network.patch  
(rev 0)
+++ haskell-http/trunk/0001-relax-upper-bound-on-network.patch  2014-07-12 
14:14:49 UTC (rev 115574)
@@ -0,0 +1,25 @@
+From 48063198a77c0274ae7d9ba2f50dc4c25ddba99f Mon Sep 17 00:00:00 2001
+From: Thomas Dziedzic gos...@gmail.com
+Date: Fri, 18 Apr 2014 09:40:01 -0700
+Subject: [PATCH] relax upper bound on network
+
+---
+ HTTP.cabal | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/HTTP.cabal b/HTTP.cabal
+index 594e22d..a1b5578 100644
+--- a/HTTP.cabal
 b/HTTP.cabal
+@@ -85,7 +85,7 @@ Library
+ Network.HTTP.Utils
+ Paths_HTTP
+ GHC-options: -fwarn-missing-signatures -Wall
+- Build-depends: base = 2   4.8, network  2.5, parsec
++ Build-depends: base = 2   4.8, network  2.6, parsec
+ Extensions: FlexibleInstances
+ if flag(old-base)
+ Build-depends: base  3
+--
+1.9.2
+

Added: haskell-http/trunk/PKGBUILD
===
--- haskell-http/trunk/PKGBUILD (rev 0)
+++ haskell-http/trunk/PKGBUILD 2014-07-12 14:14:49 UTC (rev 115574)
@@ -0,0 +1,54 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.2.12
+pkgrel=3
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-network=2.5.0.0-1' 
'haskell-parsec=3.1.5-2' 'haskell-mtl=2.1.3.1-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+ '0001-relax-upper-bound-on-network.patch')
+install=${pkgname}.install
+md5sums=('cd69429866439890353ec98100e3ba32'
+ '490004d105b18535bb6c77ec2566053e')
+
+build() {
+ cd ${_hkgname}-${pkgver}
+
+ # fixes https://github.com/haskell/HTTP/issues/55
+ patch -Np1 -i ${srcdir}/0001-relax-upper-bound-on-network.patch
+
+ runhaskell Setup configure -O -p \
+  - --enable-split-objs \
+  - --enable-shared \
+  - --prefix=/usr \
+  - --docdir=/usr/share/doc/${pkgname} \
+  - --libsubdir=\$compiler/site-local/\$pkgid
+
+ runhaskell Setup build
+
+ runhaskell Setup haddock
+
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+ cd ${_hkgname}-${pkgver}
+
+ install -D -m744 register.sh 
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+ install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+ runhaskell Setup copy --destdir=${pkgdir}
+
+ install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}


Property changes on: haskell-http/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-http/trunk/haskell-http.install
===
--- haskell-http/trunk/haskell-http.install (rev 0)
+++ haskell-http/trunk/haskell-http.install 2014-07-12 14:14:49 UTC (rev 
115574)
@@ -0,0 +1,35 @@
+pkgname=haskell-http
+
+_register() {
+ usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+ usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+ _register
+ _gen_contents
+}
+
+pre_upgrade() {
+ _unregister
+}
+
+post_upgrade() {
+ _register
+ _gen_contents
+}
+
+pre_remove() {
+ _unregister
+}
+
+post_remove() {
+ _gen_contents
+}



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

2014-07-12 Thread Bartłomiej Piotrowski
Date: Saturday, July 12, 2014 @ 16:21:06
  Author: bpiotrowski
Revision: 115576

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

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

--+
 /PKGBUILD|  106 +
 /mpv.install |   24 +
 community-i686/PKGBUILD  |   53 
 community-i686/mpv.install   |   12 
 community-x86_64/PKGBUILD|   53 
 community-x86_64/mpv.install |   12 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 14:20:59 UTC (rev 115575)
+++ community-i686/PKGBUILD 2014-07-12 14:21:06 UTC (rev 115576)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Eivind Uggedal eiv...@uggedal.com
-
-pkgname=mpv
-pkgver=0.4.0
-pkgrel=3
-pkgdesc='Video player based on MPlayer/mplayer2'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mpv.io'
-depends=(
-  'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi' 'libgl' 'enca'
-  'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland'
-  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
-  'libguess' 'portaudio'
-)
-makedepends=('mesa' 'python-docutils' 'ladspa')
-options=('!emptydirs' '!buildflags')
-install=mpv.install
-source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('6b1ec7e8e3a2bcb5af68d62cea4577ba')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ./bootstrap.py
-  sed -i 's/vendor-completions/site-functions/' wscript_build.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./waf configure --prefix=/usr \
---confdir=/etc/mpv \
---enable-joystick \
---enable-zsh-comp \
---enable-libmpv-shared \
---enable-cdda \
---enable-portaudio
-
-  ./waf build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  ./waf install --destdir=$pkgdir
-
-  install -d $pkgdir/usr/share/doc/mpv/examples
-  install -m644 etc/{input,example}.conf \
-$pkgdir/usr/share/doc/mpv/examples
-  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
-$pkgdir/usr/share/doc/mpv
-}

Copied: mpv/repos/community-i686/PKGBUILD (from rev 115575, mpv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 14:21:06 UTC (rev 115576)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Eivind Uggedal eiv...@uggedal.com
+
+pkgname=mpv
+pkgver=0.4.1
+pkgrel=1
+pkgdesc='Video player based on MPlayer/mplayer2'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mpv.io'
+depends=(
+  'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi' 'libgl' 'enca'
+  'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland'
+  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
+  'libguess' 'portaudio'
+)
+makedepends=('mesa' 'python-docutils' 'ladspa')
+options=('!emptydirs' '!buildflags')
+install=mpv.install
+source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('24dcff8c676388227b280a463f9a05d0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./bootstrap.py
+  sed -i 's/vendor-completions/site-functions/' wscript_build.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./waf configure --prefix=/usr \
+--confdir=/etc/mpv \
+--enable-joystick \
+--enable-zsh-comp \
+--enable-libmpv-shared \
+--enable-cdda \
+--enable-portaudio
+
+  ./waf build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  ./waf install --destdir=$pkgdir
+
+  install -d $pkgdir/usr/share/doc/mpv/examples
+  install -m644 etc/{input,example}.conf \
+$pkgdir/usr/share/doc/mpv/examples
+  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
+$pkgdir/usr/share/doc/mpv
+}

Deleted: community-i686/mpv.install
===
--- community-i686/mpv.install  2014-07-12 14:20:59 UTC (rev 115575)
+++ community-i686/mpv.install  2014-07-12 14:21:06 UTC (rev 115576)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: mpv/repos/community-i686/mpv.install (from rev 

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

2014-07-12 Thread Bartłomiej Piotrowski
Date: Saturday, July 12, 2014 @ 16:20:59
  Author: bpiotrowski
Revision: 115575

upgpkg: mpv 0.4.1-1

new upstream release

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:14:49 UTC (rev 115574)
+++ PKGBUILD2014-07-12 14:20:59 UTC (rev 115575)
@@ -3,8 +3,8 @@
 # Contributor: Eivind Uggedal eiv...@uggedal.com
 
 pkgname=mpv
-pkgver=0.4.0
-pkgrel=3
+pkgver=0.4.1
+pkgrel=1
 pkgdesc='Video player based on MPlayer/mplayer2'
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -19,7 +19,7 @@
 options=('!emptydirs' '!buildflags')
 install=mpv.install
 source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('6b1ec7e8e3a2bcb5af68d62cea4577ba')
+md5sums=('24dcff8c676388227b280a463f9a05d0')
 
 prepare() {
   cd $pkgname-$pkgver



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:26:08
  Author: jelle
Revision: 115577

upgpkg: haskell-http 4000.2.12-3

ghc 7.8.3 rebuild

Modified:
  haskell-http/trunk/0001-relax-upper-bound-on-network.patch
  haskell-http/trunk/PKGBUILD

-+
 0001-relax-upper-bound-on-network.patch |   37 +-
 PKGBUILD|   14 +--
 2 files changed, 19 insertions(+), 32 deletions(-)

Modified: 0001-relax-upper-bound-on-network.patch
===
--- 0001-relax-upper-bound-on-network.patch 2014-07-12 14:21:06 UTC (rev 
115576)
+++ 0001-relax-upper-bound-on-network.patch 2014-07-12 14:26:08 UTC (rev 
115577)
@@ -1,25 +1,12 @@
-From 48063198a77c0274ae7d9ba2f50dc4c25ddba99f Mon Sep 17 00:00:00 2001
-From: Thomas Dziedzic gos...@gmail.com
-Date: Fri, 18 Apr 2014 09:40:01 -0700
-Subject: [PATCH] relax upper bound on network
-

- HTTP.cabal | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/HTTP.cabal b/HTTP.cabal
-index 594e22d..a1b5578 100644
 a/HTTP.cabal
-+++ b/HTTP.cabal
-@@ -85,7 +85,7 @@ Library
- Network.HTTP.Utils
- Paths_HTTP
- GHC-options: -fwarn-missing-signatures -Wall
-- Build-depends: base = 2   4.8, network  2.5, parsec
-+ Build-depends: base = 2   4.8, network  2.6, parsec
- Extensions: FlexibleInstances
- if flag(old-base)
- Build-depends: base  3
---
-1.9.2
-
+diff -aur HTTP-4000.2.12/HTTP.cabal HTTP-4000.2.12.new/HTTP.cabal
+--- HTTP-4000.2.12/HTTP.cabal  2005-05-06 06:32:53.0 +0200
 HTTP-4000.2.12.new/HTTP.cabal  2014-07-12 16:22:44.083433261 +0200
+@@ -85,7 +85,7 @@
+  Network.HTTP.Utils
+  Paths_HTTP
+   GHC-options: -fwarn-missing-signatures -Wall
+-  Build-depends: base = 2   4.8, network  2.5, parsec
++  Build-depends: base = 2   4.8, network  2.6, parsec
+   Extensions: FlexibleInstances
+   if flag(old-base)
+ Build-depends: base  3

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:21:06 UTC (rev 115576)
+++ PKGBUILD2014-07-12 14:26:08 UTC (rev 115577)
@@ -9,12 +9,12 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 options=('staticlibs')
-depends=('ghc=7.8.2-2' 'sh' 'haskell-network=2.5.0.0-1' 
'haskell-parsec=3.1.5-2' 'haskell-mtl=2.1.3.1-2')
+depends=('ghc=7.8.3-1' 'sh' 'haskell-network=2.5.0.0-2' 
'haskell-parsec=3.1.5-3' 'haskell-mtl=2.1.3.1-3')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
  '0001-relax-upper-bound-on-network.patch')
 install=${pkgname}.install
 md5sums=('cd69429866439890353ec98100e3ba32'
- '490004d105b18535bb6c77ec2566053e')
+ '29c84f3787e06183742ca47f34b3e052')
 
 build() {
  cd ${_hkgname}-${pkgver}
@@ -23,11 +23,11 @@
  patch -Np1 -i ${srcdir}/0001-relax-upper-bound-on-network.patch
 
  runhaskell Setup configure -O -p \
-  - --enable-split-objs \
-  - --enable-shared \
-  - --prefix=/usr \
-  - --docdir=/usr/share/doc/${pkgname} \
-  - --libsubdir=\$compiler/site-local/\$pkgid
+   --enable-split-objs \
+   --enable-shared \
+   --prefix=/usr \
+   --docdir=/usr/share/doc/${pkgname} \
+   --libsubdir=\$compiler/site-local/\$pkgid
 
  runhaskell Setup build
 



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:26:16
  Author: jelle
Revision: 115578

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

Added:
  haskell-http/repos/community-staging-i686/
  
haskell-http/repos/community-staging-i686/0001-relax-upper-bound-on-network.patch
(from rev 115577, 
haskell-http/trunk/0001-relax-upper-bound-on-network.patch)
  haskell-http/repos/community-staging-i686/PKGBUILD
(from rev 115577, haskell-http/trunk/PKGBUILD)
  haskell-http/repos/community-staging-i686/haskell-http.install
(from rev 115577, haskell-http/trunk/haskell-http.install)
  haskell-http/repos/community-staging-x86_64/
  
haskell-http/repos/community-staging-x86_64/0001-relax-upper-bound-on-network.patch
(from rev 115577, 
haskell-http/trunk/0001-relax-upper-bound-on-network.patch)
  haskell-http/repos/community-staging-x86_64/PKGBUILD
(from rev 115577, haskell-http/trunk/PKGBUILD)
  haskell-http/repos/community-staging-x86_64/haskell-http.install
(from rev 115577, haskell-http/trunk/haskell-http.install)

--+
 community-staging-i686/0001-relax-upper-bound-on-network.patch   |   12 ++
 community-staging-i686/PKGBUILD  |   54 
++
 community-staging-i686/haskell-http.install  |   35 ++
 community-staging-x86_64/0001-relax-upper-bound-on-network.patch |   12 ++
 community-staging-x86_64/PKGBUILD|   54 
++
 community-staging-x86_64/haskell-http.install|   35 ++
 6 files changed, 202 insertions(+)

Copied: 
haskell-http/repos/community-staging-i686/0001-relax-upper-bound-on-network.patch
 (from rev 115577, haskell-http/trunk/0001-relax-upper-bound-on-network.patch)
===
--- community-staging-i686/0001-relax-upper-bound-on-network.patch  
(rev 0)
+++ community-staging-i686/0001-relax-upper-bound-on-network.patch  
2014-07-12 14:26:16 UTC (rev 115578)
@@ -0,0 +1,12 @@
+diff -aur HTTP-4000.2.12/HTTP.cabal HTTP-4000.2.12.new/HTTP.cabal
+--- HTTP-4000.2.12/HTTP.cabal  2005-05-06 06:32:53.0 +0200
 HTTP-4000.2.12.new/HTTP.cabal  2014-07-12 16:22:44.083433261 +0200
+@@ -85,7 +85,7 @@
+  Network.HTTP.Utils
+  Paths_HTTP
+   GHC-options: -fwarn-missing-signatures -Wall
+-  Build-depends: base = 2   4.8, network  2.5, parsec
++  Build-depends: base = 2   4.8, network  2.6, parsec
+   Extensions: FlexibleInstances
+   if flag(old-base)
+ Build-depends: base  3

Copied: haskell-http/repos/community-staging-i686/PKGBUILD (from rev 115577, 
haskell-http/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:26:16 UTC (rev 115578)
@@ -0,0 +1,54 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.2.12
+pkgrel=3
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.3-1' 'sh' 'haskell-network=2.5.0.0-2' 
'haskell-parsec=3.1.5-3' 'haskell-mtl=2.1.3.1-3')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+ '0001-relax-upper-bound-on-network.patch')
+install=${pkgname}.install
+md5sums=('cd69429866439890353ec98100e3ba32'
+ '29c84f3787e06183742ca47f34b3e052')
+
+build() {
+ cd ${_hkgname}-${pkgver}
+
+ # fixes https://github.com/haskell/HTTP/issues/55
+ patch -Np1 -i ${srcdir}/0001-relax-upper-bound-on-network.patch
+
+ runhaskell Setup configure -O -p \
+   --enable-split-objs \
+   --enable-shared \
+   --prefix=/usr \
+   --docdir=/usr/share/doc/${pkgname} \
+   --libsubdir=\$compiler/site-local/\$pkgid
+
+ runhaskell Setup build
+
+ runhaskell Setup haddock
+
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+ cd ${_hkgname}-${pkgver}
+
+ install -D -m744 register.sh 
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+ install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+ runhaskell Setup copy --destdir=${pkgdir}
+
+ install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: haskell-http/repos/community-staging-i686/haskell-http.install (from 
rev 115577, haskell-http/trunk/haskell-http.install)
===
--- 

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:30:08
  Author: jelle
Revision: 115579

upgpkg: haskell-regex-posix 0.95.2-8

ghc 7.8.3 rebuild

Modified:
  haskell-regex-posix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:26:16 UTC (rev 115578)
+++ PKGBUILD2014-07-12 14:30:08 UTC (rev 115579)
@@ -6,7 +6,7 @@
 _hkgname=regex-posix
 pkgname=haskell-regex-posix
 pkgver=0.95.2
-pkgrel=7
+pkgrel=8
 pkgdesc='The posix regex backend for regex-base'
 url=http://hackage.haskell.org/package/$_hkgname;
 license=('custom:BSD3')



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:30:15
  Author: jelle
Revision: 115580

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

Added:
  haskell-regex-posix/repos/community-staging-i686/
  haskell-regex-posix/repos/community-staging-i686/PKGBUILD
(from rev 115579, haskell-regex-posix/trunk/PKGBUILD)
  haskell-regex-posix/repos/community-staging-i686/haskell-regex-posix.install
(from rev 115579, haskell-regex-posix/trunk/haskell-regex-posix.install)
  haskell-regex-posix/repos/community-staging-x86_64/
  haskell-regex-posix/repos/community-staging-x86_64/PKGBUILD
(from rev 115579, haskell-regex-posix/trunk/PKGBUILD)
  haskell-regex-posix/repos/community-staging-x86_64/haskell-regex-posix.install
(from rev 115579, haskell-regex-posix/trunk/haskell-regex-posix.install)

--+
 community-staging-i686/PKGBUILD  |   44 +
 community-staging-i686/haskell-regex-posix.install   |   18 ++
 community-staging-x86_64/PKGBUILD|   44 +
 community-staging-x86_64/haskell-regex-posix.install |   18 ++
 4 files changed, 124 insertions(+)

Copied: haskell-regex-posix/repos/community-staging-i686/PKGBUILD (from rev 
115579, haskell-regex-posix/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:30:15 UTC (rev 115580)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Maintainer: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+
+_hkgname=regex-posix
+pkgname=haskell-regex-posix
+pkgver=0.95.2
+pkgrel=8
+pkgdesc='The posix regex backend for regex-base'
+url=http://hackage.haskell.org/package/$_hkgname;
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc' 'haskell-regex-base')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+install=$pkgname.install
+options=('staticlibs')
+sha256sums=('56019921cd4a4c9682b81ec614236fea816ba8ed8785a1640cd66d8b24fc703e')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr \
+--docdir=/usr/share/doc/$pkgname 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -d -m755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
haskell-regex-posix/repos/community-staging-i686/haskell-regex-posix.install 
(from rev 115579, haskell-regex-posix/trunk/haskell-regex-posix.install)
===
--- community-staging-i686/haskell-regex-posix.install  
(rev 0)
+++ community-staging-i686/haskell-regex-posix.install  2014-07-12 14:30:15 UTC 
(rev 115580)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-regex-posix
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-regex-posix/repos/community-staging-x86_64/PKGBUILD (from rev 
115579, haskell-regex-posix/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-07-12 14:30:15 UTC (rev 115580)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Maintainer: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+
+_hkgname=regex-posix
+pkgname=haskell-regex-posix
+pkgver=0.95.2
+pkgrel=8
+pkgdesc='The posix regex backend for regex-base'
+url=http://hackage.haskell.org/package/$_hkgname;
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc' 'haskell-regex-base')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+install=$pkgname.install

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:31:54
  Author: jelle
Revision: 115581

upgpkg: haskell-regex-compat 0.95.1-9

ghc 7.8.3 rebuild

Modified:
  haskell-regex-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:30:15 UTC (rev 115580)
+++ PKGBUILD2014-07-12 14:31:54 UTC (rev 115581)
@@ -6,7 +6,7 @@
 _hkgname=regex-compat
 pkgname=haskell-regex-compat
 pkgver=0.95.1
-pkgrel=8
+pkgrel=9
 pkgdesc='Replaces and enhances Text.Regex'
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:32:02
  Author: jelle
Revision: 115582

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

Added:
  haskell-regex-compat/repos/community-staging-i686/
  haskell-regex-compat/repos/community-staging-i686/PKGBUILD
(from rev 115581, haskell-regex-compat/trunk/PKGBUILD)
  haskell-regex-compat/repos/community-staging-i686/haskell-regex-compat.install
(from rev 115581, haskell-regex-compat/trunk/haskell-regex-compat.install)
  haskell-regex-compat/repos/community-staging-x86_64/
  haskell-regex-compat/repos/community-staging-x86_64/PKGBUILD
(from rev 115581, haskell-regex-compat/trunk/PKGBUILD)
  
haskell-regex-compat/repos/community-staging-x86_64/haskell-regex-compat.install
(from rev 115581, haskell-regex-compat/trunk/haskell-regex-compat.install)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-i686/haskell-regex-compat.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   44 
 community-staging-x86_64/haskell-regex-compat.install |   18 ++
 4 files changed, 124 insertions(+)

Copied: haskell-regex-compat/repos/community-staging-i686/PKGBUILD (from rev 
115581, haskell-regex-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:32:02 UTC (rev 115582)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+
+_hkgname=regex-compat
+pkgname=haskell-regex-compat
+pkgver=0.95.1
+pkgrel=9
+pkgdesc='Replaces and enhances Text.Regex'
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc' 'haskell-regex-base' 'haskell-regex-posix')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+install=$pkgname.install
+options=('staticlibs')
+sha256sums=('d57cb1a5a4d66753b18eaa37a1621246f660472243b001894f970037548d953b')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr \
+--docdir=/usr/share/doc/$pkgname 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -d -m755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
haskell-regex-compat/repos/community-staging-i686/haskell-regex-compat.install 
(from rev 115581, haskell-regex-compat/trunk/haskell-regex-compat.install)
===
--- community-staging-i686/haskell-regex-compat.install 
(rev 0)
+++ community-staging-i686/haskell-regex-compat.install 2014-07-12 14:32:02 UTC 
(rev 115582)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-regex-compat
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-regex-compat/repos/community-staging-x86_64/PKGBUILD (from rev 
115581, haskell-regex-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-07-12 14:32:02 UTC (rev 115582)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+
+_hkgname=regex-compat
+pkgname=haskell-regex-compat
+pkgver=0.95.1
+pkgrel=9
+pkgdesc='Replaces and enhances Text.Regex'
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc' 'haskell-regex-base' 'haskell-regex-posix')

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:37:25
  Author: jelle
Revision: 115584

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

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 115583, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 115583, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 115583, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:37:25 UTC (rev 115584)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+
+pkgname=xmobar
+pkgver=0.21
+pkgrel=2
+pkgdesc=A Minimalistic Text Based Status Bar
+url=http://hackage.haskell.org/package/xmobar;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.8.3-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('8d4442d3772ad9f475d96b955fda220d')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags=with_utf8 with_xft with_iwlib
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2014-07-12 
14:37:25 UTC (rev 115584)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl = 2.0  2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 115583, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-07-12 14:37:25 UTC (rev 115584)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+
+pkgname=xmobar
+pkgver=0.21
+pkgrel=2
+pkgdesc=A Minimalistic Text Based Status Bar
+url=http://hackage.haskell.org/package/xmobar;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.8.3-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('8d4442d3772ad9f475d96b955fda220d')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags=with_utf8 with_xft with_iwlib
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:37:18
  Author: jelle
Revision: 115583

upgpkg: xmobar 0.21-2

ghc 7.8.3 rebuild

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:32:02 UTC (rev 115582)
+++ PKGBUILD2014-07-12 14:37:18 UTC (rev 115583)
@@ -4,14 +4,14 @@
 
 pkgname=xmobar
 pkgver=0.21
-pkgrel=1
+pkgrel=2
 pkgdesc=A Minimalistic Text Based Status Bar
 url=http://hackage.haskell.org/package/xmobar;
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
-makedepends=('ghc=7.8.2-4' 'haskell-x11=1.6.1.1' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
-'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat haskell-http')
+makedepends=('ghc=7.8.3-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
 md5sums=('8d4442d3772ad9f475d96b955fda220d')



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:41:45
  Author: jelle
Revision: 115585

upgpkg: xmonad 0.11-9

ghc 7.8.3 rebuild

Modified:
  xmonad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:37:25 UTC (rev 115584)
+++ PKGBUILD2014-07-12 14:41:45 UTC (rev 115585)
@@ -5,12 +5,12 @@
 
 pkgname=xmonad
 pkgver=0.11
-pkgrel=8
+pkgrel=9
 pkgdesc=Lightweight X11 tiled window manager written in Haskell
 arch=('i686' 'x86_64')
 url=http://xmonad.org/;
 license=('BSD')
-depends=('ghc=7.8.2' 'gmp' 'haskell-x11=1.6.1.1' 'sh' 'haskell-mtl=2.1.3.1' 
'haskell-utf8-string=0.3.7' 'haskell-extensible-exceptions=0.1.1.4')
+depends=('ghc=7.8.3' 'gmp' 'haskell-x11=1.6.1.2' 'sh' 'haskell-mtl=2.1.3.1' 
'haskell-utf8-string=0.3.7' 'haskell-extensible-exceptions=0.1.1.4')
 makedepends=('gendesk')
 optdepends=('xorg-xmessage: for displaying visual error messages')
 install='xmonad.install'



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:41:54
  Author: jelle
Revision: 115586

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

Added:
  xmonad/repos/community-staging-i686/
  xmonad/repos/community-staging-i686/PKGBUILD
(from rev 115585, xmonad/trunk/PKGBUILD)
  xmonad/repos/community-staging-i686/xmonad.install
(from rev 115585, xmonad/trunk/xmonad.install)
  xmonad/repos/community-staging-i686/xmonad.svg
(from rev 115585, xmonad/trunk/xmonad.svg)
  xmonad/repos/community-staging-x86_64/
  xmonad/repos/community-staging-x86_64/PKGBUILD
(from rev 115585, xmonad/trunk/PKGBUILD)
  xmonad/repos/community-staging-x86_64/xmonad.install
(from rev 115585, xmonad/trunk/xmonad.install)
  xmonad/repos/community-staging-x86_64/xmonad.svg
(from rev 115585, xmonad/trunk/xmonad.svg)

-+
 community-staging-i686/PKGBUILD |   53 
 community-staging-i686/xmonad.install   |   19 +++
 community-staging-i686/xmonad.svg   |   77 ++
 community-staging-x86_64/PKGBUILD   |   53 
 community-staging-x86_64/xmonad.install |   19 +++
 community-staging-x86_64/xmonad.svg |   77 ++
 6 files changed, 298 insertions(+)

Copied: xmonad/repos/community-staging-i686/PKGBUILD (from rev 115585, 
xmonad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:41:54 UTC (rev 115586)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: shild shi...@gmail.com
+
+pkgname=xmonad
+pkgver=0.11
+pkgrel=9
+pkgdesc=Lightweight X11 tiled window manager written in Haskell
+arch=('i686' 'x86_64')
+url=http://xmonad.org/;
+license=('BSD')
+depends=('ghc=7.8.3' 'gmp' 'haskell-x11=1.6.1.2' 'sh' 'haskell-mtl=2.1.3.1' 
'haskell-utf8-string=0.3.7' 'haskell-extensible-exceptions=0.1.1.4')
+makedepends=('gendesk')
+optdepends=('xorg-xmessage: for displaying visual error messages')
+install='xmonad.install'
+source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+'xmonad.svg')
+options=('staticlibs')
+md5sums=('5ac9dc1dae5e85dcbdfb9f70cbe312c1'
+ '72bfa5e62e4e44fe7fa59b6a7593d993')
+
+build() {
+  cd $srcdir
+  ghc-pkg list
+  gendesk --pkgname $pkgname --pkgdesc $pkgdesc
+
+  cd $srcdir/$pkgname-$pkgver
+
+  runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs 
--prefix=/usr \
+ --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  runhaskell Setup.lhs copy --destdir=$pkgdir
+
+  #runhaskell util/GenerateManpage.hs
+
+  install -D -m644 man/xmonad.1 $pkgdir/usr/share/man/man1/xmonad.1
+
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/xmonad/LICENSE
+
+  install -D -m644 $srcdir/xmonad.svg $pkgdir/usr/share/pixmaps/xmonad.svg
+
+  install -D -m644 $srcdir/xmonad.desktop 
$pkgdir/usr/share/xsessions/xmonad.desktop
+}

Copied: xmonad/repos/community-staging-i686/xmonad.install (from rev 115585, 
xmonad/trunk/xmonad.install)
===
--- community-staging-i686/xmonad.install   (rev 0)
+++ community-staging-i686/xmonad.install   2014-07-12 14:41:54 UTC (rev 
115586)
@@ -0,0 +1,19 @@
+HS_DIR=/usr/share/haskell/xmonad
+
+post_install() {
+${HS_DIR}/register.sh
+echo xmonad now has dynamic configuration via ~/.xmonad/xmonad.hs
+echo See http://haskell.org/haskellwiki/Xmonad/Config_archive for 
examples
+}
+
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+  ${HS_DIR}/register.sh
+}
+
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}

Copied: xmonad/repos/community-staging-i686/xmonad.svg (from rev 115585, 
xmonad/trunk/xmonad.svg)
===
--- community-staging-i686/xmonad.svg   (rev 0)
+++ community-staging-i686/xmonad.svg   2014-07-12 14:41:54 UTC (rev 115586)
@@ -0,0 +1,77 @@
+?xml version=1.0 encoding=UTF-8 standalone=no?
+!-- Created with Inkscape (http://www.inkscape.org/) --
+svg
+   xmlns:dc=http://purl.org/dc/elements/1.1/;
+   xmlns:cc=http://web.resource.org/cc/;
+   xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg=http://www.w3.org/2000/svg;
+   xmlns=http://www.w3.org/2000/svg;
+   

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:51:23
  Author: jelle
Revision: 115587

upgpkg: xmonad-contrib 0.11.2-3

ghc 7.8.3 rebuild

Modified:
  xmonad-contrib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:41:54 UTC (rev 115586)
+++ PKGBUILD2014-07-12 14:51:23 UTC (rev 115587)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url=http://xmonad.org/;
 license=('BSD')
-depends=('ghc=7.8.2-2' 'xmonad=0.11-8' 'sh' 'haskell-x11=1.6.1.1' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.7' 'haskell-random=1.0.1.1')
+depends=('ghc=7.8.3-1' 'xmonad=0.11-9' 'sh' 'haskell-x11=1.6.1.2' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.7' 'haskell-random=1.0.1.1')
 install='xmonad-contrib.install'
 options=('staticlibs')
 
source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
 'remove_unnecessary_contexts.patch')



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:51:34
  Author: jelle
Revision: 115588

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

Added:
  xmonad-contrib/repos/community-staging-i686/
  xmonad-contrib/repos/community-staging-i686/PKGBUILD
(from rev 115587, xmonad-contrib/trunk/PKGBUILD)
  xmonad-contrib/repos/community-staging-i686/remove_unnecessary_contexts.patch
(from rev 115587, xmonad-contrib/trunk/remove_unnecessary_contexts.patch)
  
xmonad-contrib/repos/community-staging-i686/xmonad-contrib-remove-getatomname.patch
(from rev 115587, 
xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
  xmonad-contrib/repos/community-staging-i686/xmonad-contrib.install
(from rev 115587, xmonad-contrib/trunk/xmonad-contrib.install)
  xmonad-contrib/repos/community-staging-x86_64/
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
(from rev 115587, xmonad-contrib/trunk/PKGBUILD)
  
xmonad-contrib/repos/community-staging-x86_64/remove_unnecessary_contexts.patch
(from rev 115587, xmonad-contrib/trunk/remove_unnecessary_contexts.patch)
  
xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib-remove-getatomname.patch
(from rev 115587, 
xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
  xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib.install
(from rev 115587, xmonad-contrib/trunk/xmonad-contrib.install)

--+
 community-staging-i686/PKGBUILD  |   42 
++
 community-staging-i686/remove_unnecessary_contexts.patch |   21 +
 community-staging-i686/xmonad-contrib-remove-getatomname.patch   |   19 
 community-staging-i686/xmonad-contrib.install|   17 
 community-staging-x86_64/PKGBUILD|   42 
++
 community-staging-x86_64/remove_unnecessary_contexts.patch   |   21 +
 community-staging-x86_64/xmonad-contrib-remove-getatomname.patch |   19 
 community-staging-x86_64/xmonad-contrib.install  |   17 
 8 files changed, 198 insertions(+)

Copied: xmonad-contrib/repos/community-staging-i686/PKGBUILD (from rev 115587, 
xmonad-contrib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:51:34 UTC (rev 115588)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: orbisvicis gmail.com
+
+pkgname=xmonad-contrib
+pkgver=0.11.2
+pkgrel=3
+pkgdesc=Add-ons for xmonad
+arch=('i686' 'x86_64')
+url=http://xmonad.org/;
+license=('BSD')
+depends=('ghc=7.8.3-1' 'xmonad=0.11-9' 'sh' 'haskell-x11=1.6.1.2' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.7' 'haskell-random=1.0.1.1')
+install='xmonad-contrib.install'
+options=('staticlibs')
+source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
 'remove_unnecessary_contexts.patch')
+md5sums=('415a7ed9449198b0e93d49ab0a4a0f72'
+ '724a45ea306054ddb7f8a42b185e708f')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i $srcdir/remove_unnecessary_contexts.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs 
--prefix=/usr -fuse_xft \
+ --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  runhaskell Setup.lhs copy --destdir=$pkgdir
+  install -D LICENSE $pkgdir/usr/share/licenses/xmonad-contrib/LICENSE
+}

Copied: 
xmonad-contrib/repos/community-staging-i686/remove_unnecessary_contexts.patch 
(from rev 115587, xmonad-contrib/trunk/remove_unnecessary_contexts.patch)
===
--- community-staging-i686/remove_unnecessary_contexts.patch
(rev 0)
+++ community-staging-i686/remove_unnecessary_contexts.patch2014-07-12 
14:51:34 UTC (rev 115588)
@@ -0,0 +1,21 @@
+diff -aur xmonad-contrib-0.11.2/XMonad/Layout/MultiToggle.hs 
xmonad-contrib-new/XMonad/Layout/MultiToggle.hs
+--- xmonad-contrib-0.11.2/XMonad/Layout/MultiToggle.hs 2013-07-16 
04:52:11.0 +0200
 xmonad-contrib-new/XMonad/Layout/MultiToggle.hs2014-04-27 
21:26:20.746206511 +0200
+@@ -99,7 +99,7 @@
+ transform :: (LayoutClass l a) = t - l a -
+ (forall l'. (LayoutClass l' a) = l' a - (l' a - l a) - b) - b
+ 
+-data (LayoutClass l a) = EL l a = forall l'. (LayoutClass l' 

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:12:35
  Author: jelle
Revision: 115589

upgpkg: xmonad-contrib 0.11.2-4

ghc 7.8.3 rebuild

Modified:
  xmonad-contrib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 14:51:34 UTC (rev 115588)
+++ PKGBUILD2014-07-12 15:12:35 UTC (rev 115589)
@@ -5,7 +5,7 @@
 
 pkgname=xmonad-contrib
 pkgver=0.11.2
-pkgrel=3
+pkgrel=4
 pkgdesc=Add-ons for xmonad
 arch=('i686' 'x86_64')
 url=http://xmonad.org/;



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:12:48
  Author: jelle
Revision: 115590

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

Added:
  xmonad-contrib/repos/community-staging-i686/PKGBUILD
(from rev 115589, xmonad-contrib/trunk/PKGBUILD)
  xmonad-contrib/repos/community-staging-i686/remove_unnecessary_contexts.patch
(from rev 115589, xmonad-contrib/trunk/remove_unnecessary_contexts.patch)
  
xmonad-contrib/repos/community-staging-i686/xmonad-contrib-remove-getatomname.patch
(from rev 115589, 
xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
  xmonad-contrib/repos/community-staging-i686/xmonad-contrib.install
(from rev 115589, xmonad-contrib/trunk/xmonad-contrib.install)
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
(from rev 115589, xmonad-contrib/trunk/PKGBUILD)
  
xmonad-contrib/repos/community-staging-x86_64/remove_unnecessary_contexts.patch
(from rev 115589, xmonad-contrib/trunk/remove_unnecessary_contexts.patch)
  
xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib-remove-getatomname.patch
(from rev 115589, 
xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
  xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib.install
(from rev 115589, xmonad-contrib/trunk/xmonad-contrib.install)
Deleted:
  xmonad-contrib/repos/community-staging-i686/PKGBUILD
  xmonad-contrib/repos/community-staging-i686/remove_unnecessary_contexts.patch
  
xmonad-contrib/repos/community-staging-i686/xmonad-contrib-remove-getatomname.patch
  xmonad-contrib/repos/community-staging-i686/xmonad-contrib.install
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
  
xmonad-contrib/repos/community-staging-x86_64/remove_unnecessary_contexts.patch
  
xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib-remove-getatomname.patch
  xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib.install

--+
 /PKGBUILD|   84 
++
 /remove_unnecessary_contexts.patch   |   42 +
 /xmonad-contrib-remove-getatomname.patch |   38 
 /xmonad-contrib.install  |   34 
 community-staging-i686/PKGBUILD  |   42 -
 community-staging-i686/remove_unnecessary_contexts.patch |   21 --
 community-staging-i686/xmonad-contrib-remove-getatomname.patch   |   19 --
 community-staging-i686/xmonad-contrib.install|   17 --
 community-staging-x86_64/PKGBUILD|   42 -
 community-staging-x86_64/remove_unnecessary_contexts.patch   |   21 --
 community-staging-x86_64/xmonad-contrib-remove-getatomname.patch |   19 --
 community-staging-x86_64/xmonad-contrib.install  |   17 --
 12 files changed, 198 insertions(+), 198 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-07-12 15:12:35 UTC (rev 115589)
+++ community-staging-i686/PKGBUILD 2014-07-12 15:12:48 UTC (rev 115590)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Vesa Kaihlavirta ve...@iki.fi
-# Contributor: orbisvicis gmail.com
-
-pkgname=xmonad-contrib
-pkgver=0.11.2
-pkgrel=3
-pkgdesc=Add-ons for xmonad
-arch=('i686' 'x86_64')
-url=http://xmonad.org/;
-license=('BSD')
-depends=('ghc=7.8.3-1' 'xmonad=0.11-9' 'sh' 'haskell-x11=1.6.1.2' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.7' 'haskell-random=1.0.1.1')
-install='xmonad-contrib.install'
-options=('staticlibs')
-source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
 'remove_unnecessary_contexts.patch')
-md5sums=('415a7ed9449198b0e93d49ab0a4a0f72'
- '724a45ea306054ddb7f8a42b185e708f')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -Np1 -i $srcdir/remove_unnecessary_contexts.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs 
--prefix=/usr -fuse_xft \
- --libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
-  install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unregister.sh
-  runhaskell Setup.lhs copy --destdir=$pkgdir
-  install -D LICENSE $pkgdir/usr/share/licenses/xmonad-contrib/LICENSE
-}

Copied: xmonad-contrib/repos/community-staging-i686/PKGBUILD (from rev 115589, 
xmonad-contrib/trunk/PKGBUILD)
===
--- 

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:26:06
  Author: jelle
Revision: 115591

upgpkg: bashrun 0.16.1-3

mtree rebuild

Modified:
  bashrun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 15:12:48 UTC (rev 115590)
+++ PKGBUILD2014-07-12 15:26:06 UTC (rev 115591)
@@ -4,7 +4,7 @@
 
 pkgname=bashrun
 pkgver=0.16.1
-pkgrel=2
+pkgrel=3
 pkgdesc=An x11 application launcher based on bash
 arch=('any')
 url=http://sourceforge.net/projects/bashrun;



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:26:13
  Author: jelle
Revision: 115592

archrelease: copy trunk to community-any

Added:
  bashrun/repos/community-any/PKGBUILD
(from rev 115591, bashrun/trunk/PKGBUILD)
Deleted:
  bashrun/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 15:26:06 UTC (rev 115591)
+++ PKGBUILD2014-07-12 15:26:13 UTC (rev 115592)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=bashrun
-pkgver=0.16.1
-pkgrel=2
-pkgdesc=An x11 application launcher based on bash
-arch=('any')
-url=http://sourceforge.net/projects/bashrun;
-license=('GPL')
-depends=('bash')
-optdepends=('xdotool: allow bashrun to run in background')
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz)
-sha256sums=('bb070b337450b256290089ae1c1bdba57098d48d2d2534d7da3f60a44cdc0d76')
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
-  install -D -m644 $pkgname.1 ${pkgdir}/usr/share/man/man1/$pkgname.1
-  install -D -m644 bashrc ${pkgdir}/usr/share/$pkgname/bashrc
-}
-

Copied: bashrun/repos/community-any/PKGBUILD (from rev 115591, 
bashrun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 15:26:13 UTC (rev 115592)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=bashrun
+pkgver=0.16.1
+pkgrel=3
+pkgdesc=An x11 application launcher based on bash
+arch=('any')
+url=http://sourceforge.net/projects/bashrun;
+license=('GPL')
+depends=('bash')
+optdepends=('xdotool: allow bashrun to run in background')
+source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz)
+sha256sums=('bb070b337450b256290089ae1c1bdba57098d48d2d2534d7da3f60a44cdc0d76')
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
+  install -D -m644 $pkgname.1 ${pkgdir}/usr/share/man/man1/$pkgname.1
+  install -D -m644 bashrc ${pkgdir}/usr/share/$pkgname/bashrc
+}
+



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:35:22
  Author: jelle
Revision: 115595

upgpkg: cksfv 1.3.14-3

mtree rebuild

Modified:
  cksfv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 15:32:11 UTC (rev 115594)
+++ PKGBUILD2014-07-12 15:35:22 UTC (rev 115595)
@@ -4,7 +4,7 @@
 
 pkgname=cksfv
 pkgver=1.3.14
-pkgrel=2
+pkgrel=3
 pkgdesc=SFV (Simple File Verification) Checker
 arch=('i686' 'x86_64')
 url=http://zakalwe.fi/~shd/foss/cksfv;



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:39:56
  Author: jelle
Revision: 115597

upgpkg: python-psycopg1 1.1.21-9

mtree rebuild

Modified:
  python-psycopg1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 15:35:32 UTC (rev 115596)
+++ PKGBUILD2014-07-12 15:39:56 UTC (rev 115597)
@@ -4,12 +4,13 @@
 pkgbase=python-psycopg1
 pkgname=python2-psycopg1
 pkgver=1.1.21
-pkgrel=8
+pkgrel=9
 pkgdesc=A PostgreSQL database adapter for Python
 arch=('i686' 'x86_64')
 url=http://initd.org/projects/psycopg1;
 license=('GPL')
 depends=('python2-egenix-mx-base' 'postgresql-libs')
+makedepends=('postgresql')
 conflicts=('python-psycopg1=1.1.21-7')
 replaces=('python-psycopg1=1.1.21-7')
 source=(http://initd.org/psycopg/tarballs/PSYCOPG-1-1/psycopg-$pkgver.tar.gz)



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:32:05
  Author: jelle
Revision: 115593

upgpkg: ipcalc 0.41-5

mtree rebuild

Modified:
  ipcalc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 15:26:13 UTC (rev 115592)
+++ PKGBUILD2014-07-12 15:32:05 UTC (rev 115593)
@@ -3,7 +3,7 @@
 
 pkgname=ipcalc
 pkgver=0.41
-pkgrel=4
+pkgrel=5
 pkgdesc=Calculates IP broadcast, network, Cisco wildcard mask, and host 
ranges
 arch=('any')
 url=http://jodies.de/ipcalc;



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:40:06
  Author: jelle
Revision: 115598

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

Added:
  python-psycopg1/repos/community-i686/PKGBUILD
(from rev 115597, python-psycopg1/trunk/PKGBUILD)
  python-psycopg1/repos/community-x86_64/PKGBUILD
(from rev 115597, python-psycopg1/trunk/PKGBUILD)
Deleted:
  python-psycopg1/repos/community-i686/PKGBUILD
  python-psycopg1/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 15:39:56 UTC (rev 115597)
+++ community-i686/PKGBUILD 2014-07-12 15:40:06 UTC (rev 115598)
@@ -1,34 +0,0 @@
-# $Id$
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgbase=python-psycopg1
-pkgname=python2-psycopg1
-pkgver=1.1.21
-pkgrel=8
-pkgdesc=A PostgreSQL database adapter for Python
-arch=('i686' 'x86_64')
-url=http://initd.org/projects/psycopg1;
-license=('GPL')
-depends=('python2-egenix-mx-base' 'postgresql')
-conflicts=('python-psycopg1=1.1.21-7')
-replaces=('python-psycopg1=1.1.21-7')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-1-1/psycopg-$pkgver.tar.gz)
-md5sums=('a31f79f68d6d32898d6f24e11369a106')
-sha1sums=('02d8a8b5dd682306117896c7c63a9a1b518997b6')
-
-build() {
-  cd $srcdir/psycopg-$pkgver
-
-  ./configure --prefix=/usr --with-python=/usr/bin/python2 \
-  
--with-mxdatetime-includes=/usr/lib/python2.7/site-packages/mx/DateTime/mxDateTime
-  sed -e 's:\(echo   install -m 555 $$mod \)\($(PY_MOD_DIR)\)\(; 
\\\):\1${DESTDIR}\2/$$mod\3:' \
-   -e 's:\($(INSTALL)  -m 555 $$mod \)\($(PY_MOD_DIR)\)\(; 
\\\):\1${DESTDIR}\2/$$mod\3:' \
-   -i Makefile
-  make
-}
-
-package_python2-psycopg1() {
-  cd $srcdir/psycopg-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: python-psycopg1/repos/community-i686/PKGBUILD (from rev 115597, 
python-psycopg1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 15:40:06 UTC (rev 115598)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgbase=python-psycopg1
+pkgname=python2-psycopg1
+pkgver=1.1.21
+pkgrel=9
+pkgdesc=A PostgreSQL database adapter for Python
+arch=('i686' 'x86_64')
+url=http://initd.org/projects/psycopg1;
+license=('GPL')
+depends=('python2-egenix-mx-base' 'postgresql-libs')
+makedepends=('postgresql')
+conflicts=('python-psycopg1=1.1.21-7')
+replaces=('python-psycopg1=1.1.21-7')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-1-1/psycopg-$pkgver.tar.gz)
+md5sums=('a31f79f68d6d32898d6f24e11369a106')
+sha1sums=('02d8a8b5dd682306117896c7c63a9a1b518997b6')
+
+build() {
+  cd $srcdir/psycopg-$pkgver
+
+  ./configure --prefix=/usr --with-python=/usr/bin/python2 \
+  
--with-mxdatetime-includes=/usr/lib/python2.7/site-packages/mx/DateTime/mxDateTime
+  sed -e 's:\(echo   install -m 555 $$mod \)\($(PY_MOD_DIR)\)\(; 
\\\):\1${DESTDIR}\2/$$mod\3:' \
+   -e 's:\($(INSTALL)  -m 555 $$mod \)\($(PY_MOD_DIR)\)\(; 
\\\):\1${DESTDIR}\2/$$mod\3:' \
+   -i Makefile
+  make
+}
+
+package_python2-psycopg1() {
+  cd $srcdir/psycopg-$pkgver
+
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-12 15:39:56 UTC (rev 115597)
+++ community-x86_64/PKGBUILD   2014-07-12 15:40:06 UTC (rev 115598)
@@ -1,34 +0,0 @@
-# $Id$
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgbase=python-psycopg1
-pkgname=python2-psycopg1
-pkgver=1.1.21
-pkgrel=8
-pkgdesc=A PostgreSQL database adapter for Python
-arch=('i686' 'x86_64')
-url=http://initd.org/projects/psycopg1;
-license=('GPL')
-depends=('python2-egenix-mx-base' 'postgresql')
-conflicts=('python-psycopg1=1.1.21-7')
-replaces=('python-psycopg1=1.1.21-7')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-1-1/psycopg-$pkgver.tar.gz)
-md5sums=('a31f79f68d6d32898d6f24e11369a106')
-sha1sums=('02d8a8b5dd682306117896c7c63a9a1b518997b6')
-
-build() {
-  cd $srcdir/psycopg-$pkgver
-
-  ./configure --prefix=/usr --with-python=/usr/bin/python2 \
-  
--with-mxdatetime-includes=/usr/lib/python2.7/site-packages/mx/DateTime/mxDateTime
-  sed -e 's:\(echo   install -m 555 $$mod \)\($(PY_MOD_DIR)\)\(; 
\\\):\1${DESTDIR}\2/$$mod\3:' \
-   -e 's:\($(INSTALL)  -m 555 $$mod \)\($(PY_MOD_DIR)\)\(; 
\\\):\1${DESTDIR}\2/$$mod\3:' \
-   -i Makefile
-  make
-}
-
-package_python2-psycopg1() {
-  cd $srcdir/psycopg-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: 

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:35:32
  Author: jelle
Revision: 115596

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 15:35:22 UTC (rev 115595)
+++ community-i686/PKGBUILD 2014-07-12 15:35:32 UTC (rev 115596)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jaroslaw Swierczynski swier...@aur.archlinux.org
-# Contributor: Wijnand Modderman wijanand+...@archlinux.nl
-
-pkgname=cksfv
-pkgver=1.3.14
-pkgrel=2
-pkgdesc=SFV (Simple File Verification) Checker
-arch=('i686' 'x86_64')
-url=http://zakalwe.fi/~shd/foss/cksfv;
-license=('GPL')
-depends=('glibc')
-source=(http://zakalwe.fi/~shd/foss/cksfv/files/$pkgname-$pkgver.tar.gz)
-md5sums=('2e15289753ea0b90b6ea86993f93b383')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make BINDIR=$pkgdir/usr/bin MANDIR=$pkgdir/usr/share/man install
-  chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1
-}

Copied: cksfv/repos/community-i686/PKGBUILD (from rev 115595, 
cksfv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 15:35:32 UTC (rev 115596)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Wijnand Modderman wijanand+...@archlinux.nl
+
+pkgname=cksfv
+pkgver=1.3.14
+pkgrel=3
+pkgdesc=SFV (Simple File Verification) Checker
+arch=('i686' 'x86_64')
+url=http://zakalwe.fi/~shd/foss/cksfv;
+license=('GPL')
+depends=('glibc')
+source=(http://zakalwe.fi/~shd/foss/cksfv/files/$pkgname-$pkgver.tar.gz)
+md5sums=('2e15289753ea0b90b6ea86993f93b383')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make BINDIR=$pkgdir/usr/bin MANDIR=$pkgdir/usr/share/man install
+  chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-12 15:35:22 UTC (rev 115595)
+++ community-x86_64/PKGBUILD   2014-07-12 15:35:32 UTC (rev 115596)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jaroslaw Swierczynski swier...@aur.archlinux.org
-# Contributor: Wijnand Modderman wijanand+...@archlinux.nl
-
-pkgname=cksfv
-pkgver=1.3.14
-pkgrel=2
-pkgdesc=SFV (Simple File Verification) Checker
-arch=('i686' 'x86_64')
-url=http://zakalwe.fi/~shd/foss/cksfv;
-license=('GPL')
-depends=('glibc')
-source=(http://zakalwe.fi/~shd/foss/cksfv/files/$pkgname-$pkgver.tar.gz)
-md5sums=('2e15289753ea0b90b6ea86993f93b383')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make BINDIR=$pkgdir/usr/bin MANDIR=$pkgdir/usr/share/man install
-  chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1
-}

Copied: cksfv/repos/community-x86_64/PKGBUILD (from rev 115595, 
cksfv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-12 15:35:32 UTC (rev 115596)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Wijnand Modderman wijanand+...@archlinux.nl
+
+pkgname=cksfv
+pkgver=1.3.14
+pkgrel=3
+pkgdesc=SFV (Simple File Verification) Checker
+arch=('i686' 'x86_64')
+url=http://zakalwe.fi/~shd/foss/cksfv;
+license=('GPL')
+depends=('glibc')
+source=(http://zakalwe.fi/~shd/foss/cksfv/files/$pkgname-$pkgver.tar.gz)
+md5sums=('2e15289753ea0b90b6ea86993f93b383')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make BINDIR=$pkgdir/usr/bin MANDIR=$pkgdir/usr/share/man install
+  chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1
+}



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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 17:32:11
  Author: jelle
Revision: 115594

archrelease: copy trunk to community-any

Added:
  ipcalc/repos/community-any/PKGBUILD
(from rev 115593, ipcalc/trunk/PKGBUILD)
Deleted:
  ipcalc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 15:32:05 UTC (rev 115593)
+++ PKGBUILD2014-07-12 15:32:11 UTC (rev 115594)
@@ -1,17 +0,0 @@
-# $Id$
-# Contributor: K. Piche kpi...@rogers.com
-
-pkgname=ipcalc
-pkgver=0.41
-pkgrel=4
-pkgdesc=Calculates IP broadcast, network, Cisco wildcard mask, and host 
ranges
-arch=('any')
-url=http://jodies.de/ipcalc;
-license=('GPL')
-depends=('perl')
-source=(http://jodies.de/ipcalc-archive/${pkgname}-${pkgver}.tar.gz)
-md5sums=('fb791e9a5220fc8e624d915e18fc4697')
-
-package() {
-  install -D -m755 ${srcdir}/${pkgname}-${pkgver}/ipcalc 
${pkgdir}/usr/bin/ipcalc
-}

Copied: ipcalc/repos/community-any/PKGBUILD (from rev 115593, 
ipcalc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 15:32:11 UTC (rev 115594)
@@ -0,0 +1,17 @@
+# $Id$
+# Contributor: K. Piche kpi...@rogers.com
+
+pkgname=ipcalc
+pkgver=0.41
+pkgrel=5
+pkgdesc=Calculates IP broadcast, network, Cisco wildcard mask, and host 
ranges
+arch=('any')
+url=http://jodies.de/ipcalc;
+license=('GPL')
+depends=('perl')
+source=(http://jodies.de/ipcalc-archive/${pkgname}-${pkgver}.tar.gz)
+md5sums=('fb791e9a5220fc8e624d915e18fc4697')
+
+package() {
+  install -D -m755 ${srcdir}/${pkgname}-${pkgver}/ipcalc 
${pkgdir}/usr/bin/ipcalc
+}



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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 18:33:02
  Author: speps
Revision: 115599

upgpkg: drumkv1 0.5.0-1

Modified:
  drumkv1/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 15:40:06 UTC (rev 115598)
+++ PKGBUILD2014-07-12 16:33:02 UTC (rev 115599)
@@ -2,7 +2,7 @@
 # Maintainer: speps speps at aur dot archlinux dot org
 
 pkgname=drumkv1
-pkgver=0.4.2
+pkgver=0.5.0
 pkgrel=1
 pkgdesc=An old-school drum-kit sampler
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
 install=$pkgname.install
 source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('9c0fd8e947c0947dadbc4a714bb31f15')
+md5sums=('800878e359aa564b23dd8b4e98b93a22')
 
 prepare() {
   cd $pkgname-$pkgver


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


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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 18:33:54
  Author: speps
Revision: 115603

upgpkg: synthv1 0.5.0-1

Modified:
  synthv1/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 16:33:35 UTC (rev 115602)
+++ PKGBUILD2014-07-12 16:33:54 UTC (rev 115603)
@@ -2,7 +2,7 @@
 # Maintainer: speps speps at aur dot archlinux dot org
 
 pkgname=synthv1
-pkgver=0.4.2
+pkgver=0.5.0
 pkgrel=1
 pkgdesc=An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
 install=$pkgname.install
 source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('b97b4c0997f9e4ef614102d040c8a669')
+md5sums=('8c39ce2180abb6dedca4906fe1c499ed')
 
 prepare() {
   cd $pkgname-$pkgver


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


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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 18:33:35
  Author: speps
Revision: 115602

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

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

--+
 /PKGBUILD|   80 +
 /samplv1.install |   26 
 community-i686/PKGBUILD  |   40 --
 community-i686/samplv1.install   |   13 --
 community-x86_64/PKGBUILD|   40 --
 community-x86_64/samplv1.install |   13 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 16:33:29 UTC (rev 115601)
+++ community-i686/PKGBUILD 2014-07-12 16:33:35 UTC (rev 115602)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=samplv1
-pkgver=0.4.2
-pkgrel=1
-pkgdesc=Polyphonic sampler synthesizer with stereo fx
-arch=(i686 x86_64)
-url=http://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
-install=$pkgname.install
-source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c2cc4f877403ac2bf35c4a95b09106af')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # x86_64 lib path fix
-  sed -i s/lib64/lib/ src/src_lv2{,ui}.pro
-
-  # i686 -reduce-relocations (Qt5)
-#  if [[ $CARCH = i686 ]]; then
-#export CXXFLAGS+= -fPIE
-#  fi
-}
-
-build() {
-  cd $pkgname-$pkgver 
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver 
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: samplv1/repos/community-i686/PKGBUILD (from rev 115601, 
samplv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 16:33:35 UTC (rev 115602)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=samplv1
+pkgver=0.5.0
+pkgrel=1
+pkgdesc=Polyphonic sampler synthesizer with stereo fx
+arch=(i686 x86_64)
+url=http://$pkgname.sourceforge.net/$pkgname-index.html;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
+install=$pkgname.install
+source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('3369bb598f445a240e5d9e48f7574635')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i s/lib64/lib/ src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations (Qt5)
+#  if [[ $CARCH = i686 ]]; then
+#export CXXFLAGS+= -fPIE
+#  fi
+}
+
+build() {
+  cd $pkgname-$pkgver 
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver 
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/samplv1.install
===
--- community-i686/samplv1.install  2014-07-12 16:33:29 UTC (rev 115601)
+++ community-i686/samplv1.install  2014-07-12 16:33:35 UTC (rev 115602)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
-  update-mime-database usr/share/mime
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: samplv1/repos/community-i686/samplv1.install (from rev 115601, 
samplv1/trunk/samplv1.install)
===
--- community-i686/samplv1.install  (rev 0)
+++ community-i686/samplv1.install  2014-07-12 16:33:35 UTC (rev 115602)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-12 16:33:29 UTC (rev 115601)
+++ community-x86_64/PKGBUILD   2014-07-12 16:33:35 UTC (rev 115602)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=samplv1
-pkgver=0.4.2
-pkgrel=1
-pkgdesc=Polyphonic sampler synthesizer with stereo fx
-arch=(i686 

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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 18:34:00
  Author: speps
Revision: 115604

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

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

--+
 /PKGBUILD|   80 +
 /synthv1.install |   26 
 community-i686/PKGBUILD  |   40 --
 community-i686/synthv1.install   |   13 --
 community-x86_64/PKGBUILD|   40 --
 community-x86_64/synthv1.install |   13 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 16:33:54 UTC (rev 115603)
+++ community-i686/PKGBUILD 2014-07-12 16:34:00 UTC (rev 115604)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=synthv1
-pkgver=0.4.2
-pkgrel=1
-pkgdesc=An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx
-arch=(i686 x86_64)
-url=http://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
-install=$pkgname.install
-source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('b97b4c0997f9e4ef614102d040c8a669')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # x86_64 lib path fix
-  sed -i s/lib64/lib/ src/src_lv2{,ui}.pro
-
-  # i686 -reduce-relocations (Qt5)
-#  if [[ $CARCH = i686 ]]; then
-#export CXXFLAGS+= -fPIE
-#  fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: synthv1/repos/community-i686/PKGBUILD (from rev 115603, 
synthv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 16:34:00 UTC (rev 115604)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=synthv1
+pkgver=0.5.0
+pkgrel=1
+pkgdesc=An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx
+arch=(i686 x86_64)
+url=http://$pkgname.sourceforge.net/$pkgname-index.html;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
+install=$pkgname.install
+source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('8c39ce2180abb6dedca4906fe1c499ed')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i s/lib64/lib/ src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations (Qt5)
+#  if [[ $CARCH = i686 ]]; then
+#export CXXFLAGS+= -fPIE
+#  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/synthv1.install
===
--- community-i686/synthv1.install  2014-07-12 16:33:54 UTC (rev 115603)
+++ community-i686/synthv1.install  2014-07-12 16:34:00 UTC (rev 115604)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
-  update-mime-database usr/share/mime
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: synthv1/repos/community-i686/synthv1.install (from rev 115603, 
synthv1/trunk/synthv1.install)
===
--- community-i686/synthv1.install  (rev 0)
+++ community-i686/synthv1.install  2014-07-12 16:34:00 UTC (rev 115604)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-12 16:33:54 UTC (rev 115603)
+++ community-x86_64/PKGBUILD   2014-07-12 16:34:00 UTC (rev 115604)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=synthv1
-pkgver=0.4.2

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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 18:33:15
  Author: speps
Revision: 115600

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

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

--+
 /PKGBUILD|   80 +
 /drumkv1.install |   26 
 community-i686/PKGBUILD  |   40 --
 community-i686/drumkv1.install   |   13 --
 community-x86_64/PKGBUILD|   40 --
 community-x86_64/drumkv1.install |   13 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 16:33:02 UTC (rev 115599)
+++ community-i686/PKGBUILD 2014-07-12 16:33:15 UTC (rev 115600)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=drumkv1
-pkgver=0.4.2
-pkgrel=1
-pkgdesc=An old-school drum-kit sampler
-arch=(i686 x86_64)
-url=http://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
-install=$pkgname.install
-source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('9c0fd8e947c0947dadbc4a714bb31f15')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # x86_64 lib path fix
-  sed -i s/lib64/lib/ src/src_lv2{,ui}.pro
-
-  # i686 -reduce-relocations (Qt5)
-#  if [[ $CARCH = i686 ]]; then
-#export CXXFLAGS+= -fPIE
-#  fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: drumkv1/repos/community-i686/PKGBUILD (from rev 115599, 
drumkv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 16:33:15 UTC (rev 115600)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=drumkv1
+pkgver=0.5.0
+pkgrel=1
+pkgdesc=An old-school drum-kit sampler
+arch=(i686 x86_64)
+url=http://$pkgname.sourceforge.net/$pkgname-index.html;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
+install=$pkgname.install
+source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('800878e359aa564b23dd8b4e98b93a22')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i s/lib64/lib/ src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations (Qt5)
+#  if [[ $CARCH = i686 ]]; then
+#export CXXFLAGS+= -fPIE
+#  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/drumkv1.install
===
--- community-i686/drumkv1.install  2014-07-12 16:33:02 UTC (rev 115599)
+++ community-i686/drumkv1.install  2014-07-12 16:33:15 UTC (rev 115600)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
-  update-mime-database usr/share/mime
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: drumkv1/repos/community-i686/drumkv1.install (from rev 115599, 
drumkv1/trunk/drumkv1.install)
===
--- community-i686/drumkv1.install  (rev 0)
+++ community-i686/drumkv1.install  2014-07-12 16:33:15 UTC (rev 115600)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-12 16:33:02 UTC (rev 115599)
+++ community-x86_64/PKGBUILD   2014-07-12 16:33:15 UTC (rev 115600)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=drumkv1
-pkgver=0.4.2
-pkgrel=1
-pkgdesc=An old-school drum-kit sampler
-arch=(i686 x86_64)

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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 18:33:29
  Author: speps
Revision: 115601

upgpkg: samplv1 0.5.0-1

Modified:
  samplv1/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 16:33:15 UTC (rev 115600)
+++ PKGBUILD2014-07-12 16:33:29 UTC (rev 115601)
@@ -2,7 +2,7 @@
 # Maintainer: speps speps at aur dot archlinux dot org
 
 pkgname=samplv1
-pkgver=0.4.2
+pkgver=0.5.0
 pkgrel=1
 pkgdesc=Polyphonic sampler synthesizer with stereo fx
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
 install=$pkgname.install
 source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c2cc4f877403ac2bf35c4a95b09106af')
+md5sums=('3369bb598f445a240e5d9e48f7574635')
 
 prepare() {
   cd $pkgname-$pkgver


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


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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 18:43:14
  Author: kkeen
Revision: 115605

pkginit: hackrf-2014.04.1-1

Added:
  hackrf/
  hackrf/repos/
  hackrf/trunk/
  hackrf/trunk/PKGBUILD

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

Added: hackrf/trunk/PKGBUILD
===
--- hackrf/trunk/PKGBUILD   (rev 0)
+++ hackrf/trunk/PKGBUILD   2014-07-12 16:43:14 UTC (rev 115605)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=hackrf
+pkgver=2014.04.1
+pkgrel=1
+pkgdesc=Driver for HackRF, allowing general purpose software defined radio 
(SDR).
+arch=('i686' 'x86_64')
+url=https://github.com/mossmann/hackrf;
+license=('GPLv2')
+depends=('libusb')
+makedepends=('cmake')
+
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('bcdd6a9a99dfc5b1a277825d1be9e2ec')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver/host
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  pushd host/build
+  make DESTDIR=$pkgdir install
+  popd
+  pushd host/hackrf-tools
+  install -vD -m644 52-hackrf.rules 
$pkgdir/usr/lib/udev/rules.d/52-hackrf.rules
+  popd
+  pushd firmware-bin/hackrf-one
+  install -vD -m644 hackrf_usb_rom_to_ram.bin 
$pkgdir/usr/share/hackrf/hackrf_usb_rom_to_ram.bin
+}


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


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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 18:46:33
  Author: kkeen
Revision: 115607

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

Added:
  hackrf/repos/community-i686/
  hackrf/repos/community-i686/PKGBUILD
(from rev 115606, hackrf/trunk/PKGBUILD)
  hackrf/repos/community-x86_64/
  hackrf/repos/community-x86_64/PKGBUILD
(from rev 115606, hackrf/trunk/PKGBUILD)

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

Copied: hackrf/repos/community-i686/PKGBUILD (from rev 115606, 
hackrf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 16:46:33 UTC (rev 115607)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=hackrf
+pkgver=2014.04.1
+pkgrel=1
+pkgdesc=Driver for HackRF, allowing general purpose software defined radio 
(SDR).
+arch=('i686' 'x86_64')
+url=https://github.com/mossmann/hackrf;
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake')
+
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('bcdd6a9a99dfc5b1a277825d1be9e2ec')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver/host
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  pushd host/build
+  make DESTDIR=$pkgdir install
+  popd
+  pushd host/hackrf-tools
+  install -vD -m644 52-hackrf.rules 
$pkgdir/usr/lib/udev/rules.d/52-hackrf.rules
+  popd
+  pushd firmware-bin/hackrf-one
+  install -vD -m644 hackrf_usb_rom_to_ram.bin 
$pkgdir/usr/share/hackrf/hackrf_usb_rom_to_ram.bin
+}

Copied: hackrf/repos/community-x86_64/PKGBUILD (from rev 115606, 
hackrf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-12 16:46:33 UTC (rev 115607)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=hackrf
+pkgver=2014.04.1
+pkgrel=1
+pkgdesc=Driver for HackRF, allowing general purpose software defined radio 
(SDR).
+arch=('i686' 'x86_64')
+url=https://github.com/mossmann/hackrf;
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake')
+
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('bcdd6a9a99dfc5b1a277825d1be9e2ec')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver/host
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  pushd host/build
+  make DESTDIR=$pkgdir install
+  popd
+  pushd host/hackrf-tools
+  install -vD -m644 52-hackrf.rules 
$pkgdir/usr/lib/udev/rules.d/52-hackrf.rules
+  popd
+  pushd firmware-bin/hackrf-one
+  install -vD -m644 hackrf_usb_rom_to_ram.bin 
$pkgdir/usr/share/hackrf/hackrf_usb_rom_to_ram.bin
+}



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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 18:46:17
  Author: kkeen
Revision: 115606

upgpkg: hackrf 2014.04.1-1

Modified:
  hackrf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 16:43:14 UTC (rev 115605)
+++ PKGBUILD2014-07-12 16:46:17 UTC (rev 115606)
@@ -7,7 +7,7 @@
 pkgdesc=Driver for HackRF, allowing general purpose software defined radio 
(SDR).
 arch=('i686' 'x86_64')
 url=https://github.com/mossmann/hackrf;
-license=('GPLv2')
+license=('GPL2')
 depends=('libusb')
 makedepends=('cmake')
 



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

2014-07-12 Thread Andrzej Giniewicz
Date: Saturday, July 12, 2014 @ 18:57:24
  Author: aginiewicz
Revision: 115608

upgpkg: python-pandas 0.14.1-1

Update python-pandas to latest upstream release

Modified:
  python-pandas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 16:46:33 UTC (rev 115607)
+++ PKGBUILD2014-07-12 16:57:24 UTC (rev 115608)
@@ -4,8 +4,8 @@
 
 pkgbase=python-pandas
 pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.14.0
-pkgrel=2
+pkgver=0.14.1
+pkgrel=1
 pkgdesc=Cross-section and time series data analysis toolkit
 arch=('i686' 'x86_64')
 url=http://pandas.pydata.org/;
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python-dateutil' 'python-numpy' 'python-pytz'
  'python2-setuptools' 'python2-dateutil' 'python2-numpy' 
'python2-pytz')
 
source=(https://pypi.python.org/packages/source/p/pandas/pandas-${pkgver}.tar.gz;)
-md5sums=('b775987c0ceebcc8d5ace4a1241c967a')
+md5sums=('393dd8f35411e4022177aa64b2da46f4')
 
 build() {
   cd $srcdir



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

2014-07-12 Thread Andrzej Giniewicz
Date: Saturday, July 12, 2014 @ 18:57:51
  Author: aginiewicz
Revision: 115609

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

Added:
  python-pandas/repos/community-i686/PKGBUILD
(from rev 115608, python-pandas/trunk/PKGBUILD)
  python-pandas/repos/community-x86_64/PKGBUILD
(from rev 115608, python-pandas/trunk/PKGBUILD)
Deleted:
  python-pandas/repos/community-i686/PKGBUILD
  python-pandas/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 16:57:24 UTC (rev 115608)
+++ community-i686/PKGBUILD 2014-07-12 16:57:51 UTC (rev 115609)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Keith Hughitt khugh...@umd.edu
-
-pkgbase=python-pandas
-pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.14.0
-pkgrel=2
-pkgdesc=Cross-section and time series data analysis toolkit
-arch=('i686' 'x86_64')
-url=http://pandas.pydata.org/;
-license=('BSD')
-makedepends=('python-setuptools' 'python-dateutil' 'python-numpy' 'python-pytz'
- 'python2-setuptools' 'python2-dateutil' 'python2-numpy' 
'python2-pytz')
-source=(https://pypi.python.org/packages/source/p/pandas/pandas-${pkgver}.tar.gz;)
-md5sums=('b775987c0ceebcc8d5ace4a1241c967a')
-
-build() {
-  cd $srcdir
-  cp -a pandas-${pkgver} pandas-py2-${pkgver}
-
-  msg Building Python2
-  cd $srcdir/pandas-py2-${pkgver}
-  python2 setup.py build_ext --inplace
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/pandas-${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package_python2-pandas() {
-  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz')
-  optdepends=('python2-numexpr: needed for accelerating certain numerical 
operations (recommended)'
-  'python2-bottleneck: needed for accelerating certain types of 
nan evaluations (recommended)'
-  'python2-scipy: needed for miscellaneous statistical functions'
-  'python2-pytables: needed for HDF5-based storage'
-  'python2-sqlalchemy: needed for SQL database support'
-  'python2-matplotlib: needed for plotting'
-  'python2-statsmodels: needed for parts of pandas.stats'
-  'python2-openpyxl1: needed for Excel XLSX input/output'
-  'python2-xlsxwriter: alternative Excel XLSX output'
-  'python2-xlrd: needed for Excel XLS input'
-  'python2-xlwt: needed for Excel XLS output'
-  'python2-boto: needed for access to Amazon S3 storage'
-  'python2-beautifulsoup4: needed for read_html function'
-  'python2-lxml: needed for read_html function (and/or 
python2-html5lib)'
-  'python2-html5lib: needed for read_hmlt function (and/or 
python2-lxml)'
-  'xsel: needed for read_clipboard function (or xclip)'
-  'xclip: needed for read_clipboard function (or xsel)')
-
-  cd $srcdir/pandas-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| $(find ${pkgdir} 
-name '*.py')
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-pandas() {
-  depends=('python-numpy' 'python-dateutil' 'python-pytz')
-  optdepends=('python-numexpr: needed for accelerating certain numerical 
operations (recommended)'
-  'python-bottleneck: needed for accelerating certain types of nan 
evaluations (recommended)'
-  'python-scipy: needed for miscellaneous statistical functions'
-  'python-pytables: needed for HDF5-based storage'
-  'python-sqlalchemy: needed for SQL database support'
-  'python-matplotlib: needed for plotting'
-  'python-statsmodels: needed for parts of pandas.stats'
-  'python-openpyxl1: needed for Excel XLSX input/output'
-  'python-xlsxwriter: alternative Excel XLSX output'
-  'python-xlrd: needed for Excel XLS input'
-  'python-beautifulsoup4: needed for read_html function'
-  'python-lxml: needed for read_html function (and/or 
python-html5lib)'
-  'python-html5lib: needed for read_hmlt function (and/or 
python-lxml)'
-  'xsel: needed for read_clipboard function (or xclip)'
-  'xclip: needed for read_clipboard function (or xsel)')
-
-  cd $srcdir/pandas-${pkgver}
-
-  python setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  install 

[arch-commits] Commit in (5 files)

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 19:15:18
  Author: kkeen
Revision: 115610

pkginit gnuradio-iqbal-0.37.1-2

Added:
  gnuradio-iqbal/
  gnuradio-iqbal/repos/
  gnuradio-iqbal/trunk/
  gnuradio-iqbal/trunk/PKGBUILD
  gnuradio-iqbal/trunk/float-complex.patch

-+
 PKGBUILD|   41 +
 float-complex.patch |   22 ++
 2 files changed, 63 insertions(+)

Added: gnuradio-iqbal/trunk/PKGBUILD
===
--- gnuradio-iqbal/trunk/PKGBUILD   (rev 0)
+++ gnuradio-iqbal/trunk/PKGBUILD   2014-07-12 17:15:18 UTC (rev 115610)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-iqbal
+_pkgname=gr-iqbal
+pkgver=0.37.1
+pkgrel=2
+pkgdesc=gnuradio I/Q balancing
+arch=('i686' 'x86_64')
+url=http://cgit.osmocom.org/gr-iqbal/;
+license=('GPL')
+depends=('gnuradio')
+replaces=('gr-iqbal')
+makedepends=('git' 'cmake' 'boost' 'swig')
+source=(git://git.osmocom.org/gr-iqbal/#tag=v$pkgver
+float-complex.patch)
+md5sums=('SKIP'
+ '6417f4c064b44e8875fbb783c3a2c308')
+
+build() {
+  cd $srcdir/$_pkgname
+  git submodule init
+  git submodule update
+  # patch is already in git, only applies to 0.37.1
+  patch -p1 -i $srcdir/float-complex.patch
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+}


Property changes on: gnuradio-iqbal/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnuradio-iqbal/trunk/float-complex.patch
===
--- gnuradio-iqbal/trunk/float-complex.patch(rev 0)
+++ gnuradio-iqbal/trunk/float-complex.patch2014-07-12 17:15:18 UTC (rev 
115610)
@@ -0,0 +1,22 @@
+diff --git a/lib/optimize_c.cc b/lib/optimize_c.cc
+index 318a996..2cad998 100644
+--- a/lib/optimize_c.cc
 b/lib/optimize_c.cc
+@@ -25,6 +25,17 @@
+ #include gnuradio/io_signature.h
+ #include gnuradio/iqbalance/optimize_c.h
+ 
++#define GCC_VERSION ( \
++  __GNUC__ * 1 +  \
++  __GNUC_MINOR__ * 100 +  \
++  __GNUC_PATCHLEVEL__ \
++   )
++
++#if GCC_VERSION = 40800
++# define complex _Complex
++# undef _GLIBCXX_HAVE_COMPLEX_H
++#endif
++
+ extern C {
+ #include osmocom/dsp/cxvec.h
+ #include osmocom/dsp/iqbal.h



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

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:32:05
  Author: fyan
Revision: 115612

upgpkg: lib32-lcms 1.19-5

mtree rebuild

Modified:
  lib32-lcms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:17:29 UTC (rev 115611)
+++ PKGBUILD2014-07-12 17:32:05 UTC (rev 115612)
@@ -5,7 +5,7 @@
 _pkgbasename=lcms
 pkgname=lib32-$_pkgbasename
 pkgver=1.19
-pkgrel=4
+pkgrel=5
 pkgdesc=Lightweight color management development library/engine (32-bit)
 arch=(x86_64)
 license=('custom')



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

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:33:50
  Author: fyan
Revision: 115614

upgpkg: lib32-libxdmcp 1.1.1-2

mtree rebuild

Modified:
  lib32-libxdmcp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:32:24 UTC (rev 115613)
+++ PKGBUILD2014-07-12 17:33:50 UTC (rev 115614)
@@ -4,7 +4,7 @@
 _pkgbasename=libxdmcp
 pkgname=lib32-$_pkgbasename
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc=X11 Display Manager Control Protocol library (32-bit)
 arch=(x86_64)
 url=http://xorg.freedesktop.org/;



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

2014-07-12 Thread Laurent Carlier
Date: Saturday, July 12, 2014 @ 19:35:09
  Author: lcarlier
Revision: 216839

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

Added:
  libxcb/repos/staging-i686/
  
libxcb/repos/staging-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
(from rev 216838, 
libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
  
libxcb/repos/staging-i686/Force-XCB-event-structures-with-64-bit-extended-fiel.patch
(from rev 216838, 
libxcb/trunk/Force-XCB-event-structures-with-64-bit-extended-fiel.patch)
  libxcb/repos/staging-i686/PKGBUILD
(from rev 216838, libxcb/trunk/PKGBUILD)
  libxcb/repos/staging-i686/libxcb-1.1-no-pthread-stubs.patch
(from rev 216838, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)
  libxcb/repos/staging-x86_64/
  
libxcb/repos/staging-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
(from rev 216838, 
libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
  
libxcb/repos/staging-x86_64/Force-XCB-event-structures-with-64-bit-extended-fiel.patch
(from rev 216838, 
libxcb/trunk/Force-XCB-event-structures-with-64-bit-extended-fiel.patch)
  libxcb/repos/staging-x86_64/PKGBUILD
(from rev 216838, libxcb/trunk/PKGBUILD)
  libxcb/repos/staging-x86_64/libxcb-1.1-no-pthread-stubs.patch
(from rev 216838, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)

---+
 staging-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch   |  
121 ++
 staging-i686/Force-XCB-event-structures-with-64-bit-extended-fiel.patch   |  
102 
 staging-i686/PKGBUILD |   
54 
 staging-i686/libxcb-1.1-no-pthread-stubs.patch|   
11 
 staging-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch |  
121 ++
 staging-x86_64/Force-XCB-event-structures-with-64-bit-extended-fiel.patch |  
102 
 staging-x86_64/PKGBUILD   |   
54 
 staging-x86_64/libxcb-1.1-no-pthread-stubs.patch  |   
11 
 8 files changed, 576 insertions(+)

Copied: 
libxcb/repos/staging-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
 (from rev 216838, 
libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
===
--- staging-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch 
(rev 0)
+++ staging-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch 
2014-07-12 17:35:09 UTC (rev 216839)
@@ -0,0 +1,121 @@
+From be0fe56c3bcad5124dcc6c47a2fad01acd16f71a Mon Sep 17 00:00:00 2001
+From: Keith Packard kei...@keithp.com
+Date: Mon, 23 Dec 2013 21:15:20 -0800
+Subject: [PATCH] Ensure xcb owns socket and no other threads are writing
+ before send_request
+
+send_request may only write to out.queue if no other thread is busy
+writing to the network (as that thread may be writing from out.queue).
+
+send_request may only allocate request sequence numbers if XCB owns
+the socket.
+
+Therefore, send_request must make sure that both conditions are true
+when it holds iolock, which can only be done by looping until both
+conditions are true without having dropped the lock waiting for the
+second condition.
+
+We choose to get the socket back from Xlib first as get_socket_back
+has a complicated test and checking for other threads writing is a
+simple in-lined check.
+
+This also changes the sequence number checks (64k requests with no
+reply, 4M request wrapping) to ensure that both conditions are true
+before queueing the request.
+
+Signed-off-by: Keith Packard kei...@keithp.com
+Reviewed-by: Uli Schlachter psyc...@znc.in
+---
+ src/xcb_out.c | 57 -
+ 1 file changed, 40 insertions(+), 17 deletions(-)
+
+diff --git a/src/xcb_out.c b/src/xcb_out.c
+index 18bb5f9..dc42954 100644
+--- a/src/xcb_out.c
 b/src/xcb_out.c
+@@ -103,6 +103,33 @@ static void get_socket_back(xcb_connection_t *c)
+ _xcb_in_replies_done(c);
+ }
+ 
++static void prepare_socket_request(xcb_connection_t *c)
++{
++/* We're about to append data to out.queue, so we need to
++ * atomically test for an external socket owner *and* some other
++ * thread currently writing.
++ *
++ * If we have an external socket owner, we have to get the socket back
++ * before we can use it again.
++ *
++ * If some other thread is writing to the socket, we assume it's
++ * writing from out.queue, and so we can't stick data there.
++ *
++ * We satisfy this condition by first calling get_socket_back
++ * (which may drop the lock, but will return when XCB owns the
++ * socket again) and then checking for another writing thread and
++ * escaping the loop if we're ready to go.
++ */
++for (;;) 

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

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:40:04
  Author: fyan
Revision: 115618

upgpkg: lib32-ncurses 5.9-3

mtree rebuild

Modified:
  lib32-ncurses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:35:46 UTC (rev 115617)
+++ PKGBUILD2014-07-12 17:40:04 UTC (rev 115618)
@@ -5,7 +5,7 @@
 _pkgbasename=ncurses
 pkgname=lib32-${_pkgbasename}
 pkgver=5.9
-pkgrel=2
+pkgrel=3
 pkgdesc=System V Release 4.0 curses emulation library (32-bit)
 arch=('x86_64')
 url=http://www.gnu.org/software/ncurses/;



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

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:35:28
  Author: fyan
Revision: 115616

upgpkg: lib32-libxss 1.2.2-2

mtree rebuild

Modified:
  lib32-libxss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:34:08 UTC (rev 115615)
+++ PKGBUILD2014-07-12 17:35:28 UTC (rev 115616)
@@ -6,7 +6,7 @@
 _pkgbasename=libxss
 pkgname=lib32-$_pkgbasename
 pkgver=1.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc=X11 Screen Saver extension library (32-bit)
 arch=(x86_64)
 license=('custom')



[arch-commits] Commit in lib32-ncurses/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:40:22
  Author: fyan
Revision: 115619

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-ncurses/repos/multilib-x86_64/PKGBUILD
(from rev 115618, lib32-ncurses/trunk/PKGBUILD)
Deleted:
  lib32-ncurses/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  146 ++---
 1 file changed, 74 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:40:04 UTC (rev 115618)
+++ PKGBUILD2014-07-12 17:40:22 UTC (rev 115619)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-_pkgbasename=ncurses
-pkgname=lib32-${_pkgbasename}
-pkgver=5.9
-pkgrel=2
-pkgdesc=System V Release 4.0 curses emulation library (32-bit)
-arch=('x86_64')
-url=http://www.gnu.org/software/ncurses/;
-license=('MIT')
-depends=('lib32-glibc' ${_pkgbasename})
-makedepends=(gcc-multilib)
-source=(ftp://ftp.gnu.org/pub/gnu/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/
-  mkdir ncurses{,w}-build
-
-  cd ${srcdir}/ncursesw-build
-  ../${_pkgbasename}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man 
\
- --with-shared --with-normal --without-debug --without-ada \
- --with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32
-  make
-
-  # libraries for external binary support
-  cd ${srcdir}/ncurses-build
-#  [ $CARCH = x86_64 ]  CONFIGFLAG=--with-chtype=long
-  ../${_pkgbasename}-${pkgver}/configure --prefix=/usr \
---with-shared --with-normal --without-debug --without-ada \
---with-install-prefix=${pkgdir} $CONFIGFLAG --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/ncursesw-build
-  make install
-
-  install -dm755 ${pkgdir}/usr/lib32
-
-  # fool packages looking to link to non-wide-character ncurses libraries
-  for lib in curses ncurses form panel menu; do
-rm -f ${pkgdir}/usr/lib32/lib${lib}.so
-echo INPUT(-l${lib}w) ${pkgdir}/usr/lib32/lib${lib}.so
-ln -sf lib${lib}w.a ${pkgdir}/usr/lib32/lib${lib}.a
-  done
-  ln -sf libncurses++w.a ${pkgdir}/usr/lib32/libncurses++.a
-
-  # some packages look for -lcurses during build
-  rm -f ${pkgdir}/usr/lib32/libcursesw.so
-  echo INPUT(-lncursesw) ${pkgdir}/usr/lib32/libcursesw.so
-  ln -sf libncurses.so ${pkgdir}/usr/lib32/libcurses.so
-  ln -sf libncursesw.a ${pkgdir}/usr/lib32/libcursesw.a
-  ln -sf libncurses.a ${pkgdir}/usr/lib32/libcurses.a
-
-  # non-widec compatibility libraries
-  cd ${srcdir}/ncurses-build
-  for lib in ncurses form panel menu; do
-install -Dm755 lib/lib${lib}.so.${pkgver} 
${pkgdir}/usr/lib32/lib${lib}.so.${pkgver}
-ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.5
-  done
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-}
-
-# vim: set et ts=2 sw=2:

Copied: lib32-ncurses/repos/multilib-x86_64/PKGBUILD (from rev 115618, 
lib32-ncurses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:40:22 UTC (rev 115619)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+_pkgbasename=ncurses
+pkgname=lib32-${_pkgbasename}
+pkgver=5.9
+pkgrel=3
+pkgdesc=System V Release 4.0 curses emulation library (32-bit)
+arch=('x86_64')
+url=http://www.gnu.org/software/ncurses/;
+license=('MIT')
+depends=('lib32-glibc' ${_pkgbasename})
+makedepends=(gcc-multilib)
+source=(ftp://ftp.gnu.org/pub/gnu/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
+md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/
+  mkdir ncurses{,w}-build
+
+  cd ${srcdir}/ncursesw-build
+  ../${_pkgbasename}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man 
\
+ --with-shared --with-normal --without-debug --without-ada \
+ --with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32
+  make
+
+  # libraries for external binary support
+  cd ${srcdir}/ncurses-build
+#  [ $CARCH = x86_64 ]  CONFIGFLAG=--with-chtype=long
+  ../${_pkgbasename}-${pkgver}/configure --prefix=/usr \
+--with-shared --with-normal --without-debug --without-ada \
+--with-install-prefix=${pkgdir} $CONFIGFLAG --libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/ncursesw-build
+  make install
+
+  install -dm755 ${pkgdir}/usr/lib32
+
+  # fool packages looking to link to non-wide-character ncurses libraries
+  for lib in curses ncurses form panel menu; do
+rm -f ${pkgdir}/usr/lib32/lib${lib}.so
+echo INPUT(-l${lib}w) ${pkgdir}/usr/lib32/lib${lib}.so
+ln -sf lib${lib}w.a ${pkgdir}/usr/lib32/lib${lib}.a
+  done
+  ln -sf 

[arch-commits] Commit in nspluginwrapper/trunk (PKGBUILD fix_missing_lib.patch)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:41:00
  Author: fyan
Revision: 115620

upgpkg: nspluginwrapper 1.4.4-3

mtree rebuild

Modified:
  nspluginwrapper/trunk/PKGBUILD
  nspluginwrapper/trunk/fix_missing_lib.patch

---+
 PKGBUILD  |6 +++---
 fix_missing_lib.patch |   15 ---
 2 files changed, 15 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:40:22 UTC (rev 115619)
+++ PKGBUILD2014-07-12 17:41:00 UTC (rev 115620)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Bächler tho...@archlinux.org
 pkgname=nspluginwrapper
 pkgver=1.4.4
-pkgrel=2.1
+pkgrel=3
 pkgdesc=Cross-platform NPAPI compatible plugin viewer
 arch=('i686' 'x86_64')
 url=http://nspluginwrapper.davidben.net/;
@@ -18,7 +18,7 @@
 source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz
 'fix_missing_lib.patch')
 md5sums=('36f3e290fc4ce56f65ee695078961188'
- 'd40ad2f55d9989e04e3ef0cf4326b1df')
+ '00ca2d1ab0d7348e3157cb7b72f30e1a')
 
 if [[ $CARCH == i686 ]]; then
   # Strip lib32 etc. on i686
@@ -31,7 +31,7 @@
 build() {
   cd $srcdir/$pkgname-$pkgver
 
-  patch -p0 -i $srcdir/fix_missing_lib.patch
+  patch -p1 -i $srcdir/fix_missing_lib.patch
 
   configure_args=
   if [[ $CARCH == x86_64 ]]; then

Modified: fix_missing_lib.patch
===
--- fix_missing_lib.patch   2014-07-12 17:40:22 UTC (rev 115619)
+++ fix_missing_lib.patch   2014-07-12 17:41:00 UTC (rev 115620)
@@ -1,11 +1,20 @@
 Makefile   2012-01-15 13:25:28.922775770 +0100
-+++ Makefile.new   2012-01-15 13:25:09.185815643 +0100
+--- a/Makefile 2011-07-01 11:18:57.0 +0800
 b/Makefile 2014-07-13 01:21:41.887559397 +0800
+@@ -128,7 +128,7 @@
+ ifeq ($(TARGET_OS):$(TARGET_ARCH),linux:i386)
+ npviewer_SOURCES += $(SRC_PATH)/src/cxxabi-compat.cpp
+ npviewer_OBJECTS += npviewer-cxxabi-compat.o
+-npviewer_LIBS+= -lsupc++
++npviewer_LIBS+= -lsupc++ -lgthread-2.0
+ endif
+ ifeq ($(TARGET_OS):$(TARGET_ARCH),solaris:i386)
+ npviewer_LIBS+= $(libsocket_LIBS)
 @@ -142,7 +142,7 @@
  npplayer_LDFLAGS  = $(LDFLAGS)
  npplayer_LDFLAGS += $(libpthread_LDFLAGS)
  npplayer_LIBS = $(GTK_LIBS) $(GLIB_LIBS) $(CURL_LIBS) $(X_LIBS)
 -npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS)
-+npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS) -ldl
++npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS) -ldl -lgthread-2.0
  
  libnoxshm_LIBRARY = libnoxshm.so
  libnoxshm_RAWSRCS = libnoxshm.c



[arch-commits] Commit in lib32-libxdmcp/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:34:08
  Author: fyan
Revision: 115615

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libxdmcp/repos/multilib-x86_64/PKGBUILD
(from rev 115614, lib32-libxdmcp/trunk/PKGBUILD)
Deleted:
  lib32-libxdmcp/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:33:50 UTC (rev 115614)
+++ PKGBUILD2014-07-12 17:34:08 UTC (rev 115615)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Jan de Groot j...@archlinux.org
-
-_pkgbasename=libxdmcp
-pkgname=lib32-$_pkgbasename
-pkgver=1.1.1
-pkgrel=1
-pkgdesc=X11 Display Manager Control Protocol library (32-bit)
-arch=(x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('lib32-glibc' $_pkgbasename)
-makedepends=('xorg-util-macros' 'gcc-multilib')
-options=('!libtool')
-source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2)
-sha1sums=('3b63e8fc1600c51d9897d017da190fc6c16245b6')
-
-build() {
-  cd ${srcdir}/libXdmcp-${pkgver}
-
-  export CC=gcc -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
-  --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/libXdmcp-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share}
-
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname 
-}

Copied: lib32-libxdmcp/repos/multilib-x86_64/PKGBUILD (from rev 115614, 
lib32-libxdmcp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:34:08 UTC (rev 115615)
@@ -0,0 +1,38 @@
+# $Id$
+# Contributor: Jan de Groot j...@archlinux.org
+
+_pkgbasename=libxdmcp
+pkgname=lib32-$_pkgbasename
+pkgver=1.1.1
+pkgrel=2
+pkgdesc=X11 Display Manager Control Protocol library (32-bit)
+arch=(x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('lib32-glibc' $_pkgbasename)
+makedepends=('xorg-util-macros' 'gcc-multilib')
+options=('!libtool')
+source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2)
+sha1sums=('3b63e8fc1600c51d9897d017da190fc6c16245b6')
+
+build() {
+  cd ${srcdir}/libXdmcp-${pkgver}
+
+  export CC=gcc -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+  --libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/libXdmcp-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share}
+
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname 
+}



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

2014-07-12 Thread Laurent Carlier
Date: Saturday, July 12, 2014 @ 19:34:52
  Author: lcarlier
Revision: 216838

upgpkg: libxcb 1.10-3

Fix Present support (FS#41172)

Added:
  libxcb/trunk/Force-XCB-event-structures-with-64-bit-extended-fiel.patch
Modified:
  libxcb/trunk/PKGBUILD

+
 Force-XCB-event-structures-with-64-bit-extended-fiel.patch |  102 +++
 PKGBUILD   |   12 -
 2 files changed, 110 insertions(+), 4 deletions(-)

Added: Force-XCB-event-structures-with-64-bit-extended-fiel.patch
===
--- Force-XCB-event-structures-with-64-bit-extended-fiel.patch  
(rev 0)
+++ Force-XCB-event-structures-with-64-bit-extended-fiel.patch  2014-07-12 
17:34:52 UTC (rev 216838)
@@ -0,0 +1,102 @@
+From 3b72a2c9d1d656c74c691a45689e1d637f669e3a Mon Sep 17 00:00:00 2001
+From: Kenneth Graunke kenn...@whitecape.org
+Date: Fri, 03 Jan 2014 23:08:33 +
+Subject: Force XCB event structures with 64-bit extended fields to be packed.
+
+With the advent of the Present extension, some events (such as
+PresentCompleteNotify) now use native 64-bit types on the wire.
+
+For XGE events, we insert an extra uint32_t full_sequence field
+immediately after the first 32 bytes of data.  Normally, this causes
+the subsequent fields to be shifted over by 4 bytes, and the structure
+to grow in size by 4 bytes.  Everything works fine.
+
+However, if event contains 64-bit extended fields, this may result in
+the compiler adding an extra 4 bytes of padding so that those fields
+remain aligned on 64-bit boundaries.  This causes the structure to grow
+by 8 bytes, not 4.  Unfortunately, XCB doesn't realize this, and
+always believes that the length only increased by 4.  read_packet()
+then fails to malloc enough memory to hold the event, and the event
+processing code uses the wrong offsets.
+
+To fix this, mark any event structures containing 64-bit extended
+fields with __attribute__((__packed__)).
+
+v2: Use any(...) instead of True in (...), as suggested by
+Daniel Martin.
+
+v3 (Alan Coopersmith): Fix build with Solaris Studio 12.3 by moving the
+attribute to after the structure definition.
+
+Signed-off-by: Kenneth Graunke kenn...@whitecape.org
+Reviewed-by: Keith Packard kei...@keithp.com [v1]
+Reviewed-by: Josh Triplett j...@joshtriplett.org [v1]
+Reviewed-by: Daniel Martin consume.no...@gmail.com
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+---
+diff --git a/src/c_client.py b/src/c_client.py
+index 99fd307..45de544 100644
+--- a/src/c_client.py
 b/src/c_client.py
+@@ -1762,7 +1762,7 @@ def c_simple(self, name):
+ # Iterator
+ _c_iterator(self, name)
+ 
+-def _c_complex(self):
++def _c_complex(self, force_packed = False):
+ '''
+ Helper function for handling all structure types.
+ Called for all structs, requests, replies, events, errors.
+@@ -1817,7 +1817,7 @@ def _c_complex(self):
+ if b.type.has_name:
+ _h('} %s;', b.c_field_name)
+ 
+-_h('} %s;', self.c_type)
++_h('} %s%s;', 'XCB_PACKED ' if force_packed else '', self.c_type)
+ 
+ def c_struct(self, name):
+ '''
+@@ -2902,6 +2902,7 @@ def c_event(self, name):
+ # events while generating the structure for them. Otherwise we would read
+ # garbage (the internal full_sequence) when accessing normal event fields
+ # there.
++force_packed = False
+ if hasattr(self, 'is_ge_event') and self.is_ge_event and self.name == 
name:
+ event_size = 0
+ for field in self.fields:
+@@ -2911,6 +2912,11 @@ def c_event(self, name):
+ full_sequence = Field(tcard32, tcard32.name, 'full_sequence', 
False, True, True)
+ idx = self.fields.index(field)
+ self.fields.insert(idx + 1, full_sequence)
++
++# If the event contains any 64-bit extended fields, they need
++# to remain aligned on a 64-bit boundary.  Adding 
full_sequence
++# would normally break that; force the struct to be packed.
++force_packed = any(f.type.size == 8 and f.type.is_simple for 
f in self.fields[(idx+1):])
+ break
+ 
+ _c_type_setup(self, name, ('event',))
+@@ -2920,7 +2926,7 @@ def c_event(self, name):
+ 
+ if self.name == name:
+ # Structure definition
+-_c_complex(self)
++_c_complex(self, force_packed)
+ else:
+ # Typedef
+ _h('')
+diff --git a/src/xcb.h b/src/xcb.h
+index e62c985..73c77a3 100644
+--- a/src/xcb.h
 b/src/xcb.h
+@@ -51,6 +51,8 @@ extern C {
+  * @file xcb.h
+  */
+ 
++#define XCB_PACKED __attribute__((__packed__))
++
+ /**
+  * @defgroup XCB_Core_API XCB Core API
+  * @brief Core API of the XCB library.
+--
+cgit v0.9.0.2-2-gbebe

Modified: PKGBUILD
===
--- PKGBUILD

[arch-commits] Commit in nspluginwrapper/repos/multilib-x86_64 (6 files)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:41:22
  Author: fyan
Revision: 115621

archrelease: copy trunk to multilib-x86_64

Added:
  nspluginwrapper/repos/multilib-x86_64/PKGBUILD
(from rev 115620, nspluginwrapper/trunk/PKGBUILD)
  nspluginwrapper/repos/multilib-x86_64/fix_missing_lib.patch
(from rev 115620, nspluginwrapper/trunk/fix_missing_lib.patch)
  nspluginwrapper/repos/multilib-x86_64/install
(from rev 115620, nspluginwrapper/trunk/install)
Deleted:
  nspluginwrapper/repos/multilib-x86_64/PKGBUILD
  nspluginwrapper/repos/multilib-x86_64/fix_missing_lib.patch
  nspluginwrapper/repos/multilib-x86_64/install

---+
 PKGBUILD  |  102 
 fix_missing_lib.patch |   31 +-
 install   |   10 ++--
 3 files changed, 76 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:41:00 UTC (rev 115620)
+++ PKGBUILD2014-07-12 17:41:22 UTC (rev 115621)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-pkgname=nspluginwrapper
-pkgver=1.4.4
-pkgrel=2.1
-pkgdesc=Cross-platform NPAPI compatible plugin viewer
-arch=('i686' 'x86_64')
-url=http://nspluginwrapper.davidben.net/;
-license=('GPL')
-depends=(
-  'curl'
-  'libxt' 'lib32-libxt'
-  'gcc-libs' 'lib32-gcc-libs'
-  'gtk2' 'lib32-gtk2'
-)
-makedepends=('gcc-multilib')
-install=install
-source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz
-'fix_missing_lib.patch')
-md5sums=('36f3e290fc4ce56f65ee695078961188'
- 'd40ad2f55d9989e04e3ef0cf4326b1df')
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  depends=(${depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-fi
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -p0 -i $srcdir/fix_missing_lib.patch
-
-  configure_args=
-  if [[ $CARCH == x86_64 ]]; then
-configure_args=$configure_args --with-lib32=lib32 --with-lib64=lib
-  fi
-
-  ./configure $configure_args
-  make -j1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make -j1 DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nspluginwrapper/repos/multilib-x86_64/PKGBUILD (from rev 115620, 
nspluginwrapper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:41:22 UTC (rev 115621)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+pkgname=nspluginwrapper
+pkgver=1.4.4
+pkgrel=3
+pkgdesc=Cross-platform NPAPI compatible plugin viewer
+arch=('i686' 'x86_64')
+url=http://nspluginwrapper.davidben.net/;
+license=('GPL')
+depends=(
+  'curl'
+  'libxt' 'lib32-libxt'
+  'gcc-libs' 'lib32-gcc-libs'
+  'gtk2' 'lib32-gtk2'
+)
+makedepends=('gcc-multilib')
+install=install
+source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz
+'fix_missing_lib.patch')
+md5sums=('36f3e290fc4ce56f65ee695078961188'
+ '00ca2d1ab0d7348e3157cb7b72f30e1a')
+
+if [[ $CARCH == i686 ]]; then
+  # Strip lib32 etc. on i686
+  depends=(${depends[@]/*32-*/})
+  makedepends=(${makedepends[@]/*32-*/})
+  makedepends=(${makedepends[@]/*-multilib*/})
+  optdepends=(${optdepends[@]/*32-*/})
+fi
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p1 -i $srcdir/fix_missing_lib.patch
+
+  configure_args=
+  if [[ $CARCH == x86_64 ]]; then
+configure_args=$configure_args --with-lib32=lib32 --with-lib64=lib
+  fi
+
+  ./configure $configure_args
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make -j1 DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix_missing_lib.patch
===
--- fix_missing_lib.patch   2014-07-12 17:41:00 UTC (rev 115620)
+++ fix_missing_lib.patch   2014-07-12 17:41:22 UTC (rev 115621)
@@ -1,11 +0,0 @@
 Makefile   2012-01-15 13:25:28.922775770 +0100
-+++ Makefile.new   2012-01-15 13:25:09.185815643 +0100
-@@ -142,7 +142,7 @@
- npplayer_LDFLAGS  = $(LDFLAGS)
- npplayer_LDFLAGS += $(libpthread_LDFLAGS)
- npplayer_LIBS = $(GTK_LIBS) $(GLIB_LIBS) $(CURL_LIBS) $(X_LIBS)
--npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS)
-+npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS) -ldl
- 
- libnoxshm_LIBRARY = libnoxshm.so
- libnoxshm_RAWSRCS = libnoxshm.c

Copied: nspluginwrapper/repos/multilib-x86_64/fix_missing_lib.patch (from rev 
115620, nspluginwrapper/trunk/fix_missing_lib.patch)
===
--- fix_missing_lib.patch   (rev 0)
+++ fix_missing_lib.patch   2014-07-12 17:41:22 UTC (rev 115621)
@@ -0,0 +1,20 @@
+--- a/Makefile 2011-07-01 11:18:57.0 +0800
 b/Makefile 2014-07-13 01:21:41.887559397 +0800

[arch-commits] Commit in lib32-lcms/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:32:24
  Author: fyan
Revision: 115613

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-lcms/repos/multilib-x86_64/PKGBUILD
(from rev 115612, lib32-lcms/trunk/PKGBUILD)
Deleted:
  lib32-lcms/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:32:05 UTC (rev 115612)
+++ PKGBUILD2014-07-12 17:32:24 UTC (rev 115613)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich n...@archlinux.org
-# Contributor: Ben contrasu...@myrealbox.com
-
-_pkgbasename=lcms
-pkgname=lib32-$_pkgbasename
-pkgver=1.19
-pkgrel=4
-pkgdesc=Lightweight color management development library/engine (32-bit)
-arch=(x86_64)
-license=('custom')
-depends=('lib32-libtiff=3.9.4' $_pkgbasename)
-makedepends=(gcc-multilib)
-url=http://www.littlecms.com;
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('8af94611baf20d9646c7c2c285859818')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-lcms/repos/multilib-x86_64/PKGBUILD (from rev 115612, 
lib32-lcms/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:32:24 UTC (rev 115613)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Tobias Kieslich n...@archlinux.org
+# Contributor: Ben contrasu...@myrealbox.com
+
+_pkgbasename=lcms
+pkgname=lib32-$_pkgbasename
+pkgver=1.19
+pkgrel=5
+pkgdesc=Lightweight color management development library/engine (32-bit)
+arch=(x86_64)
+license=('custom')
+depends=('lib32-libtiff=3.9.4' $_pkgbasename)
+makedepends=(gcc-multilib)
+url=http://www.littlecms.com;
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
+md5sums=('8af94611baf20d9646c7c2c285859818')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in lib32-libxss/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:35:46
  Author: fyan
Revision: 115617

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libxss/repos/multilib-x86_64/PKGBUILD
(from rev 115616, lib32-libxss/trunk/PKGBUILD)
Deleted:
  lib32-libxss/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:35:28 UTC (rev 115616)
+++ PKGBUILD2014-07-12 17:35:46 UTC (rev 115617)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xssn.at
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-
-_pkgbasename=libxss
-pkgname=lib32-$_pkgbasename
-pkgver=1.2.2
-pkgrel=1
-pkgdesc=X11 Screen Saver extension library (32-bit)
-arch=(x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('lib32-libxext' $_pkgbasename)
-makedepends=('xorg-util-macros' gcc-multilib)
-options=('!libtool')
-source=(${url}/releases/individual/lib/libXScrnSaver-${pkgver}.tar.bz2)
-sha1sums=('7b8298eec371c33a71232e3653370a98f03c6c88')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/libXScrnSaver-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/libXScrnSaver-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-libxss/repos/multilib-x86_64/PKGBUILD (from rev 115616, 
lib32-libxss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:35:46 UTC (rev 115617)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xssn.at
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+_pkgbasename=libxss
+pkgname=lib32-$_pkgbasename
+pkgver=1.2.2
+pkgrel=2
+pkgdesc=X11 Screen Saver extension library (32-bit)
+arch=(x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('lib32-libxext' $_pkgbasename)
+makedepends=('xorg-util-macros' gcc-multilib)
+options=('!libtool')
+source=(${url}/releases/individual/lib/libXScrnSaver-${pkgver}.tar.bz2)
+sha1sums=('7b8298eec371c33a71232e3653370a98f03c6c88')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/libXScrnSaver-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/libXScrnSaver-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in lib32-xcb-util/trunk (PKGBUILD)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:43:01
  Author: fyan
Revision: 115622

upgpkg: lib32-xcb-util 0.3.9-2

mtree rebuild

Modified:
  lib32-xcb-util/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:41:22 UTC (rev 115621)
+++ PKGBUILD2014-07-12 17:43:01 UTC (rev 115622)
@@ -4,7 +4,7 @@
 _pkgbasename=xcb-util
 pkgname=lib32-xcb-util
 pkgver=0.3.9
-pkgrel=1
+pkgrel=2
 pkgdesc=Utility libraries for XC Binding (32-bit)
 arch=('x86_64')
 url=http://xcb.freedesktop.org;



[arch-commits] Commit in nspluginwrapper/repos/community-i686 (5 files)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:43:44
  Author: fyan
Revision: 115624

archrelease: copy trunk to community-i686

Added:
  nspluginwrapper/repos/community-i686/PKGBUILD
(from rev 115623, nspluginwrapper/trunk/PKGBUILD)
  nspluginwrapper/repos/community-i686/fix_missing_lib.patch
(from rev 115623, nspluginwrapper/trunk/fix_missing_lib.patch)
  nspluginwrapper/repos/community-i686/install
(from rev 115623, nspluginwrapper/trunk/install)
Deleted:
  nspluginwrapper/repos/community-i686/PKGBUILD
  nspluginwrapper/repos/community-i686/install

---+
 PKGBUILD  |   98 
 fix_missing_lib.patch |   20 +
 install   |   10 ++--
 3 files changed, 76 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:43:19 UTC (rev 115623)
+++ PKGBUILD2014-07-12 17:43:44 UTC (rev 115624)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-pkgname=nspluginwrapper
-pkgver=1.4.4
-pkgrel=2
-pkgdesc=Cross-platform NPAPI compatible plugin viewer
-arch=('i686' 'x86_64')
-url=http://nspluginwrapper.davidben.net/;
-license=('GPL')
-depends=(
-  'curl'
-  'libxt' 'lib32-libxt'
-  'gcc-libs' 'lib32-gcc-libs'
-  'gtk2' 'lib32-gtk2'
-)
-makedepends=('gcc-multilib')
-install=install
-source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz)
-md5sums=('36f3e290fc4ce56f65ee695078961188')
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  depends=(${depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-fi
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  configure_args=
-  if [[ $CARCH == x86_64 ]]; then
-configure_args=$configure_args --with-lib32=lib32 --with-lib64=lib
-  fi
-
-  ./configure $configure_args
-  make -j1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make -j1 DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nspluginwrapper/repos/community-i686/PKGBUILD (from rev 115623, 
nspluginwrapper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:43:44 UTC (rev 115624)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+pkgname=nspluginwrapper
+pkgver=1.4.4
+pkgrel=3
+pkgdesc=Cross-platform NPAPI compatible plugin viewer
+arch=('i686' 'x86_64')
+url=http://nspluginwrapper.davidben.net/;
+license=('GPL')
+depends=(
+  'curl'
+  'libxt' 'lib32-libxt'
+  'gcc-libs' 'lib32-gcc-libs'
+  'gtk2' 'lib32-gtk2'
+)
+makedepends=('gcc-multilib')
+install=install
+source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz
+'fix_missing_lib.patch')
+md5sums=('36f3e290fc4ce56f65ee695078961188'
+ '00ca2d1ab0d7348e3157cb7b72f30e1a')
+
+if [[ $CARCH == i686 ]]; then
+  # Strip lib32 etc. on i686
+  depends=(${depends[@]/*32-*/})
+  makedepends=(${makedepends[@]/*32-*/})
+  makedepends=(${makedepends[@]/*-multilib*/})
+  optdepends=(${optdepends[@]/*32-*/})
+fi
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p1 -i $srcdir/fix_missing_lib.patch
+
+  configure_args=
+  if [[ $CARCH == x86_64 ]]; then
+configure_args=$configure_args --with-lib32=lib32 --with-lib64=lib
+  fi
+
+  ./configure $configure_args
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make -j1 DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nspluginwrapper/repos/community-i686/fix_missing_lib.patch (from rev 
115623, nspluginwrapper/trunk/fix_missing_lib.patch)
===
--- fix_missing_lib.patch   (rev 0)
+++ fix_missing_lib.patch   2014-07-12 17:43:44 UTC (rev 115624)
@@ -0,0 +1,20 @@
+--- a/Makefile 2011-07-01 11:18:57.0 +0800
 b/Makefile 2014-07-13 01:21:41.887559397 +0800
+@@ -128,7 +128,7 @@
+ ifeq ($(TARGET_OS):$(TARGET_ARCH),linux:i386)
+ npviewer_SOURCES += $(SRC_PATH)/src/cxxabi-compat.cpp
+ npviewer_OBJECTS += npviewer-cxxabi-compat.o
+-npviewer_LIBS+= -lsupc++
++npviewer_LIBS+= -lsupc++ -lgthread-2.0
+ endif
+ ifeq ($(TARGET_OS):$(TARGET_ARCH),solaris:i386)
+ npviewer_LIBS+= $(libsocket_LIBS)
+@@ -142,7 +142,7 @@
+ npplayer_LDFLAGS  = $(LDFLAGS)
+ npplayer_LDFLAGS += $(libpthread_LDFLAGS)
+ npplayer_LIBS = $(GTK_LIBS) $(GLIB_LIBS) $(CURL_LIBS) $(X_LIBS)
+-npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS)
++npplayer_LIBS+= $(libpthread_LIBS) $(libsocket_LIBS) -ldl -lgthread-2.0
+ 
+ libnoxshm_LIBRARY = libnoxshm.so
+ libnoxshm_RAWSRCS = libnoxshm.c

Deleted: install
===
--- install 2014-07-12 17:43:19 UTC (rev 115623)
+++ install 2014-07-12 17:43:44 UTC (rev 115624)
@@ -1,5 +0,0 @@

[arch-commits] Commit in lib32-xcb-util/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-07-12 Thread Felix Yan
Date: Saturday, July 12, 2014 @ 19:43:19
  Author: fyan
Revision: 115623

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-xcb-util/repos/multilib-x86_64/PKGBUILD
(from rev 115622, lib32-xcb-util/trunk/PKGBUILD)
Deleted:
  lib32-xcb-util/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 17:43:01 UTC (rev 115622)
+++ PKGBUILD2014-07-12 17:43:19 UTC (rev 115623)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-
-_pkgbasename=xcb-util
-pkgname=lib32-xcb-util
-pkgver=0.3.9
-pkgrel=1
-pkgdesc=Utility libraries for XC Binding (32-bit)
-arch=('x86_64')
-url=http://xcb.freedesktop.org;
-license=('custom')
-depends=('lib32-glibc' 'lib32-libxcb' $_pkgbasename)
-makedepends=('gperf' 'gcc-multilib')
-options=('!libtool')
-source=(http://xcb.freedesktop.org/dist/${_pkgbasename}-${pkgver}.tar.bz2)
-sha256sums=('c611259c0ab20fd76f79f48f4684843c18ea9c967eba78a45e8b3636315c18c4')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib32 --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-xcb-util/repos/multilib-x86_64/PKGBUILD (from rev 115622, 
lib32-xcb-util/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 17:43:19 UTC (rev 115623)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+
+_pkgbasename=xcb-util
+pkgname=lib32-xcb-util
+pkgver=0.3.9
+pkgrel=2
+pkgdesc=Utility libraries for XC Binding (32-bit)
+arch=('x86_64')
+url=http://xcb.freedesktop.org;
+license=('custom')
+depends=('lib32-glibc' 'lib32-libxcb' $_pkgbasename)
+makedepends=('gperf' 'gcc-multilib')
+options=('!libtool')
+source=(http://xcb.freedesktop.org/dist/${_pkgbasename}-${pkgver}.tar.bz2)
+sha256sums=('c611259c0ab20fd76f79f48f4684843c18ea9c967eba78a45e8b3636315c18c4')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib32 --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



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

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 19:52:44
  Author: heftig
Revision: 216840

3.11.2

Added:
  meld/trunk/meld.install
(from rev 216839, meld/trunk/install)
Modified:
  meld/trunk/PKGBUILD
Deleted:
  meld/trunk/PKGBUILD-3.11
  meld/trunk/install

---+
 PKGBUILD  |   42 ++
 PKGBUILD-3.11 |   33 -
 install   |   13 -
 meld.install  |   14 ++
 4 files changed, 32 insertions(+), 70 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:35:09 UTC (rev 216839)
+++ PKGBUILD2014-07-12 17:52:44 UTC (rev 216840)
@@ -1,38 +1,32 @@
 # $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=meld
-pkgver=1.8.5
+pkgver=3.11.2
 pkgrel=1
 pkgdesc='Visual diff and merge tool'
 url='http://meldmerge.org/'
-license=('GPL')
-arch=('any')
-makedepends=('intltool' 'gnome-doc-utils')
-depends=('pygtk' 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('pygtksourceview2: syntax highlighting'
-'python2-dbus: open a new tab in an already running instance'
-'python2-gconf: gnome integration')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('a1f01bc68820c7e35c374dfb1923ed20ac28e603')
+license=(GPL)
+arch=(any)
+makedepends=(intltool itstool)
+install=meld.install
+depends=(python2-gobject gtk3 hicolor-icon-theme desktop-file-utils)
+optdepends=('gtksourceview3: syntax highlighting'
+'python2-dbus: open a new tab in an already running instance')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('9d2dfe0579241ff8f4e9681945fb9cd229947edc')
 
-install=install
-options=('!emptydirs')
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   sed -i 's/env python/env python2/' bin/meld
-}
-
 build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PYTHON=/usr/bin/python2 prefix=/usr
+  cd $pkgname-$pkgver
+  python2 setup.py build
 }
 
 package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PYTHON=/usr/bin/python2 prefix=/usr DESTDIR=${pkgdir} install \
-   update_desktop_database= update_mime_database=
+  cd $pkgname-$pkgver
+  # using --skip-build breaks install
+  python2 setup.py --no-update-icon-cache --no-compile-schemas \
+install --prefix=/usr --root=$pkgdir --optimize=1
 }

Deleted: PKGBUILD-3.11
===
--- PKGBUILD-3.11   2014-07-12 17:35:09 UTC (rev 216839)
+++ PKGBUILD-3.11   2014-07-12 17:52:44 UTC (rev 216840)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 204566 2014-01-22 23:15:09Z heftig $
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=meld
-pkgver=3.11.1
-pkgrel=1
-pkgdesc='Visual diff and merge tool'
-url='http://meldmerge.org/'
-license=('GPL')
-arch=('any')
-makedepends=('intltool' 'itstool')
-depends=('python2-gobject' 'gtk3' 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('gtksourceview3: syntax highlighting'
-'python2-dbus: open a new tab in an already running instance')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d7a641bcb67dbae5087708bfe256a8385f015e13')
-
-# Don't forget to add the glib-compile-schemas call to install when using this 
PKGBUILD
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   python2 setup.py build
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   # using --skip-build breaks install
-   python2 setup.py --no-update-icon-cache --no-compile-schemas \
-   install --prefix=/usr --root=${pkgdir} --optimize=1
-}

Deleted: install
===
--- install 2014-07-12 17:35:09 UTC (rev 216839)
+++ install 2014-07-12 17:52:44 UTC (rev 216840)
@@ -1,13 +0,0 @@
-post_install() {
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   update-desktop-database -q
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: meld/trunk/meld.install (from rev 216839, meld/trunk/install)
===
--- meld.install(rev 0)
+++ meld.install2014-07-12 17:52:44 UTC (rev 216840)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f 

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

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 19:58:34
  Author: heftig
Revision: 216841

Py3 note

Modified:
  meld/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 17:52:44 UTC (rev 216840)
+++ PKGBUILD2014-07-12 17:58:34 UTC (rev 216841)
@@ -19,6 +19,9 @@
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
 sha1sums=('9d2dfe0579241ff8f4e9681945fb9cd229947edc')
 
+# Meld does not support Python 3. The build succeeds, but
+# the main executable checks the version and errors out.
+
 build() {
   cd $pkgname-$pkgver
   python2 setup.py build



[arch-commits] Commit in meld/repos (3 files)

2014-07-12 Thread Jan Steffens
Date: Saturday, July 12, 2014 @ 20:00:06
  Author: heftig
Revision: 216842

archrelease: copy trunk to testing-any

Added:
  meld/repos/testing-any/
  meld/repos/testing-any/PKGBUILD
(from rev 216841, meld/trunk/PKGBUILD)
  meld/repos/testing-any/meld.install
(from rev 216841, meld/trunk/meld.install)

--+
 PKGBUILD |   35 +++
 meld.install |   14 ++
 2 files changed, 49 insertions(+)

Copied: meld/repos/testing-any/PKGBUILD (from rev 216841, meld/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-07-12 18:00:06 UTC (rev 216842)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=meld
+pkgver=3.11.2
+pkgrel=1
+pkgdesc='Visual diff and merge tool'
+url='http://meldmerge.org/'
+license=(GPL)
+arch=(any)
+makedepends=(intltool itstool)
+install=meld.install
+depends=(python2-gobject gtk3 hicolor-icon-theme desktop-file-utils)
+optdepends=('gtksourceview3: syntax highlighting'
+'python2-dbus: open a new tab in an already running instance')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('9d2dfe0579241ff8f4e9681945fb9cd229947edc')
+
+# Meld does not support Python 3. The build succeeds, but
+# the main executable checks the version and errors out.
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  # using --skip-build breaks install
+  python2 setup.py --no-update-icon-cache --no-compile-schemas \
+install --prefix=/usr --root=$pkgdir --optimize=1
+}

Copied: meld/repos/testing-any/meld.install (from rev 216841, 
meld/trunk/meld.install)
===
--- testing-any/meld.install(rev 0)
+++ testing-any/meld.install2014-07-12 18:00:06 UTC (rev 216842)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-07-12 Thread Laurent Carlier
Date: Saturday, July 12, 2014 @ 20:01:14
  Author: lcarlier
Revision: 216843

upgpkg: mesa 10.2.3-2

rebuild to fix Present support (FS#41172)

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 18:00:06 UTC (rev 216842)
+++ PKGBUILD2014-07-12 18:01:14 UTC (rev 216843)
@@ -5,7 +5,7 @@
 pkgbase=mesa
 pkgname=('opencl-mesa' 'ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 
'mesa-libgl')
 pkgver=10.2.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
  'libxshmfence' 'libxxf86vm'  'libxdamage' 'libvdpau' 'wayland' 
'elfutils' 'llvm' 'systemd'



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

2014-07-12 Thread Laurent Carlier
Date: Saturday, July 12, 2014 @ 20:01:25
  Author: lcarlier
Revision: 216845

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

Added:
  mesa/repos/testing-i686/
  mesa/repos/testing-i686/LICENSE
(from rev 216843, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 216843, mesa/trunk/PKGBUILD)
  mesa/repos/testing-x86_64/
  mesa/repos/testing-x86_64/LICENSE
(from rev 216843, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 216843, mesa/trunk/PKGBUILD)

-+
 testing-i686/LICENSE|   82 ++
 testing-i686/PKGBUILD   |  203 ++
 testing-x86_64/LICENSE  |   82 ++
 testing-x86_64/PKGBUILD |  203 ++
 4 files changed, 570 insertions(+)

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

Copied: mesa/repos/testing-i686/PKGBUILD (from rev 216843, mesa/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-12 

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

2014-07-12 Thread Pierre Schmitz
Date: Saturday, July 12, 2014 @ 20:24:57
  Author: pierre
Revision: 216846

Start service when network is up; enable IPv6

Modified:
  pkgstats/trunk/PKGBUILD
  pkgstats/trunk/pkgstats.service
  pkgstats/trunk/pkgstats.sh

--+
 PKGBUILD |6 +++---
 pkgstats.service |1 +
 pkgstats.sh  |4 ++--
 3 files changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 18:01:25 UTC (rev 216845)
+++ PKGBUILD2014-07-12 18:24:57 UTC (rev 216846)
@@ -3,7 +3,7 @@
 
 pkgname=pkgstats
 pkgver=2.3
-pkgrel=5
+pkgrel=6
 pkgdesc='submits a list of installed packages to the Arch Linux project'
 arch=('any')
 url='https://www.archlinux.de'
@@ -12,9 +12,9 @@
 source=('pkgstats.sh'
 pkgstats.{timer,service})
 install='pkgstats.install'
-md5sums=('2943bc8c6d8e3c0bd9b368a3f17b'
+md5sums=('36008b6296c01221d87b11c3aa79bc0c'
  '2285089dff45f583c27b9d561fda5405'
- '5225a0bb6d32a3bbf89821f841f4eb8c')
+ '5948fa6ef41d3804f7eb6980684611d6')
 
 package() {
install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats

Modified: pkgstats.service
===
--- pkgstats.service2014-07-12 18:01:25 UTC (rev 216845)
+++ pkgstats.service2014-07-12 18:24:57 UTC (rev 216846)
@@ -1,5 +1,6 @@
 [Unit]
 Description=Submit pkgstats
+After=network-online.target
 
 [Service]
 Type=oneshot

Modified: pkgstats.sh
===
--- pkgstats.sh 2014-07-12 18:01:25 UTC (rev 216845)
+++ pkgstats.sh 2014-07-12 18:24:57 UTC (rev 216846)
@@ -3,7 +3,7 @@
 pkgstatsver='2.3'
 showonly=false
 quiet=false
-option='-q -s -S -4'
+option='-q -s -S'
 
 usage() {
echo usage: ${0} [option]
@@ -66,7 +66,7 @@
echo quiet=${quiet}
 else
${quiet} || echo 'Submitting data...'
-   curl ${option} -H 'Expect: ' \
+   curl ${option} \
-A pkgstats/${pkgstatsver} \
--data-urlencode packages@${pkglist} \
--data-urlencode modules@${moduleslist} \



[arch-commits] Commit in pkgstats/repos/extra-any (10 files)

2014-07-12 Thread Pierre Schmitz
Date: Saturday, July 12, 2014 @ 20:27:12
  Author: pierre
Revision: 216847

archrelease: copy trunk to extra-any

Added:
  pkgstats/repos/extra-any/PKGBUILD
(from rev 216846, pkgstats/trunk/PKGBUILD)
  pkgstats/repos/extra-any/pkgstats.install
(from rev 216846, pkgstats/trunk/pkgstats.install)
  pkgstats/repos/extra-any/pkgstats.service
(from rev 216846, pkgstats/trunk/pkgstats.service)
  pkgstats/repos/extra-any/pkgstats.sh
(from rev 216846, pkgstats/trunk/pkgstats.sh)
  pkgstats/repos/extra-any/pkgstats.timer
(from rev 216846, pkgstats/trunk/pkgstats.timer)
Deleted:
  pkgstats/repos/extra-any/PKGBUILD
  pkgstats/repos/extra-any/pkgstats.install
  pkgstats/repos/extra-any/pkgstats.service
  pkgstats/repos/extra-any/pkgstats.sh
  pkgstats/repos/extra-any/pkgstats.timer

--+
 PKGBUILD |   50 
 pkgstats.install |6 +-
 pkgstats.service |   17 +++--
 pkgstats.sh  |  158 ++---
 pkgstats.timer   |   14 ++--
 5 files changed, 123 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-12 18:24:57 UTC (rev 216846)
+++ PKGBUILD2014-07-12 18:27:12 UTC (rev 216847)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=pkgstats
-pkgver=2.3
-pkgrel=5
-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' 'systemd' 'awk' 'grep')
-source=('pkgstats.sh'
-pkgstats.{timer,service})
-install='pkgstats.install'
-md5sums=('2943bc8c6d8e3c0bd9b368a3f17b'
- '2285089dff45f583c27b9d561fda5405'
- '5225a0bb6d32a3bbf89821f841f4eb8c')
-
-package() {
-   install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats
-   install -D -m644 ${srcdir}/pkgstats.timer 
${pkgdir}/usr/lib/systemd/system/pkgstats.timer
-   install -D -m644 ${srcdir}/pkgstats.service 
${pkgdir}/usr/lib/systemd/system/pkgstats.service
-   install -d -m755 
${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
-   ln -s ../pkgstats.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/pkgstats.timer
-}

Copied: pkgstats/repos/extra-any/PKGBUILD (from rev 216846, 
pkgstats/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-12 18:27:12 UTC (rev 216847)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=pkgstats
+pkgver=2.3
+pkgrel=6
+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' 'systemd' 'awk' 'grep')
+source=('pkgstats.sh'
+pkgstats.{timer,service})
+install='pkgstats.install'
+md5sums=('36008b6296c01221d87b11c3aa79bc0c'
+ '2285089dff45f583c27b9d561fda5405'
+ '5948fa6ef41d3804f7eb6980684611d6')
+
+package() {
+   install -D -m755 ${srcdir}/pkgstats.sh ${pkgdir}/usr/bin/pkgstats
+   install -D -m644 ${srcdir}/pkgstats.timer 
${pkgdir}/usr/lib/systemd/system/pkgstats.timer
+   install -D -m644 ${srcdir}/pkgstats.service 
${pkgdir}/usr/lib/systemd/system/pkgstats.service
+   install -d -m755 
${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
+   ln -s ../pkgstats.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/pkgstats.timer
+}

Deleted: pkgstats.install
===
--- pkgstats.install2014-07-12 18:24:57 UTC (rev 216846)
+++ pkgstats.install2014-07-12 18:27:12 UTC (rev 216847)
@@ -1,3 +0,0 @@
-post_install() {
-   echo For information about pkgstats see 
https://bbs.archlinux.org/viewtopic.php?id=105431;
-}

Copied: pkgstats/repos/extra-any/pkgstats.install (from rev 216846, 
pkgstats/trunk/pkgstats.install)
===
--- pkgstats.install(rev 0)
+++ pkgstats.install2014-07-12 18:27:12 UTC (rev 216847)
@@ -0,0 +1,3 @@
+post_install() {
+   echo For information about pkgstats see 
https://bbs.archlinux.org/viewtopic.php?id=105431;
+}

Deleted: pkgstats.service
===
--- pkgstats.service2014-07-12 18:24:57 UTC (rev 216846)
+++ pkgstats.service2014-07-12 18:27:12 UTC (rev 216847)
@@ -1,8 +0,0 @@
-[Unit]
-Description=Submit pkgstats
-
-[Service]
-Type=oneshot
-ExecStart=/usr/bin/pkgstats -q
-User=nobody
-Group=nobody

Copied: pkgstats/repos/extra-any/pkgstats.service (from rev 216846, 
pkgstats/trunk/pkgstats.service)
===
--- pkgstats.service(rev 0)
+++ pkgstats.service

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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 21:03:06
  Author: kkeen
Revision: 115625

pkginit bladerf-0.16.0-1

Added:
  bladerf/
  bladerf/repos/
  bladerf/trunk/
  bladerf/trunk/PKGBUILD

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

Added: bladerf/trunk/PKGBUILD
===
--- bladerf/trunk/PKGBUILD  (rev 0)
+++ bladerf/trunk/PKGBUILD  2014-07-12 19:03:06 UTC (rev 115625)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=bladerf
+pkgver=0.16.0
+_CLIver=0.11.0
+_FPGAver=0.0.5
+_firmver=1.7.0
+pkgrel=1
+pkgdesc=Driver, userspace, fpga  firmware for the bladeRF SDR.
+url=https://github.com/Nuand/bladeRF;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake' 'help2man')
+#backup=(etc/bladerf.cfg)
+
+source=(
+https://github.com/Nuand/bladeRF/archive/libbladeRF_v$pkgver.tar.gz;
+http://nuand.com/fpga/v$_FPGAver/hostedx40.rbf;
+http://nuand.com/fpga/v$_FPGAver/hostedx115.rbf;
+http://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
+
+md5sums=('3a3dd03382a0f649a442851ef094f864'
+ 'a474050c832cbe528fb8635b36c36a34'
+ 'd3ca5dc09115daf0bab731744b081165'
+ '73ace21e693049e475cceb88bed900d7')
+
+# bladeRF-cli can use libtecla (aur)?
+
+build() {
+  cd $srcdir/bladeRF-libbladeRF_v$pkgver
+  mkdir -p build
+  cd build
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DINSTALL_UDEV_RULES=ON \
+-DBUILD_DOCUMENTATION=ON \
+-DCMAKE_INSTALL_LIBDIR:PATH=lib \
+-Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+  # ENABLE_FX3_BUILD needs cypress toolchain
+  # really really wants to put files in /usr/lib64
+}
+
+package() {
+  cd $srcdir/bladeRF-libbladeRF_v$pkgver/build
+  make DESTDIR=${pkgdir} install
+  cd $srcdir
+  install -Dm644 bladeRF_fw_v$_firmver.img 
$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img
+  install -Dm644 hostedx40.rbf $pkgdir/usr/share/bladerf/fpga/hostedx40.rbf
+  install -Dm644 hostedx115.rbf $pkgdir/usr/share/bladerf/fpga/hostedx115.rbf
+}


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


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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 21:05:39
  Author: kkeen
Revision: 115626

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

Added:
  bladerf/repos/community-i686/
  bladerf/repos/community-i686/PKGBUILD
(from rev 115625, bladerf/trunk/PKGBUILD)
  bladerf/repos/community-x86_64/
  bladerf/repos/community-x86_64/PKGBUILD
(from rev 115625, bladerf/trunk/PKGBUILD)

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

Copied: bladerf/repos/community-i686/PKGBUILD (from rev 115625, 
bladerf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 19:05:39 UTC (rev 115626)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=bladerf
+pkgver=0.16.0
+_CLIver=0.11.0
+_FPGAver=0.0.5
+_firmver=1.7.0
+pkgrel=1
+pkgdesc=Driver, userspace, fpga  firmware for the bladeRF SDR.
+url=https://github.com/Nuand/bladeRF;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake' 'help2man')
+#backup=(etc/bladerf.cfg)
+
+source=(
+https://github.com/Nuand/bladeRF/archive/libbladeRF_v$pkgver.tar.gz;
+http://nuand.com/fpga/v$_FPGAver/hostedx40.rbf;
+http://nuand.com/fpga/v$_FPGAver/hostedx115.rbf;
+http://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
+
+md5sums=('3a3dd03382a0f649a442851ef094f864'
+ 'a474050c832cbe528fb8635b36c36a34'
+ 'd3ca5dc09115daf0bab731744b081165'
+ '73ace21e693049e475cceb88bed900d7')
+
+# bladeRF-cli can use libtecla (aur)?
+
+build() {
+  cd $srcdir/bladeRF-libbladeRF_v$pkgver
+  mkdir -p build
+  cd build
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DINSTALL_UDEV_RULES=ON \
+-DBUILD_DOCUMENTATION=ON \
+-DCMAKE_INSTALL_LIBDIR:PATH=lib \
+-Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+  # ENABLE_FX3_BUILD needs cypress toolchain
+  # really really wants to put files in /usr/lib64
+}
+
+package() {
+  cd $srcdir/bladeRF-libbladeRF_v$pkgver/build
+  make DESTDIR=${pkgdir} install
+  cd $srcdir
+  install -Dm644 bladeRF_fw_v$_firmver.img 
$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img
+  install -Dm644 hostedx40.rbf $pkgdir/usr/share/bladerf/fpga/hostedx40.rbf
+  install -Dm644 hostedx115.rbf $pkgdir/usr/share/bladerf/fpga/hostedx115.rbf
+}

Copied: bladerf/repos/community-x86_64/PKGBUILD (from rev 115625, 
bladerf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-12 19:05:39 UTC (rev 115626)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=bladerf
+pkgver=0.16.0
+_CLIver=0.11.0
+_FPGAver=0.0.5
+_firmver=1.7.0
+pkgrel=1
+pkgdesc=Driver, userspace, fpga  firmware for the bladeRF SDR.
+url=https://github.com/Nuand/bladeRF;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake' 'help2man')
+#backup=(etc/bladerf.cfg)
+
+source=(
+https://github.com/Nuand/bladeRF/archive/libbladeRF_v$pkgver.tar.gz;
+http://nuand.com/fpga/v$_FPGAver/hostedx40.rbf;
+http://nuand.com/fpga/v$_FPGAver/hostedx115.rbf;
+http://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
+
+md5sums=('3a3dd03382a0f649a442851ef094f864'
+ 'a474050c832cbe528fb8635b36c36a34'
+ 'd3ca5dc09115daf0bab731744b081165'
+ '73ace21e693049e475cceb88bed900d7')
+
+# bladeRF-cli can use libtecla (aur)?
+
+build() {
+  cd $srcdir/bladeRF-libbladeRF_v$pkgver
+  mkdir -p build
+  cd build
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DINSTALL_UDEV_RULES=ON \
+-DBUILD_DOCUMENTATION=ON \
+-DCMAKE_INSTALL_LIBDIR:PATH=lib \
+-Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+  # ENABLE_FX3_BUILD needs cypress toolchain
+  # really really wants to put files in /usr/lib64
+}
+
+package() {
+  cd $srcdir/bladeRF-libbladeRF_v$pkgver/build
+  make DESTDIR=${pkgdir} install
+  cd $srcdir
+  install -Dm644 bladeRF_fw_v$_firmver.img 
$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img
+  install -Dm644 hostedx40.rbf $pkgdir/usr/share/bladerf/fpga/hostedx40.rbf
+  install -Dm644 hostedx115.rbf $pkgdir/usr/share/bladerf/fpga/hostedx115.rbf
+}



[arch-commits] Commit in (5 files)

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 21:43:26
  Author: kkeen
Revision: 115627

pkginit gnuradio-fcdproplus-3.7.4-3

Added:
  gnuradio-fcdproplus/
  gnuradio-fcdproplus/repos/
  gnuradio-fcdproplus/trunk/
  gnuradio-fcdproplus/trunk/88-fcdproplus.rules
  gnuradio-fcdproplus/trunk/PKGBUILD

-+
 88-fcdproplus.rules |9 +
 PKGBUILD|   37 +
 2 files changed, 46 insertions(+)

Added: gnuradio-fcdproplus/trunk/88-fcdproplus.rules
===
--- gnuradio-fcdproplus/trunk/88-fcdproplus.rules   
(rev 0)
+++ gnuradio-fcdproplus/trunk/88-fcdproplus.rules   2014-07-12 19:43:26 UTC 
(rev 115627)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS==usb ATTRS{idVendor}==04d8 ATTRS{idProduct}==fb56 MODE:=0666
+SUBSYSTEMS==usb ATTRS{idVendor}==04d8 ATTRS{idProduct}==fb31 MODE:=0666
+
+# HIDAPI/hidraw:
+KERNEL==hidraw*, ATTRS{busnum}==1, ATTRS{idVendor}==04d8, 
ATTRS{idProduct}==fb56, MODE=0666
+KERNEL==hidraw*, ATTRS{busnum}==1, ATTRS{idVendor}==04d8, 
ATTRS{idProduct}==fb31, MODE=0666

Added: gnuradio-fcdproplus/trunk/PKGBUILD
===
--- gnuradio-fcdproplus/trunk/PKGBUILD  (rev 0)
+++ gnuradio-fcdproplus/trunk/PKGBUILD  2014-07-12 19:43:26 UTC (rev 115627)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.7.4
+pkgrel=3
+_tag=v3.7_hidraw
+pkgdesc=GNU Radio source block for Funcube Dongle Pro +
+arch=('i686' 'x86_64')
+url=https://github.com/dl1ksv/gr-fcdproplus;
+license=('GPL3')
+depends=('gnuradio' 'libusb' 'alsa-lib' 'boost-libs')
+makedepends=('git' 'cmake' 'boost' 'swig')
+replaces=('gr-fcdproplus')
+source=(git://github.com/dl1ksv/gr-fcdproplus.git#tag=$_tag
+88-fcdproplus.rules)
+md5sums=('SKIP'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+build() {
+  cd $srcdir/$_pkgname
+  mkdir build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+  install -Dm644 $srcdir/88-fcdproplus.rules 
$pkgdir/etc/udev/rules.d/88-fcdproplus.rules
+}


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


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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 21:47:12
  Author: kkeen
Revision: 115628

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

Added:
  gnuradio-fcdproplus/repos/community-i686/
  gnuradio-fcdproplus/repos/community-i686/88-fcdproplus.rules
(from rev 115627, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
  gnuradio-fcdproplus/repos/community-i686/PKGBUILD
(from rev 115627, gnuradio-fcdproplus/trunk/PKGBUILD)
  gnuradio-fcdproplus/repos/community-x86_64/
  gnuradio-fcdproplus/repos/community-x86_64/88-fcdproplus.rules
(from rev 115627, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
  gnuradio-fcdproplus/repos/community-x86_64/PKGBUILD
(from rev 115627, gnuradio-fcdproplus/trunk/PKGBUILD)

--+
 community-i686/88-fcdproplus.rules   |9 
 community-i686/PKGBUILD  |   37 +
 community-x86_64/88-fcdproplus.rules |9 
 community-x86_64/PKGBUILD|   37 +
 4 files changed, 92 insertions(+)

Copied: gnuradio-fcdproplus/repos/community-i686/88-fcdproplus.rules (from rev 
115627, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
===
--- community-i686/88-fcdproplus.rules  (rev 0)
+++ community-i686/88-fcdproplus.rules  2014-07-12 19:47:12 UTC (rev 115628)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS==usb ATTRS{idVendor}==04d8 ATTRS{idProduct}==fb56 MODE:=0666
+SUBSYSTEMS==usb ATTRS{idVendor}==04d8 ATTRS{idProduct}==fb31 MODE:=0666
+
+# HIDAPI/hidraw:
+KERNEL==hidraw*, ATTRS{busnum}==1, ATTRS{idVendor}==04d8, 
ATTRS{idProduct}==fb56, MODE=0666
+KERNEL==hidraw*, ATTRS{busnum}==1, ATTRS{idVendor}==04d8, 
ATTRS{idProduct}==fb31, MODE=0666

Copied: gnuradio-fcdproplus/repos/community-i686/PKGBUILD (from rev 115627, 
gnuradio-fcdproplus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 19:47:12 UTC (rev 115628)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.7.4
+pkgrel=3
+_tag=v3.7_hidraw
+pkgdesc=GNU Radio source block for Funcube Dongle Pro +
+arch=('i686' 'x86_64')
+url=https://github.com/dl1ksv/gr-fcdproplus;
+license=('GPL3')
+depends=('gnuradio' 'libusb' 'alsa-lib' 'boost-libs')
+makedepends=('git' 'cmake' 'boost' 'swig')
+replaces=('gr-fcdproplus')
+source=(git://github.com/dl1ksv/gr-fcdproplus.git#tag=$_tag
+88-fcdproplus.rules)
+md5sums=('SKIP'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+build() {
+  cd $srcdir/$_pkgname
+  mkdir build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+  install -Dm644 $srcdir/88-fcdproplus.rules 
$pkgdir/etc/udev/rules.d/88-fcdproplus.rules
+}

Copied: gnuradio-fcdproplus/repos/community-x86_64/88-fcdproplus.rules (from 
rev 115627, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
===
--- community-x86_64/88-fcdproplus.rules(rev 0)
+++ community-x86_64/88-fcdproplus.rules2014-07-12 19:47:12 UTC (rev 
115628)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS==usb ATTRS{idVendor}==04d8 ATTRS{idProduct}==fb56 MODE:=0666
+SUBSYSTEMS==usb ATTRS{idVendor}==04d8 ATTRS{idProduct}==fb31 MODE:=0666
+
+# HIDAPI/hidraw:
+KERNEL==hidraw*, ATTRS{busnum}==1, ATTRS{idVendor}==04d8, 
ATTRS{idProduct}==fb56, MODE=0666
+KERNEL==hidraw*, ATTRS{busnum}==1, ATTRS{idVendor}==04d8, 
ATTRS{idProduct}==fb31, MODE=0666

Copied: gnuradio-fcdproplus/repos/community-x86_64/PKGBUILD (from rev 115627, 
gnuradio-fcdproplus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-12 19:47:12 UTC (rev 115628)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.7.4
+pkgrel=3
+_tag=v3.7_hidraw
+pkgdesc=GNU Radio source block for Funcube Dongle Pro +
+arch=('i686' 'x86_64')
+url=https://github.com/dl1ksv/gr-fcdproplus;
+license=('GPL3')
+depends=('gnuradio' 'libusb' 'alsa-lib' 'boost-libs')
+makedepends=('git' 'cmake' 'boost' 'swig')
+replaces=('gr-fcdproplus')
+source=(git://github.com/dl1ksv/gr-fcdproplus.git#tag=$_tag
+

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

2014-07-12 Thread Gaetan Bisson
Date: Saturday, July 12, 2014 @ 21:53:21
  Author: bisson
Revision: 216849

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

Added:
  s-nail/repos/testing-i686/
  s-nail/repos/testing-i686/PKGBUILD
(from rev 216848, s-nail/trunk/PKGBUILD)
  s-nail/repos/testing-x86_64/
  s-nail/repos/testing-x86_64/PKGBUILD
(from rev 216848, s-nail/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   51 ++
 testing-x86_64/PKGBUILD |   51 ++
 2 files changed, 102 insertions(+)

Copied: s-nail/repos/testing-i686/PKGBUILD (from rev 216848, 
s-nail/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-12 19:53:21 UTC (rev 216849)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s@a...@gmail.com
+# Contributor: Andreas Wagner andreas.wag...@em.uni-frankfurt.de
+
+pkgname=s-nail
+pkgver=14.7.2
+pkgrel=1
+pkgdesc='Mail processing system with a command syntax reminiscent of ed'
+url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'krb5')
+optdepends=('smtp-forwarder: for sending mail')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz;)
+sha1sums=('18ba641fa64fea4801dc8efe0bf1c6ed3655a041')
+
+groups=('base')
+backup=('etc/mail.rc')
+replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+provides=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   CFLAGS+= $CPPFLAGS
+   make \
+   PREFIX=/usr \
+   SYSCONFDIR=/etc \
+   MANDIR=/usr/share/man \
+   MAILSPOOL=/var/spool/mail \
+   SID= NAIL=mail \
+   WANT_AUTOCC=0 \
+   config
+
+   make build
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make test
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} packager-install
+   ln -sf mail ${pkgdir}/usr/bin/mailx
+   ln -sf mail.1.gz ${pkgdir}/usr/share/man/man1/mailx.1.gz
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Copied: s-nail/repos/testing-x86_64/PKGBUILD (from rev 216848, 
s-nail/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-07-12 19:53:21 UTC (rev 216849)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s@a...@gmail.com
+# Contributor: Andreas Wagner andreas.wag...@em.uni-frankfurt.de
+
+pkgname=s-nail
+pkgver=14.7.2
+pkgrel=1
+pkgdesc='Mail processing system with a command syntax reminiscent of ed'
+url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'krb5')
+optdepends=('smtp-forwarder: for sending mail')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz;)
+sha1sums=('18ba641fa64fea4801dc8efe0bf1c6ed3655a041')
+
+groups=('base')
+backup=('etc/mail.rc')
+replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+provides=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   CFLAGS+= $CPPFLAGS
+   make \
+   PREFIX=/usr \
+   SYSCONFDIR=/etc \
+   MANDIR=/usr/share/man \
+   MAILSPOOL=/var/spool/mail \
+   SID= NAIL=mail \
+   WANT_AUTOCC=0 \
+   config
+
+   make build
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make test
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} packager-install
+   ln -sf mail ${pkgdir}/usr/bin/mailx
+   ln -sf mail.1.gz ${pkgdir}/usr/share/man/man1/mailx.1.gz
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}



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

2014-07-12 Thread Gaetan Bisson
Date: Saturday, July 12, 2014 @ 21:52:54
  Author: bisson
Revision: 216848

upstream update

Modified:
  s-nail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 18:27:12 UTC (rev 216847)
+++ PKGBUILD2014-07-12 19:52:54 UTC (rev 216848)
@@ -5,16 +5,16 @@
 # Contributor: Andreas Wagner andreas.wag...@em.uni-frankfurt.de
 
 pkgname=s-nail
-pkgver=14.7.1
+pkgver=14.7.2
 pkgrel=1
 pkgdesc='Mail processing system with a command syntax reminiscent of ed'
 url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
 license=('custom:BSD')
 arch=('i686' 'x86_64')
-depends=('openssl')
+depends=('openssl' 'krb5')
 optdepends=('smtp-forwarder: for sending mail')
 
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz;)
-sha1sums=('190d531b86ca633c4292472e89b46c3351f2475e')
+sha1sums=('18ba641fa64fea4801dc8efe0bf1c6ed3655a041')
 
 groups=('base')
 backup=('etc/mail.rc')
@@ -24,6 +24,7 @@
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
+   CFLAGS+= $CPPFLAGS
make \
PREFIX=/usr \
SYSCONFDIR=/etc \
@@ -30,6 +31,7 @@
MANDIR=/usr/share/man \
MAILSPOOL=/var/spool/mail \
SID= NAIL=mail \
+   WANT_AUTOCC=0 \
config
 
make build



[arch-commits] Commit in (4 files)

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 22:17:43
  Author: kkeen
Revision: 115629

pkginit gnuradio-osmosdr-0.1.1-8

Added:
  gnuradio-osmosdr/
  gnuradio-osmosdr/repos/
  gnuradio-osmosdr/trunk/
  gnuradio-osmosdr/trunk/PKGBUILD

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

Added: gnuradio-osmosdr/trunk/PKGBUILD
===
--- gnuradio-osmosdr/trunk/PKGBUILD (rev 0)
+++ gnuradio-osmosdr/trunk/PKGBUILD 2014-07-12 20:17:43 UTC (rev 115629)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com?
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.1
+pkgrel=8
+pkgdesc=GNU Radio source block for Funcube Dongle, RTL-SDR, USRP and OsmoSDR 
devices
+url=http://sdr.osmocom.org/trac/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
+md5sums=('SKIP')
+
+# add airspy support?
+
+build() {
+  cd $srcdir/$_pkgname
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 22:27:24
  Author: kkeen
Revision: 115630

upgpkg: gnuradio-osmosdr 0.1.1-8

Modified:
  gnuradio-osmosdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 20:17:43 UTC (rev 115629)
+++ PKGBUILD2014-07-12 20:27:24 UTC (rev 115630)
@@ -20,6 +20,7 @@
 
 build() {
   cd $srcdir/$_pkgname
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
   mkdir build
   cd build
   cmake \



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

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 22:27:39
  Author: kkeen
Revision: 115631

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

Added:
  gnuradio-osmosdr/repos/community-i686/
  gnuradio-osmosdr/repos/community-i686/PKGBUILD
(from rev 115630, gnuradio-osmosdr/trunk/PKGBUILD)
  gnuradio-osmosdr/repos/community-x86_64/
  gnuradio-osmosdr/repos/community-x86_64/PKGBUILD
(from rev 115630, gnuradio-osmosdr/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: gnuradio-osmosdr/repos/community-i686/PKGBUILD (from rev 115630, 
gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 20:27:39 UTC (rev 115631)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com?
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.1
+pkgrel=8
+pkgdesc=GNU Radio source block for Funcube Dongle, RTL-SDR, USRP and OsmoSDR 
devices
+url=http://sdr.osmocom.org/trac/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
+md5sums=('SKIP')
+
+# add airspy support?
+
+build() {
+  cd $srcdir/$_pkgname
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+}

Copied: gnuradio-osmosdr/repos/community-x86_64/PKGBUILD (from rev 115630, 
gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-12 20:27:39 UTC (rev 115631)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com?
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.1
+pkgrel=8
+pkgdesc=GNU Radio source block for Funcube Dongle, RTL-SDR, USRP and OsmoSDR 
devices
+url=http://sdr.osmocom.org/trac/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
+md5sums=('SKIP')
+
+# add airspy support?
+
+build() {
+  cd $srcdir/$_pkgname
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+}



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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 22:44:58
  Author: speps
Revision: 115632

upgpkg: ams 2.1.1-1

Modified:
  ams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 20:27:39 UTC (rev 115631)
+++ PKGBUILD2014-07-12 20:44:58 UTC (rev 115632)
@@ -1,53 +1,49 @@
 # $Id$
 # Maintainer : speps speps at aur dot archlinux dot org
 
-_name=alsamodular
 pkgname=ams
-pkgver=2.0.1
+pkgver=2.1.1
 pkgrel=1
 pkgdesc=A realtime modular synthesizer and effect processor
 arch=('i686' 'x86_64')
 url=http://alsamodular.sourceforge.net/;
 license=('GPL')
-depends=('qt4' 'clalsadrv' 'ladspa' 'jack')
-makedepends=('fftw')
+depends=('qt4' 'fftw' 'jack' 'ladspa' 'liblo' 'zita-alsa-pcmi')
 optdepends=('amb-plugins: ambisonic plugins'
 'mcp-plugins: phaser, chorus and moog vcf plugins'
-'rev-plugins: reverb plugins'
+'rev-plugins: zita-rev1 based reverb plugins'
 'swh-plugins: Steve Harris plugins'
 'vco-plugins: oscillator plugins'
 'fil-plugins: equaliser plugins'
 'tap-plugins: toms audio plugins'
 'wah-plugins: wah audio plugins'
+'g2reverb: greverb based plugins'
 'cmt: Computer Music Toolkit plugins'
 'blop: bandlimited oscillator plugins'
 'pvoc: phase-vocoding plugins'
 'caps: the C* audio plugins')
 install=$pkgname.install
-source=(http://downloads.sourceforge.net/project/$_name/$_name/$pkgver/$pkgname-$pkgver.tar.bz2;
+source=(http://downloads.sourceforge.net/project/alsamodular/alsamodular/$pkgver/$pkgname-$pkgver.tar.bz2;
 $pkgname.desktop $pkgname.png)
-md5sums=('0d41bd5aac066aa98be45fd7ab12d35f'
+md5sums=('3255bce2d3c1a7e0aad07496001b7cc9'
  'ffa277cffd52254f0297cbc2f200767e'
  '0349171d5431f1c6e56085f080eb8c68')
 
 prepare() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-  # strip unwanted flags
-  sed -i 's/-m\(64\|arch=[a-z1-9]*\) *//' configure
-
-  # DSO link flag
-  export LIBS= -ldl
+  # strip unwanted optimization flags
+  sed -i '/AMS_OPT_CXXFLAGS=/d' configure
 }
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir/ install
 
   # desktop file



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

2014-07-12 Thread speps
Date: Saturday, July 12, 2014 @ 22:45:12
  Author: speps
Revision: 115633

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

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

--+
 /PKGBUILD|  112 +
 /ams.desktop |   18 ++
 /ams.install |   22 
 community-i686/PKGBUILD  |   60 -
 community-i686/ams.desktop   |9 ---
 community-i686/ams.install   |   11 
 community-x86_64/PKGBUILD|   60 -
 community-x86_64/ams.desktop |9 ---
 community-x86_64/ams.install |   11 
 9 files changed, 152 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-12 20:44:58 UTC (rev 115632)
+++ community-i686/PKGBUILD 2014-07-12 20:45:12 UTC (rev 115633)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-
-_name=alsamodular
-pkgname=ams
-pkgver=2.0.1
-pkgrel=1
-pkgdesc=A realtime modular synthesizer and effect processor
-arch=('i686' 'x86_64')
-url=http://alsamodular.sourceforge.net/;
-license=('GPL')
-depends=('qt4' 'clalsadrv' 'ladspa' 'jack')
-makedepends=('fftw')
-optdepends=('amb-plugins: ambisonic plugins'
-'mcp-plugins: phaser, chorus and moog vcf plugins'
-'rev-plugins: reverb plugins'
-'swh-plugins: Steve Harris plugins'
-'vco-plugins: oscillator plugins'
-'fil-plugins: equaliser plugins'
-'tap-plugins: toms audio plugins'
-'wah-plugins: wah audio plugins'
-'cmt: Computer Music Toolkit plugins'
-'blop: bandlimited oscillator plugins'
-'pvoc: phase-vocoding plugins'
-'caps: the C* audio plugins')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/project/$_name/$_name/$pkgver/$pkgname-$pkgver.tar.bz2;
-$pkgname.desktop $pkgname.png)
-md5sums=('0d41bd5aac066aa98be45fd7ab12d35f'
- 'ffa277cffd52254f0297cbc2f200767e'
- '0349171d5431f1c6e56085f080eb8c68')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # strip unwanted flags
-  sed -i 's/-m\(64\|arch=[a-z1-9]*\) *//' configure
-
-  # DSO link flag
-  export LIBS= -ldl
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # desktop file
-  install -Dm644 ../$pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-
-  # icon
-  install -Dm644 ../$pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-}

Copied: ams/repos/community-i686/PKGBUILD (from rev 115632, ams/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 20:45:12 UTC (rev 115633)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+
+pkgname=ams
+pkgver=2.1.1
+pkgrel=1
+pkgdesc=A realtime modular synthesizer and effect processor
+arch=('i686' 'x86_64')
+url=http://alsamodular.sourceforge.net/;
+license=('GPL')
+depends=('qt4' 'fftw' 'jack' 'ladspa' 'liblo' 'zita-alsa-pcmi')
+optdepends=('amb-plugins: ambisonic plugins'
+'mcp-plugins: phaser, chorus and moog vcf plugins'
+'rev-plugins: zita-rev1 based reverb plugins'
+'swh-plugins: Steve Harris plugins'
+'vco-plugins: oscillator plugins'
+'fil-plugins: equaliser plugins'
+'tap-plugins: toms audio plugins'
+'wah-plugins: wah audio plugins'
+'g2reverb: greverb based plugins'
+'cmt: Computer Music Toolkit plugins'
+'blop: bandlimited oscillator plugins'
+'pvoc: phase-vocoding plugins'
+'caps: the C* audio plugins')
+install=$pkgname.install

[arch-commits] Commit in (7 files)

2014-07-12 Thread Kyle Keen
Date: Sunday, July 13, 2014 @ 00:17:00
  Author: kkeen
Revision: 115634

pkginit gqrx-2.2.0-1

Added:
  gqrx/
  gqrx/repos/
  gqrx/trunk/
  gqrx/trunk/PKGBUILD
  gqrx/trunk/gqrx.desktop
  gqrx/trunk/gqrx.png
Modified:
  gnuradio-osmosdr/trunk/PKGBUILD

-+
 gnuradio-osmosdr/trunk/PKGBUILD |6 ++--
 gqrx/trunk/PKGBUILD |   54 ++
 gqrx/trunk/gqrx.desktop |   10 +++
 gqrx/trunk/gqrx.png |1 
 4 files changed, 69 insertions(+), 2 deletions(-)

Modified: gnuradio-osmosdr/trunk/PKGBUILD
===
--- gnuradio-osmosdr/trunk/PKGBUILD 2014-07-12 20:45:12 UTC (rev 115633)
+++ gnuradio-osmosdr/trunk/PKGBUILD 2014-07-12 22:17:00 UTC (rev 115634)
@@ -4,7 +4,8 @@
 pkgname=gnuradio-osmosdr
 _pkgname=gr-osmosdr
 pkgver=0.1.1
-pkgrel=8
+pkgrel=9
+_commit=c65d205d3b
 pkgdesc=GNU Radio source block for Funcube Dongle, RTL-SDR, USRP and OsmoSDR 
devices
 url=http://sdr.osmocom.org/trac/;
 arch=('i686' 'x86_64')
@@ -13,7 +14,8 @@
 makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
 conflicts=('gr-osmosdr-git')
 replaces=('gr-osmosdr')
-source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
+#source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
+source=(git://git.osmocom.org/gr-osmosdr#commit=v$_commit)
 md5sums=('SKIP')
 
 # add airspy support?

Added: gqrx/trunk/PKGBUILD
===
--- gqrx/trunk/PKGBUILD (rev 0)
+++ gqrx/trunk/PKGBUILD 2014-07-12 22:17:00 UTC (rev 115634)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+
+pkgname=gqrx
+pkgver=2.2.0
+pkgrel=1
+pkgdesc=Interactive SDR receiver waterfall for many devices.
+arch=('i686' 'x86_64')
+url=http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=(https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;
+$pkgname.png
+$pkgname.desktop)
+md5sums=('ff771b9c31ee17f704859398362b8cc0'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+  cd $srcdir
+  cp -r gqrx-2.2.0 gqrx-2.2.0-alsa
+  cd gqrx-2.2.0-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#/' gqrx.pro
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd $srcdir/$pkgname-$pkgver-alsa
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+}
+
+package() {
+  cd $srcdir
+  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 $pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+
+  cd $srcdir/$pkgname-$pkgver/build
+  make install INSTALL_ROOT=$pkgdir
+
+  cd $srcdir/$pkgname-$pkgver-alsa/build
+  install -Dm755 gqrx $pkgdir/usr/bin/gqrx-alsa
+}
+


Property changes on: gqrx/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gqrx/trunk/gqrx.desktop
===
--- gqrx/trunk/gqrx.desktop (rev 0)
+++ gqrx/trunk/gqrx.desktop 2014-07-12 22:17:00 UTC (rev 115634)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=GQRX SDR
+GenericName=Funcube SDR Software
+Comment=Controller application for the Funcube Dongle and operating 
application.
+Exec=gqrx
+Icon=gqrx
+Terminal=false
+Type=Application
+Categories=AudioVideo;Audio;HamRadio;
+StartupNotify=false

Added: gqrx/trunk/gqrx.png
===
(Binary files differ)

Index: gqrx/trunk/gqrx.png
===
--- gqrx/trunk/gqrx.png 2014-07-12 20:45:12 UTC (rev 115633)
+++ gqrx/trunk/gqrx.png 2014-07-12 22:17:00 UTC (rev 115634)

Property changes on: gqrx/trunk/gqrx.png
___
Added: svn:mime-type
## -0,0 +1 ##
+image/png
\ No newline at end of property


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

2014-07-12 Thread Kyle Keen
Date: Sunday, July 13, 2014 @ 00:23:39
  Author: kkeen
Revision: 115635

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

Added:
  gqrx/repos/community-i686/
  gqrx/repos/community-i686/PKGBUILD
(from rev 115634, gqrx/trunk/PKGBUILD)
  gqrx/repos/community-i686/gqrx.desktop
(from rev 115634, gqrx/trunk/gqrx.desktop)
  gqrx/repos/community-i686/gqrx.png
(from rev 115634, gqrx/trunk/gqrx.png)
  gqrx/repos/community-x86_64/
  gqrx/repos/community-x86_64/PKGBUILD
(from rev 115634, gqrx/trunk/PKGBUILD)
  gqrx/repos/community-x86_64/gqrx.desktop
(from rev 115634, gqrx/trunk/gqrx.desktop)
  gqrx/repos/community-x86_64/gqrx.png
(from rev 115634, gqrx/trunk/gqrx.png)

---+
 community-i686/PKGBUILD   |   54 
 community-i686/gqrx.desktop   |   10 +++
 community-x86_64/PKGBUILD |   54 
 community-x86_64/gqrx.desktop |   10 +++
 4 files changed, 128 insertions(+)

Copied: gqrx/repos/community-i686/PKGBUILD (from rev 115634, 
gqrx/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-12 22:23:39 UTC (rev 115635)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+
+pkgname=gqrx
+pkgver=2.2.0
+pkgrel=1
+pkgdesc=Interactive SDR receiver waterfall for many devices.
+arch=('i686' 'x86_64')
+url=http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=(https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;
+$pkgname.png
+$pkgname.desktop)
+md5sums=('ff771b9c31ee17f704859398362b8cc0'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+  cd $srcdir
+  cp -r gqrx-2.2.0 gqrx-2.2.0-alsa
+  cd gqrx-2.2.0-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#/' gqrx.pro
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd $srcdir/$pkgname-$pkgver-alsa
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+}
+
+package() {
+  cd $srcdir
+  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 $pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+
+  cd $srcdir/$pkgname-$pkgver/build
+  make install INSTALL_ROOT=$pkgdir
+
+  cd $srcdir/$pkgname-$pkgver-alsa/build
+  install -Dm755 gqrx $pkgdir/usr/bin/gqrx-alsa
+}
+

Copied: gqrx/repos/community-i686/gqrx.desktop (from rev 115634, 
gqrx/trunk/gqrx.desktop)
===
--- community-i686/gqrx.desktop (rev 0)
+++ community-i686/gqrx.desktop 2014-07-12 22:23:39 UTC (rev 115635)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=GQRX SDR
+GenericName=Funcube SDR Software
+Comment=Controller application for the Funcube Dongle and operating 
application.
+Exec=gqrx
+Icon=gqrx
+Terminal=false
+Type=Application
+Categories=AudioVideo;Audio;HamRadio;
+StartupNotify=false

Copied: gqrx/repos/community-i686/gqrx.png (from rev 115634, 
gqrx/trunk/gqrx.png)
===
(Binary files differ)

Copied: gqrx/repos/community-x86_64/PKGBUILD (from rev 115634, 
gqrx/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-12 22:23:39 UTC (rev 115635)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+
+pkgname=gqrx
+pkgver=2.2.0
+pkgrel=1
+pkgdesc=Interactive SDR receiver waterfall for many devices.
+arch=('i686' 'x86_64')
+url=http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=(https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;
+$pkgname.png
+$pkgname.desktop)
+md5sums=('ff771b9c31ee17f704859398362b8cc0'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+  cd $srcdir
+  cp -r gqrx-2.2.0 gqrx-2.2.0-alsa
+  cd gqrx-2.2.0-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#/' gqrx.pro
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd $srcdir/$pkgname-$pkgver-alsa
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+}
+
+package() {
+  cd $srcdir
+  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 $pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+
+  cd $srcdir/$pkgname-$pkgver/build
+  make install INSTALL_ROOT=$pkgdir
+
+  cd 

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

2014-07-12 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 05:26:03
  Author: fyan
Revision: 115636

upgpkg: systemd-swap 2.24-1

Modified:
  systemd-swap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 22:23:39 UTC (rev 115635)
+++ PKGBUILD2014-07-13 03:26:03 UTC (rev 115636)
@@ -3,7 +3,7 @@
 # Contributor: Timofey Titovets nefelim...@gmail.com
 
 pkgname=systemd-swap
-pkgver=2.23.1
+pkgver=2.24
 pkgrel=1
 pkgdesc=Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions.
 arch=('any')



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

2014-07-12 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 05:26:21
  Author: fyan
Revision: 115637

archrelease: copy trunk to community-any

Added:
  systemd-swap/repos/community-any/PKGBUILD
(from rev 115636, systemd-swap/trunk/PKGBUILD)
  systemd-swap/repos/community-any/systemd-swap.install
(from rev 115636, systemd-swap/trunk/systemd-swap.install)
Deleted:
  systemd-swap/repos/community-any/PKGBUILD
  systemd-swap/repos/community-any/systemd-swap.install

--+
 PKGBUILD |   50 -
 systemd-swap.install |6 ++---
 2 files changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 03:26:03 UTC (rev 115636)
+++ PKGBUILD2014-07-13 03:26:21 UTC (rev 115637)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Timofey Titovets nefelim...@gmail.com
-
-pkgname=systemd-swap
-pkgver=2.23.1
-pkgrel=1
-pkgdesc=Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions.
-arch=('any')
-url=https://github.com/TimofeyTitovets/systemd-swap;
-license=('GPL3')
-conflicts=(systemd-loop-swapfile zramswap zram)
-depends=('systemd' 'bash')
-makedepends=('git')
-backup=(etc/systemd-swap.conf)
-install=$pkgname.install
-source=(git://github.com/TimofeyTitovets/systemd-swap.git#tag=$pkgver)
-md5sums=('SKIP')
-
-package() {
-  install -Dm644 $srcdir/$pkgname/90-systemd-swap.conf 
$pkgdir/etc/modprobe.d/90-systemd-swap.conf
-  install -Dm644 $srcdir/$pkgname/systemd-swap.service 
$pkgdir/usr/lib/systemd/system/systemd-swap.service
-  install -Dm755 $srcdir/$pkgname/systemd-swap.sh  
$pkgdir/usr/lib/systemd/scripts/systemd-swap.sh
-  install -Dm644 $srcdir/$pkgname/systemd-swap.conf
$pkgdir/etc/systemd-swap.conf
-}

Copied: systemd-swap/repos/community-any/PKGBUILD (from rev 115636, 
systemd-swap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-13 03:26:21 UTC (rev 115637)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Timofey Titovets nefelim...@gmail.com
+
+pkgname=systemd-swap
+pkgver=2.24
+pkgrel=1
+pkgdesc=Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions.
+arch=('any')
+url=https://github.com/Nefelim4ag/systemd-swap;
+license=('GPL3')
+conflicts=(systemd-loop-swapfile zramswap zram)
+depends=('systemd' 'bash')
+makedepends=('git')
+backup=(etc/systemd-swap.conf)
+install=$pkgname.install
+source=(git://github.com/Nefelim4ag/systemd-swap.git#tag=$pkgver)
+md5sums=('SKIP')
+
+package() {
+  install -Dm644 $srcdir/$pkgname/90-systemd-swap.conf 
$pkgdir/etc/modprobe.d/90-systemd-swap.conf
+  install -Dm644 $srcdir/$pkgname/systemd-swap.service 
$pkgdir/usr/lib/systemd/system/systemd-swap.service
+  install -Dm755 $srcdir/$pkgname/systemd-swap.sh  
$pkgdir/usr/lib/systemd/scripts/systemd-swap.sh
+  install -Dm644 $srcdir/$pkgname/systemd-swap.conf
$pkgdir/etc/systemd-swap.conf
+}

Deleted: systemd-swap.install
===
--- systemd-swap.install2014-07-13 03:26:03 UTC (rev 115636)
+++ systemd-swap.install2014-07-13 03:26:21 UTC (rev 115637)
@@ -1,3 +0,0 @@
-post_install() {
-  echo To enable: sudo systemctl enable systemd-swap. Config in 
/etc/systemd-swap.conf
-}

Copied: systemd-swap/repos/community-any/systemd-swap.install (from rev 115636, 
systemd-swap/trunk/systemd-swap.install)
===
--- systemd-swap.install(rev 0)
+++ systemd-swap.install2014-07-13 03:26:21 UTC (rev 115637)
@@ -0,0 +1,3 @@
+post_install() {
+  echo To enable: sudo systemctl enable systemd-swap. Config in 
/etc/systemd-swap.conf
+}