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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 07:52:50
  Author: jlichtblau
Revision: 119912

kde4 translation rebuild: kdesvn 1.6.0-3

Modified:
  kdesvn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 05:40:50 UTC (rev 119911)
+++ PKGBUILD2014-10-01 05:52:50 UTC (rev 119912)
@@ -3,7 +3,7 @@
 
 pkgname=kdesvn
 pkgver=1.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc=A pure C++ SVN-client for KDE
 arch=('i686' 'x86_64')
 url=http://kdesvn.alwins-world.de/;
@@ -10,7 +10,6 @@
 license=('GPL')
 depends=('kdebase-runtime' 'subversion')
 makedepends=('automoc4' 'cmake' 'patch')
-conflicts=('qsvn')
 install=$pkgname.install
 changelog=$pkgname.changelog
 
source=(https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.bz2)
@@ -17,7 +16,7 @@
 sha256sums=('05686f246b76810f90a9f80f1d45cdccf812b42e18fa10a16b14e7d27d370f96')
 
 build() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd ${srcdir}/$pkgname-$pkgver
 
   cmake . \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -29,13 +28,13 @@
 }
 
 package() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd ${srcdir}/$pkgname-$pkgver
 
-  make DESTDIR=${pkgdir} install
+  make DESTDIR=${pkgdir} install
 
 #removing conflicting files - kdesdk
-  rm -f ${pkgdir}/usr/share/kde4/services/svn*
+  rm -f ${pkgdir}/usr/share/kde4/services/svn*
 
 #removing $srcdir reference
-  rm -rf ${pkgdir}/usr/share/doc
+  rm -rf ${pkgdir}/usr/share/doc
 }


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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 07:53:10
  Author: jlichtblau
Revision: 119913

archrelease: copy trunk to community-staging-x86_64

Added:
  kdesvn/repos/community-staging-x86_64/
  kdesvn/repos/community-staging-x86_64/PKGBUILD
(from rev 119912, kdesvn/trunk/PKGBUILD)
  kdesvn/repos/community-staging-x86_64/kdesvn.changelog
(from rev 119912, kdesvn/trunk/kdesvn.changelog)
  kdesvn/repos/community-staging-x86_64/kdesvn.install
(from rev 119912, kdesvn/trunk/kdesvn.install)

--+
 PKGBUILD |   40 
 kdesvn.changelog |   58 +
 kdesvn.install   |   12 ++
 3 files changed, 110 insertions(+)

Copied: kdesvn/repos/community-staging-x86_64/PKGBUILD (from rev 119912, 
kdesvn/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 05:53:10 UTC (rev 119913)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=kdesvn
+pkgver=1.6.0
+pkgrel=3
+pkgdesc=A pure C++ SVN-client for KDE
+arch=('i686' 'x86_64')
+url=http://kdesvn.alwins-world.de/;
+license=('GPL')
+depends=('kdebase-runtime' 'subversion')
+makedepends=('automoc4' 'cmake' 'patch')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.bz2)
+sha256sums=('05686f246b76810f90a9f80f1d45cdccf812b42e18fa10a16b14e7d27d370f96')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_CXX_FLAGS=-DQT_THREAD_SUPPORT \
+-DLIB_SUFFIX=
+
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+#removing conflicting files - kdesdk
+  rm -f ${pkgdir}/usr/share/kde4/services/svn*
+
+#removing $srcdir reference
+  rm -rf ${pkgdir}/usr/share/doc
+}

Copied: kdesvn/repos/community-staging-x86_64/kdesvn.changelog (from rev 
119912, kdesvn/trunk/kdesvn.changelog)
===
--- community-staging-x86_64/kdesvn.changelog   (rev 0)
+++ community-staging-x86_64/kdesvn.changelog   2014-10-01 05:53:10 UTC (rev 
119913)
@@ -0,0 +1,58 @@
+2012-08-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.6.0-1
+
+2010-09-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.5
+
+2010-04-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.3
+
+2010-01-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.1
+
+2010-01-11 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.0
+
+2009-10-01 Biru Ionut io...@archlinux.ro
+   * Update to major release 1.4.1
+
+2009-07-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.3.2
+
+2009-05-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.3.1
+
+2009-05-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * FS#14602 fixed in 1.3.0-2
+
+2009-04-30 Biru Ionut biru.io...@gmail.com
+   * rebuild for x86_64 #FS14506 
+
+2009-04-22 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.3.0
+
+2009-02-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.4
+
+2009-01-24 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.3
+
+2008-11-22 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.2
+
+2008-10-08  Eric Belanger  e...@archlinux.org
+   * Removed unneede file sourcing
+
+2008-10-04 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Removed conflicting files in 1.2.1-2
+   * The one provided with kdesdk are more complete.
+
+2008-10-03 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.1 - KDE4 version
+
+2008-09-23 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.0.2
+
+2008-08-31 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.0.1
+

Copied: kdesvn/repos/community-staging-x86_64/kdesvn.install (from rev 119912, 
kdesvn/trunk/kdesvn.install)
===
--- community-staging-x86_64/kdesvn.install (rev 0)
+++ community-staging-x86_64/kdesvn.install 2014-10-01 05:53:10 UTC (rev 
119913)
@@ -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
+}


[arch-commits] Commit in cinnamon/trunk (PKGBUILD gnome-3.14.patch)

2014-10-01 Thread Balló György
Date: Wednesday, October 1, 2014 @ 08:07:34
  Author: bgyorgy
Revision: 119914

upgpkg: cinnamon 2.2.16-2

Some fixes for GNOME 3.14

Added:
  cinnamon/trunk/gnome-3.14.patch
Modified:
  cinnamon/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 gnome-3.14.patch |   25 +
 2 files changed, 36 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 05:53:10 UTC (rev 119913)
+++ PKGBUILD2014-10-01 06:07:34 UTC (rev 119914)
@@ -6,15 +6,15 @@
 
 pkgname=cinnamon
 pkgver=2.2.16
-pkgrel=1
+pkgrel=2
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
 url=http://cinnamon.linuxmint.com/;
 license=('GPL2')
 depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
- 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gconf' 'gnome-icon-theme'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring'
- 'librsvg' 'networkmanager' 'muffin' 'python2-dbus' 'python2-pillow'
+ 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
+ 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
+ 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
  'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
  'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
  'network-manager-applet' 'nemo' 'polkit-gnome')
@@ -23,10 +23,12 @@
 install=${pkgname}.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
 calendar-applet-upower-support.patch
