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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:14:28
  Author: spupykin
Revision: 100974

Added:
  rebar/
  rebar/repos/
  rebar/trunk/
  rebar/trunk/PKGBUILD

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

Added: rebar/trunk/PKGBUILD
===
--- rebar/trunk/PKGBUILD(rev 0)
+++ rebar/trunk/PKGBUILD2013-11-14 09:14:28 UTC (rev 100974)
@@ -0,0 +1,25 @@
+# Maintainer: AeroNotix aaron.l.fra...@gmail.com
+# Contributor: AeroNotix aaron.l.fra...@gmail.com
+
+pkgname=rebar
+pkgver=20131114
+pkgrel=1
+pkgdesc=A sophisticated build-tool for Erlang projects that follows OTP 
principles.
+arch=('i686' 'x86_64')
+url=https://github.com/rebar/rebar;
+license=('APACHE')
+depends=('erlang')
+makedepends=('git')
+source=(git://github.com/rebar/rebar.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/rebar
+  make
+}
+
+package() {
+  cd $srcdir/rebar
+  install -Dm0755 rebar $pkgdir/usr/bin/rebar
+  install -Dm0644 priv/shell-completion/bash/rebar 
$pkgdir/usr/share/bash-completion/completions/rebar
+}



[arch-commits] Commit in (8 files)

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:51:14
  Author: spupykin
Revision: 100975

Added:
  ejabberd-mod_mysql/
  ejabberd-mod_mysql/repos/
  ejabberd-mod_mysql/trunk/
  ejabberd-mod_mysql/trunk/PKGBUILD
  ejabberd-mod_pgsql/
  ejabberd-mod_pgsql/repos/
  ejabberd-mod_pgsql/trunk/
  ejabberd-mod_pgsql/trunk/PKGBUILD

---+
 ejabberd-mod_mysql/trunk/PKGBUILD |   29 +
 ejabberd-mod_pgsql/trunk/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Added: ejabberd-mod_mysql/trunk/PKGBUILD
===
--- ejabberd-mod_mysql/trunk/PKGBUILD   (rev 0)
+++ ejabberd-mod_mysql/trunk/PKGBUILD   2013-11-14 09:51:14 UTC (rev 100975)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 100822 2013-11-11 12:55:23Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=ejabberd-mod_mysql
+pkgver=20131114
+pkgrel=1
+pkgdesc=ejabberd mysql module
+arch=(any)
+url=https://github.com/processone/mysql;
+license=('BSD')
+depends=('ejabberd')
+makedepends=('git' 'rebar')
+options=()
+replaces=('ejabberd-mod_mysql-svn')
+source=(git://github.com/processone/mysql.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/mysql
+  make
+}
+
+package() {
+  cd $srcdir/mysql
+  install -d -m 0755 $pkgdir/usr/lib/ejabberd
+  cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
+  install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Added: ejabberd-mod_pgsql/trunk/PKGBUILD
===
--- ejabberd-mod_pgsql/trunk/PKGBUILD   (rev 0)
+++ ejabberd-mod_pgsql/trunk/PKGBUILD   2013-11-14 09:51:14 UTC (rev 100975)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 100822 2013-11-11 12:55:23Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=ejabberd-mod_pgsql
+pkgver=20131114
+pkgrel=1
+pkgdesc=ejabberd pgsql module
+arch=(any)
+url=https://github.com/processone/pgsql;
+license=('BSD')
+depends=('ejabberd')
+makedepends=('git' 'rebar')
+options=()
+replaces=('ejabberd-mod_pgsql-svn')
+source=(git://github.com/processone/pgsql.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/pgsql
+  make
+}
+
+package() {
+  cd $srcdir/pgsql
+  install -d -m 0755 $pkgdir/usr/lib/ejabberd
+  cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
+  install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}



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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:54:46
  Author: spupykin
Revision: 100977

upgpkg: ejabberd-mod_pgsql 20131114-1

upd

Modified:
  ejabberd-mod_pgsql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 09:54:43 UTC (rev 100976)
+++ PKGBUILD2013-11-14 09:54:46 UTC (rev 100977)
@@ -8,7 +8,7 @@
 pkgdesc=ejabberd pgsql module
 arch=(any)
 url=https://github.com/processone/pgsql;
-license=('BSD')
+license=('custom:ErlangPL')
 depends=('ejabberd')
 makedepends=('git' 'rebar')
 options=()
@@ -25,5 +25,5 @@
   cd $srcdir/pgsql
   install -d -m 0755 $pkgdir/usr/lib/ejabberd
   cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
-  install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -Dm0644 EPLICENSE $pkgdir/usr/share/licenses/$pkgname/EPLICENSE
 }



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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:54:55
  Author: spupykin
Revision: 100978

archrelease: copy trunk to community-any

Added:
  ejabberd-mod_pgsql/repos/community-any/
  ejabberd-mod_pgsql/repos/community-any/PKGBUILD
(from rev 100977, ejabberd-mod_pgsql/trunk/PKGBUILD)

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

