[arch-commits] Commit in lightdm/trunk (PKGBUILD lightdm-xdg-session-class.patch)

2013-11-05 Thread Maxime Gauduin
Date: Tuesday, November 5, 2013 @ 09:34:14
  Author: alucryd
Revision: 100483

upgpkg: lightdm 1:1.8.4-1

Modified:
  lightdm/trunk/PKGBUILD
Deleted:
  lightdm/trunk/lightdm-xdg-session-class.patch

-+
 PKGBUILD|9 --
 lightdm-xdg-session-class.patch |  130 --
 2 files changed, 3 insertions(+), 136 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 03:23:26 UTC (rev 100482)
+++ PKGBUILD2013-11-05 08:34:14 UTC (rev 100483)
@@ -4,8 +4,8 @@
 
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
-pkgver=1.8.1
-pkgrel=3
+pkgver=1.8.4
+pkgrel=1
 epoch=1
 pkgdesc=A lightweight display manager
 arch=('i686' 'x86_64')
@@ -19,9 +19,8 @@
 'lightdm-autologin.pam'
 'lightdm.rules'
 'lightdm-default-config.patch'
-'lightdm-xdg-session-class.patch'
 'Xsession')
-sha256sums=('e749ea72ac2517f592a8dfcd8bbdf7aba6729cb75c569c03347751d87f99305a'
+sha256sums=('92242d397628256c237dc5d66ac08a85207f4a6ddcc2e5c485ccb4b0b253cc56'
 '0d2adba25cdbe59e97ffd302083db9d5e23920780f41e04f64512cd6b633289a'
 'b29521fbd7a48a8f60b93ecca3b30c30bcb71560de8033c8d39b25c22c6f696f'
 'e8c4c5fd3b801a390d201166fd1fb9730e78a5c62928768103b870b6bd980ea0'
@@ -28,13 +27,11 @@
 '33e3c3d6e16c8d30756754ea3f31f5457c5be0343686aad287692be34958984a'
 'a89566307e1c81c24f037d854cbd472d2f94f8a4b759877a01563a332319f7d6'
 '0b2f740616110887d5c8662e40f1a8350fc0dfa6c7e99f6e3a5636c6b0ca714f'
-'1d991d60c8212c9c763c62ffea8401d69b0be39a4d006cccb8e06676d56e5a55'
 '7fb85a1b54406032a922e8fd6f45d869fcfe5681df630e74e8e50c040b786ee4')
 
 prepare() {
   cd ${pkgbase}-${pkgver}
 
-  patch -Np0 -i ../lightdm-xdg-session-class.patch
   patch -Np1 -i ../lightdm-default-config.patch
 }
 

Deleted: lightdm-xdg-session-class.patch
===
--- lightdm-xdg-session-class.patch 2013-11-05 03:23:26 UTC (rev 100482)
+++ lightdm-xdg-session-class.patch 2013-11-05 08:34:14 UTC (rev 100483)
@@ -1,130 +0,0 @@
-=== modified file 'src/seat.c'
 src/seat.c 2013-10-03 21:38:07 +
-+++ src/seat.c 2013-10-21 22:55:16 +
-@@ -1075,6 +1075,7 @@
- g_signal_connect (greeter_session, stopped, G_CALLBACK 
(session_stopped_cb), seat);
-   
- set_session_env (SESSION (greeter_session));
-+session_set_env (SESSION (greeter_session), XDG_SESSION_CLASS, 
greeter);
- 
- session_set_pam_service (SESSION (greeter_session), GREETER_SERVICE);
- if (getuid () == 0)
-
-=== modified file 'src/session-child.c'
 src/session-child.c2013-07-26 02:27:41 +
-+++ src/session-child.c2013-10-21 22:55:16 +
-@@ -213,7 +213,6 @@
- gchar *authentication_result_string;
- gchar *service;
- gchar *username;
--gchar *class;
- gchar *tty;
- gchar *remote_host_name;
- gchar *xdisplay;
-@@ -284,7 +283,7 @@
- username = read_string ();
- read_data (do_authenticate, sizeof (do_authenticate));
- read_data (is_interactive, sizeof (is_interactive));
--class = read_string ();
-+read_string (); /* Used to be class, now we just use the environment 
variable */
- tty = read_string ();
- remote_host_name = read_string ();
- xdisplay = read_string ();
-@@ -480,7 +479,7 @@
- g_variant_builder_init (ck_parameters, G_VARIANT_TYPE ((a(sv;
- g_variant_builder_open (ck_parameters, G_VARIANT_TYPE (a(sv)));
- g_variant_builder_add (ck_parameters, (sv), unix-user, 
g_variant_new_int32 (user_get_uid (user)));
--if (g_strcmp0 (class, XDG_SESSION_CLASS_GREETER) == 0)
-+if (g_strcmp0 (pam_getenv (pam_handle, XDG_SESSION_CLASS), 
greeter) == 0)
- g_variant_builder_add (ck_parameters, (sv), session-type, 
g_variant_new_string (LoginWindow));
- if (xdisplay)
- {
-@@ -601,7 +600,7 @@
- if (child_pid  0)
- {
- /* Log to utmp */
--if (g_strcmp0 (class, XDG_SESSION_CLASS_GREETER) != 0)
-+if (g_strcmp0 (pam_getenv (pam_handle, XDG_SESSION_CLASS), 
greeter) != 0)
- {
- struct utmpx ut;
- struct timeval tv;
-@@ -632,7 +631,7 @@
- child_pid = 0;
- 
- /* Log to utmp */
--if (g_strcmp0 (class, XDG_SESSION_CLASS_GREETER) != 0)
-+if (g_strcmp0 (pam_getenv (pam_handle, XDG_SESSION_CLASS), 
greeter) != 0)
- {
- struct utmpx ut;
- struct timeval tv;
-
-=== modified file 'src/session.c'
 src/session.c  2013-09-19 14:53:48 +
-+++ src/session.c  2013-10-21 22:43:11 +
-@@ -84,9 +84,6 @@
- /* File to log to */
- gchar *log_filename;
- 
--/* Seat class */
--gchar *class;
--
- /* tty this session is running on */
- gchar *tty;
- 
-@@ -200,14 

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

2013-11-05 Thread Maxime Gauduin
Date: Tuesday, November 5, 2013 @ 09:34:50
  Author: alucryd
Revision: 100484

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

Added:
  lightdm/repos/community-i686/PKGBUILD
(from rev 100483, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-i686/Xsession
(from rev 100483, lightdm/trunk/Xsession)
  lightdm/repos/community-i686/lightdm-autologin.pam
(from rev 100483, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-i686/lightdm-default-config.patch
(from rev 100483, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-i686/lightdm.install
(from rev 100483, lightdm/trunk/lightdm.install)
  lightdm/repos/community-i686/lightdm.pam
(from rev 100483, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-i686/lightdm.rules
(from rev 100483, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-i686/lightdm.service
(from rev 100483, lightdm/trunk/lightdm.service)
  lightdm/repos/community-i686/lightdm.tmpfiles
(from rev 100483, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-x86_64/PKGBUILD
(from rev 100483, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-x86_64/Xsession
(from rev 100483, lightdm/trunk/Xsession)
  lightdm/repos/community-x86_64/lightdm-autologin.pam
(from rev 100483, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-x86_64/lightdm-default-config.patch
(from rev 100483, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-x86_64/lightdm.install
(from rev 100483, lightdm/trunk/lightdm.install)
  lightdm/repos/community-x86_64/lightdm.pam
(from rev 100483, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-x86_64/lightdm.rules
(from rev 100483, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-x86_64/lightdm.service
(from rev 100483, lightdm/trunk/lightdm.service)
  lightdm/repos/community-x86_64/lightdm.tmpfiles
(from rev 100483, lightdm/trunk/lightdm.tmpfiles)
Deleted:
  lightdm/repos/community-i686/PKGBUILD
  lightdm/repos/community-i686/Xsession
  lightdm/repos/community-i686/lightdm-autologin.pam
  lightdm/repos/community-i686/lightdm-default-config.patch
  lightdm/repos/community-i686/lightdm-xdg-session-class.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-autologin.pam
  lightdm/repos/community-x86_64/lightdm-default-config.patch
  lightdm/repos/community-x86_64/lightdm-xdg-session-class.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

--+
 /PKGBUILD|  240 +
 /Xsession|  146 
 /lightdm-autologin.pam   |   26 ++
 /lightdm-default-config.patch|  116 ++
 /lightdm.install |   46 
 /lightdm.pam |   14 +
 /lightdm.rules   |   30 ++
 /lightdm.service |   28 ++
 /lightdm.tmpfiles|2 
 community-i686/PKGBUILD  |  123 --
 community-i686/Xsession  |   73 --
 community-i686/lightdm-autologin.pam |   13 -
 community-i686/lightdm-default-config.patch  |   58 -
 community-i686/lightdm-xdg-session-class.patch   |  130 ---
 community-i686/lightdm.install   |   23 --
 community-i686/lightdm.pam   |7 
 community-i686/lightdm.rules |   15 -
 community-i686/lightdm.service   |   14 -
 community-i686/lightdm.tmpfiles  |1 
 community-x86_64/PKGBUILD|  123 --
 community-x86_64/Xsession|   73 --
 community-x86_64/lightdm-autologin.pam   |   13 -
 community-x86_64/lightdm-default-config.patch|   58 -
 community-x86_64/lightdm-xdg-session-class.patch |  130 ---
 community-x86_64/lightdm.install |   23 --
 community-x86_64/lightdm.pam |7 
 community-x86_64/lightdm.rules   |   15 -
 community-x86_64/lightdm.service |   14 -
 community-x86_64/lightdm.tmpfiles|1 
 29 files changed, 648 insertions(+), 914 deletions(-)

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


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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 09:38:33
  Author: bpiotrowski
Revision: 100485

upgpkg: phpmyadmin 4.0.9-1

- new upstream release

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 08:34:50 UTC (rev 100484)
+++ PKGBUILD2013-11-05 08:38:33 UTC (rev 100485)
@@ -6,7 +6,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=4.0.8
+pkgver=4.0.9
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -19,7 +19,7 @@
etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
 install=$pkgname.install
-sha256sums=('dc38645831de9699a17859896146e52af663c61ec493d1e8e0fa4e804297fce5')
+sha256sums=('497e050708a4d0148f2a97a738f96a628243bcbdc953f6d31fdd4894fe4a045c')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin



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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 09:38:44
  Author: bpiotrowski
Revision: 100486

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   92 +--
 phpmyadmin.install |6 +--
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-05 08:38:33 UTC (rev 100485)
+++ PKGBUILD2013-11-05 08:38:44 UTC (rev 100486)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-# Contributor: Simon Lackerbauer calypso at strpg.org
-
-pkgname=phpmyadmin
-pkgver=4.0.8
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url=http://www.phpmyadmin.net;
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication'
-   'python')
-backup=(etc/webapps/phpmyadmin/.htaccess
-   etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-install=$pkgname.install
-sha256sums=('dc38645831de9699a17859896146e52af663c61ec493d1e8e0fa4e804297fce5')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
-  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
-  cd $_instdir
-
-  cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* .
-  echo deny from all $pkgdir/etc/webapps/phpmyadmin/.htaccess
-
-  ln -s /etc/webapps/phpmyadmin/.htaccess $_instdir/.htaccess
-  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
-  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
-
-  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
-   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
-   Directory /usr/share/webapps/phpMyAdmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 100485, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-05 08:38:44 UTC (rev 100486)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Manolis Tzanidakis mano...@archlinux.org
+# Contributor: Simon Lackerbauer calypso at strpg.org
+
+pkgname=phpmyadmin
+pkgver=4.0.9
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url=http://www.phpmyadmin.net;
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication'
+   'python')
+backup=(etc/webapps/phpmyadmin/.htaccess
+   etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+install=$pkgname.install
+sha256sums=('497e050708a4d0148f2a97a738f96a628243bcbdc953f6d31fdd4894fe4a045c')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
+  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
+  cd $_instdir
+
+  cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* .
+  echo deny from all $pkgdir/etc/webapps/phpmyadmin/.htaccess
+
+  ln -s /etc/webapps/phpmyadmin/.htaccess $_instdir/.htaccess
+  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
+  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
+
+  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
+   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
+   Directory /usr/share/webapps/phpMyAdmin
+   AllowOverride All
+   Options FollowSymlinks
+   Order allow,deny
+   Allow from all
+   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
+   /Directory
+EOF
+}

Deleted: phpmyadmin.install
===
--- phpmyadmin.install  2013-11-05 08:38:33 UTC (rev 100485)
+++ phpmyadmin.install  2013-11-05 08:38:44 UTC (rev 100486)
@@ 

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 09:57:03
  Author: bpiotrowski
Revision: 100487

upgpkg: xbmc 12.2-6

- rebuild against libass 0.10.2

Modified:
  xbmc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 08:38:44 UTC (rev 100486)
+++ PKGBUILD2013-11-05 08:57:03 UTC (rev 100487)
@@ -9,7 +9,7 @@
 
 pkgname=xbmc
 pkgver=12.2
-pkgrel=5
+pkgrel=6
 pkgdesc=A software media player and entertainment hub for digital media
 arch=('i686' 'x86_64')
 url=http://xbmc.org;



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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 09:57:15
  Author: bpiotrowski
Revision: 100488

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

Added:
  xbmc/repos/community-i686/ChangeLog
(from rev 100487, xbmc/trunk/ChangeLog)
  xbmc/repos/community-i686/PKGBUILD
(from rev 100487, xbmc/trunk/PKGBUILD)
  xbmc/repos/community-i686/xbmc.install
(from rev 100487, xbmc/trunk/xbmc.install)
  xbmc/repos/community-i686/xbmc.service
(from rev 100487, xbmc/trunk/xbmc.service)
  xbmc/repos/community-x86_64/ChangeLog
(from rev 100487, xbmc/trunk/ChangeLog)
  xbmc/repos/community-x86_64/PKGBUILD
(from rev 100487, xbmc/trunk/PKGBUILD)
  xbmc/repos/community-x86_64/xbmc.install
(from rev 100487, xbmc/trunk/xbmc.install)
  xbmc/repos/community-x86_64/xbmc.service
(from rev 100487, xbmc/trunk/xbmc.service)
Deleted:
  xbmc/repos/community-i686/ChangeLog
  xbmc/repos/community-i686/PKGBUILD
  xbmc/repos/community-i686/xbmc.install
  xbmc/repos/community-i686/xbmc.service
  xbmc/repos/community-x86_64/ChangeLog
  xbmc/repos/community-x86_64/PKGBUILD
  xbmc/repos/community-x86_64/xbmc.install
  xbmc/repos/community-x86_64/xbmc.service

---+
 /ChangeLog|  138 
 /PKGBUILD |  224 
 /xbmc.install |   32 +
 /xbmc.service |   26 
 community-i686/ChangeLog  |   69 
 community-i686/PKGBUILD   |  112 
 community-i686/xbmc.install   |   16 --
 community-i686/xbmc.service   |   13 --
 community-x86_64/ChangeLog|   69 
 community-x86_64/PKGBUILD |  112 
 community-x86_64/xbmc.install |   16 --
 community-x86_64/xbmc.service |   13 --
 12 files changed, 420 insertions(+), 420 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-11-05 08:57:03 UTC (rev 100487)
+++ community-i686/ChangeLog2013-11-05 08:57:15 UTC (rev 100488)
@@ -1,69 +0,0 @@
-2010-04-10 BlackEagle ike DOT devolder AT gmail DOT com
-   * 9.11-15 :
-   Made it back compliant with FHS ( thx pierre for pointing that out )
-   namcap checked and modified to fit its needs as far as it was possible
-
-2009-03-07 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-10 :
-   Try and fix some autoconf issues (thanks Gentoo ebuild).
-
-2009-02-08 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-9 :
-   Replace some libtool 'ltmain.sh' scripts with the one from libtool 
-   installed with Arch.
-   Make sure XBMCTex isn't linked to OpenGL libraries or it will segfault
-   on systems using the nvidia driver.
-   
-2009-01-30 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-8 :
-   Fix some include's so that gcc 4.3.x is happy, shouldn't complain about
-   undefined '::realloc' anymore.
-   Remove Mac OS X specific files.
-   
-2009-01-25 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-7 :
-   Moved libcdio, pmount, smbclient and unrar to optdepends.
-   Removed unneeded dependency on sdl_gfx.
-   Removed dependency on libpng as sdl_image depends on it.
-
-2008-12-14 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-6 :
-   Added libpng to dependency list.
-   Added gawk to dependency list.
-   Removed '--disable-mms' and '--enable-halmount' configure flags as they
-   are not mentioned as supported in the configure script.
-   
-2008-12-06 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-5 :
-   Added libmad to the dependency list.
-   Streamripper 1.64.0+ does not include tre anymore, removed streamripper
-   and added tre instead.
-   Removed subversion from makedepends.
-   
-2008-12-06 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-4 :
-   Fix permissions for some more scripts, ffmpeg/texi2doc.pl should not
-   fail any longer.
-
-2008-12-05 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-3 :
-   Added lirc to the optdepends array.
-   
-2008-11-26 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-2 :
-   Added install file which informs users that a display depth of at
-   least 24-bit is required.
-
-2008-11-17 [vEX] niechift.dot.vex.at.gmail.dot.com
-
-   * 8.10-1 :
-   Initial package, based on previous work by Zeqadious.

Copied: xbmc/repos/community-i686/ChangeLog (from rev 100487, 
xbmc/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-11-05 08:57:15 UTC (rev 100488)
@@ -0,0 +1,69 @@
+2010-04-10 BlackEagle ike DOT devolder AT gmail DOT com
+   * 9.11-15 :
+   Made it back compliant with FHS ( thx pierre for pointing that out )
+   namcap 

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 10:06:35
  Author: bpiotrowski
Revision: 100490

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

Added:
  libquicktime/repos/community-staging-i686/
  libquicktime/repos/community-staging-i686/PKGBUILD
(from rev 100489, libquicktime/trunk/PKGBUILD)
  libquicktime/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 100489, libquicktime/trunk/ffmpeg2.0.patch)
  libquicktime/repos/community-staging-x86_64/
  libquicktime/repos/community-staging-x86_64/PKGBUILD
(from rev 100489, libquicktime/trunk/PKGBUILD)
  libquicktime/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 100489, libquicktime/trunk/ffmpeg2.0.patch)

--+
 community-staging-i686/PKGBUILD  |   37 +++
 community-staging-i686/ffmpeg2.0.patch   |  135 +
 community-staging-x86_64/PKGBUILD|   37 +++
 community-staging-x86_64/ffmpeg2.0.patch |  135 +
 4 files changed, 344 insertions(+)

Copied: libquicktime/repos/community-staging-i686/PKGBUILD (from rev 100489, 
libquicktime/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-05 09:06:35 UTC (rev 100490)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Federico Cinelli cine...@aur.archlinux.org
+# Maintainer: Mateusz Herych   heni...@gmail.com
+
+pkgname=libquicktime
+pkgver=1.2.4
+pkgrel=8
+pkgdesc=A library for reading and writing quicktime files
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://libquicktime.sourceforge.net/;
+depends=('gtk2' 'ffmpeg' 'libxv' 'libxaw' 'faad2' 'faac')
+makedepends=('mesa-libgl')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
+ffmpeg2.0.patch)
+sha256sums=('1c53359c33b31347b4d7b00d3611463fe5e942cae3ec0fefe0d2fd413fd47368'
+'a1c8415e8e7bc04c81b946b9e3746f7d5ef24819135962280c3a7ddb3f2baa2b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../ffmpeg2.0.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+   --enable-gpl \
+   --with-ffmpeg \
+   --with-x264 \
+   --without-doxygen
+   make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: libquicktime/repos/community-staging-i686/ffmpeg2.0.patch (from rev 
100489, libquicktime/trunk/ffmpeg2.0.patch)
===
--- community-staging-i686/ffmpeg2.0.patch  (rev 0)
+++ community-staging-i686/ffmpeg2.0.patch  2013-11-05 09:06:35 UTC (rev 
100490)
@@ -0,0 +1,135 @@
+Binary files a/plugins/ffmpeg/.lqt_ffmpeg.c.swp and 
b/plugins/ffmpeg/.lqt_ffmpeg.c.swp differ
+diff -rupN a/plugins/ffmpeg/ffmpeg.h b/plugins/ffmpeg/ffmpeg.h
+--- a/plugins/ffmpeg/ffmpeg.h  2012-02-15 20:48:30.0 +0100
 b/plugins/ffmpeg/ffmpeg.h  2013-07-15 15:05:19.307534593 +0200
+@@ -45,3 +45,7 @@ void lqt_ffmpeg_set_parameter(AVCodecCon
+ 
+ 
+ #endif
++#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000
++#define CODEC_FLAG2_STRICT_GOP 0x0002
++#define CODEC_FLAG_QP_RD 0x0800
++#define CODEC_FLAG_CBP_RD 0x0400
+diff -rupN a/plugins/ffmpeg/lqt_ffmpeg.c b/plugins/ffmpeg/lqt_ffmpeg.c
+--- a/plugins/ffmpeg/lqt_ffmpeg.c  2012-02-15 20:48:30.0 +0100
 b/plugins/ffmpeg/lqt_ffmpeg.c  2013-07-15 15:19:09.730831655 +0200
+@@ -89,19 +89,8 @@ int ffmpeg_num_video_codecs = -1;
+ PARAM_QSCALE, \
+ PARAM_QCOMPRESS, \
+ PARAM_QBLUR, \
+-PARAM_QUANTIZER_NOISE_SHAPING, \
+ PARAM_TRELLIS
+ 
+-#define ENCODE_PARAM_VIDEO_QUANTIZER_IP \
+-  ENCODE_PARAM_VIDEO_QUANTIZER_I, \
+-  PARAM_I_QUANT_FACTOR, \
+-  PARAM_I_QUANT_OFFSET
+-
+-#define ENCODE_PARAM_VIDEO_QUANTIZER_IPB \
+-  ENCODE_PARAM_VIDEO_QUANTIZER_IP, \
+-  PARAM_B_QUANT_FACTOR, \
+-  PARAM_B_QUANT_OFFSET
+-
+ #define ENCODE_PARAM_VIDEO_FRAMETYPES_IP \
+   { \
+ .name =  frame_types, \
+@@ -207,7 +196,6 @@ static lqt_parameter_info_static_t encod
+   ENCODE_PARAM_VIDEO_FRAMETYPES_IPB,
+   PARAM_FLAG_AC_PRED_MPEG4,
+   ENCODE_PARAM_VIDEO_RATECONTROL,
+-  ENCODE_PARAM_VIDEO_QUANTIZER_IPB,
+   PARAM_FLAG_CBP_RD,
+   ENCODE_PARAM_VIDEO_ME,
+   PARAM_FLAG_GMC,
+@@ -225,7 +213,6 @@ static lqt_parameter_info_static_t encod
+ static lqt_parameter_info_static_t encode_parameters_dx50[] = {
+   ENCODE_PARAM_VIDEO_FRAMETYPES_IP,
+   ENCODE_PARAM_VIDEO_RATECONTROL,
+-  ENCODE_PARAM_VIDEO_QUANTIZER_IP,
+   ENCODE_PARAM_VIDEO_ME,
+   ENCODE_PARAM_VIDEO_ME_PRE,
+   ENCODE_PARAM_VIDEO_MASKING,
+@@ -237,7 +224,6 @@ static lqt_parameter_info_static_t encod
+ static lqt_parameter_info_static_t encode_parameters_h263[] = {
+   ENCODE_PARAM_VIDEO_FRAMETYPES_IP,
+   ENCODE_PARAM_VIDEO_RATECONTROL,
+-  ENCODE_PARAM_VIDEO_QUANTIZER_IP,
+   ENCODE_PARAM_VIDEO_ME,
+   PARAM_FLAG_4MV,
+   

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 10:06:26
  Author: bpiotrowski
Revision: 100489

upgpkg: libquicktime 1.2.4-8

- rebuild against x264 20131030

Modified:
  libquicktime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 08:57:15 UTC (rev 100488)
+++ PKGBUILD2013-11-05 09:06:26 UTC (rev 100489)
@@ -4,7 +4,7 @@
 
 pkgname=libquicktime
 pkgver=1.2.4
-pkgrel=7
+pkgrel=8
 pkgdesc=A library for reading and writing quicktime files
 arch=('i686' 'x86_64')
 license=('GPL')



[arch-commits] Commit in (4 files)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 10:26:54
  Author: spupykin
Revision: 100491

Added:
  perl-types-serialiser/
  perl-types-serialiser/repos/
  perl-types-serialiser/trunk/
  perl-types-serialiser/trunk/PKGBUILD

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

Added: perl-types-serialiser/trunk/PKGBUILD
===
--- perl-types-serialiser/trunk/PKGBUILD(rev 0)
+++ perl-types-serialiser/trunk/PKGBUILD2013-11-05 09:26:54 UTC (rev 
100491)
@@ -0,0 +1,35 @@
+pkgname='perl-types-serialiser'
+pkgver=0.03
+pkgrel='1'
+pkgdesc=simple data types for common serialisation formats
+arch=('any')
+license=('PerlArtistic' 'GPL')
+depends=('perl-common-sense')
+makedepends=()
+url='http://search.cpan.org/dist/Types-Serialiser'
+source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-$pkgver.tar.gz;)
+md5sums=('a18e0f223da6b7c73068957e7cb6e463')
+
+build() {
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+  cd $srcdir/Types-Serialiser-$pkgver
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd $srcdir/Types-Serialiser-$pkgver
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+  make test
+}
+
+package() {
+  cd $srcdir/Types-Serialiser-$pkgver
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:04:14
  Author: spupykin
Revision: 100492

upgpkg: fbpanel 6.1-6

upd

Modified:
  fbpanel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 09:26:54 UTC (rev 100491)
+++ PKGBUILD2013-11-05 10:04:14 UTC (rev 100492)
@@ -6,7 +6,7 @@
 
 pkgname=fbpanel
 pkgver=6.1
-pkgrel=5
+pkgrel=6
 pkgdesc=NetWM compliant desktop panel
 arch=('i686' 'x86_64')
 url=http://fbpanel.sourceforge.net/;
@@ -13,13 +13,20 @@
 depends=('gtk2')
 license=('GPL')
 source=(http://downloads.sourceforge.net/fbpanel/fbpanel-${pkgver}.tbz2;
+   
taskbar_unicode.patch::https://bugs.archlinux.org/task/37639?getfile=11189;
 battery_fix.patch)
 md5sums=('80ca0c64195b30587cfcb8c2cd9887a0'
+ '0af51e8f0391ea9b734a57a9880b57e5'
  'dc1db8eee1be899725f350eb36793ea4')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 $srcdir/battery_fix.patch
+  patch -p1 $srcdir/taskbar_unicode.patch
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
-  patch -p1 $srcdir/battery_fix.patch
   ./configure --prefix=/usr --libexecdir=/usr/lib
   echo LDFLAGSX += -lX11 -lm config.mk
   make



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:04:31
  Author: spupykin
Revision: 100493

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

Added:
  fbpanel/repos/community-i686/PKGBUILD
(from rev 100492, fbpanel/trunk/PKGBUILD)
  fbpanel/repos/community-i686/battery_fix.patch
(from rev 100492, fbpanel/trunk/battery_fix.patch)
  fbpanel/repos/community-x86_64/PKGBUILD
(from rev 100492, fbpanel/trunk/PKGBUILD)
  fbpanel/repos/community-x86_64/battery_fix.patch
(from rev 100492, fbpanel/trunk/battery_fix.patch)
Deleted:
  fbpanel/repos/community-i686/PKGBUILD
  fbpanel/repos/community-i686/battery_fix.patch
  fbpanel/repos/community-x86_64/PKGBUILD
  fbpanel/repos/community-x86_64/battery_fix.patch

+
 /PKGBUILD  |   76 +++
 /battery_fix.patch |  238 +++
 community-i686/PKGBUILD|   31 
 community-i686/battery_fix.patch   |  119 -
 community-x86_64/PKGBUILD  |   31 
 community-x86_64/battery_fix.patch |  119 -
 6 files changed, 314 insertions(+), 300 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:04:14 UTC (rev 100492)
+++ community-i686/PKGBUILD 2013-11-05 10:04:31 UTC (rev 100493)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Jeff Mickey j...@archlinux.org
-# Contributor: Torin Daniel torin...@gmail.com
-# Contributor: Diep Pham Van i...@favadi.com
-
-pkgname=fbpanel
-pkgver=6.1
-pkgrel=5
-pkgdesc=NetWM compliant desktop panel
-arch=('i686' 'x86_64')
-url=http://fbpanel.sourceforge.net/;
-depends=('gtk2')
-license=('GPL')
-source=(http://downloads.sourceforge.net/fbpanel/fbpanel-${pkgver}.tbz2;
-battery_fix.patch)
-md5sums=('80ca0c64195b30587cfcb8c2cd9887a0'
- 'dc1db8eee1be899725f350eb36793ea4')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p1 $srcdir/battery_fix.patch
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  echo LDFLAGSX += -lX11 -lm config.mk
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: fbpanel/repos/community-i686/PKGBUILD (from rev 100492, 
fbpanel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 10:04:31 UTC (rev 100493)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Jeff Mickey j...@archlinux.org
+# Contributor: Torin Daniel torin...@gmail.com
+# Contributor: Diep Pham Van i...@favadi.com
+
+pkgname=fbpanel
+pkgver=6.1
+pkgrel=6
+pkgdesc=NetWM compliant desktop panel
+arch=('i686' 'x86_64')
+url=http://fbpanel.sourceforge.net/;
+depends=('gtk2')
+license=('GPL')
+source=(http://downloads.sourceforge.net/fbpanel/fbpanel-${pkgver}.tbz2;
+   
taskbar_unicode.patch::https://bugs.archlinux.org/task/37639?getfile=11189;
+battery_fix.patch)
+md5sums=('80ca0c64195b30587cfcb8c2cd9887a0'
+ '0af51e8f0391ea9b734a57a9880b57e5'
+ 'dc1db8eee1be899725f350eb36793ea4')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 $srcdir/battery_fix.patch
+  patch -p1 $srcdir/taskbar_unicode.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  echo LDFLAGSX += -lX11 -lm config.mk
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/battery_fix.patch
===
--- community-i686/battery_fix.patch2013-11-05 10:04:14 UTC (rev 100492)
+++ community-i686/battery_fix.patch2013-11-05 10:04:31 UTC (rev 100493)
@@ -1,119 +0,0 @@
-*** fbpanel-6.1/plugins/battery/os_linux.c~2010-04-08 12:35:26.0 
+0200
 fbpanel-6.1/plugins/battery/os_linux.c 2013-07-09 13:13:50.958994816 
+0200
-***
-*** 1,5 
 1,6 
-  
-  #include string.h
-+ #include stdlib.h
-  #include ctype.h
-  
-  #define LEN 100
-***
-*** 120,129 
-  }
-  
-  static gboolean
-  battery_update_os_sys(battery_priv *c)
-  {
-  ENTER;
-! RET(FALSE);
-  }
-  
-  static gboolean
 121,215 
-  }
-  
-  static gboolean
-+ read_sys(battery_priv *c, GString *path)
-+ {
-+ int len, dcap, rcap;
-+ gchar *buf;
-+ gboolean ret, exist, charging;
-+ 
-+ ENTER;
-+ len = path-len;
-+ 
-+ g_string_append(path, /present);
-+ ret = g_file_get_contents(path-str, buf, 0, NULL);
-+ DBG(reading %s %s\n, path-str, ret ? ok : fail);
-+ g_string_truncate(path, len);
-+ if (!ret)
-+ RET(FALSE);
-+ exist = atoi(buf);
-+ g_free(buf);
-+ if (!exist)
-+ RET(FALSE);
-+ 
-+ g_string_append(path, 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:04:35
  Author: spupykin
Revision: 100494

upgpkg: libvirt 1.1.4-1

upd

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:04:31 UTC (rev 100493)
+++ PKGBUILD2013-11-05 10:04:35 UTC (rev 100494)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Wiersma archaur at jonw dot org
 
 pkgname=libvirt
-pkgver=1.1.3
+pkgver=1.1.4
 pkgrel=1
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
@@ -33,7 +33,7 @@
libvirtd.conf.d
libvirtd-guests.conf.d
libvirt.tmpfiles.d)
-md5sums=('b0dfe373ebe0c588b42a28c14d36a3e6'
+md5sums=('0b21e97ad5d3c27d18806896e16ef82b'
  '3ed0e24f5b5e25bf553f5427d64915e6'
  '0a96ed876ffb1fcb9dff5a9b3a609c1e'
  '020971887442ebbf1b6949e031c8dd3f')



[arch-commits] Commit in perl-types-serialiser/trunk (PKGBUILD)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:05:40
  Author: spupykin
Revision: 100498

upgpkg: perl-types-serialiser 0.03-1

upd

Modified:
  perl-types-serialiser/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:05:37 UTC (rev 100497)
+++ PKGBUILD2013-11-05 10:05:40 UTC (rev 100498)
@@ -1,3 +1,6 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
 pkgname='perl-types-serialiser'
 pkgver=0.03
 pkgrel='1'


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


[arch-commits] Commit in perl-types-serialiser/repos (2 files)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:05:48
  Author: spupykin
Revision: 100499

archrelease: copy trunk to community-any

Added:
  perl-types-serialiser/repos/community-any/
  perl-types-serialiser/repos/community-any/PKGBUILD
(from rev 100498, perl-types-serialiser/trunk/PKGBUILD)

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

Copied: perl-types-serialiser/repos/community-any/PKGBUILD (from rev 100498, 
perl-types-serialiser/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-05 10:05:48 UTC (rev 100499)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname='perl-types-serialiser'
+pkgver=0.03
+pkgrel='1'
+pkgdesc=simple data types for common serialisation formats
+arch=('any')
+license=('PerlArtistic' 'GPL')
+depends=('perl-common-sense')
+makedepends=()
+url='http://search.cpan.org/dist/Types-Serialiser'
+source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-$pkgver.tar.gz;)
+md5sums=('a18e0f223da6b7c73068957e7cb6e463')
+
+build() {
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
+  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
+  MODULEBUILDRC=/dev/null
+
+  cd $srcdir/Types-Serialiser-$pkgver
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd $srcdir/Types-Serialiser-$pkgver
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+  make test
+}
+
+package() {
+  cd $srcdir/Types-Serialiser-$pkgver
+  make install
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}



[arch-commits] Commit in perl-json-xs/repos (4 files)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:05:37
  Author: spupykin
Revision: 100497

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

Added:
  perl-json-xs/repos/community-i686/PKGBUILD
(from rev 100496, perl-json-xs/trunk/PKGBUILD)
  perl-json-xs/repos/community-x86_64/PKGBUILD
(from rev 100496, perl-json-xs/trunk/PKGBUILD)
Deleted:
  perl-json-xs/repos/community-i686/PKGBUILD
  perl-json-xs/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:05:21 UTC (rev 100496)
+++ community-i686/PKGBUILD 2013-11-05 10:05:37 UTC (rev 100497)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Tor Krill t...@krill.nu
-
-pkgname=perl-json-xs
-pkgver=3.01
-pkgrel=1
-pkgdesc=JSON::XS - JSON serialising/deserialising, done correctly and fast
-url=http://search.cpan.org/dist/JSON-XS/;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('perl' 'perl-common-sense')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz)
-md5sums=('b7be65295baf6dd9233c6494782c1153')
-
-build() {
-  cd  $srcdir/JSON-XS-$pkgver
-# eval `perl -V:archname`
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-package() {
-  cd  $srcdir/JSON-XS-$pkgver
-  make DESTDIR=$pkgdir install
-
-  find $pkgdir -name '.packlist' -delete  \
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-json-xs/repos/community-i686/PKGBUILD (from rev 100496, 
perl-json-xs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 10:05:37 UTC (rev 100497)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Tor Krill t...@krill.nu
+
+pkgname=perl-json-xs
+pkgver=3.01
+pkgrel=2
+pkgdesc=JSON::XS - JSON serialising/deserialising, done correctly and fast
+url=http://search.cpan.org/dist/JSON-XS/;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('perl' 'perl-common-sense' 'perl-types-serialiser')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz)
+md5sums=('b7be65295baf6dd9233c6494782c1153')
+
+build() {
+  cd  $srcdir/JSON-XS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+package() {
+  cd  $srcdir/JSON-XS-$pkgver
+  make DESTDIR=$pkgdir install
+
+  find $pkgdir -name '.packlist' -delete  \
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-05 10:05:21 UTC (rev 100496)
+++ community-x86_64/PKGBUILD   2013-11-05 10:05:37 UTC (rev 100497)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Tor Krill t...@krill.nu
-
-pkgname=perl-json-xs
-pkgver=3.01
-pkgrel=1
-pkgdesc=JSON::XS - JSON serialising/deserialising, done correctly and fast
-url=http://search.cpan.org/dist/JSON-XS/;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('perl' 'perl-common-sense')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz)
-md5sums=('b7be65295baf6dd9233c6494782c1153')
-
-build() {
-  cd  $srcdir/JSON-XS-$pkgver
-# eval `perl -V:archname`
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-package() {
-  cd  $srcdir/JSON-XS-$pkgver
-  make DESTDIR=$pkgdir install
-
-  find $pkgdir -name '.packlist' -delete  \
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-json-xs/repos/community-x86_64/PKGBUILD (from rev 100496, 
perl-json-xs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-05 10:05:37 UTC (rev 100497)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Tor Krill t...@krill.nu
+
+pkgname=perl-json-xs
+pkgver=3.01
+pkgrel=2
+pkgdesc=JSON::XS - JSON serialising/deserialising, done correctly and fast
+url=http://search.cpan.org/dist/JSON-XS/;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('perl' 'perl-common-sense' 'perl-types-serialiser')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz)
+md5sums=('b7be65295baf6dd9233c6494782c1153')
+
+build() {
+  cd  $srcdir/JSON-XS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+package() {
+  cd  $srcdir/JSON-XS-$pkgver
+  make DESTDIR=$pkgdir install
+
+  find $pkgdir -name '.packlist' -delete  \
+  find $pkgdir -name 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:05:51
  Author: spupykin
Revision: 100500

upgpkg: pitivi 0.92-1

upd

Modified:
  pitivi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:05:48 UTC (rev 100499)
+++ PKGBUILD2013-11-05 10:05:51 UTC (rev 100500)
@@ -4,8 +4,8 @@
 # Contributor: Gabor Nyekhelyi (n0gabor) n0ga...@vipmail.hu
 
 pkgname=pitivi
-pkgver=0.91
-pkgrel=4
+pkgver=0.92
+pkgrel=1
 pkgdesc=Editor for audio/video projects using the GStreamer framework
 arch=('i686' 'x86_64')
 url=http://www.pitivi.org/;
@@ -19,8 +19,8 @@
 'gst-plugins-bad: additional multimedia codecs'
 'gst-plugins-ugly: additional multimedia codecs')
 install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.91/$pkgname-$pkgver.tar.xz)
-md5sums=('30f520587885d231aeb9a7ddb2585e45')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+md5sums=('6c84db8a647c9151c3890e9cd15a8fc1')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in perl-json-xs/trunk (PKGBUILD)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:05:21
  Author: spupykin
Revision: 100496

upgpkg: perl-json-xs 3.01-2

upd

Modified:
  perl-json-xs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:05:13 UTC (rev 100495)
+++ PKGBUILD2013-11-05 10:05:21 UTC (rev 100496)
@@ -4,12 +4,12 @@
 
 pkgname=perl-json-xs
 pkgver=3.01
-pkgrel=1
+pkgrel=2
 pkgdesc=JSON::XS - JSON serialising/deserialising, done correctly and fast
 url=http://search.cpan.org/dist/JSON-XS/;
 license=(GPL)
 arch=('i686' 'x86_64')
-depends=('perl' 'perl-common-sense')
+depends=('perl' 'perl-common-sense' 'perl-types-serialiser')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz)
 md5sums=('b7be65295baf6dd9233c6494782c1153')
@@ -16,7 +16,6 @@
 
 build() {
   cd  $srcdir/JSON-XS-$pkgver
-# eval `perl -V:archname`
   perl Makefile.PL INSTALLDIRS=vendor
   make
 }



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:05:13
  Author: spupykin
Revision: 100495

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

Added:
  
libvirt/repos/community-i686/0001-Also-store-user-group-ID-values-in-virIdentity.patch
(from rev 100494, 
libvirt/trunk/0001-Also-store-user-group-ID-values-in-virIdentity.patch)
  
libvirt/repos/community-i686/0002-Ensure-system-identity-includes-process-start-time.patch
(from rev 100494, 
libvirt/trunk/0002-Ensure-system-identity-includes-process-start-time.patch)
  
libvirt/repos/community-i686/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch
(from rev 100494, 
libvirt/trunk/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch)
  libvirt/repos/community-i686/PKGBUILD
(from rev 100494, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-i686/libvirt.install
(from rev 100494, libvirt/trunk/libvirt.install)
  libvirt/repos/community-i686/libvirt.tmpfiles.d
(from rev 100494, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-i686/libvirtd-guests.conf.d
(from rev 100494, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-i686/libvirtd.conf.d
(from rev 100494, libvirt/trunk/libvirtd.conf.d)
  
libvirt/repos/community-x86_64/0001-Also-store-user-group-ID-values-in-virIdentity.patch
(from rev 100494, 
libvirt/trunk/0001-Also-store-user-group-ID-values-in-virIdentity.patch)
  
libvirt/repos/community-x86_64/0002-Ensure-system-identity-includes-process-start-time.patch
(from rev 100494, 
libvirt/trunk/0002-Ensure-system-identity-includes-process-start-time.patch)
  
libvirt/repos/community-x86_64/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch
(from rev 100494, 
libvirt/trunk/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 100494, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 100494, libvirt/trunk/libvirt.install)
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
(from rev 100494, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
(from rev 100494, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-x86_64/libvirtd.conf.d
(from rev 100494, libvirt/trunk/libvirtd.conf.d)
Deleted:
  
libvirt/repos/community-i686/0001-Also-store-user-group-ID-values-in-virIdentity.patch
  
libvirt/repos/community-i686/0002-Ensure-system-identity-includes-process-start-time.patch
  
libvirt/repos/community-i686/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch
  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.conf.d
  
libvirt/repos/community-x86_64/0001-Also-store-user-group-ID-values-in-virIdentity.patch
  
libvirt/repos/community-x86_64/0002-Ensure-system-identity-includes-process-start-time.patch
  
libvirt/repos/community-x86_64/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch
  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.conf.d

--+
 /0001-Also-store-user-group-ID-values-in-virIdentity.patch 
  |  312 +
 /0002-Ensure-system-identity-includes-process-start-time.patch 
  |  140 
 /0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch   
  |  318 ++
 /PKGBUILD  
  |  166 +
 /libvirt.install   
  |   38 +
 /libvirt.tmpfiles.d
  |8 
 /libvirtd-guests.conf.d
  |   22 
 /libvirtd.conf.d   
  |6 
 community-i686/0001-Also-store-user-group-ID-values-in-virIdentity.patch   
  |  156 
 community-i686/0002-Ensure-system-identity-includes-process-start-time.patch   
  |   70 --
 community-i686/0003-Add-support-for-using-3-arg-pkcheck-syntax-for-proce.patch 
  |  159 -
 community-i686/PKGBUILD
  |   83 --
 community-i686/libvirt.install 
  |   19 
 community-i686/libvirt.tmpfiles.d  
  |4 
 community-i686/libvirtd-guests.conf.d  
  |   11 
 community-i686/libvirtd.conf.d 
  |3 
 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:06:09
  Author: spupykin
Revision: 100501

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

Added:
  pitivi/repos/community-i686/ChangeLog
(from rev 100500, pitivi/trunk/ChangeLog)
  pitivi/repos/community-i686/PKGBUILD
(from rev 100500, pitivi/trunk/PKGBUILD)
  pitivi/repos/community-i686/pitivi.install
(from rev 100500, pitivi/trunk/pitivi.install)
  pitivi/repos/community-x86_64/ChangeLog
(from rev 100500, pitivi/trunk/ChangeLog)
  pitivi/repos/community-x86_64/PKGBUILD
(from rev 100500, pitivi/trunk/PKGBUILD)
  pitivi/repos/community-x86_64/pitivi.install
(from rev 100500, pitivi/trunk/pitivi.install)
Deleted:
  pitivi/repos/community-i686/ChangeLog
  pitivi/repos/community-i686/PKGBUILD
  pitivi/repos/community-i686/pitivi.install
  pitivi/repos/community-x86_64/ChangeLog
  pitivi/repos/community-x86_64/PKGBUILD
  pitivi/repos/community-x86_64/pitivi.install

-+
 /ChangeLog  |   82 ++
 /PKGBUILD   |   70 
 /pitivi.install |   26 
 community-i686/ChangeLog|   41 ---
 community-i686/PKGBUILD |   35 
 community-i686/pitivi.install   |   13 --
 community-x86_64/ChangeLog  |   41 ---
 community-x86_64/PKGBUILD   |   35 
 community-x86_64/pitivi.install |   13 --
 9 files changed, 178 insertions(+), 178 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-11-05 10:05:51 UTC (rev 100500)
+++ community-i686/ChangeLog2013-11-05 10:06:09 UTC (rev 100501)
@@ -1,41 +0,0 @@
-pitivi (0.13.1-2)
-
-  * Update hicolor icon cache.
-  * Update mime database.
-
- -- Abhishek Dasgupta abh...@gmail.com Thu, 23 Jul 2009 11:57:49 +0530
-
-pitivi (0.13.1-1)
-
-  * New upstream version.
-  * Removed: fix-as-problems.diff pitivi.desktop
-
- -- Abhishek Dasgupta abh...@gmail.com Wed, 24 Jun 2009 16:01:42 +0530
-
-pitivi (0.11.3-1)
-
-  * New upstream version.
-  * fix-as-problems.diff: Fixed the problem caused by as in
-pitivi/timeline/timeline.py
-
- -- Abhishek Dasgupta abh...@gmail.com Sat, 13 Dec 2008 16:29:24 +0530
-
-pitivi (0.11.2-4)
-
-  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
-
- -- Abhishek Dasgupta abh...@gmail.com Mon, 01 Dec 2008 23:08:28 +0530
-
-pitivi (0.11.2-3)
-
-  * fix-as.diff: Fixed the error 
-in pitivi/objectfactory.py caused by the line
-as = self.audio_info_stream
-
- -- Abhishek Dasgupta abh...@gmail.com Sun, 09 Nov 2008 00:34:22 +0530
-
-pitivi (0.11.2-2)
-
-  * Added dbus-python as dependency.
-
- -- Abhishek Dasgupta abh...@gmail.com Sun, 26 Oct 2008 14:08:06 +0530

Copied: pitivi/repos/community-i686/ChangeLog (from rev 100500, 
pitivi/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-11-05 10:06:09 UTC (rev 100501)
@@ -0,0 +1,41 @@
+pitivi (0.13.1-2)
+
+  * Update hicolor icon cache.
+  * Update mime database.
+
+ -- Abhishek Dasgupta abh...@gmail.com Thu, 23 Jul 2009 11:57:49 +0530
+
+pitivi (0.13.1-1)
+
+  * New upstream version.
+  * Removed: fix-as-problems.diff pitivi.desktop
+
+ -- Abhishek Dasgupta abh...@gmail.com Wed, 24 Jun 2009 16:01:42 +0530
+
+pitivi (0.11.3-1)
+
+  * New upstream version.
+  * fix-as-problems.diff: Fixed the problem caused by as in
+pitivi/timeline/timeline.py
+
+ -- Abhishek Dasgupta abh...@gmail.com Sat, 13 Dec 2008 16:29:24 +0530
+
+pitivi (0.11.2-4)
+
+  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
+
+ -- Abhishek Dasgupta abh...@gmail.com Mon, 01 Dec 2008 23:08:28 +0530
+
+pitivi (0.11.2-3)
+
+  * fix-as.diff: Fixed the error 
+in pitivi/objectfactory.py caused by the line
+as = self.audio_info_stream
+
+ -- Abhishek Dasgupta abh...@gmail.com Sun, 09 Nov 2008 00:34:22 +0530
+
+pitivi (0.11.2-2)
+
+  * Added dbus-python as dependency.
+
+ -- Abhishek Dasgupta abh...@gmail.com Sun, 26 Oct 2008 14:08:06 +0530

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:05:51 UTC (rev 100500)
+++ community-i686/PKGBUILD 2013-11-05 10:06:09 UTC (rev 100501)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Abhishek Dasgupta abh...@gmail.com
-# Contributor: Gabor Nyekhelyi (n0gabor) n0ga...@vipmail.hu
-
-pkgname=pitivi
-pkgver=0.91
-pkgrel=4
-pkgdesc=Editor for audio/video projects using the GStreamer framework
-arch=('i686' 'x86_64')
-url=http://www.pitivi.org/;
-license=('LGPL')
-depends=('clutter-gtk' 'gnonlin' 'gst-editing-services' 'gst-plugins-good' 
'gst-python'
- 'libnotify' 'python2-gobject' 

[arch-commits] Commit in xbmc-pvr-addons/repos (4 files)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:06:30
  Author: spupykin
Revision: 100503

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

Added:
  xbmc-pvr-addons/repos/community-i686/PKGBUILD
(from rev 100502, xbmc-pvr-addons/trunk/PKGBUILD)
  xbmc-pvr-addons/repos/community-x86_64/PKGBUILD
(from rev 100502, xbmc-pvr-addons/trunk/PKGBUILD)
Deleted:
  xbmc-pvr-addons/repos/community-i686/PKGBUILD
  xbmc-pvr-addons/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:06:15 UTC (rev 100502)
+++ community-i686/PKGBUILD 2013-11-05 10:06:30 UTC (rev 100503)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=xbmc-pvr-addons
-pkgver=20131101git
-pkgrel=1
-pkgdesc=XBMC PVR add-ons for current stable xbmc
-arch=('i686' 'x86_64')
-url=https://github.com/opdenkamp/xbmc-pvr-addons;
-license=('GPL3')
-depends=('xbmc' 'libmysqlclient')
-makedepends=('git' 'libmysqlclient' 'boost')
-optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
-conflicts=('xbmc-pvr-addons-git')
-#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
-source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-  ./bootstrap
-  ./configure --prefix=/usr --enable-addons-with-dependencies
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir/ install
-}

Copied: xbmc-pvr-addons/repos/community-i686/PKGBUILD (from rev 100502, 
xbmc-pvr-addons/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 10:06:30 UTC (rev 100503)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=xbmc-pvr-addons
+pkgver=20131105git
+pkgrel=1
+pkgdesc=XBMC PVR add-ons for current stable xbmc
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('xbmc' 'libmysqlclient')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+conflicts=('xbmc-pvr-addons-git')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
+#source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
+source=(git://github.com/fetzerch/xbmc-pvr-addons.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/$pkgname
+  ./bootstrap
+  ./configure --prefix=/usr --enable-addons-with-dependencies
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-05 10:06:15 UTC (rev 100502)
+++ community-x86_64/PKGBUILD   2013-11-05 10:06:30 UTC (rev 100503)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=xbmc-pvr-addons
-pkgver=20131101git
-pkgrel=1
-pkgdesc=XBMC PVR add-ons for current stable xbmc
-arch=('i686' 'x86_64')
-url=https://github.com/opdenkamp/xbmc-pvr-addons;
-license=('GPL3')
-depends=('xbmc' 'libmysqlclient')
-makedepends=('git' 'libmysqlclient' 'boost')
-optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
-conflicts=('xbmc-pvr-addons-git')
-#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
-source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-  ./bootstrap
-  ./configure --prefix=/usr --enable-addons-with-dependencies
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir/ install
-}

Copied: xbmc-pvr-addons/repos/community-x86_64/PKGBUILD (from rev 100502, 
xbmc-pvr-addons/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-05 10:06:30 UTC (rev 100503)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=xbmc-pvr-addons
+pkgver=20131105git
+pkgrel=1
+pkgdesc=XBMC PVR add-ons for current stable xbmc
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('xbmc' 'libmysqlclient')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+conflicts=('xbmc-pvr-addons-git')

[arch-commits] Commit in xbmc-pvr-addons/trunk (PKGBUILD)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:06:15
  Author: spupykin
Revision: 100502

upgpkg: xbmc-pvr-addons 20131105git-1

upd

Modified:
  xbmc-pvr-addons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:06:09 UTC (rev 100501)
+++ PKGBUILD2013-11-05 10:06:15 UTC (rev 100502)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=xbmc-pvr-addons
-pkgver=20131101git
+pkgver=20131105git
 pkgrel=1
 pkgdesc=XBMC PVR add-ons for current stable xbmc
 arch=('i686' 'x86_64')
@@ -13,7 +13,8 @@
 optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
 conflicts=('xbmc-pvr-addons-git')
 
#source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${pkgver/_/-}.tar.gz;)
-source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
+#source=(git://github.com/opdenkamp/xbmc-pvr-addons.git)
+source=(git://github.com/fetzerch/xbmc-pvr-addons.git)
 md5sums=('SKIP')
 
 build() {



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:47:16
  Author: spupykin
Revision: 100506

Modified:
  haskell-primitive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:20:04 UTC (rev 100505)
+++ PKGBUILD2013-11-05 10:47:16 UTC (rev 100506)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 makedepends=()
 depends=(ghc)
-options=('strip')
+options=('strip' 'staticlibs')
 install=${pkgname}.install
 
source=(http://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz;)
 sha256sums=('526c9d4d06b7b379cb1aaffeffbb30bef810e771f29617ef6d0d99df711f4313')



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:55:22
  Author: spupykin
Revision: 100509

upgpkg: haskell-hslogger 1.2.1-5

upd

Modified:
  haskell-hslogger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:55:19 UTC (rev 100508)
+++ PKGBUILD2013-11-05 10:55:22 UTC (rev 100509)
@@ -4,7 +4,7 @@
 
 pkgname=haskell-hslogger
 pkgver=1.2.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Versatile logging framework
 url=http://hackage.haskell.org/package/hslogger;
 license=('LGPL')



[arch-commits] Commit in haskell-bytestring-show/trunk (PKGBUILD)

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:55:03
  Author: spupykin
Revision: 100507

upgpkg: haskell-bytestring-show 0.3.5.4-5

upd

Modified:
  haskell-bytestring-show/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:47:16 UTC (rev 100506)
+++ PKGBUILD2013-11-05 10:55:03 UTC (rev 100507)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-bytestring-show
 pkgver=0.3.5.4
-pkgrel=4
+pkgrel=5
 pkgdesc=Efficient conversion of values into readable byte strings.
 url=http://hackage.haskell.org/package/bytestring-show;
 license=(BSD3)



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:55:37
  Author: spupykin
Revision: 100510

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

Added:
  haskell-hslogger/repos/community-i686/PKGBUILD
(from rev 100509, haskell-hslogger/trunk/PKGBUILD)
  haskell-hslogger/repos/community-i686/haskell-hslogger.install
(from rev 100509, haskell-hslogger/trunk/haskell-hslogger.install)
  haskell-hslogger/repos/community-x86_64/PKGBUILD
(from rev 100509, haskell-hslogger/trunk/PKGBUILD)
  haskell-hslogger/repos/community-x86_64/haskell-hslogger.install
(from rev 100509, haskell-hslogger/trunk/haskell-hslogger.install)
Deleted:
  haskell-hslogger/repos/community-i686/PKGBUILD
  haskell-hslogger/repos/community-i686/haskell-hslogger.install
  haskell-hslogger/repos/community-x86_64/PKGBUILD
  haskell-hslogger/repos/community-x86_64/haskell-hslogger.install

---+
 /PKGBUILD |   72 
 /haskell-hslogger.install |   36 ++
 community-i686/PKGBUILD   |   36 --
 community-i686/haskell-hslogger.install   |   18 ---
 community-x86_64/PKGBUILD |   36 --
 community-x86_64/haskell-hslogger.install |   18 ---
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:55:22 UTC (rev 100509)
+++ community-i686/PKGBUILD 2013-11-05 10:55:37 UTC (rev 100510)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Arch Haskell Team arch-hask...@haskell.org
-
-pkgname=haskell-hslogger
-pkgver=1.2.1
-pkgrel=4
-pkgdesc=Versatile logging framework
-url=http://hackage.haskell.org/package/hslogger;
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=('ghc' 'haskell-mtl' 'haskell-network')
-install=${pkgname}.install
-source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
-md5sums=('d94e39cd6a262565cf0758a6ead74919')
-
-build() {
-  cd ${srcdir}/hslogger-${pkgver}
-  runhaskell Setup configure -p --prefix=/usr 
--docdir=/usr/share/doc/${pkgname} -O \
-   --enable-split-objs --enable-shared 
--libsubdir=\$compiler/site-local/\$pkgid \
-   --enable-library-profiling
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register   --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd ${srcdir}/hslogger-${pkgver}
-  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/hslogger
-  runhaskell Setup copy --destdir=${pkgdir}
-}

Copied: haskell-hslogger/repos/community-i686/PKGBUILD (from rev 100509, 
haskell-hslogger/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 10:55:37 UTC (rev 100510)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Arch Haskell Team arch-hask...@haskell.org
+
+pkgname=haskell-hslogger
+pkgver=1.2.1
+pkgrel=5
+pkgdesc=Versatile logging framework
+url=http://hackage.haskell.org/package/hslogger;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-mtl' 'haskell-network')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
+md5sums=('d94e39cd6a262565cf0758a6ead74919')
+
+build() {
+  cd ${srcdir}/hslogger-${pkgver}
+  runhaskell Setup configure -p --prefix=/usr 
--docdir=/usr/share/doc/${pkgname} -O \
+   --enable-split-objs --enable-shared 
--libsubdir=\$compiler/site-local/\$pkgid \
+   --enable-library-profiling
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${srcdir}/hslogger-${pkgver}
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/hslogger
+  runhaskell Setup copy --destdir=${pkgdir}
+}

Deleted: community-i686/haskell-hslogger.install
===
--- community-i686/haskell-hslogger.install 2013-11-05 10:55:22 UTC (rev 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:55:41
  Author: spupykin
Revision: 100511

upgpkg: haskell-vector 0.10.0.1-5

upd

Modified:
  haskell-vector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:55:37 UTC (rev 100510)
+++ PKGBUILD2013-11-05 10:55:41 UTC (rev 100511)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-vector
 pkgver=0.10.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Efficient Arrays
 url=http://code.haskell.org/vector;
 license=(custom:BSD3)



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:55:19
  Author: spupykin
Revision: 100508

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

Added:
  haskell-bytestring-show/repos/community-i686/PKGBUILD
(from rev 100507, haskell-bytestring-show/trunk/PKGBUILD)
  haskell-bytestring-show/repos/community-i686/haskell-bytestring-show.install
(from rev 100507, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
  haskell-bytestring-show/repos/community-x86_64/PKGBUILD
(from rev 100507, haskell-bytestring-show/trunk/PKGBUILD)
  haskell-bytestring-show/repos/community-x86_64/haskell-bytestring-show.install
(from rev 100507, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
Deleted:
  haskell-bytestring-show/repos/community-i686/PKGBUILD
  haskell-bytestring-show/repos/community-i686/haskell-bytestring-show.install
  haskell-bytestring-show/repos/community-x86_64/PKGBUILD
  haskell-bytestring-show/repos/community-x86_64/haskell-bytestring-show.install

--+
 /PKGBUILD|   86 +
 /haskell-bytestring-show.install |   48 +++
 community-i686/PKGBUILD  |   43 --
 community-i686/haskell-bytestring-show.install   |   24 -
 community-x86_64/PKGBUILD|   43 --
 community-x86_64/haskell-bytestring-show.install |   24 -
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:55:03 UTC (rev 100507)
+++ community-i686/PKGBUILD 2013-11-05 10:55:19 UTC (rev 100508)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=haskell-bytestring-show
-pkgver=0.3.5.4
-pkgrel=4
-pkgdesc=Efficient conversion of values into readable byte strings.
-url=http://hackage.haskell.org/package/bytestring-show;
-license=(BSD3)
-arch=('i686' 'x86_64')
-depends=(ghc)
-install=${pkgname}.install
-source=(http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz;)
-md5sums=('2a4ab243c4b6fffed1fc663975a9ec6d')
-
-build() {
-  cd ${srcdir}/bytestring-show-${pkgver}
-
-  # update outdated dependency
-  sed 's/build-depends: integer-gmp = 0.2   0.5/build-depends: integer-gmp 
= 0.2 \\  0.6/' -i bytestring-show.cabal
-
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
-   --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
-   --libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  depends=(ghc=`pacman -Q ghc | cut -f2 -d\ |cut -f1 -d-`)
-
-  cd ${srcdir}/bytestring-show-${pkgver}
-  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/bytestring-show
-  runhaskell Setup copy --destdir=${pkgdir}
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
-}

Copied: haskell-bytestring-show/repos/community-i686/PKGBUILD (from rev 100507, 
haskell-bytestring-show/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 10:55:19 UTC (rev 100508)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.4
+pkgrel=5
+pkgdesc=Efficient conversion of values into readable byte strings.
+url=http://hackage.haskell.org/package/bytestring-show;
+license=(BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc)
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz;)
+md5sums=('2a4ab243c4b6fffed1fc663975a9ec6d')
+
+build() {
+  cd ${srcdir}/bytestring-show-${pkgver}
+
+  # update outdated dependency
+  sed 's/build-depends: integer-gmp = 0.2   0.5/build-depends: integer-gmp 
= 0.2 \\  0.6/' -i bytestring-show.cabal
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+   --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  depends=(ghc=`pacman -Q ghc | cut 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 11:55:55
  Author: spupykin
Revision: 100512

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

Added:
  haskell-vector/repos/community-i686/PKGBUILD
(from rev 100511, haskell-vector/trunk/PKGBUILD)
  haskell-vector/repos/community-i686/haskell-vector.install
(from rev 100511, haskell-vector/trunk/haskell-vector.install)
  haskell-vector/repos/community-x86_64/PKGBUILD
(from rev 100511, haskell-vector/trunk/PKGBUILD)
  haskell-vector/repos/community-x86_64/haskell-vector.install
(from rev 100511, haskell-vector/trunk/haskell-vector.install)
Deleted:
  haskell-vector/repos/community-i686/PKGBUILD
  haskell-vector/repos/community-i686/haskell-vector.install
  haskell-vector/repos/community-x86_64/PKGBUILD
  haskell-vector/repos/community-x86_64/haskell-vector.install

-+
 /PKGBUILD   |   86 ++
 /haskell-vector.install |   52 ++
 community-i686/PKGBUILD |   39 -
 community-i686/haskell-vector.install   |   26 -
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/haskell-vector.install |   26 -
 6 files changed, 138 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 10:55:41 UTC (rev 100511)
+++ community-i686/PKGBUILD 2013-11-05 10:55:55 UTC (rev 100512)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=haskell-vector
-pkgver=0.10.0.1
-pkgrel=4
-pkgdesc=Efficient Arrays
-url=http://code.haskell.org/vector;
-license=(custom:BSD3)
-arch=('i686' 'x86_64')
-makedepends=()
-depends=(ghc=7.6.3 haskell-primitive)
-options=('strip')
-install=${pkgname}.install
-source=(http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
-sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')
-
-build() {
-  cd ${srcdir}/vector-${pkgver}
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/${pkgname} \
---libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd ${srcdir}/vector-${pkgver}
-  install -Dm744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install -Dm744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/vector
-  runhaskell Setup copy --destdir=${pkgdir}
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
-}

Copied: haskell-vector/repos/community-i686/PKGBUILD (from rev 100511, 
haskell-vector/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 10:55:55 UTC (rev 100512)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-vector
+pkgver=0.10.0.1
+pkgrel=5
+pkgdesc=Efficient Arrays
+url=http://code.haskell.org/vector;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+# deps adjusted to specific versions in package()
+depends=(ghc haskell-primitive)
+options=('strip')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
+sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')
+
+build() {
+  cd ${srcdir}/vector-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  _ghcver=`pacman -Q ghc | cut -f2 -d\  | cut -f1 -d-`
+  depends=(ghc=${_ghcver} haskell-primitive)
+
+  cd ${srcdir}/vector-${pkgver}
+  install -Dm744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install -Dm744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/vector
+  runhaskell Setup copy --destdir=${pkgdir}
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:18:21
  Author: spupykin
Revision: 100513

Modified:
  haskell-cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 10:55:55 UTC (rev 100512)
+++ PKGBUILD2013-11-05 11:18:21 UTC (rev 100513)
@@ -11,7 +11,7 @@
 # deps adjusted to specific versions in package()
 depends=('ghc' 'cairo' 'haskell-mtl')
 makedepends=(gtk2hs-buildtools)
-options=('strip')
+options=('strip' 'staticlibs')
 conflicts=('gtk2hs-cairo')
 provides=('gtk2hs-cairo')
 replaces=('gtk2hs-cairo')



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:18:32
  Author: spupykin
Revision: 100514

Modified:
  haskell-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:18:21 UTC (rev 100513)
+++ PKGBUILD2013-11-05 11:18:32 UTC (rev 100514)
@@ -11,7 +11,7 @@
 # deps adjusted to specific versions in package()
 depends=('ghc' 'glib2')
 makedepends=(gtk2hs-buildtools)
-options=('strip')
+options=('strip' 'staticlibs')
 install=gtk2hs-glib.install
 provides=('gtk2hs-glib')
 replaces=('gtk2hs-glib')



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:18:49
  Author: spupykin
Revision: 100515

Modified:
  haskell-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:18:32 UTC (rev 100514)
+++ PKGBUILD2013-11-05 11:18:49 UTC (rev 100515)
@@ -13,7 +13,7 @@
 provides=('gtk2hs-gtk')
 replaces=('gtk2hs-gtk')
 conflicts=('gtk2hs-gtk')
-options=('strip')
+options=('strip' 'staticlibs')
 install=gtk2hs-gtk.install
 
source=(http://hackage.haskell.org/packages/archive/gtk/$pkgver/gtk-$pkgver.tar.gz
ghc-7.6.1.patch)



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:19:00
  Author: spupykin
Revision: 100516

Modified:
  haskell-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:18:49 UTC (rev 100515)
+++ PKGBUILD2013-11-05 11:19:00 UTC (rev 100516)
@@ -14,7 +14,7 @@
 provides=('gtk2hs-pango')
 replaces=('gtk2hs-pango')
 conflicts=('gtk2hs-pango')
-options=('strip')
+options=('strip' 'staticlibs')
 install=gtk2hs-pango.install
 
source=(http://hackage.haskell.org/packages/archive/pango/${pkgver}/pango-${pkgver}.tar.gz)
 md5sums=('e498beb2d10b45ebf08bffc2296e1195')



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 12:20:35
  Author: andrea
Revision: 198803

upgpkg: phonon 4.7.0-1

Upstream release

Modified:
  phonon/trunk/PKGBUILD
Deleted:
  phonon/trunk/fix-plugindir-for-qt-app.patch
  phonon/trunk/fix-qmake.patch

+
 PKGBUILD   |   71 +--
 fix-plugindir-for-qt-app.patch |   11 --
 fix-qmake.patch|   27 --
 3 files changed, 46 insertions(+), 63 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-04 17:57:04 UTC (rev 198802)
+++ PKGBUILD2013-11-05 11:20:35 UTC (rev 198803)
@@ -1,43 +1,51 @@
 # $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
-pkgname=phonon
-pkgver=4.6.0
-pkgrel=8
-epoch=1
+pkgbase=phonon
+pkgname=('phonon-qt4' 'phonon-qt5')
+pkgver=4.7.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
 license=('LGPL')
-pkgdesc=The multimedia framework for KDE
-depends=('phonon-backend' 'libpulse' 'libqzeitgeist')
-optdepends=('pulseaudio: PulseAudio support')
-makedepends=('cmake' 'automoc4' 'pulseaudio')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'fix-plugindir-for-qt-app.patch'
-'fix-qmake.patch')
-md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
- 'e37d67038c2501f25ac7ee7c2de54a9a'
- 'c17d8617e9482f02b3e098842946b679')
+makedepends=('cmake' 'automoc4' 'libpulse' 'libqzeitgeist' 'qt5-base' 
'qt5-tools' 'qt5-quick1')
+options=('!emptydirs')
+source=(http://download.kde.org/stable/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('f5c1a847ac8ae73e67bf762199978278')
 
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
 build() {
-  cd ${pkgname}-${pkgver}
-  # Upstream fixes
-  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
-  patch -p1 -i ${srcdir}/fix-qmake.patch
-  cd ../
-
-  mkdir build
   cd build
-  cmake ../${pkgname}-${pkgver} \
+  cmake ../${pkgbase}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
--DPHONON_BUILD_DESIGNER_PLUGIN=OFF
+-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4
   make
+
+  cd ../build-qt5
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DPHONON_BUILD_PHONON4QT5=ON
+  make
 }
 
-package(){
+package_phonon-qt4(){
+  pkgdesc=The multimedia framework for KDE4
+  depends=('phonon-backend' 'libpulse' 'libqzeitgeist')
+  optdepends=('pulseaudio: PulseAudio support')
+  replaces=('phonon')
+  provides=('phonon')
+  conflicts=('phonon')
+
   cd build
   make DESTDIR=${pkgdir} install
 
@@ -45,6 +53,19 @@
   install -d ${pkgdir}/usr/include/qt4
   mv ${pkgdir}/usr/include/{phonon,KDE} ${pkgdir}/usr/include/qt4/
 
+  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
+
   sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
-${pkgdir}/usr/lib/pkgconfig/phonon.pc
+${pkgdir}/usr/lib/pkgconfig/phonon.pc
 }
+
+package_phonon-qt5(){
+  pkgdesc=The multimedia framework for KF5
+  depends=('phonon-backend' 'libpulse' 'qt5-base')
+  optdepends=('pulseaudio: PulseAudio support')
+
+  cd build-qt5
+  make DESTDIR=${pkgdir} install
+
+  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
+}

Deleted: fix-plugindir-for-qt-app.patch
===
--- fix-plugindir-for-qt-app.patch  2013-11-04 17:57:04 UTC (rev 198802)
+++ fix-plugindir-for-qt-app.patch  2013-11-05 11:20:35 UTC (rev 198803)
@@ -1,11 +0,0 @@
 a/phonon/CMakeLists.txt
-+++ b/phonon/CMakeLists.txt
-@@ -78,7 +78,7 @@ if (PHONON_NO_PLATFORMPLUGIN)
- add_definitions(-DQT_NO_PHONON_PLATFORMPLUGIN)
- endif (PHONON_NO_PLATFORMPLUGIN)
- 
--add_definitions(-DPHONON_LIBRARY_PATH=${PLUGIN_INSTALL_DIR}/plugins)
-+add_definitions(-DPHONON_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/${PLUGIN_INSTALL_DIR}/plugins)
- 
- automoc4_add_library(phonon SHARED ${phonon_LIB_SRCS})
- target_link_libraries(phonon ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})

Deleted: fix-qmake.patch
===
--- fix-qmake.patch 2013-11-04 17:57:04 UTC (rev 198802)
+++ fix-qmake.patch 2013-11-05 11:20:35 UTC (rev 198803)
@@ -1,27 +0,0 @@
-From: Oswald Buddenhagen o...@kde.org
-Date: Sat, 27 Oct 2012 07:58:16 +
-Subject: remove unnecessary if() statement
-X-Git-Url: 
http://quickgit.kde.org/?p=phonon.gitamp;a=commitdiffamp;h=a8c431494d2a6f3785c132f14d00d38ea0e5b328

-remove unnecessary if() statement
-
-as it happens, this works around a qmake breakage relating to parsing if()
-
-BUG: 295037
-FIXED-IN: 4.6.1

-
-
 a/qt_phonon.pri
-+++ b/qt_phonon.pri
-@@ -3,7 +3,7 @@
- # the next build of Qt. So 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 12:20:42
  Author: andrea
Revision: 198804

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

Added:
  phonon/repos/testing-i686/
  phonon/repos/testing-i686/PKGBUILD
(from rev 198803, phonon/trunk/PKGBUILD)
  phonon/repos/testing-x86_64/
  phonon/repos/testing-x86_64/PKGBUILD
(from rev 198803, phonon/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   71 ++
 testing-x86_64/PKGBUILD |   71 ++
 2 files changed, 142 insertions(+)

Copied: phonon/repos/testing-i686/PKGBUILD (from rev 198803, 
phonon/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-05 11:20:42 UTC (rev 198804)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=phonon
+pkgname=('phonon-qt4' 'phonon-qt5')
+pkgver=4.7.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'libpulse' 'libqzeitgeist' 'qt5-base' 
'qt5-tools' 'qt5-quick1')
+options=('!emptydirs')
+source=(http://download.kde.org/stable/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('f5c1a847ac8ae73e67bf762199978278')
+
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4
+  make
+
+  cd ../build-qt5
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DPHONON_BUILD_PHONON4QT5=ON
+  make
+}
+
+package_phonon-qt4(){
+  pkgdesc=The multimedia framework for KDE4
+  depends=('phonon-backend' 'libpulse' 'libqzeitgeist')
+  optdepends=('pulseaudio: PulseAudio support')
+  replaces=('phonon')
+  provides=('phonon')
+  conflicts=('phonon')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Install headers into the Qt4 dir
+  install -d ${pkgdir}/usr/include/qt4
+  mv ${pkgdir}/usr/include/{phonon,KDE} ${pkgdir}/usr/include/qt4/
+
+  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
+
+  sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
+${pkgdir}/usr/lib/pkgconfig/phonon.pc
+}
+
+package_phonon-qt5(){
+  pkgdesc=The multimedia framework for KF5
+  depends=('phonon-backend' 'libpulse' 'qt5-base')
+  optdepends=('pulseaudio: PulseAudio support')
+
+  cd build-qt5
+  make DESTDIR=${pkgdir} install
+
+  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
+}

Copied: phonon/repos/testing-x86_64/PKGBUILD (from rev 198803, 
phonon/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-05 11:20:42 UTC (rev 198804)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=phonon
+pkgname=('phonon-qt4' 'phonon-qt5')
+pkgver=4.7.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'libpulse' 'libqzeitgeist' 'qt5-base' 
'qt5-tools' 'qt5-quick1')
+options=('!emptydirs')
+source=(http://download.kde.org/stable/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('f5c1a847ac8ae73e67bf762199978278')
+
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4
+  make
+
+  cd ../build-qt5
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
+-DPHONON_BUILD_PHONON4QT5=ON
+  make
+}
+
+package_phonon-qt4(){
+  pkgdesc=The multimedia framework for KDE4
+  depends=('phonon-backend' 'libpulse' 'libqzeitgeist')
+  optdepends=('pulseaudio: PulseAudio support')
+  replaces=('phonon')
+  provides=('phonon')
+  conflicts=('phonon')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Install headers into the Qt4 dir
+  install -d ${pkgdir}/usr/include/qt4
+  mv ${pkgdir}/usr/include/{phonon,KDE} ${pkgdir}/usr/include/qt4/
+
+  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
+
+  sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
+${pkgdir}/usr/lib/pkgconfig/phonon.pc
+}
+
+package_phonon-qt5(){
+  pkgdesc=The multimedia framework for KF5
+  depends=('phonon-backend' 'libpulse' 'qt5-base')
+  optdepends=('pulseaudio: PulseAudio 

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:30:57
  Author: spupykin
Revision: 100517

upgpkg: clearsilver 0.10.5-11

upd

Modified:
  clearsilver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:19:00 UTC (rev 100516)
+++ PKGBUILD2013-11-05 11:30:57 UTC (rev 100517)
@@ -5,7 +5,7 @@
 
 pkgname=clearsilver
 pkgver=0.10.5
-pkgrel=10
+pkgrel=11
 pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
 arch=('i686' 'x86_64')
 url='http://www.clearsilver.net'



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:31:11
  Author: spupykin
Revision: 100518

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

Added:
  clearsilver/repos/community-i686/PKGBUILD
(from rev 100517, clearsilver/trunk/PKGBUILD)
  clearsilver/repos/community-i686/clearsilver-ruby-1.9.patch
(from rev 100517, clearsilver/trunk/clearsilver-ruby-1.9.patch)
  clearsilver/repos/community-x86_64/PKGBUILD
(from rev 100517, clearsilver/trunk/PKGBUILD)
  clearsilver/repos/community-x86_64/clearsilver-ruby-1.9.patch
(from rev 100517, clearsilver/trunk/clearsilver-ruby-1.9.patch)
Deleted:
  clearsilver/repos/community-i686/PKGBUILD
  clearsilver/repos/community-i686/clearsilver-ruby-1.9.patch
  clearsilver/repos/community-x86_64/PKGBUILD
  clearsilver/repos/community-x86_64/clearsilver-ruby-1.9.patch

-+
 /PKGBUILD   |  110 +
 /clearsilver-ruby-1.9.patch |  488 ++
 community-i686/PKGBUILD |   55 --
 community-i686/clearsilver-ruby-1.9.patch   |  244 -
 community-x86_64/PKGBUILD   |   55 --
 community-x86_64/clearsilver-ruby-1.9.patch |  244 -
 6 files changed, 598 insertions(+), 598 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 11:30:57 UTC (rev 100517)
+++ community-i686/PKGBUILD 2013-11-05 11:31:11 UTC (rev 100518)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer : Aaron Griffin aa...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=clearsilver
-pkgver=0.10.5
-pkgrel=10
-pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
-arch=('i686' 'x86_64')
-url='http://www.clearsilver.net'
-license=('custom')
-depends=('python2' 'perl' 'ruby' 'java-runtime')
-options=('!emptydirs')
-source=(http://www.clearsilver.net/downloads/$pkgname-$pkgver.tar.gz;
-clearsilver-ruby-1.9.patch)
-md5sums=('b8c0c7fbe0ef5e06e0c935f134304d44'
- 'd9db4e5985254e1b0d63e9ff042773f4')
-
-build()
-{
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --disable-csharp --prefix=/usr --with-python=/usr/bin/python2
-
-  sed -i s@/usr/local/bin/python@/usr/bin/env python2@g scripts/document.py
-  sed -i s...@install.rb inst...@install.rb install --prefix=$pkgdir@g 
ruby/Makefile
-  patch -p1 $srcdir/clearsilver-ruby-1.9.patch
-  patch -p0 ruby/install.rb EOF
-71,73c71,73
- siteruby   = subprefix.call(c['sitedir'])
- versite= subprefix.call(c['sitelibdir'])
- sodir  = subprefix.call(c['sitearchdir'])

- siteruby   = subprefix.call(c['vendordir'])
- versite= subprefix.call(c['vendorlibdir'])
- sodir  = subprefix.call(c['vendorarchdir'])
-EOF
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=$pkgdir DESTDIR=$pkgdir install
-
-  install -Dm644 CS_LICENSE $pkgdir/usr/share/licenses/clearsilver/license.txt
-  rm -rf $pkgdir/usr/lib/perl5/5.8.8/
-
-  mv $pkgdir/usr/man/man3/* $pkgdir/usr/share/man/man3/
-  rm -rf $pkgdir/usr/man
-
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: clearsilver/repos/community-i686/PKGBUILD (from rev 100517, 
clearsilver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 11:31:11 UTC (rev 100518)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer : Aaron Griffin aa...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clearsilver
+pkgver=0.10.5
+pkgrel=11
+pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
+arch=('i686' 'x86_64')
+url='http://www.clearsilver.net'
+license=('custom')
+depends=('python2' 'perl' 'ruby' 'java-runtime')
+options=('!emptydirs')
+source=(http://www.clearsilver.net/downloads/$pkgname-$pkgver.tar.gz;
+clearsilver-ruby-1.9.patch)
+md5sums=('b8c0c7fbe0ef5e06e0c935f134304d44'
+ 'd9db4e5985254e1b0d63e9ff042773f4')
+
+build()
+{
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --disable-csharp --prefix=/usr --with-python=/usr/bin/python2
+
+  sed -i s@/usr/local/bin/python@/usr/bin/env python2@g scripts/document.py
+  sed -i s...@install.rb inst...@install.rb install --prefix=$pkgdir@g 
ruby/Makefile
+  patch -p1 $srcdir/clearsilver-ruby-1.9.patch
+  patch -p0 ruby/install.rb EOF
+71,73c71,73
+ siteruby   = subprefix.call(c['sitedir'])
+ versite= subprefix.call(c['sitelibdir'])
+ sodir  = subprefix.call(c['sitearchdir'])
+---
+ siteruby   = subprefix.call(c['vendordir'])
+ versite= subprefix.call(c['vendorlibdir'])
+ sodir  = subprefix.call(c['vendorarchdir'])
+EOF
+
+  make
+}
+

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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:41:40
  Author: spupykin
Revision: 100519

upgpkg: metamail 2.7-7

upd

Modified:
  metamail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:31:11 UTC (rev 100518)
+++ PKGBUILD2013-11-05 11:41:40 UTC (rev 100519)
@@ -5,7 +5,7 @@
 
 pkgname=metamail
 pkgver=2.7
-pkgrel=6
+pkgrel=7
 pkgdesc=Used to display and process MIME messages
 arch=('i686' 'x86_64')
 url=http://packages.debian.org/stable/mail/metamail;
@@ -12,8 +12,8 @@
 license=('custom')
 depends=('ncurses')
 noextract=(metamail_$pkgver-52.diff.gz)
-source=(http://ftp.de.debian.org/debian/pool/main/m/metamail/metamail_$pkgver.orig.tar.gz;
 \
-   
http://ftp.de.debian.org/debian/pool/main/m/metamail/metamail_$pkgver-54.diff.gz;
 \
+source=(ftp://ftp.archlinux.org/other/community/metamail/metamail_$pkgver.orig.tar.gz;
 \
+   
ftp://ftp.archlinux.org/other/community/metamail/metamail_$pkgver-54.diff.gz; \
license)
 md5sums=('c6967e9bc5d3c919764b02df24efca01'
  '2071dc7b9c33345443ab9a619e640a69'



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:41:56
  Author: spupykin
Revision: 100520

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

Added:
  metamail/repos/community-i686/PKGBUILD
(from rev 100519, metamail/trunk/PKGBUILD)
  metamail/repos/community-i686/license
(from rev 100519, metamail/trunk/license)
  metamail/repos/community-x86_64/PKGBUILD
(from rev 100519, metamail/trunk/PKGBUILD)
  metamail/repos/community-x86_64/license
(from rev 100519, metamail/trunk/license)
Deleted:
  metamail/repos/community-i686/PKGBUILD
  metamail/repos/community-i686/license
  metamail/repos/community-x86_64/PKGBUILD
  metamail/repos/community-x86_64/license

---+
 /PKGBUILD |   74 
 /license  |   74 
 community-i686/PKGBUILD   |   34 
 community-i686/license|   37 --
 community-x86_64/PKGBUILD |   34 
 community-x86_64/license  |   37 --
 6 files changed, 148 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 11:41:40 UTC (rev 100519)
+++ community-i686/PKGBUILD 2013-11-05 11:41:56 UTC (rev 100520)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sekenre sekenre at ukfsn dot org
-# Contributor: Daenyth Daenyth+Arch [AT] gmail [DOT] com
-
-pkgname=metamail
-pkgver=2.7
-pkgrel=6
-pkgdesc=Used to display and process MIME messages
-arch=('i686' 'x86_64')
-url=http://packages.debian.org/stable/mail/metamail;
-license=('custom')
-depends=('ncurses')
-noextract=(metamail_$pkgver-52.diff.gz)
-source=(http://ftp.de.debian.org/debian/pool/main/m/metamail/metamail_$pkgver.orig.tar.gz;
 \
-   
http://ftp.de.debian.org/debian/pool/main/m/metamail/metamail_$pkgver-54.diff.gz;
 \
-   license)
-md5sums=('c6967e9bc5d3c919764b02df24efca01'
- '2071dc7b9c33345443ab9a619e640a69'
- '38be502570f3ce5b5a2bafd6a876373f')
-
-build() {
-  cd $srcdir/metamail-$pkgver.orig
-
-  patch -p1 $srcdir/metamail_$pkgver-54.diff
-  sed -i 's|getline|xgetline|' metamail/uue.c src/metamail/uue.c
-
-  sh ./bootstrap
-  sh ./configure --prefix=/usr
-  make
-  make DESTDIR=$pkgdir install
-
-  install -D -m0644 $srcdir/license $pkgdir/usr/share/licenses/$pkgname/license
-}

Copied: metamail/repos/community-i686/PKGBUILD (from rev 100519, 
metamail/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 11:41:56 UTC (rev 100520)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sekenre sekenre at ukfsn dot org
+# Contributor: Daenyth Daenyth+Arch [AT] gmail [DOT] com
+
+pkgname=metamail
+pkgver=2.7
+pkgrel=7
+pkgdesc=Used to display and process MIME messages
+arch=('i686' 'x86_64')
+url=http://packages.debian.org/stable/mail/metamail;
+license=('custom')
+depends=('ncurses')
+noextract=(metamail_$pkgver-52.diff.gz)
+source=(ftp://ftp.archlinux.org/other/community/metamail/metamail_$pkgver.orig.tar.gz;
 \
+   
ftp://ftp.archlinux.org/other/community/metamail/metamail_$pkgver-54.diff.gz; \
+   license)
+md5sums=('c6967e9bc5d3c919764b02df24efca01'
+ '2071dc7b9c33345443ab9a619e640a69'
+ '38be502570f3ce5b5a2bafd6a876373f')
+
+build() {
+  cd $srcdir/metamail-$pkgver.orig
+
+  patch -p1 $srcdir/metamail_$pkgver-54.diff
+  sed -i 's|getline|xgetline|' metamail/uue.c src/metamail/uue.c
+
+  sh ./bootstrap
+  sh ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/metamail-$pkgver.orig
+  make DESTDIR=$pkgdir install
+  install -D -m0644 $srcdir/license $pkgdir/usr/share/licenses/$pkgname/license
+}

Deleted: community-i686/license
===
--- community-i686/license  2013-11-05 11:41:40 UTC (rev 100519)
+++ community-i686/license  2013-11-05 11:41:56 UTC (rev 100520)
@@ -1,37 +0,0 @@
-This is the Debian GNU/Linux prepackaged version of Metamail.
-
-This package was put together by Michael Meskes mes...@debian.org,
-from sources obtained from:
- ftp.bellcore.com:/pub/nsb/mm2.7.tar.Z and /pub/nsb/contrib2.7.tar.Z
-
-This package was then worked on by Herbert Xu herb...@debian.org.
-
-
-Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
-
-Permission to use, copy, modify, and distribute this material 
-for any purpose and without fee is hereby granted, provided 
-that the above copyright notice and this permission notice 
-appear in all copies, and that the name of Bellcore not be 
-used in advertising or publicity pertaining to this 
-material without the specific, 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 12:44:05
  Author: andrea
Revision: 198806

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

Added:
  phonon-gstreamer/repos/testing-i686/
  phonon-gstreamer/repos/testing-i686/PKGBUILD
(from rev 198805, phonon-gstreamer/trunk/PKGBUILD)
  phonon-gstreamer/repos/testing-i686/phonon-gstreamer.install
(from rev 198805, phonon-gstreamer/trunk/phonon-gstreamer.install)
  phonon-gstreamer/repos/testing-x86_64/
  phonon-gstreamer/repos/testing-x86_64/PKGBUILD
(from rev 198805, phonon-gstreamer/trunk/PKGBUILD)
  phonon-gstreamer/repos/testing-x86_64/phonon-gstreamer.install
(from rev 198805, phonon-gstreamer/trunk/phonon-gstreamer.install)

-+
 testing-i686/PKGBUILD   |   35 ++
 testing-i686/phonon-gstreamer.install   |   11 +
 testing-x86_64/PKGBUILD |   35 ++
 testing-x86_64/phonon-gstreamer.install |   11 +
 4 files changed, 92 insertions(+)

Copied: phonon-gstreamer/repos/testing-i686/PKGBUILD (from rev 198805, 
phonon-gstreamer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-05 11:44:05 UTC (rev 198806)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon-gstreamer
+pkgver=4.7.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+pkgdesc=Phonon GStreamer backend
+license=('LGPL')
+depends=('gstreamer0.10-base-plugins')
+makedepends=('cmake' 'automoc4' 'phonon-qt4')
+provides=('phonon-backend')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/phonon/phonon-backend-gstreamer/${pkgver}/src/phonon-backend-gstreamer-${pkgver}.tar.xz;)
+md5sums=('f00a1529d43158ce9faea516814562d3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../phonon-backend-gstreamer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: phonon-gstreamer/repos/testing-i686/phonon-gstreamer.install (from rev 
198805, phonon-gstreamer/trunk/phonon-gstreamer.install)
===
--- testing-i686/phonon-gstreamer.install   (rev 0)
+++ testing-i686/phonon-gstreamer.install   2013-11-05 11:44:05 UTC (rev 
198806)
@@ -0,0 +1,11 @@
+post_install(){
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: phonon-gstreamer/repos/testing-x86_64/PKGBUILD (from rev 198805, 
phonon-gstreamer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-05 11:44:05 UTC (rev 198806)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon-gstreamer
+pkgver=4.7.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+pkgdesc=Phonon GStreamer backend
+license=('LGPL')
+depends=('gstreamer0.10-base-plugins')
+makedepends=('cmake' 'automoc4' 'phonon-qt4')
+provides=('phonon-backend')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/phonon/phonon-backend-gstreamer/${pkgver}/src/phonon-backend-gstreamer-${pkgver}.tar.xz;)
+md5sums=('f00a1529d43158ce9faea516814562d3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../phonon-backend-gstreamer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: phonon-gstreamer/repos/testing-x86_64/phonon-gstreamer.install (from 
rev 198805, phonon-gstreamer/trunk/phonon-gstreamer.install)
===
--- testing-x86_64/phonon-gstreamer.install (rev 0)
+++ testing-x86_64/phonon-gstreamer.install 2013-11-05 11:44:05 UTC (rev 
198806)
@@ -0,0 +1,11 @@
+post_install(){
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 12:44:10
  Author: andrea
Revision: 198807

upgpkg: phonon-vlc 0.7.0-1

Upstream release

Modified:
  phonon-vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:44:05 UTC (rev 198806)
+++ PKGBUILD2013-11-05 11:44:10 UTC (rev 198807)
@@ -2,20 +2,23 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=phonon-vlc
-pkgver=0.6.2
-pkgrel=2
+pkgver=0.7.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
 pkgdesc=Phonon VLC backend
 license=('LGPL')
 depends=('vlc')
-makedepends=('cmake' 'automoc4' 'phonon')
+makedepends=('cmake' 'automoc4' 'phonon-qt4')
 provides=('phonon-backend')
-source=(http://download.kde.org/stable/phonon/phonon-backend-vlc/${pkgver}/phonon-backend-vlc-${pkgver}.tar.xz;)
-md5sums=('1ae8b15594714841d2bcf8c72813a176')
+source=(http://download.kde.org/stable/phonon/phonon-backend-vlc/${pkgver}/src/phonon-backend-vlc-${pkgver}.tar.xz;)
+md5sums=('1a172744eb0fd9cb0dbe0ea8b69e50f1')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  mkdir build
   cd build
   cmake ../phonon-backend-vlc-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 12:44:17
  Author: andrea
Revision: 198808

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

Added:
  phonon-vlc/repos/testing-i686/
  phonon-vlc/repos/testing-i686/PKGBUILD
(from rev 198807, phonon-vlc/trunk/PKGBUILD)
  phonon-vlc/repos/testing-x86_64/
  phonon-vlc/repos/testing-x86_64/PKGBUILD
(from rev 198807, phonon-vlc/trunk/PKGBUILD)

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

Copied: phonon-vlc/repos/testing-i686/PKGBUILD (from rev 198807, 
phonon-vlc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-05 11:44:17 UTC (rev 198808)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon-vlc
+pkgver=0.7.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+pkgdesc=Phonon VLC backend
+license=('LGPL')
+depends=('vlc')
+makedepends=('cmake' 'automoc4' 'phonon-qt4')
+provides=('phonon-backend')
+source=(http://download.kde.org/stable/phonon/phonon-backend-vlc/${pkgver}/src/phonon-backend-vlc-${pkgver}.tar.xz;)
+md5sums=('1a172744eb0fd9cb0dbe0ea8b69e50f1')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../phonon-backend-vlc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: phonon-vlc/repos/testing-x86_64/PKGBUILD (from rev 198807, 
phonon-vlc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-05 11:44:17 UTC (rev 198808)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon-vlc
+pkgver=0.7.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+pkgdesc=Phonon VLC backend
+license=('LGPL')
+depends=('vlc')
+makedepends=('cmake' 'automoc4' 'phonon-qt4')
+provides=('phonon-backend')
+source=(http://download.kde.org/stable/phonon/phonon-backend-vlc/${pkgver}/src/phonon-backend-vlc-${pkgver}.tar.xz;)
+md5sums=('1a172744eb0fd9cb0dbe0ea8b69e50f1')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../phonon-backend-vlc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 12:43:58
  Author: andrea
Revision: 198805

upgpkg: phonon-gstreamer 4.7.0-1

Upstream release

Modified:
  phonon-gstreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:20:42 UTC (rev 198804)
+++ PKGBUILD2013-11-05 11:43:58 UTC (rev 198805)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=phonon-gstreamer
-pkgver=4.6.3
+pkgver=4.7.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
@@ -9,24 +9,27 @@
 pkgdesc=Phonon GStreamer backend
 license=('LGPL')
 depends=('gstreamer0.10-base-plugins')
-makedepends=('cmake' 'automoc4' 'phonon')
+makedepends=('cmake' 'automoc4' 'phonon-qt4')
 provides=('phonon-backend')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/phonon/phonon-backend-gstreamer/${pkgver}/src/phonon-backend-gstreamer-${pkgver}.tar.xz;)
-md5sums=('d7b0b6245f380347c52c09033a814931')
+md5sums=('f00a1529d43158ce9faea516814562d3')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  cd ${srcdir}
-  mkdir build
   cd build
   cmake ../phonon-backend-gstreamer-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_SKIP_RPATH=ON
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_LIBDIR=lib
   make
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:46:49
  Author: spupykin
Revision: 100521

upgpkg: torch 3.1-4

upd

Modified:
  torch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:41:56 UTC (rev 100520)
+++ PKGBUILD2013-11-05 11:46:49 UTC (rev 100521)
@@ -3,7 +3,7 @@
 
 pkgname=torch
 pkgver=3.1
-pkgrel=3
+pkgrel=4
 pkgdesc=State of the art machine learning library
 arch=(i686 x86_64)
 url=http://packages.debian.org/source/lenny/torch3;
@@ -10,14 +10,14 @@
 license=('GPL')
 depends=(gcc-libs)
 
source=(http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver.orig.tar.gz
-   
http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver-2.diff.gz)
+   
http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver-2.1.diff.gz)
 md5sums=('04f7dc72a1e875a12ddf8ac77ec2dcc7'
- 'b928c4206abb3209435dca27ad3e3c22')
+ '4f6c8e743e7a0aa9688f1e20b14797e4')
 
 build() {
   cd $srcdir/torch3-$pkgver.orig
 
-  [ $NOEXTRACT -eq 1 ] || cat $srcdir/torch3_$pkgver-2.diff | patch -p1
+  [ $NOEXTRACT -eq 1 ] || cat $srcdir/torch3_$pkgver-2.1.diff | patch -p1
   [ $NOEXTRACT -eq 1 ] || make depend
 
   make



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

2013-11-05 Thread Sergej Pupykin
Date: Tuesday, November 5, 2013 @ 12:47:05
  Author: spupykin
Revision: 100522

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

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

---+
 /PKGBUILD |   74 
 community-i686/PKGBUILD   |   33 ---
 community-x86_64/PKGBUILD |   33 ---
 3 files changed, 74 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 11:46:49 UTC (rev 100521)
+++ community-i686/PKGBUILD 2013-11-05 11:47:05 UTC (rev 100522)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=torch
-pkgver=3.1
-pkgrel=3
-pkgdesc=State of the art machine learning library
-arch=(i686 x86_64)
-url=http://packages.debian.org/source/lenny/torch3;
-license=('GPL')
-depends=(gcc-libs)
-source=(http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver.orig.tar.gz
-   
http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver-2.diff.gz)
-md5sums=('04f7dc72a1e875a12ddf8ac77ec2dcc7'
- 'b928c4206abb3209435dca27ad3e3c22')
-
-build() {
-  cd $srcdir/torch3-$pkgver.orig
-
-  [ $NOEXTRACT -eq 1 ] || cat $srcdir/torch3_$pkgver-2.diff | patch -p1
-  [ $NOEXTRACT -eq 1 ] || make depend
-
-  make
-
-  mkdir -p $pkgdir/usr/{include/torch,lib}
-
-  for i in core convolutions datasets decoder distributions gradients kernels 
matrix nonparametrics speech; do
-install -D -m0644 $i/*.h $pkgdir/usr/include/torch/
-  done
-
-  install -D -m0755 lib/*.so* $pkgdir/usr/lib/
-  install -D -m0644 lib/*.a $pkgdir/usr/lib/
-}

Copied: torch/repos/community-i686/PKGBUILD (from rev 100521, 
torch/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 11:47:05 UTC (rev 100522)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=torch
+pkgver=3.1
+pkgrel=4
+pkgdesc=State of the art machine learning library
+arch=(i686 x86_64)
+url=http://packages.debian.org/source/lenny/torch3;
+license=('GPL')
+depends=(gcc-libs)
+source=(http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver.orig.tar.gz
+   
http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver-2.1.diff.gz)
+md5sums=('04f7dc72a1e875a12ddf8ac77ec2dcc7'
+ '4f6c8e743e7a0aa9688f1e20b14797e4')
+
+build() {
+  cd $srcdir/torch3-$pkgver.orig
+
+  [ $NOEXTRACT -eq 1 ] || cat $srcdir/torch3_$pkgver-2.1.diff | patch -p1
+  [ $NOEXTRACT -eq 1 ] || make depend
+
+  make
+}
+
+package() {
+  cd $srcdir/torch3-$pkgver.orig
+
+  mkdir -p $pkgdir/usr/{include/torch,lib}
+
+  for i in core convolutions datasets decoder distributions gradients kernels 
matrix nonparametrics speech; do
+install -D -m0644 $i/*.h $pkgdir/usr/include/torch/
+  done
+
+  install -D -m0755 lib/*.so* $pkgdir/usr/lib/
+  install -D -m0644 lib/*.a $pkgdir/usr/lib/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-05 11:46:49 UTC (rev 100521)
+++ community-x86_64/PKGBUILD   2013-11-05 11:47:05 UTC (rev 100522)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=torch
-pkgver=3.1
-pkgrel=3
-pkgdesc=State of the art machine learning library
-arch=(i686 x86_64)
-url=http://packages.debian.org/source/lenny/torch3;
-license=('GPL')
-depends=(gcc-libs)
-source=(http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver.orig.tar.gz
-   
http://ftp.de.debian.org/debian/pool/main/t/torch3/torch3_$pkgver-2.diff.gz)
-md5sums=('04f7dc72a1e875a12ddf8ac77ec2dcc7'
- 'b928c4206abb3209435dca27ad3e3c22')
-
-build() {
-  cd $srcdir/torch3-$pkgver.orig
-
-  [ $NOEXTRACT -eq 1 ] || cat $srcdir/torch3_$pkgver-2.diff | patch -p1
-  [ $NOEXTRACT -eq 1 ] || make depend
-
-  make
-
-  mkdir -p $pkgdir/usr/{include/torch,lib}
-
-  for i in core convolutions datasets decoder distributions gradients kernels 
matrix nonparametrics speech; do
-install -D -m0644 $i/*.h $pkgdir/usr/include/torch/
-  done
-
-  install -D -m0755 lib/*.so* $pkgdir/usr/lib/
-  install -D -m0644 lib/*.a $pkgdir/usr/lib/
-}

Copied: torch/repos/community-x86_64/PKGBUILD (from rev 100521, 
torch/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-05 11:47:05 UTC (rev 100522)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 13:03:39
  Author: andrea
Revision: 198809

Better way

Modified:
  phonon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:44:17 UTC (rev 198808)
+++ PKGBUILD2013-11-05 12:03:39 UTC (rev 198809)
@@ -25,7 +25,8 @@
 -DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
--DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4
+-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
+-DCMAKE_INSTALL_LIBDIR=lib
   make
 
   cd ../build-qt5
@@ -34,7 +35,8 @@
 -DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
--DPHONON_BUILD_PHONON4QT5=ON
+-DPHONON_BUILD_PHONON4QT5=ON \
+-DCMAKE_INSTALL_LIBDIR=lib
   make
 }
 
@@ -53,8 +55,6 @@
   install -d ${pkgdir}/usr/include/qt4
   mv ${pkgdir}/usr/include/{phonon,KDE} ${pkgdir}/usr/include/qt4/
 
-  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
-
   sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
 ${pkgdir}/usr/lib/pkgconfig/phonon.pc
 }
@@ -66,6 +66,4 @@
 
   cd build-qt5
   make DESTDIR=${pkgdir} install
-
-  [[ -d ${pkgdir}/usr/lib64 ]]  mv ${pkgdir}/usr/{lib64/*,lib}
 }



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 14:08:39
  Author: fyan
Revision: 100523

upgpkg: cgminer 3.7.1-1

Modified:
  cgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 11:47:05 UTC (rev 100522)
+++ PKGBUILD2013-11-05 13:08:39 UTC (rev 100523)
@@ -5,7 +5,7 @@
 # Contributor: David Manouchehri da...@davidmanouchehri.com
 
 pkgname=cgminer
-pkgver=3.7.0
+pkgver=3.7.1
 #_pkgver=3.6.6
 _pkgver=$pkgver
 pkgrel=1
@@ -14,10 +14,10 @@
 license=('GPL3')
 arch=('i686' 'x86_64')
 depends=('curl' 'libcl' 'libusbx' 'jansson')
-makedepends=('opencl-headers')
+makedepends=('opencl-headers' 'git')
 optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
 # 'opencl-catalyst: OpenCL implementation for AMD') # catalyst 
currently dropped from repo
-source=(http://ck.kolivas.org/apps/$pkgname/$pkgname-${_pkgver}.tar.bz2;
+source=(git+https://github.com/ckolivas/${pkgname}.git#tag=v$_pkgver;
 $pkgname.conf.d
 $pkgname.service)
 backup=(etc/conf.d/$pkgname etc/$pkgname.conf)
@@ -24,27 +24,43 @@
 
 [ $CARCH == x86_64 ]  makedepends+=('yasm')
 
-build() {
-  cd $srcdir/$pkgname-$_pkgver
-
+prepare() {
+  cd $pkgname
   # We have latest jansson and libusb - just use them
-  sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
-  sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
-  sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
-  sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
-  sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
-  sed 's|compat/Makefile ||' -i ./configure
 
-  sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
-  sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
-  sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
+  sed -e 's|^AC_CONFIG_SUBDIRS.*compat/jansson-2\.5.*||' \
+  -e 
's|JANSSON_LIBS=compat/jansson-2\.5/src/\.libs/libjansson\.a|JANSSON_LIBS=-ljansson|'
 \
+  -e 's|compat/Makefile||' \
+  -i ./configure.ac
 
+  sed -e 's|^JANSSON_INCLUDES= .*||' \
+  -e 's|^USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' \
+  -e 's|^SUBDIRS.*|SUBDIRS = lib ccan|' \
+  -i ./Makefile.am
+
+  #sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
+  #sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
+  #sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
+  #sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
+  #sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
+  #sed 's|compat/Makefile ||' -i ./configure
+
+  #sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
+  #sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
+  #sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
+
   rm -r compat
+}
 
+build() {
+  cd $pkgname
+  
   # Here you may want to use custom CFLAGS
   #export CFLAGS=-O2 -march=native -mtune=native -msse2
   
-  ./configure \
+  # ./configure \
+
+  ./autogen.sh \
 --prefix=/usr \
 --enable-scrypt \
 --enable-opencl \
@@ -64,7 +80,7 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-$_pkgver
+  cd $pkgname
 
   make DESTDIR=$pkgdir install
 
@@ -77,6 +93,6 @@
   install -Dm644 $pkgname.conf $pkgdir/etc/$pkgname.conf
 }
 
-sha512sums=('40abe81952a67b4143a5f51e52d3a7787832ba36723ddc8f926b8f0dd190c9a4d1118c120005160ad8d5326a4e0c77c4334a26982717a96642780a0a54be'
+sha512sums=('SKIP'
 
'99c38bc395848f9712ce172343d31f5c60f5d8ac1cfe2f48df8f3ec6c488fc275763a79c5ef36b99f32faa465b5a65284b38e8a63ef9b144075ee13971313b41'
 
'3317b60c6b1f14c47d8ee636113ef40a4023ab14054129de80a37947b381fd2b647a7053f4e1bb639efa225a514e862fa531908714c34040dda2d6221dde7f5f')



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 14:10:18
  Author: fyan
Revision: 100524

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

Added:
  cgminer/repos/community-i686/PKGBUILD
(from rev 100523, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-i686/cgminer.conf.d
(from rev 100523, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-i686/cgminer.service
(from rev 100523, cgminer/trunk/cgminer.service)
  cgminer/repos/community-x86_64/PKGBUILD
(from rev 100523, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-x86_64/cgminer.conf.d
(from rev 100523, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-x86_64/cgminer.service
(from rev 100523, cgminer/trunk/cgminer.service)
Deleted:
  cgminer/repos/community-i686/PKGBUILD
  cgminer/repos/community-i686/cgminer.conf.d
  cgminer/repos/community-i686/cgminer.service
  cgminer/repos/community-x86_64/PKGBUILD
  cgminer/repos/community-x86_64/cgminer.conf.d
  cgminer/repos/community-x86_64/cgminer.service

--+
 /PKGBUILD|  196 +
 /cgminer.conf.d  |   22 
 /cgminer.service |   16 +++
 community-i686/PKGBUILD  |   82 ---
 community-i686/cgminer.conf.d|   11 --
 community-i686/cgminer.service   |8 -
 community-x86_64/PKGBUILD|   82 ---
 community-x86_64/cgminer.conf.d  |   11 --
 community-x86_64/cgminer.service |8 -
 9 files changed, 234 insertions(+), 202 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 13:08:39 UTC (rev 100523)
+++ community-i686/PKGBUILD 2013-11-05 13:10:18 UTC (rev 100524)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: monson holymon...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: David Manouchehri da...@davidmanouchehri.com
-
-pkgname=cgminer
-pkgver=3.7.0
-#_pkgver=3.6.6
-_pkgver=$pkgver
-pkgrel=1
-pkgdesc=Multi-threaded multi-pool GPU, FPGA and ASIC miner for bitcoin and 
derivative coins
-url='http://forum.bitcoin.org/index.php?topic=28402.0'
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('curl' 'libcl' 'libusbx' 'jansson')
-makedepends=('opencl-headers')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-# 'opencl-catalyst: OpenCL implementation for AMD') # catalyst 
currently dropped from repo
-source=(http://ck.kolivas.org/apps/$pkgname/$pkgname-${_pkgver}.tar.bz2;
-$pkgname.conf.d
-$pkgname.service)
-backup=(etc/conf.d/$pkgname etc/$pkgname.conf)
-
-[ $CARCH == x86_64 ]  makedepends+=('yasm')
-
-build() {
-  cd $srcdir/$pkgname-$_pkgver
-
-  # We have latest jansson and libusb - just use them
-  sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
-  sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
-  sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
-  sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
-  sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
-  sed 's|compat/Makefile ||' -i ./configure
-
-  sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
-  sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
-  sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
-
-  rm -r compat
-
-  # Here you may want to use custom CFLAGS
-  #export CFLAGS=-O2 -march=native -mtune=native -msse2
-  
-  ./configure \
---prefix=/usr \
---enable-scrypt \
---enable-opencl \
---enable-bflsc \
---enable-bitforce \
---enable-icarus \
---enable-modminer \
---enable-avalon \
---enable-klondike \
---enable-bitfury \
---enable-hashfast \
---enable-knc \
---with-system-libusb \
---disable-adl # For license issues
-  
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$_pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/usr/share/$pkgname
-  install -m755 miner.php api-example.* $pkgdir/usr/share/$pkgname
-
-  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm644 $srcdir/$pkgname.conf.d $pkgdir/etc/conf.d/$pkgname
-  sed 's#/usr/local/bin#/usr/bin#g' example.conf  $pkgname.conf
-  install -Dm644 $pkgname.conf $pkgdir/etc/$pkgname.conf
-}
-
-sha512sums=('40abe81952a67b4143a5f51e52d3a7787832ba36723ddc8f926b8f0dd190c9a4d1118c120005160ad8d5326a4e0c77c4334a26982717a96642780a0a54be'
-
'99c38bc395848f9712ce172343d31f5c60f5d8ac1cfe2f48df8f3ec6c488fc275763a79c5ef36b99f32faa465b5a65284b38e8a63ef9b144075ee13971313b41'
-
'3317b60c6b1f14c47d8ee636113ef40a4023ab14054129de80a37947b381fd2b647a7053f4e1bb639efa225a514e862fa531908714c34040dda2d6221dde7f5f')

Copied: 

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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 14:41:39
  Author: fyan
Revision: 100525

upgpkg: cgminer 3.7.2-1

Modified:
  cgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 13:10:18 UTC (rev 100524)
+++ PKGBUILD2013-11-05 13:41:39 UTC (rev 100525)
@@ -5,7 +5,7 @@
 # Contributor: David Manouchehri da...@davidmanouchehri.com
 
 pkgname=cgminer
-pkgver=3.7.1
+pkgver=3.7.2
 #_pkgver=3.6.6
 _pkgver=$pkgver
 pkgrel=1



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 14:43:14
  Author: fyan
Revision: 100526

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

Added:
  cgminer/repos/community-i686/PKGBUILD
(from rev 100525, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-i686/cgminer.conf.d
(from rev 100525, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-i686/cgminer.service
(from rev 100525, cgminer/trunk/cgminer.service)
  cgminer/repos/community-x86_64/PKGBUILD
(from rev 100525, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-x86_64/cgminer.conf.d
(from rev 100525, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-x86_64/cgminer.service
(from rev 100525, cgminer/trunk/cgminer.service)
Deleted:
  cgminer/repos/community-i686/PKGBUILD
  cgminer/repos/community-i686/cgminer.conf.d
  cgminer/repos/community-i686/cgminer.service
  cgminer/repos/community-x86_64/PKGBUILD
  cgminer/repos/community-x86_64/cgminer.conf.d
  cgminer/repos/community-x86_64/cgminer.service

--+
 /PKGBUILD|  196 +
 /cgminer.conf.d  |   22 
 /cgminer.service |   16 +++
 community-i686/PKGBUILD  |   98 --
 community-i686/cgminer.conf.d|   11 --
 community-i686/cgminer.service   |8 -
 community-x86_64/PKGBUILD|   98 --
 community-x86_64/cgminer.conf.d  |   11 --
 community-x86_64/cgminer.service |8 -
 9 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 13:41:39 UTC (rev 100525)
+++ community-i686/PKGBUILD 2013-11-05 13:43:14 UTC (rev 100526)
@@ -1,98 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: monson holymon...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: David Manouchehri da...@davidmanouchehri.com
-
-pkgname=cgminer
-pkgver=3.7.1
-#_pkgver=3.6.6
-_pkgver=$pkgver
-pkgrel=1
-pkgdesc=Multi-threaded multi-pool GPU, FPGA and ASIC miner for bitcoin and 
derivative coins
-url='http://forum.bitcoin.org/index.php?topic=28402.0'
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('curl' 'libcl' 'libusbx' 'jansson')
-makedepends=('opencl-headers' 'git')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-# 'opencl-catalyst: OpenCL implementation for AMD') # catalyst 
currently dropped from repo
-source=(git+https://github.com/ckolivas/${pkgname}.git#tag=v$_pkgver;
-$pkgname.conf.d
-$pkgname.service)
-backup=(etc/conf.d/$pkgname etc/$pkgname.conf)
-
-[ $CARCH == x86_64 ]  makedepends+=('yasm')
-
-prepare() {
-  cd $pkgname
-  # We have latest jansson and libusb - just use them
-
-  sed -e 's|^AC_CONFIG_SUBDIRS.*compat/jansson-2\.5.*||' \
-  -e 
's|JANSSON_LIBS=compat/jansson-2\.5/src/\.libs/libjansson\.a|JANSSON_LIBS=-ljansson|'
 \
-  -e 's|compat/Makefile||' \
-  -i ./configure.ac
-
-  sed -e 's|^JANSSON_INCLUDES= .*||' \
-  -e 's|^USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' \
-  -e 's|^SUBDIRS.*|SUBDIRS = lib ccan|' \
-  -i ./Makefile.am
-
-  #sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
-  #sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
-  #sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
-  #sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
-  #sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
-  #sed 's|compat/Makefile ||' -i ./configure
-
-  #sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
-  #sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
-  #sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
-
-  rm -r compat
-}
-
-build() {
-  cd $pkgname
-  
-  # Here you may want to use custom CFLAGS
-  #export CFLAGS=-O2 -march=native -mtune=native -msse2
-  
-  # ./configure \
-
-  ./autogen.sh \
---prefix=/usr \
---enable-scrypt \
---enable-opencl \
---enable-bflsc \
---enable-bitforce \
---enable-icarus \
---enable-modminer \
---enable-avalon \
---enable-klondike \
---enable-bitfury \
---enable-hashfast \
---enable-knc \
---with-system-libusb \
---disable-adl # For license issues
-  
-  make
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/usr/share/$pkgname
-  install -m755 miner.php api-example.* $pkgdir/usr/share/$pkgname
-
-  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm644 $srcdir/$pkgname.conf.d $pkgdir/etc/conf.d/$pkgname
-  sed 's#/usr/local/bin#/usr/bin#g' example.conf  $pkgname.conf
-  install -Dm644 $pkgname.conf 

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

2013-11-05 Thread Alexandre Filgueira
Date: Tuesday, November 5, 2013 @ 15:07:36
  Author: faidoc
Revision: 100527

upgpkg: cinnamon 2.0.10-1

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 13:43:14 UTC (rev 100526)
+++ PKGBUILD2013-11-05 14:07:36 UTC (rev 100527)
@@ -5,8 +5,8 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=2.0.8
-pkgrel=2
+pkgver=2.0.10
+pkgrel=1
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
 url=http://cinnamon.linuxmint.com/;
@@ -26,7 +26,7 @@
 keyboard_applet.patch
 input_keybindings.patch
 org.archlinux.pkexec.cinnamon-settings-users.policy)
-sha256sums=('f7868e3321a00dd2704a270b474ad0844b7e34e6c536b1b4a9c70b4be7c1f5f4'
+sha256sums=('d63c1681da7fa16a0385c64dd93af71ae4ad17fb2a0b112ddfa1aa5232a27596'
 '2e10ba71fd9ba40afd7e9492b2fc0d5bcc27874bcde543cfd8a47ad20c52354a'
 '6acb07393105ddced8a4c3c869a596350d1a7d81a808ca5307d2ad770653a9d3'
 'e28c40eb844105154fa6106f5b4de3151a22805b3a7b2f84be9ea6c15cec3de6'



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

2013-11-05 Thread Alexandre Filgueira
Date: Tuesday, November 5, 2013 @ 15:09:17
  Author: faidoc
Revision: 100528

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

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

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

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


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

2013-11-05 Thread Alexandre Filgueira
Date: Tuesday, November 5, 2013 @ 15:11:44
  Author: faidoc
Revision: 100529

upgpkg: cinnamon-desktop 2.0.3-1

Modified:
  cinnamon-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 14:09:17 UTC (rev 100528)
+++ PKGBUILD2013-11-05 14:11:44 UTC (rev 100529)
@@ -3,7 +3,7 @@
 # Contributor:  Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-desktop
-pkgver=2.0.2
+pkgver=2.0.3
 pkgrel=1
 pkgdesc=Library with common API for various Cinnamon modules
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 url=https://github.com/linuxmint/cinnamon-desktop;
 install=cinnamon-desktop.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;)
-sha256sums=('3a417c6f1a1f77182c794e8df6bbea7f36bf3501a332f974322fa4dd0759319d')
+sha256sums=('bd9c50df70432d2e37a7c11728dcdf264af235b261b3f378eade61dc4ef101c3')
 
 build() {
   cd $pkgname-$pkgver



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

2013-11-05 Thread Alexandre Filgueira
Date: Tuesday, November 5, 2013 @ 15:12:41
  Author: faidoc
Revision: 100530

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

Added:
  cinnamon-desktop/repos/community-i686/PKGBUILD
(from rev 100529, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
(from rev 100529, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 100529, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
(from rev 100529, cinnamon-desktop/trunk/cinnamon-desktop.install)
Deleted:
  cinnamon-desktop/repos/community-i686/PKGBUILD
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install

---+
 /PKGBUILD |   56 
 /cinnamon-desktop.install |   22 +++
 community-i686/PKGBUILD   |   28 --
 community-i686/cinnamon-desktop.install   |   11 -
 community-x86_64/PKGBUILD |   28 --
 community-x86_64/cinnamon-desktop.install |   11 -
 6 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 14:11:44 UTC (rev 100529)
+++ community-i686/PKGBUILD 2013-11-05 14:12:41 UTC (rev 100530)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
-# Contributor:  Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-desktop
-pkgver=2.0.2
-pkgrel=1
-pkgdesc=Library with common API for various Cinnamon modules
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(gtk3 libxkbfile)
-makedepends=(intltool gobject-introspection gnome-common)
-url=https://github.com/linuxmint/cinnamon-desktop;
-install=cinnamon-desktop.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;)
-sha256sums=('3a417c6f1a1f77182c794e8df6bbea7f36bf3501a332f974322fa4dd0759319d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-desktop/repos/community-i686/PKGBUILD (from rev 100529, 
cinnamon-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 14:12:41 UTC (rev 100530)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.0.3
+pkgrel=1
+pkgdesc=Library with common API for various Cinnamon modules
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxkbfile)
+makedepends=(intltool gobject-introspection gnome-common)
+url=https://github.com/linuxmint/cinnamon-desktop;
+install=cinnamon-desktop.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;)
+sha256sums=('bd9c50df70432d2e37a7c11728dcdf264af235b261b3f378eade61dc4ef101c3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-desktop.install
===
--- community-i686/cinnamon-desktop.install 2013-11-05 14:11:44 UTC (rev 
100529)
+++ community-i686/cinnamon-desktop.install 2013-11-05 14:12:41 UTC (rev 
100530)
@@ -1,11 +0,0 @@
-post_install() {
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: cinnamon-desktop/repos/community-i686/cinnamon-desktop.install (from 
rev 100529, cinnamon-desktop/trunk/cinnamon-desktop.install)
===
--- community-i686/cinnamon-desktop.install (rev 0)
+++ community-i686/cinnamon-desktop.install 2013-11-05 14:12:41 UTC (rev 
100530)
@@ -0,0 +1,11 @@
+post_install() {
+   glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-05 14:11:44 UTC (rev 100529)
+++ community-x86_64/PKGBUILD   2013-11-05 14:12:41 UTC (rev 100530)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Alexandre 

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

2013-11-05 Thread Alexandre Filgueira
Date: Tuesday, November 5, 2013 @ 15:17:09
  Author: faidoc
Revision: 100531

upgpkg: nemo 2.0.5-1

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 14:12:41 UTC (rev 100530)
+++ PKGBUILD2013-11-05 14:17:09 UTC (rev 100531)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=2.0.4
+pkgver=2.0.5
 pkgrel=1
 pkgdesc=Cinnamon file manager (Nautilus fork)
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!emptydirs')
 install=nemo.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
-sha256sums=('5ce99da6371d9ec62eaf947ae11dd3c2e88e605f3cc66411329b8c90192d2702')
+sha256sums=('5c737c4ede5f4e000fbfe247d1f86086c885f4b0d0f38790db885bf62ac51fc6')
 
 prepare() {
   cd linuxmint-nemo-*



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

2013-11-05 Thread Alexandre Filgueira
Date: Tuesday, November 5, 2013 @ 15:18:02
  Author: faidoc
Revision: 100532

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

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

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

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

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

Deleted: community-i686/nemo.install
===
--- community-i686/nemo.install 2013-11-05 14:17:09 UTC (rev 100531)
+++ community-i686/nemo.install 2013-11-05 14:18:02 UTC (rev 100532)
@@ -1,14 +0,0 @@
-post_install() {
-  glib-compile-schemas --allow-any-name usr/share/glib-2.0/schemas
-  update-desktop-database 

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 17:40:42
  Author: bpiotrowski
Revision: 198812

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

Added:
  gimp/repos/extra-i686/PKGBUILD
(from rev 198811, gimp/trunk/PKGBUILD)
  gimp/repos/extra-i686/gimp.install
(from rev 198811, gimp/trunk/gimp.install)
  gimp/repos/extra-i686/linux.gpl
(from rev 198811, gimp/trunk/linux.gpl)
  gimp/repos/extra-i686/uri-backend-libcurl.patch
(from rev 198811, gimp/trunk/uri-backend-libcurl.patch)
  gimp/repos/extra-x86_64/PKGBUILD
(from rev 198811, gimp/trunk/PKGBUILD)
  gimp/repos/extra-x86_64/gimp.install
(from rev 198811, gimp/trunk/gimp.install)
  gimp/repos/extra-x86_64/linux.gpl
(from rev 198811, gimp/trunk/linux.gpl)
  gimp/repos/extra-x86_64/uri-backend-libcurl.patch
(from rev 198811, gimp/trunk/uri-backend-libcurl.patch)
Deleted:
  gimp/repos/extra-i686/PKGBUILD
  gimp/repos/extra-i686/gimp.install
  gimp/repos/extra-i686/linux.gpl
  gimp/repos/extra-i686/uri-backend-libcurl.patch
  gimp/repos/extra-x86_64/PKGBUILD
  gimp/repos/extra-x86_64/gimp.install
  gimp/repos/extra-x86_64/linux.gpl
  gimp/repos/extra-x86_64/uri-backend-libcurl.patch

+
 /PKGBUILD  |   98 +++
 /gimp.install  |   24 
 /linux.gpl |   38 +++
 /uri-backend-libcurl.patch |  154 +++
 extra-i686/PKGBUILD|   49 -
 extra-i686/gimp.install|   12 --
 extra-i686/linux.gpl   |   19 ---
 extra-i686/uri-backend-libcurl.patch   |   77 ---
 extra-x86_64/PKGBUILD  |   49 -
 extra-x86_64/gimp.install  |   12 --
 extra-x86_64/linux.gpl |   19 ---
 extra-x86_64/uri-backend-libcurl.patch |   77 ---
 12 files changed, 314 insertions(+), 314 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 16:40:29 UTC (rev 198811)
+++ extra-i686/PKGBUILD 2013-11-05 16:40:42 UTC (rev 198812)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann dan...@archlinux.org
-
-pkgname=gimp
-pkgver=2.8.6
-pkgrel=2
-pkgdesc=GNU Image Manipulation Program
-arch=('i686' 'x86_64')
-url=http://www.gimp.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'lcms' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 
'dbus-glib' \
- 'libexif' 'gegl' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 
'babl')
-makedepends=('intltool' 'webkitgtk2' 'poppler-glib' 'alsa-lib' 'iso-codes' 
'curl' 'ghostscript')
-optdepends=('gutenprint: for sophisticated printing only as gimp has built-in 
cups print support'
-'webkitgtk2: for the help browser'
-'poppler-glib: for pdf support'
-'alsa-lib: for MIDI event controller module'
-'curl: for URI support'
-'ghostscript: for postscript support')
-options=('!makeflags')
-conflicts=('gimp-devel')
-install=gimp.install
-source=(ftp://ftp.gimp.org/pub/gimp/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2 
linux.gpl 
-uri-backend-libcurl.patch)
-md5sums=('12b3fdf33d1f07ae79b412a9e38b9693'
- 'bb27bc214261d36484093e857f015f38'
- 'e894f4b2ffa92c71448fdd350e9b78c6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  #patch -p1  ../uri-backend-libcurl.patch
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
---enable-mp --enable-gimp-console --enable-gimp-remote \
---enable-python --with-gif-compression=lzw --with-libcurl \
---without-aa --without-hal --without-gvfs --without-gnomevfs
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/lib/gimp/2.0/plug-ins/*.py
-  install -D -m644 ${srcdir}/linux.gpl 
${pkgdir}/usr/share/gimp/2.0/palettes/Linux.gpl
-
-  rm ${pkgdir}/usr/share/man/man1/gimp-console.1
-  ln -s gimp-console-${pkgver%.*}.1.gz 
${pkgdir}/usr/share/man/man1/gimp-console.1.gz
-  ln -s gimptool-2.0 ${pkgdir}/usr/bin/gimptool
-  ln -sf gimptool-2.0.1.gz ${pkgdir}/usr/share/man/man1/gimptool.1.gz
-}

Copied: gimp/repos/extra-i686/PKGBUILD (from rev 198811, gimp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 16:40:42 UTC (rev 198812)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Daniel Isenmann dan...@archlinux.org
+
+pkgname=gimp
+pkgver=2.8.8
+pkgrel=1
+pkgdesc=GNU Image Manipulation Program
+arch=('i686' 'x86_64')
+url=http://www.gimp.org/;
+license=('GPL' 'LGPL')
+depends=('pygtk' 'lcms' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 
'dbus-glib' \
+ 'libexif' 'gegl' 'jasper' 'desktop-file-utils' 'hicolor-icon-theme' 
'babl')
+makedepends=('intltool' 'webkitgtk2' 

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 17:40:29
  Author: bpiotrowski
Revision: 198811

upgpkg: gimp 2.8.8-1

- new upstream release

Modified:
  gimp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 15:59:03 UTC (rev 198810)
+++ PKGBUILD2013-11-05 16:40:29 UTC (rev 198811)
@@ -2,8 +2,8 @@
 # Maintainer: Daniel Isenmann dan...@archlinux.org
 
 pkgname=gimp
-pkgver=2.8.6
-pkgrel=2
+pkgver=2.8.8
+pkgrel=1
 pkgdesc=GNU Image Manipulation Program
 arch=('i686' 'x86_64')
 url=http://www.gimp.org/;
@@ -22,7 +22,7 @@
 install=gimp.install
 source=(ftp://ftp.gimp.org/pub/gimp/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2 
linux.gpl 
 uri-backend-libcurl.patch)
-md5sums=('12b3fdf33d1f07ae79b412a9e38b9693'
+md5sums=('ef2547c3514a1096931637bd6250635a'
  'bb27bc214261d36484093e857f015f38'
  'e894f4b2ffa92c71448fdd350e9b78c6')
 



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

2013-11-05 Thread Kyle Keen
Date: Tuesday, November 5, 2013 @ 18:01:08
  Author: kkeen
Revision: 100534

upgpkg: jshon 20131105-1

Modified:
  jshon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 15:59:45 UTC (rev 100533)
+++ PKGBUILD2013-11-05 17:01:08 UTC (rev 100534)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Kyle Keen keen...@gmail.com
 pkgname=jshon
-pkgver=20130815
+pkgver=20131105
 pkgrel=1
 pkgdesc=A json parser for the shell.
 arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@
 license=('MIT')
 depends=('jansson')
 source=(http://kmkeen.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('3ef31b1954ef0838f67bcaf20993dcdd')
+md5sums=('84596bcf2d6cde7bbc0fcb4626765b99')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2013-11-05 Thread Kyle Keen
Date: Tuesday, November 5, 2013 @ 18:02:10
  Author: kkeen
Revision: 100535

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 17:01:08 UTC (rev 100534)
+++ community-i686/PKGBUILD 2013-11-05 17:02:10 UTC (rev 100535)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-pkgname=jshon
-pkgver=20130815
-pkgrel=1
-pkgdesc=A json parser for the shell.
-arch=('i686' 'x86_64')
-url=http://kmkeen.com/jshon/;
-license=('MIT')
-depends=('jansson')
-source=(http://kmkeen.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('3ef31b1954ef0838f67bcaf20993dcdd')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -Dm755 $pkgname   $pkgdir/usr/bin/$pkgname
-  install -Dm644 $pkgname.1 $pkgdir/usr/share/man/man1/$pkgname.1
-  install -Dm644 LICENSE$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jshon/repos/community-i686/PKGBUILD (from rev 100534, 
jshon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 17:02:10 UTC (rev 100535)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+pkgname=jshon
+pkgver=20131105
+pkgrel=1
+pkgdesc=A json parser for the shell.
+arch=('i686' 'x86_64')
+url=http://kmkeen.com/jshon/;
+license=('MIT')
+depends=('jansson')
+source=(http://kmkeen.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('84596bcf2d6cde7bbc0fcb4626765b99')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -Dm755 $pkgname   $pkgdir/usr/bin/$pkgname
+  install -Dm644 $pkgname.1 $pkgdir/usr/share/man/man1/$pkgname.1
+  install -Dm644 LICENSE$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-05 17:01:08 UTC (rev 100534)
+++ community-x86_64/PKGBUILD   2013-11-05 17:02:10 UTC (rev 100535)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-pkgname=jshon
-pkgver=20130815
-pkgrel=1
-pkgdesc=A json parser for the shell.
-arch=('i686' 'x86_64')
-url=http://kmkeen.com/jshon/;
-license=('MIT')
-depends=('jansson')
-source=(http://kmkeen.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('3ef31b1954ef0838f67bcaf20993dcdd')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -Dm755 $pkgname   $pkgdir/usr/bin/$pkgname
-  install -Dm644 $pkgname.1 $pkgdir/usr/share/man/man1/$pkgname.1
-  install -Dm644 LICENSE$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jshon/repos/community-x86_64/PKGBUILD (from rev 100534, 
jshon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-05 17:02:10 UTC (rev 100535)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+pkgname=jshon
+pkgver=20131105
+pkgrel=1
+pkgdesc=A json parser for the shell.
+arch=('i686' 'x86_64')
+url=http://kmkeen.com/jshon/;
+license=('MIT')
+depends=('jansson')
+source=(http://kmkeen.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('84596bcf2d6cde7bbc0fcb4626765b99')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -Dm755 $pkgname   $pkgdir/usr/bin/$pkgname
+  install -Dm644 $pkgname.1 $pkgdir/usr/share/man/man1/$pkgname.1
+  install -Dm644 LICENSE$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 18:02:34
  Author: fyan
Revision: 100536

upgpkg: goagent 3.0.6-1

Modified:
  goagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 17:02:10 UTC (rev 100535)
+++ PKGBUILD2013-11-05 17:02:34 UTC (rev 100536)
@@ -4,8 +4,8 @@
 # Contributor: Guten ywzhai...@gmail.com 
 
 pkgname=goagent
-pkgver=3.0.5
-pkgrel=4
+pkgver=3.0.6
+pkgrel=1
 pkgdesc=A gae proxy forked from gappproxy/wallproxy
 arch=(any)
 url=http://goagent.googlecode.com;
@@ -13,14 +13,14 @@
 depends=('python2' 'python2-pyopenssl')
 conflicts=('python2-gevent0.99')
 optdepends=('python2-gevent-beta: for better performance')
-source=(https://github.com/goagent/goagent/archive/v$pkgver.tar.gz;
-$pkgname.service
-
https://raw.github.com/goagent/goagent/881cd53efba5aff4f94f5a9f69d1b4259786e705/local/proxy.ini)
+makedepends=('git')
+source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
+$pkgname.service)
 backup=('etc/goagent')
 install=goagent.install
 
 package() {
-  cd $pkgbase-$pkgver
+  cd $pkgname
 
   sed -i -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| local/proxy.py
   
@@ -30,8 +30,7 @@
   install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
   install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
 
-  #install -Dm644 local/proxy.ini $pkgdir/etc/goagent
-  install -Dm644 ../proxy.ini $pkgdir/etc/goagent
+  install -Dm644 local/proxy.ini $pkgdir/etc/goagent
   ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/proxy.ini
   
   cp -r server $pkgdir/usr/share/$pkgname/
@@ -42,6 +41,5 @@
 }
 
 # vim:set ts=2 sw=2 et:
-sha512sums=('0b9fc8dd0867cbddd7cda7162c544b6ea4919e0e34815f109b0a3b3a58b9f588dcdbdb89c01bd49cc87052e370a72bc8ac5d868514ca77a3e73952fcadd3e6ca'
-
'b8f5f6342303edd520a577d0348deef7017ba79aa5c6f43c4e1c368d7b204f6364f4537f2a5e21f3b63a321bdcf3d407e5dea9883211c11a4d11801b057cddc2'
-
'9903977f348101f76accaecc83bbec68daf87d9626a981d0bc42274d13c468d909513cd147910871173949d86395f702b689aab296c97a72ef9be73bddfd2a8a')
+sha512sums=('SKIP'
+
'b8f5f6342303edd520a577d0348deef7017ba79aa5c6f43c4e1c368d7b204f6364f4537f2a5e21f3b63a321bdcf3d407e5dea9883211c11a4d11801b057cddc2')



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 18:03:23
  Author: fyan
Revision: 100537

archrelease: copy trunk to community-testing-any

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

-+
 PKGBUILD|   45 +
 goagent.install |   22 ++
 goagent.service |   12 
 3 files changed, 79 insertions(+)

Copied: goagent/repos/community-testing-any/PKGBUILD (from rev 100536, 
goagent/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-11-05 17:03:23 UTC (rev 100537)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: cuihao cuihao dot leo at gmail dot com
+# Contributor: Guten ywzhai...@gmail.com 
+
+pkgname=goagent
+pkgver=3.0.6
+pkgrel=1
+pkgdesc=A gae proxy forked from gappproxy/wallproxy
+arch=(any)
+url=http://goagent.googlecode.com;
+license=(GPL2)
+depends=('python2' 'python2-pyopenssl')
+conflicts=('python2-gevent0.99')
+optdepends=('python2-gevent-beta: for better performance')
+makedepends=('git')
+source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
+$pkgname.service)
+backup=('etc/goagent')
+install=goagent.install
+
+package() {
+  cd $pkgname
+
+  sed -i -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| local/proxy.py
+  
+  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/proxy.py
+  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
+  install -Dm644 local/cacert.pem $pkgdir/usr/share/$pkgname/local/cacert.pem
+  install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
+  install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
+
+  install -Dm644 local/proxy.ini $pkgdir/etc/goagent
+  ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/proxy.ini
+  
+  cp -r server $pkgdir/usr/share/$pkgname/
+  rm $pkgdir/usr/share/$pkgname/server/uploader.bat
+
+  # systemd service
+  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
+}
+
+# vim:set ts=2 sw=2 et:
+sha512sums=('SKIP'
+
'b8f5f6342303edd520a577d0348deef7017ba79aa5c6f43c4e1c368d7b204f6364f4537f2a5e21f3b63a321bdcf3d407e5dea9883211c11a4d11801b057cddc2')

Copied: goagent/repos/community-testing-any/goagent.install (from rev 100536, 
goagent/trunk/goagent.install)
===
--- community-testing-any/goagent.install   (rev 0)
+++ community-testing-any/goagent.install   2013-11-05 17:03:23 UTC (rev 
100537)
@@ -0,0 +1,22 @@
+post_install() {
+echo Please use systemd units to start/stop goagent:
+echo sudo systemctl start/stop goagent
+
+#cd /opt/goagent/local
+#python2 -c 'from proxy import CertUtil; CertUtil.check_ca()'
+chown -R nobody:daemon /usr/share/goagent/local
+}
+
+post_upgrade() {
+post_install
+}
+
+pre_upgrade() {
+rm -rf /opt/goagent/local/certs
+rm -rf /usr/share/goagent/local/certs
+}
+
+pre_remove() {
+rm -rf /opt/goagent/local/certs
+rm -rf /usr/share/goagent/local/certs
+}

Copied: goagent/repos/community-testing-any/goagent.service (from rev 100536, 
goagent/trunk/goagent.service)
===
--- community-testing-any/goagent.service   (rev 0)
+++ community-testing-any/goagent.service   2013-11-05 17:03:23 UTC (rev 
100537)
@@ -0,0 +1,12 @@
+[Unit]
+Description=GoAgent Service
+After=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/share/goagent/local/proxy.py
+
+[Install]
+WantedBy=multi-user.target
+



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 18:11:15
  Author: fyan
Revision: 100538

upgpkg: goagent 3.0.6-2

Modified:
  goagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 17:03:23 UTC (rev 100537)
+++ PKGBUILD2013-11-05 17:11:15 UTC (rev 100538)
@@ -5,7 +5,7 @@
 
 pkgname=goagent
 pkgver=3.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc=A gae proxy forked from gappproxy/wallproxy
 arch=(any)
 url=http://goagent.googlecode.com;
@@ -12,7 +12,8 @@
 license=(GPL2)
 depends=('python2' 'python2-pyopenssl')
 conflicts=('python2-gevent0.99')
-optdepends=('python2-gevent-beta: for better performance')
+optdepends=('python2-gevent-beta: for better performance'
+'python2-crypto: optimization for RC4')
 makedepends=('git')
 source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
 $pkgname.service)



[arch-commits] Commit in goagent/repos/community-testing-any (6 files)

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 18:12:09
  Author: fyan
Revision: 100539

archrelease: copy trunk to community-testing-any

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

-+
 PKGBUILD|   91 +++---
 goagent.install |   44 +-
 goagent.service |   24 +++---
 3 files changed, 80 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-05 17:11:15 UTC (rev 100538)
+++ PKGBUILD2013-11-05 17:12:09 UTC (rev 100539)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: cuihao cuihao dot leo at gmail dot com
-# Contributor: Guten ywzhai...@gmail.com 
-
-pkgname=goagent
-pkgver=3.0.6
-pkgrel=1
-pkgdesc=A gae proxy forked from gappproxy/wallproxy
-arch=(any)
-url=http://goagent.googlecode.com;
-license=(GPL2)
-depends=('python2' 'python2-pyopenssl')
-conflicts=('python2-gevent0.99')
-optdepends=('python2-gevent-beta: for better performance')
-makedepends=('git')
-source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
-$pkgname.service)
-backup=('etc/goagent')
-install=goagent.install
-
-package() {
-  cd $pkgname
-
-  sed -i -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| local/proxy.py
-  
-  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/proxy.py
-  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
-  install -Dm644 local/cacert.pem $pkgdir/usr/share/$pkgname/local/cacert.pem
-  install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
-  install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
-
-  install -Dm644 local/proxy.ini $pkgdir/etc/goagent
-  ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/proxy.ini
-  
-  cp -r server $pkgdir/usr/share/$pkgname/
-  rm $pkgdir/usr/share/$pkgname/server/uploader.bat
-
-  # systemd service
-  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
-}
-
-# vim:set ts=2 sw=2 et:
-sha512sums=('SKIP'
-
'b8f5f6342303edd520a577d0348deef7017ba79aa5c6f43c4e1c368d7b204f6364f4537f2a5e21f3b63a321bdcf3d407e5dea9883211c11a4d11801b057cddc2')

Copied: goagent/repos/community-testing-any/PKGBUILD (from rev 100538, 
goagent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-05 17:12:09 UTC (rev 100539)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: cuihao cuihao dot leo at gmail dot com
+# Contributor: Guten ywzhai...@gmail.com 
+
+pkgname=goagent
+pkgver=3.0.6
+pkgrel=2
+pkgdesc=A gae proxy forked from gappproxy/wallproxy
+arch=(any)
+url=http://goagent.googlecode.com;
+license=(GPL2)
+depends=('python2' 'python2-pyopenssl')
+conflicts=('python2-gevent0.99')
+optdepends=('python2-gevent-beta: for better performance'
+'python2-crypto: optimization for RC4')
+makedepends=('git')
+source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
+$pkgname.service)
+backup=('etc/goagent')
+install=goagent.install
+
+package() {
+  cd $pkgname
+
+  sed -i -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| local/proxy.py
+  
+  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/proxy.py
+  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
+  install -Dm644 local/cacert.pem $pkgdir/usr/share/$pkgname/local/cacert.pem
+  install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
+  install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
+
+  install -Dm644 local/proxy.ini $pkgdir/etc/goagent
+  ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/proxy.ini
+  
+  cp -r server $pkgdir/usr/share/$pkgname/
+  rm $pkgdir/usr/share/$pkgname/server/uploader.bat
+
+  # systemd service
+  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
+}
+
+# vim:set ts=2 sw=2 et:
+sha512sums=('SKIP'
+
'b8f5f6342303edd520a577d0348deef7017ba79aa5c6f43c4e1c368d7b204f6364f4537f2a5e21f3b63a321bdcf3d407e5dea9883211c11a4d11801b057cddc2')

Deleted: goagent.install
===
--- goagent.install 2013-11-05 17:11:15 UTC (rev 100538)
+++ goagent.install 2013-11-05 17:12:09 UTC (rev 100539)
@@ -1,22 

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 18:28:31
  Author: bpiotrowski
Revision: 198814

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

Added:
  mariadb/repos/extra-i686/PKGBUILD
(from rev 198813, mariadb/trunk/PKGBUILD)
  mariadb/repos/extra-i686/mariadb-post.sh
(from rev 198813, mariadb/trunk/mariadb-post.sh)
  mariadb/repos/extra-i686/mariadb-tmpfile.conf
(from rev 198813, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/extra-i686/mariadb.install
(from rev 198813, mariadb/trunk/mariadb.install)
  mariadb/repos/extra-i686/mariadb.service
(from rev 198813, mariadb/trunk/mariadb.service)
  mariadb/repos/extra-x86_64/PKGBUILD
(from rev 198813, mariadb/trunk/PKGBUILD)
  mariadb/repos/extra-x86_64/mariadb-post.sh
(from rev 198813, mariadb/trunk/mariadb-post.sh)
  mariadb/repos/extra-x86_64/mariadb-tmpfile.conf
(from rev 198813, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/extra-x86_64/mariadb.install
(from rev 198813, mariadb/trunk/mariadb.install)
  mariadb/repos/extra-x86_64/mariadb.service
(from rev 198813, mariadb/trunk/mariadb.service)
Deleted:
  mariadb/repos/extra-i686/PKGBUILD
  mariadb/repos/extra-i686/mariadb-post.sh
  mariadb/repos/extra-i686/mariadb-tmpfile.conf
  mariadb/repos/extra-i686/mariadb.install
  mariadb/repos/extra-i686/mariadb.service
  mariadb/repos/extra-x86_64/PKGBUILD
  mariadb/repos/extra-x86_64/mariadb-post.sh
  mariadb/repos/extra-x86_64/mariadb-tmpfile.conf
  mariadb/repos/extra-x86_64/mariadb.install
  mariadb/repos/extra-x86_64/mariadb.service

---+
 /PKGBUILD |  304 
 /mariadb-post.sh  |   16 +
 /mariadb-tmpfile.conf |2 
 /mariadb.install  |   94 +++
 /mariadb.service  |   32 +++
 extra-i686/PKGBUILD   |  152 --
 extra-i686/mariadb-post.sh|8 
 extra-i686/mariadb-tmpfile.conf   |1 
 extra-i686/mariadb.install|   47 -
 extra-i686/mariadb.service|   16 -
 extra-x86_64/PKGBUILD |  152 --
 extra-x86_64/mariadb-post.sh  |8 
 extra-x86_64/mariadb-tmpfile.conf |1 
 extra-x86_64/mariadb.install  |   47 -
 extra-x86_64/mariadb.service  |   16 -
 15 files changed, 448 insertions(+), 448 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 17:28:25 UTC (rev 198813)
+++ extra-i686/PKGBUILD 2013-11-05 17:28:31 UTC (rev 198814)
@@ -1,152 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-
-pkgbase=mariadb
-pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
-pkgver=5.5.33.a
-_pkgver=${pkgver/.a/a}
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mariadb.org/'
-makedepends=('cmake' 'openssl' 'zlib')
-source=(http://mirrors.supportex.net/$pkgbase/$pkgbase-$_pkgver/kvm-tarbake-jaunty-x86/$pkgbase-$_pkgver.tar.gz
-mariadb.service
-mariadb-post.sh
-mariadb-tmpfile.conf)
-sha256sums=('adf4d04087177fde6568082c3fee77e52e84dc3ae4eb5b994d5defaaa8c83d5b'
-'a6cf5446159fff16598d0d787dd3a3c30a53a656a5f876ddb608bc60e234d334'
-'368f9fd2454d80eb32abb8f29f703d1cf9553353fb9e1ae4529c4b851cb8c5dd'
-'2af318c52ae0fe5428e8a9245d1b0fc3bc5ce153842d1563329ceb1edfa83ddd')
-
-prepare() {
-  cd $pkgbase-$_pkgver
-  sed -i '63d' storage/tokudb/ft-index/cmake_modules/TokuSetupCTest.cmake
-}
-
-build() {
-  mkdir build
-  cd build
-
-  cmake ../$pkgbase-$_pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONFDIR=/etc/mysql \
--DMYSQL_DATADIR=/var/lib/mysql \
--DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
--DDEFAULT_CHARSET=utf8 \
--DDEFAULT_COLLATION=utf8_general_ci \
--DENABLED_LOCAL_INFILE=ON \
--DINSTALL_INFODIR=share/mysql/docs \
--DINSTALL_MANDIR=share/man \
--DINSTALL_PLUGINDIR=lib/mysql/plugin \
--DINSTALL_SCRIPTDIR=bin \
--DINSTALL_INCLUDEDIR=include/mysql \
--DINSTALL_DOCREADMEDIR=share/mysql \
--DINSTALL_SUPPORTFILESDIR=share/mysql \
--DINSTALL_MYSQLSHAREDIR=share/mysql \
--DINSTALL_DOCDIR=share/mysql/docs \
--DINSTALL_SHAREDIR=share/mysql \
--DWITH_READLINE=ON \
--DWITH_ZLIB=system \
--DWITH_SSL=system \
--DWITH_LIBWRAP=OFF \
--DWITH_EXTRA_CHARSETS=complex \
--DWITH_EMBEDDED_SERVER=ON \
--DWITH_ARCHIVE_STORAGE_ENGINE=1 \
--DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
--DWITH_INNOBASE_STORAGE_ENGINE=1 \
--DWITH_PARTITION_STORAGE_ENGINE=1 \
--DWITH_TOKUDB_STORAGE_ENGINE=1 \
--DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
--DWITHOUT_FEDERATED_STORAGE_ENGINE=1 \
--DWITHOUT_PBXT_STORAGE_ENGINE=1 \
--DCMAKE_C_FLAGS=-fPIC ${CFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 
-fomit-frame-pointer \
--DCMAKE_CXX_FLAGS=-fPIC ${CXXFLAGS} -fno-strict-aliasing 

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

2013-11-05 Thread Bartłomiej Piotrowski
Date: Tuesday, November 5, 2013 @ 18:28:25
  Author: bpiotrowski
Revision: 198813

upgpkg: mariadb 5.5.33.a-2

- rebuild to remove static libraries

Modified:
  mariadb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 16:40:42 UTC (rev 198812)
+++ PKGBUILD2013-11-05 17:28:25 UTC (rev 198813)
@@ -5,7 +5,7 @@
 pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
 pkgver=5.5.33.a
 _pkgver=${pkgver/.a/a}
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL')
 url='http://mariadb.org/'



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 18:36:57
  Author: fyan
Revision: 100540

upgpkg: fcitx-mozc 1.12.1599.102-2

Modified:
  fcitx-mozc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 17:12:09 UTC (rev 100539)
+++ PKGBUILD2013-11-05 17:36:57 UTC (rev 100540)
@@ -5,7 +5,7 @@
 ## Mozc compile option
 _bldtype=Release
 
-_zipcoderel=201309
+_zipcoderel=201310
 _protobuf_ver=2.5.0
 _gyp_rev=1774
 
@@ -15,7 +15,7 @@
 pkgdesc=Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)
 pkgver=1.12.1599.102
 _patchver=${pkgver}.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/mozc/;
 license=('custom')
@@ -114,8 +114,8 @@
 
 sha512sums=('SKIP'
 'SKIP'
-
'e497d6dfca2cf06d4ab0ed7f84e1daea8da776071d19818dc09b5c2586d52dfceebd3b665ebc0eb1143e84c8dcb11cac6197e8cbff617415cc6f16316e9a2004'
-
'04c2719618227beea8b41705d25382a78fa4173c7355c2a4ebd4d424538e0591513aa951eb9a8a11a4ad4ff379839fda42264a98e07f1b062ff8e4200af7c741'
+
'f4ba607dc8d8ad6b12fbf47e6a9b56e1dee5552db65bb6a21e55b3db8567601df4e916f88ee039bb4f84dd7ad9994ad9e7b494fbb06d14b8ce6c8ca316e3a571'
+
'551fd2ee44a0cdf317885351528d5248fc56c261e73b793ac46c8f043a6f5461e1e4400df67cd151a01891217185fc12993a6a0d727d9f8217947d9b23d7b69c'
 
'5994b3669808b82fef5c860ecad36358c0767f84acac877e7bfcf722e59d972835a955714149bdd4158fbd1328a51d01397a563991d26475351ee72be48142ee'
 
'e6a5a21520e36aa6cd27295c5a1b050a8f1a8dccf82918b0b57f17c79393c8b527c3f70dbfa2de0af42d3f85eac3095ef476a067fb24dbc2fa325c1f6a1138cc'
 
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')



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

2013-11-05 Thread Felix Yan
Date: Tuesday, November 5, 2013 @ 18:38:22
  Author: fyan
Revision: 100541

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

Added:
  fcitx-mozc/repos/community-i686/PKGBUILD
(from rev 100540, fcitx-mozc/trunk/PKGBUILD)
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 100540, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-i686/PKGBUILD
  fcitx-mozc/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 17:36:57 UTC (rev 100540)
+++ community-i686/PKGBUILD 2013-11-05 17:38:22 UTC (rev 100541)
@@ -1,121 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
-
-## Mozc compile option
-_bldtype=Release
-
-_zipcoderel=201309
-_protobuf_ver=2.5.0
-_gyp_rev=1774
-
-_pkgbase=mozc
-_revision=178
-pkgname=fcitx-mozc
-pkgdesc=Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)
-pkgver=1.12.1599.102
-_patchver=${pkgver}.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/mozc/;
-license=('custom')
-depends=('qt4' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'gtest' 'curl' 'gtk2' 'mesa' 'svn')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(svn+http://mozc.googlecode.com/svn#revision=$_revision
-gyp::svn+http://gyp.googlecode.com/svn/trunk#revision=$_gyp_rev
-http://downloads.sourceforge.net/pnsft-aur/ken_all-${_zipcoderel}.zip
-http://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcoderel}.zip
-http://protobuf.googlecode.com/files/protobuf-${_protobuf_ver}.tar.bz2
-http://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_patchver}.patch
-http://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
-
-build() {
-  #source /etc/profile.d/qt4.sh
-
-  # Update: Fix qt4 include path too
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  #CFLAGS=${CFLAGS} -DFLAGS_log_dir=FLAGS_mozc_log_dir
-  #CXXFLAGS=${CXXFLAGS} -DFLAGS_log_dir=FLAGS_mozc_log_dir
-  CFLAGS=${CFLAGS} -I/usr/include/qt4 -fvisibility=hidden
-  CXXFLAGS=${CXXFLAGS} -I/usr/include/qt4 -fvisibility=hidden
-
-  cd svn/trunk/src
-  
-  # Apply fcitx patch
-  rm unix/fcitx -rf
-  patch -Np2 -i $srcdir/fcitx-mozc-${_patchver}.patch
-
-  # Fix qt4 binary path
-  sed -i 's|(qt_dir)/bin|(qt_dir)/lib/qt4/bin|' gui/*.gyp{,i}
-  sed -i 's|(qt_dir_env)/bin|(qt_dir_env)/lib/qt4/bin|' gui/*.gyp{,i}
-
-  # Adjust to use python2
-  find . -name  \*.py-type f -exec sed -i -e 1s|python.*$|python2|  
{} +
-  find . -regex '.*\.gypi?$' -type f -exec sed -i -e s|'python'|'python2'|g 
{} +
-
-  # Generate zip code seed
-  msg Generating zip code seed...
-  python2 dictionary/gen_zip_code_seed.py --zip_code=${srcdir}/KEN_ALL.CSV 
--jigyosyo=${srcdir}/JIGYOSYO.CSV  data/dictionary_oss/dictionary09.txt
-  msg Done.
-
-  # Copy gyp
-  mkdir third_party/gyp
-  cp -rf ${srcdir}/gyp/* third_party/gyp
-
-  # Copy protobuf to be linked statically
-  mkdir third_party/protobuf
-  cp -rf ${srcdir}/protobuf-${_protobuf_ver}/* third_party/protobuf
-
-  msg Starting make...
-
-  _targets=server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc
-
-  QTDIR=/usr GYP_DEFINES=document_dir=/usr/share/licenses/$pkgname python2 
build_mozc.py gyp --channel_dev=0
-  python2 build_mozc.py build_tools -c $_bldtype
-  python2 build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc  LICENSE
-}
-
-package() {
-  cd svn/trunk/src
-  install -D -m 755 out_linux/${_bldtype}/mozc_server 
${pkgdir}/usr/lib/mozc/mozc_server
-  install-m 755 out_linux/${_bldtype}/mozc_tool   
${pkgdir}/usr/lib/mozc/mozc_tool
-
-  install -d ${pkgdir}/usr/share/licenses/$pkgname/
-  install -m 644 LICENSE data/installer/*.html 
${pkgdir}/usr/share/licenses/${pkgname}/
-
-  for mofile in out_linux/${_bldtype}/obj/gen/unix/fcitx/po/*.mo
-  do
-filename=`basename $mofile`
-lang=${filename/.mo/}
-install -D -m 644 $mofile 
${pkgdir}/usr/share/locale/$lang/LC_MESSAGES/fcitx-mozc.mo
-  done
-
-  install -D -m 755 out_linux/${_bldtype}/fcitx-mozc.so 
${pkgdir}/usr/lib/fcitx/fcitx-mozc.so
-  install -D -m 644 unix/fcitx/fcitx-mozc.conf 
${pkgdir}/usr/share/fcitx/addon/fcitx-mozc.conf
-  install -D -m 644 unix/fcitx/mozc.conf 
${pkgdir}/usr/share/fcitx/inputmethod/mozc.conf
-
-  install -d ${pkgdir}/usr/share/fcitx/mozc/icon
-  install -m 644 $srcdir/fcitx-mozc-icons/mozc.png 

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

2013-11-05 Thread Ray Rashif
Date: Tuesday, November 5, 2013 @ 19:37:35
  Author: schiv
Revision: 100542

upgpkg: jack2 1.9.9.5-4

add python2-dbus optdep to standard jack also

Modified:
  jack2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 17:38:22 UTC (rev 100541)
+++ PKGBUILD2013-11-05 18:37:35 UTC (rev 100542)
@@ -9,7 +9,7 @@
 #pkgname= # single build (overrides split)
 _tarname=jack
 pkgver=1.9.9.5
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url=http://jackaudio.org/;
 backup=(etc/security/limits.d/99-audio.conf)
@@ -83,7 +83,7 @@
 
   pkgdesc=The next-generation JACK with SMP support
   depends=('libsamplerate' 'celt' 'opus' 'libffado')
-  optdepends=('python2: jack_control')
+  optdepends=('python2-dbus: jack_control')
   conflicts=('jack')
   provides=('jack' 'jackmp' 'jackdmp' 'jackdbus')
 



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

2013-11-05 Thread Ray Rashif
Date: Tuesday, November 5, 2013 @ 19:38:02
  Author: schiv
Revision: 100543

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

Added:
  jack2/repos/community-i686/40-hpet-permissions.rules
(from rev 100542, jack2/trunk/40-hpet-permissions.rules)
  jack2/repos/community-i686/99-audio.conf
(from rev 100542, jack2/trunk/99-audio.conf)
  jack2/repos/community-i686/PKGBUILD
(from rev 100542, jack2/trunk/PKGBUILD)
  jack2/repos/community-x86_64/40-hpet-permissions.rules
(from rev 100542, jack2/trunk/40-hpet-permissions.rules)
  jack2/repos/community-x86_64/99-audio.conf
(from rev 100542, jack2/trunk/99-audio.conf)
  jack2/repos/community-x86_64/PKGBUILD
(from rev 100542, jack2/trunk/PKGBUILD)
Deleted:
  jack2/repos/community-i686/40-hpet-permissions.rules
  jack2/repos/community-i686/99-audio.conf
  jack2/repos/community-i686/PKGBUILD
  jack2/repos/community-x86_64/40-hpet-permissions.rules
  jack2/repos/community-x86_64/99-audio.conf
  jack2/repos/community-x86_64/PKGBUILD

+
 /40-hpet-permissions.rules |4 
 /99-audio.conf |4 
 /PKGBUILD  |  256 +++
 community-i686/40-hpet-permissions.rules   |2 
 community-i686/99-audio.conf   |2 
 community-i686/PKGBUILD|  128 -
 community-x86_64/40-hpet-permissions.rules |2 
 community-x86_64/99-audio.conf |2 
 community-x86_64/PKGBUILD  |  128 -
 9 files changed, 264 insertions(+), 264 deletions(-)

Deleted: community-i686/40-hpet-permissions.rules
===
--- community-i686/40-hpet-permissions.rules2013-11-05 18:37:35 UTC (rev 
100542)
+++ community-i686/40-hpet-permissions.rules2013-11-05 18:38:02 UTC (rev 
100543)
@@ -1,2 +0,0 @@
-KERNEL==rtc0, GROUP=audio
-KERNEL==hpet, GROUP=audio

Copied: jack2/repos/community-i686/40-hpet-permissions.rules (from rev 100542, 
jack2/trunk/40-hpet-permissions.rules)
===
--- community-i686/40-hpet-permissions.rules(rev 0)
+++ community-i686/40-hpet-permissions.rules2013-11-05 18:38:02 UTC (rev 
100543)
@@ -0,0 +1,2 @@
+KERNEL==rtc0, GROUP=audio
+KERNEL==hpet, GROUP=audio

Deleted: community-i686/99-audio.conf
===
--- community-i686/99-audio.conf2013-11-05 18:37:35 UTC (rev 100542)
+++ community-i686/99-audio.conf2013-11-05 18:38:02 UTC (rev 100543)
@@ -1,2 +0,0 @@
-@audio - rtprio99
-@audio - memlock   unlimited

Copied: jack2/repos/community-i686/99-audio.conf (from rev 100542, 
jack2/trunk/99-audio.conf)
===
--- community-i686/99-audio.conf(rev 0)
+++ community-i686/99-audio.conf2013-11-05 18:38:02 UTC (rev 100543)
@@ -0,0 +1,2 @@
+@audio - rtprio99
+@audio - memlock   unlimited

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 18:37:35 UTC (rev 100542)
+++ community-i686/PKGBUILD 2013-11-05 18:38:02 UTC (rev 100543)
@@ -1,128 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Daniele Paolella danielepaole...@email.it
-# Contributor: Philipp Überbacher hollunder at gmx dot at
-# Contributor: Thomas Bahn thomas-bahn at gmx dot net
-
-pkgbase=jack2
-pkgname=('jack2' 'jack2-dbus')
-#pkgname= # single build (overrides split)
-_tarname=jack
-pkgver=1.9.9.5
-pkgrel=3
-arch=('i686' 'x86_64')
-url=http://jackaudio.org/;
-backup=(etc/security/limits.d/99-audio.conf)
-license=('GPL')
-makedepends=('python2' 'libffado' 'celt' 'opus' 'libsamplerate')
-source=(https://dl.dropbox.com/u/28869550/jack-1.9.9.5.tar.bz2;
-'99-audio.conf'
-'40-hpet-permissions.rules')
-md5sums=('6c9de6b89db9d7076fa2ce222816cf4c'
- 'ae65b7c9ebe0fff6c918ba9d97ae342d'
- '471aad533ff56c5d3cbbf65ce32cadef')
-
-_isbuild() {
-  printf %s\n ${pkgname[@]} | grep -qx $1
-}
-
-_pyfix() {
-  sed -i 's:bin/env python:bin/env python2:' \
-$pkgdir/usr/bin/jack_control
-}
-
-_wafconf() {
-  python2 waf configure --prefix=/usr \
---alsa \
---firewire $@
-
-  # not building with doxygen
-  # see https://github.com/jackaudio/jack2/issues/22
-}
-
-prepare() {
-  cd $srcdir
-
-  # Some optimisation bug exists for current GCC
-  # see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53663
-  #export CFLAGS=${CFLAGS/-O[0-9]/-O0}
-  #export CXXFLAGS=$CFLAGS
-
-  # fix doxygen building
-  # TODO: report upstream, but redundant until github issue 22 resolves
-  #sed -i 's:build/default/html:html:' 

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

2013-11-05 Thread Alexander Rødseth
Date: Tuesday, November 5, 2013 @ 20:02:37
  Author: arodseth
Revision: 100544

Fix for FS#37651

Modified:
  go/trunk/go.install

+
 go.install |6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

Modified: go.install
===
--- go.install  2013-11-05 18:38:02 UTC (rev 100543)
+++ go.install  2013-11-05 19:02:37 UTC (rev 100544)
@@ -1,4 +1,4 @@
-post_upgrade() {
+post_install() {
   # Friendly message to the user
   echo Example use of the \go\ tool as a user:
   echo mkdir ~/go
@@ -7,8 +7,4 @@
   echo go get website.com/user/module
 }
 
-post_install() {
-  post_upgrade
-}
-
 # vim:set ts=2 sw=2 et:



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:40:54
  Author: andrea
Revision: 198820

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

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

-+
 /PKGBUILD   |   64 ++
 /kdepimlibs.install |   22 +
 extra-i686/PKGBUILD |   32 ---
 extra-i686/kdepimlibs.install   |   11 --
 extra-x86_64/PKGBUILD   |   32 ---
 extra-x86_64/kdepimlibs.install |   11 --
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:40:45 UTC (rev 198819)
+++ extra-i686/PKGBUILD 2013-11-05 19:40:54 UTC (rev 198820)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepimlibs
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=KDE PIM Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepimlibs'
-license=('GPL' 'LGPL')
-depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
-makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
-install='kdepimlibs.install'
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('8808bee93143b4b0bbcfc8fb670efb9613ddae29')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdepimlibs/repos/extra-i686/PKGBUILD (from rev 198819, 
kdepimlibs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:40:54 UTC (rev 198820)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepimlibs
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=KDE PIM Libraries
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepimlibs'
+license=('GPL' 'LGPL')
+depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
+install='kdepimlibs.install'
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('ca131d0e1d24dd2c03e40de8b7d482abe4eba755')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdepimlibs.install
===
--- extra-i686/kdepimlibs.install   2013-11-05 19:40:45 UTC (rev 198819)
+++ extra-i686/kdepimlibs.install   2013-11-05 19:40:54 UTC (rev 198820)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}
\ No newline at end of file

Copied: kdepimlibs/repos/extra-i686/kdepimlibs.install (from rev 198819, 
kdepimlibs/trunk/kdepimlibs.install)
===
--- extra-i686/kdepimlibs.install   (rev 0)
+++ extra-i686/kdepimlibs.install   2013-11-05 19:40:54 UTC (rev 198820)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
\ No newline at end of file

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:40:45 UTC (rev 198819)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:40:54 UTC (rev 198820)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepimlibs
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=KDE PIM Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepimlibs'
-license=('GPL' 'LGPL')
-depends=('nepomuk-core' 'gpgme' 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:40:45
  Author: andrea
Revision: 198819

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

Added:
  nepomuk-core/repos/extra-i686/PKGBUILD
(from rev 198818, nepomuk-core/trunk/PKGBUILD)
  nepomuk-core/repos/extra-x86_64/PKGBUILD
(from rev 198818, nepomuk-core/trunk/PKGBUILD)
Deleted:
  nepomuk-core/repos/extra-i686/PKGBUILD
  nepomuk-core/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:40:25 UTC (rev 198818)
+++ extra-i686/PKGBUILD 2013-11-05 19:40:45 UTC (rev 198819)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-core
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d5a320b39edda61f82ad24da1745238bfcdfe73c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/extra-i686/PKGBUILD (from rev 198818, 
nepomuk-core/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:40:45 UTC (rev 198819)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('9d97cb731728a43037eb208e2322b6e0b4e8b7e5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:40:25 UTC (rev 198818)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:40:45 UTC (rev 198819)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-core
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d5a320b39edda61f82ad24da1745238bfcdfe73c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/extra-x86_64/PKGBUILD (from rev 198818, 
nepomuk-core/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:40:45 UTC (rev 198819)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Contains the central Nepomuk services like file 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:41:07
  Author: andrea
Revision: 198821

archrelease: copy trunk to extra-any

Added:
  oxygen-icons/repos/extra-any/PKGBUILD
(from rev 198820, oxygen-icons/trunk/PKGBUILD)
Deleted:
  oxygen-icons/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-05 19:40:54 UTC (rev 198820)
+++ PKGBUILD2013-11-05 19:41:07 UTC (rev 198821)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=oxygen-icons
-pkgname=('oxygen-icons'
- 'oxygen-icons-svg')
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=The Oxygen Icon Theme
-arch=('any')
-url='http://www.oxygen-icons.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('c0a2fbcb7fc4ec9df78da5f1e11aa1d7d3e8e1e0')
-
-build() {
-   cd $srcdir
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package_oxygen-icons() {
-   cd $srcdir/build
-   make DESTDIR=$pkgdir install
-}
-
-package_oxygen-icons-svg() {
-   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
-   cd $srcdir/${pkgbase}-${pkgver}
-   find scalable -type f ! -name '*.sh' -exec \
-   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
-}

Copied: oxygen-icons/repos/extra-any/PKGBUILD (from rev 198820, 
oxygen-icons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-05 19:41:07 UTC (rev 198821)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=oxygen-icons
+pkgname=('oxygen-icons'
+ 'oxygen-icons-svg')
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=The Oxygen Icon Theme
+arch=('any')
+url='http://www.oxygen-icons.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('445a901428bb862318ac25d6404047b9e33798dc')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_oxygen-icons() {
+   cd $srcdir/build
+   make DESTDIR=$pkgdir install
+}
+
+package_oxygen-icons-svg() {
+   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
+   cd $srcdir/${pkgbase}-${pkgver}
+   find scalable -type f ! -name '*.sh' -exec \
+   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
+}



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:40:25
  Author: andrea
Revision: 198818

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

Added:
  kdelibs/repos/extra-i686/PKGBUILD
(from rev 198816, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/extra-i686/archlinux-menu.patch
(from rev 198816, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/extra-i686/kde-applications-menu.patch
(from rev 198816, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/extra-i686/kdelibs.install
(from rev 198816, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/extra-i686/qt4.patch
(from rev 198816, kdelibs/trunk/qt4.patch)
  kdelibs/repos/extra-x86_64/PKGBUILD
(from rev 198817, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
(from rev 198817, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
(from rev 198817, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/extra-x86_64/kdelibs.install
(from rev 198817, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/extra-x86_64/qt4.patch
(from rev 198817, kdelibs/trunk/qt4.patch)
Deleted:
  kdelibs/repos/extra-i686/PKGBUILD
  kdelibs/repos/extra-i686/archlinux-menu.patch
  kdelibs/repos/extra-i686/kde-applications-menu.patch
  kdelibs/repos/extra-i686/kdelibs.install
  kdelibs/repos/extra-i686/qt4.patch
  kdelibs/repos/extra-x86_64/PKGBUILD
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
  kdelibs/repos/extra-x86_64/kdelibs.install
  kdelibs/repos/extra-x86_64/qt4.patch

--+
 /PKGBUILD|  122 +
 /archlinux-menu.patch|   44 ++
 /kde-applications-menu.patch |   44 ++
 /kdelibs.install |   26 ++
 /qt4.patch   |   22 +
 extra-i686/PKGBUILD  |   62 --
 extra-i686/archlinux-menu.patch  |   22 -
 extra-i686/kde-applications-menu.patch   |   22 -
 extra-i686/kdelibs.install   |   13 ---
 extra-i686/qt4.patch |   11 --
 extra-x86_64/PKGBUILD|   62 --
 extra-x86_64/archlinux-menu.patch|   22 -
 extra-x86_64/kde-applications-menu.patch |   22 -
 extra-x86_64/kdelibs.install |   13 ---
 extra-x86_64/qt4.patch   |   11 --
 15 files changed, 258 insertions(+), 260 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:40:13 UTC (rev 198817)
+++ extra-i686/PKGBUILD 2013-11-05 19:40:25 UTC (rev 198818)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdelibs
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=KDE Core Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
-'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
-'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('f9aec4ec00389067e6d2ea37f5042c926c07fd6a'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
-
-prepare() {
-   cd ${pkgname}-${pkgver}
-   # avoid file conflict with gnome-menus
-   patch -p1 -i ${srcdir}/kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i ${srcdir}/archlinux-menu.patch
-   # qmake refers to Qt5
-   patch -p1 -i ${srcdir}/qt4.patch
-}
-
-build() {
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
-   -DKDE_DEFAULT_HOME='.kde4' \
-   -DWITH_FAM=OFF \
-   -DWITH_HUpnp=OFF \
-   -DWITH_SOLID_UDISKS2=ON
-   make
-}
-
-package() {
-   cd ${srcdir}/build
-   make DESTDIR=${pkgdir} install
-
-   # cert bundle seems to be hardcoded
-   # link it to the one from ca-certificates
-   rm -f 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:43:12
  Author: andrea
Revision: 198822

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:41:07 UTC (rev 198821)
+++ extra-i686/PKGBUILD 2013-11-05 19:43:12 UTC (rev 198822)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kactivities
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with the Activity Manager'
-url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
-license=('GPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4' 'mesa')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('3e484dd32e55cff7ce15899b8904c70c2f3e7a38')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kactivities/repos/extra-i686/PKGBUILD (from rev 198821, 
kactivities/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:43:12 UTC (rev 198822)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.11.3
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('74521e39e32e647b400e4495bc2dba2be0567ffa')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:41:07 UTC (rev 198821)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:43:12 UTC (rev 198822)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kactivities
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with the Activity Manager'
-url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
-license=('GPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4' 'mesa')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('3e484dd32e55cff7ce15899b8904c70c2f3e7a38')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kactivities/repos/extra-x86_64/PKGBUILD (from rev 198821, 
kactivities/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:43:12 UTC (rev 198822)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.11.3
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('74521e39e32e647b400e4495bc2dba2be0567ffa')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:43:36
  Author: andrea
Revision: 198823

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

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 198822, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 198822, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 198822, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 198822, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-i686/kdebug-324470.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/kdebug-324470.patch

--+
 /PKGBUILD|  102 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |   53 -
 extra-i686/kdebase-runtime.install   |   13 
 extra-i686/kdebug-324470.patch   |   49 ---
 extra-x86_64/PKGBUILD|   53 -
 extra-x86_64/kdebase-runtime.install |   13 
 extra-x86_64/kdebug-324470.patch |   49 ---
 8 files changed, 128 insertions(+), 230 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:43:12 UTC (rev 198822)
+++ extra-i686/PKGBUILD 2013-11-05 19:43:36 UTC (rev 198823)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'smbclient' 'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('b896ef9d8fe770720dc16ae3eae33538e4e699da')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 198822, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:43:36 UTC (rev 198823)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'smbclient' 'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('c9af4e5e52018caf26113075f7ec5903122e43d5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0
+  make
+}
+

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:44:15
  Author: andrea
Revision: 198825

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

Added:
  kdebindings-smokegen/repos/extra-i686/PKGBUILD
(from rev 198824, kdebindings-smokegen/trunk/PKGBUILD)
  kdebindings-smokegen/repos/extra-x86_64/PKGBUILD
(from rev 198824, kdebindings-smokegen/trunk/PKGBUILD)
Deleted:
  kdebindings-smokegen/repos/extra-i686/PKGBUILD
  kdebindings-smokegen/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:44:04 UTC (rev 198824)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:15 UTC (rev 198825)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokegen
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A general purpose C++ parser with a plugin infrastructure
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
-sha1sums=('4fbb3292391d26b4c68bed44a819f54b05b33bc0')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokegen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokegen/repos/extra-i686/PKGBUILD (from rev 198824, 
kdebindings-smokegen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:15 UTC (rev 198825)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokegen
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A general purpose C++ parser with a plugin infrastructure
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
+sha1sums=('ceb0385627c199384351d5c649ae384e5c5dcc02')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokegen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:44:04 UTC (rev 198824)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:44:15 UTC (rev 198825)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokegen
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A general purpose C++ parser with a plugin infrastructure
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
-sha1sums=('4fbb3292391d26b4c68bed44a819f54b05b33bc0')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokegen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokegen/repos/extra-x86_64/PKGBUILD (from rev 198824, 
kdebindings-smokegen/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:44:15 UTC (rev 198825)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokegen
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A general purpose C++ parser with a plugin infrastructure
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
+sha1sums=('ceb0385627c199384351d5c649ae384e5c5dcc02')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokegen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:44:04
  Author: andrea
Revision: 198824

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

Added:
  kdepim-runtime/repos/extra-i686/PKGBUILD
(from rev 198823, kdepim-runtime/trunk/PKGBUILD)
  kdepim-runtime/repos/extra-i686/kdepim-runtime.install
(from rev 198823, kdepim-runtime/trunk/kdepim-runtime.install)
  kdepim-runtime/repos/extra-x86_64/PKGBUILD
(from rev 198823, kdepim-runtime/trunk/PKGBUILD)
  kdepim-runtime/repos/extra-x86_64/kdepim-runtime.install
(from rev 198823, kdepim-runtime/trunk/kdepim-runtime.install)
Deleted:
  kdepim-runtime/repos/extra-i686/PKGBUILD
  kdepim-runtime/repos/extra-i686/kdepim-runtime.install
  kdepim-runtime/repos/extra-x86_64/PKGBUILD
  kdepim-runtime/repos/extra-x86_64/kdepim-runtime.install

-+
 /PKGBUILD   |   68 ++
 /kdepim-runtime.install |   26 +
 extra-i686/PKGBUILD |   34 -
 extra-i686/kdepim-runtime.install   |   13 --
 extra-x86_64/PKGBUILD   |   34 -
 extra-x86_64/kdepim-runtime.install |   13 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:43:36 UTC (rev 198823)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:04 UTC (rev 198824)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepim-runtime
-pkgver=4.11.2
-pkgrel=1
-pkgdesc='Extends the functionality of kdepim'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepim-runtime'
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime' 'libkgapi' 'libkolab' 'libkfbapi')
-makedepends=('cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('acc133c3c9d5cff0cdc9901b5ff7bd8b31a15825')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=${pkgdir} install
-}

Copied: kdepim-runtime/repos/extra-i686/PKGBUILD (from rev 198823, 
kdepim-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:04 UTC (rev 198824)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepim-runtime
+pkgver=4.11.3
+pkgrel=1
+pkgdesc='Extends the functionality of kdepim'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepim-runtime'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'libkgapi' 'libkolab' 'libkfbapi')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('168455654655bd302c668ca91f18fab47fa6cd3c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdepim-runtime.install
===
--- extra-i686/kdepim-runtime.install   2013-11-05 19:43:36 UTC (rev 198823)
+++ extra-i686/kdepim-runtime.install   2013-11-05 19:44:04 UTC (rev 198824)
@@ -1,13 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-   update-mime-database usr/share/mime  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdepim-runtime/repos/extra-i686/kdepim-runtime.install (from rev 
198823, kdepim-runtime/trunk/kdepim-runtime.install)
===
--- extra-i686/kdepim-runtime.install   (rev 0)
+++ extra-i686/kdepim-runtime.install   2013-11-05 19:44:04 UTC (rev 198824)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:43:36 UTC (rev 198823)
+++ extra-x86_64/PKGBUILD   

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:44:52
  Author: andrea
Revision: 198828

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

Added:
  kdebindings-python/repos/extra-i686/PKGBUILD
(from rev 198827, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/extra-i686/pykde4.patch
(from rev 198827, kdebindings-python/trunk/pykde4.patch)
  kdebindings-python/repos/extra-x86_64/PKGBUILD
(from rev 198827, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/extra-x86_64/pykde4.patch
(from rev 198827, kdebindings-python/trunk/pykde4.patch)
Deleted:
  kdebindings-python/repos/extra-i686/PKGBUILD
  kdebindings-python/repos/extra-i686/pykde4.patch
  kdebindings-python/repos/extra-x86_64/PKGBUILD
  kdebindings-python/repos/extra-x86_64/pykde4.patch

---+
 /PKGBUILD |  184 +++
 /pykde4.patch |  538 
 extra-i686/PKGBUILD   |   92 ---
 extra-i686/pykde4.patch   |  269 --
 extra-x86_64/PKGBUILD |   92 ---
 extra-x86_64/pykde4.patch |  269 --
 6 files changed, 722 insertions(+), 722 deletions(-)

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


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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:44:29
  Author: andrea
Revision: 198826

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

Added:
  kdebindings-smokeqt/repos/extra-i686/PKGBUILD
(from rev 198825, kdebindings-smokeqt/trunk/PKGBUILD)
  kdebindings-smokeqt/repos/extra-x86_64/PKGBUILD
(from rev 198825, kdebindings-smokeqt/trunk/PKGBUILD)
Deleted:
  kdebindings-smokeqt/repos/extra-i686/PKGBUILD
  kdebindings-smokeqt/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:44:15 UTC (rev 198825)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:29 UTC (rev 198826)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokeqt
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Language independent library for Qt bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'mesa')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
-sha1sums=('d54d2e3ffae9ab526b9e04d1f03dfb8898a590b5')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokeqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_Qwt5=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokeqt/repos/extra-i686/PKGBUILD (from rev 198825, 
kdebindings-smokeqt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:29 UTC (rev 198826)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokeqt
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Language independent library for Qt bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'mesa')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
+sha1sums=('eaa6df3360174a34ff987622d024d09c2fce358c')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokeqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Qwt5=OFF
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:44:15 UTC (rev 198825)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:44:29 UTC (rev 198826)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokeqt
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Language independent library for Qt bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'mesa')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
-sha1sums=('d54d2e3ffae9ab526b9e04d1f03dfb8898a590b5')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../smokeqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_Qwt5=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokeqt/repos/extra-x86_64/PKGBUILD (from rev 198825, 
kdebindings-smokeqt/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:44:29 UTC (rev 198826)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokeqt
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Language independent library for Qt bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'mesa')
+conflicts=('kdebindings-smoke')

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:44:40
  Author: andrea
Revision: 198827

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

Added:
  kdegraphics-okular/repos/extra-i686/PKGBUILD
(from rev 198826, kdegraphics-okular/trunk/PKGBUILD)
  kdegraphics-okular/repos/extra-i686/kdegraphics-okular.install
(from rev 198826, kdegraphics-okular/trunk/kdegraphics-okular.install)
  kdegraphics-okular/repos/extra-x86_64/PKGBUILD
(from rev 198826, kdegraphics-okular/trunk/PKGBUILD)
  kdegraphics-okular/repos/extra-x86_64/kdegraphics-okular.install
(from rev 198826, kdegraphics-okular/trunk/kdegraphics-okular.install)
Deleted:
  kdegraphics-okular/repos/extra-i686/PKGBUILD
  kdegraphics-okular/repos/extra-i686/kdegraphics-okular.install
  kdegraphics-okular/repos/extra-x86_64/PKGBUILD
  kdegraphics-okular/repos/extra-x86_64/kdegraphics-okular.install

-+
 /PKGBUILD   |   70 ++
 /kdegraphics-okular.install |   24 ++
 extra-i686/PKGBUILD |   35 ---
 extra-i686/kdegraphics-okular.install   |   12 -
 extra-x86_64/PKGBUILD   |   35 ---
 extra-x86_64/kdegraphics-okular.install |   12 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:44:29 UTC (rev 198826)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:40 UTC (rev 198827)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdegraphics-okular
-pkgver=4.11.2
-pkgrel=1
-pkgdesc='Document Viewer'
-arch=('i686' 'x86_64')
-url=http://kde.org/applications/graphics/okular/;
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdegraphics')
-depends=('kdebase-runtime' 'qimageblitz' 'poppler-qt' 'chmlib' 'djvulibre'
- 'ebook-tools' 'libspectre')
-makedepends=('cmake' 'automoc4')
-optdepends=('kdegraphics-mobipocket: mobipocket support')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz;)
-sha1sums=('9910de294467ab7b056983040abcff458ade1792')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../okular-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_ActiveApp=OFF
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdegraphics-okular/repos/extra-i686/PKGBUILD (from rev 198826, 
kdegraphics-okular/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:44:40 UTC (rev 198827)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-okular
+pkgver=4.11.3
+pkgrel=1
+pkgdesc='Document Viewer'
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/graphics/okular/;
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz' 'poppler-qt' 'chmlib' 'djvulibre'
+ 'ebook-tools' 'libspectre')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdegraphics-mobipocket: mobipocket support')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz;)
+sha1sums=('b65e4124aab93220302721d03db09469f4c3d7c7')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../okular-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_ActiveApp=OFF
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdegraphics-okular.install
===
--- extra-i686/kdegraphics-okular.install   2013-11-05 19:44:29 UTC (rev 
198826)
+++ extra-i686/kdegraphics-okular.install   2013-11-05 19:44:40 UTC (rev 
198827)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegraphics-okular/repos/extra-i686/kdegraphics-okular.install (from 
rev 198826, kdegraphics-okular/trunk/kdegraphics-okular.install)
===
--- extra-i686/kdegraphics-okular.install   (rev 0)
+++ extra-i686/kdegraphics-okular.install   2013-11-05 19:44:40 UTC (rev 
198827)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- 

[arch-commits] Commit in kdesdk-kate/repos (15 files)

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:45:10
  Author: andrea
Revision: 198829

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

Added:
  kdesdk-kate/repos/extra-x86_64/PKGBUILD
(from rev 198828, kdesdk-kate/trunk/PKGBUILD)
  kdesdk-kate/repos/extra-x86_64/kdebase-katepart.install
(from rev 198828, kdesdk-kate/trunk/kdebase-katepart.install)
  kdesdk-kate/repos/extra-x86_64/kdebase-kwrite.install
(from rev 198828, kdesdk-kate/trunk/kdebase-kwrite.install)
  kdesdk-kate/repos/extra-x86_64/kdesdk-kate.install
(from rev 198828, kdesdk-kate/trunk/kdesdk-kate.install)
  kdesdk-kate/repos/extra-x86_64/pkgbuild-syntax-highlight.patch
(from rev 198828, kdesdk-kate/trunk/pkgbuild-syntax-highlight.patch)
Deleted:
  kdesdk-kate/repos/extra-i686/PKGBUILD
  kdesdk-kate/repos/extra-i686/kdebase-katepart.install
  kdesdk-kate/repos/extra-i686/kdebase-kwrite.install
  kdesdk-kate/repos/extra-i686/kdesdk-kate.install
  kdesdk-kate/repos/extra-i686/pkgbuild-syntax-highlight.patch
  kdesdk-kate/repos/extra-x86_64/PKGBUILD
  kdesdk-kate/repos/extra-x86_64/kdebase-katepart.install
  kdesdk-kate/repos/extra-x86_64/kdebase-kwrite.install
  kdesdk-kate/repos/extra-x86_64/kdesdk-kate.install
  kdesdk-kate/repos/extra-x86_64/pkgbuild-syntax-highlight.patch

--+
 /PKGBUILD|   74 +
 /kdebase-katepart.install|   11 +++
 /kdebase-kwrite.install  |   12 
 /kdesdk-kate.install |   13 
 /pkgbuild-syntax-highlight.patch |   11 +++
 extra-i686/PKGBUILD  |   74 -
 extra-i686/kdebase-katepart.install  |   11 ---
 extra-i686/kdebase-kwrite.install|   12 
 extra-i686/kdesdk-kate.install   |   13 
 extra-i686/pkgbuild-syntax-highlight.patch   |   11 ---
 extra-x86_64/PKGBUILD|   74 -
 extra-x86_64/kdebase-katepart.install|   11 ---
 extra-x86_64/kdebase-kwrite.install  |   12 
 extra-x86_64/kdesdk-kate.install |   13 
 extra-x86_64/pkgbuild-syntax-highlight.patch |   11 ---
 15 files changed, 121 insertions(+), 242 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:44:52 UTC (rev 198828)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:10 UTC (rev 198829)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdesdk-kate
-pkgname=('kdebase-katepart'
- 'kdebase-kwrite'
- 'kdesdk-kate')
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python')
-source=(http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.xz;
-'pkgbuild-syntax-highlight.patch')
-sha1sums=('3cb7211d2523b955d640808d45feaa68699f11f7'
-  '80c324c9db81c07a02374e7a092d75e0bdd6b4ea')
-
-prepare() {
-  cd kate-${pkgver}
-  patch -p1 -i ${srcdir}/pkgbuild-syntax-highlight.patch
-}
-
-build() {
-  mkdir build
-  cd build
-  cmake ../kate-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package_kdebase-katepart() {
-  pkgdesc=A fast and feature-rich text editor component
-  depends=('kdelibs')
-  url=http://kate-editor.org/about-katepart/;
-  install='kdebase-katepart.install'
-
-  cd build/part
-  make DESTDIR=${pkgdir} install
-  
-  cd ../../build/addons
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebase-kwrite() {
-  pkgdesc=Text Editor
-  depends=('kdebase-runtime' 'kdebase-katepart')
-  groups=('kde' 'kdebase')
-  url=http://www.kde.org/applications/utilities/kwrite/;
-  install='kdebase-kwrite.install'
-
-  cd build/kwrite
-  make DESTDIR=${pkgdir} install
-
-  cd ../../build/doc/kwrite
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdesdk-kate() {
-  pkgdesc=Advanced Text Editor
-  depends=('kdebase-runtime' 'kdebase-katepart' 'qjson')
-  groups=('kde' 'kdesdk')
-  url=http://www.kde.org/applications/utilities/kate/;
-  install='kdesdk-kate.install'
-  optdepends=('kdebase-konsole: open a terminal in Kate'
-  'kdebindings-python: python bindings')
-
-  cd build/kate
-  make DESTDIR=${pkgdir} install
-
-  cd ../../build/doc/kate
-  make DESTDIR=${pkgdir} install
-}

Deleted: extra-i686/kdebase-katepart.install
===
--- extra-i686/kdebase-katepart.install 2013-11-05 19:44:52 UTC (rev 198828)
+++ extra-i686/kdebase-katepart.install 2013-11-05 19:45:10 UTC (rev 198829)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Deleted: extra-i686/kdebase-kwrite.install

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:45:21
  Author: andrea
Revision: 198830

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

Added:
  kdebindings-smokekde/repos/extra-i686/PKGBUILD
(from rev 198829, kdebindings-smokekde/trunk/PKGBUILD)
  kdebindings-smokekde/repos/extra-x86_64/PKGBUILD
(from rev 198829, kdebindings-smokekde/trunk/PKGBUILD)
Deleted:
  kdebindings-smokekde/repos/extra-i686/PKGBUILD
  kdebindings-smokekde/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:45:10 UTC (rev 198829)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:21 UTC (rev 198830)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokekde
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Language independent library for KDE bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
- 'mesa')
-optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
-sha1sums=('09b73d8f13767cd9132387e391ddde09b14ed972')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../smokekde-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokekde/repos/extra-i686/PKGBUILD (from rev 198829, 
kdebindings-smokekde/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:21 UTC (rev 198830)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokekde
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Language independent library for KDE bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
+ 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
+ 'mesa')
+optdepends=('kdesdk-kate: Kate bindings'
+'kdegraphics-okular: Okular bindings'
+'kdepimlibs: akonadi bindings')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
+sha1sums=('6cd8c535a0f6b40dab4c96c45a0301a9c7abd507')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../smokekde-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:45:10 UTC (rev 198829)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:45:21 UTC (rev 198830)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-smokekde
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Language independent library for KDE bindings
-url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate'
- 'mesa')
-optdepends=('kdesdk-kate: Kate bindings'
-'kdegraphics-okular: Okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-smoke')
-source=(http://download.kde.org/stable/${pkgver}/src/smokekde-${pkgver}.tar.xz;)
-sha1sums=('09b73d8f13767cd9132387e391ddde09b14ed972')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../smokekde-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-smokekde/repos/extra-x86_64/PKGBUILD (from rev 198829, 
kdebindings-smokekde/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:45:33
  Author: andrea
Revision: 198831

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

Added:
  kdebindings-perlqt/repos/extra-i686/PKGBUILD
(from rev 198830, kdebindings-perlqt/trunk/PKGBUILD)
  kdebindings-perlqt/repos/extra-x86_64/PKGBUILD
(from rev 198830, kdebindings-perlqt/trunk/PKGBUILD)
Deleted:
  kdebindings-perlqt/repos/extra-i686/PKGBUILD
  kdebindings-perlqt/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:45:21 UTC (rev 198830)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:33 UTC (rev 198831)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-perlqt
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Perl bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'perl-list-moreutils')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
-sha1sums=('2a6ddaafdbc0bd62ae7b1982f9bd0efa6908157c')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../perlqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-perlqt/repos/extra-i686/PKGBUILD (from rev 198830, 
kdebindings-perlqt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:33 UTC (rev 198831)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlqt
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Perl bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'perl-list-moreutils')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
+sha1sums=('fb81299b5148cf6f9060e0ba09d4651e51f86404')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:45:21 UTC (rev 198830)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:45:33 UTC (rev 198831)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-perlqt
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Perl bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'perl-list-moreutils')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
-sha1sums=('2a6ddaafdbc0bd62ae7b1982f9bd0efa6908157c')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../perlqt-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-perlqt/repos/extra-x86_64/PKGBUILD (from rev 198830, 
kdebindings-perlqt/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:45:33 UTC (rev 198831)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlqt
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Perl bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'perl-list-moreutils')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
+sha1sums=('fb81299b5148cf6f9060e0ba09d4651e51f86404')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:45:56
  Author: andrea
Revision: 198833

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

Added:
  kdebindings-qtruby/repos/extra-i686/PKGBUILD
(from rev 198832, kdebindings-qtruby/trunk/PKGBUILD)
  kdebindings-qtruby/repos/extra-x86_64/PKGBUILD
(from rev 198832, kdebindings-qtruby/trunk/PKGBUILD)
Deleted:
  kdebindings-qtruby/repos/extra-i686/PKGBUILD
  kdebindings-qtruby/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:45:45 UTC (rev 198832)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:56 UTC (rev 198833)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-qtruby
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Ruby bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'ruby')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
-sha1sums=('a75925deb9caaf75dc9f77da861516767d40688a')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../qtruby-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-qtruby/repos/extra-i686/PKGBUILD (from rev 198832, 
kdebindings-qtruby/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:45:56 UTC (rev 198833)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qtruby
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Ruby bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'ruby')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-ruby')
+source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
+sha1sums=('b2c8c16744c314af2fd6cc7afabe48fdfd274266')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../qtruby-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:45:45 UTC (rev 198832)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:45:56 UTC (rev 198833)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-qtruby
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Ruby bindings for the Qt libraries
-url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-smokeqt' 'ruby')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
-conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
-sha1sums=('a75925deb9caaf75dc9f77da861516767d40688a')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../qtruby-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-qtruby/repos/extra-x86_64/PKGBUILD (from rev 198832, 
kdebindings-qtruby/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:45:56 UTC (rev 198833)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qtruby
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Ruby bindings for the Qt libraries

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:46:51
  Author: andrea
Revision: 198836

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

Added:
  nepomuk-widgets/repos/extra-i686/PKGBUILD
(from rev 198835, nepomuk-widgets/trunk/PKGBUILD)
  nepomuk-widgets/repos/extra-x86_64/PKGBUILD
(from rev 198835, nepomuk-widgets/trunk/PKGBUILD)
Deleted:
  nepomuk-widgets/repos/extra-i686/PKGBUILD
  nepomuk-widgets/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:46:28 UTC (rev 198835)
+++ extra-i686/PKGBUILD 2013-11-05 19:46:51 UTC (rev 198836)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-widgets
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=The Library containing the Nepomuk Widgets
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d63ef40b9832fc0f18f981163800a9d5ecd5e29e')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: nepomuk-widgets/repos/extra-i686/PKGBUILD (from rev 198835, 
nepomuk-widgets/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:46:51 UTC (rev 198836)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-widgets
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=The Library containing the Nepomuk Widgets
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d43a410fd9ed02b52e8d4076e080a66a4b2c435a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:46:28 UTC (rev 198835)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:46:51 UTC (rev 198836)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-widgets
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=The Library containing the Nepomuk Widgets
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d63ef40b9832fc0f18f981163800a9d5ecd5e29e')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: nepomuk-widgets/repos/extra-x86_64/PKGBUILD (from rev 198835, 
nepomuk-widgets/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:46:51 UTC (rev 198836)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-widgets
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=The Library containing the Nepomuk Widgets
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d43a410fd9ed02b52e8d4076e080a66a4b2c435a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:47:18
  Author: andrea
Revision: 198838

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

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

+
 /PKGBUILD  |   66 +++
 /libkdeedu.install |   22 +
 extra-i686/PKGBUILD|   32 --
 extra-i686/libkdeedu.install   |   11 --
 extra-x86_64/PKGBUILD  |   32 --
 extra-x86_64/libkdeedu.install |   11 --
 6 files changed, 88 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:47:04 UTC (rev 198837)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:18 UTC (rev 198838)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkdeedu
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Libraries used by KDE Education applications
-url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-replaces=('kdeedu-libkdeedu' 'kdeedu-data')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('23daf0f0371b1c7e40a376fba627bc42afeeb5a2')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkdeedu/repos/extra-i686/PKGBUILD (from rev 198837, 
libkdeedu/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:18 UTC (rev 198838)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdeedu
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Libraries used by KDE Education applications
+url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+replaces=('kdeedu-libkdeedu' 'kdeedu-data')
+options=('staticlibs') # libqtmmlwidget.a needed by KAlgebra
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('5db8e436ac5a77c3dacaf8279988e0121df10cd8')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/libkdeedu.install
===
--- extra-i686/libkdeedu.install2013-11-05 19:47:04 UTC (rev 198837)
+++ extra-i686/libkdeedu.install2013-11-05 19:47:18 UTC (rev 198838)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libkdeedu/repos/extra-i686/libkdeedu.install (from rev 198837, 
libkdeedu/trunk/libkdeedu.install)
===
--- extra-i686/libkdeedu.install(rev 0)
+++ extra-i686/libkdeedu.install2013-11-05 19:47:18 UTC (rev 198838)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:47:04 UTC (rev 198837)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:47:18 UTC (rev 198838)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkdeedu
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Libraries used by KDE Education applications
-url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-replaces=('kdeedu-libkdeedu' 'kdeedu-data')

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:47:04
  Author: andrea
Revision: 198837

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

Added:
  kdebase/repos/extra-i686/PKGBUILD
(from rev 198836, kdebase/trunk/PKGBUILD)
  kdebase/repos/extra-i686/kdebase-dolphin.install
(from rev 198836, kdebase/trunk/kdebase-dolphin.install)
  kdebase/repos/extra-i686/kdebase-konqueror.install
(from rev 198836, kdebase/trunk/kdebase-konqueror.install)
  kdebase/repos/extra-i686/kdebase.install
(from rev 198836, kdebase/trunk/kdebase.install)
  kdebase/repos/extra-x86_64/PKGBUILD
(from rev 198836, kdebase/trunk/PKGBUILD)
  kdebase/repos/extra-x86_64/kdebase-dolphin.install
(from rev 198836, kdebase/trunk/kdebase-dolphin.install)
  kdebase/repos/extra-x86_64/kdebase-konqueror.install
(from rev 198836, kdebase/trunk/kdebase-konqueror.install)
  kdebase/repos/extra-x86_64/kdebase.install
(from rev 198836, kdebase/trunk/kdebase.install)
Deleted:
  kdebase/repos/extra-i686/PKGBUILD
  kdebase/repos/extra-i686/kdebase-dolphin.install
  kdebase/repos/extra-i686/kdebase-konqueror.install
  kdebase/repos/extra-i686/kdebase.install
  kdebase/repos/extra-i686/kdebug-324511.patch
  kdebase/repos/extra-x86_64/PKGBUILD
  kdebase/repos/extra-x86_64/kdebase-dolphin.install
  kdebase/repos/extra-x86_64/kdebase-konqueror.install
  kdebase/repos/extra-x86_64/kdebase.install
  kdebase/repos/extra-x86_64/kdebug-324511.patch

+
 /PKGBUILD  |  254 +++
 /kdebase-dolphin.install   |   22 ++
 /kdebase-konqueror.install |   24 ++
 /kdebase.install   |   22 ++
 extra-i686/PKGBUILD|  129 ---
 extra-i686/kdebase-dolphin.install |   11 -
 extra-i686/kdebase-konqueror.install   |   12 -
 extra-i686/kdebase.install |   11 -
 extra-i686/kdebug-324511.patch |   25 ---
 extra-x86_64/PKGBUILD  |  129 ---
 extra-x86_64/kdebase-dolphin.install   |   11 -
 extra-x86_64/kdebase-konqueror.install |   12 -
 extra-x86_64/kdebase.install   |   11 -
 extra-x86_64/kdebug-324511.patch   |   25 ---
 14 files changed, 322 insertions(+), 376 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:46:51 UTC (rev 198836)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:04 UTC (rev 198837)
@@ -1,129 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase
-pkgname=('kdebase-dolphin'
- 'kdebase-kdepasswd'
- 'kdebase-kdialog'
- 'kdebase-keditbookmarks'
- 'kdebase-kfind'
- 'kdebase-konq-plugins'
- 'kdebase-konqueror'
- 'kdebase-lib'
- 'kdebase-plasma')
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.kde.org'
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdebase')
-makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml' 'nepomuk-widgets')
-source=(http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz;)
-sha1sums=('6a988adf54e9f499365dce0ce1691d020411bd0d')
-
-prepare() {
-  mkdir build
-
-  cd kde-baseapps-${pkgver}
-}
-
-build() {
-   cd build
-   cmake ../kde-baseapps-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package_kdebase-dolphin() {
-   pkgdesc='File Manager'
-   depends=('kdebase-runtime' 'kdebase-lib' 'nepomuk-widgets')
-   optdepends=('kdegraphics-svgpart: thumbailers for SVG files'
-   'kdegraphics-thumbnailers: thumbnailers for various 
graphics files'
-'kdemultimedia-ffmpegthumbs: thumbnailers for video files'
-'kdemultimedia-mplayerthumbs: thumbnailers for video files'
-'kdesdk-thumbnailers: thumbnailers for development files'
-'icoutils: thumbnailers for MS files'
-   'ruby: servicemenu installation')
-   url=http://kde.org/applications/system/dolphin/;
-   install=kdebase-dolphin.install
-   cd $srcdir/build/dolphin
-   make DESTDIR=$pkgdir install
-   cd $srcdir/build/doc/dolphin
-   make DESTDIR=$pkgdir install
-}
-
-package_kdebase-kdepasswd() {
-   pkgdesc='Change Password'
-   depends=('kdebase-runtime' 'kdebase-lib')
-   cd $srcdir/build/kdepasswd
-   make DESTDIR=$pkgdir install
-   cd $srcdir/build/doc/kdepasswd
-   make DESTDIR=$pkgdir install
-}
-
-package_kdebase-kdialog() {
-   pkgdesc='A utility for displaying dialog boxes from shell scripts'
-   depends=('kdebase-runtime')
-   cd $srcdir/build/kdialog
-   make DESTDIR=$pkgdir install
-}
-
-package_kdebase-keditbookmarks() {
-   pkgdesc='Bookmark Organizer 

[arch-commits] Commit in kdebase-workspace/repos (42 files)

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:46:28
  Author: andrea
Revision: 198835

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

Added:
  kdebase-workspace/repos/extra-i686/PKGBUILD
(from rev 198834, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/extra-i686/etc-scripts.patch
(from rev 198834, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/extra-i686/kde-np.pam
(from rev 198834, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/extra-i686/kde.pam
(from rev 198834, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/extra-i686/kdebase-workspace.install
(from rev 198834, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/extra-i686/kdm-xinitrd.patch
(from rev 198834, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/extra-i686/kdm.logrotate
(from rev 198834, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/extra-i686/kdm.service
(from rev 198834, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/extra-i686/kscreensaver.pam
(from rev 198834, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/extra-i686/terminate-server.patch
(from rev 198834, kdebase-workspace/trunk/terminate-server.patch)
  kdebase-workspace/repos/extra-x86_64/PKGBUILD
(from rev 198834, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/extra-x86_64/etc-scripts.patch
(from rev 198834, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/extra-x86_64/kde-np.pam
(from rev 198834, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/extra-x86_64/kde.pam
(from rev 198834, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/extra-x86_64/kdebase-workspace.install
(from rev 198834, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/extra-x86_64/kdm-xinitrd.patch
(from rev 198834, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/extra-x86_64/kdm.logrotate
(from rev 198834, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/extra-x86_64/kdm.service
(from rev 198834, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/extra-x86_64/kscreensaver.pam
(from rev 198834, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/extra-x86_64/terminate-server.patch
(from rev 198834, kdebase-workspace/trunk/terminate-server.patch)
Deleted:
  kdebase-workspace/repos/extra-i686/PKGBUILD
  kdebase-workspace/repos/extra-i686/etc-scripts.patch
  kdebase-workspace/repos/extra-i686/kde-np.pam
  kdebase-workspace/repos/extra-i686/kde.pam
  kdebase-workspace/repos/extra-i686/kdebase-workspace.install
  kdebase-workspace/repos/extra-i686/kdebug-324574.patch
  kdebase-workspace/repos/extra-i686/kdm-xinitrd.patch
  kdebase-workspace/repos/extra-i686/kdm.logrotate
  kdebase-workspace/repos/extra-i686/kdm.service
  kdebase-workspace/repos/extra-i686/kscreensaver.pam
  kdebase-workspace/repos/extra-i686/terminate-server.patch
  kdebase-workspace/repos/extra-x86_64/PKGBUILD
  kdebase-workspace/repos/extra-x86_64/etc-scripts.patch
  kdebase-workspace/repos/extra-x86_64/kde-np.pam
  kdebase-workspace/repos/extra-x86_64/kde.pam
  kdebase-workspace/repos/extra-x86_64/kdebase-workspace.install
  kdebase-workspace/repos/extra-x86_64/kdebug-324574.patch
  kdebase-workspace/repos/extra-x86_64/kdm-xinitrd.patch
  kdebase-workspace/repos/extra-x86_64/kdm.logrotate
  kdebase-workspace/repos/extra-x86_64/kdm.service
  kdebase-workspace/repos/extra-x86_64/kscreensaver.pam
  kdebase-workspace/repos/extra-x86_64/terminate-server.patch

+
 /PKGBUILD  |  172 +++
 /etc-scripts.patch |   22 +++
 /kde-np.pam|   24 
 /kde.pam   |   16 ++
 /kdebase-workspace.install |   62 +++
 /kdm-xinitrd.patch |   36 ++
 /kdm.logrotate |   12 ++
 /kdm.service   |   18 +++
 /kscreensaver.pam  |2 
 /terminate-server.patch|   22 +++
 extra-i686/PKGBUILD|   86 ---
 extra-i686/etc-scripts.patch   |   11 -
 extra-i686/kde-np.pam  |   12 --
 extra-i686/kde.pam |8 -
 extra-i686/kdebase-workspace.install   |   31 -
 extra-i686/kdebug-324574.patch |   55 -
 extra-i686/kdm-xinitrd.patch   |   18 ---
 extra-i686/kdm.logrotate   |6 -
 extra-i686/kdm.service |9 -
 extra-i686/kscreensaver.pam|1 
 extra-i686/terminate-server.patch  |   11 -
 extra-x86_64/PKGBUILD  |   86 ---
 extra-x86_64/etc-scripts.patch |   11 -
 extra-x86_64/kde-np.pam|   12 --
 

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

2013-11-05 Thread Florian Pritz
Date: Tuesday, November 5, 2013 @ 20:47:43
  Author: bluewind
Revision: 100546

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

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

---+
 /PKGBUILD |   80 
 community-i686/PKGBUILD   |   41 --
 community-x86_64/PKGBUILD |   41 --
 3 files changed, 80 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-05 19:47:28 UTC (rev 100545)
+++ community-i686/PKGBUILD 2013-11-05 19:47:43 UTC (rev 100546)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Jan Fader jan.fa...@web.de
-pkgbase=highlight
-pkgname=(highlight highlight-gui)
-pkgver=3.16.1
-_pkgver=3.16
-pkgrel=1
-url=http://www.andre-simon.de/doku/highlight/highlight.html;
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=(qt4 lua boost)
-source=(http://www.andre-simon.de/zip/$pkgname-$_pkgver.tar.bz2{,.asc})
-md5sums=('688bb537db149dc720b9ef1ffc796ced'
- 'SKIP')
-
-build() {
-  cd $srcdir/$pkgbase-$_pkgver
-
-  make QMAKE=qmake-qt4
-  make QMAKE=qmake-qt4 gui
-}
-
-package_highlight() {
-  pkgdesc=Fast and flexible source code highlighter (CLI version)
-  depends=('lua')
-  cd $srcdir/$pkgbase-$_pkgver
-
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
-}
-
-package_highlight-gui() {
-  pkgdesc=Fast and flexible source code highlighter (Qt version)
-  depends=('qt4' 'highlight')
-  cd $srcdir/$pkgbase-$_pkgver
-
-  install -dm755 $pkgdir/usr/bin
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui
-}
-
-# vim:set ts=2 sw=2 et:

Copied: highlight/repos/community-i686/PKGBUILD (from rev 100545, 
highlight/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-05 19:47:43 UTC (rev 100546)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Jan Fader jan.fa...@web.de
+pkgbase=highlight
+pkgname=(highlight highlight-gui)
+pkgver=3.16.1
+pkgrel=1
+url=http://www.andre-simon.de/doku/highlight/highlight.html;
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=(qt4 lua boost)
+source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('688bb537db149dc720b9ef1ffc796ced'
+ 'SKIP')
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver
+
+  make QMAKE=qmake-qt4
+  make QMAKE=qmake-qt4 gui
+}
+
+package_highlight() {
+  pkgdesc=Fast and flexible source code highlighter (CLI version)
+  depends=('lua')
+  cd $srcdir/$pkgbase-$pkgver
+
+  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
+}
+
+package_highlight-gui() {
+  pkgdesc=Fast and flexible source code highlighter (Qt version)
+  depends=('qt4' 'highlight')
+  cd $srcdir/$pkgbase-$pkgver
+
+  install -dm755 $pkgdir/usr/bin
+  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-11-05 19:47:28 UTC (rev 100545)
+++ community-x86_64/PKGBUILD   2013-11-05 19:47:43 UTC (rev 100546)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Jan Fader jan.fa...@web.de
-pkgbase=highlight
-pkgname=(highlight highlight-gui)
-pkgver=3.16.1
-_pkgver=3.16
-pkgrel=1
-url=http://www.andre-simon.de/doku/highlight/highlight.html;
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=(qt4 lua boost)
-source=(http://www.andre-simon.de/zip/$pkgname-$_pkgver.tar.bz2{,.asc})
-md5sums=('688bb537db149dc720b9ef1ffc796ced'
- 'SKIP')
-
-build() {
-  cd $srcdir/$pkgbase-$_pkgver
-
-  make QMAKE=qmake-qt4
-  make QMAKE=qmake-qt4 gui
-}
-
-package_highlight() {
-  pkgdesc=Fast and flexible source code highlighter (CLI version)
-  depends=('lua')
-  cd $srcdir/$pkgbase-$_pkgver
-
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
-}
-
-package_highlight-gui() {
-  pkgdesc=Fast and flexible source code highlighter (Qt version)
-  depends=('qt4' 'highlight')
-  cd $srcdir/$pkgbase-$_pkgver
-
-  install -dm755 $pkgdir/usr/bin
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui
-}
-
-# vim:set ts=2 sw=2 et:

Copied: highlight/repos/community-x86_64/PKGBUILD (from rev 100545, 
highlight/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-05 19:47:43 UTC (rev 100546)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Jan Fader 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:47:27
  Author: andrea
Revision: 198839

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

Added:
  kdeedu-marble/repos/extra-i686/PKGBUILD
(from rev 198838, kdeedu-marble/trunk/PKGBUILD)
  kdeedu-marble/repos/extra-i686/kdeedu-marble.install
(from rev 198838, kdeedu-marble/trunk/kdeedu-marble.install)
  kdeedu-marble/repos/extra-x86_64/PKGBUILD
(from rev 198838, kdeedu-marble/trunk/PKGBUILD)
  kdeedu-marble/repos/extra-x86_64/kdeedu-marble.install
(from rev 198838, kdeedu-marble/trunk/kdeedu-marble.install)
Deleted:
  kdeedu-marble/repos/extra-i686/PKGBUILD
  kdeedu-marble/repos/extra-i686/kdeedu-marble.install
  kdeedu-marble/repos/extra-x86_64/PKGBUILD
  kdeedu-marble/repos/extra-x86_64/kdeedu-marble.install

+
 /PKGBUILD  |   64 +++
 /kdeedu-marble.install |   26 ++
 extra-i686/PKGBUILD|   32 -
 extra-i686/kdeedu-marble.install   |   13 ---
 extra-x86_64/PKGBUILD  |   32 -
 extra-x86_64/kdeedu-marble.install |   13 ---
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:47:18 UTC (rev 198838)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:27 UTC (rev 198839)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-marble
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Desktop Globe
-url=http://kde.org/applications/education/marble/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'gpsd')
-optdepends=('gpsd: gps support')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('d37528ba9c61f8938569ea6af39d0fd5181f52d4')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../marble-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-marble/repos/extra-i686/PKGBUILD (from rev 198838, 
kdeedu-marble/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:27 UTC (rev 198839)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-marble
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=Desktop Globe
+url=http://kde.org/applications/education/marble/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'gpsd')
+optdepends=('gpsd: gps support')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz;)
+sha1sums=('b0b0cf06b4c60262861e748c6815d62513df13a7')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../marble-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdeedu-marble.install
===
--- extra-i686/kdeedu-marble.install2013-11-05 19:47:18 UTC (rev 198838)
+++ extra-i686/kdeedu-marble.install2013-11-05 19:47:27 UTC (rev 198839)
@@ -1,13 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-marble/repos/extra-i686/kdeedu-marble.install (from rev 198838, 
kdeedu-marble/trunk/kdeedu-marble.install)
===
--- extra-i686/kdeedu-marble.install(rev 0)
+++ extra-i686/kdeedu-marble.install2013-11-05 19:47:27 UTC (rev 198839)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:47:18 UTC (rev 198838)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:47:27 UTC (rev 198839)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-marble
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=Desktop Globe
-url=http://kde.org/applications/education/marble/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:47:41
  Author: andrea
Revision: 198840

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

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

+
 /PKGBUILD  |   66 +++
 /libkdcraw.install |   22 +
 extra-i686/PKGBUILD|   33 ---
 extra-i686/libkdcraw.install   |   11 --
 extra-x86_64/PKGBUILD  |   33 ---
 extra-x86_64/libkdcraw.install |   11 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:47:27 UTC (rev 198839)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:41 UTC (rev 198840)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkdcraw
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A C++ interface used to decode RAW picture
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'lcms2')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('51680e9653bc7e00bb71a3744702c7f52570c672')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_LCMS2=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkdcraw/repos/extra-i686/PKGBUILD (from rev 198839, 
libkdcraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:41 UTC (rev 198840)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdcraw
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A C++ interface used to decode RAW picture
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'lcms2')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c6eb63d1675aa028b1217b79958e1c63c245ca77')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_LCMS2=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/libkdcraw.install
===
--- extra-i686/libkdcraw.install2013-11-05 19:47:27 UTC (rev 198839)
+++ extra-i686/libkdcraw.install2013-11-05 19:47:41 UTC (rev 198840)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libkdcraw/repos/extra-i686/libkdcraw.install (from rev 198839, 
libkdcraw/trunk/libkdcraw.install)
===
--- extra-i686/libkdcraw.install(rev 0)
+++ extra-i686/libkdcraw.install2013-11-05 19:47:41 UTC (rev 198840)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:47:27 UTC (rev 198839)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:47:41 UTC (rev 198840)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkdcraw
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A C++ interface used to decode RAW picture
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'lcms2')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:48:05
  Author: andrea
Revision: 198842

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

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

--+
 /PKGBUILD|   66 +
 /libkipi.install |   22 +
 extra-i686/PKGBUILD  |   33 
 extra-i686/libkipi.install   |   11 --
 extra-x86_64/PKGBUILD|   33 
 extra-x86_64/libkipi.install |   11 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:47:52 UTC (rev 198841)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:05 UTC (rev 198842)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 145371 2011-12-22 07:58:59Z andrea $
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkipi
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=An interface to use kipi-plugins from a KDE application
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('291dd7ad892b2c0598642b006ad4709d669b7271')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkipi/repos/extra-i686/PKGBUILD (from rev 198841, 
libkipi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:05 UTC (rev 198842)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 145371 2011-12-22 07:58:59Z andrea $
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkipi
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=An interface to use kipi-plugins from a KDE application
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('8fa8453b4314521e41d51972cec628c3ebd4294d')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/libkipi.install
===
--- extra-i686/libkipi.install  2013-11-05 19:47:52 UTC (rev 198841)
+++ extra-i686/libkipi.install  2013-11-05 19:48:05 UTC (rev 198842)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libkipi/repos/extra-i686/libkipi.install (from rev 198841, 
libkipi/trunk/libkipi.install)
===
--- extra-i686/libkipi.install  (rev 0)
+++ extra-i686/libkipi.install  2013-11-05 19:48:05 UTC (rev 198842)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:47:52 UTC (rev 198841)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:05 UTC (rev 198842)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 145371 2011-12-22 07:58:59Z andrea $
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkipi
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=An interface to use kipi-plugins from a KDE application
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:48:13
  Author: andrea
Revision: 198843

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

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

---+
 /PKGBUILD |   66 
 /libksane.install |   22 +
 extra-i686/PKGBUILD   |   33 
 extra-i686/libksane.install   |   11 --
 extra-x86_64/PKGBUILD |   33 
 extra-x86_64/libksane.install |   11 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:48:05 UTC (rev 198842)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:13 UTC (rev 198843)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libksane
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=An image scanning library
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'sane')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('9f617633c6770f0db426362df78c6dc564601533')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libksane/repos/extra-i686/PKGBUILD (from rev 198842, 
libksane/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:13 UTC (rev 198843)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libksane
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=An image scanning library
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'sane')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e52dd9db0c5222ba6febe96dec9362b46f7453f4')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/libksane.install
===
--- extra-i686/libksane.install 2013-11-05 19:48:05 UTC (rev 198842)
+++ extra-i686/libksane.install 2013-11-05 19:48:13 UTC (rev 198843)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libksane/repos/extra-i686/libksane.install (from rev 198842, 
libksane/trunk/libksane.install)
===
--- extra-i686/libksane.install (rev 0)
+++ extra-i686/libksane.install 2013-11-05 19:48:13 UTC (rev 198843)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:48:05 UTC (rev 198842)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:13 UTC (rev 198843)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libksane
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=An image scanning library
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'sane')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)

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

2013-11-05 Thread Florian Pritz
Date: Tuesday, November 5, 2013 @ 20:47:28
  Author: bluewind
Revision: 100545

upstream fixed the source urls

Modified:
  highlight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-05 19:02:37 UTC (rev 100544)
+++ PKGBUILD2013-11-05 19:47:28 UTC (rev 100545)
@@ -4,18 +4,17 @@
 pkgbase=highlight
 pkgname=(highlight highlight-gui)
 pkgver=3.16.1
-_pkgver=3.16
 pkgrel=1
 url=http://www.andre-simon.de/doku/highlight/highlight.html;
 license=('GPL')
 arch=('i686' 'x86_64')
 makedepends=(qt4 lua boost)
-source=(http://www.andre-simon.de/zip/$pkgname-$_pkgver.tar.bz2{,.asc})
+source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc})
 md5sums=('688bb537db149dc720b9ef1ffc796ced'
  'SKIP')
 
 build() {
-  cd $srcdir/$pkgbase-$_pkgver
+  cd $srcdir/$pkgbase-$pkgver
 
   make QMAKE=qmake-qt4
   make QMAKE=qmake-qt4 gui
@@ -24,7 +23,7 @@
 package_highlight() {
   pkgdesc=Fast and flexible source code highlighter (CLI version)
   depends=('lua')
-  cd $srcdir/$pkgbase-$_pkgver
+  cd $srcdir/$pkgbase-$pkgver
 
   make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
 }
@@ -32,7 +31,7 @@
 package_highlight-gui() {
   pkgdesc=Fast and flexible source code highlighter (Qt version)
   depends=('qt4' 'highlight')
-  cd $srcdir/$pkgbase-$_pkgver
+  cd $srcdir/$pkgbase-$pkgver
 
   install -dm755 $pkgdir/usr/bin
   make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui



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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:47:52
  Author: andrea
Revision: 198841

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:47:41 UTC (rev 198840)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:52 UTC (rev 198841)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkexiv2
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A library to manipulate pictures metadata
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('51e75f8e6db99a6fd7ca8956a16636c790a9f81c')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkexiv2/repos/extra-i686/PKGBUILD (from rev 198840, 
libkexiv2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:47:52 UTC (rev 198841)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkexiv2
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A library to manipulate pictures metadata
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('7095a438080173a2c5bd77fe57f59580056d1a4c')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:47:41 UTC (rev 198840)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:47:52 UTC (rev 198841)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkexiv2
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A library to manipulate pictures metadata
-url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('51e75f8e6db99a6fd7ca8956a16636c790a9f81c')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkexiv2/repos/extra-x86_64/PKGBUILD (from rev 198840, 
libkexiv2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:47:52 UTC (rev 198841)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkexiv2
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A library to manipulate pictures metadata
+url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('7095a438080173a2c5bd77fe57f59580056d1a4c')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:48:45
  Author: andrea
Revision: 198846

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:48:35 UTC (rev 198845)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:45 UTC (rev 198846)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkcompactdisc
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A library for interfacing with CDs
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('bca14ffe1defbfd194f9429d051af5cb0545cede')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkcompactdisc/repos/extra-i686/PKGBUILD (from rev 198845, 
libkcompactdisc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:45 UTC (rev 198846)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcompactdisc
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A library for interfacing with CDs
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e8c3e8efe5454538a7e7538355d099ebdbf6ac2b')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:48:35 UTC (rev 198845)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:45 UTC (rev 198846)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkcompactdisc
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A library for interfacing with CDs
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('bca14ffe1defbfd194f9429d051af5cb0545cede')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkcompactdisc/repos/extra-x86_64/PKGBUILD (from rev 198845, 
libkcompactdisc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:45 UTC (rev 198846)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcompactdisc
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A library for interfacing with CDs
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e8c3e8efe5454538a7e7538355d099ebdbf6ac2b')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:49:19
  Author: andrea
Revision: 198849

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

Added:
  kdeaccessibility-jovie/repos/extra-i686/PKGBUILD
(from rev 198848, kdeaccessibility-jovie/trunk/PKGBUILD)
  kdeaccessibility-jovie/repos/extra-i686/kdeaccessibility-jovie.install
(from rev 198848, 
kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
  kdeaccessibility-jovie/repos/extra-x86_64/PKGBUILD
(from rev 198848, kdeaccessibility-jovie/trunk/PKGBUILD)
  kdeaccessibility-jovie/repos/extra-x86_64/kdeaccessibility-jovie.install
(from rev 198848, 
kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
Deleted:
  kdeaccessibility-jovie/repos/extra-i686/PKGBUILD
  kdeaccessibility-jovie/repos/extra-i686/kdeaccessibility-jovie.install
  kdeaccessibility-jovie/repos/extra-x86_64/PKGBUILD
  kdeaccessibility-jovie/repos/extra-x86_64/kdeaccessibility-jovie.install

-+
 /PKGBUILD   |   64 ++
 /kdeaccessibility-jovie.install |   22 
 extra-i686/PKGBUILD |   32 -
 extra-i686/kdeaccessibility-jovie.install   |   11 
 extra-x86_64/PKGBUILD   |   32 -
 extra-x86_64/kdeaccessibility-jovie.install |   11 
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:49:09 UTC (rev 198848)
+++ extra-i686/PKGBUILD 2013-11-05 19:49:19 UTC (rev 198849)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeaccessibility-jovie
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A text to speech application'
-url='http://kde.org/applications/utilities/jovie/'
-license=('GPL' 'FDL')
-groups=('kde' 'kdeaccessibility')
-depends=('kdebase-runtime' 'speech-dispatcher')
-makedepends=('cmake' 'automoc4')
-replaces=('kdeaccessibility-kttsd')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
-sha1sums=('67700e70c208ed2d15f7d8581c1f50b5f0f7cb4b')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../jovie-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeaccessibility-jovie/repos/extra-i686/PKGBUILD (from rev 198848, 
kdeaccessibility-jovie/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:49:19 UTC (rev 198849)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeaccessibility-jovie
+pkgver=4.11.3
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A text to speech application'
+url='http://kde.org/applications/utilities/jovie/'
+license=('GPL' 'FDL')
+groups=('kde' 'kdeaccessibility')
+depends=('kdebase-runtime' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+replaces=('kdeaccessibility-kttsd')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
+sha1sums=('9b2d3058b7ff0324015e80f6ef6f6a3d1ad63b53')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../jovie-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kdeaccessibility-jovie.install
===
--- extra-i686/kdeaccessibility-jovie.install   2013-11-05 19:49:09 UTC (rev 
198848)
+++ extra-i686/kdeaccessibility-jovie.install   2013-11-05 19:49:19 UTC (rev 
198849)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeaccessibility-jovie/repos/extra-i686/kdeaccessibility-jovie.install 
(from rev 198848, kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
===
--- extra-i686/kdeaccessibility-jovie.install   (rev 0)
+++ extra-i686/kdeaccessibility-jovie.install   2013-11-05 19:49:19 UTC (rev 
198849)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:49:09 UTC (rev 198848)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:49:19 UTC (rev 198849)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:48:35
  Author: andrea
Revision: 198845

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:48:24 UTC (rev 198844)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:35 UTC (rev 198845)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkcddb
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=KDE CDDB library
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'libmusicbrainz5')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('8d2a6774f96ae08666bbfe117c77e63a4e789457')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkcddb/repos/extra-i686/PKGBUILD (from rev 198844, 
libkcddb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:35 UTC (rev 198845)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcddb
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=KDE CDDB library
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('2e1b5381d704445d08a87353c2b1528349dfcbd0')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:48:24 UTC (rev 198844)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:35 UTC (rev 198845)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkcddb
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=KDE CDDB library
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'libmusicbrainz5')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('8d2a6774f96ae08666bbfe117c77e63a4e789457')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkcddb/repos/extra-x86_64/PKGBUILD (from rev 198844, 
libkcddb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:35 UTC (rev 198845)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcddb
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=KDE CDDB library
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('2e1b5381d704445d08a87353c2b1528349dfcbd0')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} 

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

2013-11-05 Thread Andrea Scarpino
Date: Tuesday, November 5, 2013 @ 20:48:24
  Author: andrea
Revision: 198844

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

Added:
  kdeedu-analitza/repos/extra-i686/PKGBUILD
(from rev 198843, kdeedu-analitza/trunk/PKGBUILD)
  kdeedu-analitza/repos/extra-x86_64/PKGBUILD
(from rev 198843, kdeedu-analitza/trunk/PKGBUILD)
Deleted:
  kdeedu-analitza/repos/extra-i686/PKGBUILD
  kdeedu-analitza/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-11-05 19:48:13 UTC (rev 198843)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:24 UTC (rev 198844)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-analitza
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A library to add mathematical features to your program
-url=https://projects.kde.org/projects/kde/kdeedu/analitza;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
-sha1sums=('f1b63cf72dc4ffa67ed96c1d073dda2dccf58e67')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../analitza-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-analitza/repos/extra-i686/PKGBUILD (from rev 198843, 
kdeedu-analitza/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-11-05 19:48:24 UTC (rev 198844)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-analitza
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A library to add mathematical features to your program
+url=https://projects.kde.org/projects/kde/kdeedu/analitza;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
+sha1sums=('525844959de2c21888496eb5aaf5b7996ccf823e')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../analitza-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-11-05 19:48:13 UTC (rev 198843)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:24 UTC (rev 198844)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-analitza
-pkgver=4.11.2
-pkgrel=1
-pkgdesc=A library to add mathematical features to your program
-url=https://projects.kde.org/projects/kde/kdeedu/analitza;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
-sha1sums=('f1b63cf72dc4ffa67ed96c1d073dda2dccf58e67')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../analitza-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-analitza/repos/extra-x86_64/PKGBUILD (from rev 198843, 
kdeedu-analitza/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-11-05 19:48:24 UTC (rev 198844)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-analitza
+pkgver=4.11.3
+pkgrel=1
+pkgdesc=A library to add mathematical features to your program
+url=https://projects.kde.org/projects/kde/kdeedu/analitza;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
+sha1sums=('525844959de2c21888496eb5aaf5b7996ccf823e')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../analitza-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



  1   2   3   >