-set_wheel.patch)
+set_wheel.patch
+gnome-3.14.patch)
 sha256sums=('1fc0bc1b6dbd071ca61f90c5cac5e41abfddbfa77577bdf3407afd1c1ca04793'
 '9ba15442531537759a78a4ab6d0be55dc2fa84a5157bb3fd912c259bfe24dcd8'
-'3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444')
+'3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444'
+'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058')
 
 prepare() {
   cd ${srcdir}/Cinnamon*
@@ -41,6 +43,9 @@
   # Use wheel group instread of sudo
   patch -Np1 -i ../set_wheel.patch
 
+  # Some fixes for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+
   # Add polkit agent to required components
   sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 files/usr/share/cinnamon-session/sessions/cinnamon*.session
 

Added: gnome-3.14.patch
===
--- gnome-3.14.patch(rev 0)
+++ gnome-3.14.patch2014-10-01 06:07:34 UTC (rev 119914)
@@ -0,0 +1,25 @@
+diff -Naur Cinnamon-2.2.16.orig/data/theme/cinnamon.css 
Cinnamon-2.2.16/data/theme/cinnamon.css
+--- Cinnamon-2.2.16.orig/data/theme/cinnamon.css   2014-08-12 
13:00:36.0 +0200
 Cinnamon-2.2.16/data/theme/cinnamon.css2014-10-01 02:51:45.859630151 
+0200
+@@ -1445,7 +1445,8 @@
+ .applet-icon:hover,
+ .applet-box:hover  .applet-icon {
+   color: #fff;
+-  icon-shadow: white 0px 0px 3px;
++/* Broken with GNOME 3.14 (icon-size is not honoured)
++ *icon-shadow: white 0px 0px 3px;*/
+ }
+ 
+ /* ===
+diff -Naur 
Cinnamon-2.2.16.orig/files/usr/lib/cinnamon-settings/modules/cs_themes.py 
Cinnamon-2.2.16/files/usr/lib/cinnamon-settings/modules/cs_themes.py
+--- Cinnamon-2.2.16.orig/files/usr/lib/cinnamon-settings/modules/cs_themes.py  
2014-08-12 13:00:36.0 +0200
 Cinnamon-2.2.16/files/usr/lib/cinnamon-settings/modules/cs_themes.py   
2014-10-01 02:52:56.897767729 +0200
+@@ -91,7 +91,7 @@
+ 
+ def _load_icon_themes(self):
+ dirs = (/usr/share/icons, os.path.join(os.path.expanduser(~), 
.icons))
+-valid = walk_directories(dirs, lambda d: os.path.isdir(d) and not 
os.path.exists(os.path.join(d, cursors)) and os.path.exists(os.path.join(d, 
index.theme)))
++valid = walk_directories(dirs, lambda d: os.path.isdir(d) and 
os.path.exists(os.path.join(d, index.theme)))
+ valid.sort(lambda a,b: cmp(a.lower(), b.lower()))
+ res = []
+ for i in valid:


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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:12:37
  Author: jlichtblau
Revision: 119918

archrelease: copy trunk to community-staging-i686

Added:
  kdesvn/repos/community-staging-i686/
  kdesvn/repos/community-staging-i686/PKGBUILD
(from rev 119917, kdesvn/trunk/PKGBUILD)
  kdesvn/repos/community-staging-i686/kdesvn.changelog
(from rev 119917, kdesvn/trunk/kdesvn.changelog)
  kdesvn/repos/community-staging-i686/kdesvn.install
(from rev 119917, kdesvn/trunk/kdesvn.install)

--+
 PKGBUILD |   40 
 kdesvn.changelog |   58 +
 kdesvn.install   |   12 ++
 3 files changed, 110 insertions(+)

Copied: kdesvn/repos/community-staging-i686/PKGBUILD (from rev 119917, 
kdesvn/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 06:12:37 UTC (rev 119918)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=kdesvn
+pkgver=1.6.0
+pkgrel=3
+pkgdesc=A pure C++ SVN-client for KDE
+arch=('i686' 'x86_64')
+url=http://kdesvn.alwins-world.de/;
+license=('GPL')
+depends=('kdebase-runtime' 'subversion')
+makedepends=('automoc4' 'cmake' 'patch')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.bz2)
+sha256sums=('05686f246b76810f90a9f80f1d45cdccf812b42e18fa10a16b14e7d27d370f96')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_CXX_FLAGS=-DQT_THREAD_SUPPORT \
+-DLIB_SUFFIX=
+
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+#removing conflicting files - kdesdk
+  rm -f ${pkgdir}/usr/share/kde4/services/svn*
+
+#removing $srcdir reference
+  rm -rf ${pkgdir}/usr/share/doc
+}

Copied: kdesvn/repos/community-staging-i686/kdesvn.changelog (from rev 119917, 
kdesvn/trunk/kdesvn.changelog)
===
--- community-staging-i686/kdesvn.changelog (rev 0)
+++ community-staging-i686/kdesvn.changelog 2014-10-01 06:12:37 UTC (rev 
119918)
@@ -0,0 +1,58 @@
+2012-08-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.6.0-1
+
+2010-09-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.5
+
+2010-04-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.3
+
+2010-01-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.1
+
+2010-01-11 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.5.0
+
+2009-10-01 Biru Ionut io...@archlinux.ro
+   * Update to major release 1.4.1
+
+2009-07-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.3.2
+
+2009-05-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.3.1
+
+2009-05-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * FS#14602 fixed in 1.3.0-2
+
+2009-04-30 Biru Ionut biru.io...@gmail.com
+   * rebuild for x86_64 #FS14506 
+
+2009-04-22 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.3.0
+
+2009-02-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.4
+
+2009-01-24 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.3
+
+2008-11-22 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.2
+
+2008-10-08  Eric Belanger  e...@archlinux.org
+   * Removed unneede file sourcing
+
+2008-10-04 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Removed conflicting files in 1.2.1-2
+   * The one provided with kdesdk are more complete.
+
+2008-10-03 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.2.1 - KDE4 version
+
+2008-09-23 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.0.2
+
+2008-08-31 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 1.0.1
+

Copied: kdesvn/repos/community-staging-i686/kdesvn.install (from rev 119917, 
kdesvn/trunk/kdesvn.install)
===
--- community-staging-i686/kdesvn.install   (rev 0)
+++ community-staging-i686/kdesvn.install   2014-10-01 06:12:37 UTC (rev 
119918)
@@ -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
+}


[arch-commits] Commit in josm/trunk (PKGBUILD josm.changelog)

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:13:55
  Author: jlichtblau
Revision: 119919

upgpkg: josm 7588-1

Modified:
  josm/trunk/PKGBUILD
  josm/trunk/josm.changelog

+
 PKGBUILD   |4 ++--
 josm.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 06:12:37 UTC (rev 119918)
+++ PKGBUILD2014-10-01 06:13:55 UTC (rev 119919)
@@ -3,7 +3,7 @@
 # Contributor: Michele Schäuble mschaeu...@swissonline.ch
 
 pkgname=josm
-pkgver=7480
+pkgver=7588
 pkgrel=1
 pkgdesc=An editor for OpenStreetMap written in Java
 arch=('any')
@@ -15,7 +15,7 @@
 source=(http://josm.openstreetmap.de/$pkgname-tested.jar \
 $pkgname.desktop \
 $pkgname.conf.d)
-sha256sums=('ef0736c38ea1509424861ee1e0aa3de800701fc73acdda2794d36a4b70626eda'
+sha256sums=('25902132dfe1422687a735a218b1eace2f0358b0757146bb6370968f68f213cb'
 'edfb2cbf2aa7e6582b4d43cd402ea58be7990702e5c3ff7afdc518c28ca9'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 

Modified: josm.changelog
===
--- josm.changelog  2014-10-01 06:12:37 UTC (rev 119918)
+++ josm.changelog  2014-10-01 06:13:55 UTC (rev 119919)
@@ -1,3 +1,6 @@
+2014-10-01 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * josm 7588-1
+
 2014-09-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
* josm 7480-1
 


[arch-commits] Commit in cinnamon-desktop/trunk (PKGBUILD gnome-3.14.patch)

2014-10-01 Thread Balló György
Date: Wednesday, October 1, 2014 @ 08:08:51
  Author: bgyorgy
Revision: 119916

upgpkg: cinnamon-desktop 2.2.3-2

Update configuration for GNOME 3.14

Added:
  cinnamon-desktop/trunk/gnome-3.14.patch
Modified:
  cinnamon-desktop/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 gnome-3.14.patch |   24 
 2 files changed, 36 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 06:07:45 UTC (rev 119915)
+++ PKGBUILD2014-10-01 06:08:51 UTC (rev 119916)
@@ -4,17 +4,25 @@
 
 pkgname=cinnamon-desktop
 pkgver=2.2.3
-pkgrel=1
+pkgrel=2
 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)
+makedepends=(intltool gobject-introspection gnome-common python2)
 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=('0950bdee8671e4693bfd375f01a25fb8ef5d38d246338600083cd181400619d8')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
+gnome-3.14.patch)
+sha256sums=('0950bdee8671e4693bfd375f01a25fb8ef5d38d246338600083cd181400619d8'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \

Added: gnome-3.14.patch
===
--- gnome-3.14.patch(rev 0)
+++ gnome-3.14.patch2014-10-01 06:08:51 UTC (rev 119916)
@@ -0,0 +1,24 @@
+diff -Naur 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
 
cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
+--- 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
  2014-10-01 03:54:35.830124486 +
 
cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
   2014-10-01 03:58:31.959359594 +
+@@ -10,7 +10,7 @@
+   /_description
+ /key
+ key name=picture-uri type=s
+-  
default'file://@datadir@/themes/Adwaita/backgrounds/adwaita-timed.xml'/default
++  
default'file://@datadir@/backgrounds/gnome/adwaita-timed.xml'/default
+   _summaryPicture URI/_summary
+   _description
+ URI to use for the background image. Not that the backend only 
supports
+diff -Naur 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.interface.gschema.xml.in.in
 cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.interface.gschema.xml.in.in
+--- 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.interface.gschema.xml.in.in
   2014-10-01 03:54:35.830124486 +
 
cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.interface.gschema.xml.in.in 
   2014-10-01 03:58:35.266015393 +
+@@ -97,7 +97,7 @@
+   /_description
+ /key
+ key name=icon-theme type=s
+-  default'gnome'/default
++  default'Adwaita'/default
+   _summaryIcon Theme/_summary
+   _description
+ Icon theme to use for the panel, nautilus etc.


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

2014-10-01 Thread Balló György
Date: Wednesday, October 1, 2014 @ 08:08:58
  Author: bgyorgy
Revision: 119917

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

Added:
  cinnamon-desktop/repos/community-testing-i686/
  cinnamon-desktop/repos/community-testing-i686/PKGBUILD
(from rev 119916, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-testing-i686/cinnamon-desktop.install
(from rev 119916, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-testing-i686/gnome-3.14.patch
(from rev 119916, cinnamon-desktop/trunk/gnome-3.14.patch)
  cinnamon-desktop/repos/community-testing-x86_64/
  cinnamon-desktop/repos/community-testing-x86_64/PKGBUILD
(from rev 119916, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-testing-x86_64/cinnamon-desktop.install
(from rev 119916, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-testing-x86_64/gnome-3.14.patch
(from rev 119916, cinnamon-desktop/trunk/gnome-3.14.patch)

---+
 community-testing-i686/PKGBUILD   |   36 
 community-testing-i686/cinnamon-desktop.install   |   11 ++
 community-testing-i686/gnome-3.14.patch   |   24 +
 community-testing-x86_64/PKGBUILD |   36 
 community-testing-x86_64/cinnamon-desktop.install |   11 ++
 community-testing-x86_64/gnome-3.14.patch |   24 +
 6 files changed, 142 insertions(+)

Copied: cinnamon-desktop/repos/community-testing-i686/PKGBUILD (from rev 
119916, cinnamon-desktop/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-10-01 06:08:58 UTC (rev 119917)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.2.3
+pkgrel=2
+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 python2)
+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;
+gnome-3.14.patch)
+sha256sums=('0950bdee8671e4693bfd375f01a25fb8ef5d38d246338600083cd181400619d8'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+}
+
+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-testing-i686/cinnamon-desktop.install 
(from rev 119916, cinnamon-desktop/trunk/cinnamon-desktop.install)
===
--- community-testing-i686/cinnamon-desktop.install 
(rev 0)
+++ community-testing-i686/cinnamon-desktop.install 2014-10-01 06:08:58 UTC 
(rev 119917)
@@ -0,0 +1,11 @@
+post_install() {
+   glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: cinnamon-desktop/repos/community-testing-i686/gnome-3.14.patch (from 
rev 119916, cinnamon-desktop/trunk/gnome-3.14.patch)
===
--- community-testing-i686/gnome-3.14.patch (rev 0)
+++ community-testing-i686/gnome-3.14.patch 2014-10-01 06:08:58 UTC (rev 
119917)
@@ -0,0 +1,24 @@
+diff -Naur 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
 
cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
+--- 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
  2014-10-01 03:54:35.830124486 +
 
cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
   2014-10-01 03:58:31.959359594 +
+@@ -10,7 +10,7 @@
+   /_description
+ /key
+ key name=picture-uri type=s
+-  
default'file://@datadir@/themes/Adwaita/backgrounds/adwaita-timed.xml'/default
++  
default'file://@datadir@/backgrounds/gnome/adwaita-timed.xml'/default
+   _summaryPicture URI/_summary
+   _description
+ URI to use for the background image. Not that the backend only 
supports
+diff -Naur 
cinnamon-desktop-2.2.3.orig/schemas/org.cinnamon.desktop.interface.gschema.xml.in.in
 cinnamon-desktop-2.2.3/schemas/org.cinnamon.desktop.interface.gschema.xml.in.in
+--- 

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

2014-10-01 Thread Balló György
Date: Wednesday, October 1, 2014 @ 08:07:45
  Author: bgyorgy
Revision: 119915

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

Added:
  cinnamon/repos/community-testing-i686/
  cinnamon/repos/community-testing-i686/PKGBUILD
(from rev 119914, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-testing-i686/calendar-applet-upower-support.patch
(from rev 119914, cinnamon/trunk/calendar-applet-upower-support.patch)
  cinnamon/repos/community-testing-i686/cinnamon.install
(from rev 119914, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-testing-i686/gnome-3.14.patch
(from rev 119914, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-testing-i686/set_wheel.patch
(from rev 119914, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-testing-x86_64/
  cinnamon/repos/community-testing-x86_64/PKGBUILD
(from rev 119914, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-testing-x86_64/calendar-applet-upower-support.patch
(from rev 119914, cinnamon/trunk/calendar-applet-upower-support.patch)
  cinnamon/repos/community-testing-x86_64/cinnamon.install
(from rev 119914, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-testing-x86_64/gnome-3.14.patch
(from rev 119914, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-testing-x86_64/set_wheel.patch
(from rev 119914, cinnamon/trunk/set_wheel.patch)

---+
 community-testing-i686/PKGBUILD   |   83 ++
 community-testing-i686/calendar-applet-upower-support.patch   |   17 ++
 community-testing-i686/cinnamon.install   |   12 +
 community-testing-i686/gnome-3.14.patch   |   25 +++
 community-testing-i686/set_wheel.patch|   53 ++
 community-testing-x86_64/PKGBUILD |   83 ++
 community-testing-x86_64/calendar-applet-upower-support.patch |   17 ++
 community-testing-x86_64/cinnamon.install |   12 +
 community-testing-x86_64/gnome-3.14.patch |   25 +++
 community-testing-x86_64/set_wheel.patch  |   53 ++
 10 files changed, 380 insertions(+)

Copied: cinnamon/repos/community-testing-i686/PKGBUILD (from rev 119914, 
cinnamon/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-10-01 06:07:45 UTC (rev 119915)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: M0Rf30
+# Contributor: unifiedlinux
+# Contributor: CReimer
+
+pkgname=cinnamon
+pkgver=2.2.16
+pkgrel=2
+pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
+arch=('i686' 'x86_64')
+url=http://cinnamon.linuxmint.com/;
+license=('GPL2')
+depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
+ 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
+ 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
+ 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
+ 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
+ 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
+ 'network-manager-applet' 'nemo' 'polkit-gnome')
+makedepends=('gnome-common' 'intltool')
+options=('!emptydirs')
+install=${pkgname}.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
+calendar-applet-upower-support.patch
+set_wheel.patch
+gnome-3.14.patch)
+sha256sums=('1fc0bc1b6dbd071ca61f90c5cac5e41abfddbfa77577bdf3407afd1c1ca04793'
+'9ba15442531537759a78a4ab6d0be55dc2fa84a5157bb3fd912c259bfe24dcd8'
+'3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444'
+'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058')
+
+prepare() {
+  cd ${srcdir}/Cinnamon*
+
+  # Python2 fix
+  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Fix calendar applet with upower 0.99
+  patch -Np1 -i ../calendar-applet-upower-support.patch
+
+  # Use wheel group instread of sudo
+  patch -Np1 -i ../set_wheel.patch
+
+  # Some fixes for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+
+  # Add polkit agent to required components
+  sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 files/usr/share/cinnamon-session/sessions/cinnamon*.session
+
+  # Fix for the python2 PAM module  
+  sed -i 's:import PAM:import pam:' 
files/usr/lib/cinnamon-settings/modules/cs_user.py
+
+  # Use pkexec instead of gksu
+ 

[arch-commits] Commit in josm/repos/community-any (8 files)

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:14:10
  Author: jlichtblau
Revision: 119920

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 119919, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 119919, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 119919, josm/trunk/josm.conf.d)
  josm/repos/community-any/josm.desktop
(from rev 119919, josm/trunk/josm.desktop)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d
  josm/repos/community-any/josm.desktop

+
 PKGBUILD   |   92 +--
 josm.changelog |  261 +++
 josm.conf.d|8 -
 josm.desktop   |   16 +--
 4 files changed, 190 insertions(+), 187 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 06:13:55 UTC (rev 119919)
+++ PKGBUILD2014-10-01 06:14:10 UTC (rev 119920)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Michele Schäuble mschaeu...@swissonline.ch
-
-pkgname=josm
-pkgver=7480
-pkgrel=1
-pkgdesc=An editor for OpenStreetMap written in Java
-arch=('any')
-url=http://josm.openstreetmap.de/;
-license=('GPL')
-depends=('java-runtime')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(http://josm.openstreetmap.de/$pkgname-tested.jar \
-$pkgname.desktop \
-$pkgname.conf.d)
-sha256sums=('ef0736c38ea1509424861ee1e0aa3de800701fc73acdda2794d36a4b70626eda'
-'edfb2cbf2aa7e6582b4d43cd402ea58be7990702e5c3ff7afdc518c28ca9'
-'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
-
-package() {
-  cd ${srcdir}
-  
-  install -D -m644 $pkgname-tested.jar 
${pkgdir}/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
-  install -D -m644 images/logo.png ${pkgdir}/usr/share/pixmaps/$pkgname.png
-
-#executable file
-  install -d ${pkgdir}/usr/bin
-  cat EOF ${pkgdir}/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ]  . /etc/conf.d/josm
-CLASSPATH=/usr/share/java/josm/josm.jar
-java ${JOSM_ARGS} -cp ${CLASSPATH} -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication $@
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 ${pkgdir}/usr/bin/$pkgname
-  install -Dm644 ${srcdir}/$pkgname.conf.d ${pkgdir}/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 119919, josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 06:14:10 UTC (rev 119920)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Michele Schäuble mschaeu...@swissonline.ch
+
+pkgname=josm
+pkgver=7588
+pkgrel=1
+pkgdesc=An editor for OpenStreetMap written in Java
+arch=('any')
+url=http://josm.openstreetmap.de/;
+license=('GPL')
+depends=('java-runtime')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(http://josm.openstreetmap.de/$pkgname-tested.jar \
+$pkgname.desktop \
+$pkgname.conf.d)
+sha256sums=('25902132dfe1422687a735a218b1eace2f0358b0757146bb6370968f68f213cb'
+'edfb2cbf2aa7e6582b4d43cd402ea58be7990702e5c3ff7afdc518c28ca9'
+'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+package() {
+  cd ${srcdir}
+  
+  install -D -m644 $pkgname-tested.jar 
${pkgdir}/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+  install -D -m644 images/logo.png ${pkgdir}/usr/share/pixmaps/$pkgname.png
+
+#executable file
+  install -d ${pkgdir}/usr/bin
+  cat EOF ${pkgdir}/usr/bin/$pkgname 
+#!/bin/sh
+# source application-specific settings
+while true; do
+JOSM_ARGS=
+[ -f /etc/conf.d/josm ]  . /etc/conf.d/josm
+CLASSPATH=/usr/share/java/josm/josm.jar
+java ${JOSM_ARGS} -cp ${CLASSPATH} -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication $@
+[ $? -eq 9 ] || break
+done
+EOF
+  chmod 755 ${pkgdir}/usr/bin/$pkgname
+  install -Dm644 ${srcdir}/$pkgname.conf.d ${pkgdir}/etc/conf.d/$pkgname
+}

Deleted: josm.changelog
===
--- josm.changelog  2014-10-01 06:13:55 UTC (rev 119919)
+++ josm.changelog  2014-10-01 06:14:10 UTC (rev 119920)
@@ -1,129 +0,0 @@
-2014-09-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * josm 7480-1
-
-2014-07-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * josm 7347-1
-
-2014-07-05 Jaroslav Lichtblau 

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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:30:05
  Author: jlichtblau
Revision: 119921

kde4 translation rebuild: kmess 2.0.6.2-7

Modified:
  kmess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 06:14:10 UTC (rev 119920)
+++ PKGBUILD2014-10-01 06:30:05 UTC (rev 119921)
@@ -5,7 +5,7 @@
 
 pkgname=kmess
 pkgver=2.0.6.2
-pkgrel=6
+pkgrel=7
 pkgdesc=A MSN Messenger client for Linux
 arch=('i686' 'x86_64')
 url='http://kmess.sourceforge.net/'
@@ -13,8 +13,8 @@
 depends=('kdebase-lib')
 makedepends=('automoc4' 'cmake' 'optipng')
 optdepends=('cabextract: provides winks support')
-install=${pkgname}.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2;
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2
 giflib-5.0.patch
 fix-crash-in-contactlistmodel.patch)
 md5sums=('a2e57911713308bef81b9347135cc5dd'
@@ -24,26 +24,29 @@
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  # Fix invalid PNG images to work with libpng 1.6
+# Fix invalid PNG images to work with libpng 1.6
   find -name '*.png' -exec optipng -quiet -force -fix {} +
 
   patch -Np0 -i ../giflib-5.0.patch
 
-  # Fix crash in ContactListModel (FS#32402)
+# Fix crash in ContactListModel (FS#32402)
   patch -Np1 -i ../fix-crash-in-contactlistmodel.patch
 }
 
 build() {
   cd ${srcdir}
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release
+
   make
 }
 
 package() {
   cd ${srcdir}/build
+
   make DESTDIR=${pkgdir} install
 }


[arch-commits] Commit in kmess/repos (5 files)

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:30:16
  Author: jlichtblau
Revision: 119922

archrelease: copy trunk to community-staging-x86_64

Added:
  kmess/repos/community-staging-x86_64/
  kmess/repos/community-staging-x86_64/PKGBUILD
(from rev 119921, kmess/trunk/PKGBUILD)
  kmess/repos/community-staging-x86_64/fix-crash-in-contactlistmodel.patch
(from rev 119921, kmess/trunk/fix-crash-in-contactlistmodel.patch)
  kmess/repos/community-staging-x86_64/giflib-5.0.patch
(from rev 119921, kmess/trunk/giflib-5.0.patch)
  kmess/repos/community-staging-x86_64/kmess.install
(from rev 119921, kmess/trunk/kmess.install)

-+
 PKGBUILD|   52 ++
 fix-crash-in-contactlistmodel.patch |   29 ++
 giflib-5.0.patch|   95 ++
 kmess.install   |   11 +++
 4 files changed, 187 insertions(+)

Copied: kmess/repos/community-staging-x86_64/PKGBUILD (from rev 119921, 
kmess/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 06:30:16 UTC (rev 119922)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Stefano Zamprogno stefano.zampro...@gmail.com
+
+pkgname=kmess
+pkgver=2.0.6.2
+pkgrel=7
+pkgdesc=A MSN Messenger client for Linux
+arch=('i686' 'x86_64')
+url='http://kmess.sourceforge.net/'
+license=('GPL')
+depends=('kdebase-lib')
+makedepends=('automoc4' 'cmake' 'optipng')
+optdepends=('cabextract: provides winks support')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2
+giflib-5.0.patch
+fix-crash-in-contactlistmodel.patch)
+md5sums=('a2e57911713308bef81b9347135cc5dd'
+ '29f7a0c0e27d6b5cafbc3ad498e3e30f'
+ 'fdfe837f4bd64a5123edc63019bd5cf2')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+# Fix invalid PNG images to work with libpng 1.6
+  find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  patch -Np0 -i ../giflib-5.0.patch
+
+# Fix crash in ContactListModel (FS#32402)
+  patch -Np1 -i ../fix-crash-in-contactlistmodel.patch
+}
+
+build() {
+  cd ${srcdir}
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: 
kmess/repos/community-staging-x86_64/fix-crash-in-contactlistmodel.patch (from 
rev 119921, kmess/trunk/fix-crash-in-contactlistmodel.patch)
===
--- community-staging-x86_64/fix-crash-in-contactlistmodel.patch
(rev 0)
+++ community-staging-x86_64/fix-crash-in-contactlistmodel.patch
2014-10-01 06:30:16 UTC (rev 119922)
@@ -0,0 +1,29 @@
+commit e10ebb8bd33cf807e2edfa56c465b40f3237102e
+Author: Ruben Vandamme ru...@kmess.org
+Date:   Sun Jul 8 10:56:37 2012 +0200
+
+Fix crash in ContactListModel.
+
+* Individually delete every child instead of using qDeleteAll.
+* Crash only happens in combination with Qt 4.8.
+* See https://bugs.kde.org/show_bug.cgi?id=285951 for similar issue in 
Amarok.
+* See https://bugreports.qt-project.org/browse/QTBUG-22037 for Qt report.
+* Many thanks to Bob (badjar on kmess.org/board) for providing the fix.
+
+diff --git a/src/model/contactlistmodelitem.cpp 
b/src/model/contactlistmodelitem.cpp
+index 462d555..ac5a6ca 100644
+--- a/src/model/contactlistmodelitem.cpp
 b/src/model/contactlistmodelitem.cpp
+@@ -79,7 +79,11 @@ ContactListModelItem::ContactListModelItem( Group *group, 
ContactListModelItem *
+  */
+ ContactListModelItem::~ContactListModelItem()
+ {
+-  qDeleteAll( childItems_ );
++  while( !childItems_.isEmpty() )
++  {
++delete childItems_.takeFirst();
++  }
++
+   childItems_.clear();
+ 
+   // Delete this item from the parent's children

Copied: kmess/repos/community-staging-x86_64/giflib-5.0.patch (from rev 119921, 
kmess/trunk/giflib-5.0.patch)
===
--- community-staging-x86_64/giflib-5.0.patch   (rev 0)
+++ community-staging-x86_64/giflib-5.0.patch   2014-10-01 06:30:16 UTC (rev 
119922)
@@ -0,0 +1,95 @@
+--- contrib/isf-qt/src/isfqt.cpp.orig  2014-06-11 13:10:43.137321400 +
 contrib/isf-qt/src/isfqt.cpp   2014-06-11 13:12:23.123474616 +
+@@ -249,7 +249,7 @@
+ qWarning()  Couldn't initialize GIF library!;
+   }
+ 
+-  DGifCloseFile( gifImage );
++  DGifCloseFile( gifImage, NULL );
+   gifData.close();
+ */
+ 
+@@ -484,12 +484,13 @@
+   int width = isfImage.width();
+   int numColors = 0;
+   bool

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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:40:56
  Author: jlichtblau
Revision: 119924

archrelease: copy trunk to community-staging-x86_64

Added:
  kuickshow/repos/community-staging-x86_64/
  kuickshow/repos/community-staging-x86_64/PKGBUILD
(from rev 119923, kuickshow/trunk/PKGBUILD)
  kuickshow/repos/community-staging-x86_64/kuickshow.install
(from rev 119923, kuickshow/trunk/kuickshow.install)

---+
 PKGBUILD  |   35 +++
 kuickshow.install |   12 
 2 files changed, 47 insertions(+)

Copied: kuickshow/repos/community-staging-x86_64/PKGBUILD (from rev 119923, 
kuickshow/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 06:40:56 UTC (rev 119924)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: sxe s...@gmx.de
+
+pkgname=kuickshow
+pkgver=0.9.1
+pkgrel=6
+pkgdesc=A very fast and convenient image viewer
+url=http://userbase.kde.org/KuickShow;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('kdebase-runtime' 'imlib')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
+install=$pkgname.install
+source=(http://hosti.leonde.de/~gis/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('6866128ee3ef3d0dde809cd5b23d2472')
+
+build() {
+  cd ${srcdir}
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: kuickshow/repos/community-staging-x86_64/kuickshow.install (from rev 
119923, kuickshow/trunk/kuickshow.install)
===
--- community-staging-x86_64/kuickshow.install  (rev 0)
+++ community-staging-x86_64/kuickshow.install  2014-10-01 06:40:56 UTC (rev 
119924)
@@ -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
+}


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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:40:46
  Author: jlichtblau
Revision: 119923

kde4 translation rebuild: kuickshow 0.9.1-6

Modified:
  kuickshow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 06:30:16 UTC (rev 119922)
+++ PKGBUILD2014-10-01 06:40:46 UTC (rev 119923)
@@ -5,7 +5,7 @@
 
 pkgname=kuickshow
 pkgver=0.9.1
-pkgrel=5
+pkgrel=6
 pkgdesc=A very fast and convenient image viewer
 url=http://userbase.kde.org/KuickShow;
 arch=('i686' 'x86_64')
@@ -12,21 +12,24 @@
 license=('GPL')
 depends=('kdebase-runtime' 'imlib')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
-install=${pkgname}.install
-source=(http://hosti.leonde.de/~gis/${pkgname}-${pkgver}.tar.bz2;)
+install=$pkgname.install
+source=(http://hosti.leonde.de/~gis/${pkgname}-${pkgver}.tar.bz2)
 md5sums=('6866128ee3ef3d0dde809cd5b23d2472')
 
 build() {
-  cd ${srcdir}
+  cd ${srcdir}
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr
+
   make
 }
 
 package(){
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
 }


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

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:45:34
  Author: jlichtblau
Revision: 119926

archrelease: copy trunk to community-staging-i686

Added:
  kuickshow/repos/community-staging-i686/
  kuickshow/repos/community-staging-i686/PKGBUILD
(from rev 119925, kuickshow/trunk/PKGBUILD)
  kuickshow/repos/community-staging-i686/kuickshow.install
(from rev 119925, kuickshow/trunk/kuickshow.install)

---+
 PKGBUILD  |   35 +++
 kuickshow.install |   12 
 2 files changed, 47 insertions(+)

Copied: kuickshow/repos/community-staging-i686/PKGBUILD (from rev 119925, 
kuickshow/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 06:45:34 UTC (rev 119926)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: sxe s...@gmx.de
+
+pkgname=kuickshow
+pkgver=0.9.1
+pkgrel=6
+pkgdesc=A very fast and convenient image viewer
+url=http://userbase.kde.org/KuickShow;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('kdebase-runtime' 'imlib')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
+install=$pkgname.install
+source=(http://hosti.leonde.de/~gis/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('6866128ee3ef3d0dde809cd5b23d2472')
+
+build() {
+  cd ${srcdir}
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: kuickshow/repos/community-staging-i686/kuickshow.install (from rev 
119925, kuickshow/trunk/kuickshow.install)
===
--- community-staging-i686/kuickshow.install(rev 0)
+++ community-staging-i686/kuickshow.install2014-10-01 06:45:34 UTC (rev 
119926)
@@ -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
+}


[arch-commits] Commit in kmess/repos (5 files)

2014-10-01 Thread Jaroslav Lichtblau
Date: Wednesday, October 1, 2014 @ 08:41:09
  Author: jlichtblau
Revision: 119925

archrelease: copy trunk to community-staging-i686

Added:
  kmess/repos/community-staging-i686/
  kmess/repos/community-staging-i686/PKGBUILD
(from rev 119924, kmess/trunk/PKGBUILD)
  kmess/repos/community-staging-i686/fix-crash-in-contactlistmodel.patch
(from rev 119924, kmess/trunk/fix-crash-in-contactlistmodel.patch)
  kmess/repos/community-staging-i686/giflib-5.0.patch
(from rev 119924, kmess/trunk/giflib-5.0.patch)
  kmess/repos/community-staging-i686/kmess.install
(from rev 119924, kmess/trunk/kmess.install)

-+
 PKGBUILD|   52 ++
 fix-crash-in-contactlistmodel.patch |   29 ++
 giflib-5.0.patch|   95 ++
 kmess.install   |   11 +++
 4 files changed, 187 insertions(+)

Copied: kmess/repos/community-staging-i686/PKGBUILD (from rev 119924, 
kmess/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 06:41:09 UTC (rev 119925)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Stefano Zamprogno stefano.zampro...@gmail.com
+
+pkgname=kmess
+pkgver=2.0.6.2
+pkgrel=7
+pkgdesc=A MSN Messenger client for Linux
+arch=('i686' 'x86_64')
+url='http://kmess.sourceforge.net/'
+license=('GPL')
+depends=('kdebase-lib')
+makedepends=('automoc4' 'cmake' 'optipng')
+optdepends=('cabextract: provides winks support')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.bz2
+giflib-5.0.patch
+fix-crash-in-contactlistmodel.patch)
+md5sums=('a2e57911713308bef81b9347135cc5dd'
+ '29f7a0c0e27d6b5cafbc3ad498e3e30f'
+ 'fdfe837f4bd64a5123edc63019bd5cf2')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+# Fix invalid PNG images to work with libpng 1.6
+  find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  patch -Np0 -i ../giflib-5.0.patch
+
+# Fix crash in ContactListModel (FS#32402)
+  patch -Np1 -i ../fix-crash-in-contactlistmodel.patch
+}
+
+build() {
+  cd ${srcdir}
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Copied: kmess/repos/community-staging-i686/fix-crash-in-contactlistmodel.patch 
(from rev 119924, kmess/trunk/fix-crash-in-contactlistmodel.patch)
===
--- community-staging-i686/fix-crash-in-contactlistmodel.patch  
(rev 0)
+++ community-staging-i686/fix-crash-in-contactlistmodel.patch  2014-10-01 
06:41:09 UTC (rev 119925)
@@ -0,0 +1,29 @@
+commit e10ebb8bd33cf807e2edfa56c465b40f3237102e
+Author: Ruben Vandamme ru...@kmess.org
+Date:   Sun Jul 8 10:56:37 2012 +0200
+
+Fix crash in ContactListModel.
+
+* Individually delete every child instead of using qDeleteAll.
+* Crash only happens in combination with Qt 4.8.
+* See https://bugs.kde.org/show_bug.cgi?id=285951 for similar issue in 
Amarok.
+* See https://bugreports.qt-project.org/browse/QTBUG-22037 for Qt report.
+* Many thanks to Bob (badjar on kmess.org/board) for providing the fix.
+
+diff --git a/src/model/contactlistmodelitem.cpp 
b/src/model/contactlistmodelitem.cpp
+index 462d555..ac5a6ca 100644
+--- a/src/model/contactlistmodelitem.cpp
 b/src/model/contactlistmodelitem.cpp
+@@ -79,7 +79,11 @@ ContactListModelItem::ContactListModelItem( Group *group, 
ContactListModelItem *
+  */
+ ContactListModelItem::~ContactListModelItem()
+ {
+-  qDeleteAll( childItems_ );
++  while( !childItems_.isEmpty() )
++  {
++delete childItems_.takeFirst();
++  }
++
+   childItems_.clear();
+ 
+   // Delete this item from the parent's children

Copied: kmess/repos/community-staging-i686/giflib-5.0.patch (from rev 119924, 
kmess/trunk/giflib-5.0.patch)
===
--- community-staging-i686/giflib-5.0.patch (rev 0)
+++ community-staging-i686/giflib-5.0.patch 2014-10-01 06:41:09 UTC (rev 
119925)
@@ -0,0 +1,95 @@
+--- contrib/isf-qt/src/isfqt.cpp.orig  2014-06-11 13:10:43.137321400 +
 contrib/isf-qt/src/isfqt.cpp   2014-06-11 13:12:23.123474616 +
+@@ -249,7 +249,7 @@
+ qWarning()  Couldn't initialize GIF library!;
+   }
+ 
+-  DGifCloseFile( gifImage );
++  DGifCloseFile( gifImage, NULL );
+   gifData.close();
+ */
+ 
+@@ -484,12 +484,13 @@
+   int width = isfImage.width();
+   int numColors = 0;
+   boolgifError  = true;
++  int 

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

2014-10-01 Thread Bartłomiej Piotrowski
Date: Wednesday, October 1, 2014 @ 10:23:56
  Author: bpiotrowski
Revision: 119927

upgpkg: mpv 0.6.0-1

new upstream release

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 06:45:34 UTC (rev 119926)
+++ PKGBUILD2014-10-01 08:23:56 UTC (rev 119927)
@@ -3,7 +3,7 @@
 # Contributor: Eivind Uggedal eiv...@uggedal.com
 
 pkgname=mpv
-pkgver=0.5.4
+pkgver=0.6.0
 pkgrel=1
 pkgdesc='Video player based on MPlayer/mplayer2'
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 options=('!emptydirs' '!buildflags')
 install=mpv.install
 source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('ab784201b48bc38aace349974da2b501')
+md5sums=('ac06561522ac1767cd05987ea85e827c')
 
 prepare() {
   cd $pkgname-$pkgver


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

2014-10-01 Thread Bartłomiej Piotrowski
Date: Wednesday, October 1, 2014 @ 10:24:04
  Author: bpiotrowski
Revision: 119928

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

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

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

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

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

Deleted: community-i686/mpv.install
===
--- community-i686/mpv.install  2014-10-01 08:23:56 UTC (rev 119927)
+++ community-i686/mpv.install  2014-10-01 08:24:04 UTC (rev 119928)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

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

[arch-commits] Commit in python-mysql-connector/trunk (ChangeLog PKGBUILD)

2014-10-01 Thread Evgeniy Alekseev
Date: Wednesday, October 1, 2014 @ 10:55:26
  Author: arcanis
Revision: 119933

upgpkg: python-mysql-connector 2.0.1-1

Modified:
  python-mysql-connector/trunk/ChangeLog
  python-mysql-connector/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2014-10-01 08:37:08 UTC (rev 119932)
+++ ChangeLog   2014-10-01 08:55:26 UTC (rev 119933)
@@ -1,3 +1,6 @@
+2.0.1-1:
+upstream update
+
 1.2.3-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 08:37:08 UTC (rev 119932)
+++ PKGBUILD2014-10-01 08:55:26 UTC (rev 119933)
@@ -1,11 +1,11 @@
 # $Id$
-# Maintainer: Evgeniy Alekseev arcanis.arch at gmail dot com
+# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
 # Contributor: Raphaël Doursenaud rdoursenaud at free dot fr
 
 pkgbase=python-mysql-connector
 pkgname=('python-mysql-connector' 'python2-mysql-connector')
 _pkgname=mysql-connector-python
-pkgver=1.2.3
+pkgver=2.0.1
 pkgrel=1
 pkgdesc=A standardized database driver for Python platforms and development
 arch=('any')
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('python' 'python2')
 
source=(http://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('63dc50988498fbc520f69a7278b46a2d')
+md5sums=('7d76eeb27b7e0beff10cf12fb3fd0992')
 changelog=ChangeLog
 
 prepare() {


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 10:37:08
  Author: arodseth
Revision: 119932

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

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

-+
 /PKGBUILD   |  346 ++
 /go.install |   44 +
 community-i686/PKGBUILD |  165 
 community-i686/go.install   |   22 --
 community-x86_64/PKGBUILD   |  165 
 community-x86_64/go.install |   22 --
 6 files changed, 390 insertions(+), 374 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 08:36:57 UTC (rev 119931)
+++ community-i686/PKGBUILD 2014-10-01 08:37:08 UTC (rev 119932)
@@ -1,165 +0,0 @@
-# $Id$
-# Maintainer: Vesa Kaihlavirta ve...@iki.fi
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Rémy Oudompheng  r...@archlinux.org
-# Contributor: Andres Perera andres87p gmail
-# Contributor: Matthew Bauer mjbaue...@gmail.com
-# Contributor: Christian Himpel chres...@gmail.com
-# Contributor: Mike Rosset mike.ros...@gmail.com
-# Contributor: Daniel YC Lin dlin...@gmail.com
-# Contributor: John Luebs jklu...@gmail.com
-
-pkgname=go
-epoch=2
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='Compiler and tools for the Go programming language from Google'
-arch=('x86_64' 'i686')
-url='http://golang.org/'
-license=('BSD')
-depends=('perl' 'gawk')
-makedepends=('inetutils' 'mercurial')
-options=('!strip' 'staticlibs')
-optdepends=('mercurial: for fetching sources from mercurial repositories'
-'git: for fetching sources from git repositories'
-'bzr: for fetching sources from bazaar repositories'
-'subversion: for fetching sources from subversion repositories')
-install=$pkgname.install
-source=($pkgname-$pkgver::hg+https://code.google.com/p/$pkgname#tag=$pkgname$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname-$pkgver/src
-
-  export GOROOT=$srcdir/$pkgname-$pkgver
-  export GOBIN=$GOROOT/bin
-  export GOPATH=$srcdir/
-  export GOROOT_FINAL=/usr/lib/go
-
-  #
-  # Arch Linux doesn't support SSE2 for i686 (because of older i686 CPUs)
-  # The SSE2 version is _a lot_ faster for i686.
-  #
-  # This line selects the slow and compatible version.
-  export GO386=387
-
-  # Enable ARM crosscompilation for linux
-  export GOOS=linux
-  export GOARCH=arm
-
-  bash make.bash
-
-  # Crosscompilation for various platforms (including linux)
-  for os in linux; do # darwin freebsd windows; do
-for arch in amd64 386; do
-  export GOOS=$os
-  export GOARCH=$arch
-  bash make.bash --no-clean
-done
-  done
-
-  GOOS=linux
-  case $CARCH in
-x86_64) GOARCH=amd64 ;;
-i686) GOARCH=386 ;;
-  esac
-
-  $GOROOT/bin/go get -d code.google.com/p/go.tools/cmd/godoc
-  $GOROOT/bin/go build -o $srcdir/godoc code.google.com/p/go.tools/cmd/godoc
-  for tool in vet cover; do
-$GOROOT/bin/go get -d code.google.com/p/go.tools/cmd/${tool}
-$GOROOT/bin/go build -o $GOROOT/pkg/tool/${GOOS}_${GOARCH}/${tool} 
code.google.com/p/go.tools/cmd/${tool}
-  done
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  export GO386=387
-
-  export GOOS=linux
-  if [ $CARCH == 'x86_64' ]; then
-export GOARCH=amd64
-  elif [ $CARCH == 'i686' ]; then
-export GOARCH=386
-  fi
-
-  export GOROOT=$srcdir/$pkgname-$pkgver
-  export GOBIN=$GOROOT/bin
-  export PATH=$srcdir/$pkgname-$pkgver/bin:$PATH
-
-  # TestSimpleMulticastListener will fail in standard chroot
-  cd src  bash run.bash --no-rebuild || true
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  export GOROOT=$srcdir/$pkgname-$pkgver
-  export GOBIN=$GOROOT/bin
-
-  install -Dm755 $srcdir/godoc $pkgdir/usr/bin/godoc
-
-  install -Dm644 LICENSE \
-$pkgdir/usr/share/licenses/go/LICENSE
-  install -Dm644 misc/bash/go \
-$pkgdir/usr/share/bash-completion/completions/go
-  install -Dm644 misc/emacs/go-mode-load.el \
-$pkgdir/usr/share/emacs/site-lisp/go-mode-load.el
-  install -Dm644 misc/emacs/go-mode.el \
-$pkgdir/usr/share/emacs/site-lisp/go-mode.el
-  install -Dm644 misc/zsh/go \
-$pkgdir/usr/share/zsh/site-functions/_go
-
-  for f in ftdetect/gofiletype.vim autoload/go/complete.vim indent/go.vim \
-ftplugin/go/fmt.vim ftplugin/go/import.vim syntax/go.vim syntax/godoc.vim \
-plugin/godoc.vim;
-  do
-install -Dm644 misc/vim/$f $pkgdir/usr/share/vim/vimfiles/$f
-  done
-
-  mkdir -p \
-

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

2014-10-01 Thread Bartłomiej Piotrowski
Date: Wednesday, October 1, 2014 @ 10:29:12
  Author: bpiotrowski
Revision: 119929

upgpkg: mupdf 1.6-1

new upstream release

Modified:
  mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 08:24:04 UTC (rev 119928)
+++ PKGBUILD2014-10-01 08:29:12 UTC (rev 119929)
@@ -6,8 +6,8 @@
 # Contributor: xduugu
 
 pkgname=mupdf
-pkgver=1.5
-pkgrel=2
+pkgver=1.6
+pkgrel=1
 pkgdesc='Lightweight PDF and XPS viewer'
 arch=('i686' 'x86_64')
 url='http://mupdf.com'
@@ -20,7 +20,7 @@
 mupdf.desktop
 mupdf.xpm
 mupdf-1.5-openjpeg-2.1.0.patch)
-md5sums=('89bd4ddc74c266062ebf2702741bb173'
+md5sums=('8d69db41ae9e0b6807b76bb6ed70dc2f'
  '39b54f82a763aac54e352315a0ee9037'
  'f3f35e7320bafde331250de1c99186a1'
  '8e71587ad9b86e10c9144618ab43149b')


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

2014-10-01 Thread Bartłomiej Piotrowski
Date: Wednesday, October 1, 2014 @ 10:29:24
  Author: bpiotrowski
Revision: 119930

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

Added:
  mupdf/repos/community-i686/PKGBUILD
(from rev 119929, mupdf/trunk/PKGBUILD)
  mupdf/repos/community-i686/mupdf-1.5-openjpeg-2.1.0.patch
(from rev 119929, mupdf/trunk/mupdf-1.5-openjpeg-2.1.0.patch)
  mupdf/repos/community-i686/mupdf.desktop
(from rev 119929, mupdf/trunk/mupdf.desktop)
  mupdf/repos/community-i686/mupdf.install
(from rev 119929, mupdf/trunk/mupdf.install)
  mupdf/repos/community-i686/mupdf.xpm
(from rev 119929, mupdf/trunk/mupdf.xpm)
  mupdf/repos/community-x86_64/PKGBUILD
(from rev 119929, mupdf/trunk/PKGBUILD)
  mupdf/repos/community-x86_64/mupdf-1.5-openjpeg-2.1.0.patch
(from rev 119929, mupdf/trunk/mupdf-1.5-openjpeg-2.1.0.patch)
  mupdf/repos/community-x86_64/mupdf.desktop
(from rev 119929, mupdf/trunk/mupdf.desktop)
  mupdf/repos/community-x86_64/mupdf.install
(from rev 119929, mupdf/trunk/mupdf.install)
  mupdf/repos/community-x86_64/mupdf.xpm
(from rev 119929, mupdf/trunk/mupdf.xpm)
Deleted:
  mupdf/repos/community-i686/PKGBUILD
  mupdf/repos/community-i686/mupdf-1.5-openjpeg-2.1.0.patch
  mupdf/repos/community-i686/mupdf.desktop
  mupdf/repos/community-i686/mupdf.install
  mupdf/repos/community-i686/mupdf.xpm
  mupdf/repos/community-x86_64/PKGBUILD
  mupdf/repos/community-x86_64/mupdf-1.5-openjpeg-2.1.0.patch
  mupdf/repos/community-x86_64/mupdf.desktop
  mupdf/repos/community-x86_64/mupdf.install
  mupdf/repos/community-x86_64/mupdf.xpm

-+
 /PKGBUILD   |  110 ++
 /mupdf-1.5-openjpeg-2.1.0.patch |   26 +
 /mupdf.desktop  |   30 ++
 /mupdf.install  |   24 
 community-i686/PKGBUILD |   55 ---
 community-i686/mupdf-1.5-openjpeg-2.1.0.patch   |   13 --
 community-i686/mupdf.desktop|   15 ---
 community-i686/mupdf.install|   12 --
 community-x86_64/PKGBUILD   |   55 ---
 community-x86_64/mupdf-1.5-openjpeg-2.1.0.patch |   13 --
 community-x86_64/mupdf.desktop  |   15 ---
 community-x86_64/mupdf.install  |   12 --
 12 files changed, 190 insertions(+), 190 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 08:29:12 UTC (rev 119929)
+++ community-i686/PKGBUILD 2014-10-01 08:29:24 UTC (rev 119930)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-# Contributor: Pierre-Paul Paquin pierrepaulpaq...@gmail.com
-# Contributor: xduugu
-
-pkgname=mupdf
-pkgver=1.5
-pkgrel=2
-pkgdesc='Lightweight PDF and XPS viewer'
-arch=('i686' 'x86_64')
-url='http://mupdf.com'
-license=('GPL3')
-depends=('curl' 'desktop-file-utils' 'freetype2' 'jbig2dec' 'libjpeg' 'libxext'
- 'openssl' 'openjpeg2')
-install=mupdf.install
-options=('staticlibs')
-source=(http://mupdf.com/downloads/mupdf-$pkgver-source.tar.gz
-mupdf.desktop
-mupdf.xpm
-mupdf-1.5-openjpeg-2.1.0.patch)
-md5sums=('89bd4ddc74c266062ebf2702741bb173'
- '39b54f82a763aac54e352315a0ee9037'
- 'f3f35e7320bafde331250de1c99186a1'
- '8e71587ad9b86e10c9144618ab43149b')
-
-prepare() {
-  cd $pkgname-$pkgver-source
-  rm -rf thirdparty/{curl,freetype,jpeg,zlib,jbig2dec,openjpeg}
-  patch -p1 -i ../mupdf-1.5-openjpeg-2.1.0.patch
-}
-
-build() {
-  CFLAGS+=' -fPIC'
-  CXXFLAGS+=' -fPIC'
-
-  cd $pkgname-$pkgver-source
-  make build=release CURL_LIBS='-lcurl -lpthread'
-}
-
-package() {
-  cd $pkgname-$pkgver-source
-  make build=release prefix=$pkgdir/usr install
-  install -Dm644 build/release/libmujs.a $pkgdir/usr/lib
-
-  mv $pkgdir/usr/bin/mupdf-x11-curl $pkgdir/usr/bin/mupdf
-  rm $pkgdir/usr/bin/mupdf-x11
-
-  install -Dm644 ../mupdf.desktop 
$pkgdir/usr/share/applications/mupdf.desktop
-  install -Dm644 ../mupdf.xpm $pkgdir/usr/share/pixmaps/mupdf.xpm
-
-  find $pkgdir/usr/include $pkgdir/usr/share $pkgdir/usr/lib \
--type f -exec chmod -v 0644 {} +
-}

Copied: mupdf/repos/community-i686/PKGBUILD (from rev 119929, 
mupdf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 08:29:24 UTC (rev 119930)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Brad Fanella bradfane...@archlinux.us
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Pierre-Paul Paquin pierrepaulpaq...@gmail.com
+# Contributor: xduugu
+

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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 10:36:57
  Author: arodseth
Revision: 119931

upgpkg: go 2:1.3.2-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 08:29:24 UTC (rev 119930)
+++ PKGBUILD2014-10-01 08:36:57 UTC (rev 119931)
@@ -11,8 +11,8 @@
 
 pkgname=go
 epoch=2
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.3.2
+pkgrel=1
 pkgdesc='Compiler and tools for the Go programming language from Google'
 arch=('x86_64' 'i686')
 url='http://golang.org/'
@@ -37,11 +37,19 @@
   export GOROOT_FINAL=/usr/lib/go
 
   #
-  # Arch Linux doesn't support SSE2 for i686 (because of older i686 CPUs)
-  # The SSE2 version is _a lot_ faster for i686.
+  # Arch Linux normally does not enable SSE2 for i686 because of older CPUs.
   #
-  # This line selects the slow and compatible version.
-  export GO386=387
+  # However, exceptions are made for:
+  #  * Chromium, which is not expected to be used on older i686 CPUs
+  #  * Julia, which requires SSE2
+  #
+  # Go is so slow that it is unusable on i686 when SSE2 is not enabled, so I am
+  # also making an exception for Go.
+  #
+  # If you really want to build Go without SSE2 support, just uncomment the
+  # following export and rebuild:
+  #
+  # export GO386=387
 
   # Enable ARM crosscompilation for linux
   export GOOS=linux


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

2014-10-01 Thread Evgeniy Alekseev
Date: Wednesday, October 1, 2014 @ 10:56:15
  Author: arcanis
Revision: 119935

upgpkg: geogebra 5.0.9.0-1

Modified:
  geogebra/trunk/ChangeLog
  geogebra/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2014-10-01 08:55:51 UTC (rev 119934)
+++ ChangeLog   2014-10-01 08:56:15 UTC (rev 119935)
@@ -1,3 +1,6 @@
+5.0.9.0-1:
+upstream update
+
 5.0.8.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 08:55:51 UTC (rev 119934)
+++ PKGBUILD2014-10-01 08:56:15 UTC (rev 119935)
@@ -5,7 +5,7 @@
 # Contributor: moostik mooostik at gmail dot com
 
 pkgname=geogebra
-pkgver=5.0.8.0
+pkgver=5.0.9.0
 pkgrel=1
 pkgdesc=Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet
 arch=('any')
@@ -17,7 +17,7 @@
 
source=(http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2
 geogebra)
 install=geogebra.install
-md5sums=('b344c0b069f18d0c054982a1f07f0973'
+md5sums=('cacd87dc5a35d3ba184fa9d719a7d6d2'
  '167a8f9368eb4e27b1f339796f0c091a')
 changelog=ChangeLog
 


[arch-commits] Commit in python-mysql-connector/repos (3 files)

2014-10-01 Thread Evgeniy Alekseev
Date: Wednesday, October 1, 2014 @ 10:55:51
  Author: arcanis
Revision: 119934

archrelease: copy trunk to community-testing-any

Added:
  python-mysql-connector/repos/community-testing-any/
  python-mysql-connector/repos/community-testing-any/ChangeLog
(from rev 119933, python-mysql-connector/trunk/ChangeLog)
  python-mysql-connector/repos/community-testing-any/PKGBUILD
(from rev 119933, python-mysql-connector/trunk/PKGBUILD)

---+
 ChangeLog |8 
 PKGBUILD  |   46 ++
 2 files changed, 54 insertions(+)

Copied: python-mysql-connector/repos/community-testing-any/ChangeLog (from rev 
119933, python-mysql-connector/trunk/ChangeLog)
===
--- community-testing-any/ChangeLog (rev 0)
+++ community-testing-any/ChangeLog 2014-10-01 08:55:51 UTC (rev 119934)
@@ -0,0 +1,8 @@
+2.0.1-1:
+upstream update
+
+1.2.3-1:
+upstream update
+
+1.2.2-1:
+move from AUR into [community]

Copied: python-mysql-connector/repos/community-testing-any/PKGBUILD (from rev 
119933, python-mysql-connector/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2014-10-01 08:55:51 UTC (rev 119934)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
+# Contributor: Raphaël Doursenaud rdoursenaud at free dot fr
+
+pkgbase=python-mysql-connector
+pkgname=('python-mysql-connector' 'python2-mysql-connector')
+_pkgname=mysql-connector-python
+pkgver=2.0.1
+pkgrel=1
+pkgdesc=A standardized database driver for Python platforms and development
+arch=('any')
+url=http://dev.mysql.com/downloads/connector/python/;
+license=('GPL')
+depends=('python' 'python2')
+source=(http://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('7d76eeb27b7e0beff10cf12fb3fd0992')
+changelog=ChangeLog
+
+prepare() {
+  cp -r ${_pkgname}-${pkgver} ${_pkgname}-${pkgver}-py2
+  # change python to python2
+  find ${_pkgname}-${pkgver}-py2 -name '*.py' -type f -exec \
+  sed -i 's|env python|env python2|' {} \;
+}
+
+build() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  python setup.py build
+
+  cd ${srcdir}/${_pkgname}-${pkgver}-py2
+  python2 setup.py build
+}
+
+package_python-mysql-connector() {
+  depends=('python')
+
+  cd ${srcdir}/${_pkgname}-${pkgver}
+  python setup.py install --root=${pkgdir} --optimize=1
+}
+
+package_python2-mysql-connector() {
+  depends=('python2')
+
+  cd ${srcdir}/${_pkgname}-${pkgver}-py2
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}


[arch-commits] Commit in geogebra/repos/community-any (8 files)

2014-10-01 Thread Evgeniy Alekseev
Date: Wednesday, October 1, 2014 @ 10:56:28
  Author: arcanis
Revision: 119936

archrelease: copy trunk to community-any

Added:
  geogebra/repos/community-any/ChangeLog
(from rev 119935, geogebra/trunk/ChangeLog)
  geogebra/repos/community-any/PKGBUILD
(from rev 119935, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-any/geogebra
(from rev 119935, geogebra/trunk/geogebra)
  geogebra/repos/community-any/geogebra.install
(from rev 119935, geogebra/trunk/geogebra.install)
Deleted:
  geogebra/repos/community-any/ChangeLog
  geogebra/repos/community-any/PKGBUILD
  geogebra/repos/community-any/geogebra
  geogebra/repos/community-any/geogebra.install

--+
 ChangeLog|   43 ++-
 PKGBUILD |   82 ++---
 geogebra |   14 -
 geogebra.install |   28 +-
 4 files changed, 85 insertions(+), 82 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2014-10-01 08:56:15 UTC (rev 119935)
+++ ChangeLog   2014-10-01 08:56:28 UTC (rev 119936)
@@ -1,20 +0,0 @@
-5.0.8.0-1:
-upstream update
-
-5.0.7.0-1:
-upstream update
-
-5.0.4.0-1:
-upstream update
-
-4.4.45.0-1:
-upstream update
-
-4.4.44.0-1:
-upstream update
-
-4.4.43.0-1:
-upstream update
-
-4.4.42.0-1:
-upstream update

Copied: geogebra/repos/community-any/ChangeLog (from rev 119935, 
geogebra/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2014-10-01 08:56:28 UTC (rev 119936)
@@ -0,0 +1,23 @@
+5.0.9.0-1:
+upstream update
+
+5.0.8.0-1:
+upstream update
+
+5.0.7.0-1:
+upstream update
+
+5.0.4.0-1:
+upstream update
+
+4.4.45.0-1:
+upstream update
+
+4.4.44.0-1:
+upstream update
+
+4.4.43.0-1:
+upstream update
+
+4.4.42.0-1:
+upstream update

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 08:56:15 UTC (rev 119935)
+++ PKGBUILD2014-10-01 08:56:28 UTC (rev 119936)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
-# Contributor: Bartłomiej Piotrowski bpiotrowski at archlinux dot org
-# Contributor: Felipe Hommen felibank at gmail dot com
-# Contributor: moostik mooostik at gmail dot com
-
-pkgname=geogebra
-pkgver=5.0.8.0
-pkgrel=1
-pkgdesc=Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet
-arch=('any')
-url='http://www.geogebra.org/'
-license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
-depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
- 'shared-mime-info' 'xdg-utils')
-makedepends=('gendesk')
-source=(http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2
-geogebra)
-install=geogebra.install
-md5sums=('b344c0b069f18d0c054982a1f07f0973'
- '167a8f9368eb4e27b1f339796f0c091a')
-changelog=ChangeLog
-
-prepare() {
-  gendesk -f -n --pkgname ${pkgname} --pkgdesc ${pkgdesc} \
-  --name=GeoGebra \
-  --categories=Education;Science;Math \
-  
--mimetypes=application/vnd.geogebra.file;application/vnd.geogebra.tool
-}
-
-package() {
-  cd GeoGebra-Linux-Portable-${pkgver}
-
-  install -Dm755 ${srcdir}/geogebra ${pkgdir}/usr/bin/geogebra
-  install -dm755 ${pkgdir}/usr/share/geogebra
-  install geogebra/* -t ${pkgdir}/usr/share/geogebra/
-
-  install -Dm644 ${srcdir}/geogebra.desktop 
${pkgdir}/usr/share/applications/geogebra.desktop
-  install -Dm644 geogebra.png ${pkgdir}/usr/share/pixmaps/geogebra.png
-}
-

Copied: geogebra/repos/community-any/PKGBUILD (from rev 119935, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 08:56:28 UTC (rev 119936)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
+# Contributor: Bartłomiej Piotrowski bpiotrowski at archlinux dot org
+# Contributor: Felipe Hommen felibank at gmail dot com
+# Contributor: moostik mooostik at gmail dot com
+
+pkgname=geogebra
+pkgver=5.0.9.0
+pkgrel=1
+pkgdesc=Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet
+arch=('any')
+url='http://www.geogebra.org/'
+license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
+depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
+ 'shared-mime-info' 'xdg-utils')
+makedepends=('gendesk')
+source=(http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2
+geogebra)
+install=geogebra.install
+md5sums=('cacd87dc5a35d3ba184fa9d719a7d6d2'
+ '167a8f9368eb4e27b1f339796f0c091a')
+changelog=ChangeLog
+
+prepare() {
+  gendesk -f -n --pkgname ${pkgname} --pkgdesc ${pkgdesc} \
+  --name=GeoGebra \
+  --categories=Education;Science;Math \
+  

[arch-commits] Commit in clojure/repos/community-any (8 files)

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 11:16:21
  Author: arodseth
Revision: 119938

archrelease: copy trunk to community-any

Added:
  clojure/repos/community-any/PKGBUILD
(from rev 119937, clojure/trunk/PKGBUILD)
  clojure/repos/community-any/clj.sh
(from rev 119937, clojure/trunk/clj.sh)
  clojure/repos/community-any/clojure.install
(from rev 119937, clojure/trunk/clojure.install)
  clojure/repos/community-any/clojure.sh
(from rev 119937, clojure/trunk/clojure.sh)
Deleted:
  clojure/repos/community-any/PKGBUILD
  clojure/repos/community-any/clj.sh
  clojure/repos/community-any/clojure.install
  clojure/repos/community-any/clojure.sh

-+
 PKGBUILD|   90 -
 clj.sh  |  276 +++---
 clojure.install |   10 -
 clojure.sh  |2 
 4 files changed, 189 insertions(+), 189 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 09:16:12 UTC (rev 119937)
+++ PKGBUILD2014-10-01 09:16:21 UTC (rev 119938)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Chris O'Donnell christopher.p.odonn...@gmail.com
-# Contributor: Sam May sam@gmail.com
-
-pkgname=clojure
-pkgver=1.6.0
-pkgrel=2
-pkgdesc='LISP for the JVM'
-url='http://clojure.org/'
-arch=('any')
-license=('CPL')
-depends=('java-environment')
-makedepends=('java-environment' 'classpath' 'git' 'maven')
-optdepends=('rlwrap: friendlier shell with readline support')
-install='clojure.install'
-source=($pkgname::git://github.com/clojure/clojure.git#tag=$pkgname-$pkgver
-'clj.sh'
-$pkgname.sh)
-sha256sums=('SKIP'
-'1ef67b23b1df37420a0af7261abc7d168031952fb3b3c44e8de53db0885a1621'
-'b3fa6257dad10fb39851e87563269b80b2473623126595d9c279bbd90e97f052')
-
-build() {
-  cd $pkgname
-
-  mvn package -Dmaven.test.skip=true -Dmaven.repo.local=m2
-}
-
-check() {
-  cd $pkgname
-
-  mvn test -Dmaven.repo.local=m2
-}
-
-package() {
-  install -Dm755 clj.sh $pkgdir/usr/bin/clj
-  install -Dm755 clj.sh $pkgdir/usr/bin/clojure
-  install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
-  install -Dm644 $pkgname/target/$pkgname-$pkgver.jar \
-$pkgdir/usr/share/$pkgname/$pkgname.jar
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clojure/repos/community-any/PKGBUILD (from rev 119937, 
clojure/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 09:16:21 UTC (rev 119938)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Chris O'Donnell christopher.p.odonn...@gmail.com
+# Contributor: Sam May sam@gmail.com
+
+pkgname=clojure
+pkgver=1.6.0
+pkgrel=3
+pkgdesc='LISP for the JVM'
+url='http://clojure.org/'
+arch=('any')
+license=('CPL')
+depends=('java-environment' 'bash')
+makedepends=('java-environment' 'classpath' 'git' 'maven')
+optdepends=('rlwrap: friendlier shell with readline support')
+install='clojure.install'
+source=($pkgname::git://github.com/clojure/clojure.git#tag=$pkgname-$pkgver
+'clj.sh'
+$pkgname.sh)
+sha256sums=('SKIP'
+'2194819fd417174351172d94e3ccff050479401ca883b57d325a349072200bee'
+'b3fa6257dad10fb39851e87563269b80b2473623126595d9c279bbd90e97f052')
+
+build() {
+  cd $pkgname
+
+  mvn package -Dmaven.test.skip=true -Dmaven.repo.local=m2
+}
+
+check() {
+  cd $pkgname
+
+  mvn test -Dmaven.repo.local=m2
+}
+
+package() {
+  install -Dm755 clj.sh $pkgdir/usr/bin/clj
+  install -Dm755 clj.sh $pkgdir/usr/bin/clojure
+  install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
+  install -Dm644 $pkgname/target/$pkgname-$pkgver.jar \
+$pkgdir/usr/share/$pkgname/$pkgname.jar
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: clj.sh
===
--- clj.sh  2014-10-01 09:16:12 UTC (rev 119937)
+++ clj.sh  2014-10-01 09:16:21 UTC (rev 119938)
@@ -1,138 +0,0 @@
-#!/bin/sh
-#
-# A launcher script for Clojure programs. These environment variables can be
-# used to configure the script:
-#
-#   CLOJURE_HOME
-#   The root directory where Clojure is installed.
-#   CLOJURE_JAVA
-#   The name of the java executable used to run Clojure.
-#   CLOJURE_JAVA_OPTS
-#   Additional options to be passed to the java executable.
-#   CLOJURE_CLASSPATH
-#   A path to be added to Clojure's classpath.
-#   CLOJURE_LIBRARY_PATH
-#   A path to be searched for native code such as DLL's or JNI
-#   libraries. This gets added to the Java options as
-#   -Djava.library.path=$CLOJURE_LIBRARY_PATH.
-#   CLOJURE_LIB
-#   This directory, and any jars inside it, will be automatically
-#   added to Clojure's classpath.
-#
-#   CLOJURE_JLINE
-#This 

[arch-commits] Commit in clojure/trunk (PKGBUILD clj.sh clojure.install)

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 11:16:12
  Author: arodseth
Revision: 119937

Now works with dash for /bin/sh

Modified:
  clojure/trunk/PKGBUILD
  clojure/trunk/clj.sh
  clojure/trunk/clojure.install

-+
 PKGBUILD|6 +++---
 clj.sh  |4 ++--
 clojure.install |4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 08:56:28 UTC (rev 119936)
+++ PKGBUILD2014-10-01 09:16:12 UTC (rev 119937)
@@ -6,12 +6,12 @@
 
 pkgname=clojure
 pkgver=1.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc='LISP for the JVM'
 url='http://clojure.org/'
 arch=('any')
 license=('CPL')
-depends=('java-environment')
+depends=('java-environment' 'bash')
 makedepends=('java-environment' 'classpath' 'git' 'maven')
 optdepends=('rlwrap: friendlier shell with readline support')
 install='clojure.install'
@@ -19,7 +19,7 @@
 'clj.sh'
 $pkgname.sh)
 sha256sums=('SKIP'
-'1ef67b23b1df37420a0af7261abc7d168031952fb3b3c44e8de53db0885a1621'
+'2194819fd417174351172d94e3ccff050479401ca883b57d325a349072200bee'
 'b3fa6257dad10fb39851e87563269b80b2473623126595d9c279bbd90e97f052')
 
 build() {

Modified: clj.sh
===
--- clj.sh  2014-10-01 08:56:28 UTC (rev 119936)
+++ clj.sh  2014-10-01 09:16:12 UTC (rev 119937)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
 #
-# A launcher script for Clojure programs. These environment variables can be
+# Launcher script for Clojure programs. These environment variables can be
 # used to configure the script:
 #
 #   CLOJURE_HOME

Modified: clojure.install
===
--- clojure.install 2014-10-01 08:56:28 UTC (rev 119936)
+++ clojure.install 2014-10-01 09:16:12 UTC (rev 119937)
@@ -1,5 +1,5 @@
-## arg 1:  the new package version
 post_install() {
-  echo 'Remember to relogin or source /etc/profile.d/clojure.sh manually'
+  echo 'Relogin or source /etc/profile.d/clojure.sh'
 }
 
+# vim:set ts=2 sw=2 et:


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

2014-10-01 Thread Timothy Redaelli
Date: Wednesday, October 1, 2014 @ 11:16:57
  Author: tredaelli
Revision: 119940

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

Added:
  os-prober/repos/community-i686/PKGBUILD
(from rev 119939, os-prober/trunk/PKGBUILD)
  os-prober/repos/community-i686/os-prober-util-linux-2.24.patch
(from rev 119939, os-prober/trunk/os-prober-util-linux-2.24.patch)
  os-prober/repos/community-x86_64/PKGBUILD
(from rev 119939, os-prober/trunk/PKGBUILD)
  os-prober/repos/community-x86_64/os-prober-util-linux-2.24.patch
(from rev 119939, os-prober/trunk/os-prober-util-linux-2.24.patch)
Deleted:
  os-prober/repos/community-i686/PKGBUILD
  os-prober/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD|  108 +
 community-i686/PKGBUILD  |   44 
 community-i686/os-prober-util-linux-2.24.patch   |   58 +++
 community-x86_64/PKGBUILD|   44 
 community-x86_64/os-prober-util-linux-2.24.patch |   58 +++
 5 files changed, 224 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 09:16:46 UTC (rev 119939)
+++ community-i686/PKGBUILD 2014-10-01 09:16:57 UTC (rev 119940)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: darkcoder mario_v...@hotmail.com
-
-pkgname=os-prober
-pkgver=1.58
-pkgrel=1
-pkgdesc=Utility to detect other OSes on a set of drives
-url=http://joey.kitenet.net/code/os-prober/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('11406f47d9536bccb655456d6d92d111')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # adjust lib dir to allow detection of 64-bit distros
-  sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
-
-  rm -f Makefile
-  make newns
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
-  install -Dm755 os-prober $pkgdir/usr/bin/os-prober
-  install -Dm755 newns $pkgdir/usr/lib/os-prober/newns
-  install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh  
-
-  for dir in os-probes os-probes/mounted os-probes/init linux-boot-probes 
linux-boot-probes/mounted; do
-install -dm755 $pkgdir/usr/lib/$dir
-install -m755 -t $pkgdir/usr/lib/$dir $dir/common/*
-[[ -d $dir/x86 ]]  cp -r $dir/x86/* $pkgdir/usr/lib/$dir
-  done
-
-  install -Dm755 os-probes/mounted/powerpc/20macosx 
$pkgdir/usr/lib/os-probes/mounted/20macosx
-
-  install -dm755 $pkgdir/var/lib/os-prober
-}

Copied: os-prober/repos/community-i686/PKGBUILD (from rev 119939, 
os-prober/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 09:16:57 UTC (rev 119940)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: darkcoder mario_v...@hotmail.com
+
+pkgname=os-prober
+pkgver=1.58
+pkgrel=3
+pkgdesc=Utility to detect other OSes on a set of drives
+url=http://joey.kitenet.net/code/os-prober/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('sh')
+source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz
+   os-prober-util-linux-2.24.patch)
+md5sums=('11406f47d9536bccb655456d6d92d111'
+ 'ce6218a8a0f791b617a79d29d097d7d8')
+sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93'
+'5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
+
+  # adjust lib dir to allow detection of 64-bit distros
+  sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
+
+  rm -f Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make newns
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
+  install -Dm755 os-prober $pkgdir/usr/bin/os-prober
+  install -Dm755 newns $pkgdir/usr/lib/os-prober/newns
+  install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh  
+
+  for dir in os-probes os-probes/mounted os-probes/init linux-boot-probes 
linux-boot-probes/mounted; do
+install -dm755 $pkgdir/usr/lib/$dir
+install -m755 -t $pkgdir/usr/lib/$dir $dir/common/*
+[[ -d $dir/x86 ]]  cp -r $dir/x86/* $pkgdir/usr/lib/$dir
+  done
+
+  install -Dm755 os-probes/mounted/powerpc/20macosx 
$pkgdir/usr/lib/os-probes/mounted/20macosx
+
+  install -dm755 $pkgdir/var/lib/os-prober
+}

Copied: 

[arch-commits] Commit in os-prober/trunk (PKGBUILD os-prober-util-linux-2.24.patch)

2014-10-01 Thread Timothy Redaelli
Date: Wednesday, October 1, 2014 @ 11:16:46
  Author: tredaelli
Revision: 119939

upgpkg: os-prober 1.58-3

FS#38487

Add a patch taken from https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735169

Added:
  os-prober/trunk/os-prober-util-linux-2.24.patch
Modified:
  os-prober/trunk/PKGBUILD

-+
 PKGBUILD|   24 +++
 os-prober-util-linux-2.24.patch |   58 ++
 2 files changed, 75 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 09:16:21 UTC (rev 119938)
+++ PKGBUILD2014-10-01 09:16:46 UTC (rev 119939)
@@ -4,28 +4,38 @@
 
 pkgname=os-prober
 pkgver=1.58
-pkgrel=1
+pkgrel=3
 pkgdesc=Utility to detect other OSes on a set of drives
 url=http://joey.kitenet.net/code/os-prober/;
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('11406f47d9536bccb655456d6d92d111')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93')
+source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz
+   os-prober-util-linux-2.24.patch)
+md5sums=('11406f47d9536bccb655456d6d92d111'
+ 'ce6218a8a0f791b617a79d29d097d7d8')
+sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93'
+'5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
 
-build() {
-  cd $srcdir/$pkgname-$pkgver
+prepare() {
+  cd $pkgname-$pkgver
 
+  patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
+
   # adjust lib dir to allow detection of 64-bit distros
   sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
 
   rm -f Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+
   make newns
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
   install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
   install -Dm755 os-prober $pkgdir/usr/bin/os-prober

Added: os-prober-util-linux-2.24.patch
===
--- os-prober-util-linux-2.24.patch (rev 0)
+++ os-prober-util-linux-2.24.patch 2014-10-01 09:16:46 UTC (rev 119939)
@@ -0,0 +1,58 @@
+--- a/common.sh
 b/common.sh
+@@ -116,6 +116,29 @@ fs_type () {
+   fi
+ }
+ 
++is_dos_extended_partition() {
++  if type blkid /dev/null 21; then
++  local output
++
++  output=$(blkid -o export $1)
++
++  # old blkid (util-linux  2.24) errors out on extended p.
++  if [ $? = 2 ]; then
++  return 0
++  fi
++
++  # dos partition type and no filesystem type?...
++  if echo $output | grep -q ' PTTYPE=dos ' 
++  ! echo $output | grep -q ' TYPE='; then
++  return 0
++  else
++  return 1
++  fi
++  fi
++
++  return 1
++}
++
+ parse_proc_mounts () {
+   while read -r line; do
+   set -f
+--- a/linux-boot-probes/common/50mounted-tests
 b/linux-boot-probes/common/50mounted-tests
+@@ -20,6 +20,10 @@ elif [ $types = ntfs ]; then
+   types='ntfs-3g ntfs'
+   fi
+ elif [ -z $types ]; then
++  if is_dos_extended_partition $partition; then
++  debug $1 looks like an extended dos partition; skipping
++  exit 0
++  fi
+   if type cryptsetup /dev/null 21  \
+  cryptsetup luksDump $partition /dev/null 21; then
+   debug $1 is a LUKS partition; skipping
+--- a/os-probes/common/50mounted-tests
 b/os-probes/common/50mounted-tests
+@@ -20,6 +20,10 @@ elif [ $types = ntfs ]; then
+   types='ntfs-3g ntfs'
+   fi
+ elif [ -z $types ]; then
++  if is_dos_extended_partition $partition; then
++  debug $1 looks like an extended dos partition; skipping
++  exit 0
++  fi
+   if type cryptsetup /dev/null 21  \
+  cryptsetup luksDump $partition /dev/null 21; then
+   debug $1 is a LUKS partition; skipping


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

2014-10-01 Thread Bartłomiej Piotrowski
Date: Wednesday, October 1, 2014 @ 11:40:41
  Author: bpiotrowski
Revision: 223717

upgpkg: scons 2.3.4-1

new upstream release

Modified:
  scons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 02:43:51 UTC (rev 223716)
+++ PKGBUILD2014-10-01 09:40:41 UTC (rev 223717)
@@ -4,10 +4,10 @@
 # Contributor: Lukas Sabota punkrockguy...@comcast.net
 # Contributor: Brice Carpentier br...@dlfp.org
 
-# reminder: scons moving to py3 after 2.3.2
+# reminder: scons moving to py3 after 2.3.4
 
 pkgname=scons
-pkgver=2.3.2
+pkgver=2.3.4
 pkgrel=1
 pkgdesc=Extensible Python-based build utility
 arch=('any')
@@ -15,7 +15,7 @@
 license=('MIT')
 depends=('python2')
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('bbd428da35ec176575a2b0be1f8d7162')
+md5sums=('91fbbb67c2c65b03c746601baac4a6a5')
 
 package() {
   cd $srcdir/$pkgname-$pkgver


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 11:53:04
  Author: fyan
Revision: 119941

addpkg: sl 5.02-3

Added:
  sl/
  sl/repos/
  sl/trunk/
  sl/trunk/PKGBUILD

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

Added: sl/trunk/PKGBUILD
===
--- sl/trunk/PKGBUILD   (rev 0)
+++ sl/trunk/PKGBUILD   2014-10-01 09:53:04 UTC (rev 119941)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Jakub Luzny limot...@gmail.com
+# Contributor: SanskritFritz (gmail)
+
+pkgname=sl
+pkgver=5.02
+pkgrel=3
+pkgdesc='Steam Locomotive runs across your terminal when you type sl as you 
meant to type ls.'
+arch=('i686' 'x86_64' 'arm')
+url=http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
+license=('custom')
+depends=('ncurses')
+source=(https://github.com/mtoyoda/sl/archive/$pkgver.tar.gz;)
+md5sums=('5d5fe203eb19598821647ba8db5dde6c')
+
+build() {
+   cd $srcdir/sl-$pkgver
+
+   cc $CFLAGS -o sl sl.c -lcurses
+   gzip -9 -f sl.1
+}
+
+package() {
+   cd $srcdir/sl-$pkgver
+
+   install -Dm 775 sl $pkgdir/usr/bin/sl
+   install -Dm 644 sl.1.gz $pkgdir/usr/share/man/man1/sl.1.gz
+  install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2014-10-01 Thread Bartłomiej Piotrowski
Date: Wednesday, October 1, 2014 @ 11:40:52
  Author: bpiotrowski
Revision: 223718

archrelease: copy trunk to extra-any

Added:
  scons/repos/extra-any/PKGBUILD
(from rev 223717, scons/trunk/PKGBUILD)
Deleted:
  scons/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 09:40:41 UTC (rev 223717)
+++ PKGBUILD2014-10-01 09:40:52 UTC (rev 223718)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: damir da...@archlinux.org
-# Contributor: Lukas Sabota punkrockguy...@comcast.net
-# Contributor: Brice Carpentier br...@dlfp.org
-
-# reminder: scons moving to py3 after 2.3.2
-
-pkgname=scons
-pkgver=2.3.2
-pkgrel=1
-pkgdesc=Extensible Python-based build utility
-arch=('any')
-url=http://scons.org;
-license=('MIT')
-depends=('python2')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('bbd428da35ec176575a2b0be1f8d7162')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  python2 setup.py install --standard-lib \
-   --prefix=/usr \
-   --install-data=/usr/share \
-   --optimize=1 \
-   --root=$pkgdir
-
-  # fix for python 2.7
-  sed -i 's:^#!.*bin/env python:#!/usr/bin/env python2:' \
-$pkgdir/usr/bin/*
-
-  install -Dm644 LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: scons/repos/extra-any/PKGBUILD (from rev 223717, scons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 09:40:52 UTC (rev 223718)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: damir da...@archlinux.org
+# Contributor: Lukas Sabota punkrockguy...@comcast.net
+# Contributor: Brice Carpentier br...@dlfp.org
+
+# reminder: scons moving to py3 after 2.3.4
+
+pkgname=scons
+pkgver=2.3.4
+pkgrel=1
+pkgdesc=Extensible Python-based build utility
+arch=('any')
+url=http://scons.org;
+license=('MIT')
+depends=('python2')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('91fbbb67c2c65b03c746601baac4a6a5')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python2 setup.py install --standard-lib \
+   --prefix=/usr \
+   --install-data=/usr/share \
+   --optimize=1 \
+   --root=$pkgdir
+
+  # fix for python 2.7
+  sed -i 's:^#!.*bin/env python:#!/usr/bin/env python2:' \
+$pkgdir/usr/bin/*
+
+  install -Dm644 LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 11:53:40
  Author: fyan
Revision: 119942

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

Added:
  sl/repos/community-i686/
  sl/repos/community-i686/PKGBUILD
(from rev 119941, sl/trunk/PKGBUILD)
  sl/repos/community-x86_64/
  sl/repos/community-x86_64/PKGBUILD
(from rev 119941, sl/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   32 
 community-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: sl/repos/community-i686/PKGBUILD (from rev 119941, sl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 09:53:40 UTC (rev 119942)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Jakub Luzny limot...@gmail.com
+# Contributor: SanskritFritz (gmail)
+
+pkgname=sl
+pkgver=5.02
+pkgrel=3
+pkgdesc='Steam Locomotive runs across your terminal when you type sl as you 
meant to type ls.'
+arch=('i686' 'x86_64' 'arm')
+url=http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
+license=('custom')
+depends=('ncurses')
+source=(https://github.com/mtoyoda/sl/archive/$pkgver.tar.gz;)
+md5sums=('5d5fe203eb19598821647ba8db5dde6c')
+
+build() {
+   cd $srcdir/sl-$pkgver
+
+   cc $CFLAGS -o sl sl.c -lcurses
+   gzip -9 -f sl.1
+}
+
+package() {
+   cd $srcdir/sl-$pkgver
+
+   install -Dm 775 sl $pkgdir/usr/bin/sl
+   install -Dm 644 sl.1.gz $pkgdir/usr/share/man/man1/sl.1.gz
+  install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sl/repos/community-x86_64/PKGBUILD (from rev 119941, sl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-10-01 09:53:40 UTC (rev 119942)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Jakub Luzny limot...@gmail.com
+# Contributor: SanskritFritz (gmail)
+
+pkgname=sl
+pkgver=5.02
+pkgrel=3
+pkgdesc='Steam Locomotive runs across your terminal when you type sl as you 
meant to type ls.'
+arch=('i686' 'x86_64' 'arm')
+url=http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
+license=('custom')
+depends=('ncurses')
+source=(https://github.com/mtoyoda/sl/archive/$pkgver.tar.gz;)
+md5sums=('5d5fe203eb19598821647ba8db5dde6c')
+
+build() {
+   cd $srcdir/sl-$pkgver
+
+   cc $CFLAGS -o sl sl.c -lcurses
+   gzip -9 -f sl.1
+}
+
+package() {
+   cd $srcdir/sl-$pkgver
+
+   install -Dm 775 sl $pkgdir/usr/bin/sl
+   install -Dm 644 sl.1.gz $pkgdir/usr/share/man/man1/sl.1.gz
+  install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:45:06
  Author: spupykin
Revision: 119945

upgpkg: libvirt 1.2.9-1

upd

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 10:45:02 UTC (rev 119944)
+++ PKGBUILD2014-10-01 10:45:06 UTC (rev 119945)
@@ -3,8 +3,8 @@
 # Contributor: Jonathan Wiersma archaur at jonw dot org
 
 pkgname=libvirt
-pkgver=1.2.8
-pkgrel=2
+pkgver=1.2.9
+pkgrel=1
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
 url=http://libvirt.org/;
@@ -59,12 +59,10 @@
'etc/sasl2/libvirt.conf')
 install=libvirt.install
 source=(http://libvirt.org/sources/$pkgname-$pkgver.tar.gz;
-   
3e745e8f775dfe6f64f18b5c2fe4791b35d3546b.patch::http://libvirt.org/git/?p=libvirt.git;a=patch;h=3e745e8f775dfe6f64f18b5c2fe4791b35d3546b;
libvirtd.conf.d
libvirtd-guests.conf.d
libvirt.tmpfiles.d)
-md5sums=('75114991290f7c8f01dd5223431b9c00'
- '695e138afb1edf31bb650d4ecf2bdfe8'
+md5sums=('f017075995062ff1d15577b0b093d02e'
  '5e31269067dbd12ca871234450bb66bb'
  '384fff96c6248d4f020f6fa66c32b357'
  '020971887442ebbf1b6949e031c8dd3f')
@@ -77,8 +75,6 @@
 sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
   done
 
-  patch -p1 $srcdir/3e745e8f775dfe6f64f18b5c2fe4791b35d3546b.patch
-
   sed -i 's|/sysconfig/|/conf.d/|g' \
 daemon/libvirtd.service.in \
 tools/{libvirt-guests.service,libvirt-guests.sh,virt-pki-validate}.in \


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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:45:25
  Author: spupykin
Revision: 119946

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

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

-+
 /PKGBUILD   |  240 ++
 /libvirt.install|   30 +++
 /libvirt.tmpfiles.d |8 +
 /libvirtd-guests.conf.d |   18 ++
 /libvirtd.conf.d|2 
 community-i686/PKGBUILD |  124 ---
 community-i686/libvirt.install  |   15 -
 community-i686/libvirt.tmpfiles.d   |4 
 community-i686/libvirtd-guests.conf.d   |9 -
 community-i686/libvirtd.conf.d  |1 
 community-x86_64/PKGBUILD   |  124 ---
 community-x86_64/libvirt.install|   15 -
 community-x86_64/libvirt.tmpfiles.d |4 
 community-x86_64/libvirtd-guests.conf.d |9 -
 community-x86_64/libvirtd.conf.d|1 
 15 files changed, 298 insertions(+), 306 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 10:45:06 UTC (rev 119945)
+++ community-i686/PKGBUILD 2014-10-01 10:45:25 UTC (rev 119946)
@@ -1,124 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jonathan Wiersma archaur at jonw dot org
-
-pkgname=libvirt
-pkgver=1.2.8
-pkgrel=2
-pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
-arch=('i686' 'x86_64')
-url=http://libvirt.org/;
-license=('LGPL')
-depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
-'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus-core' 'libxau' 'libxdmcp' 
'libpcap'
-'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
-'iproute2' 'libnl' 'libx11' 'numactl' 'gettext')
-   # 'audit'
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc' 'libiscsi' 
'open-iscsi')
-optdepends=('ebtables: required for default NAT networking'
-   'dnsmasq: required for default NAT/DHCP for guests'
-   'bridge-utils: for brigded networking'
-   'openbsd-netcat: for remote management over ssh'
-   'qemu'
-   'radvd'
-   'dmidecode'
-   'pm-utils: host power management')
-options=('emptydirs')
-backup=('etc/conf.d/libvirt-guests'
-   'etc/conf.d/libvirtd'
-   'etc/libvirt/libvirt.conf'
-   'etc/libvirt/libvirtd.conf'
-   'etc/libvirt/lxc.conf'
-   'etc/libvirt/nwfilter/allow-arp.xml'
-   'etc/libvirt/nwfilter/allow-dhcp-server.xml'
-   'etc/libvirt/nwfilter/allow-dhcp.xml'
-   'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
-   'etc/libvirt/nwfilter/allow-ipv4.xml'
-   'etc/libvirt/nwfilter/clean-traffic.xml'
-   'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-spoofing.xml'
-   'etc/libvirt/nwfilter/no-ip-multicast.xml'
-   'etc/libvirt/nwfilter/no-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-mac-broadcast.xml'
-   'etc/libvirt/nwfilter/no-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
-   'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
-   'etc/libvirt/nwfilter/qemu-announce-self-rarp.xml'
-   'etc/libvirt/nwfilter/qemu-announce-self.xml'

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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:45:02
  Author: spupykin
Revision: 119944

archrelease: copy trunk to community-any

Added:
  dokuwiki/repos/community-any/PKGBUILD
(from rev 119943, dokuwiki/trunk/PKGBUILD)
  dokuwiki/repos/community-any/apache.example.conf
(from rev 119943, dokuwiki/trunk/apache.example.conf)
Deleted:
  dokuwiki/repos/community-any/PKGBUILD
  dokuwiki/repos/community-any/apache.example.conf

-+
 PKGBUILD|  132 +-
 apache.example.conf |   16 +++---
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 10:44:51 UTC (rev 119943)
+++ PKGBUILD2014-10-01 10:45:02 UTC (rev 119944)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sébastien Luttringer
-
-pkgname=dokuwiki
-pkgver=20140505_a
-_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
-_pkgver=${_pkgver/_/}
-pkgrel=2
-pkgdesc='Simple to use and highly versatile Open Source wiki software'
-arch=('any')
-url='https://www.dokuwiki.org/'
-license=('GPL')
-depends=('php')
-backup=('etc/webapps/dokuwiki/.htaccess'
-'etc/httpd/conf/extra/dokuwiki.conf')
-options=('!strip')
-source=(http://download.dokuwiki.org/src/dokuwiki/dokuwiki-${_pkgver}.tgz;
-'apache.example.conf')
-md5sums=('fb44f206d1550921c640757599e90bb9'
- 'c5bed40abf5bb737bad8df29bb7020dc')
-
-package() {
-  cd $pkgdir
-  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
-  cp -a $srcdir/$pkgname-${_pkgver} usr/share/webapps/dokuwiki
-
-  # move data in var
-  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
-  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
-
-  # move plugins in var
-  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
-  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
-
-  # move templates in var
-  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
-  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
-
-  # move config in /etc
-  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
-  chmod g=rwx etc/webapps/dokuwiki
-  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
-
-  # inform update on changes.log
-  touch var/lib/dokuwiki/data/changes.log
-  chmod 0644 var/lib/dokuwiki/data/changes.log
-
-  # use default htaccess
-  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
-  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
-
-  # fix rights and ownership
-  chown http:http var/lib/dokuwiki/plugins
-  chown -R http:http var/lib/dokuwiki/data
-  chown -R http:http etc/webapps/dokuwiki
-
-  # apache config
-  install -Dm0644 $srcdir/apache.example.conf 
etc/httpd/conf/extra/dokuwiki.conf
-
-  # php.ini
-  install -dm0755 $pkgdir/etc/php/conf.d/
-  echo 'open_basedir = 
${open_basedir}:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/' 
$pkgdir/etc/php/conf.d/dokuwiki.ini
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dokuwiki/repos/community-any/PKGBUILD (from rev 119943, 
dokuwiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 10:45:02 UTC (rev 119944)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sébastien Luttringer
+
+pkgname=dokuwiki
+pkgver=20140929
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
+_pkgver=${_pkgver/_/}
+pkgrel=1
+pkgdesc='Simple to use and highly versatile Open Source wiki software'
+arch=('any')
+url='https://www.dokuwiki.org/'
+license=('GPL')
+depends=('php')
+backup=('etc/webapps/dokuwiki/.htaccess'
+'etc/httpd/conf/extra/dokuwiki.conf')
+options=('!strip')
+source=(http://download.dokuwiki.org/src/dokuwiki/dokuwiki-${_pkgver}.tgz;
+'apache.example.conf')
+md5sums=('1f93a6205d0408f44649b04047cb3550'
+ 'c5bed40abf5bb737bad8df29bb7020dc')
+
+package() {
+  cd $pkgdir
+  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
+  cp -a $srcdir/$pkgname-${_pkgver} usr/share/webapps/dokuwiki
+
+  # move data in var
+  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
+  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
+
+  # move plugins in var
+  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
+  ln -s 
{../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
+
+  # move templates in var
+  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
+  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
+
+  # move config in /etc
+  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
+  chmod g=rwx etc/webapps/dokuwiki
+  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
+
+  # inform update on 

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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:46:03
  Author: spupykin
Revision: 119948

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

Added:
  squid/repos/community-i686/PKGBUILD
(from rev 119947, squid/trunk/PKGBUILD)
  squid/repos/community-i686/squid-r13407.patch
(from rev 119947, squid/trunk/squid-r13407.patch)
  squid/repos/community-i686/squid-rotate.service
(from rev 119947, squid/trunk/squid-rotate.service)
  squid/repos/community-i686/squid-rotate.timer
(from rev 119947, squid/trunk/squid-rotate.timer)
  squid/repos/community-i686/squid.install
(from rev 119947, squid/trunk/squid.install)
  squid/repos/community-i686/squid.pam
(from rev 119947, squid/trunk/squid.pam)
  squid/repos/community-i686/squid.service
(from rev 119947, squid/trunk/squid.service)
  squid/repos/community-i686/squid.sysusers
(from rev 119947, squid/trunk/squid.sysusers)
  squid/repos/community-i686/squid.tmpfiles
(from rev 119947, squid/trunk/squid.tmpfiles)
  squid/repos/community-x86_64/PKGBUILD
(from rev 119947, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid-r13407.patch
(from rev 119947, squid/trunk/squid-r13407.patch)
  squid/repos/community-x86_64/squid-rotate.service
(from rev 119947, squid/trunk/squid-rotate.service)
  squid/repos/community-x86_64/squid-rotate.timer
(from rev 119947, squid/trunk/squid-rotate.timer)
  squid/repos/community-x86_64/squid.install
(from rev 119947, squid/trunk/squid.install)
  squid/repos/community-x86_64/squid.pam
(from rev 119947, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.service
(from rev 119947, squid/trunk/squid.service)
  squid/repos/community-x86_64/squid.sysusers
(from rev 119947, squid/trunk/squid.sysusers)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 119947, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-i686/PKGBUILD
  squid/repos/community-i686/squid-r13407.patch
  squid/repos/community-i686/squid-rotate.service
  squid/repos/community-i686/squid-rotate.timer
  squid/repos/community-i686/squid.install
  squid/repos/community-i686/squid.pam
  squid/repos/community-i686/squid.service
  squid/repos/community-i686/squid.sysusers
  squid/repos/community-i686/squid.tmpfiles
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid-r13407.patch
  squid/repos/community-x86_64/squid-rotate.service
  squid/repos/community-x86_64/squid-rotate.timer
  squid/repos/community-x86_64/squid.install
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.service
  squid/repos/community-x86_64/squid.sysusers
  squid/repos/community-x86_64/squid.tmpfiles

---+
 /PKGBUILD |  216 
 /squid-r13407.patch   |  114 
 /squid-rotate.service |   18 ++
 /squid-rotate.timer   |   14 ++
 /squid.install|8 +
 /squid.pam|8 +
 /squid.service|   26 +++
 /squid.sysusers   |2 
 /squid.tmpfiles   |2 
 community-i686/PKGBUILD   |  108 
 community-i686/squid-r13407.patch |   57 
 community-i686/squid-rotate.service   |9 -
 community-i686/squid-rotate.timer |7 -
 community-i686/squid.install  |4 
 community-i686/squid.pam  |4 
 community-i686/squid.service  |   13 -
 community-i686/squid.sysusers |1 
 community-i686/squid.tmpfiles |1 
 community-x86_64/PKGBUILD |  108 
 community-x86_64/squid-r13407.patch   |   57 
 community-x86_64/squid-rotate.service |9 -
 community-x86_64/squid-rotate.timer   |7 -
 community-x86_64/squid.install|4 
 community-x86_64/squid.pam|4 
 community-x86_64/squid.service|   13 -
 community-x86_64/squid.sysusers   |1 
 community-x86_64/squid.tmpfiles   |1 
 27 files changed, 408 insertions(+), 408 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 10:45:32 UTC (rev 119947)
+++ community-i686/PKGBUILD 2014-10-01 10:46:03 UTC (rev 119948)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Mark Coolen mark.coo...@gmail.com
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Kevin Piche ke...@archlinux.org
-
-pkgname=squid
-pkgver=3.4.7
-pkgrel=2
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'perl' 'libltdl' 'libcap')
-makedepends=('libcap' 'krb5')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-'etc/squid/mime.conf'
-'etc/squid/errorpage.css'

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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:44:51
  Author: spupykin
Revision: 119943

upgpkg: dokuwiki 20140929-1

upd

Modified:
  dokuwiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 09:53:40 UTC (rev 119942)
+++ PKGBUILD2014-10-01 10:44:51 UTC (rev 119943)
@@ -3,10 +3,10 @@
 # Contributor: Sébastien Luttringer
 
 pkgname=dokuwiki
-pkgver=20140505_a
+pkgver=20140929
 _pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6}
 _pkgver=${_pkgver/_/}
-pkgrel=2
+pkgrel=1
 pkgdesc='Simple to use and highly versatile Open Source wiki software'
 arch=('any')
 url='https://www.dokuwiki.org/'
@@ -17,7 +17,7 @@
 options=('!strip')
 source=(http://download.dokuwiki.org/src/dokuwiki/dokuwiki-${_pkgver}.tgz;
 'apache.example.conf')
-md5sums=('fb44f206d1550921c640757599e90bb9'
+md5sums=('1f93a6205d0408f44649b04047cb3550'
  'c5bed40abf5bb737bad8df29bb7020dc')
 
 package() {


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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:45:32
  Author: spupykin
Revision: 119947

upgpkg: squid 3.4.8-1

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 10:45:25 UTC (rev 119946)
+++ PKGBUILD2014-10-01 10:45:32 UTC (rev 119947)
@@ -5,8 +5,8 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=squid
-pkgver=3.4.7
-pkgrel=2
+pkgver=3.4.8
+pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
 url='http://www.squid-cache.org'
@@ -28,7 +28,7 @@
 'squid-rotate.service'
 'squid-rotate.timer'
 'squid-r13407.patch')
-md5sums=('9951034b10f7ee0f45a95cfae61c57c2'
+md5sums=('094bd5f974d13485d51d02e93ec6027b'
  '270977cdd9b47ef44c0c427ab9034777'
  'ceeb57c69ebb165676219222f109a24e'
  'd243da117c1aee03c0cc6052f023a380'


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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:52:28
  Author: spupykin
Revision: 119950

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

Added:
  rsyslog/repos/community-i686/PKGBUILD
(from rev 119949, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-i686/build-fix.patch
(from rev 119949, rsyslog/trunk/build-fix.patch)
  rsyslog/repos/community-i686/rsyslog.conf
(from rev 119949, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-i686/rsyslog.logrotate
(from rev 119949, rsyslog/trunk/rsyslog.logrotate)
  rsyslog/repos/community-x86_64/PKGBUILD
(from rev 119949, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-x86_64/build-fix.patch
(from rev 119949, rsyslog/trunk/build-fix.patch)
  rsyslog/repos/community-x86_64/rsyslog.conf
(from rev 119949, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-x86_64/rsyslog.logrotate
(from rev 119949, rsyslog/trunk/rsyslog.logrotate)
Deleted:
  rsyslog/repos/community-i686/PKGBUILD
  rsyslog/repos/community-i686/build-fix.patch
  rsyslog/repos/community-i686/rsyslog.conf
  rsyslog/repos/community-i686/rsyslog.logrotate
  rsyslog/repos/community-x86_64/PKGBUILD
  rsyslog/repos/community-x86_64/build-fix.patch
  rsyslog/repos/community-x86_64/rsyslog.conf
  rsyslog/repos/community-x86_64/rsyslog.logrotate

+
 /PKGBUILD  |  126 +++
 /build-fix.patch   |   30 
 /rsyslog.conf  |   88 
 /rsyslog.logrotate |   14 +++
 community-i686/PKGBUILD|   63 -
 community-i686/build-fix.patch |   15 
 community-i686/rsyslog.conf|   44 
 community-i686/rsyslog.logrotate   |7 -
 community-x86_64/PKGBUILD  |   63 -
 community-x86_64/build-fix.patch   |   15 
 community-x86_64/rsyslog.conf  |   44 
 community-x86_64/rsyslog.logrotate |7 -
 12 files changed, 258 insertions(+), 258 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 10:52:11 UTC (rev 119949)
+++ community-i686/PKGBUILD 2014-10-01 10:52:28 UTC (rev 119950)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=rsyslog
-pkgver=8.4.0
-pkgrel=1
-pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
-url=http://www.rsyslog.com/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging')
-makedepends=('postgresql-libs=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
-'python-docutils')
-optdepends=('postgresql-libs: PostgreSQL Database Support'
-   'libmariadbclient: MySQL Database Support'
-   'net-snmp'
-   'gnutls')
-backup=('etc/rsyslog.conf'
-   'etc/logrotate.d/rsyslog')
-options=('strip' 'zipman')
-source=(http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
-   'rsyslog.logrotate'
-   'rsyslog.conf'
-   'build-fix.patch')
-md5sums=('18984c59da976e1aaf2ff076d079bc56'
- '0d990373f5c70ddee989296007b4df5b'
- 'd61dd424e660eb16401121eed20d98bc'
- '1211cde1be4a2196c77d89e38c48c930')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 $srcdir/build-fix.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --enable-mysql \
-  --enable-pgsql \
-  --enable-mail \
-  --enable-imfile \
-  --enable-snmp \
-  --enable-gnutls \
-  --enable-inet \
-  --enable-imjournal \
-  --enable-omjournal \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-  # Install Daemons and Configuration Files
-  install -D -m644 $srcdir/${pkgname}.conf ${pkgdir}/etc/${pkgname}.conf
-  install -D -m644 $srcdir/${pkgname}.logrotate 
${pkgdir}/etc/logrotate.d/${pkgname}
-
-  # fix location of systemctl and remove start precondition
-  sed -i $pkgdir/usr/lib/systemd/system/rsyslog.service \
--e 's@/bin/systemctl@/usr@' \
--e '/^ExecStartPre/d'
-}

Copied: rsyslog/repos/community-i686/PKGBUILD (from rev 119949, 
rsyslog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 10:52:28 UTC (rev 119950)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=rsyslog
+pkgver=8.4.1
+pkgrel=1
+pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
+url=http://www.rsyslog.com/;
+arch=('i686' 'x86_64')
+license=('GPL3')

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

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:52:11
  Author: spupykin
Revision: 119949

upgpkg: rsyslog 8.4.1-1

upd

Modified:
  rsyslog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 10:46:03 UTC (rev 119948)
+++ PKGBUILD2014-10-01 10:52:11 UTC (rev 119949)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=rsyslog
-pkgver=8.4.0
+pkgver=8.4.1
 pkgrel=1
 pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
 url=http://www.rsyslog.com/;
@@ -22,7 +22,7 @@
'rsyslog.logrotate'
'rsyslog.conf'
'build-fix.patch')
-md5sums=('18984c59da976e1aaf2ff076d079bc56'
+md5sums=('03a80c3390294205be2df1d3a9d24f8a'
  '0d990373f5c70ddee989296007b4df5b'
  'd61dd424e660eb16401121eed20d98bc'
  '1211cde1be4a2196c77d89e38c48c930')
@@ -29,7 +29,7 @@
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 $srcdir/build-fix.patch
+#  patch -p1 $srcdir/build-fix.patch
 }
 
 build() {


[arch-commits] Commit in rsyslog/trunk (PKGBUILD build-fix.patch)

2014-10-01 Thread Sergej Pupykin
Date: Wednesday, October 1, 2014 @ 12:53:19
  Author: spupykin
Revision: 119951

clean up

Modified:
  rsyslog/trunk/PKGBUILD
Deleted:
  rsyslog/trunk/build-fix.patch

-+
 PKGBUILD|   11 ++-
 build-fix.patch |   15 ---
 2 files changed, 2 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 10:52:28 UTC (rev 119950)
+++ PKGBUILD2014-10-01 10:53:19 UTC (rev 119951)
@@ -20,18 +20,11 @@
 options=('strip' 'zipman')
 source=(http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
'rsyslog.logrotate'
-   'rsyslog.conf'
-   'build-fix.patch')
+   'rsyslog.conf')
 md5sums=('03a80c3390294205be2df1d3a9d24f8a'
  '0d990373f5c70ddee989296007b4df5b'
- 'd61dd424e660eb16401121eed20d98bc'
- '1211cde1be4a2196c77d89e38c48c930')
+ 'd61dd424e660eb16401121eed20d98bc')
 
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-#  patch -p1 $srcdir/build-fix.patch
-}
-
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr \

Deleted: build-fix.patch
===
--- build-fix.patch 2014-10-01 10:52:28 UTC (rev 119950)
+++ build-fix.patch 2014-10-01 10:53:19 UTC (rev 119951)
@@ -1,15 +0,0 @@
-diff -wbBur rsyslog-8.4.0/runtime/msg.c rsyslog-8.4.0.my/runtime/msg.c
 rsyslog-8.4.0/runtime/msg.c2014-08-18 13:14:06.0 +0400
-+++ rsyslog-8.4.0.my/runtime/msg.c 2014-08-22 15:58:52.974045109 +0400
-@@ -4074,7 +4074,11 @@
- 
-   err = tokener-err;
-   if(err != json_tokener_continue)
-+# if HAVE_JSON_TOKENER_ERROR_DESC
-+  errMsg = json_tokener_error_desc(err);
-+# else
-   errMsg = json_tokener_errors[err];
-+# endif
-   else
-   errMsg = Unterminated input;
-   } else if(!json_object_is_type(json, json_type_object))


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 12:56:46
  Author: fyan
Revision: 119952

upgpkg: goagent 3.2.0-1

Modified:
  goagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 10:53:19 UTC (rev 119951)
+++ PKGBUILD2014-10-01 10:56:46 UTC (rev 119952)
@@ -4,7 +4,7 @@
 # Contributor: Guten ywzhai...@gmail.com 
 
 pkgname=goagent
-pkgver=3.1.25
+pkgver=3.2.0
 #_commit=d911497475c516405dde59a968cd506424326b55
 pkgrel=1
 pkgdesc=A gae proxy forked from gappproxy/wallproxy
@@ -14,7 +14,6 @@
 depends=('python2' 'python2-pyopenssl' 'python2-gevent' 'python2-dnslib')
 conflicts=('python2-gevent0.99')
 optdepends=('python2-crypto: Optimization for RC4'
-'python2-pacparser: PAC proxy support'
 'python2-pygeoip: for GAE Regions mode support  DNS region auto 
detect')
 makedepends=('git')
 source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
@@ -32,6 +31,9 @@
   sed -e 's|^self.geoip = .*$|self.geoip = 
pygeoip.GeoIP(/usr/share/GeoIP/GeoIP.dat)|' \
   -e s|os.path.join(os.path.dirname(os.path.abspath(__file__)), 
'cacert.pem')|'/etc/ssl/certs/ca-certificates.crt'| \
   -i local/proxylib.py
+  sed -e 's|^.*google_appengine.zip.*$||' \
+  -e 's|sys\.modules\.pop(.google., None)||' \
+  -i server/uploader.py
 }
 
 package() {
@@ -49,7 +51,7 @@
   ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/goagent.user.ini
   
   cp -r server $pkgdir/usr/share/$pkgname/
-  rm $pkgdir/usr/share/$pkgname/server/uploader.bat
+  rm $pkgdir/usr/share/$pkgname/server/{uploader.bat,google_appengine.zip}
 
   # systemd service
   install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 12:57:14
  Author: fyan
Revision: 119953

archrelease: copy trunk to community-testing-any

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

-+
 PKGBUILD|   63 ++
 goagent.install |   21 ++
 goagent.service |   12 ++
 3 files changed, 96 insertions(+)

Copied: goagent/repos/community-testing-any/PKGBUILD (from rev 119952, 
goagent/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2014-10-01 10:57:14 UTC (rev 119953)
@@ -0,0 +1,63 @@
+# $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.2.0
+#_commit=d911497475c516405dde59a968cd506424326b55
+pkgrel=1
+pkgdesc=A gae proxy forked from gappproxy/wallproxy
+arch=(any)
+url=http://goagent.googlecode.com;
+license=(GPL2)
+depends=('python2' 'python2-pyopenssl' 'python2-gevent' 'python2-dnslib')
+conflicts=('python2-gevent0.99')
+optdepends=('python2-crypto: Optimization for RC4'
+'python2-pygeoip: for GAE Regions mode support  DNS region auto 
detect')
+makedepends=('git')
+source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
+#source=(git+https://github.com/goagent/goagent.git#commit=$_commit; 
+${pkgname}.user.ini
+${pkgname}.service)
+backup=('etc/goagent')
+install=goagent.install
+
+prepare() {
+  cd $pkgname
+
+  sed -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| \
+  -i local/{proxy.py,dnsproxy.py}
+  sed -e 's|^self.geoip = .*$|self.geoip = 
pygeoip.GeoIP(/usr/share/GeoIP/GeoIP.dat)|' \
+  -e s|os.path.join(os.path.dirname(os.path.abspath(__file__)), 
'cacert.pem')|'/etc/ssl/certs/ca-certificates.crt'| \
+  -i local/proxylib.py
+  sed -e 's|^.*google_appengine.zip.*$||' \
+  -e 's|sys\.modules\.pop(.google., None)||' \
+  -i server/uploader.py
+}
+
+package() {
+  cd $pkgname
+
+  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/goagent
+  install -Dm755 local/dnsproxy.py 
$pkgdir/usr/share/$pkgname/local/dnsproxy.py
+  install -Dm644 local/proxylib.py 
$pkgdir/usr/share/$pkgname/local/proxylib.py
+  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
+  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/usr/share/$pkgname/local/goagent.ini
+  install -Dm640 -g nobody ../goagent.user.ini $pkgdir/etc/goagent
+  ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/goagent.user.ini
+  
+  cp -r server $pkgdir/usr/share/$pkgname/
+  rm $pkgdir/usr/share/$pkgname/server/{uploader.bat,google_appengine.zip}
+
+  # systemd service
+  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
+}
+
+# vim:set ts=2 sw=2 et:
+sha512sums=('SKIP'
+
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
+
'4327d5b874c5150296f9c027a60994853de1b68d4c4e32291a5c41c0e162ffbccf68b6208cbc096d099721b470e1df897ad61596d8ddd705543c15b58e9a0f7c')

Copied: goagent/repos/community-testing-any/goagent.install (from rev 119952, 
goagent/trunk/goagent.install)
===
--- community-testing-any/goagent.install   (rev 0)
+++ community-testing-any/goagent.install   2014-10-01 10:57:14 UTC (rev 
119953)
@@ -0,0 +1,21 @@
+post_install() {
+echo Since 3.1.2-2, /etc/goagent becomes user configuration for goagent. 
Put any customization there, not the default settings. For details, please 
refer to wiki: 
https://wiki.archlinux.org/index.php?title=GoAgent_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)
+
+#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() {
+# Disable certs cleaning until some more issue detected
+#rm -rf /usr/share/goagent/local/certs
+:
+}
+
+pre_remove() {
+rm -rf /usr/share/goagent/local/certs
+}

Copied: goagent/repos/community-testing-any/goagent.service (from rev 

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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:13:45
  Author: arodseth
Revision: 119955

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

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 119954, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 119954, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 119954, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 119954, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/julia.conf
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/julia.conf
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  214 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  104 --
 community-i686/julia.conf   |1 
 community-i686/sysfix.install   |8 -
 community-x86_64/PKGBUILD   |  104 --
 community-x86_64/julia.conf |1 
 community-x86_64/sysfix.install |8 -
 8 files changed, 234 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 11:13:36 UTC (rev 119954)
+++ community-i686/PKGBUILD 2014-10-01 11:13:45 UTC (rev 119955)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Lex Black autumn-wind at web dot de
-# Contributor: Michael Jakl jakl.mich...@gmail.com
-# Contributor: devmotion nospam-archlinux@devmotion.de
-# Contributor: Valentin Churavy v.chur...@gmail.com
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.0
-pkgrel=3
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=('julia.conf'
-git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-})
-sha256sums=('59dee73f54ea2c0ea94b9af4e4caeda73c1295f3a4474361189c1e022a3cb0b1'
-'SKIP')
-
-build() {
-  make -C $pkgname prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack')
-  install='sysfix.install'
-
-  make -C $pkgname DESTDIR=$pkgdir \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=1 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=0 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf $pkgdir/usr/share/julia/doc/man
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf $pkgdir/etc/ld.so.conf.d/julia.conf
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf $pkgdir/usr/share/doc/
-  rm -rvf $pkgdir/usr/share/julia/doc/
-  rm -rvf $pkgdir/usr/share/julia/examples/
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d $pkgdir/usr/share/doc
-  cp -rv $srcdir/$pkgbase/doc $pkgdir/usr/share/doc/$pkgbase
-  cp -rv $srcdir/$pkgbase/examples $pkgdir/usr/share/doc/$pkgbase/examples
-}
-
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 119954, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 11:13:45 UTC (rev 119955)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Alexander Rødseth 

[arch-commits] Commit in julia/trunk (PKGBUILD julia.conf sysfix.install)

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:13:36
  Author: arodseth
Revision: 119954

upgpkg: julia 2:0.3.1-1

Modified:
  julia/trunk/PKGBUILD
  julia/trunk/sysfix.install
Deleted:
  julia/trunk/julia.conf

+
 PKGBUILD   |   15 +--
 julia.conf |1 -
 sysfix.install |2 ++
 3 files changed, 11 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 10:57:14 UTC (rev 119953)
+++ PKGBUILD2014-10-01 11:13:36 UTC (rev 119954)
@@ -7,9 +7,9 @@
 
 pkgbase=julia
 pkgname=('julia' 'julia-docs')
+pkgver=0.3.1
+pkgrel=1
 epoch=2
-pkgver=0.3.0
-pkgrel=3
 pkgdesc='High-level, high-performance, dynamic programming language'
 arch=('x86_64' 'i686')
 url='http://julialang.org/'
@@ -18,11 +18,14 @@
 optdepends=('gnuplot: If using the Gaston Package from julia')
 options=('!emptydirs' 'staticlibs')
 backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=('julia.conf'
-git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-})
-sha256sums=('59dee73f54ea2c0ea94b9af4e4caeda73c1295f3a4474361189c1e022a3cb0b1'
-'SKIP')
+source=(git://github.com/JuliaLang/julia.git#tag=v${pkgver/_/-})
+sha256sums=('SKIP')
 
+prepare() {
+  # for /etc/ld.so.conf.d/
+  echo '/usr/lib/julia'  julia.conf
+}
+
 build() {
   make -C $pkgname prefix=/usr sysconfdir=/etc \
 MARCH=${CARCH/_/-} \

Deleted: julia.conf
===
--- julia.conf  2014-10-01 10:57:14 UTC (rev 119953)
+++ julia.conf  2014-10-01 11:13:36 UTC (rev 119954)
@@ -1 +0,0 @@
-/usr/lib/julia

Modified: sysfix.install
===
--- sysfix.install  2014-10-01 10:57:14 UTC (rev 119953)
+++ sysfix.install  2014-10-01 11:13:36 UTC (rev 119954)
@@ -6,3 +6,5 @@
 post_upgrade() {
   post_install
 }
+
+# vim:set ts=2 sw=2 et:


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:20:05
  Author: arodseth
Revision: 119959

archrelease: copy trunk to community-any

Added:
  groovy-docs/repos/community-any/PKGBUILD
(from rev 119958, groovy-docs/trunk/PKGBUILD)
Deleted:
  groovy-docs/repos/community-any/PKGBUILD

--+
 PKGBUILD |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 11:19:57 UTC (rev 119958)
+++ PKGBUILD2014-10-01 11:20:05 UTC (rev 119959)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: bruce b_a_g99 (at) hotmail (dot) com
-
-pkgname=groovy-docs
-pkgver=2.3.6
-pkgrel=1
-pkgdesc='Documentation for the Groovy programming language'
-url='http://groovy.codehaus.org/'
-license=('APACHE')
-arch=('any')
-source=(http://dl.bintray.com/groovy/maven/$pkgname-$pkgver.zip;)
-sha256sums=('fb52492653ac83975ccab465d5959cd6f242493c724c9fb115f796b2d40f0736')
-
-package() {
-  cd groovy-$pkgver
-
-  install -d $pkgdir/usr/share/doc/groovy-$pkgver
-  cp -r * $pkgdir/usr/share/doc/groovy-$pkgver
-  find $pkgdir -type f -exec chmod -x {} \;
-}
-
-# vim:set ts=2 sw=2 et:

Copied: groovy-docs/repos/community-any/PKGBUILD (from rev 119958, 
groovy-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 11:20:05 UTC (rev 119959)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: bruce b_a_g99 (at) hotmail (dot) com
+
+pkgname=groovy-docs
+pkgver=2.3.7
+pkgrel=1
+pkgdesc='Documentation for the Groovy programming language'
+url='http://groovy.codehaus.org/'
+license=('APACHE')
+arch=('any')
+source=(http://dl.bintray.com/groovy/maven/$pkgname-$pkgver.zip;)
+sha256sums=('0aaf6d5c6276da117278a81a0d5c4505b652d1e46efe98d0aee6a1e48a5491a4')
+
+package() {
+  cd groovy-$pkgver
+
+  install -d $pkgdir/usr/share/doc/groovy-$pkgver
+  cp -r * $pkgdir/usr/share/doc/groovy-$pkgver
+  find $pkgdir -type f -exec chmod -x {} \;
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:17:25
  Author: arodseth
Revision: 119957

archrelease: copy trunk to community-any

Added:
  groovy/repos/community-any/PKGBUILD
(from rev 119956, groovy/trunk/PKGBUILD)
Deleted:
  groovy/repos/community-any/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 11:17:19 UTC (rev 119956)
+++ PKGBUILD2014-10-01 11:17:25 UTC (rev 119957)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Musikolo musikoloAThotmailDOTcom
-# Contributor: Ruben Fonseca fons...@gmail.com
-# Contributor: Andreas W. Hauser andy-...@splashground.de
-
-pkgname=groovy
-pkgver=2.3.6
-pkgrel=1
-pkgdesc='Programming language based on Java, inspired by Python, Ruby and 
Smalltalk'
-arch=('any')
-url='http://groovy.codehaus.org/'
-license=('APACHE' 'BSD' 'custom')
-depends=('bash' 'java-environment')
-optdepends=('groovy-docs: html and pdf documentation for Groovy')
-makedepends=('gendesk')
-source=(http://dl.bintray.com/groovy/maven/$pkgname-binary-$pkgver.zip;
-
$pkgname.png::http://svn.codehaus.org/groovy/tags/GROOVY_1_7_6/src/main/groovy/ui/ConsoleIcon.png;)
-sha256sums=('5081ebbd3e6d1a5900c51b1c7d5d4629e3a8dcb8a9f3ff45a15b21e34237737b'
-'24e539235b5762b1220f39d7953a52e9b4a458c2be4f66a60219755363ba6dba')
-
-prepare() {
-  # Generate desktop shortcut file
-  gendesk -f -n --pkgname $pkgname --pkgdesc 'Groovy programming language' \
---exec 'groovyConsole' --name 'Groovy Console' 
-
-  # Set GROOVY_HOME correctly at the top of all the scripts.
-  # This works, but there probably is an even better way to do this.
-  cd $pkgname-$pkgver/embeddable
-  for f in ../bin/*; do
-sed 's:bin/sh:bin/sh\nGROOVY_HOME=/usr/share/groovy:' -i $f
-  done
-
-  ln -s $pkgname-all-$pkgver.jar $pkgname-all.jar
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # Create the directories and package the files
-  install -d $pkgdir/usr/share/groovy $pkgdir/usr/bin
-  cp -r lib conf embeddable $pkgdir/usr/share/groovy
-  cp bin/* $pkgdir/usr/bin
-
-  # Remove all DOS/Windows batch files
-  find $pkgdir -name '*.bat' -exec rm {} \;
-
-  # Package the APACHE license
-  install -Dm644 LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 CLI-LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/CLI-LICENSE
-
-  # Package the BSD license
-  install -Dm644 ANTLR-LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/ANTLR-LICENSE
-
-  # Package the custom license
-  install -Dm644 ASM-LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/ASM-LICENSE
-  install -Dm644 JSR223-LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/JSR223-LICENSE
-
-  # Desktop shortcut for Groovy Console
-  install -Dm644 $srcdir/$pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $srcdir/$pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-}
-
-# vim:set ts=2 sw=2 et:

Copied: groovy/repos/community-any/PKGBUILD (from rev 119956, 
groovy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 11:17:25 UTC (rev 119957)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Musikolo musikoloAThotmailDOTcom
+# Contributor: Ruben Fonseca fons...@gmail.com
+# Contributor: Andreas W. Hauser andy-...@splashground.de
+
+pkgname=groovy
+pkgver=2.3.7
+pkgrel=1
+pkgdesc='Programming language based on Java, inspired by Python, Ruby and 
Smalltalk'
+arch=('any')
+url='http://groovy.codehaus.org/'
+license=('APACHE' 'BSD' 'custom')
+depends=('bash' 'java-environment')
+optdepends=('groovy-docs: html and pdf documentation for Groovy')
+makedepends=('gendesk')
+source=(http://dl.bintray.com/groovy/maven/$pkgname-binary-$pkgver.zip;
+
$pkgname.png::http://svn.codehaus.org/groovy/tags/GROOVY_1_7_6/src/main/groovy/ui/ConsoleIcon.png;)
+sha256sums=('38d6faaf3cae78d91852ab1be8070a7a7c5d206bd172f2cd7c0bb131e23e2525'
+'24e539235b5762b1220f39d7953a52e9b4a458c2be4f66a60219755363ba6dba')
+
+prepare() {
+  # Generate desktop shortcut file
+  gendesk -f -n --pkgname $pkgname --pkgdesc 'Groovy programming language' \
+--exec 'groovyConsole' --name 'Groovy Console' 
+
+  # Set GROOVY_HOME correctly at the top of all the scripts.
+  # This works, but there probably is an even better way to do this.
+  cd $pkgname-$pkgver/embeddable
+  for f in ../bin/*; do
+sed 's:bin/sh:bin/sh\nGROOVY_HOME=/usr/share/groovy:' -i $f
+  done
+
+  ln -s $pkgname-all-$pkgver.jar $pkgname-all.jar
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # Create the directories and package the files
+  install -d $pkgdir/usr/share/groovy $pkgdir/usr/bin
+  cp -r lib conf embeddable 

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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:19:57
  Author: arodseth
Revision: 119958

upgpkg: groovy-docs 2.3.7-1

Modified:
  groovy-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:17:25 UTC (rev 119957)
+++ PKGBUILD2014-10-01 11:19:57 UTC (rev 119958)
@@ -3,7 +3,7 @@
 # Contributor: bruce b_a_g99 (at) hotmail (dot) com
 
 pkgname=groovy-docs
-pkgver=2.3.6
+pkgver=2.3.7
 pkgrel=1
 pkgdesc='Documentation for the Groovy programming language'
 url='http://groovy.codehaus.org/'
@@ -10,7 +10,7 @@
 license=('APACHE')
 arch=('any')
 source=(http://dl.bintray.com/groovy/maven/$pkgname-$pkgver.zip;)
-sha256sums=('fb52492653ac83975ccab465d5959cd6f242493c724c9fb115f796b2d40f0736')
+sha256sums=('0aaf6d5c6276da117278a81a0d5c4505b652d1e46efe98d0aee6a1e48a5491a4')
 
 package() {
   cd groovy-$pkgver


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:17:19
  Author: arodseth
Revision: 119956

upgpkg: groovy 2.3.7-1

Modified:
  groovy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:13:45 UTC (rev 119955)
+++ PKGBUILD2014-10-01 11:17:19 UTC (rev 119956)
@@ -5,7 +5,7 @@
 # Contributor: Andreas W. Hauser andy-...@splashground.de
 
 pkgname=groovy
-pkgver=2.3.6
+pkgver=2.3.7
 pkgrel=1
 pkgdesc='Programming language based on Java, inspired by Python, Ruby and 
Smalltalk'
 arch=('any')
@@ -16,7 +16,7 @@
 makedepends=('gendesk')
 source=(http://dl.bintray.com/groovy/maven/$pkgname-binary-$pkgver.zip;
 
$pkgname.png::http://svn.codehaus.org/groovy/tags/GROOVY_1_7_6/src/main/groovy/ui/ConsoleIcon.png;)
-sha256sums=('5081ebbd3e6d1a5900c51b1c7d5d4629e3a8dcb8a9f3ff45a15b21e34237737b'
+sha256sums=('38d6faaf3cae78d91852ab1be8070a7a7c5d206bd172f2cd7c0bb131e23e2525'
 '24e539235b5762b1220f39d7953a52e9b4a458c2be4f66a60219755363ba6dba')
 
 prepare() {


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:45:03
  Author: arodseth
Revision: 119964

upgpkg: go 2:1.3.3-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:44:46 UTC (rev 119963)
+++ PKGBUILD2014-10-01 11:45:03 UTC (rev 119964)
@@ -11,7 +11,7 @@
 
 pkgname=go
 epoch=2
-pkgver=1.3.2
+pkgver=1.3.3
 pkgrel=1
 pkgdesc='Compiler and tools for the Go programming language from Google'
 arch=('x86_64' 'i686')


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:44:46
  Author: arodseth
Revision: 119963

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

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 119962, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 119962, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 119962, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 119962, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   98 ++
 /gimp-ufraw.install |   26 +
 community-i686/PKGBUILD |   49 -
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   49 -
 community-x86_64/gimp-ufraw.install |   13 
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 11:44:36 UTC (rev 119962)
+++ community-i686/PKGBUILD 2014-10-01 11:44:46 UTC (rev 119963)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.19.2
-pkgrel=1
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('73befe9f16f015a8c0f26cef3bb2e17cac9ae64aef2ade48c29aedb1ee51abd3')
-
-prepare() {
-  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 119962, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 11:44:46 UTC (rev 119963)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.20
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
+
+prepare() {
+  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2014-10-01 11:44:36 UTC (rev 119962)
+++ community-i686/gimp-ufraw.install   2014-10-01 11:44:46 UTC (rev 119963)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 

[arch-commits] Commit in lightdm/trunk (PKGBUILD lightdm-default-config.patch)

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 13:43:47
  Author: alucryd
Revision: 119960

upgpkg: lightdm 1:1.12.0-1

Modified:
  lightdm/trunk/PKGBUILD
  lightdm/trunk/lightdm-default-config.patch

--+
 PKGBUILD |   77 +
 lightdm-default-config.patch |   27 +-
 2 files changed, 51 insertions(+), 53 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:20:05 UTC (rev 119959)
+++ PKGBUILD2014-10-01 11:43:47 UTC (rev 119960)
@@ -1,18 +1,19 @@
 # $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
 # Contributor: Morfeo morfe...@hotmail.it
 
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
-pkgver=1.10.1
-pkgrel=3
+pkgver=1.12.0
+pkgrel=1
 epoch=1
 pkgdesc='A lightweight display manager'
 arch=('i686' 'x86_64')
 url='https://launchpad.net/lightdm'
 license=('GPL3' 'LGPL3')
-makedepends=('gobject-introspection' 'gtk-doc' 'intltool' 'itstool' 
'libxklavier' 'polkit' 'qt4' 'qt5-base')
-source=(https://launchpad.net/lightdm/${pkgver%.*}/${pkgver}/+download/${pkgbase}-${pkgver}.tar.xz;
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool' 'itstool'
+ 'libxklavier' 'polkit' 'qt4' 'qt5-base')
+source=(https://launchpad.net/lightdm/${pkgver%.*}/${pkgver}/+download/lightdm-${pkgver}.tar.xz;
 'lightdm.service'
 'lightdm.tmpfiles'
 'lightdm.pam'
@@ -19,52 +20,54 @@
 'lightdm-autologin.pam'
 'lightdm.rules'
 'lightdm-default-config.patch'
-'lightdm-userlist.patch'
 'Xsession')
-sha256sums=('737123001a7ae2ab126c75f61dcebb767d082ec043c012285eab6fa6b0d6a58f'
+sha256sums=('eee3e440c329fddf969b6a76c2717ae1c758972adad5c6ffa1038626de303f5f'
 '0d2adba25cdbe59e97ffd302083db9d5e23920780f41e04f64512cd6b633289a'
 'b29521fbd7a48a8f60b93ecca3b30c30bcb71560de8033c8d39b25c22c6f696f'
 'e8c4c5fd3b801a390d201166fd1fb9730e78a5c62928768103b870b6bd980ea0'
 '33e3c3d6e16c8d30756754ea3f31f5457c5be0343686aad287692be34958984a'
 'a89566307e1c81c24f037d854cbd472d2f94f8a4b759877a01563a332319f7d6'
-'756437add6021bb10f1e8884dab518ea544f0f04a8201f5b72d6d6e0e8cc2a24'
-'50bbf183eee1f87b0f10e02c70ff0323f383006c914c4314a48843df547fa0b2'
+'ed3dca57ef19d32499b72668bc78eaff0d9e772718b76f3816c5ee5f816b1891'
 '4d5674906742200b3c171f978457e943560f2c10a2b9156fcd44da3796d185a2')
 
 prepare() {
-  cd ${pkgbase}-${pkgver}
+  cd lightdm-${pkgver}
 
-  patch -Np0 -i ../lightdm-userlist.patch
   patch -Np1 -i ../lightdm-default-config.patch
 }
 
 build() {
-  cd ${pkgbase}-${pkgver}
+  cd lightdm-${pkgver}
 
   export MOC4='moc-qt4'
   export MOC5='moc-qt5'
-  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--localstatedir='/var' --libexecdir=/usr/lib/${pkgbase} 
--with-greeter-user='lightdm' --with-greeter-session='lightdm-gtk-greeter' 
--disable-{static,tests}
-   make
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' \
+  --localstatedir='/var' --libexecdir='/usr/lib/lightdm' \
+  --with-greeter-user='lightdm' \
+  --with-greeter-session='lightdm-gtk-greeter' \
+  --disable-{static,tests}
+  make
 }
 
 package_lightdm() {
-depends=('libxklavier' 'polkit' 'systemd')
-optdepends=('accountsservice: limit visible accounts'
-'lightdm-gtk2-greeter: GTK2 greeter'
-'lightdm-gtk3-greeter: GTK3 greeter'
-'lightdm-kde-greeter: Qt greeter'
-'xorg-server-xephyr: LightDM test mode')
-backup=('etc/apparmor.d/lightdm-guest-session'
-'etc/lightdm/keys.conf'
-'etc/lightdm/lightdm.conf'
-'etc/lightdm/users.conf'
-'etc/lightdm/Xsession'
-'etc/pam.d/lightdm'
-'etc/pam.d/lightdm-autologin'
-'etc/pam.d/lightdm-greeter')
-install=${pkgbase}.install
+  depends=('libxklavier' 'polkit' 'systemd')
+  optdepends=('accountsservice: limit visible accounts'
+  'lightdm-gtk2-greeter: GTK2 greeter'
+  'lightdm-gtk3-greeter: GTK3 greeter'
+  'lightdm-kde-greeter: Qt greeter'
+  'xorg-server-xephyr: LightDM test mode')
+  backup=('etc/apparmor.d/lightdm-guest-session'
+  'etc/lightdm/keys.conf'
+  'etc/lightdm/lightdm.conf'
+  'etc/lightdm/users.conf'
+  'etc/lightdm/Xsession'
+  'etc/pam.d/lightdm'
+  'etc/pam.d/lightdm-autologin'
+  'etc/pam.d/lightdm-greeter')
+  install='lightdm.install'
 
-  cd ${pkgbase}-${pkgver}
+  cd lightdm-${pkgver}
 
   make DESTDIR=${pkgdir} install
   make DESTDIR=${pkgdir} -C liblightdm-qt uninstall
@@ -81,15 +84,15 @@
   chown 620:620 -R ${pkgdir}/var/lib/lightdm{,-data}
   chgrp 620 ${pkgdir}/var/log/lightdm
 
-# PAM
+  # PAM
   install -m 

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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:44:36
  Author: arodseth
Revision: 119962

upgpkg: gimp-ufraw 0.20-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:44:13 UTC (rev 119961)
+++ PKGBUILD2014-10-01 11:44:36 UTC (rev 119962)
@@ -4,7 +4,7 @@
 # Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
-pkgver=0.19.2
+pkgver=0.20
 pkgrel=1
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
@@ -16,7 +16,7 @@
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('73befe9f16f015a8c0f26cef3bb2e17cac9ae64aef2ade48c29aedb1ee51abd3')
+sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
 
 prepare() {
   # One of the include files that comes with cinepaint looks for 
../lib/wire/...


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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 13:44:13
  Author: alucryd
Revision: 119961

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

Added:
  lightdm/repos/community-i686/PKGBUILD
(from rev 119960, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-i686/Xsession
(from rev 119960, lightdm/trunk/Xsession)
  lightdm/repos/community-i686/lightdm-autologin.pam
(from rev 119960, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-i686/lightdm-default-config.patch
(from rev 119960, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-i686/lightdm-userlist.patch
(from rev 119960, lightdm/trunk/lightdm-userlist.patch)
  lightdm/repos/community-i686/lightdm.install
(from rev 119960, lightdm/trunk/lightdm.install)
  lightdm/repos/community-i686/lightdm.pam
(from rev 119960, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-i686/lightdm.rules
(from rev 119960, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-i686/lightdm.service
(from rev 119960, lightdm/trunk/lightdm.service)
  lightdm/repos/community-i686/lightdm.tmpfiles
(from rev 119960, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-x86_64/PKGBUILD
(from rev 119960, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-x86_64/Xsession
(from rev 119960, lightdm/trunk/Xsession)
  lightdm/repos/community-x86_64/lightdm-autologin.pam
(from rev 119960, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-x86_64/lightdm-default-config.patch
(from rev 119960, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-x86_64/lightdm-userlist.patch
(from rev 119960, lightdm/trunk/lightdm-userlist.patch)
  lightdm/repos/community-x86_64/lightdm.install
(from rev 119960, lightdm/trunk/lightdm.install)
  lightdm/repos/community-x86_64/lightdm.pam
(from rev 119960, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-x86_64/lightdm.rules
(from rev 119960, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-x86_64/lightdm.service
(from rev 119960, lightdm/trunk/lightdm.service)
  lightdm/repos/community-x86_64/lightdm.tmpfiles
(from rev 119960, 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-userlist.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-userlist.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 |  262 
 /Xsession |  114 ++
 /lightdm-autologin.pam|   26 ++
 /lightdm-default-config.patch |   80 +++
 /lightdm-userlist.patch   |   26 ++
 /lightdm.install  |   46 
 /lightdm.pam  |   14 +
 /lightdm.rules|   30 ++
 /lightdm.service  |   28 ++
 /lightdm.tmpfiles |2 
 community-i686/PKGBUILD   |  128 ---
 community-i686/Xsession   |   57 -
 community-i686/lightdm-autologin.pam  |   13 -
 community-i686/lightdm-default-config.patch   |   45 
 community-i686/lightdm-userlist.patch |   13 -
 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 |  128 ---
 community-x86_64/Xsession |   57 -
 community-x86_64/lightdm-autologin.pam|   13 -
 community-x86_64/lightdm-default-config.patch |   45 
 community-x86_64/lightdm-userlist.patch   |   13 -
 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 
 30 files 

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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:45:13
  Author: arodseth
Revision: 119965

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

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

-+
 /PKGBUILD   |  346 ++
 /go.install |   44 +
 community-i686/PKGBUILD |  173 -
 community-i686/go.install   |   22 --
 community-x86_64/PKGBUILD   |  173 -
 community-x86_64/go.install |   22 --
 6 files changed, 390 insertions(+), 390 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 11:45:03 UTC (rev 119964)
+++ community-i686/PKGBUILD 2014-10-01 11:45:13 UTC (rev 119965)
@@ -1,173 +0,0 @@
-# $Id$
-# Maintainer: Vesa Kaihlavirta ve...@iki.fi
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Rémy Oudompheng  r...@archlinux.org
-# Contributor: Andres Perera andres87p gmail
-# Contributor: Matthew Bauer mjbaue...@gmail.com
-# Contributor: Christian Himpel chres...@gmail.com
-# Contributor: Mike Rosset mike.ros...@gmail.com
-# Contributor: Daniel YC Lin dlin...@gmail.com
-# Contributor: John Luebs jklu...@gmail.com
-
-pkgname=go
-epoch=2
-pkgver=1.3.2
-pkgrel=1
-pkgdesc='Compiler and tools for the Go programming language from Google'
-arch=('x86_64' 'i686')
-url='http://golang.org/'
-license=('BSD')
-depends=('perl' 'gawk')
-makedepends=('inetutils' 'mercurial')
-options=('!strip' 'staticlibs')
-optdepends=('mercurial: for fetching sources from mercurial repositories'
-'git: for fetching sources from git repositories'
-'bzr: for fetching sources from bazaar repositories'
-'subversion: for fetching sources from subversion repositories')
-install=$pkgname.install
-source=($pkgname-$pkgver::hg+https://code.google.com/p/$pkgname#tag=$pkgname$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname-$pkgver/src
-
-  export GOROOT=$srcdir/$pkgname-$pkgver
-  export GOBIN=$GOROOT/bin
-  export GOPATH=$srcdir/
-  export GOROOT_FINAL=/usr/lib/go
-
-  #
-  # Arch Linux normally does not enable SSE2 for i686 because of older CPUs.
-  #
-  # However, exceptions are made for:
-  #  * Chromium, which is not expected to be used on older i686 CPUs
-  #  * Julia, which requires SSE2
-  #
-  # Go is so slow that it is unusable on i686 when SSE2 is not enabled, so I am
-  # also making an exception for Go.
-  #
-  # If you really want to build Go without SSE2 support, just uncomment the
-  # following export and rebuild:
-  #
-  # export GO386=387
-
-  # Enable ARM crosscompilation for linux
-  export GOOS=linux
-  export GOARCH=arm
-
-  bash make.bash
-
-  # Crosscompilation for various platforms (including linux)
-  for os in linux; do # darwin freebsd windows; do
-for arch in amd64 386; do
-  export GOOS=$os
-  export GOARCH=$arch
-  bash make.bash --no-clean
-done
-  done
-
-  GOOS=linux
-  case $CARCH in
-x86_64) GOARCH=amd64 ;;
-i686) GOARCH=386 ;;
-  esac
-
-  $GOROOT/bin/go get -d code.google.com/p/go.tools/cmd/godoc
-  $GOROOT/bin/go build -o $srcdir/godoc code.google.com/p/go.tools/cmd/godoc
-  for tool in vet cover; do
-$GOROOT/bin/go get -d code.google.com/p/go.tools/cmd/${tool}
-$GOROOT/bin/go build -o $GOROOT/pkg/tool/${GOOS}_${GOARCH}/${tool} 
code.google.com/p/go.tools/cmd/${tool}
-  done
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  export GO386=387
-
-  export GOOS=linux
-  if [ $CARCH == 'x86_64' ]; then
-export GOARCH=amd64
-  elif [ $CARCH == 'i686' ]; then
-export GOARCH=386
-  fi
-
-  export GOROOT=$srcdir/$pkgname-$pkgver
-  export GOBIN=$GOROOT/bin
-  export PATH=$srcdir/$pkgname-$pkgver/bin:$PATH
-
-  # TestSimpleMulticastListener will fail in standard chroot
-  cd src  bash run.bash --no-rebuild || true
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  export GOROOT=$srcdir/$pkgname-$pkgver
-  export GOBIN=$GOROOT/bin
-
-  install -Dm755 $srcdir/godoc $pkgdir/usr/bin/godoc
-
-  install -Dm644 LICENSE \
-$pkgdir/usr/share/licenses/go/LICENSE
-  install -Dm644 misc/bash/go \
-$pkgdir/usr/share/bash-completion/completions/go
-  install -Dm644 misc/emacs/go-mode-load.el \
-$pkgdir/usr/share/emacs/site-lisp/go-mode-load.el
-  install -Dm644 misc/emacs/go-mode.el \
-$pkgdir/usr/share/emacs/site-lisp/go-mode.el
-  install -Dm644 misc/zsh/go \
-$pkgdir/usr/share/zsh/site-functions/_go
-
-  for f in ftdetect/gofiletype.vim 

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

2014-10-01 Thread Evangelos Foutras
Date: Wednesday, October 1, 2014 @ 14:32:07
  Author: foutrelis
Revision: 223720

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

Added:
  mtr/repos/extra-i686/PKGBUILD
(from rev 223719, mtr/trunk/PKGBUILD)
  mtr/repos/extra-i686/mtr-0.85-grace-period.patch
(from rev 223719, mtr/trunk/mtr-0.85-grace-period.patch)
  mtr/repos/extra-x86_64/PKGBUILD
(from rev 223719, mtr/trunk/PKGBUILD)
  mtr/repos/extra-x86_64/mtr-0.85-grace-period.patch
(from rev 223719, mtr/trunk/mtr-0.85-grace-period.patch)
Deleted:
  mtr/repos/extra-i686/PKGBUILD
  mtr/repos/extra-x86_64/PKGBUILD

--+
 /PKGBUILD|  100 +
 extra-i686/PKGBUILD  |   42 
 extra-i686/mtr-0.85-grace-period.patch   |   71 
 extra-x86_64/PKGBUILD|   42 
 extra-x86_64/mtr-0.85-grace-period.patch |   71 
 5 files changed, 242 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-10-01 12:31:50 UTC (rev 223719)
+++ extra-i686/PKGBUILD 2014-10-01 12:32:07 UTC (rev 223720)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgbase=mtr
-pkgname=(mtr mtr-gtk)
-pkgver=0.85
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
-url=ba1e111d270178eb1d65e51ebf6503f
-md5sums=('aba1e111d270178eb1d65e51ebf6503f')
-
-build() {
-cp -r  $pkgbase-$pkgver $pkgbase-cli
-cd mtr-cli
-./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
-make
-
-cd $srcdir/$pkgbase-$pkgver
-./configure --prefix=/usr --sbindir=/usr/bin
-make
-}
-
-package_mtr() {
-pkgdesc=Combines the functionality of traceroute and ping into one tool 
(CLI version)
-depends=('ncurses' 'glib2')
-cd mtr-cli
-make DESTDIR=$pkgdir install
-}
-
-package_mtr-gtk() {
-pkgdesc=Combines the functionality of traceroute and ping into one tool 
(GTK version)
-depends=('ncurses' gtk2)
-conflicts=(mtr)
-provides=(mtr=$pkgver)
-
-cd $pkgbase-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: mtr/repos/extra-i686/PKGBUILD (from rev 223719, mtr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-10-01 12:32:07 UTC (rev 223720)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=mtr
+pkgname=(mtr mtr-gtk)
+pkgver=0.85
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://www.bitwizard.nl/mtr/;
+license=('GPL')
+makedepends=('ncurses' 'gtk2')
+source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz
+mtr-0.85-grace-period.patch)
+md5sums=('5e665c617e5659b6ec3e201ee7488eb1'
+ 'c5d16e124a4734adeaaf3e0b83ef40fb')
+
+prepare() {
+cd $srcdir/$pkgbase-$pkgver
+
+patch -Np1 -i ../mtr-0.85-grace-period.patch
+}
+
+build() {
+cp -r  $pkgbase-$pkgver $pkgbase-cli
+cd mtr-cli
+./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
+make
+
+cd $srcdir/$pkgbase-$pkgver
+./configure --prefix=/usr --sbindir=/usr/bin
+make
+}
+
+package_mtr() {
+pkgdesc=Combines the functionality of traceroute and ping into one tool 
(CLI version)
+depends=('ncurses' 'glib2')
+cd mtr-cli
+make DESTDIR=$pkgdir install
+}
+
+package_mtr-gtk() {
+pkgdesc=Combines the functionality of traceroute and ping into one tool 
(GTK version)
+depends=('ncurses' gtk2)
+conflicts=(mtr)
+provides=(mtr=$pkgver)
+
+cd $pkgbase-$pkgver
+make DESTDIR=$pkgdir install
+}

Copied: mtr/repos/extra-i686/mtr-0.85-grace-period.patch (from rev 223719, 
mtr/trunk/mtr-0.85-grace-period.patch)
===
--- extra-i686/mtr-0.85-grace-period.patch  (rev 0)
+++ extra-i686/mtr-0.85-grace-period.patch  2014-10-01 12:32:07 UTC (rev 
223720)
@@ -0,0 +1,71 @@
+From 6ce1601b27fdd95b44ed65d7fd83604860276d63 Mon Sep 17 00:00:00 2001
+From: Michal Sekletar sekleta...@gmail.com
+Date: Tue, 17 Sep 2013 16:11:20 +0200
+Subject: [PATCH] core: introduce grace period
+
+In report mode we break out from select loop immediately after we reach
+maximum count of iterations. But we should wait for packets which are still on
+the way.
+
+In order to fix the issue we introduce grace period during which we don't send
+out more packets but we just wait for responses which might be still on the 
way.
+
+resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1009051
+---
+ select.c | 26 +++---
+ 1 file changed, 23 insertions(+), 3 deletions(-)
+
+diff 

[arch-commits] Commit in mtr/trunk (PKGBUILD mtr-0.85-grace-period.patch)

2014-10-01 Thread Evangelos Foutras
Date: Wednesday, October 1, 2014 @ 14:31:50
  Author: foutrelis
Revision: 223719

upgpkg: mtr 0.85-2

- Fix FS#39132: checksum fails and website missing
- Fix FS#40793: mtr doesn't wait for last packets sent out in report mode

Added:
  mtr/trunk/mtr-0.85-grace-period.patch
Modified:
  mtr/trunk/PKGBUILD

-+
 PKGBUILD|   16 +++--
 mtr-0.85-grace-period.patch |   71 ++
 2 files changed, 83 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 09:40:52 UTC (rev 223718)
+++ PKGBUILD2014-10-01 12:31:50 UTC (rev 223719)
@@ -5,14 +5,22 @@
 pkgbase=mtr
 pkgname=(mtr mtr-gtk)
 pkgver=0.85
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
+url=http://www.bitwizard.nl/mtr/;
 license=('GPL')
 makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
-url=ba1e111d270178eb1d65e51ebf6503f
-md5sums=('aba1e111d270178eb1d65e51ebf6503f')
+source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz
+mtr-0.85-grace-period.patch)
+md5sums=('5e665c617e5659b6ec3e201ee7488eb1'
+ 'c5d16e124a4734adeaaf3e0b83ef40fb')
 
+prepare() {
+cd $srcdir/$pkgbase-$pkgver
+
+patch -Np1 -i ../mtr-0.85-grace-period.patch
+}
+
 build() {
 cp -r  $pkgbase-$pkgver $pkgbase-cli
 cd mtr-cli

Added: mtr-0.85-grace-period.patch
===
--- mtr-0.85-grace-period.patch (rev 0)
+++ mtr-0.85-grace-period.patch 2014-10-01 12:31:50 UTC (rev 223719)
@@ -0,0 +1,71 @@
+From 6ce1601b27fdd95b44ed65d7fd83604860276d63 Mon Sep 17 00:00:00 2001
+From: Michal Sekletar sekleta...@gmail.com
+Date: Tue, 17 Sep 2013 16:11:20 +0200
+Subject: [PATCH] core: introduce grace period
+
+In report mode we break out from select loop immediately after we reach
+maximum count of iterations. But we should wait for packets which are still on
+the way.
+
+In order to fix the issue we introduce grace period during which we don't send
+out more packets but we just wait for responses which might be still on the 
way.
+
+resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1009051
+---
+ select.c | 26 +++---
+ 1 file changed, 23 insertions(+), 3 deletions(-)
+
+diff --git a/select.c b/select.c
+index 29088fd..31bfd5f 100644
+--- a/select.c
 b/select.c
+@@ -45,6 +45,8 @@ static struct timeval intervaltime;
+ int display_offset = 0;
+ 
+ 
++#define GRACETIME (5 * 1000*1000)
++
+ void select_loop(void) {
+   fd_set readfd;
+   fd_set writefd;
+@@ -57,8 +59,12 @@ void select_loop(void) {
+   int NumPing = 0;
+   int paused = 0;
+   struct timeval lasttime, thistime, selecttime;
++  struct timeval startgrace;
+   int dt;
+   int rv; 
++  int graceperiod = 0;
++
++  memset(startgrace, 0, sizeof(startgrace));
+ 
+   gettimeofday(lasttime, NULL);
+ 
+@@ -124,10 +130,24 @@ void select_loop(void) {
+  (thistime.tv_sec == lasttime.tv_sec + intervaltime.tv_sec 
+   thistime.tv_usec = lasttime.tv_usec + intervaltime.tv_usec)) {
+ lasttime = thistime;
+-if(NumPing = MaxPing  (!Interactive || ForceMaxPing))
++
++if (!graceperiod) {
++  if (NumPing = MaxPing  (!Interactive || ForceMaxPing)) {
++graceperiod = 1;
++startgrace = thistime;
++  }
++
++  /* do not send out batch when we've already initiated grace period 
*/
++  if (!graceperiod  net_send_batch())
++NumPing++;
++}
++  }
++
++  if (graceperiod) {
++dt = (thistime.tv_usec - startgrace.tv_usec) +
++  100 * (thistime.tv_sec - startgrace.tv_sec);
++if (dt  GRACETIME)
+   return;
+-if (net_send_batch())
+-  NumPing++;
+   }
+ 
+   selecttime.tv_usec = (thistime.tv_usec - lasttime.tv_usec);


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 14:47:01
  Author: arodseth
Revision: 119966

upgpkg: eclipse-cdt 8.5.0-1

Modified:
  eclipse-cdt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:45:13 UTC (rev 119965)
+++ PKGBUILD2014-10-01 12:47:01 UTC (rev 119966)
@@ -5,7 +5,7 @@
 # Contributor: Raimar Bühmann rai...@buehmann.de
 
 pkgname=eclipse-cdt
-pkgver=8.4.0
+pkgver=8.5.0
 pkgrel=1
 pkgdesc='C/C++ Plugin for Eclipse'
 arch=('any')
@@ -12,15 +12,9 @@
 url='http://www.eclipse.org/cdt'
 license=('EPL')
 depends=('eclipse' 'libxtst')
-source=(ftp://ftp.uninett.no/pub/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
-sha1sums=('625e996ef99c4f0f6eec14f7b58e6fd24908ffdd')
+source=(http://ftp.snt.utwente.nl/pub/software/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
+sha1sums=('d060b87508121a5673df052a317909a696b42cfa')
 
-#prepare() {
-  # remove features and plug-ins containing sources, see FS#40635
-  #rm features/*.source_*
-  #rm plugins/*.source_*
-#}
-
 package() {
   d=$pkgdir/usr/share/eclipse/dropins/cdt/eclipse
   install -d $d


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

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 14:47:08
  Author: arodseth
Revision: 119967

archrelease: copy trunk to community-any

Added:
  eclipse-cdt/repos/community-any/PKGBUILD
(from rev 119966, eclipse-cdt/trunk/PKGBUILD)
Deleted:
  eclipse-cdt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 12:47:01 UTC (rev 119966)
+++ PKGBUILD2014-10-01 12:47:08 UTC (rev 119967)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Raimar Bühmann rai...@buehmann.de
-
-pkgname=eclipse-cdt
-pkgver=8.4.0
-pkgrel=1
-pkgdesc='C/C++ Plugin for Eclipse'
-arch=('any')
-url='http://www.eclipse.org/cdt'
-license=('EPL')
-depends=('eclipse' 'libxtst')
-source=(ftp://ftp.uninett.no/pub/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
-sha1sums=('625e996ef99c4f0f6eec14f7b58e6fd24908ffdd')
-
-#prepare() {
-  # remove features and plug-ins containing sources, see FS#40635
-  #rm features/*.source_*
-  #rm plugins/*.source_*
-#}
-
-package() {
-  d=$pkgdir/usr/share/eclipse/dropins/cdt/eclipse
-  install -d $d
-  cp -a features $d
-  cp -a plugins $d
-}
-
-# vim:set ts=2 sw=2 et:

Copied: eclipse-cdt/repos/community-any/PKGBUILD (from rev 119966, 
eclipse-cdt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 12:47:08 UTC (rev 119967)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Raimar Bühmann rai...@buehmann.de
+
+pkgname=eclipse-cdt
+pkgver=8.5.0
+pkgrel=1
+pkgdesc='C/C++ Plugin for Eclipse'
+arch=('any')
+url='http://www.eclipse.org/cdt'
+license=('EPL')
+depends=('eclipse' 'libxtst')
+source=(http://ftp.snt.utwente.nl/pub/software/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
+sha1sums=('d060b87508121a5673df052a317909a696b42cfa')
+
+package() {
+  d=$pkgdir/usr/share/eclipse/dropins/cdt/eclipse
+  install -d $d
+  cp -a features $d
+  cp -a plugins $d
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 15:37:00
  Author: fyan
Revision: 119969

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

Added:
  kimtoy/repos/community-staging-i686/
  kimtoy/repos/community-staging-i686/PKGBUILD
(from rev 119968, kimtoy/trunk/PKGBUILD)
  kimtoy/repos/community-staging-i686/kimtoy.install
(from rev 119968, kimtoy/trunk/kimtoy.install)
  kimtoy/repos/community-staging-x86_64/
  kimtoy/repos/community-staging-x86_64/PKGBUILD
(from rev 119968, kimtoy/trunk/PKGBUILD)
  kimtoy/repos/community-staging-x86_64/kimtoy.install
(from rev 119968, kimtoy/trunk/kimtoy.install)

-+
 community-staging-i686/PKGBUILD |   37 ++
 community-staging-i686/kimtoy.install   |   11 
 community-staging-x86_64/PKGBUILD   |   37 ++
 community-staging-x86_64/kimtoy.install |   11 
 4 files changed, 96 insertions(+)

Copied: kimtoy/repos/community-staging-i686/PKGBUILD (from rev 119968, 
kimtoy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 13:37:00 UTC (rev 119969)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: CSSlayer wen...@gmail.com
+
+pkgname=kimtoy
+pkgver=1.9.2
+pkgdesc=Standalone input method panel
+pkgrel=3
+arch=('i686' 'x86_64')
+url=http://kde-apps.org/content/show.php/KIMToy?content=140967;
+license=('GPL')
+makedepends=('cmake' 'automoc4' 'fcitx' 'scim' 'dbus-c++') #ibus) ibus support 
not working due to upstream ABI change
+depends=('kdelibs')
+optdepends=('fcitx: fcitx support'
+'scim: scim support'
+'dbus-c++: scim support')
+#'ibus: ibus support') ibus support not working due to upstream 
ABI change
+install=$pkgname.install
+source=(http://kde-apps.org/CONTENT/content-files/140967-kimtoy-${pkgver}.tar.bz2)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  mv $pkgdir/usr/share/locale $srcdir/tmp_locale
+  mkdir -p $pkgdir/usr/share/locale
+  mv $srcdir/tmp_locale $pkgdir/usr/share/locale/kde4
+}
+
+md5sums=('94f09a33940d189059f9620427689af5')

Copied: kimtoy/repos/community-staging-i686/kimtoy.install (from rev 119968, 
kimtoy/trunk/kimtoy.install)
===
--- community-staging-i686/kimtoy.install   (rev 0)
+++ community-staging-i686/kimtoy.install   2014-10-01 13:37:00 UTC (rev 
119969)
@@ -0,0 +1,11 @@
+post_upgrade() {
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}

Copied: kimtoy/repos/community-staging-x86_64/PKGBUILD (from rev 119968, 
kimtoy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 13:37:00 UTC (rev 119969)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: CSSlayer wen...@gmail.com
+
+pkgname=kimtoy
+pkgver=1.9.2
+pkgdesc=Standalone input method panel
+pkgrel=3
+arch=('i686' 'x86_64')
+url=http://kde-apps.org/content/show.php/KIMToy?content=140967;
+license=('GPL')
+makedepends=('cmake' 'automoc4' 'fcitx' 'scim' 'dbus-c++') #ibus) ibus support 
not working due to upstream ABI change
+depends=('kdelibs')
+optdepends=('fcitx: fcitx support'
+'scim: scim support'
+'dbus-c++: scim support')
+#'ibus: ibus support') ibus support not working due to upstream 
ABI change
+install=$pkgname.install
+source=(http://kde-apps.org/CONTENT/content-files/140967-kimtoy-${pkgver}.tar.bz2)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  mv $pkgdir/usr/share/locale $srcdir/tmp_locale
+  mkdir -p $pkgdir/usr/share/locale
+  mv $srcdir/tmp_locale $pkgdir/usr/share/locale/kde4
+}
+
+md5sums=('94f09a33940d189059f9620427689af5')

Copied: kimtoy/repos/community-staging-x86_64/kimtoy.install (from rev 119968, 
kimtoy/trunk/kimtoy.install)
===
--- community-staging-x86_64/kimtoy.install (rev 0)
+++ community-staging-x86_64/kimtoy.install 2014-10-01 13:37:00 UTC (rev 
119969)
@@ -0,0 +1,11 @@
+post_upgrade() {
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 15:36:35
  Author: fyan
Revision: 119968

upgpkg: kimtoy 1.9.2-3

kdelibs rebuild

Modified:
  kimtoy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 12:47:08 UTC (rev 119967)
+++ PKGBUILD2014-10-01 13:36:35 UTC (rev 119968)
@@ -1,16 +1,16 @@
 # $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: CSSlayer wen...@gmail.com
 
 pkgname=kimtoy
 pkgver=1.9.2
 pkgdesc=Standalone input method panel
-pkgrel=2
-arch=(i686 x86_64)
+pkgrel=3
+arch=('i686' 'x86_64')
 url=http://kde-apps.org/content/show.php/KIMToy?content=140967;
-license=(GPL)
-makedepends=(cmake automoc4 fcitx scim dbus-c++) #ibus) ibus support not 
working due to upstream ABI change
-depends=(kdelibs)
+license=('GPL')
+makedepends=('cmake' 'automoc4' 'fcitx' 'scim' 'dbus-c++') #ibus) ibus support 
not working due to upstream ABI change
+depends=('kdelibs')
 optdepends=('fcitx: fcitx support'
 'scim: scim support'
 'dbus-c++: scim support')
@@ -25,10 +25,13 @@
   make
 }
 
-package ()
-{
+package() {
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
+
+  mv $pkgdir/usr/share/locale $srcdir/tmp_locale
+  mkdir -p $pkgdir/usr/share/locale
+  mv $srcdir/tmp_locale $pkgdir/usr/share/locale/kde4
 }
 
 md5sums=('94f09a33940d189059f9620427689af5')


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

2014-10-01 Thread Sébastien Luttringer
Date: Wednesday, October 1, 2014 @ 17:01:28
  Author: seblu
Revision: 119971

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

Added:
  mailman/repos/community-i686/01-mailman-2.1-build.patch
(from rev 119970, mailman/trunk/01-mailman-2.1-build.patch)
  mailman/repos/community-i686/PKGBUILD
(from rev 119970, mailman/trunk/PKGBUILD)
  mailman/repos/community-i686/mailman-checkdbs.service
(from rev 119970, mailman/trunk/mailman-checkdbs.service)
  mailman/repos/community-i686/mailman-checkdbs.timer
(from rev 119970, mailman/trunk/mailman-checkdbs.timer)
  mailman/repos/community-i686/mailman-cullbadshunt.service
(from rev 119970, mailman/trunk/mailman-cullbadshunt.service)
  mailman/repos/community-i686/mailman-cullbadshunt.timer
(from rev 119970, mailman/trunk/mailman-cullbadshunt.timer)
  mailman/repos/community-i686/mailman-disabled.service
(from rev 119970, mailman/trunk/mailman-disabled.service)
  mailman/repos/community-i686/mailman-disabled.timer
(from rev 119970, mailman/trunk/mailman-disabled.timer)
  mailman/repos/community-i686/mailman-gatenews.service
(from rev 119970, mailman/trunk/mailman-gatenews.service)
  mailman/repos/community-i686/mailman-gatenews.timer
(from rev 119970, mailman/trunk/mailman-gatenews.timer)
  mailman/repos/community-i686/mailman-mailpasswds.service
(from rev 119970, mailman/trunk/mailman-mailpasswds.service)
  mailman/repos/community-i686/mailman-mailpasswds.timer
(from rev 119970, mailman/trunk/mailman-mailpasswds.timer)
  mailman/repos/community-i686/mailman-nightlygzip.service
(from rev 119970, mailman/trunk/mailman-nightlygzip.service)
  mailman/repos/community-i686/mailman-nightlygzip.timer
(from rev 119970, mailman/trunk/mailman-nightlygzip.timer)
  mailman/repos/community-i686/mailman-senddigests.service
(from rev 119970, mailman/trunk/mailman-senddigests.service)
  mailman/repos/community-i686/mailman-senddigests.timer
(from rev 119970, mailman/trunk/mailman-senddigests.timer)
  mailman/repos/community-i686/mailman.install
(from rev 119970, mailman/trunk/mailman.install)
  mailman/repos/community-i686/mailman.profile.csh
(from rev 119970, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-i686/mailman.profile.sh
(from rev 119970, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-i686/mailman.service
(from rev 119970, mailman/trunk/mailman.service)
  mailman/repos/community-i686/mailman.sysusers
(from rev 119970, mailman/trunk/mailman.sysusers)
  mailman/repos/community-x86_64/01-mailman-2.1-build.patch
(from rev 119970, mailman/trunk/01-mailman-2.1-build.patch)
  mailman/repos/community-x86_64/PKGBUILD
(from rev 119970, mailman/trunk/PKGBUILD)
  mailman/repos/community-x86_64/mailman-checkdbs.service
(from rev 119970, mailman/trunk/mailman-checkdbs.service)
  mailman/repos/community-x86_64/mailman-checkdbs.timer
(from rev 119970, mailman/trunk/mailman-checkdbs.timer)
  mailman/repos/community-x86_64/mailman-cullbadshunt.service
(from rev 119970, mailman/trunk/mailman-cullbadshunt.service)
  mailman/repos/community-x86_64/mailman-cullbadshunt.timer
(from rev 119970, mailman/trunk/mailman-cullbadshunt.timer)
  mailman/repos/community-x86_64/mailman-disabled.service
(from rev 119970, mailman/trunk/mailman-disabled.service)
  mailman/repos/community-x86_64/mailman-disabled.timer
(from rev 119970, mailman/trunk/mailman-disabled.timer)
  mailman/repos/community-x86_64/mailman-gatenews.service
(from rev 119970, mailman/trunk/mailman-gatenews.service)
  mailman/repos/community-x86_64/mailman-gatenews.timer
(from rev 119970, mailman/trunk/mailman-gatenews.timer)
  mailman/repos/community-x86_64/mailman-mailpasswds.service
(from rev 119970, mailman/trunk/mailman-mailpasswds.service)
  mailman/repos/community-x86_64/mailman-mailpasswds.timer
(from rev 119970, mailman/trunk/mailman-mailpasswds.timer)
  mailman/repos/community-x86_64/mailman-nightlygzip.service
(from rev 119970, mailman/trunk/mailman-nightlygzip.service)
  mailman/repos/community-x86_64/mailman-nightlygzip.timer
(from rev 119970, mailman/trunk/mailman-nightlygzip.timer)
  mailman/repos/community-x86_64/mailman-senddigests.service
(from rev 119970, mailman/trunk/mailman-senddigests.service)
  mailman/repos/community-x86_64/mailman-senddigests.timer
(from rev 119970, mailman/trunk/mailman-senddigests.timer)
  mailman/repos/community-x86_64/mailman.install
(from rev 119970, mailman/trunk/mailman.install)
  mailman/repos/community-x86_64/mailman.profile.csh
(from rev 119970, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-x86_64/mailman.profile.sh
(from rev 119970, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-x86_64/mailman.service
(from rev 119970, mailman/trunk/mailman.service)
  mailman/repos/community-x86_64/mailman.sysusers
(from rev 119970, mailman/trunk/mailman.sysusers)

[arch-commits] Commit in mailman/trunk (19 files)

2014-10-01 Thread Sébastien Luttringer
Date: Wednesday, October 1, 2014 @ 17:00:14
  Author: seblu
Revision: 119970

upgpkg: mailman 2.1.18.1-2

- Add systemd timers
- Switch to systemd-sysusers

Added:
  mailman/trunk/01-mailman-2.1-build.patch
(from rev 119881, mailman/trunk/mailman-2.1-build.patch)
  mailman/trunk/mailman-checkdbs.service
  mailman/trunk/mailman-checkdbs.timer
  mailman/trunk/mailman-cullbadshunt.service
  mailman/trunk/mailman-cullbadshunt.timer
  mailman/trunk/mailman-disabled.service
  mailman/trunk/mailman-disabled.timer
  mailman/trunk/mailman-gatenews.service
  mailman/trunk/mailman-gatenews.timer
  mailman/trunk/mailman-mailpasswds.service
  mailman/trunk/mailman-mailpasswds.timer
  mailman/trunk/mailman-nightlygzip.service
  mailman/trunk/mailman-nightlygzip.timer
  mailman/trunk/mailman-senddigests.service
  mailman/trunk/mailman-senddigests.timer
  mailman/trunk/mailman.sysusers
Modified:
  mailman/trunk/PKGBUILD
  mailman/trunk/mailman.install
Deleted:
  mailman/trunk/mailman-2.1-build.patch

--+
 01-mailman-2.1-build.patch   |  694 +
 PKGBUILD |   74 +++-
 mailman-2.1-build.patch  |  694 -
 mailman-checkdbs.service |   10 
 mailman-checkdbs.timer   |   10 
 mailman-cullbadshunt.service |   10 
 mailman-cullbadshunt.timer   |   10 
 mailman-disabled.service |   10 
 mailman-disabled.timer   |   10 
 mailman-gatenews.service |   10 
 mailman-gatenews.timer   |   10 
 mailman-mailpasswds.service  |   10 
 mailman-mailpasswds.timer|   10 
 mailman-nightlygzip.service  |   10 
 mailman-nightlygzip.timer|   10 
 mailman-senddigests.service  |   10 
 mailman-senddigests.timer|   10 
 mailman.install  |   16 
 mailman.sysusers |1 
 19 files changed, 895 insertions(+), 724 deletions(-)

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


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

2014-10-01 Thread speps
Date: Wednesday, October 1, 2014 @ 17:09:02
  Author: speps
Revision: 119972

upgpkg: qtcurve 1.8.18-3
https://www.archlinux.org/todo/moving-kde4-translations/

Modified:
  qtcurve/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 15:01:28 UTC (rev 119971)
+++ PKGBUILD2014-10-01 15:09:02 UTC (rev 119972)
@@ -7,7 +7,7 @@
 pkgbase=qtcurve
 pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
 pkgver=1.8.18
-pkgrel=2
+pkgrel=3
 pkgdesc='A configurable set of widget styles for KDE and Gtk'
 arch=('i686' 'x86_64')
 url='https://github.com/QtCurve/qtcurve'
@@ -39,6 +39,7 @@
   cd ../build-kde4
   cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
-DENABLE_GTK2=false \
-DENABLE_QT5=false
   make


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

2014-10-01 Thread speps
Date: Wednesday, October 1, 2014 @ 17:09:19
  Author: speps
Revision: 119973

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

Added:
  qtcurve/repos/community-staging-i686/
  qtcurve/repos/community-staging-i686/PKGBUILD
(from rev 119972, qtcurve/trunk/PKGBUILD)
  qtcurve/repos/community-staging-x86_64/
  qtcurve/repos/community-staging-x86_64/PKGBUILD
(from rev 119972, qtcurve/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   80 
 community-staging-x86_64/PKGBUILD |   80 
 2 files changed, 160 insertions(+)

Copied: qtcurve/repos/community-staging-i686/PKGBUILD (from rev 119972, 
qtcurve/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-01 15:09:19 UTC (rev 119973)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=3
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+
https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  depends=('libx11')
+  cd $pkgbase-$pkgver/build/lib/utils
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-gtk2() {
+  depends=('qtcurve-utils' 'gtk2')
+  cd $pkgbase-$pkgver/build/gtk2
+  make DESTDIR=$pkgdir install
+  cd ../lib/cairo
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt4() {
+  depends=('qtcurve-utils' 'qt4')
+  cd $pkgbase-$pkgver/build/qt4
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-qt5() {
+  depends=('qtcurve-utils' 'qt5-svg' 'qt5-x11extras')
+  cd $pkgbase-$pkgver/build/qt5
+  make DESTDIR=$pkgdir install
+}
+
+package_qtcurve-kde4() {
+  depends=('qtcurve-utils' 'kdebase-workspace')
+  cd $pkgbase-$pkgver/build-kde4/qt4
+  make DESTDIR=$pkgdir install
+  cd ../po
+  make DESTDIR=$pkgdir install
+}

Copied: qtcurve/repos/community-staging-x86_64/PKGBUILD (from rev 119972, 
qtcurve/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-01 15:09:19 UTC (rev 119973)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=qtcurve
+pkgname=('qtcurve-utils' 'qtcurve-gtk2' 'qtcurve-qt4' 'qtcurve-qt5' 
'qtcurve-kde4')
+pkgver=1.8.18
+pkgrel=3
+pkgdesc='A configurable set of widget styles for KDE and Gtk'
+arch=('i686' 'x86_64')
+url='https://github.com/QtCurve/qtcurve'
+license=('LGPL')
+groups=('qtcurve')
+makedepends=('cmake' 'automoc4' 'gtk2' 'qt4' 'qt5-svg' 'qt5-x11extras' 
'kdebase-workspace')
+source=($pkgbase-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+
https://github.com/QtCurve/qtcurve/commit/323402d8b99502300f65e909c61153cbd5d5d997.diff;)
+md5sums=('422d1876d944bb278855f320eda19368'
+ '632c1dfa26fcc5f5d45fe082c9738f3b')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # fix FS#40524 - Qt 5.3 build fix
+  patch -p1 -i ../${source[1]##*/}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir build{,-kde4}
+  cd build
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_QT4_ENABLE_KDE=false
+  make
+
+  cd ../build-kde4
+  cmake .. -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DQTC_LOCALE_DIR=/usr/share/locale/kde4 \
+   -DENABLE_GTK2=false \
+   -DENABLE_QT5=false
+  make
+}
+
+package_qtcurve-utils() {
+  

[arch-commits] Commit in (4 files)

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 17:12:07
  Author: fyan
Revision: 119974

addpkg: soundfont-fluid 2-2

Added:
  soundfont-fluid/
  soundfont-fluid/repos/
  soundfont-fluid/trunk/
  soundfont-fluid/trunk/PKGBUILD

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

Added: soundfont-fluid/trunk/PKGBUILD
===
--- soundfont-fluid/trunk/PKGBUILD  (rev 0)
+++ soundfont-fluid/trunk/PKGBUILD  2014-10-01 15:12:07 UTC (rev 119974)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Star Brilliant echo bTEzMjUzQGhvdG1haWwuY29tCg== | base64 -d
+
+pkgname=soundfont-fluid
+pkgver=2
+pkgrel=2
+pkgdesc=FluidR3_GM soundfont
+arch=('any')
+#url=http://www.musescore.org/en/handbook/soundfont;
+url=http://www.hammersound.net;
+license=('custom:Public Domain')
+source=(http://www.musescore.org/download/fluid-soundfont.tar.gz;)
+md5sums=('bc0df95c7f3c33a82e606a5f4e601594')
+
+package() {
+  install -Dm0644 $srcdir/FluidR3 GM2-2.SF2 
$pkgdir/usr/share/soundfonts/FluidR3_GM2-2.sf2
+  install -Dm0644 $srcdir/Fluid R3- Readme.doc 
$pkgdir/usr/share/doc/soundfont-fluid/Fluid R3- Readme.doc
+  install -Dm0644 $srcdir/Changelog.txt 
$pkgdir/usr/share/doc/soundfont-fluid/Changelog.txt
+}


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


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 17:24:54
  Author: fyan
Revision: 119975

archrelease: copy trunk to community-any

Added:
  soundfont-fluid/repos/community-any/
  soundfont-fluid/repos/community-any/PKGBUILD
(from rev 119974, soundfont-fluid/trunk/PKGBUILD)

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

Copied: soundfont-fluid/repos/community-any/PKGBUILD (from rev 119974, 
soundfont-fluid/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-10-01 15:24:54 UTC (rev 119975)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Star Brilliant echo bTEzMjUzQGhvdG1haWwuY29tCg== | base64 -d
+
+pkgname=soundfont-fluid
+pkgver=2
+pkgrel=2
+pkgdesc=FluidR3_GM soundfont
+arch=('any')
+#url=http://www.musescore.org/en/handbook/soundfont;
+url=http://www.hammersound.net;
+license=('custom:Public Domain')
+source=(http://www.musescore.org/download/fluid-soundfont.tar.gz;)
+md5sums=('bc0df95c7f3c33a82e606a5f4e601594')
+
+package() {
+  install -Dm0644 $srcdir/FluidR3 GM2-2.SF2 
$pkgdir/usr/share/soundfonts/FluidR3_GM2-2.sf2
+  install -Dm0644 $srcdir/Fluid R3- Readme.doc 
$pkgdir/usr/share/doc/soundfont-fluid/Fluid R3- Readme.doc
+  install -Dm0644 $srcdir/Changelog.txt 
$pkgdir/usr/share/doc/soundfont-fluid/Changelog.txt
+}


[arch-commits] Commit in (5 files)

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 18:11:35
  Author: fyan
Revision: 119976

addpkg: python-h5py 2.3.1-2

Added:
  python-h5py/
  python-h5py/repos/
  python-h5py/trunk/
  python-h5py/trunk/DOCS_LICENSE.txt
  python-h5py/trunk/PKGBUILD

--+
 DOCS_LICENSE.txt |   25 ++
 PKGBUILD |   59 +
 2 files changed, 84 insertions(+)

Added: python-h5py/trunk/DOCS_LICENSE.txt
===
--- python-h5py/trunk/DOCS_LICENSE.txt  (rev 0)
+++ python-h5py/trunk/DOCS_LICENSE.txt  2014-10-01 16:11:35 UTC (rev 119976)
@@ -0,0 +1,25 @@
+Summary
+===
+
+The h5py documentation is licensed under the Creative Commons BY license.
+This license allows you to reproduce and create derivative works based on the
+documentation contained in this directory, provided you acknowledge the h5py
+authors when you do so.
+
+We suggest you use the following method of acknowledgement:
+
+
+HDF5 for Python Documentation
+Copyright 2008-2011 Andrew Collette and contributers
+http://h5py.alfven.org
+
+
+License Terms
+=
+
+The text of this license is available on the Creative Commons website:
+http://creativecommons.org/licenses/by/3.0/legalcode
+
+A non-official summary is also available:
+http://creativecommons.org/licenses/by/3.0/
+

Added: python-h5py/trunk/PKGBUILD
===
--- python-h5py/trunk/PKGBUILD  (rev 0)
+++ python-h5py/trunk/PKGBUILD  2014-10-01 16:11:35 UTC (rev 119976)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Rich Li r...@dranek.com
+# Contributor: Sebastien Binet binet@lblbox
+
+pkgbase=python-h5py
+pkgname=(python-h5py python2-h5py)
+pkgver=2.3.1
+pkgrel=2
+pkgdesc=General-purpose Python bindings for the HDF5 library
+url=http://www.h5py.org/;
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('cython' 'cython2' 'hdf5' 'python-numpy' 'python2-numpy')
+source=(https://pypi.python.org/packages/source/h/h5py/h5py-$pkgver.tar.gz;
+DOCS_LICENSE.txt)
+md5sums=('8f32f96d653e904d20f9f910c6d9dd91'
+ '747a856995bb271af44733b2fdab642b')
+
+prepare() {
+  cp -a h5py-$pkgver{,-py2}
+}
+
+build() {
+  cd $srcdir/h5py-$pkgver
+  python setup.py build
+
+  cd $srcdir/h5py-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/h5py-$pkgver
+  python setup.py test
+
+  cd $srcdir/h5py-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-h5py() {
+  depends=('hdf5' 'python-numpy')
+  conflicts=('hdf5-openmpi' 'python-h5py-openmpi')
+
+  cd $srcdir/h5py-$pkgver
+  python setup.py install --prefix=/usr --root=$pkgdir/ --optimize=1
+
+  install -D $srcdir/DOCS_LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-h5py() {
+  depends=('hdf5' 'python2-numpy')
+  conflicts=('hdf5-openmpi' 'python2-h5py-openmpi')
+
+  cd $srcdir/h5py-$pkgver-py2
+  python2 setup.py install --prefix=/usr --root=$pkgdir/ --optimize=1
+
+  install -D $srcdir/DOCS_LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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


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

2014-10-01 Thread Felix Yan
Date: Wednesday, October 1, 2014 @ 18:18:00
  Author: fyan
Revision: 119977

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

Added:
  python-h5py/repos/community-i686/
  python-h5py/repos/community-i686/DOCS_LICENSE.txt
(from rev 119976, python-h5py/trunk/DOCS_LICENSE.txt)
  python-h5py/repos/community-i686/PKGBUILD
(from rev 119976, python-h5py/trunk/PKGBUILD)
  python-h5py/repos/community-x86_64/
  python-h5py/repos/community-x86_64/DOCS_LICENSE.txt
(from rev 119976, python-h5py/trunk/DOCS_LICENSE.txt)
  python-h5py/repos/community-x86_64/PKGBUILD
(from rev 119976, python-h5py/trunk/PKGBUILD)

---+
 community-i686/DOCS_LICENSE.txt   |   25 +++
 community-i686/PKGBUILD   |   59 
 community-x86_64/DOCS_LICENSE.txt |   25 +++
 community-x86_64/PKGBUILD |   59 
 4 files changed, 168 insertions(+)

Copied: python-h5py/repos/community-i686/DOCS_LICENSE.txt (from rev 119976, 
python-h5py/trunk/DOCS_LICENSE.txt)
===
--- community-i686/DOCS_LICENSE.txt (rev 0)
+++ community-i686/DOCS_LICENSE.txt 2014-10-01 16:18:00 UTC (rev 119977)
@@ -0,0 +1,25 @@
+Summary
+===
+
+The h5py documentation is licensed under the Creative Commons BY license.
+This license allows you to reproduce and create derivative works based on the
+documentation contained in this directory, provided you acknowledge the h5py
+authors when you do so.
+
+We suggest you use the following method of acknowledgement:
+
+
+HDF5 for Python Documentation
+Copyright 2008-2011 Andrew Collette and contributers
+http://h5py.alfven.org
+
+
+License Terms
+=
+
+The text of this license is available on the Creative Commons website:
+http://creativecommons.org/licenses/by/3.0/legalcode
+
+A non-official summary is also available:
+http://creativecommons.org/licenses/by/3.0/
+

Copied: python-h5py/repos/community-i686/PKGBUILD (from rev 119976, 
python-h5py/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 16:18:00 UTC (rev 119977)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Rich Li r...@dranek.com
+# Contributor: Sebastien Binet binet@lblbox
+
+pkgbase=python-h5py
+pkgname=(python-h5py python2-h5py)
+pkgver=2.3.1
+pkgrel=2
+pkgdesc=General-purpose Python bindings for the HDF5 library
+url=http://www.h5py.org/;
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('cython' 'cython2' 'hdf5' 'python-numpy' 'python2-numpy')
+source=(https://pypi.python.org/packages/source/h/h5py/h5py-$pkgver.tar.gz;
+DOCS_LICENSE.txt)
+md5sums=('8f32f96d653e904d20f9f910c6d9dd91'
+ '747a856995bb271af44733b2fdab642b')
+
+prepare() {
+  cp -a h5py-$pkgver{,-py2}
+}
+
+build() {
+  cd $srcdir/h5py-$pkgver
+  python setup.py build
+
+  cd $srcdir/h5py-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/h5py-$pkgver
+  python setup.py test
+
+  cd $srcdir/h5py-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-h5py() {
+  depends=('hdf5' 'python-numpy')
+  conflicts=('hdf5-openmpi' 'python-h5py-openmpi')
+
+  cd $srcdir/h5py-$pkgver
+  python setup.py install --prefix=/usr --root=$pkgdir/ --optimize=1
+
+  install -D $srcdir/DOCS_LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-h5py() {
+  depends=('hdf5' 'python2-numpy')
+  conflicts=('hdf5-openmpi' 'python2-h5py-openmpi')
+
+  cd $srcdir/h5py-$pkgver-py2
+  python2 setup.py install --prefix=/usr --root=$pkgdir/ --optimize=1
+
+  install -D $srcdir/DOCS_LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-h5py/repos/community-x86_64/DOCS_LICENSE.txt (from rev 119976, 
python-h5py/trunk/DOCS_LICENSE.txt)
===
--- community-x86_64/DOCS_LICENSE.txt   (rev 0)
+++ community-x86_64/DOCS_LICENSE.txt   2014-10-01 16:18:00 UTC (rev 119977)
@@ -0,0 +1,25 @@
+Summary
+===
+
+The h5py documentation is licensed under the Creative Commons BY license.
+This license allows you to reproduce and create derivative works based on the
+documentation contained in this directory, provided you acknowledge the h5py
+authors when you do so.
+
+We suggest you use the following method of acknowledgement:
+
+
+HDF5 for Python Documentation
+Copyright 2008-2011 Andrew Collette and contributers
+http://h5py.alfven.org
+
+
+License Terms
+=
+
+The text 

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

2014-10-01 Thread Balló György
Date: Wednesday, October 1, 2014 @ 18:40:59
  Author: bgyorgy
Revision: 119979

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

Added:
  nemo/repos/community-testing-i686/
  nemo/repos/community-testing-i686/PKGBUILD
(from rev 119978, nemo/trunk/PKGBUILD)
  nemo/repos/community-testing-i686/desktop-theme.patch
(from rev 119978, nemo/trunk/desktop-theme.patch)
  nemo/repos/community-testing-i686/nemo.install
(from rev 119978, nemo/trunk/nemo.install)
  nemo/repos/community-testing-x86_64/
  nemo/repos/community-testing-x86_64/PKGBUILD
(from rev 119978, nemo/trunk/PKGBUILD)
  nemo/repos/community-testing-x86_64/desktop-theme.patch
(from rev 119978, nemo/trunk/desktop-theme.patch)
  nemo/repos/community-testing-x86_64/nemo.install
(from rev 119978, nemo/trunk/nemo.install)

--+
 community-testing-i686/PKGBUILD  |   56 +
 community-testing-i686/desktop-theme.patch   |   36 
 community-testing-i686/nemo.install  |   14 ++
 community-testing-x86_64/PKGBUILD|   56 +
 community-testing-x86_64/desktop-theme.patch |   36 
 community-testing-x86_64/nemo.install|   14 ++
 6 files changed, 212 insertions(+)

Copied: nemo/repos/community-testing-i686/PKGBUILD (from rev 119978, 
nemo/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-10-01 16:40:59 UTC (rev 119979)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.2.4
+pkgrel=2
+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' 'libnotify' 'libxml2' 'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
+options=('!emptydirs')
+install=nemo.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
+desktop-theme.patch)
+sha256sums=('7dea1a9e1360b00840fe6cf3248c888eba09c3c1003c36aece3d40699787934a'
+'cb5a1e6f27d1e5901faf90a21c0ff199080c0c0d7912dbaa461b01dd6b521f51')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  sed -i 's/bin\/python/bin\/python2/g' 
files/usr/share/nemo/actions/myaction.py
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Add better style for the desktop with GNOME 3.14
+  patch -Np1 -i ../desktop-theme.patch
+
+  # 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-tracker \
+  --disable-gtk-doc-html \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+
+  make DESTDIR=$pkgdir/ install
+}

Copied: nemo/repos/community-testing-i686/desktop-theme.patch (from rev 119978, 
nemo/trunk/desktop-theme.patch)
===
--- community-testing-i686/desktop-theme.patch  (rev 0)
+++ community-testing-i686/desktop-theme.patch  2014-10-01 16:40:59 UTC (rev 
119979)
@@ -0,0 +1,36 @@
+diff -Naur linuxmint-nemo-0f4f990.orig/src/nemo-style-application.css 
linuxmint-nemo-0f4f990/src/nemo-style-application.css
+--- linuxmint-nemo-0f4f990.orig/src/nemo-style-application.css 2014-10-01 
04:38:14.441980888 +
 linuxmint-nemo-0f4f990/src/nemo-style-application.css  2014-10-01 
16:24:15.092157366 +
+@@ -6,3 +6,32 @@
+ .nemo-big-arrow {
+ -GtkArrow-arrow-scaling: 1.0;
+ }
++
++/* For desktop */
++
++.nemo-canvas-item {
++border-radius: 5px;
++}
++
++.nemo-desktop.nemo-canvas-item {
++color: @theme_selected_fg_color;
++text-shadow: 1px 1px black;
++}
++
++.nemo-desktop.nemo-canvas-item:active {
++color: @theme_text_color;
++}
++
++.nemo-desktop.nemo-canvas-item:selected {
++color: @theme_selected_fg_color;
++}
++
++.nemo-desktop.nemo-canvas-item:active,
++.nemo-desktop.nemo-canvas-item:prelight,
++.nemo-desktop.nemo-canvas-item:selected {
++text-shadow: none;
++}
++
++.nemo-desktop.nemo-canvas-item:selected:backdrop {
++color: @theme_unfocused_selected_fg_color;
++}

Copied: nemo/repos/community-testing-i686/nemo.install (from rev 119978, 
nemo/trunk/nemo.install)
===
--- 

[arch-commits] Commit in nemo/trunk (PKGBUILD desktop-theme.patch)

2014-10-01 Thread Balló György
Date: Wednesday, October 1, 2014 @ 18:40:51
  Author: bgyorgy
Revision: 119978

upgpkg: nemo 2.2.4-2

Add better style for the desktop with GNOME 3.14

Added:
  nemo/trunk/desktop-theme.patch
Modified:
  nemo/trunk/PKGBUILD

-+
 PKGBUILD|   16 
 desktop-theme.patch |   36 
 2 files changed, 44 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 16:18:00 UTC (rev 119977)
+++ PKGBUILD2014-10-01 16:40:51 UTC (rev 119978)
@@ -4,19 +4,20 @@
 
 pkgname=nemo
 pkgver=2.2.4
-pkgrel=1
+pkgrel=2
 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' 'libxml2'
- 'cinnamon-translations')
+ 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations')
 makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
 options=('!emptydirs')
 install=nemo.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
-sha256sums=('7dea1a9e1360b00840fe6cf3248c888eba09c3c1003c36aece3d40699787934a')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
+desktop-theme.patch)
+sha256sums=('7dea1a9e1360b00840fe6cf3248c888eba09c3c1003c36aece3d40699787934a'
+'cb5a1e6f27d1e5901faf90a21c0ff199080c0c0d7912dbaa461b01dd6b521f51')
 
 prepare() {
   cd linuxmint-nemo-*
@@ -25,9 +26,8 @@
   sed -i 's/bin\/python/bin\/python2/g' 
files/usr/share/nemo/actions/myaction.py
   find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
 
-  # Fix desktop style with Adwaita theme
-  sed -i 's/add_class (\(.*\), nemo-/add_class (\1, nautilus-/' \
-libnemo-private/nemo-icon-{canvas-item,container}.c
+  # Add better style for the desktop with GNOME 3.14
+  patch -Np1 -i ../desktop-theme.patch
 
   # Fix build
   sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in

Added: desktop-theme.patch
===
--- desktop-theme.patch (rev 0)
+++ desktop-theme.patch 2014-10-01 16:40:51 UTC (rev 119978)
@@ -0,0 +1,36 @@
+diff -Naur linuxmint-nemo-0f4f990.orig/src/nemo-style-application.css 
linuxmint-nemo-0f4f990/src/nemo-style-application.css
+--- linuxmint-nemo-0f4f990.orig/src/nemo-style-application.css 2014-10-01 
04:38:14.441980888 +
 linuxmint-nemo-0f4f990/src/nemo-style-application.css  2014-10-01 
16:24:15.092157366 +
+@@ -6,3 +6,32 @@
+ .nemo-big-arrow {
+ -GtkArrow-arrow-scaling: 1.0;
+ }
++
++/* For desktop */
++
++.nemo-canvas-item {
++border-radius: 5px;
++}
++
++.nemo-desktop.nemo-canvas-item {
++color: @theme_selected_fg_color;
++text-shadow: 1px 1px black;
++}
++
++.nemo-desktop.nemo-canvas-item:active {
++color: @theme_text_color;
++}
++
++.nemo-desktop.nemo-canvas-item:selected {
++color: @theme_selected_fg_color;
++}
++
++.nemo-desktop.nemo-canvas-item:active,
++.nemo-desktop.nemo-canvas-item:prelight,
++.nemo-desktop.nemo-canvas-item:selected {
++text-shadow: none;
++}
++
++.nemo-desktop.nemo-canvas-item:selected:backdrop {
++color: @theme_unfocused_selected_fg_color;
++}


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

2014-10-01 Thread speps
Date: Wednesday, October 1, 2014 @ 19:51:35
  Author: speps
Revision: 119980

upgpkg: pd 0.46.1-1

Modified:
  pd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 16:40:59 UTC (rev 119979)
+++ PKGBUILD2014-10-01 17:51:35 UTC (rev 119980)
@@ -4,23 +4,28 @@
 # Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
 
 pkgname=pd
-pkgver=0.45.5
+pkgver=0.46.1
 _ver=${pkgver%.*}-${pkgver##*.}
 pkgrel=1
 pkgdesc=The Pure Data real-time music and multimedia environment
 arch=('i686' 'x86_64')
-url=http://crca.ucsd.edu/~msp/software.html;
+url=http://msp.ucsd.edu/software.html;
 license=('custom:BSD')
-depends=('jack' 'fftw' 'tk')
+depends=('jack' 'tk') # fftw
 provides=('puredata')
-source=(http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz;
+source=(http://msp.ucsd.edu/Software/pd-$_ver.src.tar.gz;
 enable-fftw3.patch)
-md5sums=('b10b30940f971a2511c176661d85165e'
+md5sums=('d25ff57bf3b567b91705a86540262290'
  'bb907907a9b33f6c63312274c8523d40')
 
 prepare() {
   cd pd-$_ver
+
+  # fftw3 patch
   patch -p1 -i ../${source[1]}
+
+  # strip weakjack.h (cause segfault using Jack API)
+  sed -i 's_.*weakjack_//_' src/s_audio_jack.c
 }
 
 build() {
@@ -29,8 +34,9 @@
   ./configure --prefix=/usr \
   --enable-alsa \
   --enable-jack \
-  --enable-fftw \
   --disable-portaudio
+# WIP: FFTW support is broken due to GCC 4.9
+#  --enable-fftw
   make
 }
 


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

2014-10-01 Thread speps
Date: Wednesday, October 1, 2014 @ 19:51:47
  Author: speps
Revision: 119981

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

Added:
  pd/repos/community-i686/PKGBUILD
(from rev 119980, pd/trunk/PKGBUILD)
  pd/repos/community-i686/enable-fftw3.patch
(from rev 119980, pd/trunk/enable-fftw3.patch)
  pd/repos/community-x86_64/PKGBUILD
(from rev 119980, pd/trunk/PKGBUILD)
  pd/repos/community-x86_64/enable-fftw3.patch
(from rev 119980, pd/trunk/enable-fftw3.patch)
Deleted:
  pd/repos/community-i686/PKGBUILD
  pd/repos/community-i686/enable-fftw3.patch
  pd/repos/community-x86_64/PKGBUILD
  pd/repos/community-x86_64/enable-fftw3.patch

-+
 /PKGBUILD   |  100 ++
 /enable-fftw3.patch |   38 
 community-i686/PKGBUILD |   44 --
 community-i686/enable-fftw3.patch   |   19 --
 community-x86_64/PKGBUILD   |   44 --
 community-x86_64/enable-fftw3.patch |   19 --
 6 files changed, 138 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 17:51:35 UTC (rev 119980)
+++ community-i686/PKGBUILD 2014-10-01 17:51:47 UTC (rev 119981)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: TDY t...@gmx.com
-# Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
-
-pkgname=pd
-pkgver=0.45.5
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc=The Pure Data real-time music and multimedia environment
-arch=('i686' 'x86_64')
-url=http://crca.ucsd.edu/~msp/software.html;
-license=('custom:BSD')
-depends=('jack' 'fftw' 'tk')
-provides=('puredata')
-source=(http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz;
-enable-fftw3.patch)
-md5sums=('b10b30940f971a2511c176661d85165e'
- 'bb907907a9b33f6c63312274c8523d40')
-
-prepare() {
-  cd pd-$_ver
-  patch -p1 -i ../${source[1]}
-}
-
-build() {
-  cd pd-$_ver
-  ./autogen.sh
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-jack \
-  --enable-fftw \
-  --disable-portaudio
-  make
-}
-
-package() {
-  cd pd-$_ver
-  make DESTDIR=$pkgdir install
-
-  # license
-  install -Dm644 LICENSE.txt \
-$pkgdir/usr/share/licenses/pd/LICENSE
-}

Copied: pd/repos/community-i686/PKGBUILD (from rev 119980, pd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 17:51:47 UTC (rev 119981)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: TDY t...@gmx.com
+# Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
+
+pkgname=pd
+pkgver=0.46.1
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc=The Pure Data real-time music and multimedia environment
+arch=('i686' 'x86_64')
+url=http://msp.ucsd.edu/software.html;
+license=('custom:BSD')
+depends=('jack' 'tk') # fftw
+provides=('puredata')
+source=(http://msp.ucsd.edu/Software/pd-$_ver.src.tar.gz;
+enable-fftw3.patch)
+md5sums=('d25ff57bf3b567b91705a86540262290'
+ 'bb907907a9b33f6c63312274c8523d40')
+
+prepare() {
+  cd pd-$_ver
+
+  # fftw3 patch
+  patch -p1 -i ../${source[1]}
+
+  # strip weakjack.h (cause segfault using Jack API)
+  sed -i 's_.*weakjack_//_' src/s_audio_jack.c
+}
+
+build() {
+  cd pd-$_ver
+  ./autogen.sh
+  ./configure --prefix=/usr \
+  --enable-alsa \
+  --enable-jack \
+  --disable-portaudio
+# WIP: FFTW support is broken due to GCC 4.9
+#  --enable-fftw
+  make
+}
+
+package() {
+  cd pd-$_ver
+  make DESTDIR=$pkgdir install
+
+  # license
+  install -Dm644 LICENSE.txt \
+$pkgdir/usr/share/licenses/pd/LICENSE
+}

Deleted: community-i686/enable-fftw3.patch
===
--- community-i686/enable-fftw3.patch   2014-10-01 17:51:35 UTC (rev 119980)
+++ community-i686/enable-fftw3.patch   2014-10-01 17:51:47 UTC (rev 119981)
@@ -1,19 +0,0 @@
-diff -aur pd-0.45-3/configure.ac pd-0.45-3.fftw3/configure.ac
 pd-0.45-3/configure.ac 2013-10-03 18:22:29.0 +0200
-+++ pd-0.45-3.fftw3/configure.ac   2013-10-24 02:14:09.555763309 +0200
-@@ -212,13 +212,13 @@
- AM_CONDITIONAL(PORTMIDI, test x$portmidi = xyes)
- if test x$portmidi = xyes; then echo Using included portmidi; fi
- 
--dnl fftw v2
-+dnl fftw v3
- AC_ARG_ENABLE([fftw],
-   [AS_HELP_STRING([--enable-fftw],
-   [use FFTW package])],
- [fftw=$enableval])
- if test x$fftw = xyes; then
--AC_CHECK_LIB(fftw, fftw_one, [LIBS=$LIBS -lfftw],
-+AC_CHECK_LIB(fftw3f, fftwf_execute, [LIBS=$LIBS -lfftw3f],
- [AC_MSG_NOTICE([fftw package not found - using built-in FFT]); 
fftw=no])
- fi
- AM_CONDITIONAL(FFTW, test 

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

2014-10-01 Thread Sébastien Luttringer
Date: Wednesday, October 1, 2014 @ 20:47:19
  Author: seblu
Revision: 223721

upgpkg: btrfs-progs 3.16.2-1

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 12:32:07 UTC (rev 223720)
+++ PKGBUILD2014-10-01 18:47:19 UTC (rev 223721)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski tp...@archlinux.org
 
 pkgname=btrfs-progs
-pkgver=3.16.1
+pkgver=3.16.2
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')


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

2014-10-01 Thread Lukas Jirkovsky
Date: Wednesday, October 1, 2014 @ 21:33:34
  Author: stativ
Revision: 119982

upgpkg: klavaro 3.01-1

update to 3.01

Modified:
  klavaro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 17:51:47 UTC (rev 119981)
+++ PKGBUILD2014-10-01 19:33:34 UTC (rev 119982)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=klavaro
-pkgver=3.00
+pkgver=3.01
 pkgrel=1
 pkgdesc=Free touch typing tutor program
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 optdepends=('espeakup: voice output')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('254559632d4ae26aa22b80be9f01cb47')
+md5sums=('53e2824ccc89f70dd7dca4d52ccf9c0e')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2014-10-01 Thread Lukas Jirkovsky
Date: Wednesday, October 1, 2014 @ 21:33:41
  Author: stativ
Revision: 119983

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

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

--+
 /PKGBUILD|   66 +
 /klavaro.install |   20 +++
 community-i686/PKGBUILD  |   33 --
 community-i686/klavaro.install   |   10 -
 community-x86_64/PKGBUILD|   33 --
 community-x86_64/klavaro.install |   10 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 19:33:34 UTC (rev 119982)
+++ community-i686/PKGBUILD 2014-10-01 19:33:41 UTC (rev 119983)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=klavaro
-pkgver=3.00
-pkgrel=1
-pkgdesc=Free touch typing tutor program
-arch=('i686' 'x86_64')
-url=http://klavaro.sourceforge.net/;
-license=('GPL2')
-depends=('curl' 'gtk3' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('espeakup: voice output')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('254559632d4ae26aa22b80be9f01cb47')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # remove the gtkdatabox shared library
-  # klavaro links to it statically due to some incompatibility wioth GTK3
-  rm -r $pkgdir/usr/lib
-
-  sed -i 's|/usr/share/icons/hicolor/24x24/apps/klavaro.png|klavaro|' \
-$pkgdir/usr/share/applications/$pkgname.desktop
-}

Copied: klavaro/repos/community-i686/PKGBUILD (from rev 119982, 
klavaro/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 19:33:41 UTC (rev 119983)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=klavaro
+pkgver=3.01
+pkgrel=1
+pkgdesc=Free touch typing tutor program
+arch=('i686' 'x86_64')
+url=http://klavaro.sourceforge.net/;
+license=('GPL2')
+depends=('curl' 'gtk3' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('espeakup: voice output')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('53e2824ccc89f70dd7dca4d52ccf9c0e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # remove the gtkdatabox shared library
+  # klavaro links to it statically due to some incompatibility wioth GTK3
+  rm -r $pkgdir/usr/lib
+
+  sed -i 's|/usr/share/icons/hicolor/24x24/apps/klavaro.png|klavaro|' \
+$pkgdir/usr/share/applications/$pkgname.desktop
+}

Deleted: community-i686/klavaro.install
===
--- community-i686/klavaro.install  2014-10-01 19:33:34 UTC (rev 119982)
+++ community-i686/klavaro.install  2014-10-01 19:33:41 UTC (rev 119983)
@@ -1,10 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -f /usr/share/icons/hicolor/
-}
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: klavaro/repos/community-i686/klavaro.install (from rev 119982, 
klavaro/trunk/klavaro.install)
===
--- community-i686/klavaro.install  (rev 0)
+++ community-i686/klavaro.install  2014-10-01 19:33:41 UTC (rev 119983)
@@ -0,0 +1,10 @@
+post_install() {
+  gtk-update-icon-cache -f /usr/share/icons/hicolor/
+}
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-10-01 19:33:34 UTC (rev 119982)
+++ community-x86_64/PKGBUILD   2014-10-01 19:33:41 UTC (rev 119983)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=klavaro
-pkgver=3.00
-pkgrel=1
-pkgdesc=Free touch typing tutor program
-arch=('i686' 'x86_64')
-url=http://klavaro.sourceforge.net/;
-license=('GPL2')
-depends=('curl' 'gtk3' 'hicolor-icon-theme')

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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 22:33:03
  Author: alucryd
Revision: 119985

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 20:32:52 UTC (rev 119984)
+++ PKGBUILD2014-10-01 20:33:03 UTC (rev 119985)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Sébastien Luttringer
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=lib32-wayland
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='A computer display server protocol'
-arch=('x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('lib32-libffi' 'lib32-expat' ${pkgname#*-})
-source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
-sha256sums=('0069e1e9af888b3e05384380ad8cc6c976ea3e81d08ba19b7675ce1d693a41b5')
-
-build() {
-  cd ${pkgname#*-}-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure --prefix='/usr' --libdir='/usr/lib32' 
--disable-{documentation,static}
-  make
-}
-
-package() {
-  cd ${pkgname#*-}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/{bin,include,share}
-
-  install -dm 755 ${pkgdir}/usr/share/licenses
-  ln -s ${pkgname#*-} ${pkgdir}/usr/share/licenses/${pkgname}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wayland/repos/multilib-x86_64/PKGBUILD (from rev 119984, 
lib32-wayland/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 20:33:03 UTC (rev 119985)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Sébastien Luttringer sеblu@аrchlіnux․org
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=lib32-wayland
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('lib32-libffi' 'lib32-expat' 'wayland')
+source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
+sha256sums=('a7d5102dcf53d08c059d24bc62de491d7cd482070abeb6737a20d0d86ba6fc7f')
+
+build() {
+  cd wayland-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure --prefix='/usr' --libdir='/usr/lib32' \
+  --disable-{documentation,static}
+  make
+}
+
+package() {
+  cd wayland-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/{bin,include,share}
+
+  install -dm 755 ${pkgdir}/usr/share/licenses
+  ln -s wayland ${pkgdir}/usr/share/licenses/lib32-wayland
+}
+
+# vim: ts=2 sw=2 et:


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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 22:45:59
  Author: alucryd
Revision: 119987

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glib2/repos/multilib-testing-x86_64/
  lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 119986, lib32-glib2/trunk/PKGBUILD)
  
lib32-glib2/repos/multilib-testing-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 119986, lib32-glib2/trunk/revert-warn-glib-compile-schemas.patch)

+
 PKGBUILD   |   48 +++
 revert-warn-glib-compile-schemas.patch |   33 +
 2 files changed, 81 insertions(+)

Copied: lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD (from rev 119986, 
lib32-glib2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2014-10-01 20:45:59 UTC (rev 119987)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+# Contributor: Mikko Seppälä t-r-...@mbnet.fi
+
+_pkgbasename=glib2
+pkgname=lib32-$_pkgbasename
+pkgver=2.42.0
+pkgrel=1
+pkgdesc=Common C routines used by GTK+ 2.4 and other libs (32-bit)
+url=http://www.gtk.org/;
+arch=('x86_64')
+license=('LGPL')
+depends=('lib32-dbus' 'lib32-libffi' 'lib32-pcre' 'lib32-zlib' $_pkgbasename)
+makedepends=('gcc-multilib' 'python2')
+options=('!docs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-${pkgver}.tar.xz;
+'revert-warn-glib-compile-schemas.patch')
+sha256sums=('94fbc0a7d10633433ff383e540607de649c1b46baaa59dea446a50977a6c4472'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
+
+prepare() {
+  cd ${srcdir}/glib-${pkgver}
+  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+}
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/glib-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --libdir=/usr/lib32 --with-pcre=system --disable-fam
+  make
+}
+
+package() {
+  cd ${srcdir}/glib-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/{etc,usr/{share,include}}
+
+  cd ${pkgdir}/usr/bin
+  mv gio-querymodules gio-querymodules-32
+  rm -f gdbus glib* gobject-query gsettings gtester*
+  rm -rf $pkgdir/usr/lib32/gdbus-2.0
+  find $pkgdir/usr/bin -type f -not -name gio-querymodules-32 -delete
+}

Copied: 
lib32-glib2/repos/multilib-testing-x86_64/revert-warn-glib-compile-schemas.patch
 (from rev 119986, lib32-glib2/trunk/revert-warn-glib-compile-schemas.patch)
===
--- multilib-testing-x86_64/revert-warn-glib-compile-schemas.patch  
(rev 0)
+++ multilib-testing-x86_64/revert-warn-glib-compile-schemas.patch  
2014-10-01 20:45:59 UTC (rev 119987)
@@ -0,0 +1,33 @@
+From 6560b37450cd19c4a7c7b690e279fe97b7bfdcaa Mon Sep 17 00:00:00 2001
+From: Ryan Lortie de...@desrt.ca
+Date: Thu, 12 Apr 2012 23:55:34 +
+Subject: glib-compile-schemas: warn about bad dconf paths
+
+For quite some time the recommended usage of GSettings and dconf has
+been to use paths like /org/gnome/example/.  Use of /apps/ has spilled
+over from GConf and is continuing to make its way into a number of
+applications as they port.
+
+glib-compile-schemas will now warn about these types of paths being
+used.  This generates a lot of noise, but hopefully it will reduce the
+number of ported applications making this mistake.
+---
+diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c
+index cf02389..27d0181 100644
+--- a/gio/glib-compile-schemas.c
 b/gio/glib-compile-schemas.c
+@@ -1204,6 +1204,12 @@ parse_state_start_schema (ParseState  *state,
+   return;
+ }
+ 
++  if (path  (g_str_has_prefix (path, /apps/) ||
++   g_str_has_prefix (path, /desktop/) ||
++   g_str_has_prefix (path, /system/)))
++g_printerr (warning: Schema '%s' has path '%s'.  Paths starting with 
++'/apps/', '/desktop/' or '/system/' are deprecated.\n, id, 
path);
++
+   state-schema_state = schema_state_new (path, gettext_domain,
+   extends, extends_name, list_of);
+ 
+--
+cgit v0.9.0.2


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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 22:32:52
  Author: alucryd
Revision: 119984

upgpkg: lib32-wayland 1.6.0-1

Modified:
  lib32-wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 19:33:41 UTC (rev 119983)
+++ PKGBUILD2014-10-01 20:32:52 UTC (rev 119984)
@@ -1,39 +1,40 @@
 # $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
 # Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Sébastien Luttringer
+# Contributor: Sébastien Luttringer sеblu@аrchlіnux․org
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=lib32-wayland
-pkgver=1.5.0
+pkgver=1.6.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
 url='http://wayland.freedesktop.org'
 license=('MIT')
-depends=('lib32-libffi' 'lib32-expat' ${pkgname#*-})
+depends=('lib32-libffi' 'lib32-expat' 'wayland')
 source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
-sha256sums=('0069e1e9af888b3e05384380ad8cc6c976ea3e81d08ba19b7675ce1d693a41b5')
+sha256sums=('a7d5102dcf53d08c059d24bc62de491d7cd482070abeb6737a20d0d86ba6fc7f')
 
 build() {
-  cd ${pkgname#*-}-${pkgver}
+  cd wayland-${pkgver}
 
   export CC='gcc -m32'
   export CXX='g++ -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  ./configure --prefix='/usr' --libdir='/usr/lib32' 
--disable-{documentation,static}
+  ./configure --prefix='/usr' --libdir='/usr/lib32' \
+  --disable-{documentation,static}
   make
 }
 
 package() {
-  cd ${pkgname#*-}-${pkgver}
+  cd wayland-${pkgver}
 
   make DESTDIR=${pkgdir} install
   rm -rf ${pkgdir}/usr/{bin,include,share}
 
   install -dm 755 ${pkgdir}/usr/share/licenses
-  ln -s ${pkgname#*-} ${pkgdir}/usr/share/licenses/${pkgname}
+  ln -s wayland ${pkgdir}/usr/share/licenses/lib32-wayland
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in btrfs-progs/repos (17 files)

2014-10-01 Thread Sébastien Luttringer
Date: Wednesday, October 1, 2014 @ 22:36:06
  Author: seblu
Revision: 223722

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/01-fix-manpages.patch
(from rev 223721, btrfs-progs/trunk/01-fix-manpages.patch)
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 223721, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 223721, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 223721, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 223721, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/01-fix-manpages.patch
(from rev 223721, btrfs-progs/trunk/01-fix-manpages.patch)
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 223721, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 223721, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 223721, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 223721, btrfs-progs/trunk/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/testing-x86_64/01-fix-manpages.patch
  btrfs-progs/repos/testing-x86_64/PKGBUILD
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs

---+
 /01-fix-manpages.patch|   13 +
 /PKGBUILD |   45 
 /btrfs-progs.install  |9 ++
 /initcpio-hook-btrfs  |7 
 /initcpio-install-btrfs   |   17 
 testing-i686/01-fix-manpages.patch|   13 +
 testing-i686/PKGBUILD |   45 
 testing-i686/btrfs-progs.install  |9 ++
 testing-i686/initcpio-hook-btrfs  |7 
 testing-i686/initcpio-install-btrfs   |   17 
 testing-x86_64/01-fix-manpages.patch  |   13 -
 testing-x86_64/PKGBUILD   |   45 
 testing-x86_64/btrfs-progs.install|9 --
 testing-x86_64/initcpio-hook-btrfs|7 
 testing-x86_64/initcpio-install-btrfs |   17 
 15 files changed, 182 insertions(+), 91 deletions(-)

Copied: btrfs-progs/repos/testing-i686/01-fix-manpages.patch (from rev 223721, 
btrfs-progs/trunk/01-fix-manpages.patch)
===
--- testing-i686/01-fix-manpages.patch  (rev 0)
+++ testing-i686/01-fix-manpages.patch  2014-10-01 20:36:06 UTC (rev 223722)
@@ -0,0 +1,13 @@
+diff --git a/Documentation/Makefile b/Documentation/Makefile
+index e22f5bca0ff2..e3ad34133832 100644
+--- a/Documentation/Makefile
 b/Documentation/Makefile
+@@ -74,7 +74,7 @@ install: install-man
+ install-man: man
+   $(INSTALL) -d -m 755 $(DESTDIR)$(man8dir)
+   $(INSTALL) -m 644 $(GZ_MAN8) $(DESTDIR)$(man8dir)
+-  $(LNS) btrfs-check.8.gz $(DESTDIR)$(man8dir)
++  $(LNS) btrfs-check.8.gz $(DESTDIR)$(man8dir)/btrfsck.8.gz
+ 
+ clean:
+   $(RM) *.xml *.xml+ *.8 *.8.gz

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 223721, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-10-01 20:36:06 UTC (rev 223722)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=3.16.2
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(git://git.kernel.org/pub/scm/linux/kernel/git/mason/${pkgname}.git#tag=v${pkgver}
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad')
+
+build() {
+   cd $pkgname
+   make CFLAGS=$CFLAGS
+   make CFLAGS=$CFLAGS btrfs-select-super
+}
+
+package() {
+   cd $pkgname
+
+   make prefix=$pkgdir/usr install
+   install -Dm755 btrfs-select-super $pkgdir/usr/bin
+
+   # install mkinitcpio hooks
+   cd $srcdir
+   install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs
+   install 

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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 22:45:51
  Author: alucryd
Revision: 119986

upgpkg: lib32-glib2 2.42.0-1

Added:
  lib32-glib2/trunk/revert-warn-glib-compile-schemas.patch
Modified:
  lib32-glib2/trunk/PKGBUILD

+
 PKGBUILD   |   23 ++---
 revert-warn-glib-compile-schemas.patch |   33 +++
 2 files changed, 48 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 20:33:03 UTC (rev 119985)
+++ PKGBUILD2014-10-01 20:45:51 UTC (rev 119986)
@@ -5,18 +5,25 @@
 
 _pkgbasename=glib2
 pkgname=lib32-$_pkgbasename
-pkgver=2.40.0
+pkgver=2.42.0
 pkgrel=1
 pkgdesc=Common C routines used by GTK+ 2.4 and other libs (32-bit)
 url=http://www.gtk.org/;
 arch=('x86_64')
 license=('LGPL')
-depends=('lib32-pcre' 'lib32-zlib' 'lib32-libdbus' lib32-libffi $_pkgbasename)
-makedepends=('gcc-multilib' python2)
-options=('!libtool' '!docs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-${pkgver}.tar.xz)
-sha256sums=('0d27f195966ecb1995dcce0754129fd66ebe820c7cd29200d264b02af1aa28b5')
+depends=('lib32-dbus' 'lib32-libffi' 'lib32-pcre' 'lib32-zlib' $_pkgbasename)
+makedepends=('gcc-multilib' 'python2')
+options=('!docs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-${pkgver}.tar.xz;
+'revert-warn-glib-compile-schemas.patch')
+sha256sums=('94fbc0a7d10633433ff383e540607de649c1b46baaa59dea446a50977a6c4472'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
 
+prepare() {
+  cd ${srcdir}/glib-${pkgver}
+  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+}
+
 build() {
   export CC=gcc -m32
   export CXX=g++ -m32
@@ -23,8 +30,8 @@
   export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
 
   cd ${srcdir}/glib-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--libdir=/usr/lib32 \
-  --enable-static --enable-shared --with-pcre=system --disable-fam
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --libdir=/usr/lib32 --with-pcre=system --disable-fam
   make
 }
 

Added: revert-warn-glib-compile-schemas.patch
===
--- revert-warn-glib-compile-schemas.patch  (rev 0)
+++ revert-warn-glib-compile-schemas.patch  2014-10-01 20:45:51 UTC (rev 
119986)
@@ -0,0 +1,33 @@
+From 6560b37450cd19c4a7c7b690e279fe97b7bfdcaa Mon Sep 17 00:00:00 2001
+From: Ryan Lortie de...@desrt.ca
+Date: Thu, 12 Apr 2012 23:55:34 +
+Subject: glib-compile-schemas: warn about bad dconf paths
+
+For quite some time the recommended usage of GSettings and dconf has
+been to use paths like /org/gnome/example/.  Use of /apps/ has spilled
+over from GConf and is continuing to make its way into a number of
+applications as they port.
+
+glib-compile-schemas will now warn about these types of paths being
+used.  This generates a lot of noise, but hopefully it will reduce the
+number of ported applications making this mistake.
+---
+diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c
+index cf02389..27d0181 100644
+--- a/gio/glib-compile-schemas.c
 b/gio/glib-compile-schemas.c
+@@ -1204,6 +1204,12 @@ parse_state_start_schema (ParseState  *state,
+   return;
+ }
+ 
++  if (path  (g_str_has_prefix (path, /apps/) ||
++   g_str_has_prefix (path, /desktop/) ||
++   g_str_has_prefix (path, /system/)))
++g_printerr (warning: Schema '%s' has path '%s'.  Paths starting with 
++'/apps/', '/desktop/' or '/system/' are deprecated.\n, id, 
path);
++
+   state-schema_state = schema_state_new (path, gettext_domain,
+   extends, extends_name, list_of);
+ 
+--
+cgit v0.9.0.2


Property changes on: lib32-glib2/trunk/revert-warn-glib-compile-schemas.patch
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 22:50:47
  Author: alucryd
Revision: 119989

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-pango/repos/multilib-testing-x86_64/
  lib32-pango/repos/multilib-testing-x86_64/PKGBUILD
(from rev 119988, lib32-pango/trunk/PKGBUILD)
  lib32-pango/repos/multilib-testing-x86_64/pango.install
(from rev 119988, lib32-pango/trunk/pango.install)

---+
 PKGBUILD  |   48 
 pango.install |   21 +
 2 files changed, 69 insertions(+)

Copied: lib32-pango/repos/multilib-testing-x86_64/PKGBUILD (from rev 119988, 
lib32-pango/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2014-10-01 20:50:47 UTC (rev 119989)
@@ -0,0 +1,48 @@
+# $Id$
+# Contributor: Pierre Schmitz pie...@archlinux.de
+# Contributor: Mikko Seppälä t-r-...@mbnet.fi
+# Maintainer: Biru Ionut io...@archlinux.ro
+
+_pkgbasename=pango
+pkgname=lib32-$_pkgbasename
+pkgver=1.36.8
+pkgrel=1
+pkgdesc=A library for layout and rendering of text (32-bit)
+arch=('x86_64')
+license=('LGPL')
+makedepends=(gcc-multilib 'lib32-fontconfig' \
+ 'lib32-mesa-libgl' 'lib32-cairo' 'lib32-libxft' 'lib32-harfbuzz' 
$_pkgbasename)
+install=pango.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/${pkgver:0:4}/${_pkgbasename}-${pkgver}.tar.xz)
+url=http://www.pango.org/;
+sha256sums=('18dbb51b8ae12bae0ab7a958e7cf3317c9acfc8a1e1103ec2f147164a0fc2d07')
+
+prepare() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  sed -i 's#pango.modules#pango.modules-32#' pango/modules.c
+}
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc \
+  
--with-dynamic-modules=arabic-fc,arabic-lang,basic-fc,basic-win32,basic-x,basic-atsui,hangul-fc,hebrew-fc,indic-fc,indic-lang,khmer-fc,syriac-fc,tibetan-fc
 \
+  --disable-introspection
+  make
+}
+
+package() {
+  depends=('lib32-cairo' 'lib32-libxft' 'lib32-harfbuzz' $_pkgbasename)
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm -rf $pkgdir/etc
+  rm -rf $pkgdir/usr/{bin/pango-view,share,include}
+  mv $pkgdir/usr/bin/pango-querymodules 
$pkgdir/usr/bin/pango-querymodules-32
+}

Copied: lib32-pango/repos/multilib-testing-x86_64/pango.install (from rev 
119988, lib32-pango/trunk/pango.install)
===
--- multilib-testing-x86_64/pango.install   (rev 0)
+++ multilib-testing-x86_64/pango.install   2014-10-01 20:50:47 UTC (rev 
119989)
@@ -0,0 +1,21 @@
+# arg 1:  the new package version
+post_install() {
+   # we need to ldconfig first, in case xfree86's libs aren't
+   # in ld.so.cache yet
+   sbin/ldconfig -r .
+   usr/bin/pango-querymodules-32 etc/pango/pango.modules-32
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+   if [ -f etc/pango/pango.modules-32 ]; then
+   rm etc/pango/pango.modules-32
+   fi
+   post_install $1
+}
+
+# arg 1:  the old package version
+pre_remove() {
+   rm etc/pango/pango.modules-32
+}


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

2014-10-01 Thread Maxime Gauduin
Date: Wednesday, October 1, 2014 @ 22:50:38
  Author: alucryd
Revision: 119988

upgpkg: lib32-pango 1.36.8-1

Modified:
  lib32-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 20:45:59 UTC (rev 119987)
+++ PKGBUILD2014-10-01 20:50:38 UTC (rev 119988)
@@ -5,7 +5,7 @@
 
 _pkgbasename=pango
 pkgname=lib32-$_pkgbasename
-pkgver=1.36.6
+pkgver=1.36.8
 pkgrel=1
 pkgdesc=A library for layout and rendering of text (32-bit)
 arch=('x86_64')
@@ -15,7 +15,7 @@
 install=pango.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/${pkgver:0:4}/${_pkgbasename}-${pkgver}.tar.xz)
 url=http://www.pango.org/;
-sha256sums=('4c53c752823723875078b91340f32136aadb99e91c0f6483f024f978a02c8624')
+sha256sums=('18dbb51b8ae12bae0ab7a958e7cf3317c9acfc8a1e1103ec2f147164a0fc2d07')
 
 prepare() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}


[arch-commits] Commit in intellij-idea-libs/repos (4 files)

2014-10-01 Thread Lukas Jirkovsky
Date: Wednesday, October 1, 2014 @ 23:10:39
  Author: stativ
Revision: 119993

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

Added:
  intellij-idea-libs/repos/community-i686/PKGBUILD
(from rev 119992, intellij-idea-libs/trunk/PKGBUILD)
  intellij-idea-libs/repos/community-x86_64/PKGBUILD
(from rev 119992, intellij-idea-libs/trunk/PKGBUILD)
Deleted:
  intellij-idea-libs/repos/community-i686/PKGBUILD
  intellij-idea-libs/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 21:10:31 UTC (rev 119992)
+++ community-i686/PKGBUILD 2014-10-01 21:10:39 UTC (rev 119993)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=intellij-idea-libs
-pkgver=13.1.4b
-_pkgver=135.1230
-pkgrel=1
-epoch=1
-pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
-arch=('i686' 'x86_64')
-url=http://www.jetbrains.org/;
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('4bf083de1693bccc6ed137b44a5f6d2d')
-
-package() {
-  [ $CARCH == x86_64 ]  SUFFIX=64
-  install -D -m755 idea-IC-$_pkgver/bin/fsnotifier${SUFFIX} 
$pkgdir/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
-  install -D -m644 idea-IC-$_pkgver/bin/libbreakgen${SUFFIX}.so 
$pkgdir/usr/lib/libbreakgen${SUFFIX}.so
-  
-  # libpty
-  [ $CARCH == x86_64 ]  _ARCH=x86_64 || _ARCH=x86
-  install -D -m644 idea-IC-$_pkgver/lib/libpty/linux/$_ARCH/libpty.so 
$pkgdir/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-i686/PKGBUILD (from rev 119992, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 21:10:39 UTC (rev 119993)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=intellij-idea-libs
+pkgver=13.1.5
+_pkgver=135.1289
+pkgrel=1
+epoch=1
+pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
+arch=('i686' 'x86_64')
+url=http://www.jetbrains.org/;
+license=('Apache')
+depends=('glibc')
+options=(!strip)
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
+md5sums=('b2e0bbb3eec660c83274ddfe2f88ecb1')
+
+package() {
+  [ $CARCH == x86_64 ]  SUFFIX=64
+  install -D -m755 idea-IC-$_pkgver/bin/fsnotifier${SUFFIX} 
$pkgdir/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
+  install -D -m644 idea-IC-$_pkgver/bin/libbreakgen${SUFFIX}.so 
$pkgdir/usr/lib/libbreakgen${SUFFIX}.so
+  
+  # libpty
+  [ $CARCH == x86_64 ]  _ARCH=x86_64 || _ARCH=x86
+  install -D -m644 idea-IC-$_pkgver/lib/libpty/linux/$_ARCH/libpty.so 
$pkgdir/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-10-01 21:10:31 UTC (rev 119992)
+++ community-x86_64/PKGBUILD   2014-10-01 21:10:39 UTC (rev 119993)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=intellij-idea-libs
-pkgver=13.1.4b
-_pkgver=135.1230
-pkgrel=1
-epoch=1
-pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
-arch=('i686' 'x86_64')
-url=http://www.jetbrains.org/;
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('4bf083de1693bccc6ed137b44a5f6d2d')
-
-package() {
-  [ $CARCH == x86_64 ]  SUFFIX=64
-  install -D -m755 idea-IC-$_pkgver/bin/fsnotifier${SUFFIX} 
$pkgdir/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
-  install -D -m644 idea-IC-$_pkgver/bin/libbreakgen${SUFFIX}.so 
$pkgdir/usr/lib/libbreakgen${SUFFIX}.so
-  
-  # libpty
-  [ $CARCH == x86_64 ]  _ARCH=x86_64 || _ARCH=x86
-  install -D -m644 idea-IC-$_pkgver/lib/libpty/linux/$_ARCH/libpty.so 
$pkgdir/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-x86_64/PKGBUILD (from rev 119992, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-10-01 21:10:39 UTC (rev 119993)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=intellij-idea-libs
+pkgver=13.1.5
+_pkgver=135.1289
+pkgrel=1
+epoch=1
+pkgdesc=Architecture dependent libraries needed by the 

[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2014-10-01 Thread Lukas Jirkovsky
Date: Wednesday, October 1, 2014 @ 23:07:39
  Author: stativ
Revision: 119990

upgpkg: intellij-idea-community-edition 1:13.1.5-1

update to 13.1.5

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 20:50:47 UTC (rev 119989)
+++ PKGBUILD2014-10-01 21:07:39 UTC (rev 119990)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=intellij-idea-community-edition
-pkgver=13.1.4b
-_pkgver=135.1230
+pkgver=13.1.5
+_pkgver=135.1289
 pkgrel=1
 epoch=1
 pkgdesc=IDE for Java, Groovy and other programming languages with advanced 
refactoring features
@@ -13,7 +13,7 @@
 install=idea.install
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
 idea.desktop idea.sh)
-md5sums=('4bf083de1693bccc6ed137b44a5f6d2d'
+md5sums=('b2e0bbb3eec660c83274ddfe2f88ecb1'
  '074bca11876cd1129e74feafd6271670'
  'f27bad35ee8e6445ca2f8a591bca895a')
 


[arch-commits] Commit in intellij-idea-community-edition/repos/community-any (8 files)

2014-10-01 Thread Lukas Jirkovsky
Date: Wednesday, October 1, 2014 @ 23:07:45
  Author: stativ
Revision: 119991

archrelease: copy trunk to community-any

Added:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
(from rev 119990, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-any/idea.desktop
(from rev 119990, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-any/idea.install
(from rev 119990, intellij-idea-community-edition/trunk/idea.install)
  intellij-idea-community-edition/repos/community-any/idea.sh
(from rev 119990, intellij-idea-community-edition/trunk/idea.sh)
Deleted:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
  intellij-idea-community-edition/repos/community-any/idea.desktop
  intellij-idea-community-edition/repos/community-any/idea.install
  intellij-idea-community-edition/repos/community-any/idea.sh

--+
 PKGBUILD |   88 -
 idea.desktop |   22 +++---
 idea.install |   18 +--
 idea.sh  |8 ++---
 4 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-01 21:07:39 UTC (rev 119990)
+++ PKGBUILD2014-10-01 21:07:45 UTC (rev 119991)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=intellij-idea-community-edition
-pkgver=13.1.4b
-_pkgver=135.1230
-pkgrel=1
-epoch=1
-pkgdesc=IDE for Java, Groovy and other programming languages with advanced 
refactoring features
-arch=('any')
-url=http://www.jetbrains.org/;
-license=('Apache')
-depends=('java-environment' intellij-idea-libs 'giflib' 'libxtst')
-install=idea.install
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
-idea.desktop idea.sh)
-md5sums=('4bf083de1693bccc6ed137b44a5f6d2d'
- '074bca11876cd1129e74feafd6271670'
- 'f27bad35ee8e6445ca2f8a591bca895a')
-
-package() {
-  install -d -m755 $pkgdir/usr/share
-  cp -a idea-IC-$_pkgver $pkgdir/usr/share/intellijidea-ce
-
-  # remove files owned by intellij-idea-libs
-  rm $pkgdir/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
-  rm -rf $pkgdir/usr/share/intellijidea-ce/lib/libpty
-
-  # make sure that all files are owned by root
-  chown -R root:root $pkgdir/usr/share
-
-  # never wait on user input when starting idea
-  sed -i '/.*read IGNORE.*/ d' $pkgdir/usr/share/intellijidea-ce/bin/idea.sh
-
-  install -D -m755 $srcdir/idea.sh $pkgdir/usr/bin/idea.sh
-  install -D -m644 $srcdir/idea.desktop 
$pkgdir/usr/share/applications/idea.desktop
-  install -D -m644 $pkgdir/usr/share/intellijidea-ce/bin/idea.png \
-   $pkgdir/usr/share/pixmaps/idea.png
-
-
-  # workaround FS#40934
-  sed -i 's|lcd|on|'  $pkgdir/usr/share/intellijidea-ce/bin/*.vmoptions
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-community-edition/repos/community-any/PKGBUILD (from rev 
119990, intellij-idea-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-01 21:07:45 UTC (rev 119991)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=intellij-idea-community-edition
+pkgver=13.1.5
+_pkgver=135.1289
+pkgrel=1
+epoch=1
+pkgdesc=IDE for Java, Groovy and other programming languages with advanced 
refactoring features
+arch=('any')
+url=http://www.jetbrains.org/;
+license=('Apache')
+depends=('java-environment' intellij-idea-libs 'giflib' 'libxtst')
+install=idea.install
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
+idea.desktop idea.sh)
+md5sums=('b2e0bbb3eec660c83274ddfe2f88ecb1'
+ '074bca11876cd1129e74feafd6271670'
+ 'f27bad35ee8e6445ca2f8a591bca895a')
+
+package() {
+  install -d -m755 $pkgdir/usr/share
+  cp -a idea-IC-$_pkgver $pkgdir/usr/share/intellijidea-ce
+
+  # remove files owned by intellij-idea-libs
+  rm $pkgdir/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
+  rm -rf $pkgdir/usr/share/intellijidea-ce/lib/libpty
+
+  # make sure that all files are owned by root
+  chown -R root:root $pkgdir/usr/share
+
+  # never wait on user input when starting idea
+  sed -i '/.*read IGNORE.*/ d' $pkgdir/usr/share/intellijidea-ce/bin/idea.sh
+
+  install -D -m755 $srcdir/idea.sh $pkgdir/usr/bin/idea.sh
+  install -D -m644 $srcdir/idea.desktop 
$pkgdir/usr/share/applications/idea.desktop
+  install -D -m644 $pkgdir/usr/share/intellijidea-ce/bin/idea.png \
+   $pkgdir/usr/share/pixmaps/idea.png
+
+
+  # workaround FS#40934
+  sed -i 's|lcd|on|'  $pkgdir/usr/share/intellijidea-ce/bin/*.vmoptions
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: idea.desktop
===
--- idea.desktop2014-10-01 21:07:39 UTC (rev 119990)
+++ idea.desktop   

[arch-commits] Commit in intellij-idea-libs/trunk (PKGBUILD)

2014-10-01 Thread Lukas Jirkovsky
Date: Wednesday, October 1, 2014 @ 23:10:31
  Author: stativ
Revision: 119992

upgpkg: intellij-idea-libs 1:13.1.5-1

update to 13.1.5

Modified:
  intellij-idea-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 21:07:45 UTC (rev 119991)
+++ PKGBUILD2014-10-01 21:10:31 UTC (rev 119992)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=intellij-idea-libs
-pkgver=13.1.4b
-_pkgver=135.1230
+pkgver=13.1.5
+_pkgver=135.1289
 pkgrel=1
 epoch=1
 pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
@@ -12,7 +12,7 @@
 depends=('glibc')
 options=(!strip)
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('4bf083de1693bccc6ed137b44a5f6d2d')
+md5sums=('b2e0bbb3eec660c83274ddfe2f88ecb1')
 
 package() {
   [ $CARCH == x86_64 ]  SUFFIX=64


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

2014-10-01 Thread Felix Yan
Date: Thursday, October 2, 2014 @ 04:02:35
  Author: fyan
Revision: 119995

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

Added:
  isomd5sum/repos/community-i686/
  isomd5sum/repos/community-i686/PKGBUILD
(from rev 119994, isomd5sum/trunk/PKGBUILD)
  isomd5sum/repos/community-x86_64/
  isomd5sum/repos/community-x86_64/PKGBUILD
(from rev 119994, isomd5sum/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   45 
 community-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: isomd5sum/repos/community-i686/PKGBUILD (from rev 119994, 
isomd5sum/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-02 02:02:35 UTC (rev 119995)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Patrick McCarty pnorcks at gmail dot com
+# Contributor: Fernando Munoz f[at]beford.net
+# Contributor: Alexandre Bique bique.alexandre[at]gmail.com
+
+pkgbase=isomd5sum
+pkgname=('isomd5sum' 'python2-isomd5sum')
+pkgver=1.0.12
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+makedepends=('popt' 'python2')
+url='https://git.fedorahosted.org/git/isomd5sum.git'
+source=(https://git.fedorahosted.org/cgit/isomd5sum.git/snapshot/isomd5sum-$pkgver.tar.xz;)
+options=('!emptydirs')
+sha1sums=('db46d6f6f8b197dfc1712adc4e878cda192be1a2')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i -e 's/shell python /shell python2 /' Makefile
+  sed -i -e 's/-Werror/ /' Makefile
+  sed -i -e 's/^\(LIBDIR = \)lib64/\1lib/' Makefile
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make all
+}
+
+package_isomd5sum() {
+  depends=('popt')
+  pkgdesc=Utilities for working with md5sum implanted in ISO images
+
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install-bin install-devel
+}
+
+package_python2-isomd5sum() {
+  depends=('python2')
+  pkgdesc=Python2 bindings for isomd5sum
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install-python
+}

Copied: isomd5sum/repos/community-x86_64/PKGBUILD (from rev 119994, 
isomd5sum/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-10-02 02:02:35 UTC (rev 119995)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Patrick McCarty pnorcks at gmail dot com
+# Contributor: Fernando Munoz f[at]beford.net
+# Contributor: Alexandre Bique bique.alexandre[at]gmail.com
+
+pkgbase=isomd5sum
+pkgname=('isomd5sum' 'python2-isomd5sum')
+pkgver=1.0.12
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+makedepends=('popt' 'python2')
+url='https://git.fedorahosted.org/git/isomd5sum.git'
+source=(https://git.fedorahosted.org/cgit/isomd5sum.git/snapshot/isomd5sum-$pkgver.tar.xz;)
+options=('!emptydirs')
+sha1sums=('db46d6f6f8b197dfc1712adc4e878cda192be1a2')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i -e 's/shell python /shell python2 /' Makefile
+  sed -i -e 's/-Werror/ /' Makefile
+  sed -i -e 's/^\(LIBDIR = \)lib64/\1lib/' Makefile
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make all
+}
+
+package_isomd5sum() {
+  depends=('popt')
+  pkgdesc=Utilities for working with md5sum implanted in ISO images
+
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install-bin install-devel
+}
+
+package_python2-isomd5sum() {
+  depends=('python2')
+  pkgdesc=Python2 bindings for isomd5sum
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install-python
+}


[arch-commits] Commit in (4 files)

2014-10-01 Thread Felix Yan
Date: Thursday, October 2, 2014 @ 04:02:03
  Author: fyan
Revision: 119994

addpkg: isomd5sum 1.0.12-2

Added:
  isomd5sum/
  isomd5sum/repos/
  isomd5sum/trunk/
  isomd5sum/trunk/PKGBUILD

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

Added: isomd5sum/trunk/PKGBUILD
===
--- isomd5sum/trunk/PKGBUILD(rev 0)
+++ isomd5sum/trunk/PKGBUILD2014-10-02 02:02:03 UTC (rev 119994)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Patrick McCarty pnorcks at gmail dot com
+# Contributor: Fernando Munoz f[at]beford.net
+# Contributor: Alexandre Bique bique.alexandre[at]gmail.com
+
+pkgbase=isomd5sum
+pkgname=('isomd5sum' 'python2-isomd5sum')
+pkgver=1.0.12
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+makedepends=('popt' 'python2')
+url='https://git.fedorahosted.org/git/isomd5sum.git'
+source=(https://git.fedorahosted.org/cgit/isomd5sum.git/snapshot/isomd5sum-$pkgver.tar.xz;)
+options=('!emptydirs')
+sha1sums=('db46d6f6f8b197dfc1712adc4e878cda192be1a2')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i -e 's/shell python /shell python2 /' Makefile
+  sed -i -e 's/-Werror/ /' Makefile
+  sed -i -e 's/^\(LIBDIR = \)lib64/\1lib/' Makefile
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make all
+}
+
+package_isomd5sum() {
+  depends=('popt')
+  pkgdesc=Utilities for working with md5sum implanted in ISO images
+
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install-bin install-devel
+}
+
+package_python2-isomd5sum() {
+  depends=('python2')
+  pkgdesc=Python2 bindings for isomd5sum
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install-python
+}


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

2014-10-01 Thread Gaetan Bisson
Date: Thursday, October 2, 2014 @ 04:41:49
  Author: bisson
Revision: 223725

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

Added:
  s-nail/repos/core-i686/PKGBUILD
(from rev 223724, s-nail/repos/testing-i686/PKGBUILD)
  s-nail/repos/core-x86_64/PKGBUILD
(from rev 223724, s-nail/repos/testing-x86_64/PKGBUILD)
Deleted:
  s-nail/repos/core-i686/PKGBUILD
  s-nail/repos/core-x86_64/PKGBUILD
  s-nail/repos/testing-i686/
  s-nail/repos/testing-x86_64/

--+
 /PKGBUILD|  102 +
 core-i686/PKGBUILD   |   51 
 core-x86_64/PKGBUILD |   51 
 3 files changed, 102 insertions(+), 102 deletions(-)

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

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

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-10-02 01:44:08 UTC (rev 223724)
+++ core-x86_64/PKGBUILD2014-10-02 02:41:49 UTC (rev 223725)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s@a...@gmail.com
-# Contributor: Andreas Wagner 

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

2014-10-01 Thread Felix Yan
Date: Thursday, October 2, 2014 @ 05:42:35
  Author: fyan
Revision: 119997

upgpkg: jenkins 1.583-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-02 02:51:05 UTC (rev 119996)
+++ PKGBUILD2014-10-02 03:42:35 UTC (rev 119997)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.582
+pkgver=1.583
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('026f78106220fe1e31e0abfd94aec6454594c9c88a21db1c6690749438dc17509ce34a69bfcf8a85b9e66d42171aa1cbfc02d687b9f2c43dc06d1f7529e55b44'
+sha512sums=('7b755237e2c0c0eda26efe5062029b04e394caca695fae0fb5a9c934f40cf775c154c1f3efe87036caa8cdcc3dc71f440683f6a52b0de5ab1209c8190b9b'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'


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

2014-10-01 Thread Pierre Schmitz
Date: Thursday, October 2, 2014 @ 05:33:38
  Author: pierre
Revision: 223726

upgpkg: php-composer 1.0.0.alpha8.532-1

Modified:
  php-composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-02 02:41:49 UTC (rev 223725)
+++ PKGBUILD2014-10-02 03:33:38 UTC (rev 223726)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=php-composer
-pkgver=1.0.0.alpha8.503
+pkgver=1.0.0.alpha8.532
 pkgrel=1
 pkgdesc=Dependency Manager for PHP
 arch=('any')


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

2014-10-01 Thread Pierre Schmitz
Date: Thursday, October 2, 2014 @ 05:33:51
  Author: pierre
Revision: 223727

archrelease: copy trunk to extra-any

Added:
  php-composer/repos/extra-any/PKGBUILD
(from rev 223726, php-composer/trunk/PKGBUILD)
  php-composer/repos/extra-any/php.ini
(from rev 223726, php-composer/trunk/php.ini)
Deleted:
  php-composer/repos/extra-any/PKGBUILD
  php-composer/repos/extra-any/php.ini

--+
 PKGBUILD |  106 ++---
 php.ini  |   22 ++--
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-02 03:33:38 UTC (rev 223726)
+++ PKGBUILD2014-10-02 03:33:51 UTC (rev 223727)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=php-composer
-pkgver=1.0.0.alpha8.503
-pkgrel=1
-pkgdesc=Dependency Manager for PHP
-arch=('any')
-license=('MIT')
-url='http://getcomposer.org/'
-depends=('php' 'php-intl')
-makedepends=('git' ${pkgname})
-checkdepends=('mercurial')
-source=(${pkgname}::git+https://github.com/composer/composer.git;
-'php.ini')
-md5sums=('SKIP'
- '9d871623bc2ec0a37a7d78f708a7f838')
-
-pkgver() {
-   cd ${srcdir}/${pkgname}
-
-   local _tag=$(git tag -l --sort -version:refname | head -1)
-   echo ${_tag}.$(git rev-list ${_tag}.. --count) | sed 's/-/./g'
-}
-
-prepare() {
-   cd ${srcdir}/${pkgname}
-
-   sed s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g -i src/Composer/Compiler.php
-   /usr/bin/composer -on install
-}
-
-check() {
-   cd ${srcdir}/${pkgname}
-
-   git config --global user.email ${USER}@${HOST}
-   git config --global user.name ${USER}
-   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
-}
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
-}
-
-package() {
-   cd ${srcdir}/${pkgname}
-
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
-   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
-}

Copied: php-composer/repos/extra-any/PKGBUILD (from rev 223726, 
php-composer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-02 03:33:51 UTC (rev 223727)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-composer
+pkgver=1.0.0.alpha8.532
+pkgrel=1
+pkgdesc=Dependency Manager for PHP
+arch=('any')
+license=('MIT')
+url='http://getcomposer.org/'
+depends=('php' 'php-intl')
+makedepends=('git' ${pkgname})
+checkdepends=('mercurial')
+source=(${pkgname}::git+https://github.com/composer/composer.git;
+'php.ini')
+md5sums=('SKIP'
+ '9d871623bc2ec0a37a7d78f708a7f838')
+
+pkgver() {
+   cd ${srcdir}/${pkgname}
+
+   local _tag=$(git tag -l --sort -version:refname | head -1)
+   echo ${_tag}.$(git rev-list ${_tag}.. --count) | sed 's/-/./g'
+}
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+
+   sed s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g -i src/Composer/Compiler.php
+   /usr/bin/composer -on install
+}
+
+check() {
+   cd ${srcdir}/${pkgname}
+
+   git config --global user.email ${USER}@${HOST}
+   git config --global user.name ${USER}
+   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
+}
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
+   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
+}

Deleted: php.ini
===
--- php.ini 2014-10-02 03:33:38 UTC (rev 223726)
+++ php.ini 2014-10-02 03:33:51 UTC (rev 223727)
@@ -1,11 +0,0 @@
-[PHP]
-memory_limit=-1
-extension=openssl.so
-extension=phar.so
-extension=zip.so
-extension=curl.so
-extension=intl.so
-[Date]
-date.timezone=UTC
-[Phar]
-phar.readonly=Off

Copied: php-composer/repos/extra-any/php.ini (from rev 223726, 
php-composer/trunk/php.ini)
===
--- php.ini (rev 0)
+++ php.ini 2014-10-02 03:33:51 UTC (rev 223727)
@@ -0,0 +1,11 @@
+[PHP]
+memory_limit=-1
+extension=openssl.so
+extension=phar.so
+extension=zip.so
+extension=curl.so
+extension=intl.so
+[Date]
+date.timezone=UTC
+[Phar]
+phar.readonly=Off


[arch-commits] Commit in jenkins/repos/community-any (12 files)

2014-10-01 Thread Felix Yan
Date: Thursday, October 2, 2014 @ 05:43:12
  Author: fyan
Revision: 119998

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 119997, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 119997, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 119997, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 119997, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 119997, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.tmpfiles.d
(from rev 119997, jenkins/trunk/jenkins.tmpfiles.d)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.tmpfiles.d

+
 LICENSE|   46 ++--
 PKGBUILD   |   84 ++---
 jenkins.conf   |   26 +--
 jenkins.install|  114 +--
 jenkins.service|   48 ++---
 jenkins.tmpfiles.d |4 -
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-10-02 03:42:35 UTC (rev 119997)
+++ LICENSE 2014-10-02 03:43:12 UTC (rev 119998)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 119997, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-10-02 03:43:12 UTC (rev 119998)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-02 03:42:35 UTC (rev 119997)
+++ PKGBUILD2014-10-02 03:43:12 UTC (rev 119998)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Marcel Huber marcelhuberfoo at gmail dott com
-# Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
-
-pkgname=jenkins
-pkgver=1.582
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=('jenkins.war')