[arch-commits] Commit in soprano/repos (testing-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:44:01
  Author: andrea
Revision: 130177

archrelease: copy trunk to testing-x86_64

Added:
  soprano/repos/testing-x86_64/



[arch-commits] Commit in soprano/repos (testing-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:43:49
  Author: andrea
Revision: 130176

archrelease: remove testing-x86_64

Deleted:
  soprano/repos/testing-x86_64/



[arch-commits] Commit in soprano/repos (testing-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:43:46
  Author: andrea
Revision: 130175

archrelease: copy trunk to testing-i686

Added:
  soprano/repos/testing-i686/



[arch-commits] Commit in soprano/repos (testing-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:43:30
  Author: andrea
Revision: 130174

archrelease: remove testing-i686

Deleted:
  soprano/repos/testing-i686/



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

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:43:27
  Author: andrea
Revision: 130173

upgpkg: soprano 2.6.50git20110703-1
version bump

Modified:
  soprano/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 23:33:53 UTC (rev 130172)
+++ PKGBUILD2011-07-02 23:43:27 UTC (rev 130173)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=soprano
-pkgver=2.6.0git20110629
+pkgver=2.6.50git20110703
 pkgrel=1
 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
 arch=('i686' 'x86_64')



[arch-commits] Commit in kde-agent/repos (testing-any)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:33:53
  Author: andrea
Revision: 130172

archrelease: copy trunk to testing-any

Added:
  kde-agent/repos/testing-any/



[arch-commits] Commit in kde-agent/trunk (7 files)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:33:38
  Author: andrea
Revision: 130171

upgpkg: kde-agent 20110602-1
Split the ssh agent and the gpg agent (thanks to Fedora guys for the latter), 
this support ssh/gpg agents already running before of the KDE session

Added:
  kde-agent/trunk/gpg-agent-shutdown.sh
  kde-agent/trunk/gpg-agent-startup.sh
  kde-agent/trunk/ssh-agent-shutdown.sh
  kde-agent/trunk/ssh-agent-startup.sh
Modified:
  kde-agent/trunk/PKGBUILD
Deleted:
  kde-agent/trunk/agent-shutdown.sh
  kde-agent/trunk/agent-startup.sh

---+
 PKGBUILD  |   29 ++---
 agent-shutdown.sh |   13 -
 agent-startup.sh  |   19 ---
 gpg-agent-shutdown.sh |   14 ++
 gpg-agent-startup.sh  |   31 +++
 ssh-agent-shutdown.sh |6 ++
 ssh-agent-startup.sh  |   11 +++
 7 files changed, 80 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 23:02:08 UTC (rev 130170)
+++ PKGBUILD2011-07-02 23:33:38 UTC (rev 130171)
@@ -1,20 +1,27 @@
 # $Id$
-# Maintainer: Tobias Powalowski 
+# Maintainer: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
 
 pkgname=kde-agent
-pkgver=20090801
-pkgrel=2
+pkgver=20110602
+pkgrel=1
 pkgdesc="Startup and shutdown scripts for gpg-agent and ssh-agent in KDE"
-arch=('i686' 'x86_64')
+arch=('any')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
 depends=('pinentry' 'openssh' 'qt')
-source=(agent-startup.sh 
-agent-shutdown.sh)
+source=('gpg-agent-startup.sh' 'gpg-agent-shutdown.sh'
+'ssh-agent-startup.sh' 'ssh-agent-shutdown.sh')
+md5sums=('1eb1408f2adec23b6747f8f194b6ee3d'
+ '6838aa08aaf27962e3f833d25daa086a'
+ '8b8c4f60aa0670db20dd1beccf88'
+ 'a5d2f2191f31c4f869c98067010395d4')
 
-build() {
-  install -D -m 755 $srcdir/agent-startup.sh 
$pkgdir/etc/kde/env/agent-startup.sh
-  install -D -m 755 $srcdir/agent-shutdown.sh 
$pkgdir/etc/kde/shutdown/agent-shutdown.sh
+package() {
+  cd "${srcdir}"
+  install -d "${pkgdir}"/etc/kde/env
+  install -D -m755 {gpg,ssh}-agent-startup.sh "${pkgdir}"/etc/kde/env/
+
+  install -d "${pkgdir}"/etc/kde/shutdown
+  install -D -m755 {gpg,ssh}-agent-shutdown.sh "${pkgdir}"/etc/kde/shutdown/
 }
-md5sums=('7daec96c125e1e238a35f31ea4a476f0'
- '18e8d01124b19f7df2937c06e177bf7f')

Deleted: agent-shutdown.sh
===
--- agent-shutdown.sh   2011-07-02 23:02:08 UTC (rev 130170)
+++ agent-shutdown.sh   2011-07-02 23:33:38 UTC (rev 130171)
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# This file is executed at kde shutdown.
-# Uncomment the following lines to kill the agents
-# that were started at session startup.
-
-if [ "${GPG_AGENT_INFO}" ]; then
-  kill $(echo ${GPG_AGENT_INFO} | cut -d':' -f 2) >/dev/null 2>&1
-fi
-#
-if [ "${SSH_AGENT_PID}" ]; then
-  ssh-agent -k
-fi

Deleted: agent-startup.sh
===
--- agent-startup.sh2011-07-02 23:02:08 UTC (rev 130170)
+++ agent-startup.sh2011-07-02 23:33:38 UTC (rev 130171)
@@ -1,19 +0,0 @@
-# Agents startup file
-#
-# This file is sourced at kde startup, so that
-# the environment variables set here are available
-# throughout the session.
-
-# Uncomment the following lines to start gpg-agent
-# and/or ssh-agent at kde startup.
-# If you do so, do not forget to uncomment the respective
-# lines in KDEDIR/shutdown/agent-shutdown.sh to
-# properly kill the agents when the session ends.
-
-if [ -x /usr/bin/gpg-agent ]; then
-  eval "$(/usr/bin/gpg-agent --daemon --pinentry-program 
/usr/bin/pinentry-qt4)"
-fi 
-#
-if [ -x /usr/bin/ssh-agent ]; then
-  eval "$(/usr/bin/ssh-agent -s)"
-fi

Added: gpg-agent-shutdown.sh
===
--- gpg-agent-shutdown.sh   (rev 0)
+++ gpg-agent-shutdown.sh   2011-07-02 23:33:38 UTC (rev 130171)
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+## The nice way
+if test -n "${GPG_AGENT_INFO}"; then
+  GPG_AGENT_PID=`echo ${GPG_AGENT_INFO} | cut -d: -f2` && kill 
${GPG_AGENT_PID} ||:
+  unset GPG_AGENT_INFO
+fi
+
+## The not so nice way
+## NOTE: a root login will kill *all* users' gpg-agents
+#killall gpg-agent
+
+## clean/remove .gpg-agent-info
+rm -f $HOME/.gpg-agent-info


Property changes on: kde-agent/trunk/gpg-agent-shutdown.sh
___
Added: svn:executable
   + *

Added: gpg-agent-startup.sh
===
--- gpg-agent-startup.sh(rev 0)
+++ gpg-agent-startup.sh2011-07-02 23:33:38 UTC (rev 130171)
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+GPG_AGENT=/usr/bin/gpg-agent
+## Run gpg-agent only if not already running, and available
+if [ -x "${GPG_AGENT}" ] ; then
+
+  # check valid

[arch-commits] Commit in soprano (kde-unstable)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:02:08
  Author: andrea
Revision: 130170

cleanup

Deleted:
  soprano/kde-unstable/



[arch-commits] Commit in rasqal/repos (testing-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:01:15
  Author: andrea
Revision: 130169

archrelease: copy trunk to testing-x86_64

Added:
  rasqal/repos/testing-x86_64/



[arch-commits] Commit in rasqal/repos (testing-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:01:03
  Author: andrea
Revision: 130168

archrelease: remove testing-x86_64

Deleted:
  rasqal/repos/testing-x86_64/



[arch-commits] Commit in rasqal/repos (testing-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:01:01
  Author: andrea
Revision: 130167

archrelease: copy trunk to testing-i686

Added:
  rasqal/repos/testing-i686/



[arch-commits] Commit in rasqal/repos (testing-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:00:47
  Author: andrea
Revision: 130166

archrelease: remove testing-i686

Deleted:
  rasqal/repos/testing-i686/



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

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 19:00:40
  Author: andrea
Revision: 130165

upgpkg: rasqal 0.9.26-1
needs epoch

Modified:
  rasqal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 21:54:29 UTC (rev 130164)
+++ PKGBUILD2011-07-02 23:00:40 UTC (rev 130165)
@@ -3,6 +3,7 @@
 # Contributor: Lawrence Lee 
 
 pkgname=rasqal
+epoch=1
 pkgver=0.9.26
 pkgrel=1
 pkgdesc="A free C library that handles Resource Description Framework (RDF) 
query syntaxes, query construction and query execution returning result 
bindings"



[arch-commits] Commit in soprano/repos (kde-unstable-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 17:54:29
  Author: andrea
Revision: 130164

db-remove: soprano removed by andrea

Deleted:
  soprano/repos/kde-unstable-x86_64/



[arch-commits] Commit in soprano/repos (kde-unstable-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 17:54:22
  Author: andrea
Revision: 130163

db-remove: soprano removed by andrea

Deleted:
  soprano/repos/kde-unstable-i686/



[arch-commits] Commit in soprano/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 17:54:04
  Author: andrea
Revision: 130162

db-move: moved soprano from [staging] to [testing] (x86_64)

Added:
  soprano/repos/testing-x86_64/
Deleted:
  soprano/repos/staging-x86_64/



[arch-commits] Commit in soprano/repos (staging-i686 testing-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 17:54:03
  Author: andrea
Revision: 130161

db-move: moved soprano from [staging] to [testing] (i686)

Added:
  soprano/repos/testing-i686/
Deleted:
  soprano/repos/staging-i686/



[arch-commits] Commit in rasqal/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 17:53:48
  Author: andrea
Revision: 130160

db-move: moved rasqal from [staging] to [testing] (x86_64)

Added:
  rasqal/repos/testing-x86_64/
Deleted:
  rasqal/repos/staging-x86_64/



[arch-commits] Commit in rasqal/repos (staging-i686 testing-i686)

2011-07-02 Thread Andrea Scarpino
Date: Saturday, July 2, 2011 @ 17:53:48
  Author: andrea
Revision: 130159

db-move: moved rasqal from [staging] to [testing] (i686)

Added:
  rasqal/repos/testing-i686/
Deleted:
  rasqal/repos/staging-i686/



[arch-commits] Commit in subversion/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:43:03
  Author: stephane
Revision: 130158

db-move: moved subversion from [staging] to [testing] (x86_64)

Added:
  subversion/repos/testing-x86_64/
Deleted:
  subversion/repos/staging-x86_64/



[arch-commits] Commit in ruby/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:43:00
  Author: stephane
Revision: 130156

db-move: moved ruby from [staging] to [testing] (x86_64)

Added:
  ruby/repos/testing-x86_64/
Deleted:
  ruby/repos/staging-x86_64/



[arch-commits] Commit in subversion/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:43:01
  Author: stephane
Revision: 130157

db-move: moved subversion from [staging] to [testing] (i686)

Added:
  subversion/repos/testing-i686/
Deleted:
  subversion/repos/staging-i686/



[arch-commits] Commit in ruby/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:57
  Author: stephane
Revision: 130155

db-move: moved ruby from [staging] to [testing] (i686)

Added:
  ruby/repos/testing-i686/
Deleted:
  ruby/repos/staging-i686/



[arch-commits] Commit in redland/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:54
  Author: stephane
Revision: 130154

db-move: moved redland from [staging] to [testing] (x86_64)

Added:
  redland/repos/testing-x86_64/
Deleted:
  redland/repos/staging-x86_64/



[arch-commits] Commit in redland/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:50
  Author: stephane
Revision: 130153

db-move: moved redland from [staging] to [testing] (i686)

Added:
  redland/repos/testing-i686/
Deleted:
  redland/repos/staging-i686/



[arch-commits] Commit in python2/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:47
  Author: stephane
Revision: 130152

db-move: moved python2 from [staging] to [testing] (x86_64)

Added:
  python2/repos/testing-x86_64/
Deleted:
  python2/repos/staging-x86_64/



[arch-commits] Commit in python2/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:45
  Author: stephane
Revision: 130151

db-move: moved python2 from [staging] to [testing] (i686)

Added:
  python2/repos/testing-i686/
Deleted:
  python2/repos/staging-i686/



[arch-commits] Commit in postfix/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:43
  Author: stephane
Revision: 130150

db-move: moved postfix from [staging] to [testing] (x86_64)

Added:
  postfix/repos/testing-x86_64/
Deleted:
  postfix/repos/staging-x86_64/



[arch-commits] Commit in postfix/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:42
  Author: stephane
Revision: 130149

db-move: moved postfix from [staging] to [testing] (i686)

Added:
  postfix/repos/testing-i686/
Deleted:
  postfix/repos/staging-i686/



[arch-commits] Commit in php/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:41
  Author: stephane
Revision: 130148

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
Deleted:
  php/repos/staging-x86_64/



[arch-commits] Commit in php/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:39
  Author: stephane
Revision: 130147

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
Deleted:
  php/repos/staging-i686/



[arch-commits] Commit in perl/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:37
  Author: stephane
Revision: 130146

db-move: moved perl from [staging] to [testing] (x86_64)

Added:
  perl/repos/testing-x86_64/
Deleted:
  perl/repos/staging-x86_64/



[arch-commits] Commit in perl/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:35
  Author: stephane
Revision: 130145

db-move: moved perl from [staging] to [testing] (i686)

Added:
  perl/repos/testing-i686/
Deleted:
  perl/repos/staging-i686/



[arch-commits] Commit in pam/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:32
  Author: stephane
Revision: 130144

db-move: moved pam from [staging] to [testing] (x86_64)

Added:
  pam/repos/testing-x86_64/
Deleted:
  pam/repos/staging-x86_64/



[arch-commits] Commit in pam/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:31
  Author: stephane
Revision: 130143

db-move: moved pam from [staging] to [testing] (i686)

Added:
  pam/repos/testing-i686/
Deleted:
  pam/repos/staging-i686/



[arch-commits] Commit in openldap/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:29
  Author: stephane
Revision: 130142

db-move: moved openldap from [staging] to [testing] (x86_64)

Added:
  openldap/repos/testing-x86_64/
Deleted:
  openldap/repos/staging-x86_64/



[arch-commits] Commit in openldap/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:26
  Author: stephane
Revision: 130141

db-move: moved openldap from [staging] to [testing] (i686)

Added:
  openldap/repos/testing-i686/
Deleted:
  openldap/repos/staging-i686/



[arch-commits] Commit in mod_perl/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:24
  Author: stephane
Revision: 130139

db-move: moved mod_perl from [staging] to [testing] (i686)

Added:
  mod_perl/repos/testing-i686/
Deleted:
  mod_perl/repos/staging-i686/



[arch-commits] Commit in mod_perl/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:24
  Author: stephane
Revision: 130140

db-move: moved mod_perl from [staging] to [testing] (x86_64)

Added:
  mod_perl/repos/testing-x86_64/
Deleted:
  mod_perl/repos/staging-x86_64/



[arch-commits] Commit in moc/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:23
  Author: stephane
Revision: 130138

db-move: moved moc from [staging] to [testing] (x86_64)

Added:
  moc/repos/testing-x86_64/
Deleted:
  moc/repos/staging-x86_64/



[arch-commits] Commit in moc/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:21
  Author: stephane
Revision: 130137

db-move: moved moc from [staging] to [testing] (i686)

Added:
  moc/repos/testing-i686/
Deleted:
  moc/repos/staging-i686/



[arch-commits] Commit in libsasl/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:20
  Author: stephane
Revision: 130136

db-move: moved libsasl from [staging] to [testing] (x86_64)

Added:
  libsasl/repos/testing-x86_64/
Deleted:
  libsasl/repos/staging-x86_64/



[arch-commits] Commit in libsasl/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:19
  Author: stephane
Revision: 130135

db-move: moved libsasl from [staging] to [testing] (i686)

Added:
  libsasl/repos/testing-i686/
Deleted:
  libsasl/repos/staging-i686/



[arch-commits] Commit in libreoffice/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:14
  Author: stephane
Revision: 130134

db-move: moved libreoffice from [staging] to [testing] (x86_64)

Added:
  libreoffice/repos/testing-x86_64/
Deleted:
  libreoffice/repos/staging-x86_64/



[arch-commits] Commit in libreoffice/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:08
  Author: stephane
Revision: 130133

db-move: moved libreoffice from [staging] to [testing] (i686)

Added:
  libreoffice/repos/testing-i686/
Deleted:
  libreoffice/repos/staging-i686/



[arch-commits] Commit in libetpan/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:06
  Author: stephane
Revision: 130132

db-move: moved libetpan from [staging] to [testing] (x86_64)

Added:
  libetpan/repos/testing-x86_64/
Deleted:
  libetpan/repos/staging-x86_64/



[arch-commits] Commit in libetpan/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:03
  Author: stephane
Revision: 130131

db-move: moved libetpan from [staging] to [testing] (i686)

Added:
  libetpan/repos/testing-i686/
Deleted:
  libetpan/repos/staging-i686/



[arch-commits] Commit in iproute2/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:02
  Author: stephane
Revision: 130130

db-move: moved iproute2 from [staging] to [testing] (x86_64)

Added:
  iproute2/repos/testing-x86_64/
Deleted:
  iproute2/repos/staging-x86_64/



[arch-commits] Commit in iproute2/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:42:00
  Author: stephane
Revision: 130129

db-move: moved iproute2 from [staging] to [testing] (i686)

Added:
  iproute2/repos/testing-i686/
Deleted:
  iproute2/repos/staging-i686/



[arch-commits] Commit in evolution-exchange/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:57
  Author: stephane
Revision: 130128

db-move: moved evolution-exchange from [staging] to [testing] (x86_64)

Added:
  evolution-exchange/repos/testing-x86_64/
Deleted:
  evolution-exchange/repos/staging-x86_64/



[arch-commits] Commit in evolution-exchange/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:56
  Author: stephane
Revision: 130127

db-move: moved evolution-exchange from [staging] to [testing] (i686)

Added:
  evolution-exchange/repos/testing-i686/
Deleted:
  evolution-exchange/repos/staging-i686/



[arch-commits] Commit in evolution-data-server/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:55
  Author: stephane
Revision: 130126

db-move: moved evolution-data-server from [staging] to [testing] (x86_64)

Added:
  evolution-data-server/repos/testing-x86_64/
Deleted:
  evolution-data-server/repos/staging-x86_64/



[arch-commits] Commit in evolution-data-server/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:54
  Author: stephane
Revision: 130125

db-move: moved evolution-data-server from [staging] to [testing] (i686)

Added:
  evolution-data-server/repos/testing-i686/
Deleted:
  evolution-data-server/repos/staging-i686/



[arch-commits] Commit in db/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:50
  Author: stephane
Revision: 130124

db-move: moved db from [staging] to [testing] (x86_64)

Added:
  db/repos/testing-x86_64/
Deleted:
  db/repos/staging-x86_64/



[arch-commits] Commit in db/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:44
  Author: stephane
Revision: 130123

db-move: moved db from [staging] to [testing] (i686)

Added:
  db/repos/testing-i686/
Deleted:
  db/repos/staging-i686/



[arch-commits] Commit in claws-mail/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:41
  Author: stephane
Revision: 130122

db-move: moved claws-mail from [staging] to [testing] (x86_64)

Added:
  claws-mail/repos/testing-x86_64/
Deleted:
  claws-mail/repos/staging-x86_64/



[arch-commits] Commit in bogofilter/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:38
  Author: stephane
Revision: 130120

db-move: moved bogofilter from [staging] to [testing] (x86_64)

Added:
  bogofilter/repos/testing-x86_64/
Deleted:
  bogofilter/repos/staging-x86_64/



[arch-commits] Commit in claws-mail/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:39
  Author: stephane
Revision: 130121

db-move: moved claws-mail from [staging] to [testing] (i686)

Added:
  claws-mail/repos/testing-i686/
Deleted:
  claws-mail/repos/staging-i686/



[arch-commits] Commit in bogofilter/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:37
  Author: stephane
Revision: 130119

db-move: moved bogofilter from [staging] to [testing] (i686)

Added:
  bogofilter/repos/testing-i686/
Deleted:
  bogofilter/repos/staging-i686/



[arch-commits] Commit in apr-util/repos (staging-x86_64 testing-x86_64)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:36
  Author: stephane
Revision: 130118

db-move: moved apr-util from [staging] to [testing] (x86_64)

Added:
  apr-util/repos/testing-x86_64/
Deleted:
  apr-util/repos/staging-x86_64/



[arch-commits] Commit in apr-util/repos (staging-i686 testing-i686)

2011-07-02 Thread Stéphane Gaudreault
Date: Saturday, July 2, 2011 @ 17:41:36
  Author: stephane
Revision: 130117

db-move: moved apr-util from [staging] to [testing] (i686)

Added:
  apr-util/repos/testing-i686/
Deleted:
  apr-util/repos/staging-i686/



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 17:25:32
  Author: dan
Revision: 130116

archrelease: copy trunk to extra-i686

Added:
  irqbalance/repos/extra-i686/



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 17:25:25
  Author: dan
Revision: 130115

archrelease: remove extra-i686

Deleted:
  irqbalance/repos/extra-i686/



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 17:25:10
  Author: dan
Revision: 130114

archrelease: copy trunk to extra-i686

Added:
  irqbalance/repos/extra-i686/



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 17:25:02
  Author: dan
Revision: 130113

archrelease: remove extra-i686

Deleted:
  irqbalance/repos/extra-i686/



[arch-commits] Commit in sqlite3/repos (core-x86_64 testing-x86_64)

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 17:22:47
  Author: andyrtr
Revision: 130112

db-move: moved sqlite3 from [testing] to [core] (x86_64)

Added:
  sqlite3/repos/core-x86_64/
Deleted:
  sqlite3/repos/testing-x86_64/



[arch-commits] Commit in sqlite3/repos (core-x86_64)

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 17:22:47
  Author: andyrtr
Revision: 130111

db-move: sqlite3 removed by andyrtr for move to [core] (x86_64)

Deleted:
  sqlite3/repos/core-x86_64/



[arch-commits] Commit in sqlite3/repos (core-i686 testing-i686)

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 17:22:46
  Author: andyrtr
Revision: 130110

db-move: moved sqlite3 from [testing] to [core] (i686)

Added:
  sqlite3/repos/core-i686/
Deleted:
  sqlite3/repos/testing-i686/



[arch-commits] Commit in sqlite3/repos (core-i686)

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 17:22:45
  Author: andyrtr
Revision: 130109

db-move: sqlite3 removed by andyrtr for move to [core] (i686)

Deleted:
  sqlite3/repos/core-i686/



[arch-commits] Commit in libreoffice/repos (staging-x86_64)

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 16:43:22
  Author: andyrtr
Revision: 130108

archrelease: copy trunk to staging-x86_64

Added:
  libreoffice/repos/staging-x86_64/



[arch-commits] Commit in libreoffice/repos (staging-i686)

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 16:42:55
  Author: andyrtr
Revision: 130107

archrelease: copy trunk to staging-i686

Added:
  libreoffice/repos/staging-i686/



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

2011-07-02 Thread andyrtr
Date: Saturday, July 2, 2011 @ 15:39:19
  Author: andyrtr
Revision: 130106

db+rdf rebuild

Modified:
  libreoffice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 15:48:14 UTC (rev 130105)
+++ PKGBUILD2011-07-02 19:39:19 UTC (rev 130106)
@@ -26,7 +26,7 @@
'libreoffice-extension-wiki-publisher')
 _LOver=3.4.1.3
 pkgver=3.4.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 #_LO_tree="3.4"
 _OFFICEUPD="340"



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 11:48:14
  Author: dan
Revision: 130105

archrelease: copy trunk to extra-x86_64

Added:
  irqbalance/repos/extra-x86_64/



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 11:48:06
  Author: dan
Revision: 130104

archrelease: remove extra-x86_64

Deleted:
  irqbalance/repos/extra-x86_64/



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

2011-07-02 Thread Dan McGee
Date: Saturday, July 2, 2011 @ 11:48:03
  Author: dan
Revision: 130103

upgpkg: irqbalance 0.56-3
add upstream changes and two patches from bug tracker

Added:
  irqbalance/trunk/Fix-detection-of-CPUs-in-sysfs.patch
  irqbalance/trunk/Special-interrupt-counts-line-NMI-may-start-with-a-s.patch
  irqbalance/trunk/current-trunk.patch
Modified:
  irqbalance/trunk/PKGBUILD

+
 Fix-detection-of-CPUs-in-sysfs.patch   |   35 +
 PKGBUILD   |   30 +
 Special-interrupt-counts-line-NMI-may-start-with-a-s.patch |   67 +++
 current-trunk.patch|  217 +++
 4 files changed, 339 insertions(+), 10 deletions(-)

Added: Fix-detection-of-CPUs-in-sysfs.patch
===
--- Fix-detection-of-CPUs-in-sysfs.patch(rev 0)
+++ Fix-detection-of-CPUs-in-sysfs.patch2011-07-02 15:48:03 UTC (rev 
130103)
@@ -0,0 +1,35 @@
+From: Shawn Bohrer 
+
+Only count directories that match /sys/devices/system/cpu/cpu[0-9]+ as
+CPUs.  Previously any directory that started with cpu was counted which
+caused cpufreq and cpuidle to be counted as CPUs.
+
+Signed-off-by: Shawn Bohrer 
+---
+ cputree.c |3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/cputree.c b/cputree.c
+index 3b0c982..b879785 100644
+--- a/cputree.c
 b/cputree.c
+@@ -25,6 +25,7 @@
+  */
+ 
+ #include "config.h"
++#include 
+ #include 
+ #include 
+ #include 
+@@ -321,7 +322,7 @@ void parse_cpu_tree(void)
+   return;
+   do {
+   entry = readdir(dir);
+-if (entry && strlen(entry->d_name)>3 && 
strstr(entry->d_name,"cpu")) {
++if (entry && !strncmp(entry->d_name,"cpu", 3) && 
isdigit(entry->d_name[3])) {
+   char new_path[PATH_MAX];
+   sprintf(new_path, "/sys/devices/system/cpu/%s", 
entry->d_name);
+   do_one_cpu(new_path);
+-- 
+1.6.5.2
+

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 12:50:40 UTC (rev 130102)
+++ PKGBUILD2011-07-02 15:48:03 UTC (rev 130103)
@@ -3,7 +3,7 @@
 
 pkgname=irqbalance
 pkgver=0.56
-pkgrel=1
+pkgrel=3
 pkgdesc="IRQ balancing daemon for SMP systems"
 arch=('i686' 'x86_64')
 url="http://www.irqbalance.org/";
@@ -13,22 +13,32 @@
 backup=(etc/conf.d/irqbalance)
 source=(http://irqbalance.googlecode.com/files/irqbalance-$pkgver.tbz2
 irqbalance.conf.d
-irqbalance.rc.d)
+irqbalance.rc.d
+current-trunk.patch
+Fix-detection-of-CPUs-in-sysfs.patch
+Special-interrupt-counts-line-NMI-may-start-with-a-s.patch)
 md5sums=('cd0c4d3b2bb84778a04fc594ad83949a'
  '336c1ee99818f9ecda1687e34c69fd6b'
- 'fb82fc5d267d39110baf720d81282a7c')
+ 'fb82fc5d267d39110baf720d81282a7c'
+ '64df09f54cf80d9ce5ff2751a882032d'
+ '00dcb394dac884c116657ade4fe623ee'
+ 'e774aff57054ce3c8b5adc7c3e5a74c2')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -Np0 < ../current-trunk.patch
+  patch -Np1 < ../Fix-detection-of-CPUs-in-sysfs.patch
+  patch -Np1 < ../Special-interrupt-counts-line-NMI-may-start-with-a-s.patch
   ./autogen.sh
-  ./configure
+  ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -D -m755 irqbalance $pkgdir/usr/sbin/irqbalance
-  install -D -m644 irqbalance.1 $pkgdir/usr/share/man/man1/irqbalance.1
-  install -D -m644 ../irqbalance.conf.d $pkgdir/etc/conf.d/irqbalance
-  install -D -m755 ../irqbalance.rc.d $pkgdir/etc/rc.d/irqbalance
+  cd "$srcdir/$pkgname-$pkgver"
+  make install DESTDIR="$pkgdir"
+  #install -D -m755 irqbalance $pkgdir/usr/sbin/irqbalance
+  #install -D -m644 irqbalance.1 $pkgdir/usr/share/man/man1/irqbalance.1
+  install -D -m644 ../irqbalance.conf.d "$pkgdir"/etc/conf.d/irqbalance
+  install -D -m755 ../irqbalance.rc.d "$pkgdir"/etc/rc.d/irqbalance
 }

Added: Special-interrupt-counts-line-NMI-may-start-with-a-s.patch
===
--- Special-interrupt-counts-line-NMI-may-start-with-a-s.patch  
(rev 0)
+++ Special-interrupt-counts-line-NMI-may-start-with-a-s.patch  2011-07-02 
15:48:03 UTC (rev 130103)
@@ -0,0 +1,67 @@
+From: Shawn Bohrer 
+
+Special interrupt counts line NMI may start with a space
+
+The kernel determines the maximum number of possible IRQs and pads the
+first field of /proc/interrupts appropriately.  With four or more digits
+of precession the special interrupt counts all start with a space
+instead of a letter.  This caused the special interrupt counts to be
+counted on my system and that caused the cpunr count to be off when it
+reached the ERR and MIS lines forcing a CPU rescan.
+
+Signed-off-by: Shawn 

[arch-commits] Commit in libproxy/repos (testing-x86_64)

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:50:40
  Author: ibiru
Revision: 130102

archrelease: copy trunk to testing-x86_64

Added:
  libproxy/repos/testing-x86_64/



[arch-commits] Commit in libproxy/repos (testing-x86_64)

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:50:24
  Author: ibiru
Revision: 130101

archrelease: remove testing-x86_64

Deleted:
  libproxy/repos/testing-x86_64/



[arch-commits] Commit in libproxy/repos (testing-i686)

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:50:20
  Author: ibiru
Revision: 130100

archrelease: copy trunk to testing-i686

Added:
  libproxy/repos/testing-i686/



[arch-commits] Commit in libproxy/repos (testing-i686)

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:50:04
  Author: ibiru
Revision: 130099

archrelease: remove testing-i686

Deleted:
  libproxy/repos/testing-i686/



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

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:49:41
  Author: ibiru
Revision: 130098

we don't really want namcap here

Modified:
  libproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 12:40:13 UTC (rev 130097)
+++ PKGBUILD2011-07-02 12:49:41 UTC (rev 130098)
@@ -12,7 +12,7 @@
 'networkmanager: NetworkManager configuration module'
 'perl: Perl bindings'
 'python2: Python bindings')
-makedepends=('cmake' 'networkmanager' 'automoc4' 'python2' 'kdelibs' 'perl' 
'namcap')
+makedepends=('cmake' 'networkmanager' 'automoc4' 'python2' 'kdelibs' 'perl')
 url="http://libproxy.googlecode.com";
 source=(http://libproxy.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
 options=('!libtool')



[arch-commits] Commit in libproxy/repos (testing-x86_64)

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:40:13
  Author: ibiru
Revision: 130097

archrelease: copy trunk to testing-x86_64

Added:
  libproxy/repos/testing-x86_64/



[arch-commits] Commit in libproxy/repos (testing-i686)

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:39:57
  Author: ibiru
Revision: 130096

archrelease: copy trunk to testing-i686

Added:
  libproxy/repos/testing-i686/



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

2011-07-02 Thread Ionut Biru
Date: Saturday, July 2, 2011 @ 08:28:56
  Author: ibiru
Revision: 130095

update to 0.4.7

Modified:
  libproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 07:58:42 UTC (rev 130094)
+++ PKGBUILD2011-07-02 12:28:56 UTC (rev 130095)
@@ -2,22 +2,21 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libproxy
-pkgver=0.4.6
-pkgrel=7
+pkgver=0.4.7
+pkgrel=1
 pkgdesc="A library that provides automatic proxy configuration management"
 arch=(i686 x86_64)
 license=('LGPL')
 depends=('gcc-libs')
-optdepends=('gconf: GNOME configuration module'
-'kdelibs: KDE configuration module'
+optdepends=('kdelibs: KDE configuration module'
 'networkmanager: NetworkManager configuration module'
 'perl: Perl bindings'
 'python2: Python bindings')
-makedepends=('gconf' 'cmake' 'networkmanager' 'automoc4' 'python2' 'kdelibs' 
'perl')
+makedepends=('cmake' 'networkmanager' 'automoc4' 'python2' 'kdelibs' 'perl' 
'namcap')
 url="http://libproxy.googlecode.com";
 source=(http://libproxy.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
 options=('!libtool')
-md5sums=('199c6b120baf1f7258a55f38d5ec74f5')
+md5sums=('509e03a488a61cd62bfbaf3ab6a2a7a5')
 
 build() {
   cd "${srcdir}"



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

2011-07-02 Thread Ray Rashif
Date: Saturday, July 2, 2011 @ 03:58:42
  Author: schiv
Revision: 130094

archrelease: copy trunk to extra-x86_64

Added:
  qjackctl/repos/extra-x86_64/



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

2011-07-02 Thread Ray Rashif
Date: Saturday, July 2, 2011 @ 03:58:15
  Author: schiv
Revision: 130093

archrelease: remove extra-x86_64

Deleted:
  qjackctl/repos/extra-x86_64/



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

2011-07-02 Thread Ray Rashif
Date: Saturday, July 2, 2011 @ 03:58:12
  Author: schiv
Revision: 130092

archrelease: copy trunk to extra-i686

Added:
  qjackctl/repos/extra-i686/



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

2011-07-02 Thread Ray Rashif
Date: Saturday, July 2, 2011 @ 03:57:52
  Author: schiv
Revision: 130091

archrelease: remove extra-i686

Deleted:
  qjackctl/repos/extra-i686/



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

2011-07-02 Thread Gaetan Bisson
Date: Saturday, July 2, 2011 @ 03:21:17
  Author: bisson
Revision: 130090

fix FS#24988

Modified:
  inkscape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 07:06:29 UTC (rev 130089)
+++ PKGBUILD2011-07-02 07:21:17 UTC (rev 130090)
@@ -13,7 +13,9 @@
 makedepends=('boost' 'pkg-config' 'intltool')
 depends=('gc' 'gtkmm' 'poppler-glib' 'pyxml' 'libxslt' 'gsl' 'popt' 'python2'
  'gtkspell' 'imagemagick' 'desktop-file-utils' 'hicolor-icon-theme')
-optdepends=('python2-numpy: some extensions'
+optdepends=('pstoedit: latex formulas'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
 'python-lxml: some extensions and filters'
 'uniconvertor: reading/writing to some proprietary formats')
 options=('!libtool')



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

2011-07-02 Thread Ray Rashif
Date: Saturday, July 2, 2011 @ 03:06:29
  Author: schiv
Revision: 130089

upgpkg: qjackctl 0.3.8-1
upstream release

Modified:
  qjackctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-02 06:30:14 UTC (rev 130088)
+++ PKGBUILD2011-07-02 07:06:29 UTC (rev 130089)
@@ -3,8 +3,8 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=qjackctl
-pkgver=0.3.7
-pkgrel=2
+pkgver=0.3.8
+pkgrel=1
 pkgdesc="A Qt front-end for the JACK low-latency audio server"
 url="http://qjackctl.sourceforge.net/";
 arch=('i686' 'x86_64')
@@ -12,19 +12,20 @@
 depends=('jack' 'qt')
 options=('!makeflags')
 source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('3462613bd5c92fa6e6ae92950bd69c0b')
+md5sums=('8a0992c01e50d8be22064ab7b08fbc78')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 
- ./configure --prefix=/usr
+  ./configure --prefix=/usr
+
   make
 }
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
 
-  make DESTDIR="$pkgdir/" install
+  make DESTDIR="$pkgdir" install
 }
 
 # vim:set ts=2 sw=2 et: