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

2013-03-13 Thread Allan McRae
Date: Wednesday, March 13, 2013 @ 07:06:51
  Author: allan
Revision: 179944

upgpkg: texinfo 5.1-1

upstream update

Modified:
  texinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 05:52:51 UTC (rev 179943)
+++ PKGBUILD2013-03-13 06:06:51 UTC (rev 179944)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=texinfo
-pkgver=5.0
+pkgver=5.1
 pkgrel=1
 pkgdesc=Utilities to work with and produce manuals, ASCII text, and on-line 
documentation from a single source file
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh')
 install=texinfo.install
 
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('ef2fad34c71ddc95b20c7d6a08c0d7a6'
- 'a1e46e27d14467b05abe652bfc30684e')
+md5sums=('52ee905a3b705020d2a1b6ec36d53ca6'
+ '65c8c95799ea5905e03cee5825d3553f')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-13 Thread Allan McRae
Date: Wednesday, March 13, 2013 @ 07:08:07
  Author: allan
Revision: 179945

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

Added:
  texinfo/repos/testing-i686/
  texinfo/repos/testing-i686/PKGBUILD
(from rev 179944, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-i686/texinfo-4.13a-data_types.patch
(from rev 179944, texinfo/trunk/texinfo-4.13a-data_types.patch)
  texinfo/repos/testing-i686/texinfo.install
(from rev 179944, texinfo/trunk/texinfo.install)
  texinfo/repos/testing-x86_64/
  texinfo/repos/testing-x86_64/PKGBUILD
(from rev 179944, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-x86_64/texinfo-4.13a-data_types.patch
(from rev 179944, texinfo/trunk/texinfo-4.13a-data_types.patch)
  texinfo/repos/testing-x86_64/texinfo.install
(from rev 179944, texinfo/trunk/texinfo.install)

---+
 testing-i686/PKGBUILD |   33 
 testing-i686/texinfo-4.13a-data_types.patch   |   32 +++
 testing-i686/texinfo.install  |   21 +++
 testing-x86_64/PKGBUILD   |   33 
 testing-x86_64/texinfo-4.13a-data_types.patch |   32 +++
 testing-x86_64/texinfo.install|   21 +++
 6 files changed, 172 insertions(+)

Copied: texinfo/repos/testing-i686/PKGBUILD (from rev 179944, 
texinfo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-03-13 06:08:07 UTC (rev 179945)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=texinfo
+pkgver=5.1
+pkgrel=1
+pkgdesc=Utilities to work with and produce manuals, ASCII text, and on-line 
documentation from a single source file
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/texinfo/;
+license=('GPL3')
+groups=('base' 'base-devel')
+depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh')
+install=texinfo.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('52ee905a3b705020d2a1b6ec36d53ca6'
+ '65c8c95799ea5905e03cee5825d3553f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: texinfo/repos/testing-i686/texinfo-4.13a-data_types.patch (from rev 
179944, texinfo/trunk/texinfo-4.13a-data_types.patch)
===
--- testing-i686/texinfo-4.13a-data_types.patch (rev 0)
+++ testing-i686/texinfo-4.13a-data_types.patch 2013-03-13 06:08:07 UTC (rev 
179945)
@@ -0,0 +1,32 @@
+diff -up texinfo-4.13/info/window.c_old texinfo-4.13/info/window.c
+--- texinfo-4.13/info/window.c_old 2009-08-04 13:46:15.0 +0200
 texinfo-4.13/info/window.c 2009-08-04 13:47:29.0 +0200
+@@ -1581,7 +1581,7 @@ process_node_text (WINDOW *win, char *st
+   const char *carried_over_ptr;
+   size_t carried_over_len, carried_over_count;
+   const char *cur_ptr = mbi_cur_ptr (iter);
+-  int cur_len = mb_len (mbi_cur (iter));
++  size_t cur_len = mb_len (mbi_cur (iter));
+   int replen;
+   int delim = 0;
+   int rc;
+@@ -1754,7 +1754,7 @@ clean_manpage (char *manpage)
+mbi_advance (iter))
+ {
+   const char *cur_ptr = mbi_cur_ptr (iter);
+-  int cur_len = mb_len (mbi_cur (iter));
++  size_t cur_len = mb_len (mbi_cur (iter));
+ 
+   if (cur_len == 1)
+   {
+@@ -1852,8 +1852,8 @@ window_scan_line (WINDOW *win, int line,
+mbi_advance (iter))
+ {
+   const char *cur_ptr = mbi_cur_ptr (iter);
+-  int cur_len = mb_len (mbi_cur (iter));
+-  int replen;
++  size_t cur_len = mb_len (mbi_cur (iter));
++  size_t replen;
+ 
+   if (cur_ptr = endp)
+   break;

Copied: texinfo/repos/testing-i686/texinfo.install (from rev 179944, 
texinfo/trunk/texinfo.install)
===
--- testing-i686/texinfo.install(rev 0)
+++ testing-i686/texinfo.install2013-03-13 06:08:07 UTC (rev 179945)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(info.info info-stnd.info texinfo texinfo-1 texinfo-2 texinfo-3)
+
+post_install() {
+  # Scan *all* info files on install
+  for file in $(find $infodir -type f ! -name dir); do
+  install-info $file $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: 

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

2013-03-13 Thread Felix Yan
Date: Wednesday, March 13, 2013 @ 09:05:35
  Author: fyan
Revision: 86210

upgpkg: goagent 2.1.13-2 security improvements

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

-+
 PKGBUILD|4 ++--
 goagent.install |2 ++
 goagent.service |2 +-
 3 files changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 05:41:43 UTC (rev 86209)
+++ PKGBUILD2013-03-13 08:05:35 UTC (rev 86210)
@@ -5,7 +5,7 @@
 
 pkgname=goagent
 pkgver=2.1.13
-pkgrel=1
+pkgrel=2
 pkgdesc=A gae proxy forked from gappproxy/wallproxy
 arch=(any)
 url=http://goagent.googlecode.com;
@@ -54,5 +54,5 @@
 }
 
 # vim:set ts=2 sw=2 et:
-md5sums=('a0223e4e436a4d5cc17f76fc1fbbc140'
+md5sums=('e49aca604fcbf7b64d07460d33669640'
  '2d9a13fde523a6da4bcbab4f45569260')

Modified: goagent.install
===
--- goagent.install 2013-03-13 05:41:43 UTC (rev 86209)
+++ goagent.install 2013-03-13 08:05:35 UTC (rev 86210)
@@ -1,6 +1,8 @@
 post_install() {
 echo Please use systemd units to start/stop goagent:
 echo sudo systemctl start/stop goagent
+
+chown -R nobody:daemon /opt/goagent/local
 }
 
 post_upgrade() {

Modified: goagent.service
===
--- goagent.service 2013-03-13 05:41:43 UTC (rev 86209)
+++ goagent.service 2013-03-13 08:05:35 UTC (rev 86210)
@@ -4,8 +4,8 @@
 
 [Service]
 Type=simple
+User=nobody
 ExecStart=/opt/goagent/local/proxy.py
-ExecStop=/bin/kill -15 $MAINPID
 
 [Install]
 WantedBy=multi-user.target



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

2013-03-13 Thread Felix Yan
Date: Wednesday, March 13, 2013 @ 09:06:28
  Author: fyan
Revision: 86211

archrelease: copy trunk to community-testing-any

Added:
  goagent/repos/community-testing-any/
  goagent/repos/community-testing-any/PKGBUILD
(from rev 86210, goagent/trunk/PKGBUILD)
  goagent/repos/community-testing-any/goagent.install
(from rev 86210, goagent/trunk/goagent.install)
  goagent/repos/community-testing-any/goagent.service
(from rev 86210, goagent/trunk/goagent.service)

-+
 PKGBUILD|   58 ++
 goagent.install |   18 
 goagent.service |   12 +++
 3 files changed, 88 insertions(+)

Copied: goagent/repos/community-testing-any/PKGBUILD (from rev 86210, 
goagent/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-03-13 08:06:28 UTC (rev 86211)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: cuihao cuihao dot leo at gmail dot com
+# Contributor: Guten ywzhai...@gmail.com 
+
+pkgname=goagent
+pkgver=2.1.13
+pkgrel=2
+pkgdesc=A gae proxy forked from gappproxy/wallproxy
+arch=(any)
+url=http://goagent.googlecode.com;
+license=(GPL2)
+depends=('python2' 'python2-pyopenssl')
+optdepends=('python2-gevent-beta: Optional Gevent Support')
+conflicts=('python2-gevent=0.99')
+source=(
+  $pkgname.service
+  https://github.com/goagent/goagent/archive/v$pkgver.tar.gz;
+)
+backup=('etc/goagent')
+install=goagent.install
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # python2 fix
+  sed -i -re 1s/python2?/python2/ local/*.py
+  chmod +x local/proxy.py
+
+  mkdir -p $pkgdir/opt/goagent
+  cp -r local server $pkgdir/opt/goagent
+  
+  # remove windows-only files
+  rm -f $pkgdir/opt/goagent/*/*.{vbs,dll,exe,manifest,bat}
+  rm -f $pkgdir/opt/goagent/local/python27.zip
+
+  # remove mac-only files
+  rm -f $pkgdir/opt/goagent/local/addto-startup.py
+
+  # remove goagent-gtk
+  rm -f $pkgdir/opt/goagent/local/goagent-gtk.py
+  rm -f $pkgdir/opt/goagent/local/logo.png
+
+  # remove CA.crt CA.key for security issues
+  rm -f $pkgdir/opt/goagent/local/CA.crt $pkgdir/opt/goagent/local/CA.key
+  rm -rf $pkgdir/opt/goagent/local/certs
+
+  # config file
+  install -Dm644 ${pkgdir}/opt/goagent/local/proxy.ini 
${pkgdir}/etc/goagent
+  ln -sf /etc/goagent ${pkgdir}/opt/goagent/local/proxy.ini
+
+  # systemd service
+  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=('e49aca604fcbf7b64d07460d33669640'
+ '2d9a13fde523a6da4bcbab4f45569260')

Copied: goagent/repos/community-testing-any/goagent.install (from rev 86210, 
goagent/trunk/goagent.install)
===
--- community-testing-any/goagent.install   (rev 0)
+++ community-testing-any/goagent.install   2013-03-13 08:06:28 UTC (rev 
86211)
@@ -0,0 +1,18 @@
+post_install() {
+echo Please use systemd units to start/stop goagent:
+echo sudo systemctl start/stop goagent
+
+chown -R nobody:daemon /opt/goagent/local
+}
+
+post_upgrade() {
+post_install
+}
+
+pre_upgrade() {
+rm -rf /opt/goagent/certs
+}
+
+pre_remove() {
+rm -rf /opt/goagent/certs
+}

Copied: goagent/repos/community-testing-any/goagent.service (from rev 86210, 
goagent/trunk/goagent.service)
===
--- community-testing-any/goagent.service   (rev 0)
+++ community-testing-any/goagent.service   2013-03-13 08:06:28 UTC (rev 
86211)
@@ -0,0 +1,12 @@
+[Unit]
+Description=GoAgent Service
+After=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/opt/goagent/local/proxy.py
+
+[Install]
+WantedBy=multi-user.target
+



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

2013-03-13 Thread Thorsten Töpper
Date: Wednesday, March 13, 2013 @ 10:19:14
  Author: ttoepper
Revision: 86212

upgpkg: i3-wm 4.5-1

Modified:
  i3-wm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 08:06:28 UTC (rev 86211)
+++ PKGBUILD2013-03-13 09:19:14 UTC (rev 86212)
@@ -3,23 +3,23 @@
 
 pkgname=i3-wm
 _pkgsourcename=i3
-pkgver=4.4
-pkgrel=2
+pkgver=4.5
+pkgrel=1
 pkgdesc=An improved dynamic tiling window manager
 arch=('i686' 'x86_64')
 url=http://i3wm.org/;
 license=('BSD')
 replaces=(i3 i3bar)
 groups=(i3)
-depends=('libxcursor' 'xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl' 
'startup-notification' 'pango')
+depends=('libxcursor' 'xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
+ 'startup-notification' 'pango' 'perl')
 makedepends=('bison' 'flex')
 optdepends=('dmenu: As menu.'
 'i3lock: For locking your screen.'
-'i3status: To display systeminformation with a bar.'
-'perl: To migrate your configuration to v4 format.')
+'i3status: To display systeminformation with a bar.')
 options=('docs' '!strip')
 source=(http://i3wm.org/downloads/${_pkgsourcename}-${pkgver}.tar.bz2;)
-md5sums=('fa2b8aae3d2e10c5ee480bd370366f5b')
+md5sums=('9eea2f570ec19affa3ec60b5ab411497')
 
 build() {
   cd $srcdir/$_pkgsourcename-$pkgver



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

2013-03-13 Thread Thorsten Töpper
Date: Wednesday, March 13, 2013 @ 10:19:21
  Author: ttoepper
Revision: 86213

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

Added:
  i3-wm/repos/community-i686/PKGBUILD
(from rev 86212, i3-wm/trunk/PKGBUILD)
  i3-wm/repos/community-x86_64/PKGBUILD
(from rev 86212, i3-wm/trunk/PKGBUILD)
Deleted:
  i3-wm/repos/community-i686/PKGBUILD
  i3-wm/repos/community-x86_64/PKGBUILD

---+
 community-i686/PKGBUILD   |  136 ++--
 community-x86_64/PKGBUILD |  136 ++--
 2 files changed, 136 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 09:19:14 UTC (rev 86212)
+++ community-i686/PKGBUILD 2013-03-13 09:19:21 UTC (rev 86213)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
-
-pkgname=i3-wm
-_pkgsourcename=i3
-pkgver=4.4
-pkgrel=2
-pkgdesc=An improved dynamic tiling window manager
-arch=('i686' 'x86_64')
-url=http://i3wm.org/;
-license=('BSD')
-replaces=(i3 i3bar)
-groups=(i3)
-depends=('libxcursor' 'xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl' 
'startup-notification' 'pango')
-makedepends=('bison' 'flex')
-optdepends=('dmenu: As menu.'
-'i3lock: For locking your screen.'
-'i3status: To display systeminformation with a bar.'
-'perl: To migrate your configuration to v4 format.')
-options=('docs' '!strip')
-source=(http://i3wm.org/downloads/${_pkgsourcename}-${pkgver}.tar.bz2;)
-md5sums=('fa2b8aae3d2e10c5ee480bd370366f5b')
-
-build() {
-  cd $srcdir/$_pkgsourcename-$pkgver
-  
-  # In order to avoid problems with bison use only a single process
-  MAKEFLAGS=-j1
-  make
-}
-
-package() {
-  cd $srcdir/$_pkgsourcename-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-  
-  install -Dm644 man/i3.1 \
-${pkgdir}/usr/share/man/man1/i3.1
-  install -Dm644 man/i3bar.1 \
-${pkgdir}/usr/share/man/man1/i3bar.1
-  install -Dm644 man/i3-config-wizard.1 \
-${pkgdir}/usr/share/man/man1/i3-config-wizard.1
-  install -Dm644 man/i3-input.1 \
-${pkgdir}/usr/share/man/man1/i3-input.1
-  install -Dm644 man/i3-msg.1 \
-${pkgdir}/usr/share/man/man1/i3-msg.1
-  install -Dm644 man/i3-migrate-config-to-v4.1 \
-${pkgdir}/usr/share/man/man1/i3-migrate-config-to-v4.1
-  install -Dm644 man/i3-nagbar.1 \
-${pkgdir}/usr/share/man/man1/i3-nagbar.1
-  install -Dm644 man/i3-dmenu-desktop.1 \
-${pkgdir}/usr/share/man/man1/i3-dmenu-desktop.1
-  install -Dm644 man/i3-dump-log.1 \
-${pkgdir}/usr/share/man/man1/i3-dump-log.1
-  install -Dm644 man/i3-sensible-editor.1 \
-${pkgdir}/usr/share/man/man1/i3-sensible-editor.1
-  install -Dm644 man/i3-sensible-pager.1 \
-${pkgdir}/usr/share/man/man1/i3-sensible-pager.1
-  install -Dm644 man/i3-sensible-terminal.1 \
-${pkgdir}/usr/share/man/man1/i3-sensible-terminal.1
-
-  install -Dm644 LICENSE \
-${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  
-  make clean
-}
-
-# vim:set ts=2 sw=2 et:

Copied: i3-wm/repos/community-i686/PKGBUILD (from rev 86212, 
i3-wm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 09:19:21 UTC (rev 86213)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
+
+pkgname=i3-wm
+_pkgsourcename=i3
+pkgver=4.5
+pkgrel=1
+pkgdesc=An improved dynamic tiling window manager
+arch=('i686' 'x86_64')
+url=http://i3wm.org/;
+license=('BSD')
+replaces=(i3 i3bar)
+groups=(i3)
+depends=('libxcursor' 'xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
+ 'startup-notification' 'pango' 'perl')
+makedepends=('bison' 'flex')
+optdepends=('dmenu: As menu.'
+'i3lock: For locking your screen.'
+'i3status: To display systeminformation with a bar.')
+options=('docs' '!strip')
+source=(http://i3wm.org/downloads/${_pkgsourcename}-${pkgver}.tar.bz2;)
+md5sums=('9eea2f570ec19affa3ec60b5ab411497')
+
+build() {
+  cd $srcdir/$_pkgsourcename-$pkgver
+  
+  # In order to avoid problems with bison use only a single process
+  MAKEFLAGS=-j1
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgsourcename-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+  
+  install -Dm644 man/i3.1 \
+${pkgdir}/usr/share/man/man1/i3.1
+  install -Dm644 man/i3bar.1 \
+${pkgdir}/usr/share/man/man1/i3bar.1
+  install -Dm644 man/i3-config-wizard.1 \
+${pkgdir}/usr/share/man/man1/i3-config-wizard.1
+  install -Dm644 man/i3-input.1 \
+${pkgdir}/usr/share/man/man1/i3-input.1
+  install -Dm644 man/i3-msg.1 \
+${pkgdir}/usr/share/man/man1/i3-msg.1
+  install -Dm644 man/i3-migrate-config-to-v4.1 \
+${pkgdir}/usr/share/man/man1/i3-migrate-config-to-v4.1
+  install -Dm644 man/i3-nagbar.1 \
+${pkgdir}/usr/share/man/man1/i3-nagbar.1
+  install -Dm644 man/i3-dmenu-desktop.1 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:01:16
  Author: jgc
Revision: 179946

upgpkg: gnome-terminal 3.6.1-1

Modified:
  gnome-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 06:08:07 UTC (rev 179945)
+++ PKGBUILD2013-03-13 11:01:16 UTC (rev 179946)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-terminal
-pkgver=3.6.0
+pkgver=3.6.1
 pkgrel=1
 pkgdesc=The GNOME Terminal Emulator
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 groups=('gnome')
 install=gnome-terminal.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ee068ca7f4d0e410aabbddee3937559138163d84c00e5bef1e9050beb7409cd')
+sha256sums=('c6816f77eaae791dadeef89596df811e2fa353088241aa0613bb8e1af63304f6')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:01:23
  Author: jgc
Revision: 179947

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

Added:
  gnome-terminal/repos/extra-i686/PKGBUILD
(from rev 179946, gnome-terminal/trunk/PKGBUILD)
  gnome-terminal/repos/extra-i686/gnome-terminal.install
(from rev 179946, gnome-terminal/trunk/gnome-terminal.install)
  gnome-terminal/repos/extra-x86_64/PKGBUILD
(from rev 179946, gnome-terminal/trunk/PKGBUILD)
  gnome-terminal/repos/extra-x86_64/gnome-terminal.install
(from rev 179946, gnome-terminal/trunk/gnome-terminal.install)
Deleted:
  gnome-terminal/repos/extra-i686/PKGBUILD
  gnome-terminal/repos/extra-i686/gnome-terminal.install
  gnome-terminal/repos/extra-x86_64/PKGBUILD
  gnome-terminal/repos/extra-x86_64/gnome-terminal.install

-+
 extra-i686/PKGBUILD |   66 +-
 extra-i686/gnome-terminal.install   |   34 -
 extra-x86_64/PKGBUILD   |   66 +-
 extra-x86_64/gnome-terminal.install |   34 -
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 11:01:16 UTC (rev 179946)
+++ extra-i686/PKGBUILD 2013-03-13 11:01:23 UTC (rev 179947)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gnome-terminal
-pkgver=3.6.0
-pkgrel=1
-pkgdesc=The GNOME Terminal Emulator
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gconf' 'vte3' 'gsettings-desktop-schemas' 'libsm')
-makedepends=('gnome-doc-utils' 'intltool' 'gtk2' 'itstool' 'docbook-xsl')
-options=('!emptydirs')
-url=http://www.gnome.org;
-groups=('gnome')
-install=gnome-terminal.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ee068ca7f4d0e410aabbddee3937559138163d84c00e5bef1e9050beb7409cd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-scrollkeeper
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
-
-  install -m755 -d $pkgdir/usr/share/gconf/schemas
-  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas 
--domain gnome-terminal $pkgdir/etc/gconf/schemas/*.schemas
-  rm -f $pkgdir/etc/gconf/schemas/*.schemas
-}

Copied: gnome-terminal/repos/extra-i686/PKGBUILD (from rev 179946, 
gnome-terminal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 11:01:23 UTC (rev 179947)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-terminal
+pkgver=3.6.1
+pkgrel=1
+pkgdesc=The GNOME Terminal Emulator
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gconf' 'vte3' 'gsettings-desktop-schemas' 'libsm')
+makedepends=('gnome-doc-utils' 'intltool' 'gtk2' 'itstool' 'docbook-xsl')
+options=('!emptydirs')
+url=http://www.gnome.org;
+groups=('gnome')
+install=gnome-terminal.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c6816f77eaae791dadeef89596df811e2fa353088241aa0613bb8e1af63304f6')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-scrollkeeper
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
+
+  install -m755 -d $pkgdir/usr/share/gconf/schemas
+  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas 
--domain gnome-terminal $pkgdir/etc/gconf/schemas/*.schemas
+  rm -f $pkgdir/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/gnome-terminal.install
===
--- extra-i686/gnome-terminal.install   2013-03-13 11:01:16 UTC (rev 179946)
+++ extra-i686/gnome-terminal.install   2013-03-13 11:01:23 UTC (rev 179947)
@@ -1,17 +0,0 @@
-pkgname=gnome-terminal
-
-post_install() {
-  gconfpkg --install $pkgname
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  gconfpkg --uninstall $pkgname
-}

Copied: gnome-terminal/repos/extra-i686/gnome-terminal.install (from rev 
179946, gnome-terminal/trunk/gnome-terminal.install)
===
--- extra-i686/gnome-terminal.install   (rev 0)
+++ extra-i686/gnome-terminal.install   2013-03-13 11:01:23 UTC (rev 179947)
@@ -0,0 +1,17 @@
+pkgname=gnome-terminal
+
+post_install() {
+  gconfpkg --install $pkgname
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}

Deleted: extra-x86_64/PKGBUILD

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:07:42
  Author: jgc
Revision: 179948

upgpkg: autogen 5.17.2-1

Modified:
  autogen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 11:01:23 UTC (rev 179947)
+++ PKGBUILD2013-03-13 11:07:42 UTC (rev 179948)
@@ -4,7 +4,7 @@
 # Contributor: Tor Krill
 
 pkgname=autogen
-pkgver=5.15
+pkgver=5.17.2
 pkgrel=1
 pkgdesc=A tool designed to simplify the creation and maintenance of programs 
that contain large amounts of repetitious text
 arch=('i686' 'x86_64')
@@ -14,8 +14,8 @@
 options=('!libtool')
 install=autogen.install
 
source=(http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('5fba3c0e1ec0965061f27e8e79bd6da2'
- 'ed74e586ade1a61f753d391f3849c25b')
+md5sums=('567dd065d24294c5c31517e399c2fcf5'
+ 'af72d4d6f27486366e7712c41f61b8fa')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:07:49
  Author: jgc
Revision: 179949

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

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

--+
 extra-i686/PKGBUILD  |   58 -
 extra-i686/autogen.install   |   40 ++--
 extra-x86_64/PKGBUILD|   58 -
 extra-x86_64/autogen.install |   40 ++--
 4 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 11:07:42 UTC (rev 179948)
+++ extra-i686/PKGBUILD 2013-03-13 11:07:49 UTC (rev 179949)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Arjan Timmerman ar...@soufly.nl
-# Contributor: Tor Krill
-
-pkgname=autogen
-pkgver=5.15
-pkgrel=1
-pkgdesc=A tool designed to simplify the creation and maintenance of programs 
that contain large amounts of repetitious text
-arch=('i686' 'x86_64')
-url=http://autogen.sourceforge.net/;
-license=('GPL3')
-depends=('guile' 'libxml2')
-options=('!libtool')
-install=autogen.install
-source=(http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('5fba3c0e1ec0965061f27e8e79bd6da2'
- 'ed74e586ade1a61f753d391f3849c25b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-} 

Copied: autogen/repos/extra-i686/PKGBUILD (from rev 179948, 
autogen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 11:07:49 UTC (rev 179949)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Arjan Timmerman ar...@soufly.nl
+# Contributor: Tor Krill
+
+pkgname=autogen
+pkgver=5.17.2
+pkgrel=1
+pkgdesc=A tool designed to simplify the creation and maintenance of programs 
that contain large amounts of repetitious text
+arch=('i686' 'x86_64')
+url=http://autogen.sourceforge.net/;
+license=('GPL3')
+depends=('guile' 'libxml2')
+options=('!libtool')
+install=autogen.install
+source=(http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('567dd065d24294c5c31517e399c2fcf5'
+ 'af72d4d6f27486366e7712c41f61b8fa')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+} 

Deleted: extra-i686/autogen.install
===
--- extra-i686/autogen.install  2013-03-13 11:07:42 UTC (rev 179948)
+++ extra-i686/autogen.install  2013-03-13 11:07:49 UTC (rev 179949)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(autogen.info autogen.info-1 autogen.info-2)
-
-post_install() {
-  for file in ${filelist[@]}; do
-install-info $infodir/${file}.gz $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/${file}.gz $infodir/dir 2 /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: autogen/repos/extra-i686/autogen.install (from rev 179948, 
autogen/trunk/autogen.install)
===
--- extra-i686/autogen.install  (rev 0)
+++ extra-i686/autogen.install  2013-03-13 11:07:49 UTC (rev 179949)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(autogen.info autogen.info-1 autogen.info-2)
+
+post_install() {
+  for file in ${filelist[@]}; do
+install-info $infodir/${file}.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/${file}.gz $infodir/dir 2 /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-13 11:07:42 UTC (rev 179948)
+++ extra-x86_64/PKGBUILD   2013-03-13 11:07:49 UTC (rev 179949)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Arjan Timmerman ar...@soufly.nl
-# Contributor: Tor Krill
-

[arch-commits] Commit in gnome-nettool/trunk (PKGBUILD ldns.patch)

2013-03-13 Thread Jan Steffens
Date: Wednesday, March 13, 2013 @ 12:39:09
  Author: heftig
Revision: 179950

replace dig with drill (ldns)

Added:
  gnome-nettool/trunk/ldns.patch
Modified:
  gnome-nettool/trunk/PKGBUILD

+
 PKGBUILD   |   11 +++
 ldns.patch |   21 +
 2 files changed, 28 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 11:07:49 UTC (rev 179949)
+++ PKGBUILD2013-03-13 11:39:09 UTC (rev 179950)
@@ -5,22 +5,25 @@
 
 pkgname=gnome-nettool
 pkgver=3.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A Collection of GNOME3 Networking Tools.
 arch=(i686 x86_64)
 license=('GPL')
-depends=('gtk3' 'libgtop' 'dnsutils' 'iputils' 'dconf' 'whois' 
'hicolor-icon-theme')
+depends=('gtk3' 'libgtop' 'ldns' 'iputils' 'dconf' 'whois' 
'hicolor-icon-theme')
 makedepends=('gnome-doc-utils' 'intltool' 'nmap' 'net-tools')
 optdepends=('nmap: Port scanning'
 'net-tools: Network statistics')
 groups=('gnome-extra')
 url=http://www.gnome.org;
 install=gnome-nettool.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9888202f1c13f98fd26b417468e6f2345f885557f3a98fb365eeea52d792bf79')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ldns.patch)
+sha256sums=('9888202f1c13f98fd26b417468e6f2345f885557f3a98fb365eeea52d792bf79'
+'8bd83fe863d2945689afd753e5908a2bc033206e25f28d88783ae8d859d6bfeb')
 
 build() {
   cd $pkgname-$pkgver
+  patch -Np1 -i ../ldns.patch
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-schemas-compile
   make

Added: ldns.patch
===
--- ldns.patch  (rev 0)
+++ ldns.patch  2013-03-13 11:39:09 UTC (rev 179950)
@@ -0,0 +1,21 @@
+diff -u -r gnome-nettool-3.2.0/src/lookup.c 
gnome-nettool-3.2.0-ldns/src/lookup.c
+--- gnome-nettool-3.2.0/src/lookup.c   2012-01-03 10:38:09.0 +0100
 gnome-nettool-3.2.0-ldns/src/lookup.c  2013-03-13 12:32:31.551213914 
+0100
+@@ -98,7 +98,7 @@
+ 
+   parent = gtk_widget_get_toplevel (netinfo-output);
+   
+-  program = util_find_program_dialog (dig, parent);
++  program = util_find_program_dialog (drill, parent);
+ 
+   if (program != NULL) {
+   use_reverse_lookup = pattern_match (host, 
address_regular_expression);
+@@ -116,7 +116,7 @@
+   command_line = g_new (gchar *, num_terms + 1);
+   i = 0;
+   command_line[i++] = g_strdup (program);
+-  command_line[i++] = g_strdup (dig);
++  command_line[i++] = g_strdup (drill);
+   if (command_options != NULL) {
+   for (j = 0; command_options[j] != NULL; j++)
+   command_line[i++] = g_strdup 
(command_options[j]);



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

2013-03-13 Thread Jan Steffens
Date: Wednesday, March 13, 2013 @ 12:42:54
  Author: heftig
Revision: 179951

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

Added:
  gnome-nettool/repos/extra-i686/PKGBUILD
(from rev 179950, gnome-nettool/trunk/PKGBUILD)
  gnome-nettool/repos/extra-i686/gnome-nettool.install
(from rev 179950, gnome-nettool/trunk/gnome-nettool.install)
  gnome-nettool/repos/extra-i686/ldns.patch
(from rev 179950, gnome-nettool/trunk/ldns.patch)
  gnome-nettool/repos/extra-x86_64/PKGBUILD
(from rev 179950, gnome-nettool/trunk/PKGBUILD)
  gnome-nettool/repos/extra-x86_64/gnome-nettool.install
(from rev 179950, gnome-nettool/trunk/gnome-nettool.install)
  gnome-nettool/repos/extra-x86_64/ldns.patch
(from rev 179950, gnome-nettool/trunk/ldns.patch)
Deleted:
  gnome-nettool/repos/extra-i686/PKGBUILD
  gnome-nettool/repos/extra-i686/gnome-nettool.install
  gnome-nettool/repos/extra-x86_64/PKGBUILD
  gnome-nettool/repos/extra-x86_64/gnome-nettool.install

+
 extra-i686/PKGBUILD|   67 ++-
 extra-i686/gnome-nettool.install   |   24 ++--
 extra-i686/ldns.patch  |   21 ++
 extra-x86_64/PKGBUILD  |   67 ++-
 extra-x86_64/gnome-nettool.install |   24 ++--
 extra-x86_64/ldns.patch|   21 ++
 6 files changed, 136 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 11:39:09 UTC (rev 179950)
+++ extra-i686/PKGBUILD 2013-03-13 11:42:54 UTC (rev 179951)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Kritoke krit...@nospam.gmail.com
-
-pkgname=gnome-nettool
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=A Collection of GNOME3 Networking Tools.
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gtk3' 'libgtop' 'dnsutils' 'iputils' 'dconf' 'whois' 
'hicolor-icon-theme')
-makedepends=('gnome-doc-utils' 'intltool' 'nmap' 'net-tools')
-optdepends=('nmap: Port scanning'
-'net-tools: Network statistics')
-groups=('gnome-extra')
-url=http://www.gnome.org;
-install=gnome-nettool.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9888202f1c13f98fd26b417468e6f2345f885557f3a98fb365eeea52d792bf79')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-nettool/repos/extra-i686/PKGBUILD (from rev 179950, 
gnome-nettool/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 11:42:54 UTC (rev 179951)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Kritoke krit...@nospam.gmail.com
+
+pkgname=gnome-nettool
+pkgver=3.2.0
+pkgrel=2
+pkgdesc=A Collection of GNOME3 Networking Tools.
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gtk3' 'libgtop' 'ldns' 'iputils' 'dconf' 'whois' 
'hicolor-icon-theme')
+makedepends=('gnome-doc-utils' 'intltool' 'nmap' 'net-tools')
+optdepends=('nmap: Port scanning'
+'net-tools: Network statistics')
+groups=('gnome-extra')
+url=http://www.gnome.org;
+install=gnome-nettool.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ldns.patch)
+sha256sums=('9888202f1c13f98fd26b417468e6f2345f885557f3a98fb365eeea52d792bf79'
+'8bd83fe863d2945689afd753e5908a2bc033206e25f28d88783ae8d859d6bfeb')
+
+build() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../ldns.patch
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/gnome-nettool.install
===
--- extra-i686/gnome-nettool.install2013-03-13 11:39:09 UTC (rev 179950)
+++ extra-i686/gnome-nettool.install2013-03-13 11:42:54 UTC (rev 179951)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-nettool/repos/extra-i686/gnome-nettool.install (from rev 179950, 
gnome-nettool/trunk/gnome-nettool.install)
===
--- extra-i686/gnome-nettool.install(rev 0)
+++ extra-i686/gnome-nettool.install2013-03-13 11:42:54 UTC (rev 179951)
@@ 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:55:12
  Author: jgc
Revision: 179952

Add properties files

upgpkg: bcprov 1.48-1

Modified:
  bcprov/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 11:42:54 UTC (rev 179951)
+++ PKGBUILD2013-03-13 11:55:12 UTC (rev 179952)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=bcprov
-pkgver=1.46
-pkgrel=2
+pkgver=1.48
+pkgrel=1
 pkgdesc=Java cryptography APIs (Bouncy Castle)
 arch=('any')
 url=http://www.bouncycastle.org/java.html;
 license=('custom')
 depends=('java-runtime')
 makedepends=('java-environment' 'junit')
-source=(http://www.bouncycastle.org/download/bcprov-jdk16-${pkgver/./}.tar.gz;)
-md5sums=('944374e9b57c9f7f6751d9c65ff62374')
+source=(http://www.bouncycastle.org/download/bcprov-jdk15on-${pkgver/./}.tar.gz;)
+md5sums=('ac662124410ffef3686bd936530e758d')
 
 build() {
-  cd ${srcdir}/bcprov-jdk16-${pkgver/./}
+  cd ${srcdir}/bcprov-jdk15on-${pkgver/./}
   jar xf src.zip
 
   mkdir classes
@@ -24,11 +24,12 @@
   cd classes
   find . -path '*test/*.class' -delete
   find . -depth -type d -empty -delete
+  install -m644 ../org/bouncycastle/x509/*.properties org/bouncycastle/x509/
   jar cf ../bcprov.jar *
 }
 
 package() {
-  cd ${srcdir}/bcprov-jdk16-${pkgver/./}
+  cd ${srcdir}/bcprov-jdk15on-${pkgver/./}
   install -m755 -d ${pkgdir}/usr/share/java
   install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
   install -m644 bcprov.jar ${pkgdir}/usr/share/java/



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:55:18
  Author: jgc
Revision: 179953

archrelease: copy trunk to extra-any

Added:
  bcprov/repos/extra-any/PKGBUILD
(from rev 179952, bcprov/trunk/PKGBUILD)
Deleted:
  bcprov/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 11:55:12 UTC (rev 179952)
+++ PKGBUILD2013-03-13 11:55:18 UTC (rev 179953)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=bcprov
-pkgver=1.46
-pkgrel=2
-pkgdesc=Java cryptography APIs (Bouncy Castle)
-arch=('any')
-url=http://www.bouncycastle.org/java.html;
-license=('custom')
-depends=('java-runtime')
-makedepends=('java-environment' 'junit')
-source=(http://www.bouncycastle.org/download/bcprov-jdk16-${pkgver/./}.tar.gz;)
-md5sums=('944374e9b57c9f7f6751d9c65ff62374')
-
-build() {
-  cd ${srcdir}/bcprov-jdk16-${pkgver/./}
-  jar xf src.zip
-
-  mkdir classes
-  find . -name '*.java'  src.list
-  javac -encoding ISO-8859-1 -cp /usr/share/java/junit.jar -d classes @src.list
-
-  cd classes
-  find . -path '*test/*.class' -delete
-  find . -depth -type d -empty -delete
-  jar cf ../bcprov.jar *
-}
-
-package() {
-  cd ${srcdir}/bcprov-jdk16-${pkgver/./}
-  install -m755 -d ${pkgdir}/usr/share/java
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 bcprov.jar ${pkgdir}/usr/share/java/
-  install -m644 LICENSE.html ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: bcprov/repos/extra-any/PKGBUILD (from rev 179952, bcprov/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-13 11:55:18 UTC (rev 179953)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=bcprov
+pkgver=1.48
+pkgrel=1
+pkgdesc=Java cryptography APIs (Bouncy Castle)
+arch=('any')
+url=http://www.bouncycastle.org/java.html;
+license=('custom')
+depends=('java-runtime')
+makedepends=('java-environment' 'junit')
+source=(http://www.bouncycastle.org/download/bcprov-jdk15on-${pkgver/./}.tar.gz;)
+md5sums=('ac662124410ffef3686bd936530e758d')
+
+build() {
+  cd ${srcdir}/bcprov-jdk15on-${pkgver/./}
+  jar xf src.zip
+
+  mkdir classes
+  find . -name '*.java'  src.list
+  javac -encoding ISO-8859-1 -cp /usr/share/java/junit.jar -d classes @src.list
+
+  cd classes
+  find . -path '*test/*.class' -delete
+  find . -depth -type d -empty -delete
+  install -m644 ../org/bouncycastle/x509/*.properties org/bouncycastle/x509/
+  jar cf ../bcprov.jar *
+}
+
+package() {
+  cd ${srcdir}/bcprov-jdk15on-${pkgver/./}
+  install -m755 -d ${pkgdir}/usr/share/java
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 bcprov.jar ${pkgdir}/usr/share/java/
+  install -m644 LICENSE.html ${pkgdir}/usr/share/licenses/${pkgname}/
+}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:59:06
  Author: jgc
Revision: 179954

Security update
upgpkg: dbus-glib 0.100.2-1

Modified:
  dbus-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 11:55:18 UTC (rev 179953)
+++ PKGBUILD2013-03-13 11:59:06 UTC (rev 179954)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=dbus-glib
-pkgver=0.100
+pkgver=0.100.2
 pkgrel=1
 pkgdesc=GLib bindings for DBUS
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 makedepends=('pkgconfig')
 options=('!libtool' '!emptydirs')
 
source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('d33959a9c0c6a158f5ac6d640316e89e')
+md5sums=('ad0920c7e3aad669163bb59171cf138e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 12:59:13
  Author: jgc
Revision: 179955

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

Added:
  dbus-glib/repos/extra-i686/PKGBUILD
(from rev 179954, dbus-glib/trunk/PKGBUILD)
  dbus-glib/repos/extra-x86_64/PKGBUILD
(from rev 179954, dbus-glib/trunk/PKGBUILD)
Deleted:
  dbus-glib/repos/extra-i686/PKGBUILD
  dbus-glib/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 11:59:06 UTC (rev 179954)
+++ extra-i686/PKGBUILD 2013-03-13 11:59:13 UTC (rev 179955)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=dbus-glib
-pkgver=0.100
-pkgrel=1
-pkgdesc=GLib bindings for DBUS
-arch=(i686 x86_64)
-license=('GPL')
-url=http://www.freedesktop.org/wiki/Software/DBusBindings;
-depends=('dbus-core' 'glib2')
-makedepends=('pkgconfig')
-options=('!libtool' '!emptydirs')
-source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('d33959a9c0c6a158f5ac6d640316e89e')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --enable-static=no --enable-bash-completion=no
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: dbus-glib/repos/extra-i686/PKGBUILD (from rev 179954, 
dbus-glib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 11:59:13 UTC (rev 179955)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=dbus-glib
+pkgver=0.100.2
+pkgrel=1
+pkgdesc=GLib bindings for DBUS
+arch=(i686 x86_64)
+license=('GPL')
+url=http://www.freedesktop.org/wiki/Software/DBusBindings;
+depends=('dbus-core' 'glib2')
+makedepends=('pkgconfig')
+options=('!libtool' '!emptydirs')
+source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('ad0920c7e3aad669163bb59171cf138e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-static=no --enable-bash-completion=no
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-13 11:59:06 UTC (rev 179954)
+++ extra-x86_64/PKGBUILD   2013-03-13 11:59:13 UTC (rev 179955)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=dbus-glib
-pkgver=0.100
-pkgrel=1
-pkgdesc=GLib bindings for DBUS
-arch=(i686 x86_64)
-license=('GPL')
-url=http://www.freedesktop.org/wiki/Software/DBusBindings;
-depends=('dbus-core' 'glib2')
-makedepends=('pkgconfig')
-options=('!libtool' '!emptydirs')
-source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('d33959a9c0c6a158f5ac6d640316e89e')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --enable-static=no --enable-bash-completion=no
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: dbus-glib/repos/extra-x86_64/PKGBUILD (from rev 179954, 
dbus-glib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-03-13 11:59:13 UTC (rev 179955)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=dbus-glib
+pkgver=0.100.2
+pkgrel=1
+pkgdesc=GLib bindings for DBUS
+arch=(i686 x86_64)
+license=('GPL')
+url=http://www.freedesktop.org/wiki/Software/DBusBindings;
+depends=('dbus-core' 'glib2')
+makedepends=('pkgconfig')
+options=('!libtool' '!emptydirs')
+source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('ad0920c7e3aad669163bb59171cf138e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-static=no --enable-bash-completion=no
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 13:28:05
  Author: jgc
Revision: 179956

upgpkg: evolution-data-server 3.6.4-1

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 11:59:13 UTC (rev 179955)
+++ PKGBUILD2013-03-13 12:28:05 UTC (rev 179956)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=evolution-data-server
-pkgver=3.6.3
+pkgver=3.6.4
 pkgrel=1
 pkgdesc=Centralized access to appointments and contacts
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://www.gnome.org;
 license=('GPL')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('37a0d0d4f6c8515e70e34f1e7e1f457f4c7736f35ba0f18c4b4bca0a17db7de0')
+sha256sums=('50b4ca21bc57d2fe4933ea3072bf11d5e6069d0ecaacced0bd0f55f098d09f4e')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in evolution-data-server/repos (8 files)

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 13:28:12
  Author: jgc
Revision: 179957

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

Added:
  evolution-data-server/repos/extra-i686/PKGBUILD
(from rev 179956, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-i686/evolution-data-server.install
(from rev 179956, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/extra-x86_64/PKGBUILD
(from rev 179956, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install
(from rev 179956, evolution-data-server/trunk/evolution-data-server.install)
Deleted:
  evolution-data-server/repos/extra-i686/PKGBUILD
  evolution-data-server/repos/extra-i686/evolution-data-server.install
  evolution-data-server/repos/extra-x86_64/PKGBUILD
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install

+
 extra-i686/PKGBUILD|   64 +--
 extra-i686/evolution-data-server.install   |   22 -
 extra-x86_64/PKGBUILD  |   64 +--
 extra-x86_64/evolution-data-server.install |   22 -
 4 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 12:28:05 UTC (rev 179956)
+++ extra-i686/PKGBUILD 2013-03-13 12:28:12 UTC (rev 179957)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=evolution-data-server
-pkgver=3.6.3
-pkgrel=1
-pkgdesc=Centralized access to appointments and contacts
-arch=('i686' 'x86_64')
-depends=('gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 'db' 
'libgdata')
-makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
-options=('!libtool')
-install=$pkgname.install
-url=http://www.gnome.org;
-license=('GPL')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('37a0d0d4f6c8515e70e34f1e7e1f457f4c7736f35ba0f18c4b4bca0a17db7de0')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --with-openldap=yes \
-  --libexecdir=/usr/lib/evolution-data-server \
-  --with-krb5=/usr --with-libdb=/usr \
-  --enable-vala-bindings
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: evolution-data-server/repos/extra-i686/PKGBUILD (from rev 179956, 
evolution-data-server/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 12:28:12 UTC (rev 179957)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=evolution-data-server
+pkgver=3.6.4
+pkgrel=1
+pkgdesc=Centralized access to appointments and contacts
+arch=('i686' 'x86_64')
+depends=('gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 'db' 
'libgdata')
+makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
+options=('!libtool')
+install=$pkgname.install
+url=http://www.gnome.org;
+license=('GPL')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('50b4ca21bc57d2fe4933ea3072bf11d5e6069d0ecaacced0bd0f55f098d09f4e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-openldap=yes \
+  --libexecdir=/usr/lib/evolution-data-server \
+  --with-krb5=/usr --with-libdb=/usr \
+  --enable-vala-bindings
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/evolution-data-server.install
===
--- extra-i686/evolution-data-server.install2013-03-13 12:28:05 UTC (rev 
179956)
+++ extra-i686/evolution-data-server.install2013-03-13 12:28:12 UTC (rev 
179957)
@@ -1,11 +0,0 @@
-post_install () {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade () {
-post_install
-}
-
-post_remove () {
-post_install
-}

Copied: evolution-data-server/repos/extra-i686/evolution-data-server.install 
(from rev 179956, evolution-data-server/trunk/evolution-data-server.install)
===
--- 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 14:10:06
  Author: jgc
Revision: 179958

Add gnome-keyring optdepend, with reference to other possible implementations
upgpkg: libgnome-keyring 3.6.0-2

Modified:
  libgnome-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 12:28:12 UTC (rev 179957)
+++ PKGBUILD2013-03-13 13:10:06 UTC (rev 179958)
@@ -3,12 +3,13 @@
 
 pkgname=libgnome-keyring
 pkgver=3.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc=GNOME keyring client library
 arch=(i686 x86_64)
 license=('GPL' 'LGPL')
 depends=('dbus-core' 'glib2' 'libgcrypt')
 makedepends=('intltool' 'gobject-introspection')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 14:10:14
  Author: jgc
Revision: 179959

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

Added:
  libgnome-keyring/repos/extra-i686/PKGBUILD
(from rev 179958, libgnome-keyring/trunk/PKGBUILD)
  libgnome-keyring/repos/extra-x86_64/PKGBUILD
(from rev 179958, libgnome-keyring/trunk/PKGBUILD)
Deleted:
  libgnome-keyring/repos/extra-i686/PKGBUILD
  libgnome-keyring/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 13:10:06 UTC (rev 179958)
+++ extra-i686/PKGBUILD 2013-03-13 13:10:14 UTC (rev 179959)
@@ -1,28 +0,0 @@
-#$Id$
-#Maintainer: Jan De Groot j...@archlinux.org
-
-pkgname=libgnome-keyring
-pkgver=3.6.0
-pkgrel=1
-pkgdesc=GNOME keyring client library
-arch=(i686 x86_64)
-license=('GPL' 'LGPL')
-depends=('dbus-core' 'glib2' 'libgcrypt')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool' '!emptydirs')
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6dca37fb7b37f800f498031ffe303a567410bec09a9bdd877a18865dafcc9830')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/gnome-keyring
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libgnome-keyring/repos/extra-i686/PKGBUILD (from rev 179958, 
libgnome-keyring/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 13:10:14 UTC (rev 179959)
@@ -0,0 +1,29 @@
+#$Id$
+#Maintainer: Jan De Groot j...@archlinux.org
+
+pkgname=libgnome-keyring
+pkgver=3.6.0
+pkgrel=2
+pkgdesc=GNOME keyring client library
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core' 'glib2' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('6dca37fb7b37f800f498031ffe303a567410bec09a9bdd877a18865dafcc9830')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-13 13:10:06 UTC (rev 179958)
+++ extra-x86_64/PKGBUILD   2013-03-13 13:10:14 UTC (rev 179959)
@@ -1,28 +0,0 @@
-#$Id$
-#Maintainer: Jan De Groot j...@archlinux.org
-
-pkgname=libgnome-keyring
-pkgver=3.6.0
-pkgrel=1
-pkgdesc=GNOME keyring client library
-arch=(i686 x86_64)
-license=('GPL' 'LGPL')
-depends=('dbus-core' 'glib2' 'libgcrypt')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool' '!emptydirs')
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6dca37fb7b37f800f498031ffe303a567410bec09a9bdd877a18865dafcc9830')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/gnome-keyring
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libgnome-keyring/repos/extra-x86_64/PKGBUILD (from rev 179958, 
libgnome-keyring/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-03-13 13:10:14 UTC (rev 179959)
@@ -0,0 +1,29 @@
+#$Id$
+#Maintainer: Jan De Groot j...@archlinux.org
+
+pkgname=libgnome-keyring
+pkgver=3.6.0
+pkgrel=2
+pkgdesc=GNOME keyring client library
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core' 'glib2' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('6dca37fb7b37f800f498031ffe303a567410bec09a9bdd877a18865dafcc9830')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var 

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

2013-03-13 Thread Felix Yan
Date: Wednesday, March 13, 2013 @ 14:20:15
  Author: fyan
Revision: 86214

upgpkg: xnoise 0.2.16-3 fix FS#34288

Modified:
  xnoise/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 09:19:21 UTC (rev 86213)
+++ PKGBUILD2013-03-13 13:20:15 UTC (rev 86214)
@@ -4,13 +4,14 @@
 
 pkgname=xnoise
 pkgver=0.2.16
-pkgrel=2
+pkgrel=3
 pkgdesc=Media player with a slick GUI, great speed and lots of features.
 arch=('i686' 'x86_64')
 url=http://www.xnoise-media-player.com/;
 license=('GPL2')
 depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo')
-optdepends=('gst-plugins-bad: Extra media codecs'
+optdepends=('gst-plugins-base: Basic media codecs'
+'gst-plugins-bad: Extra media codecs'
 'gst-plugins-ugly: Extra media codecs'
'gst-libav: Extra media codecs')
 makedepends=('gettext' 'intltool')
@@ -32,6 +33,6 @@
   make DESTDIR=$pkgdir install
   
   # Remove obsolete files
-  rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
+  rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
 }
 md5sums=('54a3c54bb292353075a22e49e6cc1eae')



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

2013-03-13 Thread Felix Yan
Date: Wednesday, March 13, 2013 @ 14:22:22
  Author: fyan
Revision: 86215

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

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

-+
 community-i686/PKGBUILD |   75 +++---
 community-i686/xnoise.install   |   26 ++---
 community-x86_64/PKGBUILD   |   75 +++---
 community-x86_64/xnoise.install |   26 ++---
 4 files changed, 102 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 13:20:15 UTC (rev 86214)
+++ community-i686/PKGBUILD 2013-03-13 13:22:22 UTC (rev 86215)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: archtux antonio dot arias9 at gmail dot com
-
-pkgname=xnoise
-pkgver=0.2.16
-pkgrel=2
-pkgdesc=Media player with a slick GUI, great speed and lots of features.
-arch=('i686' 'x86_64')
-url=http://www.xnoise-media-player.com/;
-license=('GPL2')
-depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo')
-optdepends=('gst-plugins-bad: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-   'gst-libav: Extra media codecs')
-makedepends=('gettext' 'intltool')
-options=('!libtool')
-install=$pkgname.install
-source=(https://bitbucket.org/shuerhaaken/xnoise/downloads/$pkgname-$pkgver.tar.gz;)
-md5sums=('774b52c94d5b1d3de963307835ade35b')
-
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  
-  # Remove obsolete files
-  rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
-}
-md5sums=('54a3c54bb292353075a22e49e6cc1eae')

Copied: xnoise/repos/community-i686/PKGBUILD (from rev 86214, 
xnoise/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 13:22:22 UTC (rev 86215)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: archtux antonio dot arias9 at gmail dot com
+
+pkgname=xnoise
+pkgver=0.2.16
+pkgrel=3
+pkgdesc=Media player with a slick GUI, great speed and lots of features.
+arch=('i686' 'x86_64')
+url=http://www.xnoise-media-player.com/;
+license=('GPL2')
+depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo')
+optdepends=('gst-plugins-base: Basic media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+   'gst-libav: Extra media codecs')
+makedepends=('gettext' 'intltool')
+options=('!libtool')
+install=$pkgname.install
+source=(https://bitbucket.org/shuerhaaken/xnoise/downloads/$pkgname-$pkgver.tar.gz;)
+md5sums=('774b52c94d5b1d3de963307835ade35b')
+
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  
+  # Remove obsolete files
+  rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
+}
+md5sums=('54a3c54bb292353075a22e49e6cc1eae')

Deleted: community-i686/xnoise.install
===
--- community-i686/xnoise.install   2013-03-13 13:20:15 UTC (rev 86214)
+++ community-i686/xnoise.install   2013-03-13 13:22:22 UTC (rev 86215)
@@ -1,13 +0,0 @@
- 
-post_install() {
-  gtk-update-icon-cache -t -f /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: xnoise/repos/community-i686/xnoise.install (from rev 86214, 
xnoise/trunk/xnoise.install)
===
--- community-i686/xnoise.install   (rev 0)
+++ community-i686/xnoise.install   2013-03-13 13:22:22 UTC (rev 86215)
@@ -0,0 +1,13 @@
+ 
+post_install() {
+  gtk-update-icon-cache -t -f /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- 

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

2013-03-13 Thread Sergej Pupykin
Date: Wednesday, March 13, 2013 @ 14:30:08
  Author: spupykin
Revision: 86216

upgpkg: libvirt 1.0.3-4

upd

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 13:22:22 UTC (rev 86215)
+++ PKGBUILD2013-03-13 13:30:08 UTC (rev 86216)
@@ -4,7 +4,7 @@
 
 pkgname=libvirt
 pkgver=1.0.3
-pkgrel=3rc2
+pkgrel=4
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
 url=http://libvirt.org/;
@@ -30,13 +30,13 @@
'etc/libvirt/qemu.conf'
'etc/sasl2/libvirt.conf')
 install=libvirt.install
-source=(http://libvirt.org/sources/$pkgname-$pkgver-rc2.tar.gz;
+source=(http://libvirt.org/sources/$pkgname-$pkgver.tar.gz;
libvirtd.rc.d
libvirtd.conf.d
libvirtd-guests.rc.d
libvirtd-guests.conf.d
libvirt.tmpfiles.d)
-md5sums=('d03a65be35c455bc09ee96df66ea2c4d'
+md5sums=('3d9f85d586c9aa3d819b626622f3fc97'
  'c43244c40a0437038c82089618e7beaa'
  '3ed0e24f5b5e25bf553f5427d64915e6'
  '0ee5b6c58590ff392a266f20f7928d1f'



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

2013-03-13 Thread Sergej Pupykin
Date: Wednesday, March 13, 2013 @ 14:30:48
  Author: spupykin
Revision: 86217

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

Added:
  libvirt/repos/community-i686/PKGBUILD
(from rev 86216, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-i686/libvirt.install
(from rev 86216, libvirt/trunk/libvirt.install)
  libvirt/repos/community-i686/libvirt.tmpfiles.d
(from rev 86216, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-i686/libvirtd-guests.conf.d
(from rev 86216, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-i686/libvirtd-guests.rc.d
(from rev 86216, libvirt/trunk/libvirtd-guests.rc.d)
  libvirt/repos/community-i686/libvirtd.conf.d
(from rev 86216, libvirt/trunk/libvirtd.conf.d)
  libvirt/repos/community-i686/libvirtd.rc.d
(from rev 86216, libvirt/trunk/libvirtd.rc.d)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 86216, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 86216, libvirt/trunk/libvirt.install)
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
(from rev 86216, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
(from rev 86216, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-x86_64/libvirtd-guests.rc.d
(from rev 86216, libvirt/trunk/libvirtd-guests.rc.d)
  libvirt/repos/community-x86_64/libvirtd.conf.d
(from rev 86216, libvirt/trunk/libvirtd.conf.d)
  libvirt/repos/community-x86_64/libvirtd.rc.d
(from rev 86216, libvirt/trunk/libvirtd.rc.d)
Deleted:
  libvirt/repos/community-i686/PKGBUILD
  libvirt/repos/community-i686/libvirt.install
  libvirt/repos/community-i686/libvirt.tmpfiles.d
  libvirt/repos/community-i686/libvirtd-guests.conf.d
  libvirt/repos/community-i686/libvirtd-guests.rc.d
  libvirt/repos/community-i686/libvirtd.conf.d
  libvirt/repos/community-i686/libvirtd.rc.d
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
  libvirt/repos/community-x86_64/libvirtd-guests.rc.d
  libvirt/repos/community-x86_64/libvirtd.conf.d
  libvirt/repos/community-x86_64/libvirtd.rc.d

-+
 community-i686/PKGBUILD |  190 -
 community-i686/libvirt.install  |   38 +--
 community-i686/libvirt.tmpfiles.d   |8 
 community-i686/libvirtd-guests.conf.d   |   22 +-
 community-i686/libvirtd-guests.rc.d |  322 +++---
 community-i686/libvirtd.conf.d  |6 
 community-i686/libvirtd.rc.d|  132 ++--
 community-x86_64/PKGBUILD   |  190 -
 community-x86_64/libvirt.install|   38 +--
 community-x86_64/libvirt.tmpfiles.d |8 
 community-x86_64/libvirtd-guests.conf.d |   22 +-
 community-x86_64/libvirtd-guests.rc.d   |  322 +++---
 community-x86_64/libvirtd.conf.d|6 
 community-x86_64/libvirtd.rc.d  |  132 ++--
 14 files changed, 718 insertions(+), 718 deletions(-)

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


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

2013-03-13 Thread Sergej Pupykin
Date: Wednesday, March 13, 2013 @ 14:37:49
  Author: spupykin
Revision: 86218

upgpkg: lua-zlib 0.2-4

upd

Modified:
  lua-zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 13:30:48 UTC (rev 86217)
+++ PKGBUILD2013-03-13 13:37:49 UTC (rev 86218)
@@ -1,30 +1,46 @@
 # $Id$
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
-pkgname=lua-zlib
+pkgname=(lua-zlib lua51-zlib)
+pkgbase=lua-zlib
 pkgver=0.2
-pkgrel=3
+pkgrel=4
 _gitver=8d07669
-_luaver=5.2
 url=http://github.com/brimworks/lua-zlib;
 pkgdesc='Simple streaming interface to zlib for Lua.'
 arch=('i686' 'x86_64')
 license=('MIT')
-depends=('lua' 'zlib')
-makedepends=('cmake')
+makedepends=('cmake' 'lua' 'lua51' 'zlib')
 conflicts=('lua-lzlib')
 
source=(lua-zlib-$pkgver.zip::https://github.com/brimworks/lua-zlib/zipball/v$pkgver;)
 md5sums=('28ce556fccb2d364bc5392f63c6f89ee')
 
 build() {
+  cp -a $srcdir/brimworks-lua-zlib-${_gitver} 
$srcdir/brimworks-lua51-zlib-${_gitver}
+
   cd $srcdir/brimworks-lua-zlib-${_gitver}
-  sed -i s#share/lua/cmod#lib/lua/${_luaver}# CMakeLists.txt
+  sed -i s#share/lua/cmod#lib/lua/5.2# CMakeLists.txt
   cmake -DCMAKE_BUILD_TYPE=Release \
   -DCMAKE_INSTALL_PREFIX=/usr .
+
+  cd $srcdir/brimworks-lua51-zlib-${_gitver}
+  sed -i s#share/lua/cmod#lib/lua/5.1# CMakeLists.txt
+  cmake -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr .
 }
 
-package() {
+package_lua-zlib() {
+  depends=('zlib' 'lua')
+
   cd $srcdir/brimworks-lua-zlib-${_gitver}
   make DESTDIR=$pkgdir install
-  install -D -m644 README $pkgdir/usr/share/licenses/lua-zlib/README
+  install -D -m644 README $pkgdir/usr/share/licenses/$pkgname/README
 }
+
+package_lua51-zlib() {
+  depends=('zlib' 'lua51')
+
+  cd $srcdir/brimworks-lua51-zlib-${_gitver}
+  make DESTDIR=$pkgdir install
+  install -D -m644 README $pkgdir/usr/share/licenses/$pkgname/README
+}



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

2013-03-13 Thread Sergej Pupykin
Date: Wednesday, March 13, 2013 @ 14:38:07
  Author: spupykin
Revision: 86219

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

Added:
  lua-zlib/repos/community-i686/ChangeLog
(from rev 86218, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-i686/PKGBUILD
(from rev 86218, lua-zlib/trunk/PKGBUILD)
  lua-zlib/repos/community-x86_64/ChangeLog
(from rev 86218, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-x86_64/PKGBUILD
(from rev 86218, lua-zlib/trunk/PKGBUILD)
Deleted:
  lua-zlib/repos/community-i686/ChangeLog
  lua-zlib/repos/community-i686/PKGBUILD
  lua-zlib/repos/community-x86_64/ChangeLog
  lua-zlib/repos/community-x86_64/PKGBUILD

+
 community-i686/ChangeLog   |   84 +--
 community-i686/PKGBUILD|   76 +++---
 community-x86_64/ChangeLog |   84 +--
 community-x86_64/PKGBUILD  |   76 +++---
 4 files changed, 176 insertions(+), 144 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-03-13 13:37:49 UTC (rev 86218)
+++ community-i686/ChangeLog2013-03-13 13:38:07 UTC (rev 86219)
@@ -1,42 +0,0 @@
-2010-02-18  Dwayne Bent  db...@liqd.org
-
-   * PKGBUILD:
-   Actually build the library
-   [b994a1eae8e4] [tip]
-
-2010-02-15  Dwayne Bent  db...@liqd.org
-
-   * .hgtags:
-   Added tag v20100215-1 for changeset 82cf8c12f58d
-   [5e6e628919ec]
-
-   * ChangeLog, PKGBUILD:
-   Added ChangeLog
-   [82cf8c12f58d] [v20100215-1]
-
-   * PKGBUILD:
-   Install license file
-   [470c65e1d08b]
-
-   * PKGBUILD:
-   Updated email address
-   [cf9fdc7b9cc5]
-
-   * PKGBUILD:
-   Change package name to reflect the type of package this actually is
-   [39b61ef661d7]
-
-   * PKGBUILD:
-   Clean up PKGBUILD
-   [183b11d1286e]
-
-2009-11-26  Dwayne Bent  db...@liqd.org
-
-   * .hgtags:
-   Added tag v20091125-1 for changeset 8e6cc75fb38b
-   [72c8c117a64c]
-
-   * Makefile, PKGBUILD:
-   Initial commit
-   [8e6cc75fb38b] [v20091125-1]
-

Copied: lua-zlib/repos/community-i686/ChangeLog (from rev 86218, 
lua-zlib/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-03-13 13:38:07 UTC (rev 86219)
@@ -0,0 +1,42 @@
+2010-02-18  Dwayne Bent  db...@liqd.org
+
+   * PKGBUILD:
+   Actually build the library
+   [b994a1eae8e4] [tip]
+
+2010-02-15  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20100215-1 for changeset 82cf8c12f58d
+   [5e6e628919ec]
+
+   * ChangeLog, PKGBUILD:
+   Added ChangeLog
+   [82cf8c12f58d] [v20100215-1]
+
+   * PKGBUILD:
+   Install license file
+   [470c65e1d08b]
+
+   * PKGBUILD:
+   Updated email address
+   [cf9fdc7b9cc5]
+
+   * PKGBUILD:
+   Change package name to reflect the type of package this actually is
+   [39b61ef661d7]
+
+   * PKGBUILD:
+   Clean up PKGBUILD
+   [183b11d1286e]
+
+2009-11-26  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20091125-1 for changeset 8e6cc75fb38b
+   [72c8c117a64c]
+
+   * Makefile, PKGBUILD:
+   Initial commit
+   [8e6cc75fb38b] [v20091125-1]
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 13:37:49 UTC (rev 86218)
+++ community-i686/PKGBUILD 2013-03-13 13:38:07 UTC (rev 86219)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=lua-zlib
-pkgver=0.2
-pkgrel=3
-_gitver=8d07669
-_luaver=5.2
-url=http://github.com/brimworks/lua-zlib;
-pkgdesc='Simple streaming interface to zlib for Lua.'
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('lua' 'zlib')
-makedepends=('cmake')
-conflicts=('lua-lzlib')
-source=(lua-zlib-$pkgver.zip::https://github.com/brimworks/lua-zlib/zipball/v$pkgver;)
-md5sums=('28ce556fccb2d364bc5392f63c6f89ee')
-
-build() {
-  cd $srcdir/brimworks-lua-zlib-${_gitver}
-  sed -i s#share/lua/cmod#lib/lua/${_luaver}# CMakeLists.txt
-  cmake -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr .
-}
-
-package() {
-  cd $srcdir/brimworks-lua-zlib-${_gitver}
-  make DESTDIR=$pkgdir install
-  install -D -m644 README $pkgdir/usr/share/licenses/lua-zlib/README
-}

Copied: lua-zlib/repos/community-i686/PKGBUILD (from rev 86218, 
lua-zlib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 13:38:07 UTC (rev 86219)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com

[arch-commits] Commit in lightdm/trunk (PKGBUILD lightdm.tmpfiles)

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 14:38:54
  Author: alucryd
Revision: 86220

upgpkg: lightdm 1.5.1-4

Modified:
  lightdm/trunk/PKGBUILD
  lightdm/trunk/lightdm.tmpfiles

--+
 PKGBUILD |   14 +-
 lightdm.tmpfiles |1 +
 2 files changed, 6 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 13:38:07 UTC (rev 86219)
+++ PKGBUILD2013-03-13 13:38:54 UTC (rev 86220)
@@ -5,7 +5,7 @@
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
 pkgver=1.5.1
-pkgrel=3
+pkgrel=4
 pkgdesc=A lightweight display manager
 arch=('i686' 'x86_64')
 url=https://launchpad.net/lightdm;
@@ -24,7 +24,7 @@
 'Xsession')
 sha256sums=('645db2d763cc514d6aecb1838f4a9c33c3dcf0c94567a7ef36c6b23d8aa56c86'
 '2e03423cbe88c9fdc3a9684d6d14221aa6e92d105f9d1d53b08747d966c45125'
-'5c76a523935f3eb32bb6d5b196e946d3e23509daf8b2077ff3220445f5f4a503'
+'ec10378992907f06a6960c4644aba2f81744fbcaf38f6bdc7c364979be3207e4'
 'db5526d0a76be0d2ed39d19c83a83e1a4774b93e9651aa4f5d1feadcd4fe4c34'
 '6a8b286d1ffa04150b3cc401f64e6ddec778c7b65f5bfc831031b64345d7e6b2'
 'a89566307e1c81c24f037d854cbd472d2f94f8a4b759877a01563a332319f7d6'
@@ -49,13 +49,7 @@
 package_lightdm() {
 depends=('libgcrypt' 'libxklavier' 'pam')
 optdepends=('xorg-server-xephyr: run lightdm in test mode'
-'accountsservice: limit account shown by the greeter'
-'numlockx: have numlock on at startup'
-'lightdm-kde: Qt lightdm greeter'
-'lightdm-gtk-greeter: You need this package to test the default 
greeter'
-'lightdm-webkit-greeter-bzr: webkit lightdm greeter'
-'lightdm-crowd-greeter: 3d lightdm greeter'
-'lightdm-pantheon-greeter: ElementaryOS greeter writtern in vala')
+'accountsservice: limit account shown by the greeter')
 backup=(etc/apparmor.d/lightdm-guest-session
 etc/dbus-1/system.d/org.freedesktop.DisplayManager.conf
 etc/lightdm/keys.conf
@@ -87,6 +81,7 @@
 }
 
 package_liblightdm-qt4() {
+pkgdesc=('LightDM Qt client library')
 depends=('lightdm' 'qt4')
 
   cd ${srcdir}/${pkgbase}-${pkgver}
@@ -101,6 +96,7 @@
 }
 
 package_liblightdm-qt5() {
+pkgdesc=('LightDM Qt client library')
 depends=('lightdm' 'qt5-base')
 
   cd ${srcdir}/${pkgbase}-${pkgver}

Modified: lightdm.tmpfiles
===
--- lightdm.tmpfiles2013-03-13 13:38:07 UTC (rev 86219)
+++ lightdm.tmpfiles2013-03-13 13:38:54 UTC (rev 86220)
@@ -1 +1,2 @@
 d /run/lightdm 0775 lightdm lightdm
+f /run/lightdm/.pam_environment 0644 lightdm lightdm - 
GDK_CORE_DEVICE_EVENTS=true



[arch-commits] Commit in lightdm/repos (44 files)

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 14:39:44
  Author: alucryd
Revision: 86221

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

Added:
  lightdm/repos/community-i686/PKGBUILD
(from rev 86220, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-i686/Xsession
(from rev 86220, lightdm/trunk/Xsession)
  lightdm/repos/community-i686/lightdm-1.5.1-systemd_login1_power.patch
(from rev 86220, lightdm/trunk/lightdm-1.5.1-systemd_login1_power.patch)
  lightdm/repos/community-i686/lightdm-autologin.pam
(from rev 86220, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-i686/lightdm-default-config.patch
(from rev 86220, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-i686/lightdm-lock-screen-before-switch.patch
(from rev 86220, lightdm/trunk/lightdm-lock-screen-before-switch.patch)
  lightdm/repos/community-i686/lightdm.install
(from rev 86220, lightdm/trunk/lightdm.install)
  lightdm/repos/community-i686/lightdm.pam
(from rev 86220, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-i686/lightdm.rules
(from rev 86220, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-i686/lightdm.service
(from rev 86220, lightdm/trunk/lightdm.service)
  lightdm/repos/community-i686/lightdm.tmpfiles
(from rev 86220, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-x86_64/PKGBUILD
(from rev 86220, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-x86_64/Xsession
(from rev 86220, lightdm/trunk/Xsession)
  lightdm/repos/community-x86_64/lightdm-1.5.1-systemd_login1_power.patch
(from rev 86220, lightdm/trunk/lightdm-1.5.1-systemd_login1_power.patch)
  lightdm/repos/community-x86_64/lightdm-autologin.pam
(from rev 86220, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-x86_64/lightdm-default-config.patch
(from rev 86220, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-x86_64/lightdm-lock-screen-before-switch.patch
(from rev 86220, lightdm/trunk/lightdm-lock-screen-before-switch.patch)
  lightdm/repos/community-x86_64/lightdm.install
(from rev 86220, lightdm/trunk/lightdm.install)
  lightdm/repos/community-x86_64/lightdm.pam
(from rev 86220, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-x86_64/lightdm.rules
(from rev 86220, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-x86_64/lightdm.service
(from rev 86220, lightdm/trunk/lightdm.service)
  lightdm/repos/community-x86_64/lightdm.tmpfiles
(from rev 86220, lightdm/trunk/lightdm.tmpfiles)
Deleted:
  lightdm/repos/community-i686/PKGBUILD
  lightdm/repos/community-i686/Xsession
  lightdm/repos/community-i686/lightdm-1.5.1-systemd_login1_power.patch
  lightdm/repos/community-i686/lightdm-autologin.pam
  lightdm/repos/community-i686/lightdm-default-config.patch
  lightdm/repos/community-i686/lightdm-lock-screen-before-switch.patch
  lightdm/repos/community-i686/lightdm.install
  lightdm/repos/community-i686/lightdm.pam
  lightdm/repos/community-i686/lightdm.rules
  lightdm/repos/community-i686/lightdm.service
  lightdm/repos/community-i686/lightdm.tmpfiles
  lightdm/repos/community-x86_64/PKGBUILD
  lightdm/repos/community-x86_64/Xsession
  lightdm/repos/community-x86_64/lightdm-1.5.1-systemd_login1_power.patch
  lightdm/repos/community-x86_64/lightdm-autologin.pam
  lightdm/repos/community-x86_64/lightdm-default-config.patch
  lightdm/repos/community-x86_64/lightdm-lock-screen-before-switch.patch
  lightdm/repos/community-x86_64/lightdm.install
  lightdm/repos/community-x86_64/lightdm.pam
  lightdm/repos/community-x86_64/lightdm.rules
  lightdm/repos/community-x86_64/lightdm.service
  lightdm/repos/community-x86_64/lightdm.tmpfiles

---+
 community-i686/PKGBUILD   |  230 +++---
 community-i686/Xsession   |  138 +--
 community-i686/lightdm-1.5.1-systemd_login1_power.patch   |  422 ++--
 community-i686/lightdm-autologin.pam  |   40 -
 community-i686/lightdm-default-config.patch   |   70 -
 community-i686/lightdm-lock-screen-before-switch.patch|  110 +--
 community-i686/lightdm.install|   30 
 community-i686/lightdm.pam|   24 
 community-i686/lightdm.rules  |   30 
 community-i686/lightdm.service|   28 
 community-i686/lightdm.tmpfiles   |3 
 community-x86_64/PKGBUILD |  230 +++---
 community-x86_64/Xsession |  138 +--
 community-x86_64/lightdm-1.5.1-systemd_login1_power.patch |  422 ++--
 community-x86_64/lightdm-autologin.pam|   40 -
 community-x86_64/lightdm-default-config.patch |   70 -
 community-x86_64/lightdm-lock-screen-before-switch.patch  |  110 +--
 community-x86_64/lightdm.install

[arch-commits] Commit in gnome-sharp/trunk (3 files)

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 14:55:42
  Author: jgc
Revision: 179960

Fix paths in pkgconfig file
Initialize dbus threading in GConf-sharp. Fixes issues with threaded 
applications like Tomboy and Banshee.

upgpkg: gnome-sharp 2.24.2-3

Added:
  gnome-sharp/trunk/02_fix_pkg-config_paths.patch
  gnome-sharp/trunk/04_initialize_dbus_glib_threading.patch
Modified:
  gnome-sharp/trunk/PKGBUILD

-+
 02_fix_pkg-config_paths.patch   |   49 
 04_initialize_dbus_glib_threading.patch |   51 ++
 PKGBUILD|   12 +--
 3 files changed, 109 insertions(+), 3 deletions(-)

Added: 02_fix_pkg-config_paths.patch
===
--- 02_fix_pkg-config_paths.patch   (rev 0)
+++ 02_fix_pkg-config_paths.patch   2013-03-13 13:55:42 UTC (rev 179960)
@@ -0,0 +1,49 @@
+## 02_fix_pkg-config_paths.dpatch by Mirco Bauer mee...@debian.org
+##
+## Modified by Archlinux: removed libdir change
+
+diff -urNad gnome-sharp-2.24.1~/art/art-sharp-2.0.pc.in 
gnome-sharp-2.24.1/art/art-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/art/art-sharp-2.0.pc.in2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/art/art-sharp-2.0.pc.in 2009-03-21 19:03:32.0 
+0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ gapidir=${prefix}/share/gapi-2.0
+diff -urNad gnome-sharp-2.24.1~/gconf/GConf/gconf-sharp-2.0.pc.in 
gnome-sharp-2.24.1/gconf/GConf/gconf-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/gconf/GConf/gconf-sharp-2.0.pc.in  2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/gconf/GConf/gconf-sharp-2.0.pc.in   2009-03-21 
19:03:26.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ 
+diff -urNad 
gnome-sharp-2.24.1~/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in 
gnome-sharp-2.24.1/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in
+--- 
gnome-sharp-2.24.1~/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in  
   2009-03-21 19:02:54.0 +0100
 
gnome-sharp-2.24.1/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in   
   2009-03-21 19:03:20.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ 
+diff -urNad gnome-sharp-2.24.1~/gnome/gnome-sharp-2.0.pc.in 
gnome-sharp-2.24.1/gnome/gnome-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/gnome/gnome-sharp-2.0.pc.in2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/gnome/gnome-sharp-2.0.pc.in 2009-03-21 
19:03:07.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ gapidir=${prefix}/share/gapi-2.0
+diff -urNad gnome-sharp-2.24.1~/gnomevfs/gnome-vfs-sharp-2.0.pc.in 
gnome-sharp-2.24.1/gnomevfs/gnome-vfs-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/gnomevfs/gnome-vfs-sharp-2.0.pc.in 2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/gnomevfs/gnome-vfs-sharp-2.0.pc.in  2009-03-21 
19:03:12.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ gapidir=${prefix}/share/gapi-2.0

Added: 04_initialize_dbus_glib_threading.patch
===
--- 04_initialize_dbus_glib_threading.patch (rev 0)
+++ 04_initialize_dbus_glib_threading.patch 2013-03-13 13:55:42 UTC (rev 
179960)
@@ -0,0 +1,51 @@
+From e9d06b56a54dcd399d1d3eaaf62bdacb7e07084d Mon Sep 17 00:00:00 2001
+From: Mirco Bauer mee...@meebey.net
+Date: Sat, 2 Mar 2013 13:44:46 +0100
+Subject: [PATCH] Explicitly initialize D-Bus GLib threading
+
+When gconf was switched from orbit to dbus it was no longer thread-safe by
+default. This behavior can only get back by explicitly initializing dbus-glib's
+threads. This issue affects multi-threaded GConf# users like Banshee leading
+them to SEGVs.
+
+For more details see:
+https://bugzilla.gnome.org/show_bug.cgi?id=683830
+---
+ gconf/GConf/Client.cs |   11 +++
+ gconf/GConf/gconf-sharp.dll.config.in |1 +
+ 2 files changed, 12 insertions(+)
+
+diff --git a/gconf/GConf/Client.cs b/gconf/GConf/Client.cs
+index b8cc881..64efc9f 100644
+--- a/gconf/GConf/Client.cs
 b/gconf/GConf/Client.cs
+@@ -31,6 +31,17 @@ namespace GConf
+   [DllImport(gconf-2)]
+   static extern IntPtr gconf_client_get_default ();
+ 
++  [DllImport(dbus-glib-1)]
++  static extern void dbus_g_thread_init ();
++
++  static Client ()
++  {
++  // HACK: we have to initialize dbus' threading else 
GConf with its
++  // dbus 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 14:55:50
  Author: jgc
Revision: 179961

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

Added:
  gnome-sharp/repos/extra-i686/02_fix_pkg-config_paths.patch
(from rev 179960, gnome-sharp/trunk/02_fix_pkg-config_paths.patch)
  gnome-sharp/repos/extra-i686/04_initialize_dbus_glib_threading.patch
(from rev 179960, gnome-sharp/trunk/04_initialize_dbus_glib_threading.patch)
  gnome-sharp/repos/extra-i686/PKGBUILD
(from rev 179960, gnome-sharp/trunk/PKGBUILD)
  gnome-sharp/repos/extra-x86_64/02_fix_pkg-config_paths.patch
(from rev 179960, gnome-sharp/trunk/02_fix_pkg-config_paths.patch)
  gnome-sharp/repos/extra-x86_64/04_initialize_dbus_glib_threading.patch
(from rev 179960, gnome-sharp/trunk/04_initialize_dbus_glib_threading.patch)
  gnome-sharp/repos/extra-x86_64/PKGBUILD
(from rev 179960, gnome-sharp/trunk/PKGBUILD)
Deleted:
  gnome-sharp/repos/extra-i686/PKGBUILD
  gnome-sharp/repos/extra-x86_64/PKGBUILD

--+
 extra-i686/02_fix_pkg-config_paths.patch |   49 +
 extra-i686/04_initialize_dbus_glib_threading.patch   |   51 +
 extra-i686/PKGBUILD  |  146 -
 extra-x86_64/02_fix_pkg-config_paths.patch   |   49 +
 extra-x86_64/04_initialize_dbus_glib_threading.patch |   51 +
 extra-x86_64/PKGBUILD|  146 -
 6 files changed, 352 insertions(+), 140 deletions(-)

Copied: gnome-sharp/repos/extra-i686/02_fix_pkg-config_paths.patch (from rev 
179960, gnome-sharp/trunk/02_fix_pkg-config_paths.patch)
===
--- extra-i686/02_fix_pkg-config_paths.patch(rev 0)
+++ extra-i686/02_fix_pkg-config_paths.patch2013-03-13 13:55:50 UTC (rev 
179961)
@@ -0,0 +1,49 @@
+## 02_fix_pkg-config_paths.dpatch by Mirco Bauer mee...@debian.org
+##
+## Modified by Archlinux: removed libdir change
+
+diff -urNad gnome-sharp-2.24.1~/art/art-sharp-2.0.pc.in 
gnome-sharp-2.24.1/art/art-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/art/art-sharp-2.0.pc.in2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/art/art-sharp-2.0.pc.in 2009-03-21 19:03:32.0 
+0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ gapidir=${prefix}/share/gapi-2.0
+diff -urNad gnome-sharp-2.24.1~/gconf/GConf/gconf-sharp-2.0.pc.in 
gnome-sharp-2.24.1/gconf/GConf/gconf-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/gconf/GConf/gconf-sharp-2.0.pc.in  2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/gconf/GConf/gconf-sharp-2.0.pc.in   2009-03-21 
19:03:26.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ 
+diff -urNad 
gnome-sharp-2.24.1~/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in 
gnome-sharp-2.24.1/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in
+--- 
gnome-sharp-2.24.1~/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in  
   2009-03-21 19:02:54.0 +0100
 
gnome-sharp-2.24.1/gconf/GConf.PropertyEditors/gconf-sharp-peditors-2.0.pc.in   
   2009-03-21 19:03:20.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ 
+diff -urNad gnome-sharp-2.24.1~/gnome/gnome-sharp-2.0.pc.in 
gnome-sharp-2.24.1/gnome/gnome-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/gnome/gnome-sharp-2.0.pc.in2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/gnome/gnome-sharp-2.0.pc.in 2009-03-21 
19:03:07.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ gapidir=${prefix}/share/gapi-2.0
+diff -urNad gnome-sharp-2.24.1~/gnomevfs/gnome-vfs-sharp-2.0.pc.in 
gnome-sharp-2.24.1/gnomevfs/gnome-vfs-sharp-2.0.pc.in
+--- gnome-sharp-2.24.1~/gnomevfs/gnome-vfs-sharp-2.0.pc.in 2009-03-21 
19:02:54.0 +0100
 gnome-sharp-2.24.1/gnomevfs/gnome-vfs-sharp-2.0.pc.in  2009-03-21 
19:03:12.0 +0100
+@@ -1,4 +1,4 @@
+-prefix=${pcfiledir}/../..
++prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+ gapidir=${prefix}/share/gapi-2.0

Copied: gnome-sharp/repos/extra-i686/04_initialize_dbus_glib_threading.patch 
(from rev 179960, gnome-sharp/trunk/04_initialize_dbus_glib_threading.patch)
===
--- extra-i686/04_initialize_dbus_glib_threading.patch  
(rev 0)
+++ extra-i686/04_initialize_dbus_glib_threading.patch  2013-03-13 13:55:50 UTC 
(rev 179961)
@@ -0,0 +1,51 @@
+From e9d06b56a54dcd399d1d3eaaf62bdacb7e07084d Mon Sep 17 00:00:00 2001
+From: Mirco Bauer mee...@meebey.net
+Date: Sat, 2 Mar 2013 13:44:46 +0100
+Subject: [PATCH] Explicitly initialize D-Bus GLib threading
+

[arch-commits] Commit in (5 files)

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 15:19:58
  Author: alucryd
Revision: 86222

Add lightdm-kde-greeter

Added:
  lightdm-kde-greeter/
  lightdm-kde-greeter/repos/
  lightdm-kde-greeter/trunk/
  lightdm-kde-greeter/trunk/PKGBUILD
  lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf

--+
 PKGBUILD |   44 
 lightdm-kde-greeter.conf |2 ++
 2 files changed, 46 insertions(+)

Added: lightdm-kde-greeter/trunk/PKGBUILD
===
--- lightdm-kde-greeter/trunk/PKGBUILD  (rev 0)
+++ lightdm-kde-greeter/trunk/PKGBUILD  2013-03-13 14:19:58 UTC (rev 86222)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Mladen Pejakovic pej...@gmail.com
+# Contributor: Xiao-Long Chen chenxiaol...@cxl.epac.to
+
+pkgname=lightdm-kde-greeter
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=KDE greeter for LightDM
+arch=('i686' 'x86_64')
+url=https://projects.kde.org/projects/playground/base/lightdm;
+license=('GPL')
+depends=('kdelibs' 'liblightdm-qt4')
+makedepends=('cmake' 'automoc4')
+backup=('etc/lightdm/lightdm-kde-greeter.conf'
+'etc/dbus-1/system.d/org.kde.kcontrol.kcmlightdm.conf')
+source=(ftp://ftp.kde.org/pub/kde/unstable/${pkgname%-*}/src/${pkgname%-*}-${pkgver}.tar.bz2;
+'lightdm-kde-greeter.conf')
+sha256sums=('855cffaccc6500e25016e104cd593189cad9aa88ee34f237b01964fce1bcfcf9'
+'a8fe10ef68d553781b91b1377106f95915c3ca14d835bd66910e08f922ef64c8')
+
+build() {
+  cd ${srcdir}/lightdm-${pkgver}
+
+# Build
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/lightdm-${pkgver}/build
+
+# Install
+  make DESTDIR=${pkgdir} install
+  install -dm 755 ${pkgdir}/etc/lightdm
+  install -m 644 ../../lightdm-kde-greeter.conf 
${pkgdir}/etc/lightdm/lightdm-kde-greeter.conf
+}
+
+# vim ts=2 sw=2 et:


Property changes on: lightdm-kde-greeter/trunk/PKGBUILD
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf
===
--- lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf  
(rev 0)
+++ lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf  2013-03-13 14:19:58 UTC 
(rev 86222)
@@ -0,0 +1,2 @@
+[greeter]
+theme-name=classic


Property changes on: lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 15:27:22
  Author: jgc
Revision: 179962

upgpkg: gconf 3.2.6-1

Modified:
  gconf/trunk/PKGBUILD
Deleted:
  gconf/trunk/gconf-dbus-fix-shutdown.patch
  gconf/trunk/gconf-dbus-fix-use-after-free.patch
  gconf/trunk/gsettings-schema-convert-dont-fail.patch

--+
 PKGBUILD |   16 
 gconf-dbus-fix-shutdown.patch|   34 -
 gconf-dbus-fix-use-after-free.patch  |   99 -
 gsettings-schema-convert-dont-fail.patch |   28 
 4 files changed, 3 insertions(+), 174 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 13:55:50 UTC (rev 179961)
+++ PKGBUILD2013-03-13 14:27:22 UTC (rev 179962)
@@ -2,8 +2,8 @@
 # Maintainer:  Jan de Groot j...@archlinux.org
 
 pkgname=gconf
-pkgver=3.2.5
-pkgrel=3
+pkgver=3.2.6
+pkgrel=1
 pkgdesc=A configuration database system
 arch=(i686 x86_64)
 license=('LGPL')
@@ -13,17 +13,11 @@
 install=gconf.install
 url=http://www.gnome.org;
 source=(http://ftp.gnome.org/pub/gnome/sources/GConf/3.2/GConf-$pkgver.tar.xz
-gconf-dbus-fix-use-after-free.patch
-gconf-dbus-fix-shutdown.patch
-gsettings-schema-convert-dont-fail.patch
 gconf-merge-schema
 gconfpkg
 gconf-reload.patch
 01_xml-gettext-domain.patch)
-sha256sums=('4ddea9503a212ee126c5b46a0a958fd5484574c3cb6ef2baf38db02e819e58c6'
-'76c078218e7c3e93691ddd4d7fd9f5c83d4862d0a0406d17b805f3106b50375d'
-'ddf55a40a260dd00364b32b3200bd8a76e890070ea6267fbfb322907c0946ab2'
-'be6f084a31229e8edfd6936005c6bb4f2d1548b777df5937923b4702f7a9ac19'
+sha256sums=('1912b91803ab09a5eed34d364bf09fe3a2a9c96751fde03a4e0cfa51a04d784c'
 'ee6b6e6f4975dad13a8c45f1c1f0547a99373bdecdcd6604bfc12965c328a028'
 'bf1928718caa5df2b9e54a13cfd0f15a8fe0e09e86b84385ce023616a114e898'
 '567b78d8b4b4bbcb77c5f134d57bc503c34867fcc6341c0b01716bcaa4a21694'
@@ -31,10 +25,6 @@
 
 build() {
   cd GConf-$pkgver
-  # Upstream fixes from git
-  patch -Np1 -i $srcdir/gconf-dbus-fix-shutdown.patch
-  patch -Np1 -i $srcdir/gsettings-schema-convert-dont-fail.patch
-  patch -Np1 -i $srcdir/gconf-dbus-fix-use-after-free.patch
 
   # Patch from fedora - reloads gconf after installing schemas
   patch -Np1 -i $srcdir/gconf-reload.patch

Deleted: gconf-dbus-fix-shutdown.patch
===
--- gconf-dbus-fix-shutdown.patch   2013-03-13 13:55:50 UTC (rev 179961)
+++ gconf-dbus-fix-shutdown.patch   2013-03-13 14:27:22 UTC (rev 179962)
@@ -1,34 +0,0 @@
-From 39299610083e0e7f9b44e62b7f4e51e89693cf89 Mon Sep 17 00:00:00 2001
-From: Ray Strode rstr...@redhat.com
-Date: Tue, 06 Mar 2012 19:39:06 +
-Subject: dbus: fix shutdown
-
-gconftool-2 wasn't properly shutting down gconfd, because
-it was trying to do it before connecting to the daemon.
-
-This commit makes sure that we always first try to connect to
-the daemon before asking it to shutdown.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=671490

-diff --git a/gconf/gconf-dbus.c b/gconf/gconf-dbus.c
-index 442a94b..f167fc5 100644
 a/gconf/gconf-dbus.c
-+++ b/gconf/gconf-dbus.c
-@@ -2483,7 +2483,13 @@ gconf_shutdown_daemon (GError** err)
- {
-   DBusMessage *message;
- 
--  /* Don't want to spawn it if it's already down */
-+  /* If we haven't reached out to it yet,
-+   * reach out now.
-+   */
-+  if (global_conn == NULL)
-+gconf_ping_daemon();
-+
-+  /* But we don't want to spawn it if it's already down */
-   if (global_conn == NULL || !service_running)
- return;
-   
---
-cgit v0.9.0.2

Deleted: gconf-dbus-fix-use-after-free.patch
===
--- gconf-dbus-fix-use-after-free.patch 2013-03-13 13:55:50 UTC (rev 179961)
+++ gconf-dbus-fix-use-after-free.patch 2013-03-13 14:27:22 UTC (rev 179962)
@@ -1,99 +0,0 @@
-From 84884e9df7ce8c081a1c223c66a799b82545ff1e Mon Sep 17 00:00:00 2001
-From: Milan Crha mc...@redhat.com
-Date: Thu, 18 Oct 2012 20:08:02 +
-Subject: gconf-dbus: fix use after free
-
-gconf_engine_get_fuller is accessing freed memory.
-The problem is that it's referencing strings that are owned
-by a D-Bus message, and they go away when the D-Bus message is freed.
-
-This commit addresses the problem by duplicating the strings and
-freeing them later.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=667167

-diff --git a/gconf/gconf-dbus-utils.c b/gconf/gconf-dbus-utils.c
-index 6fd5bfa..92f5980 100644
 a/gconf/gconf-dbus-utils.c
-+++ b/gconf/gconf-dbus-utils.c
-@@ -569,11 +569,11 @@ gconf_dbus_utils_get_entry_values (DBusMessageIter  
*main_iter,
-  gchar   **schema_name_p)
- {
-   DBusMessageIter  struct_iter;
--  gchar   *key;
-+  const gchar *key;
-   GConfValue  *value;
-   

[arch-commits] Commit in gconf/repos (30 files)

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 15:27:34
  Author: jgc
Revision: 179963

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

Added:
  gconf/repos/extra-i686/01_xml-gettext-domain.patch
(from rev 179962, gconf/trunk/01_xml-gettext-domain.patch)
  gconf/repos/extra-i686/PKGBUILD
(from rev 179962, gconf/trunk/PKGBUILD)
  gconf/repos/extra-i686/gconf-merge-schema
(from rev 179962, gconf/trunk/gconf-merge-schema)
  gconf/repos/extra-i686/gconf-reload.patch
(from rev 179962, gconf/trunk/gconf-reload.patch)
  gconf/repos/extra-i686/gconf.install
(from rev 179962, gconf/trunk/gconf.install)
  gconf/repos/extra-i686/gconfpkg
(from rev 179962, gconf/trunk/gconfpkg)
  gconf/repos/extra-x86_64/01_xml-gettext-domain.patch
(from rev 179962, gconf/trunk/01_xml-gettext-domain.patch)
  gconf/repos/extra-x86_64/PKGBUILD
(from rev 179962, gconf/trunk/PKGBUILD)
  gconf/repos/extra-x86_64/gconf-merge-schema
(from rev 179962, gconf/trunk/gconf-merge-schema)
  gconf/repos/extra-x86_64/gconf-reload.patch
(from rev 179962, gconf/trunk/gconf-reload.patch)
  gconf/repos/extra-x86_64/gconf.install
(from rev 179962, gconf/trunk/gconf.install)
  gconf/repos/extra-x86_64/gconfpkg
(from rev 179962, gconf/trunk/gconfpkg)
Deleted:
  gconf/repos/extra-i686/01_xml-gettext-domain.patch
  gconf/repos/extra-i686/PKGBUILD
  gconf/repos/extra-i686/gconf-dbus-fix-shutdown.patch
  gconf/repos/extra-i686/gconf-dbus-fix-use-after-free.patch
  gconf/repos/extra-i686/gconf-merge-schema
  gconf/repos/extra-i686/gconf-reload.patch
  gconf/repos/extra-i686/gconf.install
  gconf/repos/extra-i686/gconfpkg
  gconf/repos/extra-i686/gsettings-schema-convert-dont-fail.patch
  gconf/repos/extra-x86_64/01_xml-gettext-domain.patch
  gconf/repos/extra-x86_64/PKGBUILD
  gconf/repos/extra-x86_64/gconf-dbus-fix-shutdown.patch
  gconf/repos/extra-x86_64/gconf-dbus-fix-use-after-free.patch
  gconf/repos/extra-x86_64/gconf-merge-schema
  gconf/repos/extra-x86_64/gconf-reload.patch
  gconf/repos/extra-x86_64/gconf.install
  gconf/repos/extra-x86_64/gconfpkg
  gconf/repos/extra-x86_64/gsettings-schema-convert-dont-fail.patch

---+
 extra-i686/01_xml-gettext-domain.patch|  724 
 extra-i686/PKGBUILD   |  114 +-
 extra-i686/gconf-dbus-fix-shutdown.patch  |   34 
 extra-i686/gconf-dbus-fix-use-after-free.patch|   99 --
 extra-i686/gconf-merge-schema |   68 -
 extra-i686/gconf-reload.patch |   40 
 extra-i686/gconf.install  |   40 
 extra-i686/gconfpkg   |  100 +-
 extra-i686/gsettings-schema-convert-dont-fail.patch   |   28 
 extra-x86_64/01_xml-gettext-domain.patch  |  724 
 extra-x86_64/PKGBUILD |  114 +-
 extra-x86_64/gconf-dbus-fix-shutdown.patch|   34 
 extra-x86_64/gconf-dbus-fix-use-after-free.patch  |   99 --
 extra-x86_64/gconf-merge-schema   |   68 -
 extra-x86_64/gconf-reload.patch   |   40 
 extra-x86_64/gconf.install|   40 
 extra-x86_64/gconfpkg |  100 +-
 extra-x86_64/gsettings-schema-convert-dont-fail.patch |   28 
 18 files changed, 1076 insertions(+), 1418 deletions(-)

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


[arch-commits] Commit in lightdm-kde-greeter/repos (6 files)

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 15:28:38
  Author: alucryd
Revision: 86223

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

Added:
  lightdm-kde-greeter/repos/community-i686/
  lightdm-kde-greeter/repos/community-i686/PKGBUILD
(from rev 86222, lightdm-kde-greeter/trunk/PKGBUILD)
  lightdm-kde-greeter/repos/community-i686/lightdm-kde-greeter.conf
(from rev 86222, lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf)
  lightdm-kde-greeter/repos/community-x86_64/
  lightdm-kde-greeter/repos/community-x86_64/PKGBUILD
(from rev 86222, lightdm-kde-greeter/trunk/PKGBUILD)
  lightdm-kde-greeter/repos/community-x86_64/lightdm-kde-greeter.conf
(from rev 86222, lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf)

---+
 community-i686/PKGBUILD   |   44 
 community-i686/lightdm-kde-greeter.conf   |2 +
 community-x86_64/PKGBUILD |   44 
 community-x86_64/lightdm-kde-greeter.conf |2 +
 4 files changed, 92 insertions(+)

Copied: lightdm-kde-greeter/repos/community-i686/PKGBUILD (from rev 86222, 
lightdm-kde-greeter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 14:28:38 UTC (rev 86223)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Mladen Pejakovic pej...@gmail.com
+# Contributor: Xiao-Long Chen chenxiaol...@cxl.epac.to
+
+pkgname=lightdm-kde-greeter
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=KDE greeter for LightDM
+arch=('i686' 'x86_64')
+url=https://projects.kde.org/projects/playground/base/lightdm;
+license=('GPL')
+depends=('kdelibs' 'liblightdm-qt4')
+makedepends=('cmake' 'automoc4')
+backup=('etc/lightdm/lightdm-kde-greeter.conf'
+'etc/dbus-1/system.d/org.kde.kcontrol.kcmlightdm.conf')
+source=(ftp://ftp.kde.org/pub/kde/unstable/${pkgname%-*}/src/${pkgname%-*}-${pkgver}.tar.bz2;
+'lightdm-kde-greeter.conf')
+sha256sums=('855cffaccc6500e25016e104cd593189cad9aa88ee34f237b01964fce1bcfcf9'
+'a8fe10ef68d553781b91b1377106f95915c3ca14d835bd66910e08f922ef64c8')
+
+build() {
+  cd ${srcdir}/lightdm-${pkgver}
+
+# Build
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/lightdm-${pkgver}/build
+
+# Install
+  make DESTDIR=${pkgdir} install
+  install -dm 755 ${pkgdir}/etc/lightdm
+  install -m 644 ../../lightdm-kde-greeter.conf 
${pkgdir}/etc/lightdm/lightdm-kde-greeter.conf
+}
+
+# vim ts=2 sw=2 et:

Copied: lightdm-kde-greeter/repos/community-i686/lightdm-kde-greeter.conf (from 
rev 86222, lightdm-kde-greeter/trunk/lightdm-kde-greeter.conf)
===
--- community-i686/lightdm-kde-greeter.conf (rev 0)
+++ community-i686/lightdm-kde-greeter.conf 2013-03-13 14:28:38 UTC (rev 
86223)
@@ -0,0 +1,2 @@
+[greeter]
+theme-name=classic

Copied: lightdm-kde-greeter/repos/community-x86_64/PKGBUILD (from rev 86222, 
lightdm-kde-greeter/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-03-13 14:28:38 UTC (rev 86223)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Mladen Pejakovic pej...@gmail.com
+# Contributor: Xiao-Long Chen chenxiaol...@cxl.epac.to
+
+pkgname=lightdm-kde-greeter
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=KDE greeter for LightDM
+arch=('i686' 'x86_64')
+url=https://projects.kde.org/projects/playground/base/lightdm;
+license=('GPL')
+depends=('kdelibs' 'liblightdm-qt4')
+makedepends=('cmake' 'automoc4')
+backup=('etc/lightdm/lightdm-kde-greeter.conf'
+'etc/dbus-1/system.d/org.kde.kcontrol.kcmlightdm.conf')
+source=(ftp://ftp.kde.org/pub/kde/unstable/${pkgname%-*}/src/${pkgname%-*}-${pkgver}.tar.bz2;
+'lightdm-kde-greeter.conf')
+sha256sums=('855cffaccc6500e25016e104cd593189cad9aa88ee34f237b01964fce1bcfcf9'
+'a8fe10ef68d553781b91b1377106f95915c3ca14d835bd66910e08f922ef64c8')
+
+build() {
+  cd ${srcdir}/lightdm-${pkgver}
+
+# Build
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/lightdm-${pkgver}/build
+
+# Install
+  make DESTDIR=${pkgdir} install
+  install -dm 755 ${pkgdir}/etc/lightdm
+  install -m 644 ../../lightdm-kde-greeter.conf 
${pkgdir}/etc/lightdm/lightdm-kde-greeter.conf
+}
+
+# vim ts=2 sw=2 et:

Copied: lightdm-kde-greeter/repos/community-x86_64/lightdm-kde-greeter.conf 
(from rev 86222, 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 15:34:19
  Author: jgc
Revision: 179964

upgpkg: genius 1.0.16-1

Modified:
  genius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 14:27:34 UTC (rev 179963)
+++ PKGBUILD2013-03-13 14:34:19 UTC (rev 179964)
@@ -3,18 +3,18 @@
 # Contributor: Arjan Timmerman ar...@soulfly.nl
 
 pkgname=genius
-pkgver=1.0.15
+pkgver=1.0.16
 pkgrel=1
 pkgdesc=Advanced calculator including a mathematical programming language
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.jirka.org/genius.html;
-depends=('vte=0.26.2' 'gtksourceview2=2.10.5' 'mpfr=3.0.0' 
'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils=0.20.0')
+depends=('vte' 'gtksourceview2' 'mpfr' 'desktop-file-utils' 
'hicolor-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils')
 options=('!libtool' '!makeflags')
 install=genius.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/genius/1.0/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('941e9d09d9f151f3f36ae190bad3c4e2887a552a301dc99af5fd06f8c5c76377')
+sha256sums=('45ce3e0b02c109588ff9a4c74e7c3541b3de89ea93f20ab08178c51c6ab4fb78')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 15:34:29
  Author: jgc
Revision: 179965

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

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

-+
 extra-i686/PKGBUILD |   64 +-
 extra-i686/genius.install   |   26 -
 extra-x86_64/PKGBUILD   |   64 +-
 extra-x86_64/genius.install |   26 -
 4 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 14:34:19 UTC (rev 179964)
+++ extra-i686/PKGBUILD 2013-03-13 14:34:29 UTC (rev 179965)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Arjan Timmerman ar...@soulfly.nl
-
-pkgname=genius
-pkgver=1.0.15
-pkgrel=1
-pkgdesc=Advanced calculator including a mathematical programming language
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.jirka.org/genius.html;
-depends=('vte=0.26.2' 'gtksourceview2=2.10.5' 'mpfr=3.0.0' 
'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils=0.20.0')
-options=('!libtool' '!makeflags')
-install=genius.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/genius/1.0/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('941e9d09d9f151f3f36ae190bad3c4e2887a552a301dc99af5fd06f8c5c76377')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/genius \
-  --localstatedir=/var --disable-static \
-  --enable-gtksourceview --disable-scrollkeeper \
-  --disable-update-mimedb
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: genius/repos/extra-i686/PKGBUILD (from rev 179964, 
genius/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 14:34:29 UTC (rev 179965)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Arjan Timmerman ar...@soulfly.nl
+
+pkgname=genius
+pkgver=1.0.16
+pkgrel=1
+pkgdesc=Advanced calculator including a mathematical programming language
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.jirka.org/genius.html;
+depends=('vte' 'gtksourceview2' 'mpfr' 'desktop-file-utils' 
'hicolor-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils')
+options=('!libtool' '!makeflags')
+install=genius.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/genius/1.0/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('45ce3e0b02c109588ff9a4c74e7c3541b3de89ea93f20ab08178c51c6ab4fb78')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/genius \
+  --localstatedir=/var --disable-static \
+  --enable-gtksourceview --disable-scrollkeeper \
+  --disable-update-mimedb
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/genius.install
===
--- extra-i686/genius.install   2013-03-13 14:34:19 UTC (rev 179964)
+++ extra-i686/genius.install   2013-03-13 14:34:29 UTC (rev 179965)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-mime-database usr/share/mime
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: genius/repos/extra-i686/genius.install (from rev 179964, 
genius/trunk/genius.install)
===
--- extra-i686/genius.install   (rev 0)
+++ extra-i686/genius.install   2013-03-13 14:34:29 UTC (rev 179965)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-mime-database usr/share/mime
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-13 14:34:19 UTC (rev 179964)
+++ extra-x86_64/PKGBUILD   2013-03-13 14:34:29 UTC (rev 179965)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Arjan Timmerman 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 15:50:09
  Author: jgc
Revision: 179966

upgpkg: goffice 0.10.1-1

Modified:
  goffice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 14:34:29 UTC (rev 179965)
+++ PKGBUILD2013-03-13 14:50:09 UTC (rev 179966)
@@ -2,7 +2,7 @@
 # Maintainer: Aaron Griffin aa...@archlinux.org
 
 pkgname=goffice
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
 depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('7e7577f69203b03c4966906bcaabc6e87a629efb1684630c2bee7907bed08439')
+sha256sums=('5c38f4e81e874cc8e89481b080f77c47c72bfd6fe2526f4fc2ef87c17f96cad0')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 15:50:17
  Author: jgc
Revision: 179967

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 14:50:09 UTC (rev 179966)
+++ extra-i686/PKGBUILD 2013-03-13 14:50:17 UTC (rev 179967)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
-
-pkgname=goffice
-pkgver=0.10.0
-pkgrel=1
-pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
-arch=('i686' 'x86_64')
-url=http://www.gnome.org;
-license=('GPL')
-options=('!libtool')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
-depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('7e7577f69203b03c4966906bcaabc6e87a629efb1684630c2bee7907bed08439')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: goffice/repos/extra-i686/PKGBUILD (from rev 179966, 
goffice/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 14:50:17 UTC (rev 179967)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Aaron Griffin aa...@archlinux.org
+
+pkgname=goffice
+pkgver=0.10.1
+pkgrel=1
+pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL')
+options=('!libtool')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
+depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('5c38f4e81e874cc8e89481b080f77c47c72bfd6fe2526f4fc2ef87c17f96cad0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --enable-introspection
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-13 14:50:09 UTC (rev 179966)
+++ extra-x86_64/PKGBUILD   2013-03-13 14:50:17 UTC (rev 179967)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
-
-pkgname=goffice
-pkgver=0.10.0
-pkgrel=1
-pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
-arch=('i686' 'x86_64')
-url=http://www.gnome.org;
-license=('GPL')
-options=('!libtool')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
-depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('7e7577f69203b03c4966906bcaabc6e87a629efb1684630c2bee7907bed08439')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: goffice/repos/extra-x86_64/PKGBUILD (from rev 179966, 
goffice/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-03-13 14:50:17 UTC (rev 179967)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Aaron Griffin aa...@archlinux.org
+
+pkgname=goffice
+pkgver=0.10.1
+pkgrel=1
+pkgdesc=A library of document-centric objects and utilities built on top of 
GLib and Gtk+
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL')
+options=('!libtool')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
+depends=('librsvg' 'gtk3' 'libgsf' 'libspectre')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('5c38f4e81e874cc8e89481b080f77c47c72bfd6fe2526f4fc2ef87c17f96cad0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var 

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

2013-03-13 Thread Sergej Pupykin
Date: Wednesday, March 13, 2013 @ 16:08:02
  Author: spupykin
Revision: 86224

upgpkg: gpsdrive 2.11-16

upd

Modified:
  gpsdrive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 14:28:38 UTC (rev 86223)
+++ PKGBUILD2013-03-13 15:08:02 UTC (rev 86224)
@@ -6,7 +6,7 @@
 pkgname=gpsdrive
 pkgver=2.11
 _pkgver=20120928
-pkgrel=15
+pkgrel=16
 pkgdesc=A car (bike, ship, plane) navigation system
 arch=(i686 x86_64)
 url=http://www.gpsdrive.de/;



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

2013-03-13 Thread Sergej Pupykin
Date: Wednesday, March 13, 2013 @ 16:08:23
  Author: spupykin
Revision: 86225

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

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

---+
 community-i686/PKGBUILD   |  130 ++--
 community-i686/gpsdrive.install   |8 +-
 community-x86_64/PKGBUILD |  130 ++--
 community-x86_64/gpsdrive.install |8 +-
 4 files changed, 138 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 15:08:02 UTC (rev 86224)
+++ community-i686/PKGBUILD 2013-03-13 15:08:23 UTC (rev 86225)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Maintainer: damir da...@archlinux.org
-
-pkgname=gpsdrive
-pkgver=2.11
-_pkgver=20120928
-pkgrel=15
-pkgdesc=A car (bike, ship, plane) navigation system
-arch=(i686 x86_64)
-url=http://www.gpsdrive.de/;
-license=('GPL2')
-depends=('gtk2' 'gpsd' 'libxml2' 'curl' 'python2' 'boost-libs' 'gdal' 'mapnik' 
'postgresql-libs' 'openstreetmap-map-icons-svn'
- 'perl-date-manip' 'perl-timedate' 'perl-dbi' 'perl-file-slurp' 
'perl-www-mechanize' 'perl-libwww' 'perl-uri'
- 'perl-text-query' 'perl-www-curl' 'perl-xml-parser' 'perl-xml-simple' 
'perl-xml-twig' 'perl-xml-writer')
-makedepends=('cmake=2.4.4' 'boost' 'cfitsio')
-install=gpsdrive.install
-#source=(http://www.gpsdrive.de/packages/${pkgname}-${pkgver}.tar.gz;)
-source=(http://arch.p5n.pp.ru/~sergej/dl/2012/${pkgname}-${_pkgver}.tar.gz;)
-md5sums=('bc53792529788b81c291a32d628a4850')
-
-build() {
-  cd $srcdir
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-  done
-
-  rm -rf build
-  mkdir build
-  cd build
-
-  sed -i 's|GdkGC \*kontext_map;|extern GdkGC *kontext_map;|' 
$srcdir/gpsdrive-${_pkgver}/src/gpsdrive.c
-  sed -i '22,1i#include mapnik/graphics.hpp' 
$srcdir/gpsdrive-${_pkgver}/src/mapnik.cpp
-
-  export CFLAGS=-I/usr/include/gdk-pixbuf-2.0/
-  export CPPFLAGS=-I/usr/include/gdk-pixbuf-2.0/
-  export CXXFLAGS=-I/usr/include/gdk-pixbuf-2.0/
-  export LDFLAGS=`pkg-config --libs gtk+-2.0 gmodule-2.0` -lboost_system 
-lboost_thread
-
-  # see DefineOptions.cmake for a list of common options and defaults
-  # cmake -L for a more in-depth listing
-  cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_SCRIPTS=ON \
--DWITH_MAPNIK=ON \
--DWITH_POSTGIS=ON \
--DWITH_GDAL=ON \
--DWITH_BASEMAPS=ON \
--DWITH_FRIENDSD=ON \
--DWITH_KISMET=ON \
--DWITH_NAVIGATION=ON \
--DWITH_SPEECH=OFF \
--DWITH_DBUS=OFF \
--DLIBGPS_OLD=OFF \
-$srcdir/gpsdrive-${_pkgver}
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: gpsdrive/repos/community-i686/PKGBUILD (from rev 86224, 
gpsdrive/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 15:08:23 UTC (rev 86225)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Maintainer: damir da...@archlinux.org
+
+pkgname=gpsdrive
+pkgver=2.11
+_pkgver=20120928
+pkgrel=16
+pkgdesc=A car (bike, ship, plane) navigation system
+arch=(i686 x86_64)
+url=http://www.gpsdrive.de/;
+license=('GPL2')
+depends=('gtk2' 'gpsd' 'libxml2' 'curl' 'python2' 'boost-libs' 'gdal' 'mapnik' 
'postgresql-libs' 'openstreetmap-map-icons-svn'
+ 'perl-date-manip' 'perl-timedate' 'perl-dbi' 'perl-file-slurp' 
'perl-www-mechanize' 'perl-libwww' 'perl-uri'
+ 'perl-text-query' 'perl-www-curl' 'perl-xml-parser' 'perl-xml-simple' 
'perl-xml-twig' 'perl-xml-writer')
+makedepends=('cmake=2.4.4' 'boost' 'cfitsio')
+install=gpsdrive.install
+#source=(http://www.gpsdrive.de/packages/${pkgname}-${pkgver}.tar.gz;)
+source=(http://arch.p5n.pp.ru/~sergej/dl/2012/${pkgname}-${_pkgver}.tar.gz;)
+md5sums=('bc53792529788b81c291a32d628a4850')
+
+build() {
+  cd $srcdir
+
+  # python2 fix
+  for file in $(find . -name '*.py' -print); do
+sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' 

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

2013-03-13 Thread Evangelos Foutras
Date: Wednesday, March 13, 2013 @ 16:12:13
  Author: foutrelis
Revision: 179968

upgpkg: slim 1.3.5-2

Depend on xorg-xauth (FS#34112).

Modified:
  slim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 14:50:17 UTC (rev 179967)
+++ PKGBUILD2013-03-13 15:12:13 UTC (rev 179968)
@@ -7,12 +7,12 @@
 
 pkgname=slim
 pkgver=1.3.5
-pkgrel=1
+pkgrel=2
 pkgdesc=Desktop-independent graphical login manager for X11
 arch=('i686' 'x86_64')
 url=http://slim.berlios.de/;
 license=('GPL2')
-depends=('pam' 'libxmu' 'libpng' 'libjpeg' 'libxft')
+depends=('pam' 'libxmu' 'libpng' 'libjpeg' 'libxft' 'xorg-xauth')
 makedepends=('cmake' 'freeglut')
 backup=('etc/slim.conf' 'etc/logrotate.d/slim' 'etc/pam.d/slim')
 source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz



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

2013-03-13 Thread Evangelos Foutras
Date: Wednesday, March 13, 2013 @ 16:12:30
  Author: foutrelis
Revision: 179969

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

Added:
  slim/repos/extra-i686/PKGBUILD
(from rev 179968, slim/trunk/PKGBUILD)
  slim/repos/extra-i686/slim.logrotate
(from rev 179968, slim/trunk/slim.logrotate)
  slim/repos/extra-i686/slim.pam
(from rev 179968, slim/trunk/slim.pam)
  slim/repos/extra-x86_64/PKGBUILD
(from rev 179968, slim/trunk/PKGBUILD)
  slim/repos/extra-x86_64/slim.logrotate
(from rev 179968, slim/trunk/slim.logrotate)
  slim/repos/extra-x86_64/slim.pam
(from rev 179968, slim/trunk/slim.pam)
Deleted:
  slim/repos/extra-i686/PKGBUILD
  slim/repos/extra-i686/slim.logrotate
  slim/repos/extra-i686/slim.pam
  slim/repos/extra-x86_64/PKGBUILD
  slim/repos/extra-x86_64/slim.logrotate
  slim/repos/extra-x86_64/slim.pam

-+
 extra-i686/PKGBUILD |  108 +-
 extra-i686/slim.logrotate   |   18 +++
 extra-i686/slim.pam |   14 ++---
 extra-x86_64/PKGBUILD   |  108 +-
 extra-x86_64/slim.logrotate |   18 +++
 extra-x86_64/slim.pam   |   14 ++---
 6 files changed, 140 insertions(+), 140 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 15:12:13 UTC (rev 179968)
+++ extra-i686/PKGBUILD 2013-03-13 15:12:30 UTC (rev 179969)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Gaetan Bisson bis...@archlinux.org
-# Contributor: Thayer Williams tha...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Hugo Ideler hugoide...@dse.nl
-
-pkgname=slim
-pkgver=1.3.5
-pkgrel=1
-pkgdesc=Desktop-independent graphical login manager for X11
-arch=('i686' 'x86_64')
-url=http://slim.berlios.de/;
-license=('GPL2')
-depends=('pam' 'libxmu' 'libpng' 'libjpeg' 'libxft')
-makedepends=('cmake' 'freeglut')
-backup=('etc/slim.conf' 'etc/logrotate.d/slim' 'etc/pam.d/slim')
-source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz
-slim.pam
-slim.logrotate)
-sha256sums=('818d209f51e2fa8d5b94ef75ce90a7415be48b45e796d66f8083a9532b655629'
-'b9a77a614c451287b574c33d41e28b5b149c6d2464bdb3a5274799842bca51a4'
-'5bf44748b5003f2332d8b268060c400120b9100d033fa9d35468670d827f6def')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Fix installation path of slim.service
-  sed -i 's|usr/lib/systemd/system|/|' CMakeLists.txt
-
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DUSE_PAM=yes \
--DUSE_CONSOLEKIT=no
-   make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 $srcdir/slim.pam $pkgdir/etc/pam.d/slim
-  install -Dm644 $srcdir/slim.logrotate $pkgdir/etc/logrotate.d/slim
-
-  # Provide sane defaults
-  sed -i -e 's|#xserver_arguments.*|xserver_arguments -nolisten tcp vt07|' \
- -e 's|/var/run/slim.lock|/var/lock/slim.lock|' \
-$pkgdir/etc/slim.conf
-}
-
-# vim:set ts=2 sw=2 et:

Copied: slim/repos/extra-i686/PKGBUILD (from rev 179968, slim/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 15:12:30 UTC (rev 179969)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: Thayer Williams tha...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: Hugo Ideler hugoide...@dse.nl
+
+pkgname=slim
+pkgver=1.3.5
+pkgrel=2
+pkgdesc=Desktop-independent graphical login manager for X11
+arch=('i686' 'x86_64')
+url=http://slim.berlios.de/;
+license=('GPL2')
+depends=('pam' 'libxmu' 'libpng' 'libjpeg' 'libxft' 'xorg-xauth')
+makedepends=('cmake' 'freeglut')
+backup=('etc/slim.conf' 'etc/logrotate.d/slim' 'etc/pam.d/slim')
+source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz
+slim.pam
+slim.logrotate)
+sha256sums=('818d209f51e2fa8d5b94ef75ce90a7415be48b45e796d66f8083a9532b655629'
+'b9a77a614c451287b574c33d41e28b5b149c6d2464bdb3a5274799842bca51a4'
+'5bf44748b5003f2332d8b268060c400120b9100d033fa9d35468670d827f6def')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Fix installation path of slim.service
+  sed -i 's|usr/lib/systemd/system|/|' CMakeLists.txt
+
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DUSE_PAM=yes \
+-DUSE_CONSOLEKIT=no
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 $srcdir/slim.pam $pkgdir/etc/pam.d/slim
+  install -Dm644 $srcdir/slim.logrotate $pkgdir/etc/logrotate.d/slim
+
+  # Provide sane defaults
+  

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 17:25:28
  Author: jgc
Revision: 179970

Add patch to fix compilation with automake 1.13
Revert Werror changes done in 1.12.1. These flags leak into configure checks, 
causing locale files to get installed in /usr/lib instead of /usr/share.
Enable introspection, didn't build in 1.12.0, works in 1.12.1.

upgpkg: gnumeric 1.12.1-1

Added:
  gnumeric/trunk/gnumeric-1.12.1-automake-1.13.patch
  gnumeric/trunk/revert-warnings.patch
Modified:
  gnumeric/trunk/PKGBUILD

-+
 PKGBUILD|   18 -
 gnumeric-1.12.1-automake-1.13.patch |  104 ++
 revert-warnings.patch   |   11 +++
 3 files changed, 128 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 15:12:30 UTC (rev 179969)
+++ PKGBUILD2013-03-13 16:25:28 UTC (rev 179970)
@@ -3,30 +3,38 @@
 # Contributor: Kritoke typeoli...@yahoo.com
 
 pkgname=gnumeric
-pkgver=1.12.0
+pkgver=1.12.1
 pkgrel=1
 pkgdesc=A GNOME Spreadsheet Program
 arch=('i686' 'x86_64')
 url=http://www.gnome.org/projects/gnumeric/;
 license=('GPL')
 depends=('goffice' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool' 'psiconv' 'pygobject-devel' 'gnome-doc-utils')
+makedepends=('intltool' 'psiconv' 'pygobject-devel' 'gnome-doc-utils' 
'gobject-introspection')
 optdepends=('python2-gobject: for python plugin support'
 'perl: for perl plugin support'
 'psiconv: for Psion 5 file support'
 'yelp: for viewing the help manual')
 install=gnumeric.install
 options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('037b53d909e5d1454b2afda8c4fb1e7838e260343e36d4e36245f4a5d0e04111')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+gnumeric-1.12.1-automake-1.13.patch
+revert-warnings.patch)
+sha256sums=('0f5a7af3acae7db643eb00e8b4fca6a9e90162259c6a73e4214cfa8c96cc3901'
+'1eb57b931023d961e9d0f3675fe96b5559270fa38c97401cb06fc7aed9c8e275'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../gnumeric-1.12.1-automake-1.13.patch
+  patch -Np0 -i ../revert-warnings.patch
+
   # Remove invalid mime type. (FS#26338)
   sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
 
+  autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-ssindex --disable-schemas-compile
+--enable-ssindex --disable-schemas-compile --enable-introspection 
--enable-compile-warnings=no
   make
 }
 

Added: gnumeric-1.12.1-automake-1.13.patch
===
--- gnumeric-1.12.1-automake-1.13.patch (rev 0)
+++ gnumeric-1.12.1-automake-1.13.patch 2013-03-13 16:25:28 UTC (rev 179970)
@@ -0,0 +1,104 @@
+diff -up gnumeric-1.12.0/test/Makefile.am.automake-1_13 
gnumeric-1.12.0/test/Makefile.am
+--- gnumeric-1.12.0/test/Makefile.am.automake-1_13 2011-05-18 
02:54:24.0 +0200
 gnumeric-1.12.0/test/Makefile.am   2013-01-05 18:25:56.380686587 +0100
+@@ -25,7 +25,99 @@
+ #
+ # 90xx: Misc stuff.
+ 
+-TESTS = $(sort $(wildcard $(srcdir)/t[0-9][0-9][0-9][0-9]-*.pl))
++TESTS = \
++t1000-statfuns.pl \
++t1001-mathfuns.pl \
++t1002-finfuns.pl \
++t1003-engfuns.pl \
++t1004-textfuns.pl \
++t1005-logfuns.pl \
++t1006-datefuns.pl \
++t1007-dbfuns.pl \
++t1008-infofuns.pl \
++t1009-lookfuns.pl \
++t1010-bitwise.pl \
++t1011-yalta2008.pl \
++t1100-chitest.pl \
++t1101-ftest.pl \
++t1102-ttest.pl \
++t1103-sumif.pl \
++t1104-linest.pl \
++t1800-operators.pl \
++t1900-array.pl \
++t1901-regress.pl \
++t1902-array-intersection.pl \
++t2000-names-insdel.pl \
++t2001-func-help.pl \
++t2002-nonascii-numbers.pl \
++t2003-random-generators.pl \
++t2800-style-optimizer.pl \
++t5900-sc.pl \
++t5901-qpro.pl \
++t5902-applix.pl \
++t5903-sylk.pl \
++t5904-mps.pl \
++t6000-statfuns.pl \
++t6001-mathfuns.pl \
++t6002-objs.pl \
++t6003-lookfuns.pl \
++t6004-chart-tests.pl \
++t6004-finfuns.pl \
++t6100-statfuns-ods.pl \
++t6101-mathfuns-ods.pl \
++t6102-objs-ods.pl \
++t6103-lookfuns-ods.pl \
++t6104-finfuns-ods.pl \
++t7000-goal-seek.pl \
++t7100-solver-blend.pl \
++t7101-solver-afiro.pl \
++t7110-solver-Misra1a.pl \
++t7111-solver-Chwirut2.pl \
++t7112-solver-Chwirut1.pl \
++t7113-solver-Lanczos3.pl \
++t7114-solver-Gauss1.pl \
++t7115-solver-Gauss2.pl \
++t7116-solver-DanWood.pl \
++t7117-solver-Misra1b.pl \
++t7120-solver-Kirby2.pl \
++t7121-solver-Hahn1.pl \
++t7122-solver-Nelson.pl \
++t7123-solver-MGH17.pl \
++t7124-solver-Lanczos1.pl \
++t7125-solver-Lanczos2.pl \
++t7126-solver-Gauss3.pl \
++t7127-solver-Misra1c.pl \
++t7128-solver-Misra1d.pl \
++t7129-solver-Roszman1.pl \

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 17:25:37
  Author: jgc
Revision: 179971

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

Added:
  gnumeric/repos/extra-i686/PKGBUILD
(from rev 179970, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-i686/gnumeric-1.12.1-automake-1.13.patch
(from rev 179970, gnumeric/trunk/gnumeric-1.12.1-automake-1.13.patch)
  gnumeric/repos/extra-i686/gnumeric.install
(from rev 179970, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/extra-i686/revert-warnings.patch
(from rev 179970, gnumeric/trunk/revert-warnings.patch)
  gnumeric/repos/extra-x86_64/PKGBUILD
(from rev 179970, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-x86_64/gnumeric-1.12.1-automake-1.13.patch
(from rev 179970, gnumeric/trunk/gnumeric-1.12.1-automake-1.13.patch)
  gnumeric/repos/extra-x86_64/gnumeric.install
(from rev 179970, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/extra-x86_64/revert-warnings.patch
(from rev 179970, gnumeric/trunk/revert-warnings.patch)
Deleted:
  gnumeric/repos/extra-i686/PKGBUILD
  gnumeric/repos/extra-i686/gnumeric.install
  gnumeric/repos/extra-x86_64/PKGBUILD
  gnumeric/repos/extra-x86_64/gnumeric.install

--+
 extra-i686/PKGBUILD  |   80 
 extra-i686/gnumeric-1.12.1-automake-1.13.patch   |  104 +
 extra-i686/gnumeric.install  |   38 +++
 extra-i686/revert-warnings.patch |   11 ++
 extra-x86_64/PKGBUILD|   80 
 extra-x86_64/gnumeric-1.12.1-automake-1.13.patch |  104 +
 extra-x86_64/gnumeric.install|   38 +++
 extra-x86_64/revert-warnings.patch   |   11 ++
 8 files changed, 356 insertions(+), 110 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 16:25:28 UTC (rev 179970)
+++ extra-i686/PKGBUILD 2013-03-13 16:25:37 UTC (rev 179971)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger e...@archlinux.org
-# Contributor: Kritoke typeoli...@yahoo.com
-
-pkgname=gnumeric
-pkgver=1.12.0
-pkgrel=1
-pkgdesc=A GNOME Spreadsheet Program
-arch=('i686' 'x86_64')
-url=http://www.gnome.org/projects/gnumeric/;
-license=('GPL')
-depends=('goffice' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool' 'psiconv' 'pygobject-devel' 'gnome-doc-utils')
-optdepends=('python2-gobject: for python plugin support'
-'perl: for perl plugin support'
-'psiconv: for Psion 5 file support'
-'yelp: for viewing the help manual')
-install=gnumeric.install
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('037b53d909e5d1454b2afda8c4fb1e7838e260343e36d4e36245f4a5d0e04111')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # Remove invalid mime type. (FS#26338)
-  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-ssindex --disable-schemas-compile
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gnumeric/repos/extra-i686/PKGBUILD (from rev 179970, 
gnumeric/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 16:25:37 UTC (rev 179971)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Belanger e...@archlinux.org
+# Contributor: Kritoke typeoli...@yahoo.com
+
+pkgname=gnumeric
+pkgver=1.12.1
+pkgrel=1
+pkgdesc=A GNOME Spreadsheet Program
+arch=('i686' 'x86_64')
+url=http://www.gnome.org/projects/gnumeric/;
+license=('GPL')
+depends=('goffice' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('intltool' 'psiconv' 'pygobject-devel' 'gnome-doc-utils' 
'gobject-introspection')
+optdepends=('python2-gobject: for python plugin support'
+'perl: for perl plugin support'
+'psiconv: for Psion 5 file support'
+'yelp: for viewing the help manual')
+install=gnumeric.install
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+gnumeric-1.12.1-automake-1.13.patch
+revert-warnings.patch)
+sha256sums=('0f5a7af3acae7db643eb00e8b4fca6a9e90162259c6a73e4214cfa8c96cc3901'
+'1eb57b931023d961e9d0f3675fe96b5559270fa38c97401cb06fc7aed9c8e275'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../gnumeric-1.12.1-automake-1.13.patch
+  patch -Np0 -i ../revert-warnings.patch
+
+  # Remove invalid mime type. (FS#26338)
+  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
+
+  autoreconf -fi
+  ./configure 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 17:36:49
  Author: jgc
Revision: 179972

remove unsupported compile options

Modified:
  gnumeric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 16:25:37 UTC (rev 179971)
+++ PKGBUILD2013-03-13 16:36:49 UTC (rev 179972)
@@ -34,7 +34,7 @@
 
   autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-ssindex --disable-schemas-compile --enable-introspection 
--enable-compile-warnings=no
+--disable-schemas-compile --enable-introspection
   make
 }
 



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

2013-03-13 Thread Ionuț Mircea Bîru
Date: Wednesday, March 13, 2013 @ 18:02:11
  Author: ioni
Revision: 179973

update to 11.2.202.275

Modified:
  flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 16:36:49 UTC (rev 179972)
+++ PKGBUILD2013-03-13 17:02:11 UTC (rev 179973)
@@ -4,7 +4,7 @@
 
 pkgname=flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.273
+pkgver=11.2.202.275
 pkgrel=1
 pkgdesc='Adobe Flash Player'
 url='http://get.adobe.com/flashplayer'
@@ -21,14 +21,14 @@
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('38a8cb6c9d3ec0913de6c145a52e8a66'
+md5sums=('aecd83b5de3e021a453d7ddcfd442f0b'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 elif [ $CARCH = x86_64 ]; then
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('b4640c55eb2e09cfd8a4cd46ebd81fdd'
+md5sums=('d0a35620a3e54f6fa9e4c64b7c3d095f'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 fi



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

2013-03-13 Thread Ionuț Mircea Bîru
Date: Wednesday, March 13, 2013 @ 18:03:00
  Author: ioni
Revision: 179974

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

Added:
  flashplugin/repos/extra-i686/PKGBUILD
(from rev 179973, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-i686/flashplugin.install
(from rev 179973, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-i686/mms.cfg
(from rev 179973, flashplugin/trunk/mms.cfg)
  flashplugin/repos/extra-x86_64/PKGBUILD
(from rev 179973, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-x86_64/flashplugin.install
(from rev 179973, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-x86_64/mms.cfg
(from rev 179973, flashplugin/trunk/mms.cfg)
Deleted:
  flashplugin/repos/extra-i686/PKGBUILD
  flashplugin/repos/extra-i686/flashplugin.install
  flashplugin/repos/extra-i686/mms.cfg
  flashplugin/repos/extra-x86_64/PKGBUILD
  flashplugin/repos/extra-x86_64/flashplugin.install
  flashplugin/repos/extra-x86_64/mms.cfg

--+
 extra-i686/PKGBUILD  |  104 ++---
 extra-i686/flashplugin.install   |   28 -
 extra-i686/mms.cfg   |4 -
 extra-x86_64/PKGBUILD|  104 ++---
 extra-x86_64/flashplugin.install |   28 -
 extra-x86_64/mms.cfg |4 -
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 17:02:11 UTC (rev 179973)
+++ extra-i686/PKGBUILD 2013-03-13 17:03:00 UTC (rev 179974)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.273
-pkgrel=1
-pkgdesc='Adobe Flash Player'
-url='http://get.adobe.com/flashplayer'
-arch=('i686' 'x86_64')
-depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
-optdepends=('libvdpau: GPU acceleration on Nvidia card')
-provides=('flashplayer')
-license=('custom')
-options=(!strip)
-install=flashplugin.install
-backup=(etc/adobe/mms.cfg)
-
-if [ $CARCH = i686 ]; then
-
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
-http://www.adobe.com/products/eulas/pdfs/${_licensefile};
-mms.cfg)
-md5sums=('38a8cb6c9d3ec0913de6c145a52e8a66'
- '94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-elif [ $CARCH = x86_64 ]; then
-
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
-http://www.adobe.com/products/eulas/pdfs/${_licensefile};
-mms.cfg)
-md5sums=('b4640c55eb2e09cfd8a4cd46ebd81fdd'
- '94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-fi
-
-package () {
-install -Dm755 libflashplayer.so 
$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so
-if [ $CARCH = x86_64 ]; then
-install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so 
$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so
-else
-install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so 
$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so
-fi
-install -Dm755 usr/bin/flash-player-properties 
$pkgdir/usr/bin/flash-player-properties
-for i in 16x16 22x22 24x24 32x32 48x48; do
-install -Dm644 
usr/share/icons/hicolor/$i/apps/flash-player-properties.png \
-
$pkgdir/usr/share/icons/hicolor/$i/apps/flash-player-properties.png
-done
-install -Dm644 usr/share/applications/flash-player-properties.desktop 
$pkgdir/usr/share/applications/flash-player-properties.desktop
-install -Dm644 usr/share/kde4/services/kcm_adobe_flash_player.desktop 
$pkgdir/usr/share/kde4/services/kcm_adobe_flash_player.desktop
-install -Dm644 ${_licensefile} 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.pdf
-install -Dm644 $srcdir/mms.cfg $pkgdir/etc/adobe/mms.cfg
-}

Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 179973, 
flashplugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 17:03:00 UTC (rev 179974)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.275
+pkgrel=1
+pkgdesc='Adobe Flash Player'
+url='http://get.adobe.com/flashplayer'
+arch=('i686' 'x86_64')
+depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
+optdepends=('libvdpau: GPU acceleration on Nvidia card')
+provides=('flashplayer')
+license=('custom')

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

2013-03-13 Thread Giovanni Scafora
Date: Wednesday, March 13, 2013 @ 19:06:31
  Author: giovanni
Revision: 179975

upgpkg: xchm 1.22-1

upstream release

Modified:
  xchm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 17:03:00 UTC (rev 179974)
+++ PKGBUILD2013-03-13 18:06:31 UTC (rev 179975)
@@ -2,7 +2,7 @@
 # Maintainer: Giovanni Scafora giova...@archlinux.org
 
 pkgname=xchm
-pkgver=1.21
+pkgver=1.22
 pkgrel=1
 pkgdesc=A cross-platform GUI front-end to chmlib
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 
source=(http://downloads.sourceforge.net/sourceforge/xchm/${pkgname}-${pkgver}.tar.gz;
 'xchm.desktop'
 'xchm.xml')
-md5sums=('9bfe439ce94554ebae95d84f7a1db8e7'
+md5sums=('3856ec4e6e54a80d0811707975fc8995'
  '31fb9692b9ee9f2a205f58b9ff4bc4fe'
  '4102b0a393f5c60236143cc034664dd0')
 



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

2013-03-13 Thread Giovanni Scafora
Date: Wednesday, March 13, 2013 @ 19:06:41
  Author: giovanni
Revision: 179976

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

Added:
  xchm/repos/extra-i686/PKGBUILD
(from rev 179975, xchm/trunk/PKGBUILD)
  xchm/repos/extra-i686/xchm.desktop
(from rev 179975, xchm/trunk/xchm.desktop)
  xchm/repos/extra-i686/xchm.install
(from rev 179975, xchm/trunk/xchm.install)
  xchm/repos/extra-i686/xchm.xml
(from rev 179975, xchm/trunk/xchm.xml)
  xchm/repos/extra-x86_64/PKGBUILD
(from rev 179975, xchm/trunk/PKGBUILD)
  xchm/repos/extra-x86_64/xchm.desktop
(from rev 179975, xchm/trunk/xchm.desktop)
  xchm/repos/extra-x86_64/xchm.install
(from rev 179975, xchm/trunk/xchm.install)
  xchm/repos/extra-x86_64/xchm.xml
(from rev 179975, xchm/trunk/xchm.xml)
Deleted:
  xchm/repos/extra-i686/PKGBUILD
  xchm/repos/extra-i686/xchm.desktop
  xchm/repos/extra-i686/xchm.install
  xchm/repos/extra-i686/xchm.xml
  xchm/repos/extra-x86_64/PKGBUILD
  xchm/repos/extra-x86_64/xchm.desktop
  xchm/repos/extra-x86_64/xchm.install
  xchm/repos/extra-x86_64/xchm.xml

---+
 extra-i686/PKGBUILD   |   68 ++--
 extra-i686/xchm.desktop   |   20 ++--
 extra-i686/xchm.install   |   30 +--
 extra-i686/xchm.xml   |   14 -
 extra-x86_64/PKGBUILD |   68 ++--
 extra-x86_64/xchm.desktop |   20 ++--
 extra-x86_64/xchm.install |   30 +--
 extra-x86_64/xchm.xml |   14 -
 8 files changed, 132 insertions(+), 132 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 18:06:31 UTC (rev 179975)
+++ extra-i686/PKGBUILD 2013-03-13 18:06:41 UTC (rev 179976)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-
-pkgname=xchm
-pkgver=1.21
-pkgrel=1
-pkgdesc=A cross-platform GUI front-end to chmlib
-arch=('i686' 'x86_64')
-url=http://xchm.sourceforge.net/;
-license=('GPL')
-depends=('chmlib' 'wxgtk' 'desktop-file-utils')
-install=xchm.install
-source=(http://downloads.sourceforge.net/sourceforge/xchm/${pkgname}-${pkgver}.tar.gz;
-'xchm.desktop'
-'xchm.xml')
-md5sums=('9bfe439ce94554ebae95d84f7a1db8e7'
- '31fb9692b9ee9f2a205f58b9ff4bc4fe'
- '4102b0a393f5c60236143cc034664dd0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CXXFLAGS=${CXXFLAGS} -fno-strict-aliasing
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -D -m644 ${srcdir}/xchm.desktop 
${pkgdir}/usr/share/applications/xchm.desktop
-  install -D -m644 ${srcdir}/xchm.xml 
${pkgdir}/usr/share/mime/packages/xchm.xml
-}

Copied: xchm/repos/extra-i686/PKGBUILD (from rev 179975, xchm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 18:06:41 UTC (rev 179976)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+
+pkgname=xchm
+pkgver=1.22
+pkgrel=1
+pkgdesc=A cross-platform GUI front-end to chmlib
+arch=('i686' 'x86_64')
+url=http://xchm.sourceforge.net/;
+license=('GPL')
+depends=('chmlib' 'wxgtk' 'desktop-file-utils')
+install=xchm.install
+source=(http://downloads.sourceforge.net/sourceforge/xchm/${pkgname}-${pkgver}.tar.gz;
+'xchm.desktop'
+'xchm.xml')
+md5sums=('3856ec4e6e54a80d0811707975fc8995'
+ '31fb9692b9ee9f2a205f58b9ff4bc4fe'
+ '4102b0a393f5c60236143cc034664dd0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CXXFLAGS=${CXXFLAGS} -fno-strict-aliasing
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/xchm.desktop 
${pkgdir}/usr/share/applications/xchm.desktop
+  install -D -m644 ${srcdir}/xchm.xml 
${pkgdir}/usr/share/mime/packages/xchm.xml
+}

Deleted: extra-i686/xchm.desktop
===
--- extra-i686/xchm.desktop 2013-03-13 18:06:31 UTC (rev 179975)
+++ extra-i686/xchm.desktop 2013-03-13 18:06:41 UTC (rev 179976)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Name=Xchm
-Comment=Views CHM files
-Exec=xchm %f
-Terminal=false
-Type=Application
-Icon=xchm-48
-Categories=Viewer;Utility;
-MimeType=application/x-chm;
-StartupNotify=true

Copied: xchm/repos/extra-i686/xchm.desktop (from rev 179975, 
xchm/trunk/xchm.desktop)
===
--- extra-i686/xchm.desktop (rev 0)
+++ extra-i686/xchm.desktop 2013-03-13 18:06:41 UTC (rev 179976)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=Xchm
+Comment=Views CHM files
+Exec=xchm %f
+Terminal=false
+Type=Application
+Icon=xchm-48
+Categories=Viewer;Utility;

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

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 19:30:11
  Author: alucryd
Revision: 86226

upgpkg: lightdm 1.5.1-5

Modified:
  lightdm/trunk/PKGBUILD
  lightdm/trunk/Xsession
  lightdm/trunk/lightdm-autologin.pam
  lightdm/trunk/lightdm.pam

---+
 PKGBUILD  |   22 ++
 Xsession  |6 +-
 lightdm-autologin.pam |   29 ++---
 lightdm.pam   |   17 ++---
 4 files changed, 31 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 15:08:23 UTC (rev 86225)
+++ PKGBUILD2013-03-13 18:30:11 UTC (rev 86226)
@@ -5,7 +5,7 @@
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
 pkgver=1.5.1
-pkgrel=4
+pkgrel=5
 pkgdesc=A lightweight display manager
 arch=('i686' 'x86_64')
 url=https://launchpad.net/lightdm;
@@ -25,13 +25,13 @@
 sha256sums=('645db2d763cc514d6aecb1838f4a9c33c3dcf0c94567a7ef36c6b23d8aa56c86'
 '2e03423cbe88c9fdc3a9684d6d14221aa6e92d105f9d1d53b08747d966c45125'
 'ec10378992907f06a6960c4644aba2f81744fbcaf38f6bdc7c364979be3207e4'
-'db5526d0a76be0d2ed39d19c83a83e1a4774b93e9651aa4f5d1feadcd4fe4c34'
-'6a8b286d1ffa04150b3cc401f64e6ddec778c7b65f5bfc831031b64345d7e6b2'
+'e8c4c5fd3b801a390d201166fd1fb9730e78a5c62928768103b870b6bd980ea0'
+'cd0a9591b61118c6de1b07e1cd9a1b74cd74e9e95288f8b41eba32e26fd22023'
 'a89566307e1c81c24f037d854cbd472d2f94f8a4b759877a01563a332319f7d6'
 '4bb044fc1d0524535e108627197facf95687dc21acde5ad77799d97ad16bb3eb'
 '8c8432294d361475293852f45673bc042eb252dbc58a17445fd10e5e874dc608'
 '4793eaee5915f5c519f569a4cd9158822d4c57c8b6e405895d2eddf82fa00822'
-'fb38b265420e55b2fd96f003ab00ad2a2d2cd1902984c84239c8ca84eb9b66a9')
+'66e12ef7ed34df78f8c17fb211b9e25f33446a2a702c34141f4917d6413ce883')
 
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}
@@ -48,14 +48,12 @@
 
 package_lightdm() {
 depends=('libgcrypt' 'libxklavier' 'pam')
-optdepends=('xorg-server-xephyr: run lightdm in test mode'
-'accountsservice: limit account shown by the greeter')
-backup=(etc/apparmor.d/lightdm-guest-session
-etc/dbus-1/system.d/org.freedesktop.DisplayManager.conf
-etc/lightdm/keys.conf
-etc/lightdm/lightdm.conf
-etc/lightdm/users.conf
-etc/pam.d/lightdm)
+optdepends=('xorg-server-xephyr: LightDM test mode'
+'accountsservice: limit visible accounts')
+backup=('etc/apparmor.d/lightdm-guest-session'
+'etc/lightdm/keys.conf'
+'etc/lightdm/lightdm.conf'
+'etc/lightdm/users.conf')
 install=${pkgbase}.install
 
   cd ${srcdir}/${pkgbase}-${pkgver}

Modified: Xsession
===
--- Xsession2013-03-13 15:08:23 UTC (rev 86225)
+++ Xsession2013-03-13 18:30:11 UTC (rev 86226)
@@ -27,7 +27,7 @@
 setxkbmap `cat $file`
 XKB_IN_USE=yes
 fi
-done
+done
 
 # Load xmodmap if not using XKB
 if [ -z $XKB_IN_USE ]; then
@@ -63,6 +63,10 @@
 fi
 done
 fi
+if [ -x $HOME/.Xsession -a -f $HOME/.Xsession ]; then
+echo Loading user X session script
+. $HOME/.Xsession
+fi
 
 echo X session wrapper complete, running session $@
 

Modified: lightdm-autologin.pam
===
--- lightdm-autologin.pam   2013-03-13 15:08:23 UTC (rev 86225)
+++ lightdm-autologin.pam   2013-03-13 18:30:11 UTC (rev 86226)
@@ -1,20 +1,11 @@
 #%PAM-1.0
-authrequisite   pam_nologin.so
-authrequiredpam_env.so
-
-authrequisite   pam_permit.so
-
-authsufficient  pam_succeed_if.so uid = 1000 quiet
-authrequiredpam_deny.so
-
-account requiredpam_access.so
-account requiredpam_time.so
-account requiredpam_unix.so
-
-passwordrequiredpam_deny.so
-
-session requiredpam_loginuid.so
--sessionoptionalpam_systemd.so
-session optionalpam_keyinit.so revoke
-session requiredpam_limits.so
-session requiredpam_unix.so
+authrequiredpam_env.so$
+authrequiredpam_tally.so file=/var/log/faillog onerr=succeed$
+authrequiredpam_shells.so$
+authrequiredpam_nologin.so$
+authrequiredpam_permit.so$
+-auth   optionalpam_gnome_keyring.so$
+account include system-local-login$
+passwordinclude system-local-login$
+session include system-local-login$
+-sessionoptionalpam_gnome_keyring.so auto_start

Modified: lightdm.pam
===
--- lightdm.pam 2013-03-13 15:08:23 UTC (rev 86225)
+++ lightdm.pam 2013-03-13 18:30:11 

[arch-commits] Commit in lightdm/repos (44 files)

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 19:31:03
  Author: alucryd
Revision: 86227

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

Added:
  lightdm/repos/community-i686/PKGBUILD
(from rev 86226, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-i686/Xsession
(from rev 86226, lightdm/trunk/Xsession)
  lightdm/repos/community-i686/lightdm-1.5.1-systemd_login1_power.patch
(from rev 86226, lightdm/trunk/lightdm-1.5.1-systemd_login1_power.patch)
  lightdm/repos/community-i686/lightdm-autologin.pam
(from rev 86226, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-i686/lightdm-default-config.patch
(from rev 86226, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-i686/lightdm-lock-screen-before-switch.patch
(from rev 86226, lightdm/trunk/lightdm-lock-screen-before-switch.patch)
  lightdm/repos/community-i686/lightdm.install
(from rev 86226, lightdm/trunk/lightdm.install)
  lightdm/repos/community-i686/lightdm.pam
(from rev 86226, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-i686/lightdm.rules
(from rev 86226, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-i686/lightdm.service
(from rev 86226, lightdm/trunk/lightdm.service)
  lightdm/repos/community-i686/lightdm.tmpfiles
(from rev 86226, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-x86_64/PKGBUILD
(from rev 86226, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-x86_64/Xsession
(from rev 86226, lightdm/trunk/Xsession)
  lightdm/repos/community-x86_64/lightdm-1.5.1-systemd_login1_power.patch
(from rev 86226, lightdm/trunk/lightdm-1.5.1-systemd_login1_power.patch)
  lightdm/repos/community-x86_64/lightdm-autologin.pam
(from rev 86226, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-x86_64/lightdm-default-config.patch
(from rev 86226, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-x86_64/lightdm-lock-screen-before-switch.patch
(from rev 86226, lightdm/trunk/lightdm-lock-screen-before-switch.patch)
  lightdm/repos/community-x86_64/lightdm.install
(from rev 86226, lightdm/trunk/lightdm.install)
  lightdm/repos/community-x86_64/lightdm.pam
(from rev 86226, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-x86_64/lightdm.rules
(from rev 86226, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-x86_64/lightdm.service
(from rev 86226, lightdm/trunk/lightdm.service)
  lightdm/repos/community-x86_64/lightdm.tmpfiles
(from rev 86226, lightdm/trunk/lightdm.tmpfiles)
Deleted:
  lightdm/repos/community-i686/PKGBUILD
  lightdm/repos/community-i686/Xsession
  lightdm/repos/community-i686/lightdm-1.5.1-systemd_login1_power.patch
  lightdm/repos/community-i686/lightdm-autologin.pam
  lightdm/repos/community-i686/lightdm-default-config.patch
  lightdm/repos/community-i686/lightdm-lock-screen-before-switch.patch
  lightdm/repos/community-i686/lightdm.install
  lightdm/repos/community-i686/lightdm.pam
  lightdm/repos/community-i686/lightdm.rules
  lightdm/repos/community-i686/lightdm.service
  lightdm/repos/community-i686/lightdm.tmpfiles
  lightdm/repos/community-x86_64/PKGBUILD
  lightdm/repos/community-x86_64/Xsession
  lightdm/repos/community-x86_64/lightdm-1.5.1-systemd_login1_power.patch
  lightdm/repos/community-x86_64/lightdm-autologin.pam
  lightdm/repos/community-x86_64/lightdm-default-config.patch
  lightdm/repos/community-x86_64/lightdm-lock-screen-before-switch.patch
  lightdm/repos/community-x86_64/lightdm.install
  lightdm/repos/community-x86_64/lightdm.pam
  lightdm/repos/community-x86_64/lightdm.rules
  lightdm/repos/community-x86_64/lightdm.service
  lightdm/repos/community-x86_64/lightdm.tmpfiles

---+
 community-i686/PKGBUILD   |  224 +++---
 community-i686/Xsession   |  142 ++--
 community-i686/lightdm-1.5.1-systemd_login1_power.patch   |  422 ++--
 community-i686/lightdm-autologin.pam  |   31 
 community-i686/lightdm-default-config.patch   |   70 -
 community-i686/lightdm-lock-screen-before-switch.patch|  110 +--
 community-i686/lightdm.install|   30 
 community-i686/lightdm.pam|   19 
 community-i686/lightdm.rules  |   30 
 community-i686/lightdm.service|   28 
 community-i686/lightdm.tmpfiles   |4 
 community-x86_64/PKGBUILD |  224 +++---
 community-x86_64/Xsession |  142 ++--
 community-x86_64/lightdm-1.5.1-systemd_login1_power.patch |  422 ++--
 community-x86_64/lightdm-autologin.pam|   31 
 community-x86_64/lightdm-default-config.patch |   70 -
 community-x86_64/lightdm-lock-screen-before-switch.patch  |  110 +--
 community-x86_64/lightdm.install

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

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 19:50:57
  Author: alucryd
Revision: 86228

upgpkg: lightdm 1.5.1-6

Added:
  lightdm/trunk/xsession
Modified:
  lightdm/trunk/PKGBUILD
  lightdm/trunk/lightdm-default-config.patch
Deleted:
  lightdm/trunk/Xsession

--+
 PKGBUILD |   10 ++---
 Xsession |   73 -
 lightdm-default-config.patch |2 -
 xsession |   73 +
 4 files changed, 79 insertions(+), 79 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 18:31:03 UTC (rev 86227)
+++ PKGBUILD2013-03-13 18:50:57 UTC (rev 86228)
@@ -5,7 +5,7 @@
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
 pkgver=1.5.1
-pkgrel=5
+pkgrel=6
 pkgdesc=A lightweight display manager
 arch=('i686' 'x86_64')
 url=https://launchpad.net/lightdm;
@@ -21,17 +21,17 @@
 'lightdm-default-config.patch'
 'lightdm-1.5.1-systemd_login1_power.patch'
 'lightdm-lock-screen-before-switch.patch'
-'Xsession')
+'xsession')
 sha256sums=('645db2d763cc514d6aecb1838f4a9c33c3dcf0c94567a7ef36c6b23d8aa56c86'
 '2e03423cbe88c9fdc3a9684d6d14221aa6e92d105f9d1d53b08747d966c45125'
 'ec10378992907f06a6960c4644aba2f81744fbcaf38f6bdc7c364979be3207e4'
 'e8c4c5fd3b801a390d201166fd1fb9730e78a5c62928768103b870b6bd980ea0'
 'cd0a9591b61118c6de1b07e1cd9a1b74cd74e9e95288f8b41eba32e26fd22023'
 'a89566307e1c81c24f037d854cbd472d2f94f8a4b759877a01563a332319f7d6'
-'4bb044fc1d0524535e108627197facf95687dc21acde5ad77799d97ad16bb3eb'
+'51ec7eb1c50c0ba0b96b846662707533ebc1d6558cea75cb7424afddf0d064f0'
 '8c8432294d361475293852f45673bc042eb252dbc58a17445fd10e5e874dc608'
 '4793eaee5915f5c519f569a4cd9158822d4c57c8b6e405895d2eddf82fa00822'
-'66e12ef7ed34df78f8c17fb211b9e25f33446a2a702c34141f4917d6413ce883')
+'7fb85a1b54406032a922e8fd6f45d869fcfe5681df630e74e8e50c040b786ee4')
 
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}
@@ -61,7 +61,7 @@
 # Install
   make DESTDIR=${pkgdir} install
   make DESTDIR=${pkgdir} -C liblightdm-qt uninstall
-  install -m 755 ../Xsession ${pkgdir}/etc/lightdm/Xsession
+  install -m 755 ../xsession ${pkgdir}/etc/lightdm/xsession
   rm -rf ${pkgdir}/etc/init
 
 # PAM

Deleted: Xsession
===
--- Xsession2013-03-13 18:31:03 UTC (rev 86227)
+++ Xsession2013-03-13 18:50:57 UTC (rev 86228)
@@ -1,73 +0,0 @@
-#!/bin/sh
-#
-# LightDM wrapper to run around X sessions.
-
-echo Running X session wrapper
-
-# Load profile
-for file in /etc/profile $HOME/.profile /etc/xprofile $HOME/.xprofile; 
do
-if [ -f $file ]; then
-echo Loading profile from $file;
-. $file
-fi
-done
-
-# Load resources
-for file in /etc/X11/Xresources $HOME/.Xresources; do
-if [ -f $file ]; then
-echo Loading resource: $file
-xrdb -nocpp -merge $file
-fi
-done
-
-# Load keymaps
-for file in /etc/X11/Xkbmap $HOME/.Xkbmap; do
-if [ -f $file ]; then
-echo Loading keymap: $file
-setxkbmap `cat $file`
-XKB_IN_USE=yes
-fi
-done
-
-# Load xmodmap if not using XKB
-if [ -z $XKB_IN_USE ]; then
-for file in /etc/X11/Xmodmap $HOME/.Xmodmap; do
-if [ -f $file ]; then
-   echo Loading modmap: $file
-   xmodmap $file
-fi
-done
-fi
-
-unset XKB_IN_USE
-
-# Run all system xinitrc shell scripts.
-xinitdir=/etc/X11/xinit/xinitrc.d
-if [ -d $xinitdir ]; then
-for script in $xinitdir/*; do
-echo Loading xinit script $script
-if [ -x $script -a ! -d $script ]; then
-. $script
-fi
-done
-fi
-
-# Load Xsession scripts
-xsessionddir=/etc/X11/Xsession.d
-if [ -d $xsessionddir ]; then
-for i in `ls $xsessionddir`; do
-script=$xsessionddir/$i
-echo Loading X session script $script
-if [ -r $script  -a -f $script ]  expr $i : 
'^[[:alnum:]_-]\+$'  /dev/null; then
-. $script
-fi
-done
-fi
-if [ -x $HOME/.Xsession -a -f $HOME/.Xsession ]; then
-echo Loading user X session script
-. $HOME/.Xsession
-fi
-
-echo X session wrapper complete, running session $@
-
-exec $@

Modified: lightdm-default-config.patch
===
--- lightdm-default-config.patch2013-03-13 18:31:03 UTC (rev 86227)
+++ lightdm-default-config.patch2013-03-13 18:50:57 UTC (rev 86228)
@@ -15,7 +15,7 @@
  #allow-guest=true
  #guest-session=UNIMPLEMENTED
 -#session-wrapper=lightdm-session
-+session-wrapper=/etc/lightdm/Xsession
++session-wrapper=/etc/lightdm/xsession
  #display-setup-script=
  #greeter-setup-script=
  #session-setup-script=

Added: xsession

[arch-commits] Commit in lightdm/repos (44 files)

2013-03-13 Thread Maxime Gauduin
Date: Wednesday, March 13, 2013 @ 19:51:51
  Author: alucryd
Revision: 86229

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

Added:
  lightdm/repos/community-i686/PKGBUILD
(from rev 86228, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-i686/lightdm-1.5.1-systemd_login1_power.patch
(from rev 86228, lightdm/trunk/lightdm-1.5.1-systemd_login1_power.patch)
  lightdm/repos/community-i686/lightdm-autologin.pam
(from rev 86228, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-i686/lightdm-default-config.patch
(from rev 86228, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-i686/lightdm-lock-screen-before-switch.patch
(from rev 86228, lightdm/trunk/lightdm-lock-screen-before-switch.patch)
  lightdm/repos/community-i686/lightdm.install
(from rev 86228, lightdm/trunk/lightdm.install)
  lightdm/repos/community-i686/lightdm.pam
(from rev 86228, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-i686/lightdm.rules
(from rev 86228, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-i686/lightdm.service
(from rev 86228, lightdm/trunk/lightdm.service)
  lightdm/repos/community-i686/lightdm.tmpfiles
(from rev 86228, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-i686/xsession
(from rev 86228, lightdm/trunk/xsession)
  lightdm/repos/community-x86_64/PKGBUILD
(from rev 86228, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-x86_64/lightdm-1.5.1-systemd_login1_power.patch
(from rev 86228, lightdm/trunk/lightdm-1.5.1-systemd_login1_power.patch)
  lightdm/repos/community-x86_64/lightdm-autologin.pam
(from rev 86228, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-x86_64/lightdm-default-config.patch
(from rev 86228, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-x86_64/lightdm-lock-screen-before-switch.patch
(from rev 86228, lightdm/trunk/lightdm-lock-screen-before-switch.patch)
  lightdm/repos/community-x86_64/lightdm.install
(from rev 86228, lightdm/trunk/lightdm.install)
  lightdm/repos/community-x86_64/lightdm.pam
(from rev 86228, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-x86_64/lightdm.rules
(from rev 86228, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-x86_64/lightdm.service
(from rev 86228, lightdm/trunk/lightdm.service)
  lightdm/repos/community-x86_64/lightdm.tmpfiles
(from rev 86228, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-x86_64/xsession
(from rev 86228, lightdm/trunk/xsession)
Deleted:
  lightdm/repos/community-i686/PKGBUILD
  lightdm/repos/community-i686/Xsession
  lightdm/repos/community-i686/lightdm-1.5.1-systemd_login1_power.patch
  lightdm/repos/community-i686/lightdm-autologin.pam
  lightdm/repos/community-i686/lightdm-default-config.patch
  lightdm/repos/community-i686/lightdm-lock-screen-before-switch.patch
  lightdm/repos/community-i686/lightdm.install
  lightdm/repos/community-i686/lightdm.pam
  lightdm/repos/community-i686/lightdm.rules
  lightdm/repos/community-i686/lightdm.service
  lightdm/repos/community-i686/lightdm.tmpfiles
  lightdm/repos/community-x86_64/PKGBUILD
  lightdm/repos/community-x86_64/Xsession
  lightdm/repos/community-x86_64/lightdm-1.5.1-systemd_login1_power.patch
  lightdm/repos/community-x86_64/lightdm-autologin.pam
  lightdm/repos/community-x86_64/lightdm-default-config.patch
  lightdm/repos/community-x86_64/lightdm-lock-screen-before-switch.patch
  lightdm/repos/community-x86_64/lightdm.install
  lightdm/repos/community-x86_64/lightdm.pam
  lightdm/repos/community-x86_64/lightdm.rules
  lightdm/repos/community-x86_64/lightdm.service
  lightdm/repos/community-x86_64/lightdm.tmpfiles

---+
 community-i686/PKGBUILD   |  222 +++---
 community-i686/Xsession   |   73 --
 community-i686/lightdm-1.5.1-systemd_login1_power.patch   |  422 ++--
 community-i686/lightdm-autologin.pam  |   22 
 community-i686/lightdm-default-config.patch   |   70 -
 community-i686/lightdm-lock-screen-before-switch.patch|  110 +--
 community-i686/lightdm.install|   30 
 community-i686/lightdm.pam|   14 
 community-i686/lightdm.rules  |   30 
 community-i686/lightdm.service|   28 
 community-i686/lightdm.tmpfiles   |4 
 community-i686/xsession   |   73 ++
 community-x86_64/PKGBUILD |  222 +++---
 community-x86_64/Xsession |   73 --
 community-x86_64/lightdm-1.5.1-systemd_login1_power.patch |  422 ++--
 community-x86_64/lightdm-autologin.pam|   22 
 community-x86_64/lightdm-default-config.patch |   70 -
 

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

2013-03-13 Thread Daniel Wallace
Date: Wednesday, March 13, 2013 @ 19:59:17
  Author: dwallace
Revision: 86230

upgpkg: lib32-flashplugin 11.2.202.275-1

upgpkg: lib32-flashplugin 11.2.202.275-1

Modified:
  lib32-flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 18:51:51 UTC (rev 86229)
+++ PKGBUILD2013-03-13 18:59:17 UTC (rev 86230)
@@ -3,7 +3,7 @@
 
 pkgname=lib32-flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.273
+pkgver=11.2.202.275
 pkgrel=1
 license=('custom')
 pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
@@ -13,7 +13,7 @@
 #optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
 options=(!strip)
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
-md5sums=('38a8cb6c9d3ec0913de6c145a52e8a66')
+md5sums=('aecd83b5de3e021a453d7ddcfd442f0b')
 
 package() {
   install -Dm644 ${srcdir}/libflashplayer.so 
${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so



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

2013-03-13 Thread Daniel Wallace
Date: Wednesday, March 13, 2013 @ 19:59:41
  Author: dwallace
Revision: 86231

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 18:59:17 UTC (rev 86230)
+++ PKGBUILD2013-03-13 18:59:41 UTC (rev 86231)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-
-pkgname=lib32-flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.273
-pkgrel=1
-license=('custom')
-pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
-url=http://get.adobe.com/flashplayer;
-arch=('x86_64')
-depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
-#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
-options=(!strip)
-source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
-md5sums=('38a8cb6c9d3ec0913de6c145a52e8a66')
-
-package() {
-  install -Dm644 ${srcdir}/libflashplayer.so 
${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so
-  install -d $pkgdir/usr/share/licenses
-  ln -s ${pkgname#*-} $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD (from rev 86230, 
lib32-flashplugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-13 18:59:41 UTC (rev 86231)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+
+pkgname=lib32-flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.275
+pkgrel=1
+license=('custom')
+pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
+url=http://get.adobe.com/flashplayer;
+arch=('x86_64')
+depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
+#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
+options=(!strip)
+source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
+md5sums=('aecd83b5de3e021a453d7ddcfd442f0b')
+
+package() {
+  install -Dm644 ${srcdir}/libflashplayer.so 
${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so
+  install -d $pkgdir/usr/share/licenses
+  ln -s ${pkgname#*-} $pkgdir/usr/share/licenses/$pkgname
+}



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

2013-03-13 Thread Bartłomiej Piotrowski
Date: Wednesday, March 13, 2013 @ 20:39:58
  Author: bpiotrowski
Revision: 86232

upgpkg: nodejs 0.10.0-1

upstream release

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 18:59:41 UTC (rev 86231)
+++ PKGBUILD2013-03-13 19:39:58 UTC (rev 86232)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui tianyi...@gmail.com
 
 pkgname=nodejs
-pkgver=0.8.22
+pkgver=0.10.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 checkdepends=('curl') # curl used for check()
 options=('!emptydirs')
 source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
-sha256sums=('3f61152cf5cd8fc1ab5c6c18101819841b947da79e1e44b51418c0ad2e6db8e8')
+sha256sums=('1624dc37866ebfb5431e3393e6b049cf238cac8ad4d20c6d567263b1259177ab')
 
 build() {
   cd node-v${pkgver}



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

2013-03-13 Thread Bartłomiej Piotrowski
Date: Wednesday, March 13, 2013 @ 20:40:21
  Author: bpiotrowski
Revision: 86233

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

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

---+
 community-i686/PKGBUILD   |  122 ++--
 community-x86_64/PKGBUILD |  122 ++--
 2 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 19:39:58 UTC (rev 86232)
+++ community-i686/PKGBUILD 2013-03-13 19:40:21 UTC (rev 86233)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# Contributor: Masutu Subric masutu.arch at googlemail dot com
-# Contributor: TIanyi Cui tianyi...@gmail.com
-
-pkgname=nodejs
-pkgver=0.8.22
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'python2')
-checkdepends=('curl') # curl used for check()
-options=('!emptydirs')
-source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
-sha256sums=('3f61152cf5cd8fc1ab5c6c18101819841b947da79e1e44b51418c0ad2e6db8e8')
-
-build() {
-  cd node-v${pkgver}
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_2_' \
--e s_'python'_'python2'_ -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-  export PYTHON=python2
-
-  ./configure \
---prefix=/usr \
---shared-openssl
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  make test || true
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR=$pkgdir install
-
-  # install docs as per user request
-  install -d $pkgdir/usr/share/doc/nodejs
-  cp -r doc/api/*.html \
-$pkgdir/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-$pkgdir/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 86232, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 19:40:21 UTC (rev 86233)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.10.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'python2')
+checkdepends=('curl') # curl used for check()
+options=('!emptydirs')
+source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
+sha256sums=('1624dc37866ebfb5431e3393e6b049cf238cac8ad4d20c6d567263b1259177ab')
+
+build() {
+  cd node-v${pkgver}
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_2_' \
+-e s_'python'_'python2'_ -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+  export PYTHON=python2
+
+  ./configure \
+--prefix=/usr \
+--shared-openssl
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  make test || true
+}
+
+package() {
+  cd node-v${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  # install docs as per user request
+  install -d $pkgdir/usr/share/doc/nodejs
+  cp -r doc/api/*.html \
+$pkgdir/usr/share/doc/nodejs
+
+  install -D -m644 LICENSE \
+$pkgdir/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-03-13 19:39:58 UTC (rev 86232)
+++ community-x86_64/PKGBUILD   2013-03-13 19:40:21 UTC (rev 86233)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# 

[arch-commits] Commit in pigz/trunk (PKGBUILD pigz-2.3-make.patch)

2013-03-13 Thread Bartłomiej Piotrowski
Date: Wednesday, March 13, 2013 @ 20:48:15
  Author: bpiotrowski
Revision: 86234

upgpkg: pigz 2.3-1

upstream release

Added:
  pigz/trunk/pigz-2.3-make.patch
Modified:
  pigz/trunk/PKGBUILD

-+
 PKGBUILD|   35 +++
 pigz-2.3-make.patch |   25 +
 2 files changed, 44 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 19:40:21 UTC (rev 86233)
+++ PKGBUILD2013-03-13 19:48:15 UTC (rev 86234)
@@ -4,35 +4,38 @@
 # Contributor: Stefan Husmann stefan-husm...@t-online.de
 
 pkgname=pigz
-pkgver=2.2.5
+pkgver=2.3
 pkgrel=1
-pkgdesc=Parallel implementation of the gzip file compressor
+pkgdesc='Parallel implementation of the gzip file compressor'
 arch=('i686' 'x86_64')
-url=http://www.zlib.net/pigz/;
+url='http://www.zlib.net/pigz/'
 license=('custom')
 depends=('zlib')
-source=(http://www.zlib.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('188f769ccedc403893d03049ad31e969')
+source=(http://www.zlib.net/$pkgname/$pkgname-$pkgver.tar.gz
+pigz-2.3-make.patch)
+md5sums=('042e3322534f2c3d761736350cac303f'
+ 'f6291ee36e36e098d7fbf0655a89b183')
 
 build() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i $srcdir/pigz-2.3-make.patch
   make
 }
 
 package() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
 
-  install -Dm755 ${srcdir}/${pkgname}-$pkgver/${pkgname} \
-${pkgdir}/usr/bin/${pkgname} 
+  install -Dm755 $srcdir/$pkgname-$pkgver/$pkgname \
+$pkgdir/usr/bin/$pkgname 
 
-  pushd ${pkgdir}/usr/bin
+  pushd $pkgdir/usr/bin
 ln -s pigz unpigz 
   popd
 
-  install -Dm644 ${srcdir}/${pkgname}-$pkgver/${pkgname}.1 \
-${pkgdir}/usr/share/man/man1/${pkgname}.1
-  install -Dm644 ${srcdir}/${pkgname}-$pkgver/${pkgname}.pdf \
-${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.pdf
-  install -Dm644 ${srcdir}/${pkgname}-$pkgver/README \
-${pkgdir}/usr/share/licenses/${pkgname}/README
+  install -Dm644 $srcdir/$pkgname-$pkgver/$pkgname.1 \
+$pkgdir/usr/share/man/man1/$pkgname.1
+  install -Dm644 $srcdir/$pkgname-$pkgver/$pkgname.pdf \
+$pkgdir/usr/share/doc/$pkgname/$pkgname.pdf
+  install -Dm644 $srcdir/$pkgname-$pkgver/README \
+$pkgdir/usr/share/licenses/$pkgname/README
 }

Added: pigz-2.3-make.patch
===
--- pigz-2.3-make.patch (rev 0)
+++ pigz-2.3-make.patch 2013-03-13 19:48:15 UTC (rev 86234)
@@ -0,0 +1,25 @@
+From 545a9350f8026f6c9826dd4fa7ab6000d8826d78 Mon Sep 17 00:00:00 2001
+From: Tim Harder radher...@gmail.com
+Date: Wed, 6 Mar 2013 15:51:27 -0800
+Subject: [PATCH] Respect LDFLAGS and explicitly link to math library
+
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 3cc231d..48d1f26 100644
+--- a/Makefile
 b/Makefile
+@@ -3,7 +3,7 @@ CFLAGS=-O3 -Wall -Wextra
+ 
+ 
+ pigz: pigz.o yarn.o zopfli/deflate.o zopfli/blocksplitter.o zopfli/tree.o 
zopfli/lz77.o zopfli/cache.o zopfli/hash.o zopfli/util.o zopfli/squeeze.o 
zopfli/katajainen.o
+-  $(CC) -o pigz $^ -lpthread -lz
++  $(CC) $(LDFLAGS) -o pigz $^ -lpthread -lz -lm
+   ln -f pigz unpigz
+ 
+ pigz.o: pigz.c yarn.h zopfli/deflate.h zopfli/util.h
+-- 
+1.8.1.5
+



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

2013-03-13 Thread Bartłomiej Piotrowski
Date: Wednesday, March 13, 2013 @ 20:48:34
  Author: bpiotrowski
Revision: 86235

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

Added:
  pigz/repos/community-i686/PKGBUILD
(from rev 86234, pigz/trunk/PKGBUILD)
  pigz/repos/community-i686/pigz-2.3-make.patch
(from rev 86234, pigz/trunk/pigz-2.3-make.patch)
  pigz/repos/community-x86_64/PKGBUILD
(from rev 86234, pigz/trunk/PKGBUILD)
  pigz/repos/community-x86_64/pigz-2.3-make.patch
(from rev 86234, pigz/trunk/pigz-2.3-make.patch)
Deleted:
  pigz/repos/community-i686/PKGBUILD
  pigz/repos/community-x86_64/PKGBUILD

--+
 community-i686/PKGBUILD  |   79 +
 community-i686/pigz-2.3-make.patch   |   25 ++
 community-x86_64/PKGBUILD|   79 +
 community-x86_64/pigz-2.3-make.patch |   25 ++
 4 files changed, 132 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 19:48:15 UTC (rev 86234)
+++ community-i686/PKGBUILD 2013-03-13 19:48:34 UTC (rev 86235)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski
-# Contributor: Laszlo Papp djsza...@gmail.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-
-pkgname=pigz
-pkgver=2.2.5
-pkgrel=1
-pkgdesc=Parallel implementation of the gzip file compressor
-arch=('i686' 'x86_64')
-url=http://www.zlib.net/pigz/;
-license=('custom')
-depends=('zlib')
-source=(http://www.zlib.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('188f769ccedc403893d03049ad31e969')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -Dm755 ${srcdir}/${pkgname}-$pkgver/${pkgname} \
-${pkgdir}/usr/bin/${pkgname} 
-
-  pushd ${pkgdir}/usr/bin
-ln -s pigz unpigz 
-  popd
-
-  install -Dm644 ${srcdir}/${pkgname}-$pkgver/${pkgname}.1 \
-${pkgdir}/usr/share/man/man1/${pkgname}.1
-  install -Dm644 ${srcdir}/${pkgname}-$pkgver/${pkgname}.pdf \
-${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.pdf
-  install -Dm644 ${srcdir}/${pkgname}-$pkgver/README \
-${pkgdir}/usr/share/licenses/${pkgname}/README
-}

Copied: pigz/repos/community-i686/PKGBUILD (from rev 86234, pigz/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 19:48:34 UTC (rev 86235)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski
+# Contributor: Laszlo Papp djsza...@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+
+pkgname=pigz
+pkgver=2.3
+pkgrel=1
+pkgdesc='Parallel implementation of the gzip file compressor'
+arch=('i686' 'x86_64')
+url='http://www.zlib.net/pigz/'
+license=('custom')
+depends=('zlib')
+source=(http://www.zlib.net/$pkgname/$pkgname-$pkgver.tar.gz
+pigz-2.3-make.patch)
+md5sums=('042e3322534f2c3d761736350cac303f'
+ 'f6291ee36e36e098d7fbf0655a89b183')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i $srcdir/pigz-2.3-make.patch
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  install -Dm755 $srcdir/$pkgname-$pkgver/$pkgname \
+$pkgdir/usr/bin/$pkgname 
+
+  pushd $pkgdir/usr/bin
+ln -s pigz unpigz 
+  popd
+
+  install -Dm644 $srcdir/$pkgname-$pkgver/$pkgname.1 \
+$pkgdir/usr/share/man/man1/$pkgname.1
+  install -Dm644 $srcdir/$pkgname-$pkgver/$pkgname.pdf \
+$pkgdir/usr/share/doc/$pkgname/$pkgname.pdf
+  install -Dm644 $srcdir/$pkgname-$pkgver/README \
+$pkgdir/usr/share/licenses/$pkgname/README
+}

Copied: pigz/repos/community-i686/pigz-2.3-make.patch (from rev 86234, 
pigz/trunk/pigz-2.3-make.patch)
===
--- community-i686/pigz-2.3-make.patch  (rev 0)
+++ community-i686/pigz-2.3-make.patch  2013-03-13 19:48:34 UTC (rev 86235)
@@ -0,0 +1,25 @@
+From 545a9350f8026f6c9826dd4fa7ab6000d8826d78 Mon Sep 17 00:00:00 2001
+From: Tim Harder radher...@gmail.com
+Date: Wed, 6 Mar 2013 15:51:27 -0800
+Subject: [PATCH] Respect LDFLAGS and explicitly link to math library
+
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 3cc231d..48d1f26 100644
+--- a/Makefile
 b/Makefile
+@@ -3,7 +3,7 @@ CFLAGS=-O3 -Wall -Wextra
+ 
+ 
+ pigz: pigz.o yarn.o zopfli/deflate.o zopfli/blocksplitter.o zopfli/tree.o 
zopfli/lz77.o zopfli/cache.o zopfli/hash.o zopfli/util.o zopfli/squeeze.o 
zopfli/katajainen.o
+-  $(CC) -o pigz $^ -lpthread -lz
++  $(CC) $(LDFLAGS) -o pigz $^ -lpthread -lz -lm
+   ln -f pigz unpigz
+ 
+ pigz.o: pigz.c yarn.h zopfli/deflate.h zopfli/util.h
+-- 
+1.8.1.5
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   

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

2013-03-13 Thread Bartłomiej Piotrowski
Date: Wednesday, March 13, 2013 @ 20:59:03
  Author: bpiotrowski
Revision: 86236

upgpkg: haveged 1.7a-1

upstream release

Modified:
  haveged/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 19:48:34 UTC (rev 86235)
+++ PKGBUILD2013-03-13 19:59:03 UTC (rev 86236)
@@ -4,7 +4,7 @@
 # Contributor: pootzko pootzko at gmail dot com
 
 pkgname=haveged
-pkgver=1.7
+pkgver=1.7a
 pkgrel=1
 pkgdesc='Entropy harvesting daemon using CPU timings'
 arch=('i686' 'x86_64')
@@ -12,18 +12,12 @@
 license=('GPL')
 depends=('glibc')
 source=($url/$pkgname-$pkgver.tar.gz
-service
-haveged-1.7-build.patch)
-sha256sums=('9ec85438386a46d5c3fe7b5b121cafd89c34bae68cbbfb4cecb1ff5622111013'
-'85aed005b7d0d0bae74f7fc0ca70907a6f67ddbcb2df77ca004f9a919028564a'
-'94c77b1d2d80eb5fb30bab4aeb560e6dfe9957654cd3ed915478d2ce67ac37b7')
+service)
+sha256sums=('8e7b0779bd8a4b9b73769ddaf626918355e2a542d3ac35e5ec31b74a58b9b051'
+'85aed005b7d0d0bae74f7fc0ca70907a6f67ddbcb2df77ca004f9a919028564a')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-
-  patch -Np1 -i $srcdir/haveged-1.7-build.patch
-  aclocal  libtoolize --force  automake --add-missing  autoreconf
-
   ./configure --prefix=/usr
   make
 }



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

2013-03-13 Thread Bartłomiej Piotrowski
Date: Wednesday, March 13, 2013 @ 20:59:28
  Author: bpiotrowski
Revision: 86237

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

Added:
  haveged/repos/community-i686/PKGBUILD
(from rev 86236, haveged/trunk/PKGBUILD)
  haveged/repos/community-i686/haveged-1.7-build.patch
(from rev 86236, haveged/trunk/haveged-1.7-build.patch)
  haveged/repos/community-i686/service
(from rev 86236, haveged/trunk/service)
  haveged/repos/community-x86_64/PKGBUILD
(from rev 86236, haveged/trunk/PKGBUILD)
  haveged/repos/community-x86_64/haveged-1.7-build.patch
(from rev 86236, haveged/trunk/haveged-1.7-build.patch)
  haveged/repos/community-x86_64/service
(from rev 86236, haveged/trunk/service)
Deleted:
  haveged/repos/community-i686/PKGBUILD
  haveged/repos/community-i686/haveged-1.7-build.patch
  haveged/repos/community-i686/service
  haveged/repos/community-x86_64/PKGBUILD
  haveged/repos/community-x86_64/haveged-1.7-build.patch
  haveged/repos/community-x86_64/service

--+
 community-i686/PKGBUILD  |   68 +
 community-i686/haveged-1.7-build.patch   |   26 +--
 community-i686/service   |   22 -
 community-x86_64/PKGBUILD|   68 +
 community-x86_64/haveged-1.7-build.patch |   26 +--
 community-x86_64/service |   22 -
 6 files changed, 110 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 19:59:03 UTC (rev 86236)
+++ community-i686/PKGBUILD 2013-03-13 19:59:28 UTC (rev 86237)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
-# Contributor: kfgz kfgz at interia dot pl
-# Contributor: pootzko pootzko at gmail dot com
-
-pkgname=haveged
-pkgver=1.7
-pkgrel=1
-pkgdesc='Entropy harvesting daemon using CPU timings'
-arch=('i686' 'x86_64')
-url='http://www.issihosts.com/haveged'
-license=('GPL')
-depends=('glibc')
-source=($url/$pkgname-$pkgver.tar.gz
-service
-haveged-1.7-build.patch)
-sha256sums=('9ec85438386a46d5c3fe7b5b121cafd89c34bae68cbbfb4cecb1ff5622111013'
-'85aed005b7d0d0bae74f7fc0ca70907a6f67ddbcb2df77ca004f9a919028564a'
-'94c77b1d2d80eb5fb30bab4aeb560e6dfe9957654cd3ed915478d2ce67ac37b7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -Np1 -i $srcdir/haveged-1.7-build.patch
-  aclocal  libtoolize --force  automake --add-missing  autoreconf
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  rm -rf $pkgdir/etc/init.d
-  install -D -m644 $srcdir/service 
$pkgdir/usr/lib/systemd/system/haveged.service
-}

Copied: haveged/repos/community-i686/PKGBUILD (from rev 86236, 
haveged/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 19:59:28 UTC (rev 86237)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
+# Contributor: kfgz kfgz at interia dot pl
+# Contributor: pootzko pootzko at gmail dot com
+
+pkgname=haveged
+pkgver=1.7a
+pkgrel=1
+pkgdesc='Entropy harvesting daemon using CPU timings'
+arch=('i686' 'x86_64')
+url='http://www.issihosts.com/haveged'
+license=('GPL')
+depends=('glibc')
+source=($url/$pkgname-$pkgver.tar.gz
+service)
+sha256sums=('8e7b0779bd8a4b9b73769ddaf626918355e2a542d3ac35e5ec31b74a58b9b051'
+'85aed005b7d0d0bae74f7fc0ca70907a6f67ddbcb2df77ca004f9a919028564a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  rm -rf $pkgdir/etc/init.d
+  install -D -m644 $srcdir/service 
$pkgdir/usr/lib/systemd/system/haveged.service
+}

Deleted: community-i686/haveged-1.7-build.patch
===
--- community-i686/haveged-1.7-build.patch  2013-03-13 19:59:03 UTC (rev 
86236)
+++ community-i686/haveged-1.7-build.patch  2013-03-13 19:59:28 UTC (rev 
86237)
@@ -1,13 +0,0 @@
-Index: haveged-1.7/src/Makefile.am
-===
 haveged-1.7.orig/src/Makefile.am
-+++ haveged-1.7/src/Makefile.am
-@@ -27,7 +27,7 @@ pkginclude_HEADERS = havege.h
- 
- haveged_SOURCES = haveged.c haveged.h
- 
--haveged_LDADD = @HA_LDFLAGS@ $(top_builddir)/src/libhavege.la
-+haveged_LDADD = @HA_LDFLAGS@ libhavege.la
- ##libtool_end##
- 
- MAINTAINERCLEANFILES = Makefile.in

Copied: haveged/repos/community-i686/haveged-1.7-build.patch (from rev 86236, 
haveged/trunk/haveged-1.7-build.patch)
===
--- community-i686/haveged-1.7-build.patch  

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:08:13
  Author: jgc
Revision: 179977

upgpkg: libgphoto2 2.5.1-1

Modified:
  libgphoto2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 18:06:41 UTC (rev 179976)
+++ PKGBUILD2013-03-13 20:08:13 UTC (rev 179977)
@@ -5,7 +5,7 @@
 # Contributor: Damir Perisa damir.per...@bluewin.ch
 
 pkgname=libgphoto2
-pkgver=2.5.0
+pkgver=2.5.1
 pkgrel=1
 pkgdesc=The core library of gphoto2, designed to allow access to digital 
camera by external programs.
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 install=libgphoto2.install
 options=('libtool')
 source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz)
-md5sums=('ea9b3b07a3738c0a77958d6fe13ae524')
+md5sums=('92780eb4baf7b512b86b5e7300ec91a5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:08:25
  Author: jgc
Revision: 179978

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

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

-+
 extra-i686/PKGBUILD |   86 +++---
 extra-i686/libgphoto2.install   |   12 ++---
 extra-x86_64/PKGBUILD   |   86 +++---
 extra-x86_64/libgphoto2.install |   12 ++---
 4 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 20:08:13 UTC (rev 179977)
+++ extra-i686/PKGBUILD 2013-03-13 20:08:25 UTC (rev 179978)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-
-pkgname=libgphoto2
-pkgver=2.5.0
-pkgrel=1
-pkgdesc=The core library of gphoto2, designed to allow access to digital 
camera by external programs.
-arch=(i686 x86_64)
-url=http://www.gphoto.org;
-license=(LGPL)
-depends=('libexif' 'libjpeg=8' 'gd' 'libltdl' 'libusb-compat' 'libusb')
-install=libgphoto2.install
-options=('libtool')
-source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz)
-md5sums=('ea9b3b07a3738c0a77958d6fe13ae524')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure \
-   --prefix=/usr \
-   --disable-rpath
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Remove unused udev helper
-  rm -rf ${pkgdir}/usr/lib/udev
-
-  install -m755 -d ${pkgdir}/usr/lib/udev/rules.d
-  LD_LIBRARY_PATH=${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH \
-  CAMLIBS=${pkgdir}/usr/lib/libgphoto2/${pkgver} \
-  ${pkgdir}/usr/lib/libgphoto2/print-camera-list udev-rules version 175 
 \
-  ${pkgdir}/usr/lib/udev/rules.d/40-gphoto.rules
-
-  # Remove recursive symlink
-  rm -f ${pkgdir}/usr/include/gphoto2/gphoto2
-}

Copied: libgphoto2/repos/extra-i686/PKGBUILD (from rev 179977, 
libgphoto2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 20:08:25 UTC (rev 179978)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Eduardo Romero edua...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+
+pkgname=libgphoto2
+pkgver=2.5.1
+pkgrel=1
+pkgdesc=The core library of gphoto2, designed to allow access to digital 
camera by external programs.
+arch=(i686 x86_64)
+url=http://www.gphoto.org;
+license=(LGPL)
+depends=('libexif' 'libjpeg=8' 'gd' 'libltdl' 'libusb-compat' 'libusb')
+install=libgphoto2.install
+options=('libtool')
+source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz)
+md5sums=('92780eb4baf7b512b86b5e7300ec91a5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure \
+   --prefix=/usr \
+   --disable-rpath
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Remove unused udev helper
+  rm -rf ${pkgdir}/usr/lib/udev
+
+  install -m755 -d ${pkgdir}/usr/lib/udev/rules.d
+  LD_LIBRARY_PATH=${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH \
+  CAMLIBS=${pkgdir}/usr/lib/libgphoto2/${pkgver} \
+  ${pkgdir}/usr/lib/libgphoto2/print-camera-list udev-rules version 175 
 \
+  ${pkgdir}/usr/lib/udev/rules.d/40-gphoto.rules
+
+  # Remove recursive symlink
+  rm -f ${pkgdir}/usr/include/gphoto2/gphoto2
+}

Deleted: extra-i686/libgphoto2.install
===
--- extra-i686/libgphoto2.install   2013-03-13 20:08:13 UTC (rev 179977)
+++ extra-i686/libgphoto2.install   2013-03-13 20:08:25 UTC (rev 179978)
@@ -1,6 +0,0 @@
-post_upgrade() {
-if [ $(vercmp $2 2.14.13) -lt 0 ]; then
-  groupdel camera /dev/null
-  echo Users no longer need to be in the 'camera' group to use camera devices
-fi
-}

Copied: libgphoto2/repos/extra-i686/libgphoto2.install (from rev 179977, 
libgphoto2/trunk/libgphoto2.install)
===
--- extra-i686/libgphoto2.install   (rev 0)
+++ 

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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:13:02
  Author: jgc
Revision: 179979

upgpkg: gphoto2 2.5.1-1

Modified:
  gphoto2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 20:08:25 UTC (rev 179978)
+++ PKGBUILD2013-03-13 20:13:02 UTC (rev 179979)
@@ -3,7 +3,7 @@
 # Contributor: Eduardo Romero edua...@archlinux.org
 # Contributor: Jason Chu ja...@archlinux.org
 pkgname=gphoto2
-pkgver=2.5.0
+pkgver=2.5.1
 pkgrel=1
 pkgdesc=A digital camera download and access program.
 arch=(i686 x86_64)
@@ -11,6 +11,7 @@
 license=('GPL' 'LGPL')
 depends=('libgphoto2' 'popt' 'readline')
 source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('03cda6d5b7c647ac4c90d0081f2cb7c7')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -22,4 +23,3 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }
-md5sums=('64c6d291c5bd50388af0c51da71efb59')



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:13:10
  Author: jgc
Revision: 179980

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 20:13:02 UTC (rev 179979)
+++ extra-i686/PKGBUILD 2013-03-13 20:13:10 UTC (rev 179980)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-pkgname=gphoto2
-pkgver=2.5.0
-pkgrel=1
-pkgdesc=A digital camera download and access program.
-arch=(i686 x86_64)
-url=http://www.gphoto.org;
-license=('GPL' 'LGPL')
-depends=('libgphoto2' 'popt' 'readline')
-source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.bz2)
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-md5sums=('64c6d291c5bd50388af0c51da71efb59')

Copied: gphoto2/repos/extra-i686/PKGBUILD (from rev 179979, 
gphoto2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 20:13:10 UTC (rev 179980)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Eduardo Romero edua...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+pkgname=gphoto2
+pkgver=2.5.1
+pkgrel=1
+pkgdesc=A digital camera download and access program.
+arch=(i686 x86_64)
+url=http://www.gphoto.org;
+license=('GPL' 'LGPL')
+depends=('libgphoto2' 'popt' 'readline')
+source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('03cda6d5b7c647ac4c90d0081f2cb7c7')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-13 20:13:02 UTC (rev 179979)
+++ extra-x86_64/PKGBUILD   2013-03-13 20:13:10 UTC (rev 179980)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-pkgname=gphoto2
-pkgver=2.5.0
-pkgrel=1
-pkgdesc=A digital camera download and access program.
-arch=(i686 x86_64)
-url=http://www.gphoto.org;
-license=('GPL' 'LGPL')
-depends=('libgphoto2' 'popt' 'readline')
-source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.bz2)
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-md5sums=('64c6d291c5bd50388af0c51da71efb59')

Copied: gphoto2/repos/extra-x86_64/PKGBUILD (from rev 179979, 
gphoto2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-03-13 20:13:10 UTC (rev 179980)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Eduardo Romero edua...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+pkgname=gphoto2
+pkgver=2.5.1
+pkgrel=1
+pkgdesc=A digital camera download and access program.
+arch=(i686 x86_64)
+url=http://www.gphoto.org;
+license=('GPL' 'LGPL')
+depends=('libgphoto2' 'popt' 'readline')
+source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('03cda6d5b7c647ac4c90d0081f2cb7c7')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:16:49
  Author: jgc
Revision: 179981

upgpkg: iso-codes 3.41-1

Modified:
  iso-codes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 20:13:10 UTC (rev 179980)
+++ PKGBUILD2013-03-13 20:16:49 UTC (rev 179981)
@@ -2,15 +2,15 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=iso-codes
-pkgver=3.38
+pkgver=3.41
 pkgrel=1
 pkgdesc=Lists of the country, language, and currency names
 arch=('any')
 url=http://pkg-isocodes.alioth.debian.org/;
 license=('LGPL')
 
source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('df8dacc718116dae3db453a4d85c018a'
- '5cc8ca3eec407a318fda79043de28569')
+md5sums=('ee13ecb5c97176c981f996cfd7bce6e8'
+ '7883edf85306abaced453204d10c97e9')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in iso-codes/repos/extra-any (PKGBUILD PKGBUILD)

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:16:54
  Author: jgc
Revision: 179982

archrelease: copy trunk to extra-any

Added:
  iso-codes/repos/extra-any/PKGBUILD
(from rev 179981, iso-codes/trunk/PKGBUILD)
Deleted:
  iso-codes/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 20:16:49 UTC (rev 179981)
+++ PKGBUILD2013-03-13 20:16:54 UTC (rev 179982)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=iso-codes
-pkgver=3.38
-pkgrel=1
-pkgdesc=Lists of the country, language, and currency names
-arch=('any')
-url=http://pkg-isocodes.alioth.debian.org/;
-license=('LGPL')
-source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('df8dacc718116dae3db453a4d85c018a'
- '5cc8ca3eec407a318fda79043de28569')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir pkgconfigdir=/usr/lib/pkgconfig install
-}

Copied: iso-codes/repos/extra-any/PKGBUILD (from rev 179981, 
iso-codes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-13 20:16:54 UTC (rev 179982)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=iso-codes
+pkgver=3.41
+pkgrel=1
+pkgdesc=Lists of the country, language, and currency names
+arch=('any')
+url=http://pkg-isocodes.alioth.debian.org/;
+license=('LGPL')
+source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('ee13ecb5c97176c981f996cfd7bce6e8'
+ '7883edf85306abaced453204d10c97e9')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir pkgconfigdir=/usr/lib/pkgconfig install
+}



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:18:19
  Author: jgc
Revision: 179983

upgpkg: evolution 3.6.4-1

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 20:16:54 UTC (rev 179982)
+++ PKGBUILD2013-03-13 20:18:19 UTC (rev 179983)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=evolution
-pkgver=3.6.3
+pkgver=3.6.4
 pkgrel=1
 pkgdesc=Manage your email, contacts and schedule
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 install=evolution.install
 url=http://www.gnome.org/projects/evolution/
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2c564f3e59cb26663d3e3992c881842815fb8fbc037074475f906030c8c5fd25')
+sha256sums=('7bf7054d85b7d1bd0e62d69f15ef80dbe781f57359bf91e7c427cd93378ba4a1')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-13 Thread Jan de Groot
Date: Wednesday, March 13, 2013 @ 21:18:27
  Author: jgc
Revision: 179984

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

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

+
 extra-i686/PKGBUILD|   84 +++
 extra-i686/evolution.install   |   38 -
 extra-x86_64/PKGBUILD  |   84 +++
 extra-x86_64/evolution.install |   38 -
 4 files changed, 122 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-13 20:18:19 UTC (rev 179983)
+++ extra-i686/PKGBUILD 2013-03-13 20:18:27 UTC (rev 179984)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=evolution
-pkgver=3.6.3
-pkgrel=1
-pkgdesc=Manage your email, contacts and schedule
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gnome-desktop' 'evolution-data-server' 'gtkhtml4' 'libcanberra' 
'libpst' 'libytnef' 'desktop-file-utils' 'hicolor-icon-theme' 'dconf')
-makedepends=('intltool' 'itstool' 'docbook-xsl' 'networkmanager')
-optdepends=('bogofilter: possible junk filter plugin'
-'spamassassin: possible junk filter plugin')
-groups=('gnome-extra')
-options=('!libtool' '!emptydirs')
-install=evolution.install
-url=http://www.gnome.org/projects/evolution/
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2c564f3e59cb26663d3e3992c881842815fb8fbc037074475f906030c8c5fd25')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-nss=yes \
-  --with-openldap=yes \
-  --enable-smime=yes \
-  --with-krb5=/usr \
-  --disable-schemas-compile
-  
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: evolution/repos/extra-i686/PKGBUILD (from rev 179983, 
evolution/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-13 20:18:27 UTC (rev 179984)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=evolution
+pkgver=3.6.4
+pkgrel=1
+pkgdesc=Manage your email, contacts and schedule
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnome-desktop' 'evolution-data-server' 'gtkhtml4' 'libcanberra' 
'libpst' 'libytnef' 'desktop-file-utils' 'hicolor-icon-theme' 'dconf')
+makedepends=('intltool' 'itstool' 'docbook-xsl' 'networkmanager')
+optdepends=('bogofilter: possible junk filter plugin'
+'spamassassin: possible junk filter plugin')
+groups=('gnome-extra')
+options=('!libtool' '!emptydirs')
+install=evolution.install
+url=http://www.gnome.org/projects/evolution/
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7bf7054d85b7d1bd0e62d69f15ef80dbe781f57359bf91e7c427cd93378ba4a1')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-nss=yes \
+  --with-openldap=yes \
+  --enable-smime=yes \
+  --with-krb5=/usr \
+  --disable-schemas-compile
+  
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/evolution.install
===
--- extra-i686/evolution.install2013-03-13 20:18:19 UTC (rev 179983)
+++ extra-i686/evolution.install2013-03-13 20:18:27 UTC (rev 179984)
@@ -1,19 +0,0 @@
-post_install() {
-  glib-compile-schemas 

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

2013-03-13 Thread Guillaume Alaux
Date: Wednesday, March 13, 2013 @ 21:18:45
  Author: guillaume
Revision: 86238

Set dependency back to vte rather than vte3

Modified:
  terminator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 19:59:28 UTC (rev 86237)
+++ PKGBUILD2013-03-13 20:18:45 UTC (rev 86238)
@@ -6,12 +6,12 @@
 
 pkgname=terminator
 pkgver=0.96
-pkgrel=3
+pkgrel=4
 pkgdesc='Terminal emulator that supports tabs and grids'
 arch=('any')
 url='http://www.tenshu.net/p/terminator.html'
 license=('GPL2')
-depends=('vte3' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
+depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
 makedepends=('desktop-file-utils' 'gettext' 'intltool')
 install=terminator.install
 
source=(https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz;)



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

2013-03-13 Thread Guillaume Alaux
Date: Wednesday, March 13, 2013 @ 21:20:30
  Author: guillaume
Revision: 86239

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   82 +--
 terminator.install |   24 +++---
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 20:18:45 UTC (rev 86238)
+++ PKGBUILD2013-03-13 20:20:30 UTC (rev 86239)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: fancris3 fancris3 at gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=terminator
-pkgver=0.96
-pkgrel=3
-pkgdesc='Terminal emulator that supports tabs and grids'
-arch=('any')
-url='http://www.tenshu.net/p/terminator.html'
-license=('GPL2')
-depends=('vte3' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
-makedepends=('desktop-file-utils' 'gettext' 'intltool')
-install=terminator.install
-source=(https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz;)
-sha256sums=('d708c783c36233fcafbd0139a91462478ae40f5cf696ef4acfcaf5891a843201')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-# python2 fix
-for file in terminatorlib/{,plugins/}*.py; do
-sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-done
-
-python2 setup.py build
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-python2 setup.py install --skip-build --root=${pkgdir}
-
-rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
-rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
-install -D -m644 ${srcdir}/${pkgname}-${pkgver}/data/${pkgname}.desktop.in 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
-}

Copied: terminator/repos/community-any/PKGBUILD (from rev 86238, 
terminator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-13 20:20:30 UTC (rev 86239)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: fancris3 fancris3 at gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=terminator
+pkgver=0.96
+pkgrel=4
+pkgdesc='Terminal emulator that supports tabs and grids'
+arch=('any')
+url='http://www.tenshu.net/p/terminator.html'
+license=('GPL2')
+depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
+makedepends=('desktop-file-utils' 'gettext' 'intltool')
+install=terminator.install
+source=(https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz;)
+sha256sums=('d708c783c36233fcafbd0139a91462478ae40f5cf696ef4acfcaf5891a843201')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+# python2 fix
+for file in terminatorlib/{,plugins/}*.py; do
+sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+done
+
+python2 setup.py build
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+python2 setup.py install --skip-build --root=${pkgdir}
+
+rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
+rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
+install -D -m644 ${srcdir}/${pkgname}-${pkgver}/data/${pkgname}.desktop.in 
${pkgdir}/usr/share/applications/${pkgname}.desktop
+sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
+}

Deleted: terminator.install
===
--- terminator.install  2013-03-13 20:18:45 UTC (rev 86238)
+++ terminator.install  2013-03-13 20:20:30 UTC (rev 86239)
@@ -1,12 +0,0 @@
-post_install() {
-  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate || true
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate || true
-}
-

Copied: terminator/repos/community-any/terminator.install (from rev 86238, 
terminator/trunk/terminator.install)
===
--- terminator.install  (rev 0)
+++ terminator.install  2013-03-13 20:20:30 UTC (rev 86239)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate || true
+}
+

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

2013-03-13 Thread Eric Bélanger
Date: Wednesday, March 13, 2013 @ 21:40:28
  Author: eric
Revision: 179985

Add systemd makedepends, Update udev depends to systemd

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 20:18:27 UTC (rev 179984)
+++ PKGBUILD2013-03-13 20:40:28 UTC (rev 179985)
@@ -9,6 +9,7 @@
 arch=('i686' 'x86_64')
 url=http://sourceware.org/lvm2/;
 license=('GPL2' 'LGPL2.1')
+makedepends=('systemd')
 groups=('base')
 source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc}
 lvm2_install
@@ -48,7 +49,7 @@
 package_device-mapper() {
   pkgdesc=Device mapper userspace library and tools
   url=http://sourceware.org/dm/;
-  depends=('glibc' 'udev')
+  depends=('glibc' 'systemd')
 
   cd ${srcdir}/LVM2.${pkgver}
   make DESTDIR=${pkgdir} install_device-mapper
@@ -63,7 +64,7 @@
 
 package_lvm2() {
   pkgdesc=Logical Volume Manager 2 utilities
-  depends=('bash' device-mapper=${pkgver} 'udev' 'readline')
+  depends=('bash' device-mapper=${pkgver} 'systemd' 'readline')
   conflicts=('lvm' 'mkinitcpio0.7')
   backup=('etc/lvm/lvm.conf')
   options=('!makeflags')



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

2013-03-13 Thread Jelle van der Waa
Date: Wednesday, March 13, 2013 @ 22:24:14
  Author: jelle
Revision: 86240

upgpkg: gsmartcontrol 0.8.7-3

fix bug 34167

Modified:
  gsmartcontrol/trunk/PKGBUILD
  gsmartcontrol/trunk/gsmartcontrol.install
  gsmartcontrol/trunk/org.archlinux.pkexec.gsmartcontrol.policy

---+
 PKGBUILD  |   33 +
 gsmartcontrol.install |5 -
 2 files changed, 25 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 20:20:30 UTC (rev 86239)
+++ PKGBUILD2013-03-13 21:24:14 UTC (rev 86240)
@@ -2,18 +2,18 @@
 
 pkgname=gsmartcontrol
 pkgver=0.8.7
-pkgrel=2
+pkgrel=3
 pkgdesc=A graphical user interface for the smartctl hard disk drive health 
inspection tool.
 arch=('i686' 'x86_64')
 url=http://gsmartcontrol.berlios.de/home/index.php/en/Home;
 license=('GPL3')
-depends=('smartmontools' 'pcre' 'gtkmm' 'libglademm' 'glib2' 'xorg-xmessage')
-optdepends=('polkit: to run gsmartcontrol directly from menu')
+depends=('smartmontools' 'gtkmm' 'xorg-xmessage' 'hicolor-icon-theme' 'polkit')
+optdepends=('polkit-gnome: to run gsmartcontrol directly from menu')
 install=${pkgname}.install
-source=(http://download.berlios.de/gsmartcontrol/${pkgname}-${pkgver}.tar.bz2 
org.archlinux.pkexec.gsmartcontrol.policy gsmartcontrol.desktop)
+source=(http://download.berlios.de/gsmartcontrol/${pkgname}-${pkgver}.tar.bz2
+org.archlinux.pkexec.gsmartcontrol.policy)
 md5sums=('6d104c2ffc1e693cd1a8052a6d7e3b30'
- 'e7b9380849cdcaa4356a42559ea7954f'
- '19b20293a639e51fa2abb929a3faae01')
+ 'e403f8e06e6b8a3d1a99da5e584b2257')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
@@ -31,11 +31,20 @@
 
make DESTDIR=${pkgdir} install
 
-# Install pexec fixed desktop file
-install -Dm755 $srcdir/gsmartcontrol.desktop 
$pkgdir/usr/share/applications/gsmartcontrol.desktop
+# We need rename the original binary
+mv ${pkgdir}/usr/bin/gsmartcontrol 
${pkgdir}/usr/bin/gsmartcontrol.elf
 
-# Install pexec file
+# Install launcher script
+echo '#!/bin/sh'  ${pkgdir}/usr/bin/gsmartcontrol
+echo 'pkexec --disable-internal-agent /usr/bin/gsmartcontrol.elf 
$@' \
+ ${pkgdir}/usr/bin/gsmartcontrol
+chmod 755 ${pkgdir}/usr/bin/gsmartcontrol
+
+# Modify desktop file
+sed -i -e s|^Exec=.*|Exec=/usr/bin/gsmartcontrol| \
+${pkgdir}/usr/share/applications/gsmartcontrol.desktop
+
+# Install policy file
 install -Dm766 $srcdir/org.archlinux.pkexec.gsmartcontrol.policy \
-
$pkgdir/usr/share/polkit-1/actions/org.archlinux.pkexec.gsmartcontrol.policy 
-
-  }
+
$pkgdir/usr/share/polkit-1/actions/org.archlinux.pkexec.gsmartcontrol.policy
+}

Modified: gsmartcontrol.install
===
--- gsmartcontrol.install   2013-03-13 20:20:30 UTC (rev 86239)
+++ gsmartcontrol.install   2013-03-13 21:24:14 UTC (rev 86240)
@@ -1,9 +1,12 @@
 post_install() {
   which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate || true
+  echo 'If you use a lightweight windowmanager, remember to run'
+  echo '/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 to enable'
+  echo 'graphical authentication, which may be needed for pkexec to work.'
 }
 
 post_upgrade() {
-  post_install $1
+  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate || true
 }
 
 post_remove() {

Modified: org.archlinux.pkexec.gsmartcontrol.policy
===
(Binary files differ)



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

2013-03-13 Thread Andrea Scarpino
Date: Wednesday, March 13, 2013 @ 22:27:53
  Author: andrea
Revision: 179986

upgpkg: calligra-l10n 2.6.2-1

Upstream release

Modified:
  calligra-l10n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 20:40:28 UTC (rev 179985)
+++ PKGBUILD2013-03-13 21:27:53 UTC (rev 179986)
@@ -30,7 +30,7 @@
'calligra-l10n-uk'
'calligra-l10n-zh_cn'
'calligra-l10n-zh_tw')
-pkgver=2.6.1
+pkgver=2.6.2
 pkgrel=1
 pkgdesc=Localization for Calligra
 arch=('any')
@@ -66,34 +66,34 @@
   
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-uk-${pkgver}.tar.bz2;
   
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-zh_CN-${pkgver}.tar.bz2;
   
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-zh_TW-${pkgver}.tar.bz2;)
-md5sums=('47bcae05c6844ae1f45599bf0371e8bb'
- '88bbb4ba14cd811cce8f233e5f9e5752'
- 'feb887e8e15bc925b75293718e824826'
- 'a02b51d7f7ca02e1bf10baf715d5b8df'
- 'c51d04d3d08115cdbb310f3c92fbdad7'
- 'd20ee096fe9b2c626100e415f0c210c4'
- 'b67d675a75c6b59fe50b886cb02afd3c'
- 'bba041eb8aac79870ccaaa0852961b88'
- '3e9ea7a892f93275a43f894657680b0a'
- '1b78b8c7cba14ade8f9ea2039126c845'
- '6bb491efaddd95393c82c21ef2fdda5a'
- 'ad44c8d125c0d82cce0e37ac086c0612'
- '51e47f404487c5eb9474bc495a8ed481'
- 'c47c1a4ac855a4cd5415e5179a31dc9b'
- '2d22d02f5a00fa733d47a444c71d5af5'
- 'ce7218968008da232b20a25393a876a8'
- 'cae59001ba60aa079182232ddbbfe3d6'
- '716b0a61c2efa23f63672378bb9cba3c'
- '5637cb2afda30449c6379c0017067396'
- '134afd9303034db38e775d9191874d44'
- 'a75d6d065e48fa8fa491ee3c8efa8ada'
- '91b33b5ea2beeae2959e9ee25be25624'
- '5cc0912e6b2fce3865e303ec582e9574'
- '3da788a02ef983ad3d23218b77b2b3a8'
- '70ecdd1cb7b2c7896eb1efe24d7be3f4'
- 'ff0cc2e5a1d458d1139a5aa53b2322f4'
- 'dbc465f512771c341566c296843c5f96'
- 'd0d4af3df58327c9bfc7cd4e054f7e7b')
+md5sums=('7ddca1b8d4180eb94431ef56ac3db994'
+ '3e292c679d0dcd3d12c8961f1414cfef'
+ 'dca2966e1782c537d6b9ce69b15ccbfe'
+ '27a457ac994d875b1628c5c615194b59'
+ '311eba00ab825389a4aef93ff09bac51'
+ '7c038ea37a2480ff167a07fd9d6b2b04'
+ 'b733e8fff6545e8f1b5354f2d3838ba3'
+ '3f4ab0be39eba28cc879e74000955a0b'
+ '0507c641863a555e127c981ae8801279'
+ '7f2bd38f2d85125436b551e1c04ca197'
+ '5f3d5fd47597307fd381085e3b23982d'
+ '8d911601af920f8d41ccf22b0218329c'
+ '5a0a9f8b6cf2c606116f79af99aa0540'
+ 'be2e65292c788d9ccc5af08ba323ccf6'
+ '02e85dc8fc18b31c3c17b078e42d930d'
+ '444a46e6870aaa22ebdff58b9285fd79'
+ 'b8b791110d984b54552417a4c75a287b'
+ '72dd9ba1fb64c749ba6c516b50fd661a'
+ '6ed9b8eea10719fbfa138803add0e93c'
+ 'b805aa811d604e188c1a0a696388'
+ 'b333a4a0fea64a469e08bdd84920bc01'
+ '91b7ceee16f3111355ff368f8b66b78d'
+ '826d4536b197a5126824072514b874d4'
+ '5eccd5a106b607bc075a421eeb64f408'
+ 'b8bc692d993c25925b3a97836e016dc2'
+ '8ae4951e2af470598e87c215c551ec20'
+ '7b43dc50f060f587cda8586fc8266bae'
+ 'fce15e764f816ce69aa6c40af931151d')
 
 build() {
   for lang in bs ca ca@valencia da de el en_GB es et fi fr gl hu it kk nb nds \



[arch-commits] Commit in calligra-l10n/repos/extra-any (PKGBUILD PKGBUILD)

2013-03-13 Thread Andrea Scarpino
Date: Wednesday, March 13, 2013 @ 22:27:59
  Author: andrea
Revision: 179987

archrelease: copy trunk to extra-any

Added:
  calligra-l10n/repos/extra-any/PKGBUILD
(from rev 179986, calligra-l10n/trunk/PKGBUILD)
Deleted:
  calligra-l10n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  610 ++---
 1 file changed, 305 insertions(+), 305 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 21:27:53 UTC (rev 179986)
+++ PKGBUILD2013-03-13 21:27:59 UTC (rev 179987)
@@ -1,305 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=calligra-l10n
-pkgname=('calligra-l10n-bs'
-   'calligra-l10n-ca'
-   'calligra-l10n-ca@valencia'
-   'calligra-l10n-da'
-   'calligra-l10n-de'
-   'calligra-l10n-el'
-   'calligra-l10n-en_gb'
-   'calligra-l10n-es'
-   'calligra-l10n-et'
-   'calligra-l10n-fi'
-   'calligra-l10n-fr'
-   'calligra-l10n-gl'
-   'calligra-l10n-hu'
-   'calligra-l10n-it'
-   'calligra-l10n-kk'
-   'calligra-l10n-nb'
-   'calligra-l10n-nds'
-   'calligra-l10n-nl'
-   'calligra-l10n-pl'
-   'calligra-l10n-pt'
-   'calligra-l10n-pt_br'
-   'calligra-l10n-ru'
-   'calligra-l10n-sk'
-   'calligra-l10n-sl'
-   'calligra-l10n-sv'
-   'calligra-l10n-uk'
-   'calligra-l10n-zh_cn'
-   'calligra-l10n-zh_tw')
-pkgver=2.6.1
-pkgrel=1
-pkgdesc=Localization for Calligra
-arch=('any')
-url='http://www.calligra-suite.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4' 'kdelibs')
-options=('docs')
-source=(http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-bs-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-ca-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-ca@valencia-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-da-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-de-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-el-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-en_GB-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-es-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-et-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-fi-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-fr-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-gl-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-hu-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-it-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-kk-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-nb-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-nds-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-nl-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-pl-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-pt-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-pt_BR-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-ru-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-sk-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-sl-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-sv-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-uk-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-zh_CN-${pkgver}.tar.bz2;
-  
http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-zh_TW-${pkgver}.tar.bz2;)
-md5sums=('47bcae05c6844ae1f45599bf0371e8bb'
- '88bbb4ba14cd811cce8f233e5f9e5752'
- 'feb887e8e15bc925b75293718e824826'
- 'a02b51d7f7ca02e1bf10baf715d5b8df'
- 'c51d04d3d08115cdbb310f3c92fbdad7'
- 'd20ee096fe9b2c626100e415f0c210c4'
- 'b67d675a75c6b59fe50b886cb02afd3c'
- 'bba041eb8aac79870ccaaa0852961b88'
- '3e9ea7a892f93275a43f894657680b0a'
- '1b78b8c7cba14ade8f9ea2039126c845'
- '6bb491efaddd95393c82c21ef2fdda5a'
- 'ad44c8d125c0d82cce0e37ac086c0612'
- '51e47f404487c5eb9474bc495a8ed481'
- 'c47c1a4ac855a4cd5415e5179a31dc9b'
- 

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

2013-03-13 Thread Jelle van der Waa
Date: Wednesday, March 13, 2013 @ 22:28:16
  Author: jelle
Revision: 86241

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

Added:
  gsmartcontrol/repos/community-i686/PKGBUILD
(from rev 86240, gsmartcontrol/trunk/PKGBUILD)
  gsmartcontrol/repos/community-i686/gsmartcontrol.desktop
(from rev 86240, gsmartcontrol/trunk/gsmartcontrol.desktop)
  gsmartcontrol/repos/community-i686/gsmartcontrol.install
(from rev 86240, gsmartcontrol/trunk/gsmartcontrol.install)
  gsmartcontrol/repos/community-i686/org.archlinux.pkexec.gsmartcontrol.policy
(from rev 86240, 
gsmartcontrol/trunk/org.archlinux.pkexec.gsmartcontrol.policy)
  gsmartcontrol/repos/community-x86_64/PKGBUILD
(from rev 86240, gsmartcontrol/trunk/PKGBUILD)
  gsmartcontrol/repos/community-x86_64/gsmartcontrol.desktop
(from rev 86240, gsmartcontrol/trunk/gsmartcontrol.desktop)
  gsmartcontrol/repos/community-x86_64/gsmartcontrol.install
(from rev 86240, gsmartcontrol/trunk/gsmartcontrol.install)
  gsmartcontrol/repos/community-x86_64/org.archlinux.pkexec.gsmartcontrol.policy
(from rev 86240, 
gsmartcontrol/trunk/org.archlinux.pkexec.gsmartcontrol.policy)
Deleted:
  gsmartcontrol/repos/community-i686/PKGBUILD
  gsmartcontrol/repos/community-i686/gsmartcontrol.desktop
  gsmartcontrol/repos/community-i686/gsmartcontrol.install
  gsmartcontrol/repos/community-i686/org.archlinux.pkexec.gsmartcontrol.policy
  gsmartcontrol/repos/community-x86_64/PKGBUILD
  gsmartcontrol/repos/community-x86_64/gsmartcontrol.desktop
  gsmartcontrol/repos/community-x86_64/gsmartcontrol.install
  gsmartcontrol/repos/community-x86_64/org.archlinux.pkexec.gsmartcontrol.policy

+
 community-i686/PKGBUILD|   91 +--
 community-i686/gsmartcontrol.desktop   |   18 +++---
 community-i686/gsmartcontrol.install   |   25 
 community-x86_64/PKGBUILD  |   91 +--
 community-x86_64/gsmartcontrol.desktop |   18 +++---
 community-x86_64/gsmartcontrol.install |   25 
 6 files changed, 146 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-13 21:24:14 UTC (rev 86240)
+++ community-i686/PKGBUILD 2013-03-13 21:28:16 UTC (rev 86241)
@@ -1,41 +0,0 @@
-# Maintainer: Jelle van der Waa je...@vdwaa.nl
-
-pkgname=gsmartcontrol
-pkgver=0.8.7
-pkgrel=2
-pkgdesc=A graphical user interface for the smartctl hard disk drive health 
inspection tool.
-arch=('i686' 'x86_64')
-url=http://gsmartcontrol.berlios.de/home/index.php/en/Home;
-license=('GPL3')
-depends=('smartmontools' 'pcre' 'gtkmm' 'libglademm' 'glib2' 'xorg-xmessage')
-optdepends=('polkit: to run gparted directly from menu')
-install=${pkgname}.install
-source=(http://download.berlios.de/gsmartcontrol/${pkgname}-${pkgver}.tar.bz2 
org.archlinux.pkexec.gsmartcontrol.policy gsmartcontrol.desktop)
-md5sums=('6d104c2ffc1e693cd1a8052a6d7e3b30'
- 'e7b9380849cdcaa4356a42559ea7954f'
- '19b20293a639e51fa2abb929a3faae01')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make 
-}
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-make check
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-# Install pexec fixed desktop file
-install -Dm755 $srcdir/gsmartcontrol.desktop 
$pkgdir/usr/share/applications/gsmartcontrol.desktop
-
-# Install pexec file
-install -Dm766 $srcdir/org.archlinux.pkexec.gsmartcontrol.policy \
-
$pkgdir/usr/share/polkit-1/actions/org.archlinux.pkexec.gsmartcontrol.policy 
-
-  }

Copied: gsmartcontrol/repos/community-i686/PKGBUILD (from rev 86240, 
gsmartcontrol/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-13 21:28:16 UTC (rev 86241)
@@ -0,0 +1,50 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+pkgname=gsmartcontrol
+pkgver=0.8.7
+pkgrel=3
+pkgdesc=A graphical user interface for the smartctl hard disk drive health 
inspection tool.
+arch=('i686' 'x86_64')
+url=http://gsmartcontrol.berlios.de/home/index.php/en/Home;
+license=('GPL3')
+depends=('smartmontools' 'gtkmm' 'xorg-xmessage' 'hicolor-icon-theme' 'polkit')
+optdepends=('polkit-gnome: to run gsmartcontrol directly from menu')
+install=${pkgname}.install
+source=(http://download.berlios.de/gsmartcontrol/${pkgname}-${pkgver}.tar.bz2
+org.archlinux.pkexec.gsmartcontrol.policy)
+md5sums=('6d104c2ffc1e693cd1a8052a6d7e3b30'
+ 'e403f8e06e6b8a3d1a99da5e584b2257')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make 
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+make check
+}
+
+package() {

[arch-commits] Commit in junit/trunk (Manifest.txt PKGBUILD)

2013-03-13 Thread Guillaume Alaux
Date: Wednesday, March 13, 2013 @ 22:30:57
  Author: guillaume
Revision: 179988

Added Class-path : hamcrest-core.jar to Manifest FS#34273

Added:
  junit/trunk/Manifest.txt
Modified:
  junit/trunk/PKGBUILD

--+
 Manifest.txt |1 +
 PKGBUILD |9 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

Added: Manifest.txt
===
--- Manifest.txt(rev 0)
+++ Manifest.txt2013-03-13 21:30:57 UTC (rev 179988)
@@ -0,0 +1 @@
+Class-Path: hamcrest-core.jar

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 21:27:59 UTC (rev 179987)
+++ PKGBUILD2013-03-13 21:30:57 UTC (rev 179988)
@@ -1,13 +1,15 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=junit
 pkgver=4.11
-pkgrel=2
+pkgrel=3
 pkgdesc='Automated testing framework for Java'
 arch=('any')
 url='http://junit.sourceforge.net/'
 license=('CPL')
-depends=('java-runtime-headless' 'java-hamcrest')
+depends=('java-environment' 'java-hamcrest')
 makedepends=('git' 'apache-ant')
+source=(Manifest.txt)
+sha256sums=('2b17a21ab3167302df8c41c3fec63e214b0405a760bc2b3e052be7341171fb1f')
 
 build() {
   cd ${srcdir}
@@ -19,6 +21,9 @@
   git checkout r${pkgver}
 
   ant dist -Dversion-status=''
+
+  # FS#34273
+  jar ufm ${pkgname}${pkgver}/${pkgname}-dep-${pkgver}.jar 
${srcdir}/Manifest.txt
 }
 
 check() {



[arch-commits] Commit in junit/repos/extra-any (Manifest.txt PKGBUILD PKGBUILD)

2013-03-13 Thread Guillaume Alaux
Date: Wednesday, March 13, 2013 @ 22:31:46
  Author: guillaume
Revision: 179989

archrelease: copy trunk to extra-any

Added:
  junit/repos/extra-any/Manifest.txt
(from rev 179988, junit/trunk/Manifest.txt)
  junit/repos/extra-any/PKGBUILD
(from rev 179988, junit/trunk/PKGBUILD)
Deleted:
  junit/repos/extra-any/PKGBUILD

--+
 Manifest.txt |1 
 PKGBUILD |   75 ++---
 2 files changed, 41 insertions(+), 35 deletions(-)

Copied: junit/repos/extra-any/Manifest.txt (from rev 179988, 
junit/trunk/Manifest.txt)
===
--- Manifest.txt(rev 0)
+++ Manifest.txt2013-03-13 21:31:46 UTC (rev 179989)
@@ -0,0 +1 @@
+Class-Path: hamcrest-core.jar

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 21:30:57 UTC (rev 179988)
+++ PKGBUILD2013-03-13 21:31:46 UTC (rev 179989)
@@ -1,35 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=junit
-pkgver=4.11
-pkgrel=2
-pkgdesc='Automated testing framework for Java'
-arch=('any')
-url='http://junit.sourceforge.net/'
-license=('CPL')
-depends=('java-runtime-headless' 'java-hamcrest')
-makedepends=('git' 'apache-ant')
-
-build() {
-  cd ${srcdir}
-
-  # No source tarball available: 
https://github.com/junit-team/junit/blob/r4.11/BUILDING
-  # So building from specific github tag: 
https://github.com/junit-team/junit/tags
-  git clone https://github.com/junit-team/${pkgname}.git
-  cd junit
-  git checkout r${pkgver}
-
-  ant dist -Dversion-status=''
-}
-
-check() {
-  cd ${srcdir}/${pkgname}
-
-  ant test
-}
-
-package() {
-  install -Dm644 
${srcdir}/${pkgname}/${pkgname}${pkgver}/${pkgname}-dep-${pkgver}.jar \
- ${pkgdir}/usr/share/java/${pkgname}-${pkgver}.jar
-  ln -s ${pkgname}-${pkgver}.jar \
- ${pkgdir}/usr/share/java/${pkgname}.jar
-}

Copied: junit/repos/extra-any/PKGBUILD (from rev 179988, junit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-13 21:31:46 UTC (rev 179989)
@@ -0,0 +1,40 @@
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+pkgname=junit
+pkgver=4.11
+pkgrel=3
+pkgdesc='Automated testing framework for Java'
+arch=('any')
+url='http://junit.sourceforge.net/'
+license=('CPL')
+depends=('java-environment' 'java-hamcrest')
+makedepends=('git' 'apache-ant')
+source=(Manifest.txt)
+sha256sums=('2b17a21ab3167302df8c41c3fec63e214b0405a760bc2b3e052be7341171fb1f')
+
+build() {
+  cd ${srcdir}
+
+  # No source tarball available: 
https://github.com/junit-team/junit/blob/r4.11/BUILDING
+  # So building from specific github tag: 
https://github.com/junit-team/junit/tags
+  git clone https://github.com/junit-team/${pkgname}.git
+  cd junit
+  git checkout r${pkgver}
+
+  ant dist -Dversion-status=''
+
+  # FS#34273
+  jar ufm ${pkgname}${pkgver}/${pkgname}-dep-${pkgver}.jar 
${srcdir}/Manifest.txt
+}
+
+check() {
+  cd ${srcdir}/${pkgname}
+
+  ant test
+}
+
+package() {
+  install -Dm644 
${srcdir}/${pkgname}/${pkgname}${pkgver}/${pkgname}-dep-${pkgver}.jar \
+ ${pkgdir}/usr/share/java/${pkgname}-${pkgver}.jar
+  ln -s ${pkgname}-${pkgver}.jar \
+ ${pkgdir}/usr/share/java/${pkgname}.jar
+}



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

2013-03-13 Thread Andrea Scarpino
Date: Wednesday, March 13, 2013 @ 22:32:55
  Author: andrea
Revision: 179990

upgpkg: calligra 2.6.2-1

Upstream release

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 21:31:46 UTC (rev 179989)
+++ PKGBUILD2013-03-13 21:32:55 UTC (rev 179990)
@@ -17,8 +17,8 @@
  'calligra-handbook'
  'calligra-braindump'
  'calligra-flow')
-pkgver=2.6.1
-pkgrel=3
+pkgver=2.6.2
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')
@@ -28,7 +28,7 @@
  'openjpeg' 'kdegraphics-okular' 'pstoedit' 'vc')
 groups=('calligra')
 
source=(http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('8ba98f3ccb3c5097eb059d86b51f6139')
+md5sums=('1c2feb12677ee71eb2e428e589b33862')
 
 build() {
   mkdir build



[arch-commits] Commit in calligra/repos (56 files)

2013-03-13 Thread Andrea Scarpino
Date: Wednesday, March 13, 2013 @ 22:33:19
  Author: andrea
Revision: 179991

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

Added:
  calligra/repos/extra-i686/PKGBUILD
(from rev 179990, calligra/trunk/PKGBUILD)
  calligra/repos/extra-i686/calligra-braindump.install
(from rev 179990, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-i686/calligra-filters.install
(from rev 179990, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-i686/calligra-flow.install
(from rev 179990, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-i686/calligra-karbon.install
(from rev 179990, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-i686/calligra-kexi.install
(from rev 179990, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-i686/calligra-krita.install
(from rev 179990, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-i686/calligra-plan.install
(from rev 179990, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-i686/calligra-plugins.install
(from rev 179990, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-i686/calligra-sheets.install
(from rev 179990, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-i686/calligra-stage.install
(from rev 179990, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-i686/calligra-tools.install
(from rev 179990, calligra/trunk/calligra-tools.install)
  calligra/repos/extra-i686/calligra-words.install
(from rev 179990, calligra/trunk/calligra-words.install)
  calligra/repos/extra-i686/calligra.install
(from rev 179990, calligra/trunk/calligra.install)
  calligra/repos/extra-x86_64/PKGBUILD
(from rev 179990, calligra/trunk/PKGBUILD)
  calligra/repos/extra-x86_64/calligra-braindump.install
(from rev 179990, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-x86_64/calligra-filters.install
(from rev 179990, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-x86_64/calligra-flow.install
(from rev 179990, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-x86_64/calligra-karbon.install
(from rev 179990, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-x86_64/calligra-kexi.install
(from rev 179990, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-x86_64/calligra-krita.install
(from rev 179990, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-x86_64/calligra-plan.install
(from rev 179990, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-x86_64/calligra-plugins.install
(from rev 179990, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-x86_64/calligra-sheets.install
(from rev 179990, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-x86_64/calligra-stage.install
(from rev 179990, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-x86_64/calligra-tools.install
(from rev 179990, calligra/trunk/calligra-tools.install)
  calligra/repos/extra-x86_64/calligra-words.install
(from rev 179990, calligra/trunk/calligra-words.install)
  calligra/repos/extra-x86_64/calligra.install
(from rev 179990, calligra/trunk/calligra.install)
Deleted:
  calligra/repos/extra-i686/PKGBUILD
  calligra/repos/extra-i686/calligra-braindump.install
  calligra/repos/extra-i686/calligra-filters.install
  calligra/repos/extra-i686/calligra-flow.install
  calligra/repos/extra-i686/calligra-karbon.install
  calligra/repos/extra-i686/calligra-kexi.install
  calligra/repos/extra-i686/calligra-krita.install
  calligra/repos/extra-i686/calligra-plan.install
  calligra/repos/extra-i686/calligra-plugins.install
  calligra/repos/extra-i686/calligra-sheets.install
  calligra/repos/extra-i686/calligra-stage.install
  calligra/repos/extra-i686/calligra-tools.install
  calligra/repos/extra-i686/calligra-words.install
  calligra/repos/extra-i686/calligra.install
  calligra/repos/extra-x86_64/PKGBUILD
  calligra/repos/extra-x86_64/calligra-braindump.install
  calligra/repos/extra-x86_64/calligra-filters.install
  calligra/repos/extra-x86_64/calligra-flow.install
  calligra/repos/extra-x86_64/calligra-karbon.install
  calligra/repos/extra-x86_64/calligra-kexi.install
  calligra/repos/extra-x86_64/calligra-krita.install
  calligra/repos/extra-x86_64/calligra-plan.install
  calligra/repos/extra-x86_64/calligra-plugins.install
  calligra/repos/extra-x86_64/calligra-sheets.install
  calligra/repos/extra-x86_64/calligra-stage.install
  calligra/repos/extra-x86_64/calligra-tools.install
  calligra/repos/extra-x86_64/calligra-words.install
  calligra/repos/extra-x86_64/calligra.install

-+
 extra-i686/PKGBUILD |  442 +++---
 extra-i686/calligra-braindump.install   |   24 -
 extra-i686/calligra-filters.install |   22 -
 extra-i686/calligra-flow.install|   24 -
 

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

2013-03-13 Thread Guillaume Alaux
Date: Wednesday, March 13, 2013 @ 23:22:37
  Author: guillaume
Revision: 179994

upgpkg: apache-ant 1.9.0-1

Upstream release

Modified:
  apache-ant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 21:40:20 UTC (rev 179993)
+++ PKGBUILD2013-03-13 22:22:37 UTC (rev 179994)
@@ -3,62 +3,72 @@
 # Contributor: Andrew Wright andr...@photism.org
 # Contributor: Paul Mattal p...@archlinux.org
 pkgname=apache-ant
-pkgver=1.8.4
+pkgver=1.9.0
 pkgrel=1
-pkgdesc=A java-based build tool
+pkgdesc='A java-based build tool'
 arch=('any')
-url=http://ant.apache.org/;
+url='http://ant.apache.org/'
 license=('APACHE')
 depends=('java-environment')
-makedepends=('java-environment' 'xalan-java' 'junit' 'apache-ant')
-optdepends=('junit: to jave junit on the classpath in javac tasks')
-#http://apache.org/dist/ant/source/${pkgname}-${pkgver}-src.tar.bz2
-source=(http://apache.org/dist/ant/binaries/${pkgname}-${pkgver}-bin.tar.bz2
+makedepends=('java-environment' 'apache-ant' 'junit')
+optdepends=('junit: to use the junit tasks')
+source=(http://apache.org/dist/ant/source/${pkgname}-${pkgver}-src.tar.bz2
 ${pkgname}.sh
 ${pkgname}.csh)
-md5sums=('561838e665e5dc185dde9d220fce1336'
- 'dbfa1e8dd4bab2f5821f5abe50835c83'
- 'b3f67824043b6fb00667bb7a4007af42')
+sha256sums=('92d21bae9f739388b06087d322fa970945fa7e50ebd720ce4451e84a1f92bbc8'
+'182b9212610790966d3a018d3cbab2e5327dd9fd11dc15dd1f377853216f5718'
+'919a3ab1acae1d0d190fe6e0034b00975caab40e55359a720bfccd098fe2d995')
 
 _ant_home=/usr/share/${pkgname}
 
-#build() {
-#  cd ${srcdir}/${pkgname}-${pkgver}
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
 
-#  ant -Ddest=optional -f fetch.xml
+  ant -Ddest=optional -f fetch.xml
 
-#  ln -s /usr/share/java/junit.jar lib/optional/junit.jar
-#  ./bootstrap.sh
+  rm lib/optional/junit-4.11.jar
+  ln -s /usr/share/java/junit.jar lib/optional/junit-4.11.jar
+  rm lib/optional/hamcrest-core-1.3.jar
+  ln -s /usr/share/java/hamcrest-core.jar lib/optional/hamcrest-core-1.3.jar
 
-#  mkdir ${srcdir}/.m2
-#  ./bootstrap/bin/ant -Ddest=optional -Ddest.dir=${srcdir}/.m2 -f fetch.xml
-#  ./bootstrap/bin/ant -f fetch.xml -nouserlib -Ddest=optional
+  ant dist
+}
 
-#  sh build.sh dist
-
-#  ant dist
+#check() {
+#  cd ${srcdir}/${pkgname}-${pkgver}
+#
+#  ant test
 #}
 
 package() {
-#  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}
 
-  install -dm755 ${pkgdir}/${_ant_home}/bin
-  cp -Rp etc ${pkgdir}/${_ant_home}
-  find ./bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
--exec install -m755 {} ${pkgdir}/${_ant_home}/bin \;
+  install -dm755 ${pkgdir}${_ant_home}
 
+  install -dm755 ${pkgdir}/etc/${pkgname}
+#  cp -Rp etc/* ${pkgdir}/etc/${pkgname}
+#  rm ${pkgdir}/etc/${pkgname}/ant-bootstrap.jar
+#  ln -s /etc/${pkgname} ${pkgdir}${_ant_home}/etc
+  cp -Rp etc ${pkgdir}/usr/share/${pkgname}
+
+  install -dm755 ${pkgdir}${_ant_home}/bin
+  find bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
+-exec install -m755 {} ${pkgdir}${_ant_home}/bin \;
+
   install -dm755 ${pkgdir}/usr/bin
   ln -s ${_ant_home}/bin/ant ${pkgdir}/usr/bin/ant
 
   install -dm755 ${pkgdir}/usr/share/java/${pkgname}
-  install -m644 lib/*.jar ${pkgdir}/usr/share/java/${pkgname}
-  ln -s /usr/share/java/${pkgname} ${pkgdir}/${_ant_home}/lib
-
-  # Symlink to junit so it's on the javac build path
+  install -m644 lib/*.jar \
+../lib/optional/*.jar \
+${pkgdir}/usr/share/java/${pkgname}
+  ln -s /usr/share/java/${pkgname} ${pkgdir}${_ant_home}/lib
+  # Provided
   # http://bugs.archlinux.org/task/15229
-  # http://ant.apache.org/manual/install.html#optionalTasks
+  rm ${pkgdir}/usr/share/java/${pkgname}/junit-4.11.jar
   ln -sf ../junit.jar ${pkgdir}/usr/share/java/apache-ant/
+  rm ${pkgdir}/usr/share/java/${pkgname}/hamcrest-core-1.3.jar
+  ln -sf ../hamcrest-core.jar ${pkgdir}/usr/share/java/apache-ant/
 
   # fix python2 path
   sed -i 's|/usr/bin/python|/usr/bin/python2|' 
${pkgdir}${_ant_home}/bin/runant.py



[arch-commits] Commit in apache-ant/repos/extra-any (6 files)

2013-03-13 Thread Guillaume Alaux
Date: Wednesday, March 13, 2013 @ 23:22:44
  Author: guillaume
Revision: 179995

archrelease: copy trunk to extra-any

Added:
  apache-ant/repos/extra-any/PKGBUILD
(from rev 179994, apache-ant/trunk/PKGBUILD)
  apache-ant/repos/extra-any/apache-ant.csh
(from rev 179994, apache-ant/trunk/apache-ant.csh)
  apache-ant/repos/extra-any/apache-ant.sh
(from rev 179994, apache-ant/trunk/apache-ant.sh)
Deleted:
  apache-ant/repos/extra-any/PKGBUILD
  apache-ant/repos/extra-any/apache-ant.csh
  apache-ant/repos/extra-any/apache-ant.sh

+
 PKGBUILD   |  158 +--
 apache-ant.csh |2 
 apache-ant.sh  |2 
 3 files changed, 86 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-13 22:22:37 UTC (rev 179994)
+++ PKGBUILD2013-03-13 22:22:44 UTC (rev 179995)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Andrew Wright andr...@photism.org
-# Contributor: Paul Mattal p...@archlinux.org
-pkgname=apache-ant
-pkgver=1.8.4
-pkgrel=1
-pkgdesc=A java-based build tool
-arch=('any')
-url=http://ant.apache.org/;
-license=('APACHE')
-depends=('java-environment')
-makedepends=('java-environment' 'xalan-java' 'junit' 'apache-ant')
-optdepends=('junit: to jave junit on the classpath in javac tasks')
-#http://apache.org/dist/ant/source/${pkgname}-${pkgver}-src.tar.bz2
-source=(http://apache.org/dist/ant/binaries/${pkgname}-${pkgver}-bin.tar.bz2
-${pkgname}.sh
-${pkgname}.csh)
-md5sums=('561838e665e5dc185dde9d220fce1336'
- 'dbfa1e8dd4bab2f5821f5abe50835c83'
- 'b3f67824043b6fb00667bb7a4007af42')
-
-_ant_home=/usr/share/${pkgname}
-
-#build() {
-#  cd ${srcdir}/${pkgname}-${pkgver}
-
-#  ant -Ddest=optional -f fetch.xml
-
-#  ln -s /usr/share/java/junit.jar lib/optional/junit.jar
-#  ./bootstrap.sh
-
-#  mkdir ${srcdir}/.m2
-#  ./bootstrap/bin/ant -Ddest=optional -Ddest.dir=${srcdir}/.m2 -f fetch.xml
-#  ./bootstrap/bin/ant -f fetch.xml -nouserlib -Ddest=optional
-
-#  sh build.sh dist
-
-#  ant dist
-#}
-
-package() {
-#  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  install -dm755 ${pkgdir}/${_ant_home}/bin
-  cp -Rp etc ${pkgdir}/${_ant_home}
-  find ./bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
--exec install -m755 {} ${pkgdir}/${_ant_home}/bin \;
-
-  install -dm755 ${pkgdir}/usr/bin
-  ln -s ${_ant_home}/bin/ant ${pkgdir}/usr/bin/ant
-
-  install -dm755 ${pkgdir}/usr/share/java/${pkgname}
-  install -m644 lib/*.jar ${pkgdir}/usr/share/java/${pkgname}
-  ln -s /usr/share/java/${pkgname} ${pkgdir}/${_ant_home}/lib
-
-  # Symlink to junit so it's on the javac build path
-  # http://bugs.archlinux.org/task/15229
-  # http://ant.apache.org/manual/install.html#optionalTasks
-  ln -sf ../junit.jar ${pkgdir}/usr/share/java/apache-ant/
-
-  # fix python2 path
-  sed -i 's|/usr/bin/python|/usr/bin/python2|' 
${pkgdir}${_ant_home}/bin/runant.py
-
-  # install profile.d script
-  install -dm755 ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/${pkgname}.{csh,sh} ${pkgdir}/etc/profile.d/
-
-  # License says NOTICE file should be redistributed for derivative works
-  cd ${srcdir}/${pkgname}-${pkgver}
-  install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 LICENSE NOTICE ${pkgdir}/usr/share/licenses/${pkgname}
-}

Copied: apache-ant/repos/extra-any/PKGBUILD (from rev 179994, 
apache-ant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-13 22:22:44 UTC (rev 179995)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Andrew Wright andr...@photism.org
+# Contributor: Paul Mattal p...@archlinux.org
+pkgname=apache-ant
+pkgver=1.9.0
+pkgrel=1
+pkgdesc='A java-based build tool'
+arch=('any')
+url='http://ant.apache.org/'
+license=('APACHE')
+depends=('java-environment')
+makedepends=('java-environment' 'apache-ant' 'junit')
+optdepends=('junit: to use the junit tasks')
+source=(http://apache.org/dist/ant/source/${pkgname}-${pkgver}-src.tar.bz2
+${pkgname}.sh
+${pkgname}.csh)
+sha256sums=('92d21bae9f739388b06087d322fa970945fa7e50ebd720ce4451e84a1f92bbc8'
+'182b9212610790966d3a018d3cbab2e5327dd9fd11dc15dd1f377853216f5718'
+'919a3ab1acae1d0d190fe6e0034b00975caab40e55359a720bfccd098fe2d995')
+
+_ant_home=/usr/share/${pkgname}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ant -Ddest=optional -f fetch.xml
+
+  rm lib/optional/junit-4.11.jar
+  ln -s /usr/share/java/junit.jar lib/optional/junit-4.11.jar
+  rm lib/optional/hamcrest-core-1.3.jar
+  ln -s /usr/share/java/hamcrest-core.jar lib/optional/hamcrest-core-1.3.jar
+
+  ant dist
+}
+
+#check() {
+#  cd ${srcdir}/${pkgname}-${pkgver}
+#
+#  ant test
+#}
+
+package() {
+  

[arch-commits] Commit in mpfr/trunk (PKGBUILD mpfr-3.1.1-p2.patch)

2013-03-13 Thread Allan McRae
Date: Thursday, March 14, 2013 @ 02:26:51
  Author: allan
Revision: 179996

upgpkg: mpfr 3.1.2-1

upstream update

Modified:
  mpfr/trunk/PKGBUILD
Deleted:
  mpfr/trunk/mpfr-3.1.1-p2.patch

-+
 PKGBUILD|   19 +-
 mpfr-3.1.1-p2.patch |  405 --
 2 files changed, 9 insertions(+), 415 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-13 22:22:44 UTC (rev 179995)
+++ PKGBUILD2013-03-14 01:26:51 UTC (rev 179996)
@@ -3,10 +3,11 @@
 # Contributor: damir da...@archlinux.org
 
 pkgname=mpfr
-_pkgver=3.1.1
-_patchlevel=p2
-pkgver=${_pkgver}.${_patchlevel}
-pkgrel=2
+_pkgver=3.1.2
+#_patchlevel=p1
+#pkgver=${_pkgver}.${_patchlevel}
+pkgver=${_pkgver}
+pkgrel=1
 pkgdesc=Multiple-precision floating-point library
 arch=('i686' 'x86_64')
 url=http://www.mpfr.org/;
@@ -14,15 +15,13 @@
 depends=('gmp=5.0')
 options=('!libtool')
 install=mpfr.install
-source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz{,.asc}
-   mpfr-${_pkgver}-${_patchlevel}.patch)
-md5sums=('91d51c41fcf2799e4ee7a7126fc95c17'
- '91b187a2229211e543ba6fb82a079b2c'
- 'eef835f97bc26ea20b0232bd913acdd8')
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz{,.asc})
+md5sums=('e3d203d188b8fe60bb6578dd3152e05c'
+ '63d1a00bedd4fed3717115297f70d029')
 
 build() {
   cd ${srcdir}/${pkgname}-${_pkgver}
-  patch -p1 -i $srcdir/mpfr-${_pkgver}-${_patchlevel}.patch
+  #patch -p1 -i $srcdir/mpfr-${_pkgver}-${_patchlevel}.patch
   ./configure --prefix=/usr --enable-thread-safe --enable-shared
   make
 }

Deleted: mpfr-3.1.1-p2.patch
===
--- mpfr-3.1.1-p2.patch 2013-03-13 22:22:44 UTC (rev 179995)
+++ mpfr-3.1.1-p2.patch 2013-03-14 01:26:51 UTC (rev 179996)
@@ -1,405 +0,0 @@
-diff -Naurd mpfr-3.1.1-a/PATCHES mpfr-3.1.1-b/PATCHES
 mpfr-3.1.1-a/PATCHES   2012-08-30 09:28:51.0 +
-+++ mpfr-3.1.1-b/PATCHES   2012-08-30 09:28:51.0 +
-@@ -0,0 +1 @@
-+get_decimal64
-diff -Naurd mpfr-3.1.1-a/VERSION mpfr-3.1.1-b/VERSION
 mpfr-3.1.1-a/VERSION   2012-07-03 15:01:13.0 +
-+++ mpfr-3.1.1-b/VERSION   2012-08-30 09:28:51.0 +
-@@ -1 +1 @@
--3.1.1
-+3.1.1-p1
-diff -Naurd mpfr-3.1.1-a/src/get_d64.c mpfr-3.1.1-b/src/get_d64.c
 mpfr-3.1.1-a/src/get_d64.c 2012-07-03 15:01:18.0 +
-+++ mpfr-3.1.1-b/src/get_d64.c 2012-08-30 09:28:51.0 +
-@@ -32,6 +32,10 @@
- 
- #ifdef MPFR_WANT_DECIMAL_FLOATS
- 
-+#ifndef DEC64_MAX
-+# define DEC64_MAX 9.999E384dd
-+#endif
-+
- #ifdef DPD_FORMAT
- static int T[1000] = {
-   0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 32,
-@@ -142,26 +146,14 @@
- static _Decimal64
- get_decimal64_min (int negative)
- {
--  union ieee_double_extract x;
--
--  x.s.sig = (negative) ? 1 : 0;
--  x.s.exp = 0;
--  x.s.manh = 0;
--  x.s.manl = 1;
--  return x.d;
-+  return negative ? - 1E-398dd : 1E-398dd;
- }
- 
- /* construct the decimal64 largest finite number with given sign */
- static _Decimal64
- get_decimal64_max (int negative)
- {
--  union ieee_double_extract x;
--
--  x.s.sig = (negative) ? 1 : 0;
--  x.s.exp = 1919;
--  x.s.manh = 1048575; /* 2^20-1 */
--  x.s.manl = ~0;
--  return x.d;
-+  return negative ? - DEC64_MAX : DEC64_MAX;
- }
- 
- /* one-to-one conversion:
-@@ -334,7 +326,8 @@
-   /* the largest decimal64 number is just below 10^(385)  2^1279 */
-   else if (MPFR_UNLIKELY (e  1279)) /* then src = 2^1279 */
- {
--  if (MPFR_RNDZ || (rnd_mode == MPFR_RNDU  negative != 0)
-+  if (rnd_mode == MPFR_RNDZ
-+  || (rnd_mode == MPFR_RNDU  negative != 0)
-   || (rnd_mode == MPFR_RNDD  negative == 0))
- return get_decimal64_max (negative);
-   else
-@@ -354,6 +347,15 @@
-  which corresponds to s=[0.]1000...000 and e=-397 */
-   if (e  -397)
- {
-+  if (rnd_mode == MPFR_RNDN  e == -398)
-+{
-+  /* If 0.5E-398  |src|  1E-398 (smallest subnormal),
-+ src should round to +/- 1E-398 in MPFR_RNDN. */
-+  mpfr_get_str (s, e, 10, 1, src, MPFR_RNDA);
-+  return e == -398  s[negative] = '5' ?
-+get_decimal64_zero (negative) :
-+get_decimal64_min (negative);
-+}
-   if (rnd_mode == MPFR_RNDZ || rnd_mode == MPFR_RNDN
-   || (rnd_mode == MPFR_RNDD  negative == 0)
-   || (rnd_mode == MPFR_RNDU  negative != 0))
-@@ -379,7 +381,8 @@
-  which corresponds to s=[0.]...999 and e=385 */
-   else if (e  385)
- {
--  if (MPFR_RNDZ || (rnd_mode == MPFR_RNDU  negative != 0)
-+  if (rnd_mode == MPFR_RNDZ
-+  || (rnd_mode == MPFR_RNDU  negative != 0)
-   || (rnd_mode == 

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

2013-03-13 Thread Allan McRae
Date: Thursday, March 14, 2013 @ 02:27:48
  Author: allan
Revision: 179997

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

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

-+
 testing-i686/PKGBUILD   |   37 +
 testing-i686/mpfr.install   |   20 
 testing-x86_64/PKGBUILD |   37 +
 testing-x86_64/mpfr.install |   20 
 4 files changed, 114 insertions(+)

Copied: mpfr/repos/testing-i686/PKGBUILD (from rev 179996, mpfr/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-03-14 01:27:48 UTC (rev 179997)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=mpfr
+_pkgver=3.1.2
+#_patchlevel=p1
+#pkgver=${_pkgver}.${_patchlevel}
+pkgver=${_pkgver}
+pkgrel=1
+pkgdesc=Multiple-precision floating-point library
+arch=('i686' 'x86_64')
+url=http://www.mpfr.org/;
+license=('LGPL')
+depends=('gmp=5.0')
+options=('!libtool')
+install=mpfr.install
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz{,.asc})
+md5sums=('e3d203d188b8fe60bb6578dd3152e05c'
+ '63d1a00bedd4fed3717115297f70d029')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  #patch -p1 -i $srcdir/mpfr-${_pkgver}-${_patchlevel}.patch
+  ./configure --prefix=/usr --enable-thread-safe --enable-shared
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: mpfr/repos/testing-i686/mpfr.install (from rev 179996, 
mpfr/trunk/mpfr.install)
===
--- testing-i686/mpfr.install   (rev 0)
+++ testing-i686/mpfr.install   2013-03-14 01:27:48 UTC (rev 179997)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(mpfr.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: mpfr/repos/testing-x86_64/PKGBUILD (from rev 179996, 
mpfr/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-03-14 01:27:48 UTC (rev 179997)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=mpfr
+_pkgver=3.1.2
+#_patchlevel=p1
+#pkgver=${_pkgver}.${_patchlevel}
+pkgver=${_pkgver}
+pkgrel=1
+pkgdesc=Multiple-precision floating-point library
+arch=('i686' 'x86_64')
+url=http://www.mpfr.org/;
+license=('LGPL')
+depends=('gmp=5.0')
+options=('!libtool')
+install=mpfr.install
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz{,.asc})
+md5sums=('e3d203d188b8fe60bb6578dd3152e05c'
+ '63d1a00bedd4fed3717115297f70d029')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  #patch -p1 -i $srcdir/mpfr-${_pkgver}-${_patchlevel}.patch
+  ./configure --prefix=/usr --enable-thread-safe --enable-shared
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: mpfr/repos/testing-x86_64/mpfr.install (from rev 179996, 
mpfr/trunk/mpfr.install)
===
--- testing-x86_64/mpfr.install (rev 0)
+++ testing-x86_64/mpfr.install 2013-03-14 01:27:48 UTC (rev 179997)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(mpfr.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



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

2013-03-13 Thread Dan McGee
Date: Thursday, March 14, 2013 @ 03:05:36
  Author: dan
Revision: 179998

upgpkg: git 1.8.2-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-14 01:27:48 UTC (rev 179997)
+++ PKGBUILD2013-03-14 02:05:36 UTC (rev 179998)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=git
-pkgver=1.8.1.5
+pkgver=1.8.2
 pkgrel=1
 pkgdesc=the fast distributed version control system
 arch=(i686 x86_64)
@@ -82,7 +82,11 @@
   sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' \
 $(find $pkgdir -name '*.py') \
 $pkgdir/usr/lib/git-core/git-p4 \
-$pkgdir/usr/share/git/gitview/gitview
+$pkgdir/usr/share/git/gitview/gitview \
+$pkgdir/usr/share/git/remote-helpers/git-remote-bzr \
+$pkgdir/usr/share/git/remote-helpers/git-remote-hg
+  sed -i 's|#![ ]*/usr/bin/python|#!/usr/bin/python2|' \
+$pkgdir/usr/share/git/svn-fe/svnrdump_sim.py
 
   # emacs interface
   cd contrib/emacs
@@ -103,7 +107,7 @@
   install -D -m 644 $srcdir/git-daemon.socket 
$pkgdir/usr/lib/systemd/system/git-daemon.socket
 }
 
-md5sums=('ce168861c23a700b40ffe94475bb1d9e'
- '3ea0d73b2fa09558454279aad9039a3b'
+md5sums=('210834d73c857931c3da34a65eb3e597'
+ '425e9421a1b128cfb46fa46d94cad919'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')



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

2013-03-13 Thread Dan McGee
Date: Thursday, March 14, 2013 @ 03:05:50
  Author: dan
Revision: 17

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 179998, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 179998, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 179998, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 179998, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 179998, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 179998, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 179998, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 179998, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 extra-i686/PKGBUILD  |  222 ++---
 extra-i686/git-daemon.socket |   18 +--
 extra-i686/git-daemon@.service   |   20 +--
 extra-i686/git.install   |   42 +++
 extra-x86_64/PKGBUILD|  222 ++---
 extra-x86_64/git-daemon.socket   |   18 +--
 extra-x86_64/git-daemon@.service |   20 +--
 extra-x86_64/git.install |   42 +++
 8 files changed, 306 insertions(+), 298 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-14 02:05:36 UTC (rev 179998)
+++ extra-i686/PKGBUILD 2013-03-14 02:05:50 UTC (rev 17)
@@ -1,109 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-
-pkgname=git
-pkgver=1.8.1.5
-pkgrel=1
-pkgdesc=the fast distributed version control system
-arch=(i686 x86_64)
-url=http://git-scm.com/;
-license=('GPL2')
-depends=('curl' 'expat=2.0' 'perl-error' 'perl=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps: git cvsimport')
-replaces=('git-core')
-provides=('git-core')
-backup=('etc/conf.d/git-daemon.conf')
-install=git.install
-source=(http://git-core.googlecode.com/files/git-$pkgver.tar.gz;
-http://git-core.googlecode.com/files/git-manpages-$pkgver.tar.gz;
-git-daemon@.service
-git-daemon.socket)
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-all
-
-  cd contrib/emacs
-  make prefix=/usr
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  local jobs
-  jobs=$(expr $MAKEFLAGS : '.*\(-j[0-9]*\).*')
-  mkdir -p /dev/shm/git-test
-  # We used to use this, but silly git regressions:
-  #GIT_TEST_OPTS=--root=/dev/shm/ \
-  # http://comments.gmane.org/gmane.comp.version-control.git/202020
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS=$jobs -Q \
-GIT_TEST_OPTS=--root=/dev/shm/git-test \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-INSTALLDIRS=vendor DESTDIR=$pkgdir install 
-
-  # bash completion
-  mkdir -p $pkgdir/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
$pkgdir/usr/share/bash-completion/completions/git 
-  # fancy git prompt
-  mkdir -p $pkgdir/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
$pkgdir/usr/share/git/git-prompt.sh
-  # more contrib stuff
-  cp -a ./contrib/* $pkgdir/usr/share/git/ 
-  # scripts are for python 2.x
-  sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' \
-$(find $pkgdir -name '*.py') \
-$pkgdir/usr/lib/git-core/git-p4 \
-$pkgdir/usr/share/git/gitview/gitview
-
-  # emacs interface
-  cd contrib/emacs
-  make prefix=/usr DESTDIR=$pkgdir install
-
-  # how 'bout some manpages?
-  for mansect in man1 man5 man7; do
-for manpage in $srcdir/$mansect/*; do
-  install -D -m644 $manpage 

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

2013-03-13 Thread Allan McRae
Date: Thursday, March 14, 2013 @ 04:54:49
  Author: allan
Revision: 180001

upgpkg: dejagnu 1.5.1-1

upstream update

Modified:
  dejagnu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-14 02:06:43 UTC (rev 18)
+++ PKGBUILD2013-03-14 03:54:49 UTC (rev 180001)
@@ -2,8 +2,8 @@
 # Maintainer: Allan McRae al...@archlinux.org
 
 pkgname=dejagnu
-pkgver=1.5
-pkgrel=2
+pkgver=1.5.1
+pkgrel=1
 pkgdesc=Framework for testing other programs
 arch=('any')
 url=http://www.gnu.org/software/dejagnu/;
@@ -12,10 +12,10 @@
 makedepends=('dejagnu')
 options=('!libtool')
 install=dejagnu.install
-source=(http://ftp.gnu.org/gnu/dejagnu/${pkgname}-${pkgver}.tar.gz)
-md5sums=('3df1cbca885e751e22d3ebd1ac64dc3c')
+source=(http://ftp.gnu.org/gnu/dejagnu/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('8386e04e362345f50ad169f052f4c4ab'
+ '59335adf4900b889c64827c5a9426252')
 
-
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr
@@ -29,5 +29,5 @@
 
 package() {
   cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
+  make DESTDIR=$pkgdir/ install
 }



[arch-commits] Commit in dejagnu/repos/extra-any (4 files)

2013-03-13 Thread Allan McRae
Date: Thursday, March 14, 2013 @ 04:55:31
  Author: allan
Revision: 180002

archrelease: copy trunk to extra-any

Added:
  dejagnu/repos/extra-any/PKGBUILD
(from rev 180001, dejagnu/trunk/PKGBUILD)
  dejagnu/repos/extra-any/dejagnu.install
(from rev 180001, dejagnu/trunk/dejagnu.install)
Deleted:
  dejagnu/repos/extra-any/PKGBUILD
  dejagnu/repos/extra-any/dejagnu.install

-+
 PKGBUILD|   66 +++---
 dejagnu.install |   30 
 2 files changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-14 03:54:49 UTC (rev 180001)
+++ PKGBUILD2013-03-14 03:55:31 UTC (rev 180002)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=dejagnu
-pkgver=1.5
-pkgrel=2
-pkgdesc=Framework for testing other programs
-arch=('any')
-url=http://www.gnu.org/software/dejagnu/;
-license=('GPL')
-depends=('sh' 'expect')
-makedepends=('dejagnu')
-options=('!libtool')
-install=dejagnu.install
-source=(http://ftp.gnu.org/gnu/dejagnu/${pkgname}-${pkgver}.tar.gz)
-md5sums=('3df1cbca885e751e22d3ebd1ac64dc3c')
-
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-}

Copied: dejagnu/repos/extra-any/PKGBUILD (from rev 180001, 
dejagnu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-14 03:55:31 UTC (rev 180002)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=dejagnu
+pkgver=1.5.1
+pkgrel=1
+pkgdesc=Framework for testing other programs
+arch=('any')
+url=http://www.gnu.org/software/dejagnu/;
+license=('GPL')
+depends=('sh' 'expect')
+makedepends=('dejagnu')
+options=('!libtool')
+install=dejagnu.install
+source=(http://ftp.gnu.org/gnu/dejagnu/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('8386e04e362345f50ad169f052f4c4ab'
+ '59335adf4900b889c64827c5a9426252')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Deleted: dejagnu.install
===
--- dejagnu.install 2013-03-14 03:54:49 UTC (rev 180001)
+++ dejagnu.install 2013-03-14 03:55:31 UTC (rev 180002)
@@ -1,15 +0,0 @@
-infodir=usr/share/info
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  install-info $infodir/dejagnu.info.gz $infodir/dir 2 /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  install-info --delete $infodir/dejagnu.info.gz $infodir/dir 2 /dev/null
-}

Copied: dejagnu/repos/extra-any/dejagnu.install (from rev 180001, 
dejagnu/trunk/dejagnu.install)
===
--- dejagnu.install (rev 0)
+++ dejagnu.install 2013-03-14 03:55:31 UTC (rev 180002)
@@ -0,0 +1,15 @@
+infodir=usr/share/info
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info $infodir/dejagnu.info.gz $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info --delete $infodir/dejagnu.info.gz $infodir/dir 2 /dev/null
+}