Copied: ejabberd-mod_pgsql/repos/community-any/PKGBUILD (from rev 100977, 
ejabberd-mod_pgsql/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-14 09:54:55 UTC (rev 100978)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 100822 2013-11-11 12:55:23Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=ejabberd-mod_pgsql
+pkgver=20131114
+pkgrel=1
+pkgdesc=ejabberd pgsql module
+arch=(any)
+url=https://github.com/processone/pgsql;
+license=('custom:ErlangPL')
+depends=('ejabberd')
+makedepends=('git' 'rebar')
+options=()
+replaces=('ejabberd-mod_pgsql-svn')
+source=(git://github.com/processone/pgsql.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/pgsql
+  make
+}
+
+package() {
+  cd $srcdir/pgsql
+  install -d -m 0755 $pkgdir/usr/lib/ejabberd
+  cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
+  install -Dm0644 EPLICENSE $pkgdir/usr/share/licenses/$pkgname/EPLICENSE
+}



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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:54:43
  Author: spupykin
Revision: 100976

archrelease: copy trunk to community-any

Added:
  ejabberd-mod_mysql/repos/community-any/
  ejabberd-mod_mysql/repos/community-any/PKGBUILD
(from rev 100975, ejabberd-mod_mysql/trunk/PKGBUILD)

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

Copied: ejabberd-mod_mysql/repos/community-any/PKGBUILD (from rev 100975, 
ejabberd-mod_mysql/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-14 09:54:43 UTC (rev 100976)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 100822 2013-11-11 12:55:23Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=ejabberd-mod_mysql
+pkgver=20131114
+pkgrel=1
+pkgdesc=ejabberd mysql module
+arch=(any)
+url=https://github.com/processone/mysql;
+license=('BSD')
+depends=('ejabberd')
+makedepends=('git' 'rebar')
+options=()
+replaces=('ejabberd-mod_mysql-svn')
+source=(git://github.com/processone/mysql.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/mysql
+  make
+}
+
+package() {
+  cd $srcdir/mysql
+  install -d -m 0755 $pkgdir/usr/lib/ejabberd
+  cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
+  install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}



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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:55:08
  Author: spupykin
Revision: 100980

archrelease: copy trunk to community-any

Added:
  rebar/repos/community-any/
  rebar/repos/community-any/PKGBUILD
(from rev 100979, rebar/trunk/PKGBUILD)

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

Copied: rebar/repos/community-any/PKGBUILD (from rev 100979, 
rebar/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-14 09:55:08 UTC (rev 100980)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: AeroNotix aaron.l.fra...@gmail.com
+# Contributor: AeroNotix aaron.l.fra...@gmail.com
+
+pkgname=rebar
+pkgver=20131114
+pkgrel=1
+pkgdesc=A sophisticated build-tool for Erlang projects that follows OTP 
principles.
+arch=('any')
+url=https://github.com/rebar/rebar;
+license=('APACHE')
+depends=('erlang-nox')
+makedepends=('git')
+source=(git://github.com/rebar/rebar.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/rebar
+  make
+}
+
+package() {
+  cd $srcdir/rebar
+  install -Dm0755 rebar $pkgdir/usr/bin/rebar
+  install -Dm0644 priv/shell-completion/bash/rebar 
$pkgdir/usr/share/bash-completion/completions/rebar
+}



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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:54:58
  Author: spupykin
Revision: 100979

upgpkg: rebar 20131114-1

upd

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 09:54:55 UTC (rev 100978)
+++ PKGBUILD2013-11-14 09:54:58 UTC (rev 100979)
@@ -1,3 +1,5 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 # Maintainer: AeroNotix aaron.l.fra...@gmail.com
 # Contributor: AeroNotix aaron.l.fra...@gmail.com
 
@@ -5,10 +7,10 @@
 pkgver=20131114
 pkgrel=1
 pkgdesc=A sophisticated build-tool for Erlang projects that follows OTP 
principles.
-arch=('i686' 'x86_64')
+arch=('any')
 url=https://github.com/rebar/rebar;
 license=('APACHE')
-depends=('erlang')
+depends=('erlang-nox')
 makedepends=('git')
 source=(git://github.com/rebar/rebar.git)
 md5sums=('SKIP')


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


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

2013-11-14 Thread Maxime Gauduin
Date: Thursday, November 14, 2013 @ 11:10:17
  Author: alucryd
Revision: 100981

upgpkg: taskjuggler3 3.5.0-5

Modified:
  taskjuggler3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 09:55:08 UTC (rev 100980)
+++ PKGBUILD2013-11-14 10:10:17 UTC (rev 100981)
@@ -4,10 +4,10 @@
 
 pkgname=taskjuggler3
 pkgver=3.5.0
-pkgrel=4
-pkgdesc=Project Management Software
+pkgrel=5
+pkgdesc='Project Management Software'
 arch=('any')
-url=http://www.taskjuggler.org;
+url='http://www.taskjuggler.org'
 license=('GPL')
 depends=('ruby-mail' 'ruby-term-ansicolor')
 source=(http://rubygems.org/downloads/${pkgname%3}-${pkgver}.gem;
@@ -28,7 +28,7 @@
 
   local _rubyver=$(ruby --version | sed 's/.* \(.*\..*\..*\)p.*/\1/')
 
-  install -dm 755 
${pkgdir}/usr/{lib/ruby/{gems/${_rubyver},vendor_ruby},share/{doc,vim/vimfiles/syntax}}
+  install -dm 755 
${pkgdir}/usr/{lib/ruby/{gems/${_rubyver},vendor_ruby},share/{doc,vim/vimfiles/{ftdetect,syntax}}}
   mv bin ${pkgdir}/usr/
   mv lib ${pkgdir}/usr/lib/ruby/vendor_ruby/${_rubyver}
 
@@ -37,6 +37,7 @@
 
 # Vim syntax
   mv data/tjp.vim ${pkgdir}/usr/share/vim/vimfiles/syntax/
+  echo 'au! BufNewFile,BufRead *.tjp,*.tji set ft=tjp'  
${pkgdir}/usr/share/vim/vimfiles/ftdetect/tjp.vim
 
 # Data
   mv data ${pkgdir}/usr/share/${pkgname%3}



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

2013-11-14 Thread Maxime Gauduin
Date: Thursday, November 14, 2013 @ 11:10:26
  Author: alucryd
Revision: 100982

archrelease: copy trunk to community-any

Added:
  taskjuggler3/repos/community-any/PKGBUILD
(from rev 100981, taskjuggler3/trunk/PKGBUILD)
  taskjuggler3/repos/community-any/tj-system-dirs.patch
(from rev 100981, taskjuggler3/trunk/tj-system-dirs.patch)
Deleted:
  taskjuggler3/repos/community-any/PKGBUILD
  taskjuggler3/repos/community-any/tj-system-dirs.patch

--+
 PKGBUILD |   99 -
 tj-system-dirs.patch |   86 +-
 2 files changed, 93 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-14 10:10:17 UTC (rev 100981)
+++ PKGBUILD2013-11-14 10:10:26 UTC (rev 100982)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Mathieu Clabaut mathieu.clab...@gmail.com
-
-pkgname=taskjuggler3
-pkgver=3.5.0
-pkgrel=4
-pkgdesc=Project Management Software
-arch=('any')
-url=http://www.taskjuggler.org;
-license=('GPL')
-depends=('ruby-mail' 'ruby-term-ansicolor')
-source=(http://rubygems.org/downloads/${pkgname%3}-${pkgver}.gem;
-'tj-system-dirs.patch')
-noextract=(${pkgname%3}-${pkgver}.gem)
-sha256sums=('42f2e81470be9b2486fc074ba6ff04180258f462fed5c46cba871b7518cd0465'
-'8174f62598b4230df033feb213e5ec25bc6d3105c71455a88514eaff3db0410a')
-
-prepare() {
-  gem install --no-{document,user-install} --ignore-dependencies -i . 
${pkgname%3}-${pkgver}.gem
-
-  cd gems/${pkgname%3}-${pkgver}
-  patch -Np1 -i ../../tj-system-dirs.patch
-}
-
-package() {
-  cd gems/${pkgname%3}-${pkgver}
-
-  local _rubyver=$(ruby --version | sed 's/.* \(.*\..*\..*\)p.*/\1/')
-
-  install -dm 755 
${pkgdir}/usr/{lib/ruby/{gems/${_rubyver},vendor_ruby},share/{doc,vim/vimfiles/syntax}}
-  mv bin ${pkgdir}/usr/
-  mv lib ${pkgdir}/usr/lib/ruby/vendor_ruby/${_rubyver}
-
-# Gem compatibility
-  mv ../../specifications ${pkgdir}/usr/lib/ruby/gems/${_rubyver}/
-
-# Vim syntax
-  mv data/tjp.vim ${pkgdir}/usr/share/vim/vimfiles/syntax/
-
-# Data
-  mv data ${pkgdir}/usr/share/${pkgname%3}
-  mv examples ${pkgdir}/usr/share/${pkgname%3}/
-
-# Documentation
-  mv manual ${pkgdir}/usr/share/doc/${pkgname%3}
-}
-
-# vim: ts=2 sw=2 et:

Copied: taskjuggler3/repos/community-any/PKGBUILD (from rev 100981, 
taskjuggler3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-14 10:10:26 UTC (rev 100982)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Mathieu Clabaut mathieu.clab...@gmail.com
+
+pkgname=taskjuggler3
+pkgver=3.5.0
+pkgrel=5
+pkgdesc='Project Management Software'
+arch=('any')
+url='http://www.taskjuggler.org'
+license=('GPL')
+depends=('ruby-mail' 'ruby-term-ansicolor')
+source=(http://rubygems.org/downloads/${pkgname%3}-${pkgver}.gem;
+'tj-system-dirs.patch')
+noextract=(${pkgname%3}-${pkgver}.gem)
+sha256sums=('42f2e81470be9b2486fc074ba6ff04180258f462fed5c46cba871b7518cd0465'
+'8174f62598b4230df033feb213e5ec25bc6d3105c71455a88514eaff3db0410a')
+
+prepare() {
+  gem install --no-{document,user-install} --ignore-dependencies -i . 
${pkgname%3}-${pkgver}.gem
+
+  cd gems/${pkgname%3}-${pkgver}
+  patch -Np1 -i ../../tj-system-dirs.patch
+}
+
+package() {
+  cd gems/${pkgname%3}-${pkgver}
+
+  local _rubyver=$(ruby --version | sed 's/.* \(.*\..*\..*\)p.*/\1/')
+
+  install -dm 755 
${pkgdir}/usr/{lib/ruby/{gems/${_rubyver},vendor_ruby},share/{doc,vim/vimfiles/{ftdetect,syntax}}}
+  mv bin ${pkgdir}/usr/
+  mv lib ${pkgdir}/usr/lib/ruby/vendor_ruby/${_rubyver}
+
+# Gem compatibility
+  mv ../../specifications ${pkgdir}/usr/lib/ruby/gems/${_rubyver}/
+
+# Vim syntax
+  mv data/tjp.vim ${pkgdir}/usr/share/vim/vimfiles/syntax/
+  echo 'au! BufNewFile,BufRead *.tjp,*.tji set ft=tjp'  
${pkgdir}/usr/share/vim/vimfiles/ftdetect/tjp.vim
+
+# Data
+  mv data ${pkgdir}/usr/share/${pkgname%3}
+  mv examples ${pkgdir}/usr/share/${pkgname%3}/
+
+# Documentation
+  mv manual ${pkgdir}/usr/share/doc/${pkgname%3}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: tj-system-dirs.patch
===
--- tj-system-dirs.patch2013-11-14 10:10:17 UTC (rev 100981)
+++ tj-system-dirs.patch2013-11-14 10:10:26 UTC (rev 100982)
@@ -1,43 +0,0 @@
-From af46d6b1a731a3e2c3dc7aedcaf8dfe8291a4ab7 Mon Sep 17 00:00:00 2001
-From: Maxime Gauduin aluc...@gmail.com
-Date: Wed, 25 Sep 2013 10:42:57 +0200
-Subject: [PATCH] Look for data and manual in system dirs
-
-Signed-off-by: Maxime Gauduin aluc...@gmail.com

- lib/taskjuggler/AppConfig.rb   | 2 ++
- lib/taskjuggler/apps/Tj3Man.rb | 5 ++---
- 2 files changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/lib/taskjuggler/AppConfig.rb 

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

2013-11-14 Thread Maxime Gauduin
Date: Thursday, November 14, 2013 @ 11:38:46
  Author: alucryd
Revision: 100984

archrelease: copy trunk to community-any

Added:
  puddletag/repos/community-any/PKGBUILD
(from rev 100983, puddletag/trunk/PKGBUILD)
Deleted:
  puddletag/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-14 10:38:37 UTC (rev 100983)
+++ PKGBUILD2013-11-14 10:38:46 UTC (rev 100984)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Lucky archli...@builds.lucky.li
-# Contributor: Farhad Shahbazi far...@enthusiasm.cc
-
-pkgname=puddletag
-pkgver=1.0.2rc1
-pkgrel=2
-pkgdesc=A tag editor for GNU/Linux
-url=http://puddletag.sourceforge.net;
-license=(GPL)
-arch=(any)
-depends=(chromaprint mutagen python2-configobj python2-musicbrainz2 
python2-pyparsing python2-pyqt4)
-optdepends=(python2-pillow: FLAC cover art
-quodlibet: QuodLibet library support)
-source=(http://downloads.sourceforge.net/project/${pkgname}/dev/${pkgname}-${pkgver^^}.tar.gz;)
-sha256sums=('1dc1e336de5c0e07d4d1f5ef7549f8214807357454b31b055a21260fc1f39a6c')
-
-prepare() {
-  cd ${pkgname}-${pkgver^^}
-
-  sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
-}
-
-build() {
-  cd ${pkgname}-${pkgver^^}
-
-  python2 setup.py config
-}
-
-package() {
-  cd ${pkgname}-${pkgver^^}
-
-  python2 setup.py install --prefix=${pkgdir}/usr --optimize=1
-}
-
-# vim: ts=2 sw=2 et:

Copied: puddletag/repos/community-any/PKGBUILD (from rev 100983, 
puddletag/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-14 10:38:46 UTC (rev 100984)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Lucky archli...@builds.lucky.li
+# Contributor: Farhad Shahbazi far...@enthusiasm.cc
+
+pkgname=puddletag
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A tag editor for GNU/Linux'
+url='http://puddletag.sourceforge.net'
+license=('GPL')
+arch=('any')
+depends=('chromaprint' 'mutagen' 'python2-configobj' 'python2-musicbrainz2' 
'python2-pyparsing' 'python2-pyqt4')
+optdepends=('python2-pillow: FLAC cover art'
+'quodlibet: QuodLibet library support')
+source=(http://sourceforge.net/projects/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('37570639908a0f13a2ef78f9d15782d9c6e981f70951acbe5f238dbe711bc2b1')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  python2 setup.py config
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  python2 setup.py install --prefix=${pkgdir}/usr --optimize='1'
+}
+
+# vim: ts=2 sw=2 et:



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

2013-11-14 Thread Maxime Gauduin
Date: Thursday, November 14, 2013 @ 11:38:37
  Author: alucryd
Revision: 100983

upgpkg: puddletag 1.0.2-1

Modified:
  puddletag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 10:10:26 UTC (rev 100982)
+++ PKGBUILD2013-11-14 10:38:37 UTC (rev 100983)
@@ -4,34 +4,34 @@
 # Contributor: Farhad Shahbazi far...@enthusiasm.cc
 
 pkgname=puddletag
-pkgver=1.0.2rc1
-pkgrel=2
-pkgdesc=A tag editor for GNU/Linux
-url=http://puddletag.sourceforge.net;
-license=(GPL)
-arch=(any)
-depends=(chromaprint mutagen python2-configobj python2-musicbrainz2 
python2-pyparsing python2-pyqt4)
-optdepends=(python2-pillow: FLAC cover art
-quodlibet: QuodLibet library support)
-source=(http://downloads.sourceforge.net/project/${pkgname}/dev/${pkgname}-${pkgver^^}.tar.gz;)
-sha256sums=('1dc1e336de5c0e07d4d1f5ef7549f8214807357454b31b055a21260fc1f39a6c')
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A tag editor for GNU/Linux'
+url='http://puddletag.sourceforge.net'
+license=('GPL')
+arch=('any')
+depends=('chromaprint' 'mutagen' 'python2-configobj' 'python2-musicbrainz2' 
'python2-pyparsing' 'python2-pyqt4')
+optdepends=('python2-pillow: FLAC cover art'
+'quodlibet: QuodLibet library support')
+source=(http://sourceforge.net/projects/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('37570639908a0f13a2ef78f9d15782d9c6e981f70951acbe5f238dbe711bc2b1')
 
 prepare() {
-  cd ${pkgname}-${pkgver^^}
+  cd ${pkgname}-${pkgver}
 
   sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
 }
 
 build() {
-  cd ${pkgname}-${pkgver^^}
+  cd ${pkgname}-${pkgver}
 
   python2 setup.py config
 }
 
 package() {
-  cd ${pkgname}-${pkgver^^}
+  cd ${pkgname}-${pkgver}
 
-  python2 setup.py install --prefix=${pkgdir}/usr --optimize=1
+  python2 setup.py install --prefix=${pkgdir}/usr --optimize='1'
 }
 
 # vim: ts=2 sw=2 et:



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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:04:32
  Author: tpowa
Revision: 199523

db-move: moved linux from [testing] to [core] (i686, x86_64)

Added:
  linux/repos/core-i686/PKGBUILD
(from rev 199522, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 199522, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 199522, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 199522, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/criu-no-expert.patch
(from rev 199522, linux/repos/testing-i686/criu-no-expert.patch)
  linux/repos/core-i686/linux.install
(from rev 199522, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 199522, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/PKGBUILD
(from rev 199522, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 199522, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 199522, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 199522, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/criu-no-expert.patch
(from rev 199522, linux/repos/testing-x86_64/criu-no-expert.patch)
  linux/repos/core-x86_64/linux.install
(from rev 199522, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 199522, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/3.11-haswell-intel_pstate.patch
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.3.12
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/config.x86_64.3.12
  linux/repos/core-i686/criu-no-expert.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/3.11-haswell-intel_pstate.patch
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.3.12
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/config.x86_64.3.12
  linux/repos/core-x86_64/criu-no-expert.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

---+
 /PKGBUILD |  680 +
 /change-default-console-loglevel.patch|   24 
 /config   |12960 
 /config.x86_64|12560 +++
 /criu-no-expert.patch |   44 
 /linux.install|   62 
 /linux.preset |   28 
 core-i686/3.11-haswell-intel_pstate.patch |   32 
 core-i686/PKGBUILD|  343 
 core-i686/change-default-console-loglevel.patch   |   12 
 core-i686/config  | 6432 -
 core-i686/config.3.12 | 6475 -
 core-i686/config.x86_64   | 6235 -
 core-i686/config.x86_64.3.12  | 6275 -
 core-i686/criu-no-expert.patch|   22 
 core-i686/linux.install   |   31 
 core-i686/linux.preset|   14 
 core-x86_64/3.11-haswell-intel_pstate.patch   |   32 
 core-x86_64/PKGBUILD  |  343 
 core-x86_64/change-default-console-loglevel.patch |   12 
 core-x86_64/config| 6432 -
 core-x86_64/config.3.12   | 6475 -
 core-x86_64/config.x86_64 | 6235 -
 core-x86_64/config.x86_64.3.12| 6275 -
 core-x86_64/criu-no-expert.patch  |   22 
 core-x86_64/linux.install |   31 
 core-x86_64/linux.preset  |   14 
 27 files changed, 26358 insertions(+), 51742 deletions(-)

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


[arch-commits] Commit in nvidia-304xx/repos (14 files)

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:04:53
  Author: tpowa
Revision: 199525

db-move: moved nvidia-304xx from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 199523, nvidia-304xx/repos/testing-i686/PKGBUILD)
  nvidia-304xx/repos/extra-i686/nvidia-linux-3.11.patch
(from rev 199523, nvidia-304xx/repos/testing-i686/nvidia-linux-3.11.patch)
  nvidia-304xx/repos/extra-i686/nvidia.install
(from rev 199523, nvidia-304xx/repos/testing-i686/nvidia.install)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 199523, nvidia-304xx/repos/testing-x86_64/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/nvidia-linux-3.11.patch
(from rev 199523, nvidia-304xx/repos/testing-x86_64/nvidia-linux-3.11.patch)
  nvidia-304xx/repos/extra-x86_64/nvidia.install
(from rev 199523, nvidia-304xx/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/nvidia-linux-3.11.patch
  nvidia-304xx/repos/extra-i686/nvidia.install
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/nvidia-linux-3.11.patch
  nvidia-304xx/repos/extra-x86_64/nvidia.install
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-x86_64/

--+
 /PKGBUILD|  102 +
 /nvidia-linux-3.11.patch |   50 
 /nvidia.install  |   30 +
 extra-i686/PKGBUILD  |   51 
 extra-i686/nvidia-linux-3.11.patch   |   25 
 extra-i686/nvidia.install|   15 
 extra-x86_64/PKGBUILD|   51 
 extra-x86_64/nvidia-linux-3.11.patch |   25 
 extra-x86_64/nvidia.install  |   15 
 9 files changed, 182 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-14 11:04:51 UTC (rev 199524)
+++ extra-i686/PKGBUILD 2013-11-14 11:04:53 UTC (rev 199525)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia-304xx
-pkgver=304.108
-_extramodules=extramodules-3.11-ARCH
-pkgrel=9
-pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.11' 'linux3.12' nvidia-304xx-utils=${pkgver})
-makedepends=('linux-headers=3.11' 'linux-headers3.12')
-conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-source=('nvidia-linux-3.11.patch')
-md5sums=('5c962760de069ed4ad34e64d5988686a')
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums+=('ef453e32515c2176c67ebd95c770dc0e')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums+=('4e0e54de6735023f44c858a3006b3e18')
-fi
-
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${_pkg}/kernel
-patch -Np2 -i ${srcdir}/nvidia-linux-3.11.patch
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-
-# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
-}

Copied: nvidia-304xx/repos/extra-i686/PKGBUILD (from rev 199523, 
nvidia-304xx/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-14 11:04:53 UTC (rev 199525)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia-304xx
+pkgver=304.108
+_extramodules=extramodules-3.12-ARCH
+pkgrel=10
+pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.12' 'linux3.13' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-headers=3.12' 'linux-headers3.13')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=('nvidia-linux-3.11.patch')
+md5sums=('5c962760de069ed4ad34e64d5988686a')
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+

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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:04:51
  Author: tpowa
Revision: 199524

db-move: moved nvidia from [testing] to [extra] (i686, x86_64)

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 199523, nvidia/repos/testing-i686/PKGBUILD)
  nvidia/repos/extra-i686/nvidia-linux-3.12.patch
(from rev 199523, nvidia/repos/testing-i686/nvidia-linux-3.12.patch)
  nvidia/repos/extra-i686/nvidia.install
(from rev 199523, nvidia/repos/testing-i686/nvidia.install)
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 199523, nvidia/repos/testing-x86_64/PKGBUILD)
  nvidia/repos/extra-x86_64/nvidia-linux-3.12.patch
(from rev 199523, nvidia/repos/testing-x86_64/nvidia-linux-3.12.patch)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 199523, nvidia/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/nvidia-linux-3.11.patch
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/nvidia-linux-3.11.patch
  nvidia/repos/extra-x86_64/nvidia.install
  nvidia/repos/testing-i686/
  nvidia/repos/testing-x86_64/

--+
 /PKGBUILD|  104 +
 /nvidia.install  |   36 +++
 extra-i686/PKGBUILD  |   48 ---
 extra-i686/nvidia-linux-3.11.patch   |   25 ---
 extra-i686/nvidia-linux-3.12.patch   |   40 
 extra-i686/nvidia.install|   18 -
 extra-x86_64/PKGBUILD|   48 ---
 extra-x86_64/nvidia-linux-3.11.patch |   25 ---
 extra-x86_64/nvidia-linux-3.12.patch |   40 
 extra-x86_64/nvidia.install  |   18 -
 10 files changed, 220 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-14 11:04:32 UTC (rev 199523)
+++ extra-i686/PKGBUILD 2013-11-14 11:04:51 UTC (rev 199524)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=325.15
-_extramodules=extramodules-3.11-ARCH
-pkgrel=10
-pkgdesc=NVIDIA drivers for linux
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.11' 'linux3.12' nvidia-libgl nvidia-utils=${pkgver})
-makedepends=('linux-headers=3.11' 'linux-headers3.12')
-conflicts=('nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-source=('nvidia-linux-3.11.patch')
-md5sums=('5c962760de069ed4ad34e64d5988686a')
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums+=('528fc538584de6446384b9cec3099d6c')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums+=('63b2caa0cb128efa1a7808d7bddb2074')
-fi
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${_pkg}/kernel
-patch -Np2 -i ${srcdir}/nvidia-linux-3.11.patch
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-}

Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 199523, 
nvidia/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-14 11:04:51 UTC (rev 199524)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=325.15
+_extramodules=extramodules-3.12-ARCH
+pkgrel=11
+pkgdesc=NVIDIA drivers for linux
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.12' 'linux3.13' nvidia-libgl nvidia-utils=${pkgver})
+makedepends=('linux-headers=3.12' 'linux-headers3.13')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=('nvidia-linux-3.12.patch')
+md5sums=('d267069bc456de269424b4e1b46a3745')
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('528fc538584de6446384b9cec3099d6c')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+

[arch-commits] Commit in lirc/repos (54 files)

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:04:55
  Author: tpowa
Revision: 199526

db-move: moved lirc from [testing] to [extra] (i686, x86_64)

Added:
  lirc/repos/extra-i686/PKGBUILD
(from rev 199523, lirc/repos/testing-i686/PKGBUILD)
  lirc/repos/extra-i686/irexec.service
(from rev 199523, lirc/repos/testing-i686/irexec.service)
  lirc/repos/extra-i686/kernel-2.6.39.patch
(from rev 199523, lirc/repos/testing-i686/kernel-2.6.39.patch)
  lirc/repos/extra-i686/linux-3.8.patch
(from rev 199523, lirc/repos/testing-i686/linux-3.8.patch)
  lirc/repos/extra-i686/lirc-utils.install
(from rev 199523, lirc/repos/testing-i686/lirc-utils.install)
  lirc/repos/extra-i686/lirc.install
(from rev 199523, lirc/repos/testing-i686/lirc.install)
  lirc/repos/extra-i686/lirc.logrotate
(from rev 199523, lirc/repos/testing-i686/lirc.logrotate)
  lirc/repos/extra-i686/lirc.service
(from rev 199523, lirc/repos/testing-i686/lirc.service)
  lirc/repos/extra-i686/lirc.tmpfiles
(from rev 199523, lirc/repos/testing-i686/lirc.tmpfiles)
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
(from rev 199523, lirc/repos/testing-i686/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-i686/lirc_wpc8769l.patch
(from rev 199523, lirc/repos/testing-i686/lirc_wpc8769l.patch)
  lirc/repos/extra-i686/lircd-handle-large-config.patch
(from rev 199523, lirc/repos/testing-i686/lircd-handle-large-config.patch)
  lirc/repos/extra-i686/lircm.service
(from rev 199523, lirc/repos/testing-i686/lircm.service)
  lirc/repos/extra-x86_64/PKGBUILD
(from rev 199523, lirc/repos/testing-x86_64/PKGBUILD)
  lirc/repos/extra-x86_64/irexec.service
(from rev 199523, lirc/repos/testing-x86_64/irexec.service)
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
(from rev 199523, lirc/repos/testing-x86_64/kernel-2.6.39.patch)
  lirc/repos/extra-x86_64/linux-3.8.patch
(from rev 199523, lirc/repos/testing-x86_64/linux-3.8.patch)
  lirc/repos/extra-x86_64/lirc-utils.install
(from rev 199523, lirc/repos/testing-x86_64/lirc-utils.install)
  lirc/repos/extra-x86_64/lirc.install
(from rev 199523, lirc/repos/testing-x86_64/lirc.install)
  lirc/repos/extra-x86_64/lirc.logrotate
(from rev 199523, lirc/repos/testing-x86_64/lirc.logrotate)
  lirc/repos/extra-x86_64/lirc.service
(from rev 199523, lirc/repos/testing-x86_64/lirc.service)
  lirc/repos/extra-x86_64/lirc.tmpfiles
(from rev 199523, lirc/repos/testing-x86_64/lirc.tmpfiles)
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
(from rev 199523, lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
(from rev 199523, lirc/repos/testing-x86_64/lirc_wpc8769l.patch)
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
(from rev 199523, lirc/repos/testing-x86_64/lircd-handle-large-config.patch)
  lirc/repos/extra-x86_64/lircm.service
(from rev 199523, lirc/repos/testing-x86_64/lircm.service)
Deleted:
  lirc/repos/extra-i686/PKGBUILD
  lirc/repos/extra-i686/irexec.service
  lirc/repos/extra-i686/kernel-2.6.39.patch
  lirc/repos/extra-i686/linux-3.8.patch
  lirc/repos/extra-i686/lirc-utils.install
  lirc/repos/extra-i686/lirc.install
  lirc/repos/extra-i686/lirc.logrotate
  lirc/repos/extra-i686/lirc.service
  lirc/repos/extra-i686/lirc.tmpfiles
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
  lirc/repos/extra-i686/lirc_wpc8769l.patch
  lirc/repos/extra-i686/lircd-handle-large-config.patch
  lirc/repos/extra-i686/lircm.service
  lirc/repos/extra-x86_64/PKGBUILD
  lirc/repos/extra-x86_64/irexec.service
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
  lirc/repos/extra-x86_64/linux-3.8.patch
  lirc/repos/extra-x86_64/lirc-utils.install
  lirc/repos/extra-x86_64/lirc.install
  lirc/repos/extra-x86_64/lirc.logrotate
  lirc/repos/extra-x86_64/lirc.service
  lirc/repos/extra-x86_64/lirc.tmpfiles
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
  lirc/repos/extra-x86_64/lircm.service
  lirc/repos/testing-i686/
  lirc/repos/testing-x86_64/

--+
 /PKGBUILD|  232 +
 /irexec.service  |   22 ++
 /kernel-2.6.39.patch |  108 +++
 /linux-3.8.patch |  160 +
 /lirc-utils.install  |   14 +
 /lirc.install|   32 +++
 /lirc.logrotate  |   10 +
 /lirc.service|   24 ++
 /lirc.tmpfiles   |2 
 /lirc_atiusb-kfifo.patch |   62 ++
 /lirc_wpc8769l.patch |  176 ++
 /lircd-handle-large-config.patch |   78 
 /lircm.service   |   24 ++
 extra-i686/PKGBUILD   

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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:12:53
  Author: tpowa
Revision: 100985

db-move: moved bbswitch from [community-testing] to [community] (i686, x86_64)

Added:
  bbswitch/repos/community-i686/PKGBUILD
(from rev 100984, bbswitch/repos/community-testing-i686/PKGBUILD)
  bbswitch/repos/community-i686/bbswitch.install
(from rev 100984, bbswitch/repos/community-testing-i686/bbswitch.install)
  bbswitch/repos/community-x86_64/PKGBUILD
(from rev 100984, bbswitch/repos/community-testing-x86_64/PKGBUILD)
  bbswitch/repos/community-x86_64/bbswitch.install
(from rev 100984, bbswitch/repos/community-testing-x86_64/bbswitch.install)
Deleted:
  bbswitch/repos/community-i686/PKGBUILD
  bbswitch/repos/community-i686/bbswitch.install
  bbswitch/repos/community-testing-i686/
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-x86_64/PKGBUILD
  bbswitch/repos/community-x86_64/bbswitch.install

---+
 /PKGBUILD |   64 
 /bbswitch.install |   24 +
 community-i686/PKGBUILD   |   32 --
 community-i686/bbswitch.install   |   12 --
 community-x86_64/PKGBUILD |   32 --
 community-x86_64/bbswitch.install |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-14 10:38:46 UTC (rev 100984)
+++ community-i686/PKGBUILD 2013-11-14 11:12:53 UTC (rev 100985)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: M0Rf30
-# Contributor: Samsagax samsa...@gmail.com
-
-pkgname=bbswitch
-pkgver=0.7
-_extramodules=extramodules-3.11-ARCH # Don't forget to update bbswitch.install
-pkgrel=17
-pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
-arch=('i686' 'x86_64')
-url=(http://github.com/Bumblebee-Project/bbswitch;)
-license=('GPL')
-depends=('linux=3.11' 'linux3.12')
-makedepends=('linux-headers=3.11' 'linux-headers3.12')
-install=bbswitch.install
-source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
-md5sums=('b9df5ea40109ef9766448a0577c798e6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-
-  make KDIR=/usr/src/linux-${_kernver}
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-   
-  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
-  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
-}

Copied: bbswitch/repos/community-i686/PKGBUILD (from rev 100984, 
bbswitch/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 11:12:53 UTC (rev 100985)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: M0Rf30
+# Contributor: Samsagax samsa...@gmail.com
+
+pkgname=bbswitch
+pkgver=0.7
+_extramodules=extramodules-3.12-ARCH # Don't forget to update bbswitch.install
+pkgrel=18
+pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
+arch=('i686' 'x86_64')
+url=(http://github.com/Bumblebee-Project/bbswitch;)
+license=('GPL')
+depends=('linux=3.12' 'linux3.13')
+makedepends=('linux-headers=3.12' 'linux-headers3.13')
+install=bbswitch.install
+source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('b9df5ea40109ef9766448a0577c798e6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KDIR=/usr/src/linux-${_kernver}
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
+}

Deleted: community-i686/bbswitch.install
===
--- community-i686/bbswitch.install 2013-11-14 10:38:46 UTC (rev 100984)
+++ community-i686/bbswitch.install 2013-11-14 11:12:53 UTC (rev 100985)
@@ -1,12 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.11-ARCH'
-depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bbswitch/repos/community-i686/bbswitch.install (from rev 100984, 
bbswitch/repos/community-testing-i686/bbswitch.install)
===
--- community-i686/bbswitch.install (rev 0)
+++ community-i686/bbswitch.install 2013-11-14 11:12:53 UTC (rev 100985)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+  

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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:12:54
  Author: tpowa
Revision: 100986

db-move: moved r8168 from [community-testing] to [community] (i686, x86_64)

Added:
  r8168/repos/community-i686/PKGBUILD
(from rev 100984, r8168/repos/community-testing-i686/PKGBUILD)
  r8168/repos/community-i686/r8168.install
(from rev 100984, r8168/repos/community-testing-i686/r8168.install)
  r8168/repos/community-x86_64/PKGBUILD
(from rev 100984, r8168/repos/community-testing-x86_64/PKGBUILD)
  r8168/repos/community-x86_64/r8168.install
(from rev 100984, r8168/repos/community-testing-x86_64/r8168.install)
Deleted:
  r8168/repos/community-i686/PKGBUILD
  r8168/repos/community-i686/r8168.install
  r8168/repos/community-testing-i686/
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-x86_64/PKGBUILD
  r8168/repos/community-x86_64/r8168.install

+
 /PKGBUILD  |   90 +++
 /r8168.install |   34 ++
 community-i686/PKGBUILD|   45 ---
 community-i686/r8168.install   |   17 ---
 community-x86_64/PKGBUILD  |   45 ---
 community-x86_64/r8168.install |   17 ---
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-14 11:12:53 UTC (rev 100985)
+++ community-i686/PKGBUILD 2013-11-14 11:12:54 UTC (rev 100986)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Bob Fanger  bfanger(at)gmail 
-# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
-
-pkgname=r8168
-pkgver=8.037.00
-pkgrel=1
-pkgdesc=A kernel module for Realtek 8168 network cards
-url=http://www.realtek.com.tw;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('glibc' 'linux')
-makedepends=('linux-headers')
-source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
-install=$pkgname.install
-
-build() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-
-   cd $pkgname-$pkgver
-
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
-   SUBDIRS=$srcdir/$pkgname-$pkgver/src \
-   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   depends=(linux=3.${_kernver} linux3.$(expr ${_kernver} + 1))
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-   msg Kernel = $KERNEL_VERSION
-
-   cd $pkgname-$pkgver
-   install -Dm644 src/$pkgname.ko 
$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko
-   find $pkgdir -name '*.ko' -exec gzip -9 {} +
-
-   sed -i s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH| 
$startdir/$pkgname.install
-}
-
-sha256sums=('06aa1c6a58a878450798100eb5f9c3d87763c5f41e99b7d5f3b2fe78646d02b0')

Copied: r8168/repos/community-i686/PKGBUILD (from rev 100984, 
r8168/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 11:12:54 UTC (rev 100986)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Bob Fanger  bfanger(at)gmail 
+# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
+
+pkgname=r8168
+pkgver=8.037.00
+pkgrel=2
+pkgdesc=A kernel module for Realtek 8168 network cards
+url=http://www.realtek.com.tw;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
+install=$pkgname.install
+
+build() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
+
+   cd $pkgname-$pkgver
+
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
+   SUBDIRS=$srcdir/$pkgname-$pkgver/src \
+   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+   depends=(linux=3.${_kernver} linux3.$(expr ${_kernver} + 1))
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
+   msg Kernel = $KERNEL_VERSION
+
+   cd $pkgname-$pkgver
+   install -Dm644 src/$pkgname.ko 

[arch-commits] Commit in rt3562sta/repos (46 files)

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:12:58
  Author: tpowa
Revision: 100987

db-move: moved rt3562sta from [community-testing] to [community] (i686, x86_64)

Added:
  rt3562sta/repos/community-i686/PKGBUILD
(from rev 100984, rt3562sta/repos/community-testing-i686/PKGBUILD)
  rt3562sta/repos/community-i686/linux-3.8.patch
(from rev 100984, rt3562sta/repos/community-testing-i686/linux-3.8.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 100984, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-i686/rt3562sta.install
(from rev 100984, rt3562sta/repos/community-testing-i686/rt3562sta.install)
  rt3562sta/repos/community-x86_64/PKGBUILD
(from rev 100984, rt3562sta/repos/community-testing-x86_64/PKGBUILD)
  rt3562sta/repos/community-x86_64/linux-3.8.patch
(from rev 100984, rt3562sta/repos/community-testing-x86_64/linux-3.8.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-x86_64/rt3562sta.install
(from rev 100984, 
rt3562sta/repos/community-testing-x86_64/rt3562sta.install)
Deleted:
  rt3562sta/repos/community-i686/PKGBUILD
  rt3562sta/repos/community-i686/linux-3.8.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
  rt3562sta/repos/community-i686/rt3562sta.install
  rt3562sta/repos/community-testing-i686/
  rt3562sta/repos/community-testing-x86_64/
  rt3562sta/repos/community-x86_64/PKGBUILD
  rt3562sta/repos/community-x86_64/linux-3.8.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
  

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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:12:59
  Author: tpowa
Revision: 100988

db-move: moved tp_smapi from [community-testing] to [community] (i686, x86_64)

Added:
  tp_smapi/repos/community-i686/PKGBUILD
(from rev 100984, tp_smapi/repos/community-testing-i686/PKGBUILD)
  tp_smapi/repos/community-i686/tp_smapi.install
(from rev 100984, tp_smapi/repos/community-testing-i686/tp_smapi.install)
  tp_smapi/repos/community-x86_64/PKGBUILD
(from rev 100984, tp_smapi/repos/community-testing-x86_64/PKGBUILD)
  tp_smapi/repos/community-x86_64/tp_smapi.install
(from rev 100984, tp_smapi/repos/community-testing-x86_64/tp_smapi.install)
Deleted:
  tp_smapi/repos/community-i686/PKGBUILD
  tp_smapi/repos/community-i686/tp_smapi.install
  tp_smapi/repos/community-testing-i686/
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-x86_64/PKGBUILD
  tp_smapi/repos/community-x86_64/tp_smapi.install

---+
 /PKGBUILD |  118 
 /tp_smapi.install |   26 +++
 community-i686/PKGBUILD   |   59 --
 community-i686/tp_smapi.install   |   13 ---
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/tp_smapi.install |   13 ---
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-14 11:12:58 UTC (rev 100987)
+++ community-i686/PKGBUILD 2013-11-14 11:12:59 UTC (rev 100988)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
-# Contributor: Nick B Shirakawasuna ð gmail đ com
-# Contributor: Christof Musik christof ð senfdax đ de
-# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
-# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
-
-pkgname=tp_smapi
-pkgver=0.41
-pkgrel=38
-pkgdesc=Modules for ThinkPad's SMAPI functionality
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux=3.11' 'linux3.12')
-makedepends=('linux-headers=3.11' 'linux-headers3.12')
-install=${pkgname}.install
-source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('63c683415c764568f6bf17c7eabe4752')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
- -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
-
-  make HDAPS=1
-}
-
-package() {
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  make -C ${_extramodules%/*}/${_kernver}/build \
-INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
-M=${srcdir}/${pkgname}-${pkgver} modules_install
-
-  cd ${pkgdir}/${_extramodules%/*}
-  mv ${_kernver}/extra ${_extramodules##*/}
-  rmdir ${_kernver}
-
-  # compress kernel modules
-  find ${pkgdir} -name *.ko -exec gzip -9 {} +
-
-  # load module on startup
-  echo tp_smapi  ${srcdir}/${pkgname}.conf
-  install -Dm644 ${srcdir}/${pkgname}.conf 
${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
-
-  # update kernel version in install file
-  sed -ri s#^(extramodules=).*\$#\1${_extramodules}# 
${startdir}/${pkgname}.install
-}

Copied: tp_smapi/repos/community-i686/PKGBUILD (from rev 100984, 
tp_smapi/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 11:12:59 UTC (rev 100988)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi
+pkgver=0.41
+pkgrel=39
+pkgdesc=Modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux=3.12' 'linux3.13')
+makedepends=('linux-headers=3.12' 'linux-headers3.13')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
+  _kernver=$( 

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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:13:03
  Author: tpowa
Revision: 100990

db-move: moved virtualbox-modules from [community-testing] to [community] 
(i686, x86_64)

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

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

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

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

2013-11-14 Thread Tobias Powalowski
Date: Thursday, November 14, 2013 @ 12:13:02
  Author: tpowa
Revision: 100989

db-move: moved vhba-module from [community-testing] to [community] (i686, 
x86_64)

Added:
  vhba-module/repos/community-i686/60-vhba.rules
(from rev 100984, vhba-module/repos/community-testing-i686/60-vhba.rules)
  vhba-module/repos/community-i686/PKGBUILD
(from rev 100984, vhba-module/repos/community-testing-i686/PKGBUILD)
  vhba-module/repos/community-i686/vhba-module.install
(from rev 100984, 
vhba-module/repos/community-testing-i686/vhba-module.install)
  vhba-module/repos/community-x86_64/60-vhba.rules
(from rev 100984, vhba-module/repos/community-testing-x86_64/60-vhba.rules)
  vhba-module/repos/community-x86_64/PKGBUILD
(from rev 100984, vhba-module/repos/community-testing-x86_64/PKGBUILD)
  vhba-module/repos/community-x86_64/vhba-module.install
(from rev 100984, 
vhba-module/repos/community-testing-x86_64/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-testing-i686/
  vhba-module/repos/community-testing-x86_64/
  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|   80 +
 /vhba-module.install |   44 ++
 community-i686/60-vhba.rules |1 
 community-i686/PKGBUILD  |   40 
 community-i686/vhba-module.install   |   22 -
 community-x86_64/60-vhba.rules   |1 
 community-x86_64/PKGBUILD|   40 
 community-x86_64/vhba-module.install |   22 -
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/60-vhba.rules
===
--- community-i686/60-vhba.rules2013-11-14 11:12:59 UTC (rev 100988)
+++ community-i686/60-vhba.rules2013-11-14 11:13:02 UTC (rev 100989)
@@ -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 100984, 
vhba-module/repos/community-testing-i686/60-vhba.rules)
===
--- community-i686/60-vhba.rules(rev 0)
+++ community-i686/60-vhba.rules2013-11-14 11:13:02 UTC (rev 100989)
@@ -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 2013-11-14 11:12:59 UTC (rev 100988)
+++ community-i686/PKGBUILD 2013-11-14 11:13:02 UTC (rev 100989)
@@ -1,40 +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=20130607
-_extramodules=extramodules-3.11-ARCH
-pkgrel=17
-pkgdesc=Kernel module that emulates SCSI devices
-arch=('i686' 'x86_64')
-url=http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux=3.11' 'linux3.12')
-makedepends=('linux-headers')
-options=(!makeflags)
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-md5sums=('92a681e4665aa85a8335d00395a61697'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-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 100984, 
vhba-module/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 11:13:02 UTC (rev 100989)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Charles Lindsay char...@chaoslizard.org
+
+pkgname=vhba-module
+pkgver=20130607
+_extramodules=extramodules-3.12-ARCH
+pkgrel=18
+pkgdesc=Kernel module that emulates SCSI devices
+arch=('i686' 'x86_64')
+url=http://cdemu.sourceforge.net/;
+license=('GPL')
+depends=('linux=3.12' 'linux3.13')

[arch-commits] Commit in (7 files)

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 12:31:13
  Author: spupykin
Revision: 100991

Added:
  linuxconsole/
  linuxconsole/repos/
  linuxconsole/trunk/
  linuxconsole/trunk/PKGBUILD
  linuxconsole/trunk/inputattach.conf.d
  linuxconsole/trunk/inputattach.service
  linuxconsole/trunk/inputattachctl

-+
 PKGBUILD|   35 +++
 inputattach.conf.d  |   10 ++
 inputattach.service |   11 +++
 inputattachctl  |   14 ++
 4 files changed, 70 insertions(+)

Added: linuxconsole/trunk/PKGBUILD
===
--- linuxconsole/trunk/PKGBUILD (rev 0)
+++ linuxconsole/trunk/PKGBUILD 2013-11-14 11:31:13 UTC (rev 100991)
@@ -0,0 +1,35 @@
+# Maintainer:  Andrzej Giniewicz ggi...@gmail.com
+
+pkgname=linuxconsole
+pkgver=1.4.6
+pkgrel=1
+pkgdesc=Set of utilities for joysticks and serial devices
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/linuxconsole/;
+license=('GPL')
+makedepends=('sdl')
+provides=('joystick' 'inputattach')
+replaces=('joystick' 'inputattach')
+optdepends=('sdl: for ffmvforce utility')
+source=(http://prdownloads.sourceforge.net/linuxconsole/linuxconsoletools-$pkgver.tar.bz2
+   'inputattach.conf.d'
+   'inputattach.service'
+   'inputattachctl')
+md5sums=('9115e08e3a2193b62da46d0e02852787'
+ '7ca903e54829764c8241233af5069216'
+ 'c19b9ed38b243191cf5378b87a42a4cc'
+ '7dd0690a9d2fe5e1052900650906e273')
+
+build() {
+  cd ${srcdir}/linuxconsoletools-$pkgver
+  make
+}
+
+package() {
+  cd ${srcdir}/linuxconsoletools-$pkgver
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+
+  install -Dm755 $srcdir/inputattachctl $pkgdir/usr/bin/inputattachctl
+  install -Dm644 $srcdir/inputattach.conf.d $pkgdir/etc/conf.d/inputattach
+  install -Dm644 $srcdir/inputattach.service 
$pkgdir/usr/lib/systemd/system/inputattach.service
+}

Added: linuxconsole/trunk/inputattach.conf.d
===
--- linuxconsole/trunk/inputattach.conf.d   (rev 0)
+++ linuxconsole/trunk/inputattach.conf.d   2013-11-14 11:31:13 UTC (rev 
100991)
@@ -0,0 +1,10 @@
+#
+# Configuration for inputattach
+#
+# IAPARAMS is an array of inputattach arguments, see 'inputattach --help'.
+# An inputattach instance will be started for each element.
+
+IAPARAMS=(
+  --microsoft /dev/ttyS0
+  #--baud 9600 --w8001 /dev/ttyS1
+)

Added: linuxconsole/trunk/inputattach.service
===
--- linuxconsole/trunk/inputattach.service  (rev 0)
+++ linuxconsole/trunk/inputattach.service  2013-11-14 11:31:13 UTC (rev 
100991)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Attach serial input devices to kernel input subsystem
+After=syslog.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/inputattachctl start
+ExecStop=/usr/bin/inputattachctl stop
+
+[Install]
+WantedBy=multi-user.target

Added: linuxconsole/trunk/inputattachctl
===
--- linuxconsole/trunk/inputattachctl   (rev 0)
+++ linuxconsole/trunk/inputattachctl   2013-11-14 11:31:13 UTC (rev 100991)
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+. /etc/conf.d/inputattach
+
+case $1 in
+   start)
+   for i in ${IAPARAMS[@]}; do
+   /usr/bin/inputattach --daemon $i || exit 1
+   done
+   ;;
+   stop)
+   killall inputattach || exit 1
+   ;;
+esac


Property changes on: linuxconsole/trunk/inputattachctl
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 12:36:42
  Author: spupykin
Revision: 100994

upgpkg: linuxconsole 1.4.6-1

upd

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 11:32:01 UTC (rev 100993)
+++ PKGBUILD2013-11-14 11:36:42 UTC (rev 100994)
@@ -1,3 +1,5 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 # Maintainer:  Andrzej Giniewicz ggi...@gmail.com
 
 pkgname=linuxconsole


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


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

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 12:37:01
  Author: spupykin
Revision: 100995

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

Added:
  linuxconsole/repos/community-i686/
  linuxconsole/repos/community-i686/PKGBUILD
(from rev 100994, linuxconsole/trunk/PKGBUILD)
  linuxconsole/repos/community-i686/inputattach.conf.d
(from rev 100994, linuxconsole/trunk/inputattach.conf.d)
  linuxconsole/repos/community-i686/inputattach.service
(from rev 100994, linuxconsole/trunk/inputattach.service)
  linuxconsole/repos/community-i686/inputattachctl
(from rev 100994, linuxconsole/trunk/inputattachctl)
  linuxconsole/repos/community-x86_64/
  linuxconsole/repos/community-x86_64/PKGBUILD
(from rev 100994, linuxconsole/trunk/PKGBUILD)
  linuxconsole/repos/community-x86_64/inputattach.conf.d
(from rev 100994, linuxconsole/trunk/inputattach.conf.d)
  linuxconsole/repos/community-x86_64/inputattach.service
(from rev 100994, linuxconsole/trunk/inputattach.service)
  linuxconsole/repos/community-x86_64/inputattachctl
(from rev 100994, linuxconsole/trunk/inputattachctl)

--+
 community-i686/PKGBUILD  |   37 +
 community-i686/inputattach.conf.d|   10 
 community-i686/inputattach.service   |   11 +
 community-i686/inputattachctl|   14 
 community-x86_64/PKGBUILD|   37 +
 community-x86_64/inputattach.conf.d  |   10 
 community-x86_64/inputattach.service |   11 +
 community-x86_64/inputattachctl  |   14 
 8 files changed, 144 insertions(+)

Copied: linuxconsole/repos/community-i686/PKGBUILD (from rev 100994, 
linuxconsole/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 11:37:01 UTC (rev 100995)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  Andrzej Giniewicz ggi...@gmail.com
+
+pkgname=linuxconsole
+pkgver=1.4.6
+pkgrel=1
+pkgdesc=Set of utilities for joysticks and serial devices
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/linuxconsole/;
+license=('GPL')
+makedepends=('sdl')
+provides=('joystick' 'inputattach')
+replaces=('joystick' 'inputattach')
+optdepends=('sdl: for ffmvforce utility')
+source=(http://prdownloads.sourceforge.net/linuxconsole/linuxconsoletools-$pkgver.tar.bz2
+   'inputattach.conf.d'
+   'inputattach.service'
+   'inputattachctl')
+md5sums=('9115e08e3a2193b62da46d0e02852787'
+ '7ca903e54829764c8241233af5069216'
+ 'c19b9ed38b243191cf5378b87a42a4cc'
+ '7dd0690a9d2fe5e1052900650906e273')
+
+build() {
+  cd ${srcdir}/linuxconsoletools-$pkgver
+  make
+}
+
+package() {
+  cd ${srcdir}/linuxconsoletools-$pkgver
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+
+  install -Dm755 $srcdir/inputattachctl $pkgdir/usr/bin/inputattachctl
+  install -Dm644 $srcdir/inputattach.conf.d $pkgdir/etc/conf.d/inputattach
+  install -Dm644 $srcdir/inputattach.service 
$pkgdir/usr/lib/systemd/system/inputattach.service
+}

Copied: linuxconsole/repos/community-i686/inputattach.conf.d (from rev 100994, 
linuxconsole/trunk/inputattach.conf.d)
===
--- community-i686/inputattach.conf.d   (rev 0)
+++ community-i686/inputattach.conf.d   2013-11-14 11:37:01 UTC (rev 100995)
@@ -0,0 +1,10 @@
+#
+# Configuration for inputattach
+#
+# IAPARAMS is an array of inputattach arguments, see 'inputattach --help'.
+# An inputattach instance will be started for each element.
+
+IAPARAMS=(
+  --microsoft /dev/ttyS0
+  #--baud 9600 --w8001 /dev/ttyS1
+)

Copied: linuxconsole/repos/community-i686/inputattach.service (from rev 100994, 
linuxconsole/trunk/inputattach.service)
===
--- community-i686/inputattach.service  (rev 0)
+++ community-i686/inputattach.service  2013-11-14 11:37:01 UTC (rev 100995)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Attach serial input devices to kernel input subsystem
+After=syslog.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/inputattachctl start
+ExecStop=/usr/bin/inputattachctl stop
+
+[Install]
+WantedBy=multi-user.target

Copied: linuxconsole/repos/community-i686/inputattachctl (from rev 100994, 
linuxconsole/trunk/inputattachctl)
===
--- community-i686/inputattachctl   (rev 0)
+++ community-i686/inputattachctl   2013-11-14 11:37:01 UTC (rev 100995)
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+. /etc/conf.d/inputattach
+
+case $1 in
+   start)
+   for i in ${IAPARAMS[@]}; do
+   /usr/bin/inputattach --daemon $i || exit 1
+   done
+   

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

2013-11-14 Thread Sven-Hendrik Haase
Date: Thursday, November 14, 2013 @ 15:55:06
  Author: svenstaro
Revision: 100997

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

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

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

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

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

2013-11-14 Thread Sven-Hendrik Haase
Date: Thursday, November 14, 2013 @ 15:54:52
  Author: svenstaro
Revision: 100996

upgpkg: assaultcube 1.2.0.2-1

Updating to 1.2.0.2

Modified:
  assaultcube/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 11:37:01 UTC (rev 100995)
+++ PKGBUILD2013-11-14 14:54:52 UTC (rev 100996)
@@ -5,7 +5,7 @@
 # Contributor: Rabyte rabyte [at] gmail (dot) com
 
 pkgname=assaultcube
-pkgver=1.2.0.1
+pkgver=1.2.0.2
 pkgrel=1
 pkgdesc='A realistic team oriented multiplayer FPS based on the Cube engine'
 arch=('i686' 'x86_64')
@@ -19,8 +19,8 @@
 'assaultcube-server'
 'assaultcube.desktop'
 'assaultcube.png')
-md5sums=('d159e60bc7cc09e7675c0db941906f56'
- '22118d5dbb1ef7ab3369da4ba11c236f'
+md5sums=('a052fc79dca4ecae0f15d9a953f1e2ad'
+ '7ec6c6a5f8fc0c2e3bec886c08f3b8c8'
  'd658ad3ee476bfe92afa5b5a04a7b4f5'
  '553e2c3b38c4d13e5d77c23efd51a6a6'
  'a37dfbe8263f4ef8fe41120196194eae'



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

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 16:05:43
  Author: arodseth
Revision: 100998

upgpkg: dart 1.0-1

Modified:
  dart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 14:55:06 UTC (rev 100997)
+++ PKGBUILD2013-11-14 15:05:43 UTC (rev 100998)
@@ -6,7 +6,7 @@
 # Contributor: Julien Nicoulaud julien.nicoul...@gmail.com
 
 pkgname=dart
-pkgver=0.8.10
+pkgver=1.0
 pkgrel=1
 pkgdesc='The dart programming language SDK'
 arch=('x86_64' 'i686')
@@ -19,13 +19,13 @@
 if [[ $CARCH == x86_64 ]]; then
   
source=(http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;
   
license.html::https://code.google.com/intl/no/google_bsd_license.html;)
-  
sha256sums=('721d51fa05a8a69b67913d7c46cec85d973778fbdfd40f63d70cd865ea6e4345'
-  
'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+  
sha256sums=('9bc14660399c3570fddd262eb9aa11b3e6e19b7a3c547d3b10d60ad905c52c9b'
+'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
 else
   
source=(http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;
   
license.html::https://code.google.com/intl/no/google_bsd_license.html;)
-  
sha256sums=('09bd3df38a8f15b3b42f6297bb107ca142c2888b4bd3c3063bac47fbfd2b2e49'
-  
'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+  
sha256sums=('131afed9a220b2035375aee71e6b791248e6de51ee2612a21be3f6797e5bbfe6'
+'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
 fi
 
 prepare() {



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

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 16:05:53
  Author: arodseth
Revision: 100999

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-14 15:05:43 UTC (rev 100998)
+++ community-i686/PKGBUILD 2013-11-14 15:05:53 UTC (rev 100999)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: T. Jameson Little t.jameson.little at gmail dot com
-# Contributor: Usagi Ito us...@wonderrabbitproject.net
-# Contributor: siasia http://pastebin.com/qsBEmNCw
-# Contributor: Julien Nicoulaud julien.nicoul...@gmail.com
-
-pkgname=dart
-pkgver=0.8.10
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64' 'i686')
-url='http://www.dartlang.org/'
-license=('BSD')
-optdepends=('java-runtime: for dartanalyzer')
-makedepends=('setconf')
-options=('!strip')
-
-if [[ $CARCH == x86_64 ]]; then
-  
source=(http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;
-  
license.html::https://code.google.com/intl/no/google_bsd_license.html;)
-  
sha256sums=('721d51fa05a8a69b67913d7c46cec85d973778fbdfd40f63d70cd865ea6e4345'
-  
'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
-else
-  
source=(http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;
-  
license.html::https://code.google.com/intl/no/google_bsd_license.html;)
-  
sha256sums=('09bd3df38a8f15b3b42f6297bb107ca142c2888b4bd3c3063bac47fbfd2b2e49'
-  
'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
-fi
-
-prepare() {
-  # Fix permissions
-  find $pkgname-sdk -type d -exec chmod 0755 '{}' + \
--or -type f -exec chmod 0644 '{}' +
-  chmod +x $pkgname-sdk/bin/*
-
-  # Fix paths
-  cd $pkgname-sdk/bin
-  setconf dart2js BIN_DIR /opt/$pkgname-sdk/bin
-  setconf dart2js PROG_NAME /opt/$pkgname-sdk/bin/dart2js
-  setconf dartanalyzer SCRIPT_DIR /opt/$pkgname-sdk/bin
-  setconf dartdoc BIN_DIR /opt/$pkgname-sdk/bin
-  setconf pub BIN_DIR /opt/$pkgname-sdk/bin
-  setconf pub SDK_DIR /opt/$pkgname-sdk/
-
-  # Fix missing fi and missing newline
-  echo -e fi\n  pub
-}
-
-package() {
-  # Create directories
-  install -d $pkgdir{/opt/$pkgname-sdk,/usr/{bin,share/doc/$pkgname-sdk}}
-
-  # Package the files
-  cp -a $pkgname-sdk/* $pkgdir/opt/$pkgname-sdk/
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer dartdoc pub; do
-ln -s /opt/$pkgname-sdk/bin/$f $pkgdir/usr/bin/$f
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv $pkgdir/opt/$pkgname-sdk/$f $pkgdir/usr/share/doc/$pkgname/
-  done
-
-  # BSD License
-  install -Dm644 license.html \
-$pkgdir/usr/share/licenses/$pkgname/license.html
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-i686/PKGBUILD (from rev 100998, 
dart/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 15:05:53 UTC (rev 100999)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: T. Jameson Little t.jameson.little at gmail dot com
+# Contributor: Usagi Ito us...@wonderrabbitproject.net
+# Contributor: siasia http://pastebin.com/qsBEmNCw
+# Contributor: Julien Nicoulaud julien.nicoul...@gmail.com
+
+pkgname=dart
+pkgver=1.0
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD')
+optdepends=('java-runtime: for dartanalyzer')
+makedepends=('setconf')
+options=('!strip')
+
+if [[ $CARCH == x86_64 ]]; then
+  
source=(http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;
+  
license.html::https://code.google.com/intl/no/google_bsd_license.html;)
+  
sha256sums=('9bc14660399c3570fddd262eb9aa11b3e6e19b7a3c547d3b10d60ad905c52c9b'
+'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+else
+  
source=(http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;
+  
license.html::https://code.google.com/intl/no/google_bsd_license.html;)
+  

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

2013-11-14 Thread Jan Steffens
Date: Thursday, November 14, 2013 @ 16:58:30
  Author: heftig
Revision: 199527

3.10.2

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 11:04:55 UTC (rev 199526)
+++ PKGBUILD2013-11-14 15:58:30 UTC (rev 199527)
@@ -4,7 +4,7 @@
 # Contributor: Michael Kanis mkanis_at_gmx_dot_de
 
 pkgname=mutter
-pkgver=3.10.1.1
+pkgver=3.10.2
 pkgrel=1
 pkgdesc=A window manager for GNOME
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 options=('!emptydirs')
 install=mutter.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fa05200a367cd72dbba8c023f6828f79db24b8922e51b71f55148d3e35701c00')
+sha256sums=('438163bc7fbab88366b589cab895a1df79eeac389e012c6e26ec559316651100')
 
 build() {
   cd $pkgname-$pkgver



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

2013-11-14 Thread Jan Steffens
Date: Thursday, November 14, 2013 @ 16:58:37
  Author: heftig
Revision: 199528

3.10.2

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 15:58:30 UTC (rev 199527)
+++ PKGBUILD2013-11-14 15:58:37 UTC (rev 199528)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab panosfi...@gmail.com
 
 pkgname=gnome-shell
-pkgver=3.10.1
+pkgver=3.10.2
 pkgrel=1
 pkgdesc=The next generation GNOME Shell
 arch=(i686 x86_64)
@@ -20,7 +20,7 @@
 groups=(gnome)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
 nm-libexecdir.patch)
-sha256sums=('52f43dcd6df9dd00e5fbcd16a0d7551801cbc77f8777f047e548e7803bb90e02'
+sha256sums=('f633f92aaccc82653d62a43a438e54c6b9508d57d1d03cf5c896141cd90a20e9'
 'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
 
 prepare() {



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

2013-11-14 Thread Jan Steffens
Date: Thursday, November 14, 2013 @ 16:59:38
  Author: heftig
Revision: 199529

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

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

-+
 /PKGBUILD   |   74 ++
 /mutter.install |   38 +
 extra-i686/PKGBUILD |   37 -
 extra-i686/mutter.install   |   19 --
 extra-x86_64/PKGBUILD   |   37 -
 extra-x86_64/mutter.install |   19 --
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-14 15:58:37 UTC (rev 199528)
+++ extra-i686/PKGBUILD 2013-11-14 15:59:38 UTC (rev 199529)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Michael Kanis mkanis_at_gmx_dot_de
-
-pkgname=mutter
-pkgver=3.10.1.1
-pkgrel=1
-pkgdesc=A window manager for GNOME
-arch=(i686 x86_64)
-license=('GPL')
-depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 
'libcanberra' 'startup-notification' 'zenity' 'libsm' 'gnome-desktop' 'upower')
-makedepends=('intltool' 'gnome-doc-utils')
-url=http://www.gnome.org;
-groups=('gnome')
-options=('!emptydirs')
-install=mutter.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fa05200a367cd72dbba8c023f6828f79db24b8922e51b71f55148d3e35701c00')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/mutter \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile --enable-compile-warnings=minimum
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: mutter/repos/extra-i686/PKGBUILD (from rev 199528, 
mutter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-14 15:59:38 UTC (rev 199529)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Michael Kanis mkanis_at_gmx_dot_de
+
+pkgname=mutter
+pkgver=3.10.2
+pkgrel=1
+pkgdesc=A window manager for GNOME
+arch=(i686 x86_64)
+license=('GPL')
+depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 
'libcanberra' 'startup-notification' 'zenity' 'libsm' 'gnome-desktop' 'upower')
+makedepends=('intltool' 'gnome-doc-utils')
+url=http://www.gnome.org;
+groups=('gnome')
+options=('!emptydirs')
+install=mutter.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('438163bc7fbab88366b589cab895a1df79eeac389e012c6e26ec559316651100')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/mutter \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/mutter.install
===
--- extra-i686/mutter.install   2013-11-14 15:58:37 UTC (rev 199528)
+++ extra-i686/mutter.install   2013-11-14 15:59:38 UTC (rev 199529)
@@ -1,19 +0,0 @@
-pkgname=mutter
-
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
-/usr/sbin/gconfpkg --uninstall $pkgname
-fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mutter/repos/extra-i686/mutter.install (from rev 199528, 
mutter/trunk/mutter.install)
===
--- extra-i686/mutter.install   (rev 0)
+++ extra-i686/mutter.install   2013-11-14 15:59:38 UTC (rev 199529)
@@ -0,0 +1,19 @@
+pkgname=mutter
+
+post_install() {
+glib-compile-schemas 

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

2013-11-14 Thread Jan Steffens
Date: Thursday, November 14, 2013 @ 17:00:44
  Author: heftig
Revision: 199530

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

Added:
  gnome-shell/repos/extra-i686/PKGBUILD
(from rev 199529, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/extra-i686/gnome-shell.install
(from rev 199529, gnome-shell/trunk/gnome-shell.install)
  gnome-shell/repos/extra-i686/nm-libexecdir.patch
(from rev 199529, gnome-shell/trunk/nm-libexecdir.patch)
  gnome-shell/repos/extra-x86_64/PKGBUILD
(from rev 199529, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/extra-x86_64/gnome-shell.install
(from rev 199529, gnome-shell/trunk/gnome-shell.install)
  gnome-shell/repos/extra-x86_64/nm-libexecdir.patch
(from rev 199529, gnome-shell/trunk/nm-libexecdir.patch)
Deleted:
  gnome-shell/repos/extra-i686/PKGBUILD
  gnome-shell/repos/extra-i686/gnome-shell.install
  gnome-shell/repos/extra-i686/nm-libexecdir.patch
  gnome-shell/repos/extra-x86_64/PKGBUILD
  gnome-shell/repos/extra-x86_64/gnome-shell.install
  gnome-shell/repos/extra-x86_64/nm-libexecdir.patch

--+
 /PKGBUILD|  104 +
 /gnome-shell.install |   38 +
 /nm-libexecdir.patch |   24 
 extra-i686/PKGBUILD  |   52 --
 extra-i686/gnome-shell.install   |   19 --
 extra-i686/nm-libexecdir.patch   |   12 
 extra-x86_64/PKGBUILD|   52 --
 extra-x86_64/gnome-shell.install |   19 --
 extra-x86_64/nm-libexecdir.patch |   12 
 9 files changed, 166 insertions(+), 166 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-14 15:59:38 UTC (rev 199529)
+++ extra-i686/PKGBUILD 2013-11-14 16:00:44 UTC (rev 199530)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Flamelab panosfi...@gmail.com
-
-pkgname=gnome-shell
-pkgver=3.10.1
-pkgrel=1
-pkgdesc=The next generation GNOME Shell
-arch=(i686 x86_64)
-url=http://live.gnome.org/GnomeShell;
-license=(GPL2)
-depends=(accountsservice caribou evolution-data-server gcr gjs gnome-bluetooth 
gnome-menus
- gnome-session gnome-settings-daemon gnome-themes-standard 
gsettings-desktop-schemas
- libcanberra-pulse libcroco libgdm libsecret mutter mutter-wayland 
network-manager-applet
- telepathy-logger telepathy-mission-control unzip)
-makedepends=(intltool gtk-doc gnome-control-center)
-optdepends=('gnome-control-center: System settings')
-options=('!emptydirs')
-install=gnome-shell.install
-groups=(gnome)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-nm-libexecdir.patch)
-sha256sums=('52f43dcd6df9dd00e5fbcd16a0d7551801cbc77f8777f047e548e7803bb90e02'
-'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # FS#30747 FS#32730 Problems due to libexecdir different from NM
-  patch -Np1 -i ../nm-libexecdir.patch
-
-  # Build against mutter-wayland 3.9.92
-  sed -ri 's/^(MUTTER_MIN_VERSION)=.*/\1=3.9.92/' configure
-}
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/gnome-shell \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-shell/repos/extra-i686/PKGBUILD (from rev 199529, 
gnome-shell/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-14 16:00:44 UTC (rev 199530)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Flamelab panosfi...@gmail.com
+
+pkgname=gnome-shell
+pkgver=3.10.2
+pkgrel=1
+pkgdesc=The next generation GNOME Shell
+arch=(i686 x86_64)
+url=http://live.gnome.org/GnomeShell;
+license=(GPL2)
+depends=(accountsservice caribou evolution-data-server gcr gjs gnome-bluetooth 
gnome-menus
+ gnome-session gnome-settings-daemon gnome-themes-standard 
gsettings-desktop-schemas
+ libcanberra-pulse libcroco libgdm libsecret mutter mutter-wayland 
network-manager-applet
+ telepathy-logger telepathy-mission-control unzip)
+makedepends=(intltool gtk-doc gnome-control-center)
+optdepends=('gnome-control-center: System settings')
+options=('!emptydirs')
+install=gnome-shell.install
+groups=(gnome)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+nm-libexecdir.patch)
+sha256sums=('f633f92aaccc82653d62a43a438e54c6b9508d57d1d03cf5c896141cd90a20e9'
+

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

2013-11-14 Thread Giovanni Scafora
Date: Thursday, November 14, 2013 @ 19:16:49
  Author: giovanni
Revision: 199533

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

Added:
  vlc/repos/testing-i686/PKGBUILD
(from rev 199532, vlc/trunk/PKGBUILD)
  vlc/repos/testing-i686/vlc-2.0.7-vaapi-compat.patch
(from rev 199532, vlc/trunk/vlc-2.0.7-vaapi-compat.patch)
  vlc/repos/testing-i686/vlc.install
(from rev 199532, vlc/trunk/vlc.install)
  vlc/repos/testing-x86_64/PKGBUILD
(from rev 199532, vlc/trunk/PKGBUILD)
  vlc/repos/testing-x86_64/vlc-2.0.7-vaapi-compat.patch
(from rev 199532, vlc/trunk/vlc-2.0.7-vaapi-compat.patch)
  vlc/repos/testing-x86_64/vlc.install
(from rev 199532, vlc/trunk/vlc.install)
Deleted:
  vlc/repos/testing-i686/PKGBUILD
  vlc/repos/testing-i686/vlc-2.0.7-vaapi-compat.patch
  vlc/repos/testing-i686/vlc.install
  vlc/repos/testing-x86_64/PKGBUILD
  vlc/repos/testing-x86_64/vlc-2.0.7-vaapi-compat.patch
  vlc/repos/testing-x86_64/vlc.install

-+
 /PKGBUILD   |  214 ++
 /vlc-2.0.7-vaapi-compat.patch   |   22 ++
 /vlc.install|   36 
 testing-i686/PKGBUILD   |  106 
 testing-i686/vlc-2.0.7-vaapi-compat.patch   |   11 -
 testing-i686/vlc.install|   18 --
 testing-x86_64/PKGBUILD |  106 
 testing-x86_64/vlc-2.0.7-vaapi-compat.patch |   11 -
 testing-x86_64/vlc.install  |   18 --
 9 files changed, 272 insertions(+), 270 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-11-14 18:16:41 UTC (rev 199532)
+++ testing-i686/PKGBUILD   2013-11-14 18:16:49 UTC (rev 199533)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Sarah Hay sarah...@mb.sympatico.ca
-# Contributor: Martin Sandsmark martin.sandsm...@kde.org
-
-pkgname=vlc
-pkgver=2.1.0
-pkgrel=6
-pkgdesc=A multi-platform MPEG, VCD/DVD, and DivX player
-arch=('i686' 'x86_64')
-url=http://www.videolan.org/vlc/;
-license=('LGPL2.1' 'GPL2')
-depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt4' 'libproxy' 
- 'sdl_image' 'libdvdnav' 'libtiger' 'lua' 'libmatroska' 
- 'zvbi' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' 
- 'libshout' 'libmad' 'libmpeg2' 'xcb-util-keysyms')
-makedepends=('live-media' 'libnotify' 'libbluray' 'flac' 'kdelibs'
- 'libdc1394' 'libavc1394' 'lirc-utils' 'libcaca' 
- 'librsvg' 'portaudio' 'libgme' 'xosd' 'projectm' 
- 'twolame' 'aalib' 'libmtp' 'libdvdcss' 'gnome-vfs' 
- 'libgoom2' 'libtar' 'vcdimager' 'opus' 'libssh2' 'mesa')
-optdepends=('avahi: for service discovery using bonjour protocol'
-'libnotify: for notification plugin'
-'ncurses: for ncurses interface support'
-'libdvdcss: for decoding encrypted DVDs'
-'lirc-utils: for lirc plugin'
-'libavc1394: for devices using the 1394ta AV/C'
-'libdc1394: for IEEE 1394 plugin'
-'kdelibs: KDE Solid hardware integration'
-'libva-vdpau-driver: vdpau back-end for nvidia'
-'libva-intel-driver: back-end for intel cards'
-'libbluray: for Blu-Ray support'
-'flac: for Free Lossless Audio Codec plugin'
-'portaudio: for portaudio support'
-'twolame: for TwoLAME mpeg2 encoder plugin'
-'projectm: for ProjectM visualisation plugin'
-'libcaca: for colored ASCII art video output'
-'libgme: for libgme plugin'
-'librsvg: for SVG plugin'
-'gnome-vfs: for GNOME Virtual File System support'
-'libgoom2: for libgoom plugin'
-'vcdimager: navigate VCD with libvcdinfo'
-'xosd: for xosd support'
-'aalib: for ASCII art plugin'
-'libmtp: for MTP devices support'
-'smbclient: for SMB access plugin'
-'libcdio: for audio CD playback support'
-'ttf-freefont: for subtitle font '
-'ttf-dejavu: for subtitle font'
-'opus: for opus support'
-'libssh2: for sftp support')
-conflicts=('vlc-plugin')
-replaces=('vlc-plugin')
-backup=('usr/share/vlc/lua/http/.hosts'
-'usr/share/vlc/lua/http/dialogs/.hosts')
-options=('!emptydirs')
-install=vlc.install
-source=(http://download.videolan.org/pub/videolan/${pkgname}/${pkgver/.a}/${pkgname}-${pkgver/.a/a}.tar.xz;
-vlc-2.0.7-vaapi-compat.patch)
-md5sums=('8c77bda671821f5b9ede96b6816e2ade'
- '6df10774bb7acf20e09d6139e5c7839e')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver/.a}
-
-  patch -Np1 -i ../vlc-2.0.7-vaapi-compat.patch
-
-  sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c
-  sed -i -e 's:truetype/ttf-dejavu:TTF:g' 

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

2013-11-14 Thread Giovanni Scafora
Date: Thursday, November 14, 2013 @ 19:16:41
  Author: giovanni
Revision: 199532

upgpkg: vlc 2.1.1-1

upstream release - rebuild against x264 20131030 - fixed fs37683

Modified:
  vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 18:11:05 UTC (rev 199531)
+++ PKGBUILD2013-11-14 18:16:41 UTC (rev 199532)
@@ -4,8 +4,8 @@
 # Contributor: Martin Sandsmark martin.sandsm...@kde.org
 
 pkgname=vlc
-pkgver=2.1.0
-pkgrel=6
+pkgver=2.1.1
+pkgrel=1
 pkgdesc=A multi-platform MPEG, VCD/DVD, and DivX player
 arch=('i686' 'x86_64')
 url=http://www.videolan.org/vlc/;
@@ -13,12 +13,12 @@
 depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt4' 'libproxy' 
  'sdl_image' 'libdvdnav' 'libtiger' 'lua' 'libmatroska' 
  'zvbi' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' 
- 'libshout' 'libmad' 'libmpeg2' 'xcb-util-keysyms')
+ 'libshout' 'libmad' 'libmpeg2' 'xcb-util-keysyms' 'libtar')
 makedepends=('live-media' 'libnotify' 'libbluray' 'flac' 'kdelibs'
  'libdc1394' 'libavc1394' 'lirc-utils' 'libcaca' 
  'librsvg' 'portaudio' 'libgme' 'xosd' 'projectm' 
  'twolame' 'aalib' 'libmtp' 'libdvdcss' 'gnome-vfs' 
- 'libgoom2' 'libtar' 'vcdimager' 'opus' 'libssh2' 'mesa')
+ 'libgoom2' 'vcdimager' 'opus' 'libssh2' 'mesa')
 optdepends=('avahi: for service discovery using bonjour protocol'
 'libnotify: for notification plugin'
 'ncurses: for ncurses interface support'
@@ -48,7 +48,8 @@
 'ttf-freefont: for subtitle font '
 'ttf-dejavu: for subtitle font'
 'opus: for opus support'
-'libssh2: for sftp support')
+'libssh2: for sftp support'
+'lua-socket: for http interface')
 conflicts=('vlc-plugin')
 replaces=('vlc-plugin')
 backup=('usr/share/vlc/lua/http/.hosts'
@@ -57,13 +58,13 @@
 install=vlc.install
 
source=(http://download.videolan.org/pub/videolan/${pkgname}/${pkgver/.a}/${pkgname}-${pkgver/.a/a}.tar.xz;
 vlc-2.0.7-vaapi-compat.patch)
-md5sums=('8c77bda671821f5b9ede96b6816e2ade'
+md5sums=('1331cd853d56762c96afcb92dd498348'
  '6df10774bb7acf20e09d6139e5c7839e')
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver/.a}
 
-  patch -Np1 -i ../vlc-2.0.7-vaapi-compat.patch
+  patch -Np1 -i ${srcdir}/vlc-2.0.7-vaapi-compat.patch
 
   sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c
   sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp



[arch-commits] Commit in povray/trunk (PKGBUILD povray-3.7.0_rc7-boost-1.50.patch)

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 19:28:57
  Author: arodseth
Revision: 101000

Upgrading to 3.7 stable

Modified:
  povray/trunk/PKGBUILD
Deleted:
  povray/trunk/povray-3.7.0_rc7-boost-1.50.patch

---+
 PKGBUILD  |   10 ++---
 povray-3.7.0_rc7-boost-1.50.patch |   68 
 2 files changed, 5 insertions(+), 73 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 15:05:53 UTC (rev 100999)
+++ PKGBUILD2013-11-14 18:28:57 UTC (rev 101000)
@@ -30,11 +30,11 @@
 prepare() {
   cd $pkgname-$pkgver-stable
 
-  sed -i 's:=no:=yes:' unix/config/ax_boost_thread.m4
   cd unix
-  1/dev/null 2/dev/null ./prebuild.sh
+  sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh
+  sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac
+  ./prebuild.sh
   cd ..
-  sed -i 's:AC_MSG_FAILURE(\[c:AC_MSG_RESULT(\[:' configure.ac
   ./bootstrap
   patch -p1  $srcdir/povray3.7.0_rc3-user-conf.patch
 }
@@ -42,8 +42,8 @@
 build() {
   cd $pkgname-$pkgver-stable
 
-  ./configure COMPILED_BY='Arch Linux' --prefix=/usr --sysconfdir=/etc 
--with-boost-thread=boost_thread
-  make CXXFLAGS+=-w -lboost_system
+  ./configure LIBS=-lboost_system -lboost_thread COMPILED_BY='Arch Linux' 
--prefix=/usr --sysconfdir=/etc
+  make CXXFLAGS+=-w -lboost_system -lboost_thread
   gzip -f povray.1
 }
 

Deleted: povray-3.7.0_rc7-boost-1.50.patch
===
--- povray-3.7.0_rc7-boost-1.50.patch   2013-11-14 15:05:53 UTC (rev 100999)
+++ povray-3.7.0_rc7-boost-1.50.patch   2013-11-14 18:28:57 UTC (rev 101000)
@@ -1,68 +0,0 @@
-Index: povray-3.7.0.RC5/configure.ac
-===
 povray-3.7.0.RC5.orig/configure.ac
-+++ povray-3.7.0.RC5/configure.ac
-@@ -54,8 +54,6 @@ AC_CONFIG_SRCDIR([unix/disp_text.cpp])
- m4_include([unix/config/acx_pthread.m4])
- m4_include([unix/config/ax_arg_enable.m4])
- m4_include([unix/config/ax_arg_with.m4])
--m4_include([unix/config/ax_boost_base.m4])
--m4_include([unix/config/ax_boost_thread.m4])
- m4_include([unix/config/ax_test_compiler_flags.m4])
- m4_include([unix/config/ax_check_lib.m4])
- m4_include([unix/config/ax_check_libjpeg.m4])
-@@ -165,6 +163,7 @@ AC_CANONICAL_HOST
- 
- AM_INIT_AUTOMAKE([1.9 dist-bzip2])
- AM_MAINTAINER_MODE
-+LT_INIT
- 
- AX_FIX_INCORRECT_PATH(C_INCLUDE_PATH, ., [pov_warn_path=$pov_warn_path 
C_INCLUDE_PATH])
- AX_FIX_INCORRECT_PATH(CPLUS_INCLUDE_PATH, ., [pov_warn_path=$pov_warn_path 
CPLUS_INCLUDE_PATH])
-@@ -295,28 +294,15 @@ LIBS=$LIBS $PTHREAD_CFLAGS $PTHREAD_LIB
- 
- # Boost; required library
- # the following macro stops with error when boost is not found
--AX_BOOST_BASE([$required_libboost_version])
--AX_BOOST_THREAD
--if test x$ax_cv_boost_thread != xyes; then
-+BOOST_REQUIRE([$required_libboost_version])
-+BOOST_THREADS
-+if test x$boost_cv_lib_thread != xyes; then
-   AC_MSG_ERROR([cannot find a suitable boost thread library])
- else
-   CPPFLAGS=$CPPFLAGS $BOOST_CPPFLAGS  # append
--  LDFLAGS=$LDFLAGS $BOOST_LDFLAGS # append
--  LIBS=$BOOST_THREAD_LIB $LIBS
-+  LDFLAGS=$LDFLAGS -L$BOOST_LDPATH # append
-+  LIBS=$BOOST_THREAD_LIBS $LIBS
- fi
--AC_MSG_CHECKING([whether the boost thread library is usable])
--AC_RUN_IFELSE(
--  [AC_LANG_PROGRAM([[
--#include boost/thread/thread.hpp
--]],
--[[boost::defer_lock_t(); return 0;]])],
--  [AC_MSG_RESULT([yes])],
--  [
--AC_MSG_RESULT([no])
--AC_MSG_FAILURE([cannot link with the boost thread library])
--  ],
--  [AC_MSG_RESULT([cross-compiling])]  # FIXME
--)
- AC_DEFINE([USE_OFFICIAL_BOOST], [], [Use the official Boost libraries.])
- 
- # Intel Math Kernel library
-Index: povray-3.7.0.RC5/vfe/unix/platformbase.cpp
-===
 povray-3.7.0.RC5.orig/vfe/unix/platformbase.cpp
-+++ povray-3.7.0.RC5/vfe/unix/platformbase.cpp
-@@ -126,7 +126,7 @@ namespace pov_base
- #else
-   // taken from source/base/timer.cpp
-   boost::xtime t;
--  boost::xtime_get(t, boost::TIME_UTC);
-+  boost::xtime_get(t, POV_TIME_UTC);
-   POV_ULONG ns = (POV_ULONG)(t.sec) * (POV_ULONG)(10) + 
(POV_ULONG)(t.nsec) + (POV_ULONG)(msec) * (POV_ULONG)(100);
-   t.sec = (boost::xtime::xtime_sec_t)(ns / 
(POV_ULONG)(10));
-   t.nsec = (boost::xtime::xtime_nsec_t)(ns % 
(POV_ULONG)(10));



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

2013-11-14 Thread Giovanni Scafora
Date: Thursday, November 14, 2013 @ 20:03:07
  Author: giovanni
Revision: 199534

upgpkg: live-media 2013.11.14-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 18:16:49 UTC (rev 199533)
+++ PKGBUILD2013-11-14 19:03:07 UTC (rev 199534)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN gcn...@gmail.com
 
 pkgname=live-media
-pkgver=2013.10.25
+pkgver=2013.11.14
 pkgrel=1
 pkgdesc=A set of C++ libraries for multimedia streaming
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs')
 options=('staticlibs')
 source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('43a8d3a622db8a4582174fa2ddc7461b')
+md5sums=('fba3e1d80fe6185e3b2e83aa3a1e490c')
 
 build() {
   cd ${srcdir}/live



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

2013-11-14 Thread Giovanni Scafora
Date: Thursday, November 14, 2013 @ 20:03:14
  Author: giovanni
Revision: 199535

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 199534, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 199534, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-14 19:03:07 UTC (rev 199534)
+++ extra-i686/PKGBUILD 2013-11-14 19:03:14 UTC (rev 199535)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2013.10.25
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-options=('staticlibs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('43a8d3a622db8a4582174fa2ddc7461b')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 199534, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-14 19:03:14 UTC (rev 199535)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Gilles CHAUVIN gcn...@gmail.com
+
+pkgname=live-media
+pkgver=2013.11.14
+pkgrel=1
+pkgdesc=A set of C++ libraries for multimedia streaming
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://live555.com/liveMedia;
+depends=('gcc-libs')
+options=('staticlibs')
+source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
+md5sums=('fba3e1d80fe6185e3b2e83aa3a1e490c')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a ${pkgdir}/usr/lib
+install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} ${pkgdir}/usr/bin
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-14 19:03:07 UTC (rev 199534)
+++ extra-x86_64/PKGBUILD   2013-11-14 19:03:14 UTC (rev 199535)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2013.10.25
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-options=('staticlibs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('43a8d3a622db8a4582174fa2ddc7461b')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-x86_64/PKGBUILD (from rev 199534, 
live-media/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)

[arch-commits] Commit in povray/repos (22 files)

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 20:27:04
  Author: arodseth
Revision: 101002

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

Added:
  povray/repos/community-i686/LICENSE
(from rev 101001, povray/trunk/LICENSE)
  povray/repos/community-i686/PKGBUILD
(from rev 101001, povray/trunk/PKGBUILD)
  povray/repos/community-i686/distribution-license.txt
(from rev 101001, povray/trunk/distribution-license.txt)
  povray/repos/community-i686/povray3.7.0_rc3-user-conf.patch
(from rev 101001, povray/trunk/povray3.7.0_rc3-user-conf.patch)
  povray/repos/community-i686/source-license.txt
(from rev 101001, povray/trunk/source-license.txt)
  povray/repos/community-x86_64/LICENSE
(from rev 101001, povray/trunk/LICENSE)
  povray/repos/community-x86_64/PKGBUILD
(from rev 101001, povray/trunk/PKGBUILD)
  povray/repos/community-x86_64/distribution-license.txt
(from rev 101001, povray/trunk/distribution-license.txt)
  povray/repos/community-x86_64/povray3.7.0_rc3-user-conf.patch
(from rev 101001, povray/trunk/povray3.7.0_rc3-user-conf.patch)
  povray/repos/community-x86_64/source-license.txt
(from rev 101001, povray/trunk/source-license.txt)
Deleted:
  povray/repos/community-i686/LICENSE
  povray/repos/community-i686/PKGBUILD
  povray/repos/community-i686/distribution-license.txt
  povray/repos/community-i686/povray-3.7.0_rc7-boost-1.50.patch
  povray/repos/community-i686/povray3.7.0_rc3-user-conf.patch
  povray/repos/community-i686/source-license.txt
  povray/repos/community-x86_64/LICENSE
  povray/repos/community-x86_64/PKGBUILD
  povray/repos/community-x86_64/distribution-license.txt
  povray/repos/community-x86_64/povray-3.7.0_rc7-boost-1.50.patch
  povray/repos/community-x86_64/povray3.7.0_rc3-user-conf.patch
  povray/repos/community-x86_64/source-license.txt

+
 /LICENSE   |  474 
 /PKGBUILD  |  140 ++
 /distribution-license.txt  | 1064 +++
 /povray3.7.0_rc3-user-conf.patch   |   54 
 /source-license.txt|  720 
 community-i686/LICENSE |  237 
 community-i686/PKGBUILD|   66 -
 community-i686/distribution-license.txt|  532 -
 community-i686/povray-3.7.0_rc7-boost-1.50.patch   |   68 -
 community-i686/povray3.7.0_rc3-user-conf.patch |   27 
 community-i686/source-license.txt  |  360 --
 community-x86_64/LICENSE   |  237 
 community-x86_64/PKGBUILD  |   66 -
 community-x86_64/distribution-license.txt  |  532 -
 community-x86_64/povray-3.7.0_rc7-boost-1.50.patch |   68 -
 community-x86_64/povray3.7.0_rc3-user-conf.patch   |   27 
 community-x86_64/source-license.txt|  360 --
 17 files changed, 2452 insertions(+), 2580 deletions(-)

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


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

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 20:26:43
  Author: arodseth
Revision: 101001

upgpkg: povray 1:3.7-1

Modified:
  povray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 18:28:57 UTC (rev 101000)
+++ PKGBUILD2013-11-14 19:26:43 UTC (rev 101001)
@@ -8,6 +8,7 @@
 pkgname=povray
 pkgver=3.7
 pkgrel=1
+epoch=1
 pkgdesc='Script based raytracer for creating 3D graphics'
 arch=('x86_64' 'i686')
 license=('custom')



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

2013-11-14 Thread Sébastien Luttringer
Date: Thursday, November 14, 2013 @ 20:57:47
  Author: seblu
Revision: 101003

upgpkg: dex 0.7-1

Modified:
  dex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 19:27:04 UTC (rev 101002)
+++ PKGBUILD2013-11-14 19:57:47 UTC (rev 101003)
@@ -2,7 +2,7 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=dex
-pkgver=0.6
+pkgver=0.7
 pkgrel=1
 pkgdesc='Program to generate and execute DesktopEntry files of type 
Application'
 arch=('any')
@@ -9,14 +9,14 @@
 url='https://github.com/jceb/dex'
 license=('GPL2')
 depends=('python')
-conflicts=('dex-git')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jceb/dex/tarball/v$pkgver;)
-md5sums=('aabd067dc133df4ce617b116a2f405aa')
+makedepends=('git')
+source=(git+https://github.com/jceb/dex.git#tag=v$pkgver;)
+md5sums=('SKIP')
 
 package() {
-  cd jceb-dex-*
-  install -Dm755 dex $pkgdir/usr/bin/dex
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  cd dex
+  make install PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR=$pkgdir
+  rm $pkgdir/usr/share/doc/dex/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-11-14 Thread Sébastien Luttringer
Date: Thursday, November 14, 2013 @ 20:57:53
  Author: seblu
Revision: 101004

archrelease: copy trunk to community-any

Added:
  dex/repos/community-any/PKGBUILD
(from rev 101003, dex/trunk/PKGBUILD)
Deleted:
  dex/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-14 19:57:47 UTC (rev 101003)
+++ PKGBUILD2013-11-14 19:57:53 UTC (rev 101004)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgname=dex
-pkgver=0.6
-pkgrel=1
-pkgdesc='Program to generate and execute DesktopEntry files of type 
Application'
-arch=('any')
-url='https://github.com/jceb/dex'
-license=('GPL2')
-depends=('python')
-conflicts=('dex-git')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jceb/dex/tarball/v$pkgver;)
-md5sums=('aabd067dc133df4ce617b116a2f405aa')
-
-package() {
-  cd jceb-dex-*
-  install -Dm755 dex $pkgdir/usr/bin/dex
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dex/repos/community-any/PKGBUILD (from rev 101003, dex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-14 19:57:53 UTC (rev 101004)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=dex
+pkgver=0.7
+pkgrel=1
+pkgdesc='Program to generate and execute DesktopEntry files of type 
Application'
+arch=('any')
+url='https://github.com/jceb/dex'
+license=('GPL2')
+depends=('python')
+makedepends=('git')
+source=(git+https://github.com/jceb/dex.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+package() {
+  cd dex
+  make install PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR=$pkgdir
+  rm $pkgdir/usr/share/doc/dex/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 21:23:48
  Author: arodseth
Revision: 101005

upgpkg: povray 1:3.7-1

Modified:
  povray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 19:57:53 UTC (rev 101004)
+++ PKGBUILD2013-11-14 20:23:48 UTC (rev 101005)
@@ -15,8 +15,8 @@
 url='http://povray.org/'
 depends=('libtiff' 'libpng' 'boost-libs')
 makedepends=('boost')
-backup=(etc/povray/povray.conf
-etc/povray/povray.ini)
+backup=(etc/povray/$pkgver/povray.conf
+etc/povray/$pkgver/povray.ini)
 source=(https://github.com/POV-Ray/$pkgname/archive/$pkgver-stable.zip;
 'povray3.7.0_rc3-user-conf.patch'
 'distribution-license.txt'
@@ -43,7 +43,8 @@
 build() {
   cd $pkgname-$pkgver-stable
 
-  ./configure LIBS=-lboost_system -lboost_thread COMPILED_BY='Arch Linux' 
--prefix=/usr --sysconfdir=/etc
+  ./configure LIBS=-lboost_system -lboost_thread COMPILED_BY='Arch Linux' \
+--prefix=/usr --sysconfdir=/etc
   make CXXFLAGS+=-w -lboost_system -lboost_thread
   gzip -f povray.1
 }
@@ -51,13 +52,13 @@
 package() {
   cd $pkgname-$pkgver-stable
 
-  mkdir -p $pkgdir/usr/share/$pkgname-3.7
-  cp -r icons include ini scenes scripts $pkgdir/usr/share/$pkgname-3.7
-  mkdir -p $pkgdir/usr/share/doc/$pkgname-3.7
-  cp -r doc $pkgdir/usr/share/doc/$pkgname-3.7
+  install -d $pkgdir/usr/share/$pkgname-$pkgver
+  install -d $pkgdir/usr/share/doc/$pkgname-$pkgver
+  cp -r icons include ini scenes scripts $pkgdir/usr/share/$pkgname-$pkgver
+  cp -r doc $pkgdir/usr/share/doc/$pkgname-$pkgver
   install -Dm755 unix/povray $pkgdir/usr/bin/povray
-  install -Dm644 povray.conf $pkgdir/etc/povray/povray.conf
-  install -Dm644 povray.ini $pkgdir/etc/povray/povray.ini
+  install -Dm644 povray.conf $pkgdir/etc/povray/$pkgver/povray.conf
+  install -Dm644 povray.ini $pkgdir/etc/povray/$pkgver/povray.ini
   install -Dm644 povray.1.gz $pkgdir/usr/share/man/man1/povray.1.gz
   install -Dm644 ../LICENSE \
 $pkgdir/usr/share/licenses/$pkgname/LICENSE



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

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 21:43:28
  Author: arodseth
Revision: 101006

upgpkg: lorcon 1:2.0.0.20091101-1

Modified:
  lorcon/trunk/PKGBUILD

--+
 PKGBUILD |   47 +--
 1 file changed, 25 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 20:23:48 UTC (rev 101005)
+++ PKGBUILD2013-11-14 20:43:28 UTC (rev 101006)
@@ -3,40 +3,43 @@
 # Contributor: Brad Fanella bradfane...@archlinux.us
 # Contributor: fnord0 [fnord0 AT riseup DOT net]
 # Contributor: dninja dni...@gmail.com
+# Contributor: Jon Gjengset j...@thesquareplanet.com
 
 pkgname=lorcon
-pkgver=224
-pkgrel=2
-pkgdesc=Loss Of Radio CONnectivity: A generic library for injecting 802.11 
frames
+pkgver=2.0.0.20091101
+pkgrel=1
+epoch=1
+pkgdesc='Generic library for injecting 802.11 frames'
 url='http://802.11ninja.net/'
 license=('GPL')
 arch=('x86_64' 'i686')
 depends=('libpcap')
-makedepends=('subversion')
-replaces=('lorcon-old-svn')
-_svntrunk=http://802.11ninja.net/svn/lorcon/trunk;
-_svnrev=$pkgver
+makedepends=('git')
+source=('git+https://code.google.com/p/lorcon/')
+md5sums=('SKIP')
 
-build() {
-  cd $srcdir
+pkgver() {
+  cd $pkgname
 
-  if [ -d $_svnmod/.svn ]; then
-(cd $_svnmod  svn up -r $_svnrev)
-  else
-svn co $_svntrunk/$_svnmod --config-dir ./ -r \
-  $_svnrev $_svnmod
-  fi
-  msg SVN checkout done or server timeout
-  cd $_svnmod
- 
+  major=$(cat Makefile.in | grep -E ^MAJOR  | sed 's/^.*= *//')
+  minor=$(cat Makefile.in | grep -E ^MINOR  | sed 's/^.*= *//')
+  tiny=$(cat Makefile.in | grep -E ^TINY  | sed 's/^.*= *//')
+  version=$(cat Makefile.in | grep -E ^VERSION  | sed 's/^.*= *//')
+  echo $major.$minor.$tiny.$version
+}
+
+prepare() {
+  cd $pkgname
+
   ./configure --prefix=/usr --mandir=/usr/share/man
-  make
 }
 
+build() {
+  make -C $pkgname
+}
+
 package() {
-  cd $_svnmod
-
-  make DESTDIR=$pkgdir install
+  make -C $pkgname DESTDIR=$pkgdir install
 }
 
 # vim:set ts=2 sw=2 et: 



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

2013-11-14 Thread Alexander Rødseth
Date: Thursday, November 14, 2013 @ 21:43:40
  Author: arodseth
Revision: 101007

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-14 20:43:28 UTC (rev 101006)
+++ community-i686/PKGBUILD 2013-11-14 20:43:40 UTC (rev 101007)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: fnord0 [fnord0 AT riseup DOT net]
-# Contributor: dninja dni...@gmail.com
-
-pkgname=lorcon
-pkgver=224
-pkgrel=2
-pkgdesc=Loss Of Radio CONnectivity: A generic library for injecting 802.11 
frames
-url='http://802.11ninja.net/'
-license=('GPL')
-arch=('x86_64' 'i686')
-depends=('libpcap')
-makedepends=('subversion')
-replaces=('lorcon-old-svn')
-_svntrunk=http://802.11ninja.net/svn/lorcon/trunk;
-_svnrev=$pkgver
-
-build() {
-  cd $srcdir
-
-  if [ -d $_svnmod/.svn ]; then
-(cd $_svnmod  svn up -r $_svnrev)
-  else
-svn co $_svntrunk/$_svnmod --config-dir ./ -r \
-  $_svnrev $_svnmod
-  fi
-  msg SVN checkout done or server timeout
-  cd $_svnmod
- 
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd $_svnmod
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et: 

Copied: lorcon/repos/community-i686/PKGBUILD (from rev 101006, 
lorcon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-14 20:43:40 UTC (rev 101007)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Brad Fanella bradfane...@archlinux.us
+# Contributor: fnord0 [fnord0 AT riseup DOT net]
+# Contributor: dninja dni...@gmail.com
+# Contributor: Jon Gjengset j...@thesquareplanet.com
+
+pkgname=lorcon
+pkgver=2.0.0.20091101
+pkgrel=1
+epoch=1
+pkgdesc='Generic library for injecting 802.11 frames'
+url='http://802.11ninja.net/'
+license=('GPL')
+arch=('x86_64' 'i686')
+depends=('libpcap')
+makedepends=('git')
+source=('git+https://code.google.com/p/lorcon/')
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+
+  major=$(cat Makefile.in | grep -E ^MAJOR  | sed 's/^.*= *//')
+  minor=$(cat Makefile.in | grep -E ^MINOR  | sed 's/^.*= *//')
+  tiny=$(cat Makefile.in | grep -E ^TINY  | sed 's/^.*= *//')
+  version=$(cat Makefile.in | grep -E ^VERSION  | sed 's/^.*= *//')
+  echo $major.$minor.$tiny.$version
+}
+
+prepare() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --mandir=/usr/share/man
+}
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et: 

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-14 20:43:28 UTC (rev 101006)
+++ community-x86_64/PKGBUILD   2013-11-14 20:43:40 UTC (rev 101007)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: fnord0 [fnord0 AT riseup DOT net]
-# Contributor: dninja dni...@gmail.com
-
-pkgname=lorcon
-pkgver=224
-pkgrel=2
-pkgdesc=Loss Of Radio CONnectivity: A generic library for injecting 802.11 
frames
-url='http://802.11ninja.net/'
-license=('GPL')
-arch=('x86_64' 'i686')
-depends=('libpcap')
-makedepends=('subversion')
-replaces=('lorcon-old-svn')
-_svntrunk=http://802.11ninja.net/svn/lorcon/trunk;
-_svnrev=$pkgver
-
-build() {
-  cd $srcdir
-
-  if [ -d $_svnmod/.svn ]; then
-(cd $_svnmod  svn up -r $_svnrev)
-  else
-svn co $_svntrunk/$_svnmod --config-dir ./ -r \
-  $_svnrev $_svnmod
-  fi
-  msg SVN checkout done or server timeout
-  cd $_svnmod
- 
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd $_svnmod
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et: 

Copied: lorcon/repos/community-x86_64/PKGBUILD (from rev 101006, 
lorcon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-14 20:43:40 UTC (rev 101007)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Brad Fanella bradfane...@archlinux.us
+# Contributor: fnord0 [fnord0 AT riseup DOT net]
+# 

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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:08:51
  Author: jelle
Revision: 101008

upgpkg: python-cssutils 0.9.10-2

fix FS#37006

Modified:
  python-cssutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 20:43:40 UTC (rev 101007)
+++ PKGBUILD2013-11-14 21:08:51 UTC (rev 101008)
@@ -22,6 +22,10 @@
 
   # Create python2 build dir
   cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
+
+  # Use #!/usr/bin/python3 
+  cd cssutils-${pkgver}/src
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
 }
 
 package_python2-cssutils() {
@@ -50,16 +54,11 @@
 
   # Don't install tests (FS#27567)
   rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
+}
 
-  # Use #!/usr/bin/python3 
-  cd $pkgdir/usr/lib/python3.3/site-packages/cssutils
-  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
-
+check() {
+  cd ${srcdir}/cssutils-${pkgver}
+  # Currently broken..
+#  python3 setup.py test
+#  python2 setup.py test
 }
-
-#check() {
-#  cd ${srcdir}/cssutils-${pkgver}
-#  # Currently broken..
-##  python3 setup.py test
-##  python2 setup.py test
-#}



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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:09:08
  Author: jelle
Revision: 101009

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-14 21:08:51 UTC (rev 101008)
+++ PKGBUILD2013-11-14 21:09:08 UTC (rev 101009)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Simon Sapin simon dot sapin at exyr dot org
-# Contributor: Michal Marek reqamst at gmail dot com
-# Contributor: Rick W. Chena stuffcor...@archlinux.us
-# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
-
-pkgbase=python-cssutils
-pkgname=('python2-cssutils' 'python-cssutils')
-pkgver=0.9.10
-pkgrel=2
-pkgdesc=A CSS Cascading Style Sheets library for Python
-arch=('any')
-url=http://cthedot.de/cssutils/;
-license=('LGPL3')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=(http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip;)
-md5sums=('81b5c0294c54479a54548769eaa236f8')
-
-build() {
-  cd ${srcdir}
-
-  # Create python2 build dir
-  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
-}
-
-package_python2-cssutils() {
-  depends=('python2')
-
-  cd ${srcdir}/cssutils-py2-${pkgver}
-
-  python2 setup.py install --root=${pkgdir}/ --optimize=1
-
-  sed -i -e s:#!/usr/bin/env python:#!/usr/bin/env python2:g \
- $(find ${pkgdir} -name '*.py')
-
-  # Don't install tests (FS#27567)
-  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests
-}
-
-package_python-cssutils() {
-  depends=('python')
-
-  cd ${srcdir}/cssutils-${pkgver}
-
-  python3 setup.py install --root=${pkgdir}/ --optimize=1
-
-  # Avoid a conflict: only keep the Py2 executables.
-  rm -rf ${pkgdir}/usr/bin
-
-  # Don't install tests (FS#27567)
-  rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
-
-  # Use #!/usr/bin/python3 
-  cd $pkgdir/usr/lib/python3.3/site-packages/cssutils
-  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
-
-}
-
-#check() {
-#  cd ${srcdir}/cssutils-${pkgver}
-#  # Currently broken..
-##  python3 setup.py test
-##  python2 setup.py test
-#}

Copied: python-cssutils/repos/community-any/PKGBUILD (from rev 101008, 
python-cssutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-14 21:09:08 UTC (rev 101009)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Simon Sapin simon dot sapin at exyr dot org
+# Contributor: Michal Marek reqamst at gmail dot com
+# Contributor: Rick W. Chena stuffcor...@archlinux.us
+# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
+
+pkgbase=python-cssutils
+pkgname=('python2-cssutils' 'python-cssutils')
+pkgver=0.9.10
+pkgrel=2
+pkgdesc=A CSS Cascading Style Sheets library for Python
+arch=('any')
+url=http://cthedot.de/cssutils/;
+license=('LGPL3')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=(http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip;)
+md5sums=('81b5c0294c54479a54548769eaa236f8')
+
+build() {
+  cd ${srcdir}
+
+  # Create python2 build dir
+  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
+
+  # Use #!/usr/bin/python3 
+  cd cssutils-${pkgver}/src
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
+}
+
+package_python2-cssutils() {
+  depends=('python2')
+
+  cd ${srcdir}/cssutils-py2-${pkgver}
+
+  python2 setup.py install --root=${pkgdir}/ --optimize=1
+
+  sed -i -e s:#!/usr/bin/env python:#!/usr/bin/env python2:g \
+ $(find ${pkgdir} -name '*.py')
+
+  # Don't install tests (FS#27567)
+  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests
+}
+
+package_python-cssutils() {
+  depends=('python')
+
+  cd ${srcdir}/cssutils-${pkgver}
+
+  python3 setup.py install --root=${pkgdir}/ --optimize=1
+
+  # Avoid a conflict: only keep the Py2 executables.
+  rm -rf ${pkgdir}/usr/bin
+
+  # Don't install tests (FS#27567)
+  rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
+}
+
+check() {
+  cd ${srcdir}/cssutils-${pkgver}
+  # Currently broken..
+#  python3 setup.py test
+#  python2 setup.py test
+}



[arch-commits] Commit in (4 files)

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:10:09
  Author: jelle
Revision: 101010

initial commit, needed for similiar python tests

Added:
  python-mock/
  python-mock/repos/
  python-mock/trunk/
  python-mock/trunk/PKGBUILD

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

Added: python-mock/trunk/PKGBUILD
===
--- python-mock/trunk/PKGBUILD  (rev 0)
+++ python-mock/trunk/PKGBUILD  2013-11-14 21:10:09 UTC (rev 101010)
@@ -0,0 +1,36 @@
+# Contributor: Felix Kaiser felix.kai...@fxkr.net
+
+pkgbase=python-mock
+pkgname=(python2-mock python-mock)
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=A Python Mocking and Patching Library for Testing
+url='http://www.voidspace.org.uk/python/mock/'
+makedepends=('python2' 'python')
+license=('BSD')
+arch=('i686' 'x86_64')
+source=(http://pypi.python.org/packages/source/m/mock/mock-$pkgver.tar.gz;)
+md5sums=('c3971991738caa55ec7c356bbc154ee2')
+
+build() {
+  cd $srcdir
+  cp -rf mock-$pkgver mock2-$pkgver
+
+  cd mock-$pkgver
+  python3 setup.py build
+
+  cd mock2-$pkgver
+  python2 setup.py build
+}
+
+package_python-mock() {
+depends=('python')
+  cd $srcdir/mock-$pkgver
+  python3 install --optimize=1 --root=$pkgdir
+}
+
+package_python2-mock() {
+depends=('python2')
+  cd $srcdir/mock2-$pkgver
+  python2 install --optimize=1 --root=$pkgdir
+}


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


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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:15:08
  Author: jelle
Revision: 101011

upgpkg: python-mock 1.0.1-1

Modified:
  python-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 21:10:09 UTC (rev 101010)
+++ PKGBUILD2013-11-14 21:15:08 UTC (rev 101011)
@@ -8,7 +8,7 @@
 url='http://www.voidspace.org.uk/python/mock/'
 makedepends=('python2' 'python')
 license=('BSD')
-arch=('i686' 'x86_64')
+arch=('any')
 source=(http://pypi.python.org/packages/source/m/mock/mock-$pkgver.tar.gz;)
 md5sums=('c3971991738caa55ec7c356bbc154ee2')
 
@@ -16,10 +16,10 @@
   cd $srcdir
   cp -rf mock-$pkgver mock2-$pkgver
 
-  cd mock-$pkgver
+  cd $srcdir/mock-$pkgver
   python3 setup.py build
 
-  cd mock2-$pkgver
+  cd $srcdir/mock2-$pkgver
   python2 setup.py build
 }
 
@@ -26,11 +26,13 @@
 package_python-mock() {
 depends=('python')
   cd $srcdir/mock-$pkgver
-  python3 install --optimize=1 --root=$pkgdir
+  python3 setup.py install --optimize=1 --root=$pkgdir
+  install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
 
 package_python2-mock() {
 depends=('python2')
   cd $srcdir/mock2-$pkgver
-  python2 install --optimize=1 --root=$pkgdir
+  python2 setup.py install --optimize=1 --root=$pkgdir
+  install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:15:21
  Author: jelle
Revision: 101012

archrelease: copy trunk to community-any

Added:
  python-mock/repos/community-any/
  python-mock/repos/community-any/PKGBUILD
(from rev 101011, python-mock/trunk/PKGBUILD)

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

Copied: python-mock/repos/community-any/PKGBUILD (from rev 101011, 
python-mock/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-14 21:15:21 UTC (rev 101012)
@@ -0,0 +1,38 @@
+# Contributor: Felix Kaiser felix.kai...@fxkr.net
+
+pkgbase=python-mock
+pkgname=(python2-mock python-mock)
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=A Python Mocking and Patching Library for Testing
+url='http://www.voidspace.org.uk/python/mock/'
+makedepends=('python2' 'python')
+license=('BSD')
+arch=('any')
+source=(http://pypi.python.org/packages/source/m/mock/mock-$pkgver.tar.gz;)
+md5sums=('c3971991738caa55ec7c356bbc154ee2')
+
+build() {
+  cd $srcdir
+  cp -rf mock-$pkgver mock2-$pkgver
+
+  cd $srcdir/mock-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/mock2-$pkgver
+  python2 setup.py build
+}
+
+package_python-mock() {
+depends=('python')
+  cd $srcdir/mock-$pkgver
+  python3 setup.py install --optimize=1 --root=$pkgdir
+  install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-mock() {
+depends=('python2')
+  cd $srcdir/mock2-$pkgver
+  python2 setup.py install --optimize=1 --root=$pkgdir
+  install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:17:23
  Author: jelle
Revision: 101013

upgpkg: python-cssutils 0.9.10-3

fix FS#37006

Modified:
  python-cssutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 21:15:21 UTC (rev 101012)
+++ PKGBUILD2013-11-14 21:17:23 UTC (rev 101013)
@@ -8,7 +8,7 @@
 pkgbase=python-cssutils
 pkgname=('python2-cssutils' 'python-cssutils')
 pkgver=0.9.10
-pkgrel=2
+pkgrel=3
 pkgdesc=A CSS Cascading Style Sheets library for Python
 arch=('any')
 url=http://cthedot.de/cssutils/;



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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 22:17:37
  Author: jelle
Revision: 101014

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-14 21:17:23 UTC (rev 101013)
+++ PKGBUILD2013-11-14 21:17:37 UTC (rev 101014)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Simon Sapin simon dot sapin at exyr dot org
-# Contributor: Michal Marek reqamst at gmail dot com
-# Contributor: Rick W. Chena stuffcor...@archlinux.us
-# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
-
-pkgbase=python-cssutils
-pkgname=('python2-cssutils' 'python-cssutils')
-pkgver=0.9.10
-pkgrel=2
-pkgdesc=A CSS Cascading Style Sheets library for Python
-arch=('any')
-url=http://cthedot.de/cssutils/;
-license=('LGPL3')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=(http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip;)
-md5sums=('81b5c0294c54479a54548769eaa236f8')
-
-build() {
-  cd ${srcdir}
-
-  # Create python2 build dir
-  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
-
-  # Use #!/usr/bin/python3 
-  cd cssutils-${pkgver}/src
-  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
-}
-
-package_python2-cssutils() {
-  depends=('python2')
-
-  cd ${srcdir}/cssutils-py2-${pkgver}
-
-  python2 setup.py install --root=${pkgdir}/ --optimize=1
-
-  sed -i -e s:#!/usr/bin/env python:#!/usr/bin/env python2:g \
- $(find ${pkgdir} -name '*.py')
-
-  # Don't install tests (FS#27567)
-  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests
-}
-
-package_python-cssutils() {
-  depends=('python')
-
-  cd ${srcdir}/cssutils-${pkgver}
-
-  python3 setup.py install --root=${pkgdir}/ --optimize=1
-
-  # Avoid a conflict: only keep the Py2 executables.
-  rm -rf ${pkgdir}/usr/bin
-
-  # Don't install tests (FS#27567)
-  rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
-}
-
-check() {
-  cd ${srcdir}/cssutils-${pkgver}
-  # Currently broken..
-#  python3 setup.py test
-#  python2 setup.py test
-}

Copied: python-cssutils/repos/community-any/PKGBUILD (from rev 101013, 
python-cssutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-14 21:17:37 UTC (rev 101014)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Simon Sapin simon dot sapin at exyr dot org
+# Contributor: Michal Marek reqamst at gmail dot com
+# Contributor: Rick W. Chena stuffcor...@archlinux.us
+# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
+
+pkgbase=python-cssutils
+pkgname=('python2-cssutils' 'python-cssutils')
+pkgver=0.9.10
+pkgrel=3
+pkgdesc=A CSS Cascading Style Sheets library for Python
+arch=('any')
+url=http://cthedot.de/cssutils/;
+license=('LGPL3')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=(http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip;)
+md5sums=('81b5c0294c54479a54548769eaa236f8')
+
+build() {
+  cd ${srcdir}
+
+  # Create python2 build dir
+  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
+
+  # Use #!/usr/bin/python3 
+  cd cssutils-${pkgver}/src
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
+}
+
+package_python2-cssutils() {
+  depends=('python2')
+
+  cd ${srcdir}/cssutils-py2-${pkgver}
+
+  python2 setup.py install --root=${pkgdir}/ --optimize=1
+
+  sed -i -e s:#!/usr/bin/env python:#!/usr/bin/env python2:g \
+ $(find ${pkgdir} -name '*.py')
+
+  # Don't install tests (FS#27567)
+  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests
+}
+
+package_python-cssutils() {
+  depends=('python')
+
+  cd ${srcdir}/cssutils-${pkgver}
+
+  python3 setup.py install --root=${pkgdir}/ --optimize=1
+
+  # Avoid a conflict: only keep the Py2 executables.
+  rm -rf ${pkgdir}/usr/bin
+
+  # Don't install tests (FS#27567)
+  rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
+}
+
+check() {
+  cd ${srcdir}/cssutils-${pkgver}
+  # Currently broken..
+#  python3 setup.py test
+#  python2 setup.py test
+}



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

2013-11-14 Thread Ray Rashif
Date: Thursday, November 14, 2013 @ 22:29:37
  Author: schiv
Revision: 199536

upgpkg: opencv 2.4.7-2

reintroduce static libs; closes FS#37754
needed for new opencv_ts requirement
opencl headers are now in-tree
libcl is now truly optional (dynamically supported)
fix dir detection as previous conditional could return 1

Modified:
  opencv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 19:03:14 UTC (rev 199535)
+++ PKGBUILD2013-11-14 21:29:37 UTC (rev 199536)
@@ -4,18 +4,19 @@
 
 pkgbase=opencv
 pkgname=('opencv' 'opencv-samples')
+_realname=OpenCV
 pkgver=2.4.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Open Source Computer Vision Library
 arch=('i686' 'x86_64')
 license=('BSD')
 url=http://opencv.org/;
-depends=('jasper' 'gstreamer0.10-base' 'intel-tbb' 'libcl'
- 'xine-lib' 'libdc1394' 'openexr' 'gtkglext')
-makedepends=('cmake' 'python2-numpy' 'mesa'
- 'opencl-headers' 'eigen2')
+depends=('gstreamer0.10-base' 'intel-tbb' 'openexr'
+ 'xine-lib' 'libdc1394' 'gtkglext')
+makedepends=('cmake' 'python2-numpy' 'mesa' 'eigen2')
 optdepends=('opencv-samples'
 'eigen2'
+'libcl: For coding with OpenCL'
 'python2-numpy: Python 2.x interface')
 
source=(http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.tar.gz;
 'pkgconfig.patch'
@@ -74,6 +75,8 @@
 }
 
 package_opencv() {
+  options=('staticlibs')
+
   cd $srcdir/$pkgname-$pkgver
 
   make DESTDIR=$pkgdir install
@@ -85,14 +88,17 @@
   cd $pkgdir/usr/share
 
   # separate samples package; also be -R friendly
-  [[ -d $pkgname/samples ]]  mv $pkgname/samples $srcdir/opencv-samples
+  if [[ -d $pkgname/samples ]]; then
+mv $pkgname/samples $srcdir/opencv-samples
+  elif [[ -d $_realname ]]; then
+warn Directory naming issue; samples package may not be built!
+  fi
 }
 
 package_opencv-samples() {
   pkgdesc+= (samples)
-  depends=('bash')
+  depends=(opencv=$pkgver) # sample codes change with lib/API
   unset optdepends
-  unset options
 
   mkdir -p $pkgdir/usr/share/opencv
   cp -r $srcdir/opencv-samples $pkgdir/usr/share/opencv/samples



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

2013-11-14 Thread Ray Rashif
Date: Thursday, November 14, 2013 @ 22:30:04
  Author: schiv
Revision: 199537

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

Added:
  opencv/repos/testing-i686/
  opencv/repos/testing-i686/PKGBUILD
(from rev 199536, opencv/trunk/PKGBUILD)
  opencv/repos/testing-i686/fsh.patch
(from rev 199536, opencv/trunk/fsh.patch)
  opencv/repos/testing-i686/pkgconfig.patch
(from rev 199536, opencv/trunk/pkgconfig.patch)
  opencv/repos/testing-x86_64/
  opencv/repos/testing-x86_64/PKGBUILD
(from rev 199536, opencv/trunk/PKGBUILD)
  opencv/repos/testing-x86_64/fsh.patch
(from rev 199536, opencv/trunk/fsh.patch)
  opencv/repos/testing-x86_64/pkgconfig.patch
(from rev 199536, opencv/trunk/pkgconfig.patch)

+
 testing-i686/PKGBUILD  |  111 +++
 testing-i686/fsh.patch |  136 +++
 testing-i686/pkgconfig.patch   |   35 ++
 testing-x86_64/PKGBUILD|  111 +++
 testing-x86_64/fsh.patch   |  136 +++
 testing-x86_64/pkgconfig.patch |   35 ++
 6 files changed, 564 insertions(+)

Copied: opencv/repos/testing-i686/PKGBUILD (from rev 199536, 
opencv/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-14 21:30:04 UTC (rev 199537)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgbase=opencv
+pkgname=('opencv' 'opencv-samples')
+_realname=OpenCV
+pkgver=2.4.7
+pkgrel=2
+pkgdesc=Open Source Computer Vision Library
+arch=('i686' 'x86_64')
+license=('BSD')
+url=http://opencv.org/;
+depends=('gstreamer0.10-base' 'intel-tbb' 'openexr'
+ 'xine-lib' 'libdc1394' 'gtkglext')
+makedepends=('cmake' 'python2-numpy' 'mesa' 'eigen2')
+optdepends=('opencv-samples'
+'eigen2'
+'libcl: For coding with OpenCL'
+'python2-numpy: Python 2.x interface')
+source=(http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.tar.gz;
+'pkgconfig.patch'
+'fsh.patch')
+md5sums=('33a12a8bba6e6dc32c97298c99b083b2'
+ 'c7cea48ed7d4f729ebdb9673bac41bd3'
+ 'c597598d142dd34d0eb4af7d6e9779d8')
+
+_cmakeopts=('-D WITH_OPENCL=ON'
+'-D WITH_OPENGL=ON'
+'-D WITH_TBB=ON'
+'-D WITH_XINE=ON'
+'-D BUILD_WITH_DEBUG_INFO=OFF'
+'-D BUILD_TESTS=OFF'
+'-D BUILD_PERF_TESTS=OFF'
+'-D BUILD_EXAMPLES=ON'
+'-D INSTALL_C_EXAMPLES=ON'
+'-D INSTALL_PYTHON_EXAMPLES=ON'
+'-D CMAKE_BUILD_TYPE=Release'
+'-D CMAKE_INSTALL_PREFIX=/usr'
+'-D CMAKE_SKIP_RPATH=ON')
+
+# SSE only available from Pentium 3 onwards (i686 is way older)
+[[ $CARCH = 'i686' ]]  \
+  _cmakeopts+=('-D ENABLE_SSE=OFF'
+   '-D ENABLE_SSE2=OFF'
+   '-D ENABLE_SSE3=OFF')
+
+# all x64 CPUs support SSE2 but not SSE3
+[[ $CARCH = 'x86_64' ]]  _cmakeopts+=('-D ENABLE_SSE3=OFF')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # hack-fix pkg-config mess
+  # see https://bugs.archlinux.org/task/32430
+  # and http://code.opencv.org/issues/1925
+  patch -Np1 -i $srcdir/pkgconfig.patch
+
+  # hack-fix folder naming inconsistency that they won't fix
+  # see http://code.opencv.org/issues/2512
+  # and https://bugs.archlinux.org/task/32342
+  patch -Np1 -i $srcdir/fsh.patch
+
+  # no longer including docs, see https://bugs.archlinux.org/task/34185
+  # python2 compatibility for generating (html) docs
+  #sed -i 's/sphinx-build/sphinx-build2/' cmake/OpenCVDetectPython.cmake
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  cmake ${_cmakeopts[@]} .
+
+  make
+}
+
+package_opencv() {
+  options=('staticlibs')
+
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # install license file
+  install -Dm644 $srcdir/$pkgname-$pkgver/doc/license.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  cd $pkgdir/usr/share
+
+  # separate samples package; also be -R friendly
+  if [[ -d $pkgname/samples ]]; then
+mv $pkgname/samples $srcdir/opencv-samples
+  elif [[ -d $_realname ]]; then
+warn Directory naming issue; samples package may not be built!
+  fi
+}
+
+package_opencv-samples() {
+  pkgdesc+= (samples)
+  depends=(opencv=$pkgver) # sample codes change with lib/API
+  unset optdepends
+
+  mkdir -p $pkgdir/usr/share/opencv
+  cp -r $srcdir/opencv-samples $pkgdir/usr/share/opencv/samples
+
+  # install license file
+  install -Dm644 $srcdir/opencv-$pkgver/doc/license.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: opencv/repos/testing-i686/fsh.patch (from rev 199536, 
opencv/trunk/fsh.patch)
===
--- 

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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 23:55:16
  Author: jelle
Revision: 101015

upgpkg: python-cssutils 0.9.10-4

fix shebang in prepare()

Modified:
  python-cssutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 21:17:37 UTC (rev 101014)
+++ PKGBUILD2013-11-14 22:55:16 UTC (rev 101015)
@@ -8,7 +8,7 @@
 pkgbase=python-cssutils
 pkgname=('python2-cssutils' 'python-cssutils')
 pkgver=0.9.10
-pkgrel=3
+pkgrel=4
 pkgdesc=A CSS Cascading Style Sheets library for Python
 arch=('any')
 url=http://cthedot.de/cssutils/;
@@ -26,6 +26,9 @@
   # Use #!/usr/bin/python3 
   cd cssutils-${pkgver}/src
   find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
+
+  cd ${srcdir}/cssutils-py2-${pkgver}
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i -e 
's:#!/usr/bin/env python:#!/usr/bin/env python2:g' '{}' \;
 }
 
 package_python2-cssutils() {
@@ -35,8 +38,6 @@
 
   python2 setup.py install --root=${pkgdir}/ --optimize=1
 
-  sed -i -e s:#!/usr/bin/env python:#!/usr/bin/env python2:g \
- $(find ${pkgdir} -name '*.py')
 
   # Don't install tests (FS#27567)
   rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests



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

2013-11-14 Thread Jelle van der Waa
Date: Thursday, November 14, 2013 @ 23:55:29
  Author: jelle
Revision: 101016

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-14 22:55:16 UTC (rev 101015)
+++ PKGBUILD2013-11-14 22:55:29 UTC (rev 101016)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Simon Sapin simon dot sapin at exyr dot org
-# Contributor: Michal Marek reqamst at gmail dot com
-# Contributor: Rick W. Chena stuffcor...@archlinux.us
-# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
-
-pkgbase=python-cssutils
-pkgname=('python2-cssutils' 'python-cssutils')
-pkgver=0.9.10
-pkgrel=3
-pkgdesc=A CSS Cascading Style Sheets library for Python
-arch=('any')
-url=http://cthedot.de/cssutils/;
-license=('LGPL3')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=(http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip;)
-md5sums=('81b5c0294c54479a54548769eaa236f8')
-
-build() {
-  cd ${srcdir}
-
-  # Create python2 build dir
-  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
-
-  # Use #!/usr/bin/python3 
-  cd cssutils-${pkgver}/src
-  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
-}
-
-package_python2-cssutils() {
-  depends=('python2')
-
-  cd ${srcdir}/cssutils-py2-${pkgver}
-
-  python2 setup.py install --root=${pkgdir}/ --optimize=1
-
-  sed -i -e s:#!/usr/bin/env python:#!/usr/bin/env python2:g \
- $(find ${pkgdir} -name '*.py')
-
-  # Don't install tests (FS#27567)
-  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests
-}
-
-package_python-cssutils() {
-  depends=('python')
-
-  cd ${srcdir}/cssutils-${pkgver}
-
-  python3 setup.py install --root=${pkgdir}/ --optimize=1
-
-  # Avoid a conflict: only keep the Py2 executables.
-  rm -rf ${pkgdir}/usr/bin
-
-  # Don't install tests (FS#27567)
-  rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
-}
-
-check() {
-  cd ${srcdir}/cssutils-${pkgver}
-  # Currently broken..
-#  python3 setup.py test
-#  python2 setup.py test
-}

Copied: python-cssutils/repos/community-any/PKGBUILD (from rev 101015, 
python-cssutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-14 22:55:29 UTC (rev 101016)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Simon Sapin simon dot sapin at exyr dot org
+# Contributor: Michal Marek reqamst at gmail dot com
+# Contributor: Rick W. Chena stuffcor...@archlinux.us
+# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
+
+pkgbase=python-cssutils
+pkgname=('python2-cssutils' 'python-cssutils')
+pkgver=0.9.10
+pkgrel=4
+pkgdesc=A CSS Cascading Style Sheets library for Python
+arch=('any')
+url=http://cthedot.de/cssutils/;
+license=('LGPL3')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=(http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip;)
+md5sums=('81b5c0294c54479a54548769eaa236f8')
+
+build() {
+  cd ${srcdir}
+
+  # Create python2 build dir
+  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
+
+  # Use #!/usr/bin/python3 
+  cd cssutils-${pkgver}/src
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
+
+  cd ${srcdir}/cssutils-py2-${pkgver}
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i -e 
's:#!/usr/bin/env python:#!/usr/bin/env python2:g' '{}' \;
+}
+
+package_python2-cssutils() {
+  depends=('python2')
+
+  cd ${srcdir}/cssutils-py2-${pkgver}
+
+  python2 setup.py install --root=${pkgdir}/ --optimize=1
+
+
+  # Don't install tests (FS#27567)
+  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/tests
+}
+
+package_python-cssutils() {
+  depends=('python')
+
+  cd ${srcdir}/cssutils-${pkgver}
+
+  python3 setup.py install --root=${pkgdir}/ --optimize=1
+
+  # Avoid a conflict: only keep the Py2 executables.
+  rm -rf ${pkgdir}/usr/bin
+
+  # Don't install tests (FS#27567)
+  rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/tests
+}
+
+check() {
+  cd ${srcdir}/cssutils-${pkgver}
+  # Currently broken..
+#  python3 setup.py test
+#  python2 setup.py test
+}



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

2013-11-14 Thread Alexandre Filgueira
Date: Friday, November 15, 2013 @ 02:41:39
  Author: faidoc
Revision: 101017

upgpkg: cinnamon 2.0.12-1

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-14 22:55:29 UTC (rev 101016)
+++ PKGBUILD2013-11-15 01:41:39 UTC (rev 101017)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=2.0.11
+pkgver=2.0.12
 pkgrel=1
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 keyboard_applet.patch
 input_keybindings.patch
 org.archlinux.pkexec.cinnamon-settings-users.policy)
-sha256sums=('71e40b8bff04f9d48e72bede1d13f20b76e805943e47322c284b0afc2665ee58'
+sha256sums=('5c0f7142cafae9906d2653f38086f22704fcf021b486a9525b0f62b9a654d07b'
 '2e10ba71fd9ba40afd7e9492b2fc0d5bcc27874bcde543cfd8a47ad20c52354a'
 '6acb07393105ddced8a4c3c869a596350d1a7d81a808ca5307d2ad770653a9d3'
 'e28c40eb844105154fa6106f5b4de3151a22805b3a7b2f84be9ea6c15cec3de6'



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

2013-11-14 Thread Alexandre Filgueira
Date: Friday, November 15, 2013 @ 02:43:24
  Author: faidoc
Revision: 101018

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 101017, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon-gstreamer1.patch
(from rev 101017, cinnamon/trunk/cinnamon-gstreamer1.patch)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 101017, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/input_keybindings.patch
(from rev 101017, cinnamon/trunk/input_keybindings.patch)
  cinnamon/repos/community-i686/keyboard_applet.patch
(from rev 101017, cinnamon/trunk/keyboard_applet.patch)
  
cinnamon/repos/community-i686/org.archlinux.pkexec.cinnamon-settings-users.policy
(from rev 101017, 
cinnamon/trunk/org.archlinux.pkexec.cinnamon-settings-users.policy)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 101017, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon-gstreamer1.patch
(from rev 101017, cinnamon/trunk/cinnamon-gstreamer1.patch)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 101017, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/input_keybindings.patch
(from rev 101017, cinnamon/trunk/input_keybindings.patch)
  cinnamon/repos/community-x86_64/keyboard_applet.patch
(from rev 101017, cinnamon/trunk/keyboard_applet.patch)
  
cinnamon/repos/community-x86_64/org.archlinux.pkexec.cinnamon-settings-users.policy
(from rev 101017, 
cinnamon/trunk/org.archlinux.pkexec.cinnamon-settings-users.policy)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon-gstreamer1.patch
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/input_keybindings.patch
  cinnamon/repos/community-i686/keyboard_applet.patch
  
cinnamon/repos/community-i686/org.archlinux.pkexec.cinnamon-settings-users.policy
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon-gstreamer1.patch
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/input_keybindings.patch
  cinnamon/repos/community-x86_64/keyboard_applet.patch
  
cinnamon/repos/community-x86_64/org.archlinux.pkexec.cinnamon-settings-users.policy

+
 /PKGBUILD  |  194 +
 /cinnamon-gstreamer1.patch |  564 +++
 /cinnamon.install  |   22 +
 /input_keybindings.patch   |   22 +
 /keyboard_applet.patch |  266 
 community-i686/PKGBUILD|   97 
 community-i686/cinnamon-gstreamer1.patch   |  282 -
 community-i686/cinnamon.install|   11 
 community-i686/input_keybindings.patch |   11 
 community-i686/keyboard_applet.patch   |  133 --
 community-x86_64/PKGBUILD  |   97 
 community-x86_64/cinnamon-gstreamer1.patch |  282 -
 community-x86_64/cinnamon.install  |   11 
 community-x86_64/input_keybindings.patch   |   11 
 community-x86_64/keyboard_applet.patch |  133 --
 15 files changed, 1068 insertions(+), 1068 deletions(-)

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


[arch-commits] Commit in cinnamon-control-center/trunk (PKGBUILD)

2013-11-14 Thread Alexandre Filgueira
Date: Friday, November 15, 2013 @ 02:46:50
  Author: faidoc
Revision: 101019

upgpkg: cinnamon-control-center 2.0.8-1

Modified:
  cinnamon-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-15 01:43:24 UTC (rev 101018)
+++ PKGBUILD2013-11-15 01:46:50 UTC (rev 101019)
@@ -5,7 +5,7 @@
 # Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-control-center
-pkgver=2.0.7
+pkgver=2.0.8
 pkgrel=1
 pkgdesc=The Control Center for Cinnamon
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 options=('!emptydirs')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-control-center/archive/$pkgver.tar.gz;
 region.patch)
-sha256sums=('0240b3f267b16ae70b621d105d7ed383e39afa9a37373e2ea43381bff0f48acb'
+sha256sums=('49c7b5eae92d9708c12ca5bd694afdfc8aba31ae3de77904bf5107c2c9a30a3f'
 '077cb8d6814c32a4df85f71c2b8fa84da25e5260263a6e0536c6e1626051f022')
 
 prepare() {



[arch-commits] Commit in cinnamon-control-center/repos (12 files)

2013-11-14 Thread Alexandre Filgueira
Date: Friday, November 15, 2013 @ 02:48:09
  Author: faidoc
Revision: 101020

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

Added:
  cinnamon-control-center/repos/community-i686/PKGBUILD
(from rev 101019, cinnamon-control-center/trunk/PKGBUILD)
  cinnamon-control-center/repos/community-i686/cinnamon-control-center.install
(from rev 101019, 
cinnamon-control-center/trunk/cinnamon-control-center.install)
  cinnamon-control-center/repos/community-i686/region.patch
(from rev 101019, cinnamon-control-center/trunk/region.patch)
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
(from rev 101019, cinnamon-control-center/trunk/PKGBUILD)
  cinnamon-control-center/repos/community-x86_64/cinnamon-control-center.install
(from rev 101019, 
cinnamon-control-center/trunk/cinnamon-control-center.install)
  cinnamon-control-center/repos/community-x86_64/region.patch
(from rev 101019, cinnamon-control-center/trunk/region.patch)
Deleted:
  cinnamon-control-center/repos/community-i686/PKGBUILD
  cinnamon-control-center/repos/community-i686/cinnamon-control-center.install
  cinnamon-control-center/repos/community-i686/region.patch
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
  cinnamon-control-center/repos/community-x86_64/cinnamon-control-center.install
  cinnamon-control-center/repos/community-x86_64/region.patch

--+
 /PKGBUILD|  118 
 /cinnamon-control-center.install |   22 
 /region.patch|10626 +
 community-i686/PKGBUILD  |   59 
 community-i686/cinnamon-control-center.install   |   11 
 community-i686/region.patch  | 5313 --
 community-x86_64/PKGBUILD|   59 
 community-x86_64/cinnamon-control-center.install |   11 
 community-x86_64/region.patch| 5313 --
 9 files changed, 10766 insertions(+), 10766 deletions(-)

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


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

2013-11-14 Thread Alexandre Filgueira
Date: Friday, November 15, 2013 @ 02:50:57
  Author: faidoc
Revision: 101021

upgpkg: nemo 2.0.6-1

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-15 01:48:09 UTC (rev 101020)
+++ PKGBUILD2013-11-15 01:50:57 UTC (rev 101021)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=2.0.5
+pkgver=2.0.6
 pkgrel=1
 pkgdesc=Cinnamon file manager (Nautilus fork)
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!emptydirs')
 install=nemo.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
-sha256sums=('5c737c4ede5f4e000fbfe247d1f86086c885f4b0d0f38790db885bf62ac51fc6')
+sha256sums=('4d00d805faad653de3f095d3352c76dd10315df1154a09dce6bd0ca4002cdcf8')
 
 prepare() {
   cd linuxmint-nemo-*



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

2013-11-14 Thread Alexandre Filgueira
Date: Friday, November 15, 2013 @ 02:51:43
  Author: faidoc
Revision: 101022

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

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

---+
 /PKGBUILD |  102 
 /nemo.install |   28 ++
 community-i686/PKGBUILD   |   51 
 community-i686/nemo.install   |   14 -
 community-x86_64/PKGBUILD |   51 
 community-x86_64/nemo.install |   14 -
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-15 01:50:57 UTC (rev 101021)
+++ community-i686/PKGBUILD 2013-11-15 01:51:43 UTC (rev 101022)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=2.0.5
-pkgrel=1
-pkgdesc=Cinnamon file manager (Nautilus fork)
-arch=('i686' 'x86_64')
-url=https://github.com/linuxmint/nemo;
-license=('GPL')
-depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
- 'cinnamon-desktop' 'gnome-icon-theme' 'libnotify' 'libtracker-sparql' 
'libxml2'
- 'cinnamon-translations')
-makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common')
-options=('!emptydirs')
-install=nemo.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
-sha256sums=('5c737c4ede5f4e000fbfe247d1f86086c885f4b0d0f38790db885bf62ac51fc6')
-
-prepare() {
-  cd linuxmint-nemo-*
-
-  # Python2 fix
-  sed -i 's/bin\/python/bin\/python2/g' 
files/usr/share/nemo/actions/myaction.py
-
-  # Fix build
-  sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
-
-  # Rename 'Files' app name to avoid having the same as nautilus
-  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
-}
-
-build() {
-  cd linuxmint-nemo-*
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/nemo \
-  --disable-update-mimedb \
-  --disable-packagekit \
-  --disable-gtk-doc-html \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd linuxmint-nemo-*
-
-  make DESTDIR=$pkgdir/ install
-}

Copied: nemo/repos/community-i686/PKGBUILD (from rev 101021, 
nemo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-15 01:51:43 UTC (rev 101022)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.0.6
+pkgrel=1
+pkgdesc=Cinnamon file manager (Nautilus fork)
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/nemo;
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
+ 'cinnamon-desktop' 'gnome-icon-theme' 'libnotify' 'libtracker-sparql' 
'libxml2'
+ 'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common')
+options=('!emptydirs')
+install=nemo.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
+sha256sums=('4d00d805faad653de3f095d3352c76dd10315df1154a09dce6bd0ca4002cdcf8')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  sed -i 's/bin\/python/bin\/python2/g' 
files/usr/share/nemo/actions/myaction.py
+
+  # Fix build
+  sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
+
+  # Rename 'Files' app name to avoid having the same as nautilus
+  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
+}
+
+build() {
+  cd linuxmint-nemo-*
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nemo \
+  --disable-update-mimedb \
+  --disable-packagekit \
+  --disable-gtk-doc-html \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/nemo.install
===
--- community-i686/nemo.install 2013-11-15 01:50:57 UTC (rev 101021)
+++ community-i686/nemo.install 2013-11-15 01:51:43 UTC (rev 101022)
@@ -1,14 +0,0 @@
-post_install() {
-  glib-compile-schemas --allow-any-name usr/share/glib-2.0/schemas
-  update-desktop-database 

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

2013-11-14 Thread Felix Yan
Date: Friday, November 15, 2013 @ 03:41:52
  Author: fyan
Revision: 101023

upgpkg: python-boto 2.17.0-1

Modified:
  python-boto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-15 01:51:43 UTC (rev 101022)
+++ PKGBUILD2013-11-15 02:41:52 UTC (rev 101023)
@@ -5,7 +5,7 @@
 
 pkgbase=python-boto
 pkgname=python2-boto
-pkgver=2.16.0
+pkgver=2.17.0
 pkgrel=1
 pkgdesc='A Python interface to Amazon Web Services (AWS)'
 arch=('any')
@@ -33,5 +33,5 @@
   install -D -m644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
-sha512sums=('20fd7d213db22948cd993ed609587344eb7aeeedb45cdbf15cc1c23cb8f4fb5dc2ba2e9a5257699d6f2b8e130c9407961cbcfb3d7e42673742082ba94371fe96'
+sha512sums=('43be5f14a11ca5cb2f76c8b8fa256e34070400ee1844fd58495744a36f490f2aacf6453c951ab628eebbd82d469d220636570a9dc9ccd661133dffe491f8eedd'
 
'1d7ec138faa438b8302b9d15a5b8ec80dcda4b9854408095cf01f83b6d131cf6e567e564b888fdddab087953a595d85487435bb8aca445354bd0be14676a3a8d')



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

2013-11-14 Thread Felix Yan
Date: Friday, November 15, 2013 @ 03:42:35
  Author: fyan
Revision: 101024

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/LICENSE
(from rev 101023, python-boto/trunk/LICENSE)
  python-boto/repos/community-any/PKGBUILD
(from rev 101023, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/LICENSE
  python-boto/repos/community-any/PKGBUILD

--+
 LICENSE  |   38 +++
 PKGBUILD |   74 ++---
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2013-11-15 02:41:52 UTC (rev 101023)
+++ LICENSE 2013-11-15 02:42:35 UTC (rev 101024)
@@ -1,19 +0,0 @@
-Copyright (c) 2007 Mitch Garnaat
-
-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 THE
-AUTHORS OR COPYRIGHT HOLDERS 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.

Copied: python-boto/repos/community-any/LICENSE (from rev 101023, 
python-boto/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2013-11-15 02:42:35 UTC (rev 101024)
@@ -0,0 +1,19 @@
+Copyright (c) 2007 Mitch Garnaat
+
+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 THE
+AUTHORS OR COPYRIGHT HOLDERS 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.

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-15 02:41:52 UTC (rev 101023)
+++ PKGBUILD2013-11-15 02:42:35 UTC (rev 101024)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Maintainer: Kaiting Chen kaitocr...@gmail.com
-# Maintainer: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.16.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(http://github.com/boto/boto/archive/${pkgver}.tar.gz;
-'LICENSE')
-
-prepare() {
-  cd boto-$pkgver
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-package_python2-boto() {
-  cd boto-$pkgver
-
-  python2 setup.py install --root=$pkgdir
-  install -D -m644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('20fd7d213db22948cd993ed609587344eb7aeeedb45cdbf15cc1c23cb8f4fb5dc2ba2e9a5257699d6f2b8e130c9407961cbcfb3d7e42673742082ba94371fe96'
-
'1d7ec138faa438b8302b9d15a5b8ec80dcda4b9854408095cf01f83b6d131cf6e567e564b888fdddab087953a595d85487435bb8aca445354bd0be14676a3a8d')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 101023, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-15 02:42:35 UTC (rev 101024)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Kaiting 

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

2013-11-14 Thread Felix Yan
Date: Friday, November 15, 2013 @ 03:44:15
  Author: fyan
Revision: 101025

upgpkg: wiznote 2.0.63-1

Modified:
  wiznote/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-15 02:42:35 UTC (rev 101024)
+++ PKGBUILD2013-11-15 02:44:15 UTC (rev 101025)
@@ -3,7 +3,7 @@
 # Contributor: Albert.Zhou albert.z...@wiz.cn
 
 pkgname=wiznote
-pkgver=2.0.62
+pkgver=2.0.63
 pkgrel=1
 pkgdesc=Opensource cross-platform cloud based note-taking client
 arch=('i686' 'x86_64')



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

2013-11-14 Thread Felix Yan
Date: Friday, November 15, 2013 @ 03:55:06
  Author: fyan
Revision: 101026

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

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

--+
 /PKGBUILD|   56 +
 /wiznote.install |   24 +++
 community-i686/PKGBUILD  |   28 --
 community-i686/wiznote.install   |   12 ---
 community-x86_64/PKGBUILD|   28 --
 community-x86_64/wiznote.install |   12 ---
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-15 02:44:15 UTC (rev 101025)
+++ community-i686/PKGBUILD 2013-11-15 02:55:06 UTC (rev 101026)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Albert.Zhou albert.z...@wiz.cn
-
-pkgname=wiznote
-pkgver=2.0.62
-pkgrel=1
-pkgdesc=Opensource cross-platform cloud based note-taking client
-arch=('i686' 'x86_64')
-url=http://www.wiznote.com;
-license=('GPL3' 'custom')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'qt5-base' 
'qt5-webkit') # indirect: qt5-declarative qt5-sensors zlib glic gcc-libs
-makedepends=('cmake' 'qt5-tools' 'git')
-install=wiznote.install
-_wiznote_project_name=WizQTClient
-source=(git+https://github.com/WizTeam/${_wiznote_project_name}.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-cd $_wiznote_project_name
-cmake -DWIZNOTE_USE_QT5=YES -DCMAKE_INSTALL_PREFIX=/usr/ .
-   make
-}
-
-package() {
-   cd $_wiznote_project_name
-   make DESTDIR=$pkgdir/ install
-}

Copied: wiznote/repos/community-i686/PKGBUILD (from rev 101025, 
wiznote/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-15 02:55:06 UTC (rev 101026)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Albert.Zhou albert.z...@wiz.cn
+
+pkgname=wiznote
+pkgver=2.0.63
+pkgrel=1
+pkgdesc=Opensource cross-platform cloud based note-taking client
+arch=('i686' 'x86_64')
+url=http://www.wiznote.com;
+license=('GPL3' 'custom')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'qt5-base' 
'qt5-webkit') # indirect: qt5-declarative qt5-sensors zlib glic gcc-libs
+makedepends=('cmake' 'qt5-tools' 'git')
+install=wiznote.install
+_wiznote_project_name=WizQTClient
+source=(git+https://github.com/WizTeam/${_wiznote_project_name}.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+cd $_wiznote_project_name
+cmake -DWIZNOTE_USE_QT5=YES -DCMAKE_INSTALL_PREFIX=/usr/ .
+   make
+}
+
+package() {
+   cd $_wiznote_project_name
+   make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/wiznote.install
===
--- community-i686/wiznote.install  2013-11-15 02:44:15 UTC (rev 101025)
+++ community-i686/wiznote.install  2013-11-15 02:55:06 UTC (rev 101026)
@@ -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: wiznote/repos/community-i686/wiznote.install (from rev 101025, 
wiznote/trunk/wiznote.install)
===
--- community-i686/wiznote.install  (rev 0)
+++ community-i686/wiznote.install  2013-11-15 02:55:06 UTC (rev 101026)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-15 02:44:15 UTC (rev 101025)
+++ community-x86_64/PKGBUILD   2013-11-15 02:55:06 UTC (rev 101026)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Albert.Zhou albert.z...@wiz.cn
-
-pkgname=wiznote
-pkgver=2.0.62
-pkgrel=1
-pkgdesc=Opensource cross-platform cloud based note-taking client
-arch=('i686' 'x86_64')
-url=http://www.wiznote.com;
-license=('GPL3' 'custom')

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

2013-11-14 Thread Sébastien Luttringer
Date: Friday, November 15, 2013 @ 04:04:13
  Author: seblu
Revision: 101027

upgpkg: linux-tools 3.12-1

Modified:
  linux-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-15 02:55:06 UTC (rev 101026)
+++ PKGBUILD2013-11-15 03:04:13 UTC (rev 101027)
@@ -8,8 +8,8 @@
  'cpupower'
  'x86_energy_perf_policy'
  'usbip')
-pkgver=3.11
-pkgrel=2
+pkgver=3.12
+pkgrel=1
 license=('GPL2')
 arch=('i686' 'x86_64')
 url='http://www.kernel.org'
@@ -31,7 +31,7 @@
 'cpupower.service'
 'usbipd.service')
 # http://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
-sha256sums=('803ec8f0ad4b2ddedcb0332a590cd2b5e10dfc57c3b1c95bc9c46af81d51d7f9'
+sha256sums=('2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02'
 '4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
 'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
 'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'



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

2013-11-14 Thread Sébastien Luttringer
Date: Friday, November 15, 2013 @ 04:04:29
  Author: seblu
Revision: 101028

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

Added:
  linux-tools/repos/community-i686/PKGBUILD
(from rev 101027, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-i686/cpupower.default
(from rev 101027, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-i686/cpupower.install
(from rev 101027, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-i686/cpupower.service
(from rev 101027, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-i686/cpupower.systemd
(from rev 101027, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-i686/usbipd.service
(from rev 101027, linux-tools/trunk/usbipd.service)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 101027, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 101027, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 101027, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 101027, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 101027, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 101027, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-i686/PKGBUILD
  linux-tools/repos/community-i686/cpupower.default
  linux-tools/repos/community-i686/cpupower.install
  linux-tools/repos/community-i686/cpupower.service
  linux-tools/repos/community-i686/cpupower.systemd
  linux-tools/repos/community-i686/usbipd.service
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

---+
 /PKGBUILD |  330 
 /cpupower.default |   58 ++
 /cpupower.install |   26 ++
 /cpupower.service |   20 ++
 /cpupower.systemd |   64 ++
 /usbipd.service   |   18 +
 community-i686/PKGBUILD   |  165 --
 community-i686/cpupower.default   |   29 ---
 community-i686/cpupower.install   |   13 -
 community-i686/cpupower.service   |   10 -
 community-i686/cpupower.systemd   |   32 ---
 community-i686/usbipd.service |9 
 community-x86_64/PKGBUILD |  165 --
 community-x86_64/cpupower.default |   29 ---
 community-x86_64/cpupower.install |   13 -
 community-x86_64/cpupower.service |   10 -
 community-x86_64/cpupower.systemd |   32 ---
 community-x86_64/usbipd.service   |9 
 18 files changed, 516 insertions(+), 516 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-15 03:04:13 UTC (rev 101027)
+++ community-i686/PKGBUILD 2013-11-15 03:04:29 UTC (rev 101028)
@@ -1,165 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=linux-tools
-pkgname=('linux-tools-meta'
- 'libtraceevent'
- 'perf'
- 'cpupower'
- 'x86_energy_perf_policy'
- 'usbip')
-pkgver=3.11
-pkgrel=2
-license=('GPL2')
-arch=('i686' 'x86_64')
-url='http://www.kernel.org'
-options=('!strip')
-# split packages need all package dependencies set manually in makedepends
-# kernel source deps
-makedepends=('asciidoc' 'xmlto')
-# perf deps
-makedepends+=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind')
-# cpupower deps
-makedepends+=('pciutils')
-# usbip deps
-makedepends+=('glib2' 'sysfsutils')
-groups=($pkgbase)
-source=(http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$pkgver.tar.xz;
-#http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.5.xz;
-'cpupower.default'
-'cpupower.systemd'
-'cpupower.service'
-'usbipd.service')
-# http://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
-sha256sums=('803ec8f0ad4b2ddedcb0332a590cd2b5e10dfc57c3b1c95bc9c46af81d51d7f9'
-'4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
-'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
-'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'
-'2e187734d8aec58a3046d79883510d779aa93fb3ab20bd3132c1a607ebe5498f')
-
-#prepare() {
-#  # apply stable patching set
-#  cd linux-$pkgver
-#  patch -N -p1 -i $srcdir/patch-$pkgver.5
-#}
-
-build() {
-  msg2 'Build libtraceevent'
-  pushd linux-$pkgver/tools/lib/traceevent
-  make
-  popd
-
-  msg2 'Build perf'
-  pushd linux-$pkgver/tools/perf
-  make \
-WERROR=0 \
-