[arch-commits] Commit in dolphin-emu/trunk (PKGBUILD gcc48fix.patch)

2013-09-23 Thread Jakob Gruber
Date: Monday, September 23, 2013 @ 09:43:41
  Author: schuay
Revision: 97506

dolphin-emu-4.0-1

Modified:
  dolphin-emu/trunk/PKGBUILD
Deleted:
  dolphin-emu/trunk/gcc48fix.patch

+
 PKGBUILD   |   31 ++-
 gcc48fix.patch |  225 ---
 2 files changed, 12 insertions(+), 244 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 00:55:48 UTC (rev 97505)
+++ PKGBUILD2013-09-23 07:43:41 UTC (rev 97506)
@@ -2,31 +2,25 @@
 # Contributor: Jeremy Newton (Mystro256)
 
 pkgname=dolphin-emu
-pkgver=3.5
-pkgrel=7
+pkgver=4.0
+pkgrel=1
 epoch=1
-pkgdesc='A Gamecube / Wii / Triforce Emulator'
+pkgdesc='A Gamecube / Wii / Triforce emulator'
 arch=('i686' 'x86_64')
 url='http://dolphin-emu.org'
 license=('GPL2')
 
-makedepends=('cmake' 'glproto' 'opencl-headers')
-depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'libgl' 'libxxf86vm' 
'lsb-release' 'lzo2' 'mesa' \
- 'nvidia-cg-toolkit' 'openal' 'portaudio' 'sdl' 'wxgtk2.9')
-optdepends=('pulseaudio')
+makedepends=('cmake' 'git' 'opencl-headers')
+depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'miniupnpc' 'openal' 'portaudio' 
'sdl2' 'soundtouch' 'wxgtk2.9')
+optdepends=('pulseaudio: PulseAudio backend')
 
-source=(http://dolphin-emu.googlecode.com/files/dolphin-${pkgver}-src.zip;
+source=(${pkgname%-*}::git+https://code.google.com/p/dolphin-emu/#tag=${pkgver};
 'dolphin-emu.desktop'
-'Dolphin_Logo.png'
-'gcc48fix.patch')
+'Dolphin_Logo.png')
 
 build() {
-  cd ${srcdir}/dolphin-${pkgver}
+  cd ${srcdir}/${pkgname%-*}
 
-  # 'u32 __rold' redeclared as different kind of symbol
-  # Patch merged upstream, remove with next release ( 3.5)
-  patch -lNp1  ${srcdir}/gcc48fix.patch
-
   mkdir build  cd build
   cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-2.9
   make
@@ -33,7 +27,7 @@
 }
 
 package() {
-  cd ${srcdir}/dolphin-${pkgver}/build
+  cd ${srcdir}/${pkgname%-*}/build
 
   make DESTDIR=${pkgdir} install
 
@@ -42,7 +36,6 @@
   install -Dm644 ${srcdir}/Dolphin_Logo.png 
${pkgdir}/usr/share/pixmaps/dolphin-emu.png
 }
 
-md5sums=('4d0429f1e10f0862256e0b4c4e2f44a3'
+md5sums=('SKIP'
  'feed4580c2e6bfbc7f6c67dad861daae'
- 'd15c51f547b4bd47e510faac40bcc9d6'
- 'ddeddc2a65042486565b4b78ad739a80')
+ 'd15c51f547b4bd47e510faac40bcc9d6')

Deleted: gcc48fix.patch
===
--- gcc48fix.patch  2013-09-23 00:55:48 UTC (rev 97505)
+++ gcc48fix.patch  2013-09-23 07:43:41 UTC (rev 97506)
@@ -1,225 +0,0 @@
-diff --git a/Externals/Bochs_disasm/PowerPCDisasm.cpp 
b/Externals/Bochs_disasm/PowerPCDisasm.cpp
-index 56719ff..c25de50 100644
 a/Externals/Bochs_disasm/PowerPCDisasm.cpp
-+++ b/Externals/Bochs_disasm/PowerPCDisasm.cpp
-@@ -580,7 +580,7 @@ typedef unsigned int ppc_word;
-   if (me  mb) 
-   mask = ~mask;
-   //rotate the mask so it can be applied to source reg
--  return _rotl(mask, 32 - r);
-+  return __rotl(mask, 32 - r);
-   }
- 
- 
-diff --git a/Source/Core/Common/Src/CommonFuncs.h 
b/Source/Core/Common/Src/CommonFuncs.h
-index f892769..e29ab7c 100644
 a/Source/Core/Common/Src/CommonFuncs.h
-+++ b/Source/Core/Common/Src/CommonFuncs.h
-@@ -67,7 +67,7 @@ _mm_shuffle_epi8(__m128i a, __m128i mask)
-   #endif
-   #define ARRAYSIZE(A) (sizeof(A)/sizeof((A)[0]))
- 
--inline u32 _rotl(u32 x, int shift) {
-+inline u32 __rotl(u32 x, int shift) {
-shift = 31;
-if (!shift) return x;
-return (x  shift) | (x  (32 - shift));
-@@ -78,7 +78,7 @@ inline u64 _rotl64(u64 x, unsigned int shift){
-   return (x  n) | (x  (64 - n));
- }
- 
--inline u32 _rotr(u32 x, int shift) {
-+inline u32 __rotr(u32 x, int shift) {
-shift = 31;
-if (!shift) return x;
-return (x  shift) | (x  (32 - shift));
-diff --git a/Source/Core/Common/Src/Hash.cpp b/Source/Core/Common/Src/Hash.cpp
-index bc72b16..68ff397 100644
 a/Source/Core/Common/Src/Hash.cpp
-+++ b/Source/Core/Common/Src/Hash.cpp
-@@ -364,15 +364,15 @@ inline u32 fmix32(u32 h)
- inline void bmix32(u32  h1, u32  h2, u32  k1, u32  k2, u32  c1, u32  c2)
- {
-   k1 *= c1; 
--  k1  = _rotl(k1,11); 
-+  k1  = __rotl(k1,11); 
-   k1 *= c2;
-   h1 ^= k1;
-   h1 += h2;
- 
--  h2 = _rotl(h2,17);
-+  h2 = __rotl(h2,17);
- 
-   k2 *= c2; 
--  k2  = _rotl(k2,11);
-+  k2  = __rotl(k2,11);
-   k2 *= c1;
-   h2 ^= k2;
-   h2 += h1;
-diff --git a/Source/Core/Core/Src/ARDecrypt.cpp 
b/Source/Core/Core/Src/ARDecrypt.cpp
-index 04072ce..a8fb4a6 100644
 a/Source/Core/Core/Src/ARDecrypt.cpp
-+++ b/Source/Core/Core/Src/ARDecrypt.cpp
-@@ -270,26 +270,26 @@ void unscramble1(u32 *addr, u32 *val)
- {
-   u32 tmp;
- 
--  *val = _rotl(*val,4);
-+  *val = __rotl(*val,4);
- 
-

[arch-commits] Commit in dolphin-emu/repos/community-i686 (7 files)

2013-09-23 Thread Jakob Gruber
Date: Monday, September 23, 2013 @ 09:47:04
  Author: schuay
Revision: 97507

archrelease: copy trunk to community-i686

Added:
  dolphin-emu/repos/community-i686/Dolphin_Logo.png
(from rev 97506, dolphin-emu/trunk/Dolphin_Logo.png)
  dolphin-emu/repos/community-i686/PKGBUILD
(from rev 97506, dolphin-emu/trunk/PKGBUILD)
  dolphin-emu/repos/community-i686/dolphin-emu.desktop
(from rev 97506, dolphin-emu/trunk/dolphin-emu.desktop)
Deleted:
  dolphin-emu/repos/community-i686/Dolphin_Logo.png
  dolphin-emu/repos/community-i686/PKGBUILD
  dolphin-emu/repos/community-i686/dolphin-emu.desktop
  dolphin-emu/repos/community-i686/gcc48fix.patch

-+
 PKGBUILD|   89 +--
 dolphin-emu.desktop |   22 ++--
 gcc48fix.patch  |  225 --
 3 files changed, 52 insertions(+), 284 deletions(-)

Deleted: Dolphin_Logo.png
===
(Binary files differ)

Copied: dolphin-emu/repos/community-i686/Dolphin_Logo.png (from rev 97506, 
dolphin-emu/trunk/Dolphin_Logo.png)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 07:43:41 UTC (rev 97506)
+++ PKGBUILD2013-09-23 07:47:04 UTC (rev 97507)
@@ -1,48 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-# Contributor: Jeremy Newton (Mystro256)
-
-pkgname=dolphin-emu
-pkgver=3.5
-pkgrel=7
-epoch=1
-pkgdesc='A Gamecube / Wii / Triforce Emulator'
-arch=('i686' 'x86_64')
-url='http://dolphin-emu.org'
-license=('GPL2')
-
-makedepends=('cmake' 'glproto' 'opencl-headers')
-depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'libgl' 'libxxf86vm' 
'lsb-release' 'lzo2' 'mesa' \
- 'nvidia-cg-toolkit' 'openal' 'portaudio' 'sdl' 'wxgtk2.9')
-optdepends=('pulseaudio')
-
-source=(http://dolphin-emu.googlecode.com/files/dolphin-${pkgver}-src.zip;
-'dolphin-emu.desktop'
-'Dolphin_Logo.png'
-'gcc48fix.patch')
-
-build() {
-  cd ${srcdir}/dolphin-${pkgver}
-
-  # 'u32 __rold' redeclared as different kind of symbol
-  # Patch merged upstream, remove with next release ( 3.5)
-  patch -lNp1  ${srcdir}/gcc48fix.patch
-
-  mkdir build  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-2.9
-  make
-}
-
-package() {
-  cd ${srcdir}/dolphin-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 ${srcdir}/dolphin-emu.desktop \
- ${pkgdir}/usr/share/applications/dolphin-emu.desktop
-  install -Dm644 ${srcdir}/Dolphin_Logo.png 
${pkgdir}/usr/share/pixmaps/dolphin-emu.png
-}
-
-md5sums=('4d0429f1e10f0862256e0b4c4e2f44a3'
- 'feed4580c2e6bfbc7f6c67dad861daae'
- 'd15c51f547b4bd47e510faac40bcc9d6'
- 'ddeddc2a65042486565b4b78ad739a80')

Copied: dolphin-emu/repos/community-i686/PKGBUILD (from rev 97506, 
dolphin-emu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 07:47:04 UTC (rev 97507)
@@ -0,0 +1,41 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: Jeremy Newton (Mystro256)
+
+pkgname=dolphin-emu
+pkgver=4.0
+pkgrel=1
+epoch=1
+pkgdesc='A Gamecube / Wii / Triforce emulator'
+arch=('i686' 'x86_64')
+url='http://dolphin-emu.org'
+license=('GPL2')
+
+makedepends=('cmake' 'git' 'opencl-headers')
+depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'miniupnpc' 'openal' 'portaudio' 
'sdl2' 'soundtouch' 'wxgtk2.9')
+optdepends=('pulseaudio: PulseAudio backend')
+
+source=(${pkgname%-*}::git+https://code.google.com/p/dolphin-emu/#tag=${pkgver};
+'dolphin-emu.desktop'
+'Dolphin_Logo.png')
+
+build() {
+  cd ${srcdir}/${pkgname%-*}
+
+  mkdir build  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-2.9
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname%-*}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/dolphin-emu.desktop \
+ ${pkgdir}/usr/share/applications/dolphin-emu.desktop
+  install -Dm644 ${srcdir}/Dolphin_Logo.png 
${pkgdir}/usr/share/pixmaps/dolphin-emu.png
+}
+
+md5sums=('SKIP'
+ 'feed4580c2e6bfbc7f6c67dad861daae'
+ 'd15c51f547b4bd47e510faac40bcc9d6')

Deleted: dolphin-emu.desktop
===
--- dolphin-emu.desktop 2013-09-23 07:43:41 UTC (rev 97506)
+++ dolphin-emu.desktop 2013-09-23 07:47:04 UTC (rev 97507)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=Dolphin
-Categories=Game;Emulator;GTK;
-GenericName=GameCube and Wii Emulator
-Comment=An emulator for the GameCube and Wii consoles
-Exec=dolphin-emu
-Icon=dolphin-emu
-StartupNotify=false
-Name[en_US]=Dolphin

Copied: dolphin-emu/repos/community-i686/dolphin-emu.desktop (from rev 97506, 

[arch-commits] Commit in dolphin-emu/repos/community-x86_64 (7 files)

2013-09-23 Thread Jakob Gruber
Date: Monday, September 23, 2013 @ 09:47:10
  Author: schuay
Revision: 97508

archrelease: copy trunk to community-x86_64

Added:
  dolphin-emu/repos/community-x86_64/Dolphin_Logo.png
(from rev 97507, dolphin-emu/trunk/Dolphin_Logo.png)
  dolphin-emu/repos/community-x86_64/PKGBUILD
(from rev 97507, dolphin-emu/trunk/PKGBUILD)
  dolphin-emu/repos/community-x86_64/dolphin-emu.desktop
(from rev 97507, dolphin-emu/trunk/dolphin-emu.desktop)
Deleted:
  dolphin-emu/repos/community-x86_64/Dolphin_Logo.png
  dolphin-emu/repos/community-x86_64/PKGBUILD
  dolphin-emu/repos/community-x86_64/dolphin-emu.desktop
  dolphin-emu/repos/community-x86_64/gcc48fix.patch

-+
 PKGBUILD|   89 +--
 dolphin-emu.desktop |   22 ++--
 gcc48fix.patch  |  225 --
 3 files changed, 52 insertions(+), 284 deletions(-)

Deleted: Dolphin_Logo.png
===
(Binary files differ)

Copied: dolphin-emu/repos/community-x86_64/Dolphin_Logo.png (from rev 97507, 
dolphin-emu/trunk/Dolphin_Logo.png)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 07:47:04 UTC (rev 97507)
+++ PKGBUILD2013-09-23 07:47:10 UTC (rev 97508)
@@ -1,48 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-# Contributor: Jeremy Newton (Mystro256)
-
-pkgname=dolphin-emu
-pkgver=3.5
-pkgrel=7
-epoch=1
-pkgdesc='A Gamecube / Wii / Triforce Emulator'
-arch=('i686' 'x86_64')
-url='http://dolphin-emu.org'
-license=('GPL2')
-
-makedepends=('cmake' 'glproto' 'opencl-headers')
-depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'libgl' 'libxxf86vm' 
'lsb-release' 'lzo2' 'mesa' \
- 'nvidia-cg-toolkit' 'openal' 'portaudio' 'sdl' 'wxgtk2.9')
-optdepends=('pulseaudio')
-
-source=(http://dolphin-emu.googlecode.com/files/dolphin-${pkgver}-src.zip;
-'dolphin-emu.desktop'
-'Dolphin_Logo.png'
-'gcc48fix.patch')
-
-build() {
-  cd ${srcdir}/dolphin-${pkgver}
-
-  # 'u32 __rold' redeclared as different kind of symbol
-  # Patch merged upstream, remove with next release ( 3.5)
-  patch -lNp1  ${srcdir}/gcc48fix.patch
-
-  mkdir build  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-2.9
-  make
-}
-
-package() {
-  cd ${srcdir}/dolphin-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 ${srcdir}/dolphin-emu.desktop \
- ${pkgdir}/usr/share/applications/dolphin-emu.desktop
-  install -Dm644 ${srcdir}/Dolphin_Logo.png 
${pkgdir}/usr/share/pixmaps/dolphin-emu.png
-}
-
-md5sums=('4d0429f1e10f0862256e0b4c4e2f44a3'
- 'feed4580c2e6bfbc7f6c67dad861daae'
- 'd15c51f547b4bd47e510faac40bcc9d6'
- 'ddeddc2a65042486565b4b78ad739a80')

Copied: dolphin-emu/repos/community-x86_64/PKGBUILD (from rev 97507, 
dolphin-emu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 07:47:10 UTC (rev 97508)
@@ -0,0 +1,41 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: Jeremy Newton (Mystro256)
+
+pkgname=dolphin-emu
+pkgver=4.0
+pkgrel=1
+epoch=1
+pkgdesc='A Gamecube / Wii / Triforce emulator'
+arch=('i686' 'x86_64')
+url='http://dolphin-emu.org'
+license=('GPL2')
+
+makedepends=('cmake' 'git' 'opencl-headers')
+depends=('bluez-libs' 'ffmpeg' 'glew' 'libao' 'miniupnpc' 'openal' 'portaudio' 
'sdl2' 'soundtouch' 'wxgtk2.9')
+optdepends=('pulseaudio: PulseAudio backend')
+
+source=(${pkgname%-*}::git+https://code.google.com/p/dolphin-emu/#tag=${pkgver};
+'dolphin-emu.desktop'
+'Dolphin_Logo.png')
+
+build() {
+  cd ${srcdir}/${pkgname%-*}
+
+  mkdir build  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-2.9
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname%-*}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/dolphin-emu.desktop \
+ ${pkgdir}/usr/share/applications/dolphin-emu.desktop
+  install -Dm644 ${srcdir}/Dolphin_Logo.png 
${pkgdir}/usr/share/pixmaps/dolphin-emu.png
+}
+
+md5sums=('SKIP'
+ 'feed4580c2e6bfbc7f6c67dad861daae'
+ 'd15c51f547b4bd47e510faac40bcc9d6')

Deleted: dolphin-emu.desktop
===
--- dolphin-emu.desktop 2013-09-23 07:47:04 UTC (rev 97507)
+++ dolphin-emu.desktop 2013-09-23 07:47:10 UTC (rev 97508)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=Dolphin
-Categories=Game;Emulator;GTK;
-GenericName=GameCube and Wii Emulator
-Comment=An emulator for the GameCube and Wii consoles
-Exec=dolphin-emu
-Icon=dolphin-emu
-StartupNotify=false
-Name[en_US]=Dolphin

Copied: dolphin-emu/repos/community-x86_64/dolphin-emu.desktop (from 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:35:09
  Author: jgc
Revision: 194721

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  totem-plparser/repos/gnome-unstable-i686/PKGBUILD
(from rev 194720, totem-plparser/trunk/PKGBUILD)
  totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194720, totem-plparser/trunk/PKGBUILD)
Deleted:
  totem-plparser/repos/gnome-unstable-i686/PKGBUILD
  totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 09:35:02 UTC (rev 194720)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 09:35:09 UTC (rev 194721)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=totem-plparser
-pkgver=3.9.92
-pkgrel=1
-url=http://www.gnome.org;
-pkgdesc=Totem playlist parser library
-license=('LGPL')
-arch=(i686 x86_64)
-depends=('gmime' 'libsoup' 'libarchive')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('9c1deace65e617190ef21bfef5767b78896be3f33acad76b96d235af154f8c30')
-
-build() {
-  cd totem-pl-parser-$pkgver
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --disable-static
-  make
-}
-
-package(){
-  cd totem-pl-parser-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: totem-plparser/repos/gnome-unstable-i686/PKGBUILD (from rev 194720, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 09:35:09 UTC (rev 194721)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=totem-plparser
+pkgver=3.10.0
+pkgrel=1
+url=http://www.gnome.org;
+pkgdesc=Totem playlist parser library
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup' 'libarchive')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
+sha256sums=('87eac3fdf2b632dfac0edda07906a3e84f1ce4442b8127394414020dafe41aa9')
+
+build() {
+  cd totem-pl-parser-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --disable-static
+  make
+}
+
+package(){
+  cd totem-pl-parser-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-09-23 09:35:02 UTC (rev 194720)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 09:35:09 UTC (rev 194721)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=totem-plparser
-pkgver=3.9.92
-pkgrel=1
-url=http://www.gnome.org;
-pkgdesc=Totem playlist parser library
-license=('LGPL')
-arch=(i686 x86_64)
-depends=('gmime' 'libsoup' 'libarchive')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('9c1deace65e617190ef21bfef5767b78896be3f33acad76b96d235af154f8c30')
-
-build() {
-  cd totem-pl-parser-$pkgver
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --disable-static
-  make
-}
-
-package(){
-  cd totem-pl-parser-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194720, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 09:35:09 UTC (rev 194721)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=totem-plparser
+pkgver=3.10.0
+pkgrel=1
+url=http://www.gnome.org;
+pkgdesc=Totem playlist parser library
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup' 'libarchive')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool')

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:35:02
  Author: jgc
Revision: 194720

upgpkg: totem-plparser 3.10.0-1

Modified:
  totem-plparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 03:52:26 UTC (rev 194719)
+++ PKGBUILD2013-09-23 09:35:02 UTC (rev 194720)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=totem-plparser
-pkgver=3.9.92
+pkgver=3.10.0
 pkgrel=1
 url=http://www.gnome.org;
 pkgdesc=Totem playlist parser library
@@ -13,7 +13,7 @@
 makedepends=('intltool' 'gobject-introspection')
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('9c1deace65e617190ef21bfef5767b78896be3f33acad76b96d235af154f8c30')
+sha256sums=('87eac3fdf2b632dfac0edda07906a3e84f1ce4442b8127394414020dafe41aa9')
 
 build() {
   cd totem-pl-parser-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:47:24
  Author: jgc
Revision: 194722

upgpkg: totem 3.10.0-1

Modified:
  totem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 09:35:09 UTC (rev 194721)
+++ PKGBUILD2013-09-23 09:47:24 UTC (rev 194722)
@@ -4,7 +4,7 @@
 
 pkgbase=totem
 pkgname=('totem' 'totem-plugin')
-pkgver=3.9.92
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=GNOME3 movie player based on GStreamer
 url=http://www.gnome.org;
@@ -18,7 +18,7 @@
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz
 browser-plugins.ini bugreport.patch)
-sha256sums=('da2d5bef59fbc615cbf8d81e3063ec2eb524131f1904058ffccb16978d690a53'
+sha256sums=('c223e953f9697cc932f3b7efd87cea767a3e5a2ba0e3cda08628aa364caee094'
 'a50a3bbf35f0535f7e8e20af1893446a2e5711015484f9ae6d1ff91af3b23c4e'
 '30481dab7e21b66257e3238f5a8b708e1a5c4797d7da904f7ebaba4c2c2ef167')
 



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:47:33
  Author: jgc
Revision: 194723

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  totem/repos/gnome-unstable-i686/PKGBUILD
(from rev 194722, totem/trunk/PKGBUILD)
  totem/repos/gnome-unstable-i686/browser-plugins.ini
(from rev 194722, totem/trunk/browser-plugins.ini)
  totem/repos/gnome-unstable-i686/bugreport.patch
(from rev 194722, totem/trunk/bugreport.patch)
  totem/repos/gnome-unstable-i686/totem.install
(from rev 194722, totem/trunk/totem.install)
  totem/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194722, totem/trunk/PKGBUILD)
  totem/repos/gnome-unstable-x86_64/browser-plugins.ini
(from rev 194722, totem/trunk/browser-plugins.ini)
  totem/repos/gnome-unstable-x86_64/bugreport.patch
(from rev 194722, totem/trunk/bugreport.patch)
  totem/repos/gnome-unstable-x86_64/totem.install
(from rev 194722, totem/trunk/totem.install)
Deleted:
  totem/repos/gnome-unstable-i686/PKGBUILD
  totem/repos/gnome-unstable-i686/browser-plugins.ini
  totem/repos/gnome-unstable-i686/bugreport.patch
  totem/repos/gnome-unstable-i686/totem.install
  totem/repos/gnome-unstable-x86_64/PKGBUILD
  totem/repos/gnome-unstable-x86_64/browser-plugins.ini
  totem/repos/gnome-unstable-x86_64/bugreport.patch
  totem/repos/gnome-unstable-x86_64/totem.install

---+
 /PKGBUILD |  164 
 /browser-plugins.ini  |4 
 /bugreport.patch  |   44 +++
 /totem.install|   26 
 gnome-unstable-i686/PKGBUILD  |   82 --
 gnome-unstable-i686/browser-plugins.ini   |2 
 gnome-unstable-i686/bugreport.patch   |   22 ---
 gnome-unstable-i686/totem.install |   13 --
 gnome-unstable-x86_64/PKGBUILD|   82 --
 gnome-unstable-x86_64/browser-plugins.ini |2 
 gnome-unstable-x86_64/bugreport.patch |   22 ---
 gnome-unstable-x86_64/totem.install   |   13 --
 12 files changed, 238 insertions(+), 238 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 09:47:24 UTC (rev 194722)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 09:47:33 UTC (rev 194723)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgbase=totem
-pkgname=('totem' 'totem-plugin')
-pkgver=3.9.92
-pkgrel=1
-pkgdesc=GNOME3 movie player based on GStreamer
-url=http://www.gnome.org;
-arch=(i686 x86_64)
-license=(GPL2 custom)
-depends=(gst-plugins-base gst-plugins-good totem-plparser desktop-file-utils 
iso-codes libpeas
- hicolor-icon-theme gnome-icon-theme gsettings-desktop-schemas dconf 
clutter-gst
- clutter-gtk python-gobject python-xdg gst-plugins-bad)
-makedepends=(intltool libnautilus-extension lirc-utils vala grilo dbus-glib 
zeitgeist
- itstool docbook-xsl python-pylint)
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz
-browser-plugins.ini bugreport.patch)
-sha256sums=('da2d5bef59fbc615cbf8d81e3063ec2eb524131f1904058ffccb16978d690a53'
-'a50a3bbf35f0535f7e8e20af1893446a2e5711015484f9ae6d1ff91af3b23c4e'
-'30481dab7e21b66257e3238f5a8b708e1a5c4797d7da904f7ebaba4c2c2ef167')
-
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  # Make compatible with Python 3 and Gstreamer 1.0
-  patch -Np1 -i ../bugreport.patch
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/totem \
---localstatedir=/var \
---disable-static \
---enable-python \
---enable-nautilus
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package_totem() {
-  groups=(gnome)
-  install=totem.install
-  optdepends=('gst-plugins-ugly: Extra media codecs'
-  'gst-libav: Extra media codecs'
-  'lirc-utils: Infrared Remote Control plugin'
-  'grilo-plugins: Browse sidebar (remote media)'
-  'zeitgeist: Zeitgeist plugin')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  rm -r $pkgdir/usr/lib/mozilla
-  rm $pkgdir/usr/lib/totem/totem-plugin-viewer
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/totem/COPYING
-}
-
-package_totem-plugin() {
-  groups=(gnome)
-  pkgdesc=Totem plugin for web browsers
-  depends=(totem=$pkgver dbus-glib)
-  backup=(etc/totem/browser-plugins.ini)
-
-  cd $pkgbase-$pkgver
-  make -C browser-plugin \
-plugindir=/usr/lib/mozilla/plugins \
-xptdir=/usr/lib/mozilla/plugins \
-DESTDIR=$pkgdir install
-
-  install -Dm644 ../browser-plugins.ini 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:49:14
  Author: jgc
Revision: 194724

upgpkg: gsettings-desktop-schemas 3.10.0-1

Modified:
  gsettings-desktop-schemas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 09:47:33 UTC (rev 194723)
+++ PKGBUILD2013-09-23 09:49:14 UTC (rev 194724)
@@ -4,7 +4,7 @@
 # Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
 
 pkgname=gsettings-desktop-schemas
-pkgver=3.9.91
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=Shared GSettings schemas for the desktop
 arch=(any)
@@ -14,7 +14,7 @@
 makedepends=(intltool gobject-introspection)
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('988dfd3dcb0574c9a4bca88edaa5ccab499bebc7c668c0292a3e8b1dd34e3e46')
+sha256sums=('ca681596b0fd35a061c50bf99a5f5bdcf245ccc60019895edd2aef9f79c7a8ce')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in gsettings-desktop-schemas/repos/gnome-unstable-any (4 files)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:49:19
  Author: jgc
Revision: 194725

archrelease: copy trunk to gnome-unstable-any

Added:
  gsettings-desktop-schemas/repos/gnome-unstable-any/PKGBUILD
(from rev 194724, gsettings-desktop-schemas/trunk/PKGBUILD)
  
gsettings-desktop-schemas/repos/gnome-unstable-any/gsettings-desktop-schemas.install
(from rev 194724, 
gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install)
Deleted:
  gsettings-desktop-schemas/repos/gnome-unstable-any/PKGBUILD
  
gsettings-desktop-schemas/repos/gnome-unstable-any/gsettings-desktop-schemas.install

---+
 PKGBUILD  |   58 ++--
 gsettings-desktop-schemas.install |   22 ++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 09:49:14 UTC (rev 194724)
+++ PKGBUILD2013-09-23 09:49:19 UTC (rev 194725)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
-
-pkgname=gsettings-desktop-schemas
-pkgver=3.9.91
-pkgrel=1
-pkgdesc=Shared GSettings schemas for the desktop
-arch=(any)
-url=http://live.gnome.org/;
-license=(GPL)
-depends=(glib2)
-makedepends=(intltool gobject-introspection)
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('988dfd3dcb0574c9a4bca88edaa5ccab499bebc7c668c0292a3e8b1dd34e3e46')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gsettings-desktop-schemas/repos/gnome-unstable-any/PKGBUILD (from rev 
194724, gsettings-desktop-schemas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 09:49:19 UTC (rev 194725)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
+
+pkgname=gsettings-desktop-schemas
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=Shared GSettings schemas for the desktop
+arch=(any)
+url=http://live.gnome.org/;
+license=(GPL)
+depends=(glib2)
+makedepends=(intltool gobject-introspection)
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('ca681596b0fd35a061c50bf99a5f5bdcf245ccc60019895edd2aef9f79c7a8ce')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gsettings-desktop-schemas.install
===
--- gsettings-desktop-schemas.install   2013-09-23 09:49:14 UTC (rev 194724)
+++ gsettings-desktop-schemas.install   2013-09-23 09:49:19 UTC (rev 194725)
@@ -1,11 +0,0 @@
-post_install() {
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: 
gsettings-desktop-schemas/repos/gnome-unstable-any/gsettings-desktop-schemas.install
 (from rev 194724, 
gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install)
===
--- gsettings-desktop-schemas.install   (rev 0)
+++ gsettings-desktop-schemas.install   2013-09-23 09:49:19 UTC (rev 194725)
@@ -0,0 +1,11 @@
+post_install() {
+   glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:56:13
  Author: jgc
Revision: 194727

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-bluetooth/repos/gnome-unstable-i686/
  gnome-bluetooth/repos/gnome-unstable-i686/61-gnome-bluetooth-rfkill.rules
(from rev 194726, gnome-bluetooth/trunk/61-gnome-bluetooth-rfkill.rules)
  gnome-bluetooth/repos/gnome-unstable-i686/PKGBUILD
(from rev 194726, gnome-bluetooth/trunk/PKGBUILD)
  gnome-bluetooth/repos/gnome-unstable-i686/gnome-bluetooth.install
(from rev 194726, gnome-bluetooth/trunk/gnome-bluetooth.install)
  gnome-bluetooth/repos/gnome-unstable-x86_64/
  gnome-bluetooth/repos/gnome-unstable-x86_64/61-gnome-bluetooth-rfkill.rules
(from rev 194726, gnome-bluetooth/trunk/61-gnome-bluetooth-rfkill.rules)
  gnome-bluetooth/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194726, gnome-bluetooth/trunk/PKGBUILD)
  gnome-bluetooth/repos/gnome-unstable-x86_64/gnome-bluetooth.install
(from rev 194726, gnome-bluetooth/trunk/gnome-bluetooth.install)

---+
 gnome-unstable-i686/61-gnome-bluetooth-rfkill.rules   |7 ++
 gnome-unstable-i686/PKGBUILD  |   42 
 gnome-unstable-i686/gnome-bluetooth.install   |   11 
 gnome-unstable-x86_64/61-gnome-bluetooth-rfkill.rules |7 ++
 gnome-unstable-x86_64/PKGBUILD|   42 
 gnome-unstable-x86_64/gnome-bluetooth.install |   11 
 6 files changed, 120 insertions(+)

Copied: 
gnome-bluetooth/repos/gnome-unstable-i686/61-gnome-bluetooth-rfkill.rules (from 
rev 194726, gnome-bluetooth/trunk/61-gnome-bluetooth-rfkill.rules)
===
--- gnome-unstable-i686/61-gnome-bluetooth-rfkill.rules 
(rev 0)
+++ gnome-unstable-i686/61-gnome-bluetooth-rfkill.rules 2013-09-23 09:56:13 UTC 
(rev 194727)
@@ -0,0 +1,7 @@
+# Get access to /dev/rfkill for users
+# See https://bugzilla.redhat.com/show_bug.cgi?id=514798
+#
+# Simplified by Kay Sievers
+# https://bugzilla.redhat.com/show_bug.cgi?id=733326
+
+KERNEL==rfkill, SUBSYSTEM==misc, TAG+=uaccess

Copied: gnome-bluetooth/repos/gnome-unstable-i686/PKGBUILD (from rev 194726, 
gnome-bluetooth/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 09:56:13 UTC (rev 194727)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+
+pkgname=gnome-bluetooth
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=The GNOME Bluetooth Subsystem
+arch=(i686 x86_64)
+url=http://live.gnome.org/GnomeBluetooth;
+license=(GPL LGPL)
+depends=(gtk3 hicolor-icon-theme libnotify bluez)
+makedepends=(intltool gobject-introspection itstool docbook-xsl)
+options=(!libtool !emptydirs)
+install=gnome-bluetooth.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+61-gnome-bluetooth-rfkill.rules)
+sha256sums=('7ee4ad464abfed59f04d1a471eb25cfb95fc34eeefbe4c47580dbb50df2ab712'
+'8dd2d3637f380a89e72f65e6c8021e994ccbdc645f1a1b1dbffe74ac9f061f53')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--disable-desktop-update \
+--disable-icon-update \
+--disable-schemas-compile
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -m644 -D ../61-gnome-bluetooth-rfkill.rules \
+  $pkgdir/usr/lib/udev/rules.d//61-gnome-bluetooth-rfkill.rules
+}

Copied: gnome-bluetooth/repos/gnome-unstable-i686/gnome-bluetooth.install (from 
rev 194726, gnome-bluetooth/trunk/gnome-bluetooth.install)
===
--- gnome-unstable-i686/gnome-bluetooth.install (rev 0)
+++ gnome-unstable-i686/gnome-bluetooth.install 2013-09-23 09:56:13 UTC (rev 
194727)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: 
gnome-bluetooth/repos/gnome-unstable-x86_64/61-gnome-bluetooth-rfkill.rules 
(from rev 194726, gnome-bluetooth/trunk/61-gnome-bluetooth-rfkill.rules)
===
--- gnome-unstable-x86_64/61-gnome-bluetooth-rfkill.rules   
(rev 0)
+++ gnome-unstable-x86_64/61-gnome-bluetooth-rfkill.rules   2013-09-23 
09:56:13 UTC (rev 194727)
@@ -0,0 +1,7 @@
+# Get access to /dev/rfkill for users
+# See https://bugzilla.redhat.com/show_bug.cgi?id=514798
+#
+# Simplified by Kay Sievers
+# 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 11:56:06
  Author: jgc
Revision: 194726

upgpkg: gnome-bluetooth 3.10.0-1

Modified:
  gnome-bluetooth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 09:49:19 UTC (rev 194725)
+++ PKGBUILD2013-09-23 09:56:06 UTC (rev 194726)
@@ -3,19 +3,19 @@
 # Contributor: Roman Kyrylych ro...@archlinux.org
 
 pkgname=gnome-bluetooth
-pkgver=3.8.1
-pkgrel=2
+pkgver=3.10.0
+pkgrel=1
 pkgdesc=The GNOME Bluetooth Subsystem
 arch=(i686 x86_64)
 url=http://live.gnome.org/GnomeBluetooth;
 license=(GPL LGPL)
-depends=(gtk3 hicolor-icon-theme libnotify bluez4)
+depends=(gtk3 hicolor-icon-theme libnotify bluez)
 makedepends=(intltool gobject-introspection itstool docbook-xsl)
 options=(!libtool !emptydirs)
 install=gnome-bluetooth.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
 61-gnome-bluetooth-rfkill.rules)
-sha256sums=('8095fcfa014931773e9d231dff76c6924f43abfbe4c5525cf07fd2d7f8e1f770'
+sha256sums=('7ee4ad464abfed59f04d1a471eb25cfb95fc34eeefbe4c47580dbb50df2ab712'
 '8dd2d3637f380a89e72f65e6c8021e994ccbdc645f1a1b1dbffe74ac9f061f53')
 
 build() {



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 12:00:16
  Author: jgc
Revision: 194728

upgpkg: json-glib 0.16.2-1

Modified:
  json-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 09:56:13 UTC (rev 194727)
+++ PKGBUILD2013-09-23 10:00:16 UTC (rev 194728)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=json-glib
-pkgver=0.16.0
+pkgver=0.16.2
 pkgrel=1
 pkgdesc=JSON library built on GLib
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('gobject-introspection')
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('e4a3fd2f399e4c148aad608e6ed0a94095f2ddde9dd12f5aa2f072ecae5c1d37')
+sha256sums=('a95475364ec27ab1d2a69303cf579018558bfb6981e3498b3aaf1e6401f7422c')
 
 build(){
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 12:00:22
  Author: jgc
Revision: 194729

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  json-glib/repos/gnome-unstable-i686/
  json-glib/repos/gnome-unstable-i686/PKGBUILD
(from rev 194728, json-glib/trunk/PKGBUILD)
  json-glib/repos/gnome-unstable-x86_64/
  json-glib/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194728, json-glib/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   31 +++
 gnome-unstable-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: json-glib/repos/gnome-unstable-i686/PKGBUILD (from rev 194728, 
json-glib/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 10:00:22 UTC (rev 194729)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=json-glib
+pkgver=0.16.2
+pkgrel=1
+pkgdesc=JSON library built on GLib
+arch=('i686' 'x86_64')
+url=http://live.gnome.org/JsonGlib;
+license=('GPL')
+depends=('glib2')
+makedepends=('gobject-introspection')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('a95475364ec27ab1d2a69303cf579018558bfb6981e3498b3aaf1e6401f7422c')
+
+build(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+check(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}

Copied: json-glib/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194728, 
json-glib/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 10:00:22 UTC (rev 194729)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=json-glib
+pkgver=0.16.2
+pkgrel=1
+pkgdesc=JSON library built on GLib
+arch=('i686' 'x86_64')
+url=http://live.gnome.org/JsonGlib;
+license=('GPL')
+depends=('glib2')
+makedepends=('gobject-introspection')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('a95475364ec27ab1d2a69303cf579018558bfb6981e3498b3aaf1e6401f7422c')
+
+build(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+check(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 13:19:02
  Author: jgc
Revision: 194731

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  evolution-data-server/repos/gnome-unstable-i686/PKGBUILD
(from rev 194730, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/gnome-unstable-i686/evolution-data-server.install
(from rev 194730, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-1.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-1.patch)
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-2.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-2.patch)
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-3.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-3.patch)
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-4.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-4.patch)
  evolution-data-server/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194730, evolution-data-server/trunk/PKGBUILD)
  
evolution-data-server/repos/gnome-unstable-x86_64/evolution-data-server.install
(from rev 194730, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-1.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-1.patch)
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-2.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-2.patch)
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-3.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-3.patch)
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-4.patch
(from rev 194730, evolution-data-server/trunk/fix-google-2fa-4.patch)
Deleted:
  evolution-data-server/repos/gnome-unstable-i686/PKGBUILD
  evolution-data-server/repos/gnome-unstable-i686/evolution-data-server.install
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-1.patch
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-2.patch
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-3.patch
  evolution-data-server/repos/gnome-unstable-i686/fix-google-2fa-4.patch
  evolution-data-server/repos/gnome-unstable-x86_64/PKGBUILD
  
evolution-data-server/repos/gnome-unstable-x86_64/evolution-data-server.install
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-1.patch
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-2.patch
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-3.patch
  evolution-data-server/repos/gnome-unstable-x86_64/fix-google-2fa-4.patch

-+
 /PKGBUILD   |   64 +
 /evolution-data-server.install  |   22 
 /fix-google-2fa-1.patch |  804 ++
 /fix-google-2fa-2.patch |  172 +++
 /fix-google-2fa-3.patch |   96 ++
 /fix-google-2fa-4.patch |  318 +++
 gnome-unstable-i686/PKGBUILD|   33 
 gnome-unstable-i686/evolution-data-server.install   |   11 
 gnome-unstable-i686/fix-google-2fa-1.patch  |  402 -
 gnome-unstable-i686/fix-google-2fa-2.patch  |   86 -
 gnome-unstable-i686/fix-google-2fa-3.patch  |   48 -
 gnome-unstable-i686/fix-google-2fa-4.patch  |  159 ---
 gnome-unstable-x86_64/PKGBUILD  |   33 
 gnome-unstable-x86_64/evolution-data-server.install |   11 
 gnome-unstable-x86_64/fix-google-2fa-1.patch|  402 -
 gnome-unstable-x86_64/fix-google-2fa-2.patch|   86 -
 gnome-unstable-x86_64/fix-google-2fa-3.patch|   48 -
 gnome-unstable-x86_64/fix-google-2fa-4.patch|  159 ---
 18 files changed, 1476 insertions(+), 1478 deletions(-)

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


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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 13:18:51
  Author: jgc
Revision: 194730

upgpkg: evolution-data-server 3.10.0-1

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 10:00:22 UTC (rev 194729)
+++ PKGBUILD2013-09-23 11:18:51 UTC (rev 194730)
@@ -2,27 +2,26 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=evolution-data-server
-pkgver=3.9.92
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=Centralized access to appointments and contacts
 arch=(i686 x86_64)
 depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata)
-makedepends=(intltool gperf gobject-introspection vala python2 gnome-common)
+makedepends=(intltool gperf gobject-introspection vala python2)
 options=('!libtool')
 install=$pkgname.install
 url=http://www.gnome.org;
 license=(GPL)
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('10f4040eb1e8086c706fdf0791eedd21781e296c4c222f79c55d38151e4f50c1')
+sha256sums=('1c47a0e138e9a5ed630d6e3ab30761e74e5f26ed7bbc31debfe76c2bac058b27')
 
 build() {
   cd $pkgname-$pkgver
-  autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --with-openldap=yes \
   --libexecdir=/usr/lib/evolution-data-server \
   --with-krb5=/usr --with-libdb=/usr \
-  --enable-vala-bindings --disable-uoa PYTHON=python2
+  --enable-vala-bindings --disable-uoa
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
   make
 }



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 13:48:59
  Author: jgc
Revision: 194733

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-screenshot/repos/gnome-unstable-i686/
  gnome-screenshot/repos/gnome-unstable-i686/PKGBUILD
(from rev 194732, gnome-screenshot/trunk/PKGBUILD)
  gnome-screenshot/repos/gnome-unstable-i686/gnome-screenshot.install
(from rev 194732, gnome-screenshot/trunk/gnome-screenshot.install)
  gnome-screenshot/repos/gnome-unstable-x86_64/
  gnome-screenshot/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194732, gnome-screenshot/trunk/PKGBUILD)
  gnome-screenshot/repos/gnome-unstable-x86_64/gnome-screenshot.install
(from rev 194732, gnome-screenshot/trunk/gnome-screenshot.install)

+
 gnome-unstable-i686/PKGBUILD   |   29 +++
 gnome-unstable-i686/gnome-screenshot.install   |   11 
 gnome-unstable-x86_64/PKGBUILD |   29 +++
 gnome-unstable-x86_64/gnome-screenshot.install |   11 
 4 files changed, 80 insertions(+)

Copied: gnome-screenshot/repos/gnome-unstable-i686/PKGBUILD (from rev 194732, 
gnome-screenshot/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 11:48:59 UTC (rev 194733)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gnome-screenshot
+pkgver=3.9.90
+pkgrel=1
+pkgdesc=Take pictures of your screen
+arch=(i686 x86_64)
+url=http://gnome.org;
+license=('GPL2')
+depends=('dconf' 'gtk3' 'libcanberra')
+makedepends=('intltool')
+groups=('gnome')
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1819af1baf215adaf495a1cdb7bc742cb29652e0a950d9551615c5b05903132f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gnome-screenshot/repos/gnome-unstable-i686/gnome-screenshot.install 
(from rev 194732, gnome-screenshot/trunk/gnome-screenshot.install)
===
--- gnome-unstable-i686/gnome-screenshot.install
(rev 0)
+++ gnome-unstable-i686/gnome-screenshot.install2013-09-23 11:48:59 UTC 
(rev 194733)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-screenshot/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194732, 
gnome-screenshot/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 11:48:59 UTC (rev 194733)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gnome-screenshot
+pkgver=3.9.90
+pkgrel=1
+pkgdesc=Take pictures of your screen
+arch=(i686 x86_64)
+url=http://gnome.org;
+license=('GPL2')
+depends=('dconf' 'gtk3' 'libcanberra')
+makedepends=('intltool')
+groups=('gnome')
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1819af1baf215adaf495a1cdb7bc742cb29652e0a950d9551615c5b05903132f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gnome-screenshot/repos/gnome-unstable-x86_64/gnome-screenshot.install 
(from rev 194732, gnome-screenshot/trunk/gnome-screenshot.install)
===
--- gnome-unstable-x86_64/gnome-screenshot.install  
(rev 0)
+++ gnome-unstable-x86_64/gnome-screenshot.install  2013-09-23 11:48:59 UTC 
(rev 194733)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 13:48:53
  Author: jgc
Revision: 194732

upgpkg: gnome-screenshot 3.9.90-1

Modified:
  gnome-screenshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 11:19:02 UTC (rev 194731)
+++ PKGBUILD2013-09-23 11:48:53 UTC (rev 194732)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gnome-screenshot
-pkgver=3.8.3
+pkgver=3.9.90
 pkgrel=1
 pkgdesc=Take pictures of your screen
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 groups=('gnome')
 install=$pkgname.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('05d638d53da334aa8818e83ed3f91a17334c48c707d728426414033607582971')
+sha256sums=('1819af1baf215adaf495a1cdb7bc742cb29652e0a950d9551615c5b05903132f')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in (geoclue2)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 13:52:53
  Author: jgc
Revision: 194734

Copy geoclue, we need 2.0 for GNOME 3.10 while other software depends on old 
version

Added:
  geoclue2/



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

2013-09-23 Thread Timothy Redaelli
Date: Monday, September 23, 2013 @ 14:27:29
  Author: tredaelli
Revision: 97509

upgpkg: bfgminer 3.2.1-1

Modified:
  bfgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 07:47:10 UTC (rev 97508)
+++ PKGBUILD2013-09-23 12:27:29 UTC (rev 97509)
@@ -3,7 +3,7 @@
 # Contributor: Andy Weidenbaum archb...@gmail.com
 
 pkgname=bfgminer
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 options=(!libtool)
 
source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
 remove-dangerous-rpath.patch)
-sha256sums=('39cd2b01d9096e837ccc4b3b0201711345d286f8fd02be20c3e79c8db94c122a'
+sha256sums=('db8cdc4272950e12804961d21365ed96f3ef5262549cc0dfd6ebd2004e5d57d8'
 'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
 
 prepare() {



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

2013-09-23 Thread Timothy Redaelli
Date: Monday, September 23, 2013 @ 14:28:02
  Author: tredaelli
Revision: 97510

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

Added:
  bfgminer/repos/community-i686/PKGBUILD
(from rev 97509, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
(from rev 97509, bfgminer/trunk/remove-dangerous-rpath.patch)
  bfgminer/repos/community-x86_64/PKGBUILD
(from rev 97509, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch
(from rev 97509, bfgminer/trunk/remove-dangerous-rpath.patch)
Deleted:
  bfgminer/repos/community-i686/PKGBUILD
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
  bfgminer/repos/community-x86_64/PKGBUILD
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch

---+
 /PKGBUILD |   78 
 /remove-dangerous-rpath.patch |   22 ++
 community-i686/PKGBUILD   |   39 
 community-i686/remove-dangerous-rpath.patch   |   11 ---
 community-x86_64/PKGBUILD |   39 
 community-x86_64/remove-dangerous-rpath.patch |   11 ---
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 12:27:29 UTC (rev 97509)
+++ community-i686/PKGBUILD 2013-09-23 12:28:02 UTC (rev 97510)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-
-pkgname=bfgminer
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
-arch=('i686' 'x86_64')
-depends=('curl' 'jansson' 'libusbx' 'lm_sensors')
-makedepends=('uthash' 'yasm')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-url='https://bitcointalk.org/index.php?topic=168174.0'
-license=('GPL3')
-options=(!libtool)
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
-remove-dangerous-rpath.patch)
-sha256sums=('39cd2b01d9096e837ccc4b3b0201711345d286f8fd02be20c3e79c8db94c122a'
-'d26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -p0  ${srcdir}/remove-dangerous-rpath.patch
-  NOSUBMODULES=1 ./autogen.sh
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-cpumining --enable-scrypt
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 97509, 
bfgminer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 12:28:02 UTC (rev 97510)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=bfgminer
+pkgver=3.2.1
+pkgrel=1
+pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libusbx' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='https://bitcointalk.org/index.php?topic=168174.0'
+license=('GPL3')
+options=(!libtool)
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
+remove-dangerous-rpath.patch)
+sha256sums=('db8cdc4272950e12804961d21365ed96f3ef5262549cc0dfd6ebd2004e5d57d8'
+'d26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p0  ${srcdir}/remove-dangerous-rpath.patch
+  NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-cpumining --enable-scrypt
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/remove-dangerous-rpath.patch
===
--- community-i686/remove-dangerous-rpath.patch 2013-09-23 12:27:29 UTC (rev 
97509)
+++ community-i686/remove-dangerous-rpath.patch 2013-09-23 12:28:02 UTC (rev 
97510)
@@ -1,11 +0,0 @@
 configure.ac.orig
-+++ configure.ac
-@@ -514,7 +514,7 @@
-   ])
- else
-   libblkmaker_CFLAGS='-Ilibblkmaker'
--  libblkmaker_LDFLAGS='-Llibblkmaker/.libs 
-Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'$origin_LDFLAGS
-+  libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
-   libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
-   AC_CONFIG_SUBDIRS([libblkmaker])
- fi

Copied: 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 14:28:32
  Author: jgc
Revision: 194736

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

Added:
  geoip/repos/extra-i686/PKGBUILD
(from rev 194735, geoip/trunk/PKGBUILD)
  geoip/repos/extra-i686/pkgconfig.patch
(from rev 194735, geoip/trunk/pkgconfig.patch)
  geoip/repos/extra-x86_64/PKGBUILD
(from rev 194735, geoip/trunk/PKGBUILD)
  geoip/repos/extra-x86_64/pkgconfig.patch
(from rev 194735, geoip/trunk/pkgconfig.patch)
Deleted:
  geoip/repos/extra-i686/PKGBUILD
  geoip/repos/extra-x86_64/PKGBUILD

--+
 /PKGBUILD|  100 +
 extra-i686/PKGBUILD  |   43 -
 extra-i686/pkgconfig.patch   |8 +++
 extra-x86_64/PKGBUILD|   43 -
 extra-x86_64/pkgconfig.patch |8 +++
 5 files changed, 116 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-23 12:28:26 UTC (rev 194735)
+++ extra-i686/PKGBUILD 2013-09-23 12:28:32 UTC (rev 194736)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-
-pkgname=geoip
-pkgver=1.5.0
-pkgrel=1
-pkgdesc=Non-DNS IP-to-country resolver C library  utils
-arch=('i686' 'x86_64')
-url=http://www.maxmind.com/app/c;
-license=('GPL')
-depends=('zlib' 'geoip-database')
-backup=('etc/geoip/GeoIP.conf')
-options=('!libtool' '!emptydirs')
-source=(http://www.maxmind.com/download/geoip/api/c/GeoIP-$pkgver.tar.gz)
-sha256sums=('d1dbd4f27bcf0e760329f0f9c67a5fc81b4c56efbe0666159934c2bcd38caea2')
-
-build() {
-  cd $srcdir/GeoIP-$pkgver
-
-  autoreconf -vi
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc/geoip
-  make
-}
-
-check() {
-  cd $srcdir/GeoIP-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/GeoIP-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  # country database is provided by geoip-database
-  rm $pkgdir/usr/share/GeoIP/GeoIP.dat
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip/repos/extra-i686/PKGBUILD (from rev 194735, geoip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-09-23 12:28:32 UTC (rev 194736)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Contributor: Manolis Tzanidakis mano...@archlinux.org
+
+pkgname=geoip
+pkgver=1.5.1
+pkgrel=1
+pkgdesc=Non-DNS IP-to-country resolver C library  utils
+arch=('i686' 'x86_64')
+url=http://www.maxmind.com/app/c;
+license=('GPL')
+depends=('zlib' 'geoip-database')
+backup=('etc/geoip/GeoIP.conf')
+options=('!libtool' '!emptydirs')
+source=(http://www.maxmind.com/download/geoip/api/c/GeoIP-$pkgver.tar.gz 
+pkgconfig.patch)
+sha256sums=('ec35ee73fcc54c493f4252565d1c81d022b398dd16de3af1522c8cab016f8731'
+'64a6a608beabdc553019237d7da808dc234f760c21040036b2f589eaebba5d10')
+
+prepare() {
+  cd GeoIP-$pkgver
+  patch -Np1 -i ../pkgconfig.patch
+}
+
+build() {
+  cd GeoIP-$pkgver
+
+  autoreconf -vi
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc/geoip
+  make
+}
+
+check() {
+  cd GeoIP-$pkgver
+  make check
+}
+
+package() {
+  cd GeoIP-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # country database is provided by geoip-database
+  rm $pkgdir/usr/share/GeoIP/GeoIP.dat
+}
+
+# vim:set ts=2 sw=2 et:

Copied: geoip/repos/extra-i686/pkgconfig.patch (from rev 194735, 
geoip/trunk/pkgconfig.patch)
===
--- extra-i686/pkgconfig.patch  (rev 0)
+++ extra-i686/pkgconfig.patch  2013-09-23 12:28:32 UTC (rev 194736)
@@ -0,0 +1,8 @@
+--- GeoIP-1.5.1/geoip.pc.in.orig   2013-03-23 02:26:09.0 +
 GeoIP-1.5.1/geoip.pc.in2013-09-23 12:04:07.441555775 +
+@@ -1,4 +1,5 @@
+ prefix=@prefix@
++exec_prefix=${prefix}
+ libdir=@libdir@
+ includedir=@includedir@
+ datadir=@datarootdir@

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-09-23 12:28:26 UTC (rev 194735)
+++ extra-x86_64/PKGBUILD   2013-09-23 12:28:32 UTC (rev 194736)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-
-pkgname=geoip
-pkgver=1.5.0
-pkgrel=1
-pkgdesc=Non-DNS IP-to-country resolver C library  utils
-arch=('i686' 'x86_64')
-url=http://www.maxmind.com/app/c;
-license=('GPL')
-depends=('zlib' 'geoip-database')
-backup=('etc/geoip/GeoIP.conf')
-options=('!libtool' '!emptydirs')
-source=(http://www.maxmind.com/download/geoip/api/c/GeoIP-$pkgver.tar.gz)
-sha256sums=('d1dbd4f27bcf0e760329f0f9c67a5fc81b4c56efbe0666159934c2bcd38caea2')
-
-build() {
-  cd $srcdir/GeoIP-$pkgver
-
-  autoreconf -vi
-  ./configure \
- 

[arch-commits] Commit in geoip/trunk (PKGBUILD pkgconfig.patch)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 14:28:26
  Author: jgc
Revision: 194735

upgpkg: geoip 1.5.1-1

Update to 1.5.1, add exec_prefix to pkgconfig file

Added:
  geoip/trunk/pkgconfig.patch
Modified:
  geoip/trunk/PKGBUILD

-+
 PKGBUILD|   19 +--
 pkgconfig.patch |8 
 2 files changed, 21 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 11:52:53 UTC (rev 194734)
+++ PKGBUILD2013-09-23 12:28:26 UTC (rev 194735)
@@ -3,7 +3,7 @@
 # Contributor: Manolis Tzanidakis mano...@archlinux.org
 
 pkgname=geoip
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc=Non-DNS IP-to-country resolver C library  utils
 arch=('i686' 'x86_64')
@@ -12,11 +12,18 @@
 depends=('zlib' 'geoip-database')
 backup=('etc/geoip/GeoIP.conf')
 options=('!libtool' '!emptydirs')
-source=(http://www.maxmind.com/download/geoip/api/c/GeoIP-$pkgver.tar.gz)
-sha256sums=('d1dbd4f27bcf0e760329f0f9c67a5fc81b4c56efbe0666159934c2bcd38caea2')
+source=(http://www.maxmind.com/download/geoip/api/c/GeoIP-$pkgver.tar.gz 
+pkgconfig.patch)
+sha256sums=('ec35ee73fcc54c493f4252565d1c81d022b398dd16de3af1522c8cab016f8731'
+'64a6a608beabdc553019237d7da808dc234f760c21040036b2f589eaebba5d10')
 
+prepare() {
+  cd GeoIP-$pkgver
+  patch -Np1 -i ../pkgconfig.patch
+}
+
 build() {
-  cd $srcdir/GeoIP-$pkgver
+  cd GeoIP-$pkgver
 
   autoreconf -vi
   ./configure \
@@ -27,12 +34,12 @@
 }
 
 check() {
-  cd $srcdir/GeoIP-$pkgver
+  cd GeoIP-$pkgver
   make check
 }
 
 package() {
-  cd $srcdir/GeoIP-$pkgver
+  cd GeoIP-$pkgver
 
   make DESTDIR=$pkgdir install
 

Added: pkgconfig.patch
===
--- pkgconfig.patch (rev 0)
+++ pkgconfig.patch 2013-09-23 12:28:26 UTC (rev 194735)
@@ -0,0 +1,8 @@
+--- GeoIP-1.5.1/geoip.pc.in.orig   2013-03-23 02:26:09.0 +
 GeoIP-1.5.1/geoip.pc.in2013-09-23 12:04:07.441555775 +
+@@ -1,4 +1,5 @@
+ prefix=@prefix@
++exec_prefix=${prefix}
+ libdir=@libdir@
+ includedir=@includedir@
+ datadir=@datarootdir@



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

2013-09-23 Thread Timothy Redaelli
Date: Monday, September 23, 2013 @ 14:30:07
  Author: tredaelli
Revision: 97511

upgpkg: parallel 20130922-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 12:28:02 UTC (rev 97510)
+++ PKGBUILD2013-09-23 12:30:07 UTC (rev 97511)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20130822
+pkgver=20130922
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('815cd6ff9e994ed8049e34ec507ded35'
+md5sums=('7b522b7c51ef2a1f5c02b58d9fa50afb'
  'SKIP')
-sha1sums=('d493a8982837d49806fd05d9d474aa8e9afbddf3'
+sha1sums=('be84aae96ee8c0a6651a3b5ca232fcb35066b3f3'
   'SKIP')
 
 build() {



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

2013-09-23 Thread Timothy Redaelli
Date: Monday, September 23, 2013 @ 14:30:28
  Author: tredaelli
Revision: 97512

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 97511, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 97511, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   62 +++
 fix-pod-numbers.patch |   94 
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 12:30:07 UTC (rev 97511)
+++ PKGBUILD2013-09-23 12:30:28 UTC (rev 97512)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20130822
-pkgrel=1
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('815cd6ff9e994ed8049e34ec507ded35'
- 'SKIP')
-sha1sums=('d493a8982837d49806fd05d9d474aa8e9afbddf3'
-  'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 97511, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 12:30:28 UTC (rev 97512)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20130922
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('7b522b7c51ef2a1f5c02b58d9fa50afb'
+ 'SKIP')
+sha1sums=('be84aae96ee8c0a6651a3b5ca232fcb35066b3f3'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2013-09-23 12:30:07 UTC (rev 97511)
+++ fix-pod-numbers.patch   2013-09-23 12:30:28 UTC (rev 97512)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 97511, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2013-09-23 12:30:28 UTC (rev 97512)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11 +2768,11 @@
+ 
+ Some of the jobs failed. The exit status gives the number of failed jobs
+ 
+-=item 254
++=item 254Z
+ 
+ More than 253 jobs failed.
+ 
+-=item 255
++=item 255Z
+ 
+ Other error.
+ 



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 14:46:39
  Author: jgc
Revision: 194739

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  geoclue2/repos/gnome-unstable-i686/
  geoclue2/repos/gnome-unstable-i686/PKGBUILD
(from rev 194738, geoclue2/trunk/PKGBUILD)
  geoclue2/repos/gnome-unstable-i686/geoclue.install
(from rev 194738, geoclue2/trunk/geoclue.install)
  geoclue2/repos/gnome-unstable-x86_64/
  geoclue2/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194738, geoclue2/trunk/PKGBUILD)
  geoclue2/repos/gnome-unstable-x86_64/geoclue.install
(from rev 194738, geoclue2/trunk/geoclue.install)

---+
 gnome-unstable-i686/PKGBUILD  |   30 ++
 gnome-unstable-i686/geoclue.install   |   11 +++
 gnome-unstable-x86_64/PKGBUILD|   30 ++
 gnome-unstable-x86_64/geoclue.install |   11 +++
 4 files changed, 82 insertions(+)

Copied: geoclue2/repos/gnome-unstable-i686/PKGBUILD (from rev 194738, 
geoclue2/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 12:46:39 UTC (rev 194739)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: György Balló ball...@freestart.hu
+
+pkgname=geoclue2
+pkgver=1.99.4
+pkgrel=1
+pkgdesc=Modular geoinformation service built on the D-Bus messaging system.
+arch=(i686 x86_64)
+url=http://geoclue.freedesktop.org/;
+license=(LGPL)
+depends=(libsoup json-glib)
+makedepends=(intltool geoip)
+optdepends=('geoip: geoip-lookup server binary')
+options=('!libtool')
+install=geoclue.install
+source=(http://freedesktop.org/software/geoclue/releases/1.99/geoclue-$pkgver.tar.xz)
+md5sums=('b991f4a409b492996a38627ee18fa76e')
+
+build() {
+  cd geoclue-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd geoclue-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: geoclue2/repos/gnome-unstable-i686/geoclue.install (from rev 194738, 
geoclue2/trunk/geoclue.install)
===
--- gnome-unstable-i686/geoclue.install (rev 0)
+++ gnome-unstable-i686/geoclue.install 2013-09-23 12:46:39 UTC (rev 194739)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: geoclue2/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194738, 
geoclue2/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 12:46:39 UTC (rev 194739)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: György Balló ball...@freestart.hu
+
+pkgname=geoclue2
+pkgver=1.99.4
+pkgrel=1
+pkgdesc=Modular geoinformation service built on the D-Bus messaging system.
+arch=(i686 x86_64)
+url=http://geoclue.freedesktop.org/;
+license=(LGPL)
+depends=(libsoup json-glib)
+makedepends=(intltool geoip)
+optdepends=('geoip: geoip-lookup server binary')
+options=('!libtool')
+install=geoclue.install
+source=(http://freedesktop.org/software/geoclue/releases/1.99/geoclue-$pkgver.tar.xz)
+md5sums=('b991f4a409b492996a38627ee18fa76e')
+
+build() {
+  cd geoclue-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd geoclue-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: geoclue2/repos/gnome-unstable-x86_64/geoclue.install (from rev 194738, 
geoclue2/trunk/geoclue.install)
===
--- gnome-unstable-x86_64/geoclue.install   (rev 0)
+++ gnome-unstable-x86_64/geoclue.install   2013-09-23 12:46:39 UTC (rev 
194739)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



[arch-commits] Commit in geoclue2 (repos/extra-i686 repos/extra-x86_64 trunk/PKGBUILD)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 14:46:29
  Author: jgc
Revision: 194738

Update to 1.99.4

Modified:
  geoclue2/trunk/PKGBUILD
Deleted:
  geoclue2/repos/extra-i686/
  geoclue2/repos/extra-x86_64/

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

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2013-09-23 12:42:49 UTC (rev 194737)
+++ trunk/PKGBUILD  2013-09-23 12:46:29 UTC (rev 194738)
@@ -2,24 +2,23 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 # Contributor: György Balló ball...@freestart.hu
 
-pkgname=geoclue
-pkgver=0.12.99
+pkgname=geoclue2
+pkgver=1.99.4
 pkgrel=1
 pkgdesc=Modular geoinformation service built on the D-Bus messaging system.
 arch=(i686 x86_64)
 url=http://geoclue.freedesktop.org/;
 license=(LGPL)
-depends=(dbus-glib libxml2 dconf)
-makedepends=(networkmanager libsoup-gnome gtk-doc)
-optdepends=('networkmanager: geolocation'
-'libsoup-gnome: Skyhook location provider')
+depends=(libsoup json-glib)
+makedepends=(intltool geoip)
+optdepends=('geoip: geoip-lookup server binary')
 options=('!libtool')
 install=geoclue.install
-source=(http://freedesktop.org/~hadess/$pkgname-$pkgver.tar.gz)
-md5sums=('779245045bfeeec4853da8baaa3a18e6')
+source=(http://freedesktop.org/software/geoclue/releases/1.99/geoclue-$pkgver.tar.xz)
+md5sums=('b991f4a409b492996a38627ee18fa76e')
 
 build() {
-  cd $pkgname-$pkgver
+  cd geoclue-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --libexecdir=/usr/lib/$pkgname --disable-static
   make
@@ -26,6 +25,6 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd geoclue-$pkgver
   make DESTDIR=$pkgdir install
 }



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 14:57:07
  Author: jgc
Revision: 194740

upgpkg: gnome-settings-daemon 3.9.92-1

Modified:
  gnome-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 12:46:39 UTC (rev 194739)
+++ PKGBUILD2013-09-23 12:57:07 UTC (rev 194740)
@@ -2,28 +2,21 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=gnome-settings-daemon
-pkgver=3.8.5
+pkgver=3.9.92
 pkgrel=1
 pkgdesc=The GNOME Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify'
- 'libsystemd' 'libwacom' 'pulseaudio' 'pulseaudio-alsa' 'upower' 
'ibus' 'librsvg')
+ 'libsystemd' 'libwacom' 'pulseaudio' 'pulseaudio-alsa' 'upower' 
'ibus' 'librsvg' 'libgweather' 'geocode-glib' 'geoclue2')
 makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
 options=('!emptydirs' '!libtool')
 install=gnome-settings-daemon.install
 url=http://www.gnome.org;
 groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-0001-power-Use-logind-to-discover-critical-action-availab.patch)
-sha256sums=('19420c97296802162fd4e0e0a08e797f5038ec8bd98cffe222362e24c7405784'
-'9825d3486665d87d4fc54355a6d318d68f5d3caeb286bdd659147920a85c56d9')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('29e593b4867bda78edf6f0979e74366d1c9b4042390674a098a59d0520d41d79')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i 
../0001-power-Use-logind-to-discover-critical-action-availab.patch
-}
-
 build() {
   cd $pkgname-$pkgver
 



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:02:41
  Author: jgc
Revision: 194742

upgpkg: pango 1.36.0-1

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 12:57:14 UTC (rev 194741)
+++ PKGBUILD2013-09-23 13:02:41 UTC (rev 194742)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=pango
-pkgver=1.35.3
+pkgver=1.36.0
 pkgrel=1
 pkgdesc=A library for layout and rendering of text
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=pango.install
 
source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
 url=http://www.pango.org/;
-sha256sums=('82c9f0d047714f2aaf0284bbc55c2a76d9d11ee309036c35c7377b0daad6d3bf')
+sha256sums=('bb41d1b26ee7450e5430a7d2765f38c51ebe72db9fce616a9ee52611b55906a0')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:02:47
  Author: jgc
Revision: 194743

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  pango/repos/gnome-unstable-i686/PKGBUILD
(from rev 194742, pango/trunk/PKGBUILD)
  pango/repos/gnome-unstable-i686/pango.install
(from rev 194742, pango/trunk/pango.install)
  pango/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194742, pango/trunk/PKGBUILD)
  pango/repos/gnome-unstable-x86_64/pango.install
(from rev 194742, pango/trunk/pango.install)
Deleted:
  pango/repos/gnome-unstable-i686/PKGBUILD
  pango/repos/gnome-unstable-i686/pango.install
  pango/repos/gnome-unstable-x86_64/PKGBUILD
  pango/repos/gnome-unstable-x86_64/pango.install

-+
 /PKGBUILD   |   60 ++
 /pango.install  |   28 +++
 gnome-unstable-i686/PKGBUILD|   30 -
 gnome-unstable-i686/pango.install   |   14 ---
 gnome-unstable-x86_64/PKGBUILD  |   30 -
 gnome-unstable-x86_64/pango.install |   14 ---
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 13:02:41 UTC (rev 194742)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:02:47 UTC (rev 194743)
@@ -1,30 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=pango
-pkgver=1.35.3
-pkgrel=1
-pkgdesc=A library for layout and rendering of text
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
-makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection')
-options=('!libtool')
-install=pango.install
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-url=http://www.pango.org/;
-sha256sums=('82c9f0d047714f2aaf0284bbc55c2a76d9d11ee309036c35c7377b0daad6d3bf')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --with-included-modules=basic-fc
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -j1 DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/etc/pango
-}

Copied: pango/repos/gnome-unstable-i686/PKGBUILD (from rev 194742, 
pango/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:02:47 UTC (rev 194743)
@@ -0,0 +1,30 @@
+# $Id$ 
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=pango
+pkgver=1.36.0
+pkgrel=1
+pkgdesc=A library for layout and rendering of text
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
+makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection')
+options=('!libtool')
+install=pango.install
+source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+url=http://www.pango.org/;
+sha256sums=('bb41d1b26ee7450e5430a7d2765f38c51ebe72db9fce616a9ee52611b55906a0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -j1 DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/etc/pango
+}

Deleted: gnome-unstable-i686/pango.install
===
--- gnome-unstable-i686/pango.install   2013-09-23 13:02:41 UTC (rev 194742)
+++ gnome-unstable-i686/pango.install   2013-09-23 13:02:47 UTC (rev 194743)
@@ -1,14 +0,0 @@
-post_install() {
-   usr/bin/pango-querymodules etc/pango/pango.modules
-}
-
-post_upgrade() {
-   if [ -f usr/etc/pango/pango.modules ]; then
-   rm usr/etc/pango/pango.modules
-   fi
-   post_install
-}
-
-pre_remove() {
-   rm etc/pango/pango.modules
-}

Copied: pango/repos/gnome-unstable-i686/pango.install (from rev 194742, 
pango/trunk/pango.install)
===
--- gnome-unstable-i686/pango.install   (rev 0)
+++ gnome-unstable-i686/pango.install   2013-09-23 13:02:47 UTC (rev 194743)
@@ -0,0 +1,14 @@
+post_install() {
+   usr/bin/pango-querymodules etc/pango/pango.modules
+}
+
+post_upgrade() {
+   if [ -f usr/etc/pango/pango.modules ]; then
+   rm usr/etc/pango/pango.modules
+   fi
+   post_install
+}
+
+pre_remove() {
+   rm etc/pango/pango.modules
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:02:41 UTC (rev 194742)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:02:47 UTC (rev 194743)
@@ -1,30 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:14:11
  Author: jgc
Revision: 194744

upgpkg: pygobject 3.10.0-1

Modified:
  pygobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 13:02:47 UTC (rev 194743)
+++ PKGBUILD2013-09-23 13:14:11 UTC (rev 194744)
@@ -3,15 +3,15 @@
 
 pkgbase=pygobject
 pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.9.91
+pkgver=3.10.0
 pkgrel=1
 arch=(i686 x86_64)
 url=https://live.gnome.org/PyGObject;
 license=(LGPL)
 makedepends=(python python2 python-cairo python2-cairo gobject-introspection)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
 options=('!libtool')
-sha256sums=('3522a95246b4a320baa58687eb6182007d8a0711ea71e95f2c05d8cca0f3f22a')
+sha256sums=('8aaa1f83fdb2e30bae77405a63a8be600b311a04a4cdc952b2ab62ee81aad077')
 
 prepare() {
   mkdir build-py2 build-py3 devel



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:14:19
  Author: jgc
Revision: 194745

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  pygobject/repos/gnome-unstable-i686/PKGBUILD
(from rev 194744, pygobject/trunk/PKGBUILD)
  pygobject/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194744, pygobject/trunk/PKGBUILD)
Deleted:
  pygobject/repos/gnome-unstable-i686/PKGBUILD
  pygobject/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |  112 +++
 gnome-unstable-i686/PKGBUILD   |   56 ---
 gnome-unstable-x86_64/PKGBUILD |   56 ---
 3 files changed, 112 insertions(+), 112 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 13:14:11 UTC (rev 194744)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:14:19 UTC (rev 194745)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.9.91
-pkgrel=1
-arch=(i686 x86_64)
-url=https://live.gnome.org/PyGObject;
-license=(LGPL)
-makedepends=(python python2 python-cairo python2-cairo gobject-introspection)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
-options=('!libtool')
-sha256sums=('3522a95246b4a320baa58687eb6182007d8a0711ea71e95f2c05d8cca0f3f22a')
-
-prepare() {
-  mkdir build-py2 build-py3 devel
-  cd ${pkgbase}-${pkgver}
-  sed -i '/Werror=format/d' configure # gcc 4.8
-}
-
-build() {
-  cd build-py2
-  ../${pkgbase}-${pkgver}/configure --prefix=/usr 
--with-python=/usr/bin/python2
-  make
-
-  cd ../build-py3
-  ../${pkgbase}-${pkgver}/configure --prefix=/usr
-  make
-}
-
-package_python-gobject() {
-  pkgdesc=Python 3 bindings for GObject
-  depends=('gobject-introspection' 'python-cairo' pygobject-devel=$pkgver)
-
-  cd build-py3
-  make DESTDIR=$pkgdir install
-  rm -r $pkgdir/usr/{include,lib/pkgconfig}
-}
-
-package_python2-gobject() {
-  pkgdesc=Python 2 bindings for GObject
-  depends=('gobject-introspection' 'python2-cairo' pygobject-devel=$pkgver)
-
-  cd build-py2
-  make DESTDIR=$pkgdir install
-  mv $pkgdir/usr/{include,lib/pkgconfig} $srcdir/devel
-}
-
-package_pygobject-devel() {
-  pkgdesc=Development files for the pygobject bindings
-  cd devel
-  mkdir -p $pkgdir/usr/{include,lib}
-  mv include $pkgdir/usr/
-  mv pkgconfig $pkgdir/usr/lib/
-}

Copied: pygobject/repos/gnome-unstable-i686/PKGBUILD (from rev 194744, 
pygobject/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:14:19 UTC (rev 194745)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.10.0
+pkgrel=1
+arch=(i686 x86_64)
+url=https://live.gnome.org/PyGObject;
+license=(LGPL)
+makedepends=(python python2 python-cairo python2-cairo gobject-introspection)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
+options=('!libtool')
+sha256sums=('8aaa1f83fdb2e30bae77405a63a8be600b311a04a4cdc952b2ab62ee81aad077')
+
+prepare() {
+  mkdir build-py2 build-py3 devel
+  cd ${pkgbase}-${pkgver}
+  sed -i '/Werror=format/d' configure # gcc 4.8
+}
+
+build() {
+  cd build-py2
+  ../${pkgbase}-${pkgver}/configure --prefix=/usr 
--with-python=/usr/bin/python2
+  make
+
+  cd ../build-py3
+  ../${pkgbase}-${pkgver}/configure --prefix=/usr
+  make
+}
+
+package_python-gobject() {
+  pkgdesc=Python 3 bindings for GObject
+  depends=('gobject-introspection' 'python-cairo' pygobject-devel=$pkgver)
+
+  cd build-py3
+  make DESTDIR=$pkgdir install
+  rm -r $pkgdir/usr/{include,lib/pkgconfig}
+}
+
+package_python2-gobject() {
+  pkgdesc=Python 2 bindings for GObject
+  depends=('gobject-introspection' 'python2-cairo' pygobject-devel=$pkgver)
+
+  cd build-py2
+  make DESTDIR=$pkgdir install
+  mv $pkgdir/usr/{include,lib/pkgconfig} $srcdir/devel
+}
+
+package_pygobject-devel() {
+  pkgdesc=Development files for the pygobject bindings
+  cd devel
+  mkdir -p $pkgdir/usr/{include,lib}
+  mv include $pkgdir/usr/
+  mv pkgconfig $pkgdir/usr/lib/
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:14:11 UTC (rev 194744)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:14:19 UTC (rev 194745)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.9.91
-pkgrel=1
-arch=(i686 x86_64)
-url=https://live.gnome.org/PyGObject;
-license=(LGPL)
-makedepends=(python python2 python-cairo 

[arch-commits] Commit in geoclue2/trunk (PKGBUILD geoclue.install)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:34:52
  Author: jgc
Revision: 194746

Delete install file, no schemas here

Modified:
  geoclue2/trunk/PKGBUILD
Deleted:
  geoclue2/trunk/geoclue.install

-+
 PKGBUILD|1 -
 geoclue.install |   11 ---
 2 files changed, 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 13:14:19 UTC (rev 194745)
+++ PKGBUILD2013-09-23 13:34:52 UTC (rev 194746)
@@ -13,7 +13,6 @@
 makedepends=(intltool geoip)
 optdepends=('geoip: geoip-lookup server binary')
 options=('!libtool')
-install=geoclue.install
 
source=(http://freedesktop.org/software/geoclue/releases/1.99/geoclue-$pkgver.tar.xz)
 md5sums=('b991f4a409b492996a38627ee18fa76e')
 

Deleted: geoclue.install
===
--- geoclue.install 2013-09-23 13:14:19 UTC (rev 194745)
+++ geoclue.install 2013-09-23 13:34:52 UTC (rev 194746)
@@ -1,11 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}



[arch-commits] Commit in (4 files)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:45:59
  Author: jgc
Revision: 194747

Add new package, needed for clutter

Added:
  libevdev/
  libevdev/repos/
  libevdev/trunk/
  libevdev/trunk/PKGBUILD

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

Added: libevdev/trunk/PKGBUILD
===
--- libevdev/trunk/PKGBUILD (rev 0)
+++ libevdev/trunk/PKGBUILD 2013-09-23 13:45:59 UTC (rev 194747)
@@ -0,0 +1,27 @@
+# $Id: $
+# Maintainer: Jan de Groot
+
+pkgname=libevdev
+pkgver=0.4
+pkgrel=1
+pkgdesc=Wrapper library for evdev devices
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libevdev/;
+license=(custom:X11)
+depends=('glibc')
+makedepends=('python')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('ba6becd3f41430aa290ddf53694909fb46b9a65d5fe264e5fc2a4f5169484f42')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:46:09
  Author: jgc
Revision: 194748

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  libevdev/repos/gnome-unstable-i686/
  libevdev/repos/gnome-unstable-i686/PKGBUILD
(from rev 194747, libevdev/trunk/PKGBUILD)
  libevdev/repos/gnome-unstable-x86_64/
  libevdev/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194747, libevdev/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   27 +++
 gnome-unstable-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: libevdev/repos/gnome-unstable-i686/PKGBUILD (from rev 194747, 
libevdev/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:46:09 UTC (rev 194748)
@@ -0,0 +1,27 @@
+# $Id: $
+# Maintainer: Jan de Groot
+
+pkgname=libevdev
+pkgver=0.4
+pkgrel=1
+pkgdesc=Wrapper library for evdev devices
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libevdev/;
+license=(custom:X11)
+depends=('glibc')
+makedepends=('python')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('ba6becd3f41430aa290ddf53694909fb46b9a65d5fe264e5fc2a4f5169484f42')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Copied: libevdev/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194747, 
libevdev/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:46:09 UTC (rev 194748)
@@ -0,0 +1,27 @@
+# $Id: $
+# Maintainer: Jan de Groot
+
+pkgname=libevdev
+pkgver=0.4
+pkgrel=1
+pkgdesc=Wrapper library for evdev devices
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libevdev/;
+license=(custom:X11)
+depends=('glibc')
+makedepends=('python')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('ba6becd3f41430aa290ddf53694909fb46b9a65d5fe264e5fc2a4f5169484f42')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:55:44
  Author: jgc
Revision: 194749

upgpkg: gdk-pixbuf2 2.30.0-1

Modified:
  gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 13:46:09 UTC (rev 194748)
+++ PKGBUILD2013-09-23 13:55:44 UTC (rev 194749)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gdk-pixbuf2
-pkgver=2.29.3
+pkgver=2.30.0
 pkgrel=1
 pkgdesc=An image loading library
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=('!libtool')
 install=gdk-pixbuf2.install
 
source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz)
-sha256sums=('f3ab2e153809ceedc3f8b9b22cdee018ffe7bbec2d2a8b5154e0ce220ea7d088')
+sha256sums=('4a73600525621283a14436c5f873c1126c4feafcb07d24a746f13215e2caa658')
 
 build() {
   cd gdk-pixbuf-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 15:55:50
  Author: jgc
Revision: 194750

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gdk-pixbuf2/repos/gnome-unstable-i686/PKGBUILD
(from rev 194749, gdk-pixbuf2/trunk/PKGBUILD)
  gdk-pixbuf2/repos/gnome-unstable-i686/gdk-pixbuf2.install
(from rev 194749, gdk-pixbuf2/trunk/gdk-pixbuf2.install)
  gdk-pixbuf2/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194749, gdk-pixbuf2/trunk/PKGBUILD)
  gdk-pixbuf2/repos/gnome-unstable-x86_64/gdk-pixbuf2.install
(from rev 194749, gdk-pixbuf2/trunk/gdk-pixbuf2.install)
Deleted:
  gdk-pixbuf2/repos/gnome-unstable-i686/PKGBUILD
  gdk-pixbuf2/repos/gnome-unstable-i686/gdk-pixbuf2.install
  gdk-pixbuf2/repos/gnome-unstable-x86_64/PKGBUILD
  gdk-pixbuf2/repos/gnome-unstable-x86_64/gdk-pixbuf2.install

---+
 /PKGBUILD |   68 
 /gdk-pixbuf2.install  |   22 +
 gnome-unstable-i686/PKGBUILD  |   34 --
 gnome-unstable-i686/gdk-pixbuf2.install   |   11 
 gnome-unstable-x86_64/PKGBUILD|   34 --
 gnome-unstable-x86_64/gdk-pixbuf2.install |   11 
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 13:55:44 UTC (rev 194749)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:55:50 UTC (rev 194750)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gdk-pixbuf2
-pkgver=2.29.3
-pkgrel=1
-pkgdesc=An image loading library
-arch=('i686' 'x86_64')
-url=http://www.gtk.org/;
-license=('LGPL2.1')
-depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper')
-makedepends=('gtk-doc' 'gobject-introspection')
-options=('!libtool')
-install=gdk-pixbuf2.install
-source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz)
-sha256sums=('f3ab2e153809ceedc3f8b9b22cdee018ffe7bbec2d2a8b5154e0ce220ea7d088')
-
-build() {
-  cd gdk-pixbuf-$pkgver
-
-  ./configure --prefix=/usr \
---with-x11 \
---with-libjasper \
---with-included-loaders=png
-  make
-}
-
-package() {
-  cd gdk-pixbuf-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gdk-pixbuf2/repos/gnome-unstable-i686/PKGBUILD (from rev 194749, 
gdk-pixbuf2/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 13:55:50 UTC (rev 194750)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gdk-pixbuf2
+pkgver=2.30.0
+pkgrel=1
+pkgdesc=An image loading library
+arch=('i686' 'x86_64')
+url=http://www.gtk.org/;
+license=('LGPL2.1')
+depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper')
+makedepends=('gtk-doc' 'gobject-introspection')
+options=('!libtool')
+install=gdk-pixbuf2.install
+source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz)
+sha256sums=('4a73600525621283a14436c5f873c1126c4feafcb07d24a746f13215e2caa658')
+
+build() {
+  cd gdk-pixbuf-$pkgver
+
+  ./configure --prefix=/usr \
+--with-x11 \
+--with-libjasper \
+--with-included-loaders=png
+  make
+}
+
+package() {
+  cd gdk-pixbuf-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-i686/gdk-pixbuf2.install
===
--- gnome-unstable-i686/gdk-pixbuf2.install 2013-09-23 13:55:44 UTC (rev 
194749)
+++ gnome-unstable-i686/gdk-pixbuf2.install 2013-09-23 13:55:50 UTC (rev 
194750)
@@ -1,11 +0,0 @@
-post_install() {
-   gdk-pixbuf-query-loaders --update-cache
-}
-
-post_upgrade() {
-post_install
-}
-
-pre_remove() {
-rm -f /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/loaders.cache
-}

Copied: gdk-pixbuf2/repos/gnome-unstable-i686/gdk-pixbuf2.install (from rev 
194749, gdk-pixbuf2/trunk/gdk-pixbuf2.install)
===
--- gnome-unstable-i686/gdk-pixbuf2.install (rev 0)
+++ gnome-unstable-i686/gdk-pixbuf2.install 2013-09-23 13:55:50 UTC (rev 
194750)
@@ -0,0 +1,11 @@
+post_install() {
+   gdk-pixbuf-query-loaders --update-cache
+}
+
+post_upgrade() {
+post_install
+}
+
+pre_remove() {
+rm -f /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/loaders.cache
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:55:44 UTC (rev 194749)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 13:55:50 UTC (rev 194750)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gdk-pixbuf2
-pkgver=2.29.3
-pkgrel=1

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

2013-09-23 Thread Sven-Hendrik Haase
Date: Monday, September 23, 2013 @ 16:04:07
  Author: svenstaro
Revision: 97513

upgpkg: fabric 1.8.0-1

Updating to 1.8.0

Modified:
  fabric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 12:30:28 UTC (rev 97512)
+++ PKGBUILD2013-09-23 14:04:07 UTC (rev 97513)
@@ -2,8 +2,8 @@
 # Contributor: Francois Boulogne fboulogne at april dot org
 
 pkgname=fabric
-pkgver=1.7.0
-pkgrel=2
+pkgver=1.8.0
+pkgrel=1
 pkgdesc=Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol
 url=http://fabfile.org/;
 license=('BSD')
@@ -10,7 +10,7 @@
 arch=('any')
 depends=('python2=2.5' 'pycrypto' 'python2-paramiko=1.10.0' 
'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz;)
-md5sums=('48e4176f0be925a44ef83ce0efc6d69b')
+md5sums=('1f195d16b05877767816617749d33eca')
 
 package() {
   cd ${srcdir}/Fabric-${pkgver}



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

2013-09-23 Thread Sven-Hendrik Haase
Date: Monday, September 23, 2013 @ 16:04:16
  Author: svenstaro
Revision: 97514

archrelease: copy trunk to community-any

Added:
  fabric/repos/community-any/PKGBUILD
(from rev 97513, fabric/trunk/PKGBUILD)
Deleted:
  fabric/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 14:04:07 UTC (rev 97513)
+++ PKGBUILD2013-09-23 14:04:16 UTC (rev 97514)
@@ -1,21 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Francois Boulogne fboulogne at april dot org
-
-pkgname=fabric
-pkgver=1.7.0
-pkgrel=2
-pkgdesc=Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol
-url=http://fabfile.org/;
-license=('BSD')
-arch=('any')
-depends=('python2=2.5' 'pycrypto' 'python2-paramiko=1.10.0' 
'python2-setuptools')
-source=(http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz;)
-md5sums=('48e4176f0be925a44ef83ce0efc6d69b')
-
-package() {
-  cd ${srcdir}/Fabric-${pkgver}
-  python2 setup.py install --root=${pkgdir} --optimize=1
-
-  install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: fabric/repos/community-any/PKGBUILD (from rev 97513, 
fabric/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 14:04:16 UTC (rev 97514)
@@ -0,0 +1,21 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Francois Boulogne fboulogne at april dot org
+
+pkgname=fabric
+pkgver=1.8.0
+pkgrel=1
+pkgdesc=Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol
+url=http://fabfile.org/;
+license=('BSD')
+arch=('any')
+depends=('python2=2.5' 'pycrypto' 'python2-paramiko=1.10.0' 
'python2-setuptools')
+source=(http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz;)
+md5sums=('1f195d16b05877767816617749d33eca')
+
+package() {
+  cd ${srcdir}/Fabric-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:33:40
  Author: jgc
Revision: 194751

upgpkg: clutter 1.15.96-1

Modified:
  clutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 13:55:50 UTC (rev 194750)
+++ PKGBUILD2013-09-23 14:33:40 UTC (rev 194751)
@@ -4,7 +4,7 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=clutter
-pkgver=1.15.92
+pkgver=1.15.96
 pkgrel=1
 pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
 arch=('i686' 'x86_64')
@@ -11,10 +11,10 @@
 url=http://clutter-project.org/;
 options=('!libtool')
 license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
 makedepends=('gobject-introspection')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e164b048c2da5d87023f722f689edea14d10a8051c8cde305c15c2d436d5297d')
+sha256sums=('7b8383f49e596be3dae6ba5d6dd6f3708b2530d6cab8a6fd425206ecd900284f')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:33:48
  Author: jgc
Revision: 194752

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  clutter/repos/gnome-unstable-i686/PKGBUILD
(from rev 194751, clutter/trunk/PKGBUILD)
  clutter/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194751, clutter/trunk/PKGBUILD)
Deleted:
  clutter/repos/gnome-unstable-i686/PKGBUILD
  clutter/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 14:33:40 UTC (rev 194751)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 14:33:48 UTC (rev 194752)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=clutter
-pkgver=1.15.92
-pkgrel=1
-pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
-arch=('i686' 'x86_64')
-url=http://clutter-project.org/;
-options=('!libtool')
-license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon')
-makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e164b048c2da5d87023f722f689edea14d10a8051c8cde305c15c2d436d5297d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-introspection \
---enable-wayland-backend --enable-egl-backend --enable-evdev-input
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: clutter/repos/gnome-unstable-i686/PKGBUILD (from rev 194751, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 14:33:48 UTC (rev 194752)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clutter
+pkgver=1.15.96
+pkgrel=1
+pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+options=('!libtool')
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev')
+makedepends=('gobject-introspection')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7b8383f49e596be3dae6ba5d6dd6f3708b2530d6cab8a6fd425206ecd900284f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-introspection \
+--enable-wayland-backend --enable-egl-backend --enable-evdev-input
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-09-23 14:33:40 UTC (rev 194751)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 14:33:48 UTC (rev 194752)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=clutter
-pkgver=1.15.92
-pkgrel=1
-pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
-arch=('i686' 'x86_64')
-url=http://clutter-project.org/;
-options=('!libtool')
-license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon')
-makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e164b048c2da5d87023f722f689edea14d10a8051c8cde305c15c2d436d5297d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-introspection \
---enable-wayland-backend --enable-egl-backend --enable-evdev-input
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: clutter/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194751, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ 

[arch-commits] Commit in gnome-common/repos (2 files)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:36:39
  Author: jgc
Revision: 194754

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-common/repos/gnome-unstable-any/
  gnome-common/repos/gnome-unstable-any/PKGBUILD
(from rev 194753, gnome-common/trunk/PKGBUILD)

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

Copied: gnome-common/repos/gnome-unstable-any/PKGBUILD (from rev 194753, 
gnome-common/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2013-09-23 14:36:39 UTC (rev 194754)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-common
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=Common development macros for GNOME
+arch=(any)
+depends=('sh')
+license=('GPL')
+url=http://www.gnome.org;
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('aed69474a671e046523827f73ba5e936d57235b661db97900db7356e1e03b0a3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in gnome-common/trunk (PKGBUILD git-fixes.patch)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:36:35
  Author: jgc
Revision: 194753

upgpkg: gnome-common 3.10.0-1

Modified:
  gnome-common/trunk/PKGBUILD
Deleted:
  gnome-common/trunk/git-fixes.patch

-+
 PKGBUILD|   15 ++
 git-fixes.patch |   75 --
 2 files changed, 4 insertions(+), 86 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 14:33:48 UTC (rev 194752)
+++ PKGBUILD2013-09-23 14:36:35 UTC (rev 194753)
@@ -2,23 +2,16 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-common
-pkgver=3.7.4
-pkgrel=2
+pkgver=3.10.0
+pkgrel=1
 pkgdesc=Common development macros for GNOME
 arch=(any)
 depends=('sh')
 license=('GPL')
 url=http://www.gnome.org;
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz
-git-fixes.patch)
-sha256sums=('2af2d97010d2a9aeb3b99dd2ce07d1ef023e15a27b412ffe4f067f016ff7117b'
-'978d43799927b6e8ee7e8e33838126df44fdeade0f4ea5154a261286cdeb5d93')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('aed69474a671e046523827f73ba5e936d57235b661db97900db7356e1e03b0a3')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../git-fixes.patch
-}
-
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr

Deleted: git-fixes.patch
===
--- git-fixes.patch 2013-09-23 14:33:48 UTC (rev 194752)
+++ git-fixes.patch 2013-09-23 14:36:35 UTC (rev 194753)
@@ -1,75 +0,0 @@
-diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh
-index 5da964e..be70371 100644
 a/macros2/gnome-autogen.sh
-+++ b/macros2/gnome-autogen.sh
-@@ -345,15 +345,16 @@ done
- 
- case $REQUIRED_AUTOMAKE_VERSION in
- 1.4*) automake_progs=automake-1.4 ;;
--1.5*) automake_progs=automake-1.13 automake-1.12 automake-1.11 
automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6 automake-1.5 
;;
--1.6*) automake_progs=automake-1.13 automake-1.12 automake-1.11 
automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6 ;;
--1.7*) automake_progs=automake-1.13 automake-1.12 automake-1.11 
automake-1.10 automake-1.9 automake-1.8 automake-1.7 ;;
--1.8*) automake_progs=automake-1.13 automake-1.12 automake-1.11 
automake-1.10 automake-1.9 automake-1.8 ;;
--1.9*) automake_progs=automake-1.13 automake-1.12 automake-1.11 
automake-1.10 automake-1.9 ;;
--1.10*) automake_progs=automake-1.13 automake-1.12 automake-1.11 
automake-1.10 ;;
--1.11*) automake_progs=automake-1.13 automake-1.12 automake-1.11 ;;
--1.12*) automake_progs=automake-1.13 automake-1.12 ;;
--1.13*) automake_progs=automake-1.13 ;;
-+1.5*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6 
automake-1.5 ;;
-+1.6*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 
automake-1.6 ;;
-+1.7*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 ;;
-+1.8*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 automake-1.10 automake-1.9 automake-1.8 ;;
-+1.9*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 automake-1.10 automake-1.9 ;;
-+1.10*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 automake-1.10 ;;
-+1.11*) automake_progs=automake-1.14 automake-1.13 automake-1.12 
automake-1.11 ;;
-+1.12*) automake_progs=automake-1.14 automake-1.13 automake-1.12 ;;
-+1.13*) automake_progs=automake-1.14 automake-1.13 ;;
-+1.14*) automake_progs=automake-1.14 ;;
- esac
- version_check automake AUTOMAKE $automake_progs $REQUIRED_AUTOMAKE_VERSION \
- 
http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz;
-diff --git a/macros2/gnome-code-coverage.m4 b/macros2/gnome-code-coverage.m4
-index 618ccbe..62375e6 100644
 a/macros2/gnome-code-coverage.m4
-+++ b/macros2/gnome-code-coverage.m4
-@@ -44,7 +44,7 @@ AC_DEFUN([GNOME_CODE_COVERAGE],[
-   ])
- 
-   # List of supported lcov versions.
--  lcov_version_list=1.6 1.7 1.8 1.9
-+  lcov_version_list=1.6 1.7 1.8 1.9 1.10
- 
-   AC_CHECK_PROG([LCOV], [lcov], [lcov])
-   AC_CHECK_PROG([GENHTML], [genhtml], [genhtml])
-@@ -120,7 +120,7 @@ code_coverage_quiet_0 = --quiet
- 
- # Use recursive makes in order to ignore errors during check
- check-code-coverage:
--ifdef CODE_COVERAGE_ENABLED
-+ifeq ($(CODE_COVERAGE_ENABLED),yes)
-   -$(MAKE) $(AM_MAKEFLAGS) -k check
-   $(MAKE) $(AM_MAKEFLAGS) code-coverage-capture
- else
-@@ -129,7 +129,7 @@ endif
- 
- # Capture code coverage data
- code-coverage-capture: 

[arch-commits] Commit in gnome-backgrounds/repos/gnome-unstable-any (2 files)

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 17:00:40
  Author: jgc
Revision: 194760

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD
(from rev 194759, gnome-backgrounds/trunk/PKGBUILD)
Deleted:
  gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 15:00:36 UTC (rev 194759)
+++ PKGBUILD2013-09-23 15:00:40 UTC (rev 194760)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gnome-backgrounds
-pkgver=3.9.91
-pkgrel=1
-pkgdesc=Background images and data for GNOME
-arch=(any)
-makedepends=('intltool')
-url=http://www.gnome.org;
-license=('GPL')
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1e35e0c62e42619284bbb365c8a3eb9bbcddf41c7a29868b4d9e7729c93158a7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD (from rev 194759, 
gnome-backgrounds/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 15:00:40 UTC (rev 194760)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-backgrounds
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=Background images and data for GNOME
+arch=(any)
+makedepends=('intltool')
+url=http://www.gnome.org;
+license=('GPL')
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('db59a287b213e54ee5ccb58aa64166e8d396094370f22c5ec43fd3e7d4add3f9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 17:00:36
  Author: jgc
Revision: 194759

upgpkg: gnome-backgrounds 3.10.0-1

Modified:
  gnome-backgrounds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 14:59:19 UTC (rev 194758)
+++ PKGBUILD2013-09-23 15:00:36 UTC (rev 194759)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-backgrounds
-pkgver=3.9.91
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=Background images and data for GNOME
 arch=(any)
@@ -11,7 +11,7 @@
 license=('GPL')
 groups=('gnome')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1e35e0c62e42619284bbb365c8a3eb9bbcddf41c7a29868b4d9e7729c93158a7')
+sha256sums=('db59a287b213e54ee5ccb58aa64166e8d396094370f22c5ec43fd3e7d4add3f9')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:59:12
  Author: jgc
Revision: 194757

upgpkg: cogl 1.16.0-1

Modified:
  cogl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 14:54:33 UTC (rev 194756)
+++ PKGBUILD2013-09-23 14:59:12 UTC (rev 194757)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=cogl
-pkgver=1.15.10
-pkgrel=3
+pkgver=1.16.0
+pkgrel=1
 pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
 arch=('i686' 'x86_64')
 url=http://www.clutter-project.org/;
@@ -12,7 +12,7 @@
 makedepends=('mesa' 'gobject-introspection')
 options=(!libtool !emptydirs)
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('d82d5078f6b6d3c9369d0c190e34064ef3337fbdd06ecaf17e36f3a50f13a61c')
+sha256sums=('75c2c4636a050fda7ee8722ce3d9c618b08799ed92bbb72b4fdff3e73b096094')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:59:19
  Author: jgc
Revision: 194758

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  cogl/repos/gnome-unstable-i686/PKGBUILD
(from rev 194757, cogl/trunk/PKGBUILD)
  cogl/repos/gnome-unstable-i686/git-fixes.patch
(from rev 194757, cogl/trunk/git-fixes.patch)
  cogl/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194757, cogl/trunk/PKGBUILD)
  cogl/repos/gnome-unstable-x86_64/git-fixes.patch
(from rev 194757, cogl/trunk/git-fixes.patch)
Deleted:
  cogl/repos/gnome-unstable-i686/PKGBUILD
  cogl/repos/gnome-unstable-i686/git-fixes.patch
  cogl/repos/gnome-unstable-x86_64/PKGBUILD
  cogl/repos/gnome-unstable-x86_64/git-fixes.patch

---+
 /PKGBUILD |   66 
 /git-fixes.patch  | 3896 
 gnome-unstable-i686/PKGBUILD  |   33 
 gnome-unstable-i686/git-fixes.patch   | 1948 
 gnome-unstable-x86_64/PKGBUILD|   33 
 gnome-unstable-x86_64/git-fixes.patch | 1948 
 6 files changed, 3962 insertions(+), 3962 deletions(-)

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


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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:54:33
  Author: jgc
Revision: 194756

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  epiphany/repos/gnome-unstable-i686/
  epiphany/repos/gnome-unstable-i686/PKGBUILD
(from rev 194755, epiphany/trunk/PKGBUILD)
  epiphany/repos/gnome-unstable-i686/epiphany.install
(from rev 194755, epiphany/trunk/epiphany.install)
  epiphany/repos/gnome-unstable-x86_64/
  epiphany/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194755, epiphany/trunk/PKGBUILD)
  epiphany/repos/gnome-unstable-x86_64/epiphany.install
(from rev 194755, epiphany/trunk/epiphany.install)

+
 gnome-unstable-i686/PKGBUILD   |   34 +++
 gnome-unstable-i686/epiphany.install   |   13 +++
 gnome-unstable-x86_64/PKGBUILD |   34 +++
 gnome-unstable-x86_64/epiphany.install |   13 +++
 4 files changed, 94 insertions(+)

Copied: epiphany/repos/gnome-unstable-i686/PKGBUILD (from rev 194755, 
epiphany/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 14:54:33 UTC (rev 194756)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=epiphany
+pkgver=3.9.91
+pkgrel=1
+install=epiphany.install
+pkgdesc=A GNOME web browser based on the WebKit rendering engine.
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkitgtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'gcr' 'gnome-desktop' 'libwnck3')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
+options=('!libtool' '!emptydirs')
+groups=('gnome')
+url=http://www.gnome.org/projects/epiphany/;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('080f9d89126b0243adec0197514d1f300d6b6584b8401d598083bad9e22d7fab')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: epiphany/repos/gnome-unstable-i686/epiphany.install (from rev 194755, 
epiphany/trunk/epiphany.install)
===
--- gnome-unstable-i686/epiphany.install(rev 0)
+++ gnome-unstable-i686/epiphany.install2013-09-23 14:54:33 UTC (rev 
194756)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: epiphany/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194755, 
epiphany/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 14:54:33 UTC (rev 194756)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=epiphany
+pkgver=3.9.91
+pkgrel=1
+install=epiphany.install
+pkgdesc=A GNOME web browser based on the WebKit rendering engine.
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkitgtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'gcr' 'gnome-desktop' 'libwnck3')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
+options=('!libtool' '!emptydirs')
+groups=('gnome')
+url=http://www.gnome.org/projects/epiphany/;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('080f9d89126b0243adec0197514d1f300d6b6584b8401d598083bad9e22d7fab')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: epiphany/repos/gnome-unstable-x86_64/epiphany.install (from rev 194755, 
epiphany/trunk/epiphany.install)
===
--- gnome-unstable-x86_64/epiphany.install  (rev 0)
+++ gnome-unstable-x86_64/epiphany.install  2013-09-23 14:54:33 UTC (rev 
194756)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 16:54:28
  Author: jgc
Revision: 194755

upgpkg: epiphany 3.9.91-1

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 14:36:39 UTC (rev 194754)
+++ PKGBUILD2013-09-23 14:54:28 UTC (rev 194755)
@@ -2,20 +2,20 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=epiphany
-pkgver=3.8.2
+pkgver=3.9.91
 pkgrel=1
 install=epiphany.install
 pkgdesc=A GNOME web browser based on the WebKit rendering engine.
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkitgtk3' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils'
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkitgtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils'
  'hicolor-icon-theme' 'gcr' 'gnome-desktop' 'libwnck3')
-makedepends=('intltool' 'gnome-doc-utils' 'startup-notification' 
'gobject-introspection')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
 options=('!libtool' '!emptydirs')
 groups=('gnome')
 url=http://www.gnome.org/projects/epiphany/;
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ae89d6902ed243304d2cbf2fa361f6dd0cb3401fdaf726e6fdd4acc09197d50a')
+sha256sums=('080f9d89126b0243adec0197514d1f300d6b6584b8401d598083bad9e22d7fab')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 17:21:17
  Author: jgc
Revision: 194762

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-disk-utility/repos/gnome-unstable-i686/
  gnome-disk-utility/repos/gnome-unstable-i686/PKGBUILD
(from rev 194761, gnome-disk-utility/trunk/PKGBUILD)
  gnome-disk-utility/repos/gnome-unstable-i686/gnome-disk-utility.install
(from rev 194761, gnome-disk-utility/trunk/gnome-disk-utility.install)
  gnome-disk-utility/repos/gnome-unstable-i686/typefixes.patch
(from rev 194761, gnome-disk-utility/trunk/typefixes.patch)
  gnome-disk-utility/repos/gnome-unstable-x86_64/
  gnome-disk-utility/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194761, gnome-disk-utility/trunk/PKGBUILD)
  gnome-disk-utility/repos/gnome-unstable-x86_64/gnome-disk-utility.install
(from rev 194761, gnome-disk-utility/trunk/gnome-disk-utility.install)
  gnome-disk-utility/repos/gnome-unstable-x86_64/typefixes.patch
(from rev 194761, gnome-disk-utility/trunk/typefixes.patch)

--+
 gnome-unstable-i686/PKGBUILD |   39 
 gnome-unstable-i686/gnome-disk-utility.install   |   13 ++
 gnome-unstable-i686/typefixes.patch  |   97 +
 gnome-unstable-x86_64/PKGBUILD   |   39 
 gnome-unstable-x86_64/gnome-disk-utility.install |   13 ++
 gnome-unstable-x86_64/typefixes.patch|   97 +
 6 files changed, 298 insertions(+)

Copied: gnome-disk-utility/repos/gnome-unstable-i686/PKGBUILD (from rev 194761, 
gnome-disk-utility/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 15:21:17 UTC (rev 194762)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Silvio Knizek (killermoehre)
+
+pkgname=gnome-disk-utility
+pkgver=3.9.0
+pkgrel=1
+pkgdesc=Disk Management Utility for GNOME
+arch=(i686 x86_64)
+license=(GPL)
+url=http://www.gnome.org;
+groups=(gnome)
+depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
hicolor-icon-theme desktop-file-utils)
+makedepends=(intltool docbook-xsl gnome-settings-daemon)
+options=('!libtool' '!emptydirs')
+install=gnome-disk-utility.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('704bc3afc01c120a2651b8000f64f53308e6aaa5e155cda3700af27cd32d6f04')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's/LIBLZMA_REQUIRED=5.1.0/LIBLZMA_REQUIRED=5.0.5/g' configure*
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gnome-disk-utility/repos/gnome-unstable-i686/gnome-disk-utility.install 
(from rev 194761, gnome-disk-utility/trunk/gnome-disk-utility.install)
===
--- gnome-unstable-i686/gnome-disk-utility.install  
(rev 0)
+++ gnome-unstable-i686/gnome-disk-utility.install  2013-09-23 15:21:17 UTC 
(rev 194762)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-disk-utility/repos/gnome-unstable-i686/typefixes.patch (from rev 
194761, gnome-disk-utility/trunk/typefixes.patch)
===
--- gnome-unstable-i686/typefixes.patch (rev 0)
+++ gnome-unstable-i686/typefixes.patch 2013-09-23 15:21:17 UTC (rev 194762)
@@ -0,0 +1,97 @@
+diff -u -r gnome-disk-utility-3.8.2/src/disks/gducreatediskimagedialog.c 
gnome-disk-utility-3.8.2-typefixes/src/disks/gducreatediskimagedialog.c
+--- gnome-disk-utility-3.8.2/src/disks/gducreatediskimagedialog.c  
2013-05-14 07:15:48.0 +0200
 gnome-disk-utility-3.8.2-typefixes/src/disks/gducreatediskimagedialog.c
2013-05-29 03:17:37.201963964 +0200
+@@ -610,7 +610,7 @@
+   error))
+ {
+   g_prefix_error (error,
+-  Error writing % G_GUINT64_FORMAT  bytes to offset % 
G_GUINT64_FORMAT : ,
++  Error writing % G_GSIZE_FORMAT  bytes to offset % 
G_GUINT64_FORMAT : ,
+   num_bytes_to_write,
+   offset);
+   goto out;
+diff -u -r gnome-disk-utility-3.8.2/src/disks/gducreatefilesystemwidget.c 
gnome-disk-utility-3.8.2-typefixes/src/disks/gducreatefilesystemwidget.c
+--- gnome-disk-utility-3.8.2/src/disks/gducreatefilesystemwidget.c 
2013-05-14 07:15:48.0 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 17:21:10
  Author: jgc
Revision: 194761

upgpkg: gnome-disk-utility 3.9.0-1

Modified:
  gnome-disk-utility/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 15:00:40 UTC (rev 194760)
+++ PKGBUILD2013-09-23 15:21:10 UTC (rev 194761)
@@ -3,7 +3,7 @@
 # Contributor: Silvio Knizek (killermoehre)
 
 pkgname=gnome-disk-utility
-pkgver=3.8.2
+pkgver=3.9.0
 pkgrel=1
 pkgdesc=Disk Management Utility for GNOME
 arch=(i686 x86_64)
@@ -14,16 +14,12 @@
 makedepends=(intltool docbook-xsl gnome-settings-daemon)
 options=('!libtool' '!emptydirs')
 install=gnome-disk-utility.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-typefixes.patch)
-sha256sums=('6a64de6f40ddfebfe7566f3ef7856c1cb33fab7d21d9be43db74f014309298c3'
-'0a1f2f80f1c741119639b3b2b8cf32d6261b126baa85189309d6473e171894d2')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('704bc3afc01c120a2651b8000f64f53308e6aaa5e155cda3700af27cd32d6f04')
 
 prepare() {
   cd $pkgname-$pkgver
-
-  # Gets rid of warnings and compilation errors on i686
-  patch -Np1 -i ../typefixes.patch
+  sed -i -e 's/LIBLZMA_REQUIRED=5.1.0/LIBLZMA_REQUIRED=5.0.5/g' configure*
 }
 
 build() {



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:13:35
  Author: spupykin
Revision: 97515

upgpkg: firefox-noscript 2.6.7.1-1

upd

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 14:04:16 UTC (rev 97514)
+++ PKGBUILD2013-09-23 16:13:35 UTC (rev 97515)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-noscript
-pkgver=2.6.6.7
+pkgver=2.6.7.1
 pkgrel=1
 pkgdesc=plugin for firefox which disables script
 arch=('any')
@@ -11,7 +11,7 @@
 depends=()
 makedepends=('unzip')
 source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('10b6704f34568d226fb5fe69b7d6043d')
+md5sums=('fcc2cbd8792d215604e3fe89847bc936')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:13:48
  Author: spupykin
Revision: 97516

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 97515, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 16:13:35 UTC (rev 97515)
+++ PKGBUILD2013-09-23 16:13:48 UTC (rev 97516)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.6.7
-pkgrel=1
-pkgdesc=plugin for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('10b6704f34568d226fb5fe69b7d6043d')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 97515, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 16:13:48 UTC (rev 97516)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.7.1
+pkgrel=1
+pkgdesc=plugin for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('fcc2cbd8792d215604e3fe89847bc936')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:14:07
  Author: spupykin
Revision: 97518

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:13:52 UTC (rev 97517)
+++ community-i686/PKGBUILD 2013-09-23 16:14:07 UTC (rev 97518)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-
-pkgname=gloox
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=C++ libraries for development of Jabber client/component/server
-arch=(i686 x86_64)
-url=http://camaya.net/gloox;
-options=('!libtool')
-license=(GPL)
-depends=('libidn' 'gnutls')
-source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
-md5sums=('4c446ee186406c3b3a24402418127faa')
-
-build() {
-  cd $srcdir/gloox-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/gloox-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gloox/repos/community-i686/PKGBUILD (from rev 97517, 
gloox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:14:07 UTC (rev 97518)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+
+pkgname=gloox
+pkgver=1.0.6
+pkgrel=1
+pkgdesc=C++ libraries for development of Jabber client/component/server
+arch=(i686 x86_64)
+url=http://camaya.net/gloox;
+options=('!libtool')
+license=(GPL)
+depends=('libidn' 'gnutls')
+source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
+md5sums=('80ba7fa1220913a9f67bf6f3183aafbd')
+
+build() {
+  cd $srcdir/gloox-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gloox-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-09-23 16:13:52 UTC (rev 97517)
+++ community-x86_64/PKGBUILD   2013-09-23 16:14:07 UTC (rev 97518)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-
-pkgname=gloox
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=C++ libraries for development of Jabber client/component/server
-arch=(i686 x86_64)
-url=http://camaya.net/gloox;
-options=('!libtool')
-license=(GPL)
-depends=('libidn' 'gnutls')
-source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
-md5sums=('4c446ee186406c3b3a24402418127faa')
-
-build() {
-  cd $srcdir/gloox-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/gloox-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gloox/repos/community-x86_64/PKGBUILD (from rev 97517, 
gloox/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-09-23 16:14:07 UTC (rev 97518)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+
+pkgname=gloox
+pkgver=1.0.6
+pkgrel=1
+pkgdesc=C++ libraries for development of Jabber client/component/server
+arch=(i686 x86_64)
+url=http://camaya.net/gloox;
+options=('!libtool')
+license=(GPL)
+depends=('libidn' 'gnutls')
+source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
+md5sums=('80ba7fa1220913a9f67bf6f3183aafbd')
+
+build() {
+  cd $srcdir/gloox-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gloox-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:14:28
  Author: spupykin
Revision: 97519

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

Added:
  opendkim/repos/community-i686/PKGBUILD
(from rev 97518, opendkim/trunk/PKGBUILD)
  opendkim/repos/community-i686/opendkim.conf
(from rev 97518, opendkim/trunk/opendkim.conf)
  opendkim/repos/community-i686/opendkim.install
(from rev 97518, opendkim/trunk/opendkim.install)
  opendkim/repos/community-i686/opendkim.service
(from rev 97518, opendkim/trunk/opendkim.service)
  opendkim/repos/community-x86_64/PKGBUILD
(from rev 97518, opendkim/trunk/PKGBUILD)
  opendkim/repos/community-x86_64/opendkim.conf
(from rev 97518, opendkim/trunk/opendkim.conf)
  opendkim/repos/community-x86_64/opendkim.install
(from rev 97518, opendkim/trunk/opendkim.install)
  opendkim/repos/community-x86_64/opendkim.service
(from rev 97518, opendkim/trunk/opendkim.service)
Deleted:
  opendkim/repos/community-i686/PKGBUILD
  opendkim/repos/community-i686/opendkim.conf
  opendkim/repos/community-i686/opendkim.install
  opendkim/repos/community-i686/opendkim.service
  opendkim/repos/community-x86_64/PKGBUILD
  opendkim/repos/community-x86_64/opendkim.conf
  opendkim/repos/community-x86_64/opendkim.install
  opendkim/repos/community-x86_64/opendkim.service

---+
 /PKGBUILD |  108 
 /opendkim.conf|2 
 /opendkim.install |   22 +++
 /opendkim.service |   22 +++
 community-i686/PKGBUILD   |   54 --
 community-i686/opendkim.conf  |1 
 community-i686/opendkim.install   |   11 ---
 community-i686/opendkim.service   |   11 ---
 community-x86_64/PKGBUILD |   54 --
 community-x86_64/opendkim.conf|1 
 community-x86_64/opendkim.install |   11 ---
 community-x86_64/opendkim.service |   11 ---
 12 files changed, 154 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:14:07 UTC (rev 97518)
+++ community-i686/PKGBUILD 2013-09-23 16:14:28 UTC (rev 97519)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Thomas Jost schno...@schnouki.net
-
-pkgname=opendkim
-pkgver=2.8.3
-pkgrel=3
-pkgdesc=An open source implementation of the DKIM sender authentication 
system. Based on a fork of dkim-milter.
-arch=(i686 x86_64)
-url=http://www.opendkim.org/;
-license=('BSD' 'custom:Sendmail')
-depends=(db openssl)
-makedepends=(libmilter)
-options=(!libtool !emptydirs)
-backup=(etc/conf.d/opendkim)
-install=opendkim.install
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
-   opendkim.conf
-   opendkim.service)
-md5sums=('0ae9d37e3221a244eb34c3e0e2d665cc'
- '3e2bb1058ac0662f01e675aa6ac7ee8f'
- '85010750a21954e2d3cf5d57fe210d3f')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-db
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-
-  # Sample configuration
-  mkdir -p $pkgdir/etc/opendkim
-  mv $pkgdir/usr/share/doc/opendkim/opendkim.conf.sample 
$pkgdir/etc/opendkim/opendkim.conf.sample
-  chmod 0700 $pkgdir/etc/opendkim
-  chmod 0600 $pkgdir/etc/opendkim/opendkim.conf.sample
-  install -Dm644 $srcdir/opendkim.conf $pkgdir/etc/conf.d/opendkim
-
-  # License
-  mkdir -p $pkgdir/usr/share/licenses/opendkim
-  for f in LICENSE LICENSE.Sendmail; do
-ln -s ../../doc/opendkim/$f $pkgdir/usr/share/licenses/opendkim/$f
-  done
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: opendkim/repos/community-i686/PKGBUILD (from rev 97518, 
opendkim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:14:28 UTC (rev 97519)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Thomas Jost schno...@schnouki.net
+
+pkgname=opendkim
+pkgver=2.8.4
+pkgrel=1
+pkgdesc=An open source implementation of the DKIM sender authentication 
system. Based on a fork of dkim-milter.
+arch=(i686 x86_64)
+url=http://www.opendkim.org/;
+license=('BSD' 'custom:Sendmail')
+depends=(db openssl)
+makedepends=(libmilter)
+options=(!libtool !emptydirs)
+backup=(etc/conf.d/opendkim)
+install=opendkim.install
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
+   opendkim.conf
+   opendkim.service)
+md5sums=('17f667d022c167c7874a993e928d4a6d'
+ '3e2bb1058ac0662f01e675aa6ac7ee8f'
+ '85010750a21954e2d3cf5d57fe210d3f')
+
+build() {
+  cd 

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:14:32
  Author: spupykin
Revision: 97520

upgpkg: phpvirtualbox 4.2_7-1

upd

Modified:
  phpvirtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:14:28 UTC (rev 97519)
+++ PKGBUILD2013-09-23 16:14:32 UTC (rev 97520)
@@ -3,7 +3,7 @@
 # Contributor:Techlive Zheng techlivezheng at gmail dot com
 
 pkgname=phpvirtualbox
-pkgver=4.2_6
+pkgver=4.2_7
 pkgrel=1
 pkgdesc=PHP/AJAX web interface for VirtualBox 4.*
 arch=(any)
@@ -13,7 +13,7 @@
 backup=(etc/webapps/phpvirtualbox/.htaccess
etc/webapps/phpvirtualbox/config.php)
 
source=(http://downloads.sourceforge.net/project/phpvirtualbox/phpvirtualbox-${pkgver/_/-}.zip)
-md5sums=('1e517456ac7b8c0d332f90943777b1c0')
+md5sums=('10ece199e42c0fbb39556f7464608fad')
 
 build() {
   true



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:14:45
  Author: spupykin
Revision: 97522

upgpkg: qcad 3.3.1.0-1

upd

Modified:
  qcad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:14:41 UTC (rev 97521)
+++ PKGBUILD2013-09-23 16:14:45 UTC (rev 97522)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=qcad
-pkgver=3.2.2.2
+pkgver=3.3.1.0
 pkgrel=1
 pkgdesc=A 2D CAD package based upon Qt
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=(libtool)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
 QCad.desktop)
-md5sums=('49c05861b309c48f04ed7910b496e48c'
+md5sums=('e6e469482b40515980c416e61482abc2'
  '35100eaedbdf6625f6e6a09b177854cd')
 
 prepare() {
@@ -64,6 +64,7 @@
   install -Dm644 $srcdir/QCad.desktop 
${pkgdir}/usr/share/applications/QCad.desktop
 
   install -dm0755 $pkgdir/usr/bin
-  echo -e '#!/bin/sh\ncd 
/usr/share/qcad\nLD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH exec ./qcad-bin' 
$pkgdir/usr/bin/qcad
+  echo -e '#!/bin/sh\ncd 
/usr/share/qcad\nLD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}/usr/share/qcad
 exec /usr/share/qcad/qcad-bin $@' $pkgdir/usr/bin/qcad
+
   chmod 0755 $pkgdir/usr/bin/qcad
 }



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:14:41
  Author: spupykin
Revision: 97521

archrelease: copy trunk to community-any

Added:
  phpvirtualbox/repos/community-any/PKGBUILD
(from rev 97520, phpvirtualbox/trunk/PKGBUILD)
Deleted:
  phpvirtualbox/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 16:14:32 UTC (rev 97520)
+++ PKGBUILD2013-09-23 16:14:41 UTC (rev 97521)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupyki...@gmail.com
-# Contributor:Techlive Zheng techlivezheng at gmail dot com
-
-pkgname=phpvirtualbox
-pkgver=4.2_6
-pkgrel=1
-pkgdesc=PHP/AJAX web interface for VirtualBox 4.*
-arch=(any)
-url=http://sourceforge.net/projects/phpvirtualbox/;
-license=('GPL')
-depends=('php')
-backup=(etc/webapps/phpvirtualbox/.htaccess
-   etc/webapps/phpvirtualbox/config.php)
-source=(http://downloads.sourceforge.net/project/phpvirtualbox/phpvirtualbox-${pkgver/_/-}.zip)
-md5sums=('1e517456ac7b8c0d332f90943777b1c0')
-
-build() {
-  true
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-
-  mkdir -p ${pkgdir}/etc/webapps/phpvirtualbox
-
-  install -D -m644 config.php-example 
${pkgdir}/etc/webapps/phpvirtualbox/config.php
-
-#  sed -e s/var \\\$username = 'vbox';/var \\\$username = '';/g \
-#  -e s/var \\\$password = 'pass';/var \\\$password = '';/g \
-#  -e s/#var \\\$noAuth = true;/var \\\$noAuth = true;/g \
-#  -i ${pkgdir}/etc/webapps/phpvirtualbox/config.php
-
-  # Apache configuration
-  cat  ${pkgdir}/etc/webapps/phpvirtualbox/apache.example.conf EOF
-  Alias /phpvirtualbox /usr/share/webapps/phpvirtualbox
-  Directory /usr/share/webapps/phpvirtualbox
-Options FollowSymlinks
-AllowOverride All
-Order allow,deny
-Allow from all
-  /Directory
-EOF
-
-  #  Deny access by default
-  echo deny from all  ${pkgdir}/etc/webapps/phpvirtualbox/.htaccess
-
-  find . -type f -exec install -D -m644 
{,${pkgdir}/usr/share/webapps/${pkgname}/}{} \;
-
-  ln -s /etc/webapps/phpvirtualbox/.htaccess  
${pkgdir}/usr/share/webapps/phpvirtualbox/.htaccess
-  ln -s /etc/webapps/phpvirtualbox/config.php 
${pkgdir}/usr/share/webapps/phpvirtualbox/config.php
-}

Copied: phpvirtualbox/repos/community-any/PKGBUILD (from rev 97520, 
phpvirtualbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 16:14:41 UTC (rev 97521)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupyki...@gmail.com
+# Contributor:Techlive Zheng techlivezheng at gmail dot com
+
+pkgname=phpvirtualbox
+pkgver=4.2_7
+pkgrel=1
+pkgdesc=PHP/AJAX web interface for VirtualBox 4.*
+arch=(any)
+url=http://sourceforge.net/projects/phpvirtualbox/;
+license=('GPL')
+depends=('php')
+backup=(etc/webapps/phpvirtualbox/.htaccess
+   etc/webapps/phpvirtualbox/config.php)
+source=(http://downloads.sourceforge.net/project/phpvirtualbox/phpvirtualbox-${pkgver/_/-}.zip)
+md5sums=('10ece199e42c0fbb39556f7464608fad')
+
+build() {
+  true
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+
+  mkdir -p ${pkgdir}/etc/webapps/phpvirtualbox
+
+  install -D -m644 config.php-example 
${pkgdir}/etc/webapps/phpvirtualbox/config.php
+
+#  sed -e s/var \\\$username = 'vbox';/var \\\$username = '';/g \
+#  -e s/var \\\$password = 'pass';/var \\\$password = '';/g \
+#  -e s/#var \\\$noAuth = true;/var \\\$noAuth = true;/g \
+#  -i ${pkgdir}/etc/webapps/phpvirtualbox/config.php
+
+  # Apache configuration
+  cat  ${pkgdir}/etc/webapps/phpvirtualbox/apache.example.conf EOF
+  Alias /phpvirtualbox /usr/share/webapps/phpvirtualbox
+  Directory /usr/share/webapps/phpvirtualbox
+Options FollowSymlinks
+AllowOverride All
+Order allow,deny
+Allow from all
+  /Directory
+EOF
+
+  #  Deny access by default
+  echo deny from all  ${pkgdir}/etc/webapps/phpvirtualbox/.htaccess
+
+  find . -type f -exec install -D -m644 
{,${pkgdir}/usr/share/webapps/${pkgname}/}{} \;
+
+  ln -s /etc/webapps/phpvirtualbox/.htaccess  
${pkgdir}/usr/share/webapps/phpvirtualbox/.htaccess
+  ln -s /etc/webapps/phpvirtualbox/config.php 
${pkgdir}/usr/share/webapps/phpvirtualbox/config.php
+}



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:15:42
  Author: spupykin
Revision: 97526

upgpkg: sdlmame 0.150.u0-1

upd

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:15:36 UTC (rev 97525)
+++ PKGBUILD2013-09-23 16:15:42 UTC (rev 97526)
@@ -4,7 +4,7 @@
 # Maintainer: JJDaNiMoTh jjdanim...@gmail.com
 
 pkgname=sdlmame
-pkgver=0.149.u1
+pkgver=0.150.u0
 _patchlevel=`echo $pkgver | cut -f2 -du`
 _basever=`echo $pkgver | cut -f1,2 -d.`
 pkgrel=1
@@ -25,10 +25,9 @@
sdlmame.sh
extras.tar.gz
${_patches})
-md5sums=('0be44260fd75f5cbe40c4bf8d26867fb'
+md5sums=('792870d0d59dc1bb26ade690151792b8'
  'e11a7d26704a9e2cff223b9b867d6a05'
- '420b61240bf5ae11615ba7c6100ee00d'
- '166d77d930d9a4d129c145bb11b13628')
+ '420b61240bf5ae11615ba7c6100ee00d')
 
 build() {
   cd $srcdir/



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:15:20
  Author: spupykin
Revision: 97524

upgpkg: rsyslog 7.4.4-1

upd

Modified:
  rsyslog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:15:04 UTC (rev 97523)
+++ PKGBUILD2013-09-23 16:15:20 UTC (rev 97524)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=rsyslog
-pkgver=7.4.2
+pkgver=7.4.4
 pkgrel=1
 pkgdesc=An enhanced multi-threaded syslogd with a focus on security and 
reliability
 url=http://www.rsyslog.com/;
@@ -22,7 +22,7 @@
 source=(http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
'rsyslog.logrotate'
'rsyslog.conf')
-md5sums=('52ba87ddce153625ec4e4a2e60c4ec0e'
+md5sums=('ebcc010a6205c28eb505c0fe862f32c6'
  '0d990373f5c70ddee989296007b4df5b'
  'd61dd424e660eb16401121eed20d98bc')
 



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:15:36
  Author: spupykin
Revision: 97525

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

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

+
 /PKGBUILD  |  118 +++
 /rsyslog.conf  |   88 ++
 /rsyslog.logrotate |   14 
 community-i686/PKGBUILD|   59 -
 community-i686/rsyslog.conf|   44 -
 community-i686/rsyslog.logrotate   |7 --
 community-x86_64/PKGBUILD  |   59 -
 community-x86_64/rsyslog.conf  |   44 -
 community-x86_64/rsyslog.logrotate |7 --
 9 files changed, 220 insertions(+), 220 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:15:20 UTC (rev 97524)
+++ community-i686/PKGBUILD 2013-09-23 16:15:36 UTC (rev 97525)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=rsyslog
-pkgver=7.4.2
-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')
-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'
-   'etc/conf.d/rsyslog')
-options=('strip' 'zipman' '!libtool')
-source=(http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
-   'rsyslog.logrotate'
-   'rsyslog.conf')
-md5sums=('52ba87ddce153625ec4e4a2e60c4ec0e'
- '0d990373f5c70ddee989296007b4df5b'
- 'd61dd424e660eb16401121eed20d98bc')
-
-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
-  echo rsyslogd_LDADD += \$(LIBESTR_LIBS) -lm tools/Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-  # Install Daemons and Configuration Files
-  install -D -m644 doc/${pkgname}-example.conf 
${pkgdir}/usr/share/doc/$pkgname/${pkgname}.conf.example
-  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 97524, 
rsyslog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:15:36 UTC (rev 97525)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=rsyslog
+pkgver=7.4.4
+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')
+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'
+   'etc/conf.d/rsyslog')

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 18:16:07
  Author: jgc
Revision: 194765

upgpkg: gnome-control-center 3.9.92-1

Modified:
  gnome-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 15:45:59 UTC (rev 194764)
+++ PKGBUILD2013-09-23 16:16:07 UTC (rev 194765)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-control-center
-pkgver=3.8.5
+pkgver=3.9.92
 pkgrel=1
 pkgdesc=The Control Center for GNOME
 license=(GPL)
@@ -22,20 +22,13 @@
 url=http://www.gnome.org;
 install=gnome-control-center.install
 options=('!libtool' '!emptydirs')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
-no-deprecated-upower.diff)
-sha256sums=('efb9fb47aaa9a308aed3064efc39356db05d71ddb0374561eeccc57c122212e2'
-'4182fa082b071c840bc0a6e981dad3c070602cae473229227e81bdaa2b5f8c23')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('77f477d80734f5dad5f7dd617737b1615c654df79f9fb0840e76383e00c00a61')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../no-deprecated-upower.diff
-}
-
 build() {
   cd $pkgname-$pkgver
 
-  CFLAGS=$CFLAGS -Wall ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --libexecdir=/usr/lib/$pkgname --disable-static --disable-silent-rules
 
   #https://bugzilla.gnome.org/show_bug.cgi?id=656229



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:16:35
  Author: spupykin
Revision: 97529

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

Added:
  spice-gtk3/repos/community-i686/PKGBUILD
(from rev 97528, spice-gtk3/trunk/PKGBUILD)
  spice-gtk3/repos/community-x86_64/PKGBUILD
(from rev 97528, spice-gtk3/trunk/PKGBUILD)
Deleted:
  spice-gtk3/repos/community-i686/PKGBUILD
  spice-gtk3/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:16:20 UTC (rev 97528)
+++ community-i686/PKGBUILD 2013-09-23 16:16:35 UTC (rev 97529)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Stefano Facchini stefano.facch...@gmail.com
-# Contributor: Jonathan Lestrelin za...@daemontux.org
-# Derived from the spice-gtk PKGBUILD by
-# Contributor: Lucio Zara penn...@gmail.com
-
-pkgname=spice-gtk3
-pkgver=0.20
-pkgrel=2
-pkgdesc=A Gtk client and libraries for SPICE remote desktop servers (gtk3 
version).
-arch=('x86_64' 'i686')
-url=http://spice-space.org;
-license=('GPL')
-makedepends=('intltool' 'vala' 'python2-pyparsing' 'python2-gobject')
-depends=('libpulse' 'gtk3' 'spice' 'libusb' 'usbredir')
-conflicts=('spice-gtk')
-options=('!libtool')
-source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-sha256sums=('b1355823b0ceb2e118c1f9a9a602ccab78e1e2edf2d93f71fa42d3bc85ca75df')
-
-build() {
-  cd $srcdir/spice-gtk-$pkgver
-  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
-  ./configure --prefix=/usr \
-  --with-gtk=3.0 \
-  --with-python \
-  --enable-vala \
-  --enable-smartcard=no
-  make
-}
-
-package() {
-  cd $srcdir/spice-gtk-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: spice-gtk3/repos/community-i686/PKGBUILD (from rev 97528, 
spice-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:16:35 UTC (rev 97529)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Stefano Facchini stefano.facch...@gmail.com
+# Contributor: Jonathan Lestrelin za...@daemontux.org
+# Derived from the spice-gtk PKGBUILD by
+# Contributor: Lucio Zara penn...@gmail.com
+
+pkgname=spice-gtk3
+pkgver=0.21
+pkgrel=1
+pkgdesc=A Gtk client and libraries for SPICE remote desktop servers (gtk3 
version).
+arch=('x86_64' 'i686')
+url=http://spice-space.org;
+license=('GPL')
+makedepends=('intltool' 'vala' 'python2-pyparsing' 'python2-gobject')
+depends=('libpulse' 'gtk3' 'spice' 'libusb' 'usbredir')
+conflicts=('spice-gtk')
+options=('!libtool')
+source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+sha256sums=('b1355823b0ceb2e118c1f9a9a602ccab78e1e2edf2d93f71fa42d3bc85ca75df')
+sha256sums=('73d418ffa97d6cf5edb1920d46f1d51fc40d14a8d4edfab3be6041e25062c564')
+
+build() {
+  cd $srcdir/spice-gtk-$pkgver
+  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
+  ./configure --prefix=/usr \
+  --with-gtk=3.0 \
+  --with-python \
+  --enable-vala \
+  --enable-smartcard=no
+  make
+}
+
+package() {
+  cd $srcdir/spice-gtk-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-09-23 16:16:20 UTC (rev 97528)
+++ community-x86_64/PKGBUILD   2013-09-23 16:16:35 UTC (rev 97529)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Stefano Facchini stefano.facch...@gmail.com
-# Contributor: Jonathan Lestrelin za...@daemontux.org
-# Derived from the spice-gtk PKGBUILD by
-# Contributor: Lucio Zara penn...@gmail.com
-
-pkgname=spice-gtk3
-pkgver=0.20
-pkgrel=2
-pkgdesc=A Gtk client and libraries for SPICE remote desktop servers (gtk3 
version).
-arch=('x86_64' 'i686')
-url=http://spice-space.org;
-license=('GPL')
-makedepends=('intltool' 'vala' 'python2-pyparsing' 'python2-gobject')
-depends=('libpulse' 'gtk3' 'spice' 'libusb' 'usbredir')
-conflicts=('spice-gtk')
-options=('!libtool')
-source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-sha256sums=('b1355823b0ceb2e118c1f9a9a602ccab78e1e2edf2d93f71fa42d3bc85ca75df')
-
-build() {
-  cd $srcdir/spice-gtk-$pkgver
-  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
-  ./configure --prefix=/usr \
-  --with-gtk=3.0 \
-  --with-python \
-   

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:16:40
  Author: spupykin
Revision: 97530

upgpkg: squid 3.3.9-1

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:16:35 UTC (rev 97529)
+++ PKGBUILD2013-09-23 16:16:40 UTC (rev 97530)
@@ -5,8 +5,8 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=squid
-pkgver=3.3.8
-pkgrel=2
+pkgver=3.3.9
+pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
 url='http://www.squid-cache.org'
@@ -21,7 +21,7 @@
 'squid.pam'
 'squid.cron'
 'squid.service')
-md5sums=('ec1654d28e29bdd2ee342ffb655ecc72'
+md5sums=('f08bffe795260cecca828331c579e0c4'
  '270977cdd9b47ef44c0c427ab9034777'
  'a71425c4951f2e5b640d19e6a5048531'
  'ceeb57c69ebb165676219222f109a24e')



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:17:02
  Author: spupykin
Revision: 97531

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

Added:
  squid/repos/community-i686/PKGBUILD
(from rev 97530, squid/trunk/PKGBUILD)
  squid/repos/community-i686/squid.cron
(from rev 97530, squid/trunk/squid.cron)
  squid/repos/community-i686/squid.install
(from rev 97530, squid/trunk/squid.install)
  squid/repos/community-i686/squid.pam
(from rev 97530, squid/trunk/squid.pam)
  squid/repos/community-i686/squid.service
(from rev 97530, squid/trunk/squid.service)
  squid/repos/community-x86_64/PKGBUILD
(from rev 97530, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid.cron
(from rev 97530, squid/trunk/squid.cron)
  squid/repos/community-x86_64/squid.install
(from rev 97530, squid/trunk/squid.install)
  squid/repos/community-x86_64/squid.pam
(from rev 97530, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.service
(from rev 97530, squid/trunk/squid.service)
Deleted:
  squid/repos/community-i686/PKGBUILD
  squid/repos/community-i686/squid.cron
  squid/repos/community-i686/squid.install
  squid/repos/community-i686/squid.pam
  squid/repos/community-i686/squid.service
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid.cron
  squid/repos/community-x86_64/squid.install
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.service

+
 /PKGBUILD  |  210 +++
 /squid.cron|   18 +++
 /squid.install |   52 +
 /squid.pam |8 +
 /squid.service |   26 
 community-i686/PKGBUILD|  105 ---
 community-i686/squid.cron  |9 -
 community-i686/squid.install   |   26 
 community-i686/squid.pam   |4 
 community-i686/squid.service   |   13 --
 community-x86_64/PKGBUILD  |  105 ---
 community-x86_64/squid.cron|9 -
 community-x86_64/squid.install |   26 
 community-x86_64/squid.pam |4 
 community-x86_64/squid.service |   13 --
 15 files changed, 314 insertions(+), 314 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:16:40 UTC (rev 97530)
+++ community-i686/PKGBUILD 2013-09-23 16:17:02 UTC (rev 97531)
@@ -1,105 +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.3.8
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'cron' 'perl' 'libltdl')
-makedepends=('libcap' 'krb5')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-'etc/squid/mime.conf')
-install=$pkgname.install
-source=(http://www.squid-cache.org/Versions/v3/3.3/$pkgname-$pkgver.tar.bz2;
-'squid.pam'
-'squid.cron'
-'squid.service')
-md5sums=('ec1654d28e29bdd2ee342ffb655ecc72'
- '270977cdd9b47ef44c0c427ab9034777'
- 'a71425c4951f2e5b640d19e6a5048531'
- 'ceeb57c69ebb165676219222f109a24e')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # gcc 4.6 doesn't support -fhuge-objects.
-  sed '/^HUGE_OBJECT_FLAG=/ s/-fhuge-objects//' -i configure
-
-  # fix cache_dir, cache_dir size, and effective group.
-  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
-  sed '/^#cache_dir/ s/100/256/
-   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
-
-  sed -i '1,1i#include errno.h' 
helpers/external_acl/file_userip/ext_file_userip_acl.cc
-
-  for i in \
-helpers/basic_auth/DB \
-helpers/log_daemon/DB \
-helpers/negotiate_auth/kerberos \
-helpers/external_acl/SQL_session; \
-  do
-  echo -e #!/bin/sh\nexit 0 $i/config.test
-  chmod 0755 $i/config.test
-  done
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-auth-basic \
---enable-auth-ntlm \
---enable-auth-digest \
---enable-auth-negotiate \
---enable-removal-policies=lru,heap \
---enable-storeio=aufs,ufs,diskd \
---enable-delay-pools \
---enable-arp-acl \
---enable-ssl \
---enable-snmp \
---enable-linux-netfilter \
---enable-ident-lookups \
---enable-useragent-log \
---enable-cache-digests \
---enable-referer-log \
---enable-arp-acl \
---enable-htcp \
---enable-carp \
---enable-epoll \

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:16:20
  Author: spupykin
Revision: 97528

upgpkg: spice-gtk3 0.21-1

upd

Modified:
  spice-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:16:04 UTC (rev 97527)
+++ PKGBUILD2013-09-23 16:16:20 UTC (rev 97528)
@@ -6,8 +6,8 @@
 # Contributor: Lucio Zara penn...@gmail.com
 
 pkgname=spice-gtk3
-pkgver=0.20
-pkgrel=2
+pkgver=0.21
+pkgrel=1
 pkgdesc=A Gtk client and libraries for SPICE remote desktop servers (gtk3 
version).
 arch=('x86_64' 'i686')
 url=http://spice-space.org;
@@ -18,6 +18,7 @@
 options=('!libtool')
 source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
 sha256sums=('b1355823b0ceb2e118c1f9a9a602ccab78e1e2edf2d93f71fa42d3bc85ca75df')
+sha256sums=('73d418ffa97d6cf5edb1920d46f1d51fc40d14a8d4edfab3be6041e25062c564')
 
 build() {
   cd $srcdir/spice-gtk-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 18:16:19
  Author: jgc
Revision: 194766

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-control-center/repos/gnome-unstable-i686/
  gnome-control-center/repos/gnome-unstable-i686/PKGBUILD
(from rev 194765, gnome-control-center/trunk/PKGBUILD)
  gnome-control-center/repos/gnome-unstable-i686/gnome-control-center.install
(from rev 194765, gnome-control-center/trunk/gnome-control-center.install)
  gnome-control-center/repos/gnome-unstable-i686/no-deprecated-upower.diff
(from rev 194765, gnome-control-center/trunk/no-deprecated-upower.diff)
  gnome-control-center/repos/gnome-unstable-x86_64/
  gnome-control-center/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194765, gnome-control-center/trunk/PKGBUILD)
  gnome-control-center/repos/gnome-unstable-x86_64/gnome-control-center.install
(from rev 194765, gnome-control-center/trunk/gnome-control-center.install)
  gnome-control-center/repos/gnome-unstable-x86_64/no-deprecated-upower.diff
(from rev 194765, gnome-control-center/trunk/no-deprecated-upower.diff)

+
 gnome-unstable-i686/PKGBUILD   |   48 +
 gnome-unstable-i686/gnome-control-center.install   |   11 +++
 gnome-unstable-i686/no-deprecated-upower.diff  |   69 +++
 gnome-unstable-x86_64/PKGBUILD |   48 +
 gnome-unstable-x86_64/gnome-control-center.install |   11 +++
 gnome-unstable-x86_64/no-deprecated-upower.diff|   69 +++
 6 files changed, 256 insertions(+)

Copied: gnome-control-center/repos/gnome-unstable-i686/PKGBUILD (from rev 
194765, gnome-control-center/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 16:16:19 UTC (rev 194766)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-control-center
+pkgver=3.9.92
+pkgrel=1
+pkgdesc=The Control Center for GNOME
+license=(GPL)
+arch=(i686 x86_64)
+depends=(accountsservice cups-pk-helper gnome-bluetooth gnome-desktop 
gnome-menus
+ gnome-online-accounts gnome-settings-daemon gsettings-desktop-schemas 
gtk3
+ libgtop network-manager-applet sound-theme-freedesktop upower 
libpwquality
+ gnome-color-manager smbclient modemmanager)
+makedepends=(gnome-doc-utils intltool docbook-xsl)
+optdepends=('system-config-printer: Printer settings'
+'gnome-user-share: Bluetooth and WebDAV file sharing'
+'rygel: media sharing'
+'vino: screen sharing'
+'openssh: remote login')
+groups=(gnome)
+url=http://www.gnome.org;
+install=gnome-control-center.install
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('77f477d80734f5dad5f7dd617737b1615c654df79f9fb0840e76383e00c00a61')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static --disable-silent-rules
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656229
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # Fix a warning
+  chown 102:0 $pkgdir/usr/share/polkit-1/rules.d
+  chmod 700 $pkgdir/usr/share/polkit-1/rules.d
+}

Copied: 
gnome-control-center/repos/gnome-unstable-i686/gnome-control-center.install 
(from rev 194765, gnome-control-center/trunk/gnome-control-center.install)
===
--- gnome-unstable-i686/gnome-control-center.install
(rev 0)
+++ gnome-unstable-i686/gnome-control-center.install2013-09-23 16:16:19 UTC 
(rev 194766)
@@ -0,0 +1,11 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+post_install $1
+}

Copied: 
gnome-control-center/repos/gnome-unstable-i686/no-deprecated-upower.diff (from 
rev 194765, gnome-control-center/trunk/no-deprecated-upower.diff)
===
--- gnome-unstable-i686/no-deprecated-upower.diff   
(rev 0)
+++ gnome-unstable-i686/no-deprecated-upower.diff   2013-09-23 16:16:19 UTC 
(rev 194766)
@@ -0,0 +1,69 @@
+diff --git c/panels/power/cc-power-panel.c i/panels/power/cc-power-panel.c
+index d70496a..af71db9 100644
+--- 

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:17:24
  Author: spupykin
Revision: 97533

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

Added:
  sysstat/repos/community-i686/PKGBUILD
(from rev 97532, sysstat/trunk/PKGBUILD)
  sysstat/repos/community-i686/lib64-fix.patch
(from rev 97532, sysstat/trunk/lib64-fix.patch)
  sysstat/repos/community-i686/sysstat.service
(from rev 97532, sysstat/trunk/sysstat.service)
  sysstat/repos/community-x86_64/PKGBUILD
(from rev 97532, sysstat/trunk/PKGBUILD)
  sysstat/repos/community-x86_64/lib64-fix.patch
(from rev 97532, sysstat/trunk/lib64-fix.patch)
  sysstat/repos/community-x86_64/sysstat.service
(from rev 97532, sysstat/trunk/sysstat.service)
Deleted:
  sysstat/repos/community-i686/PKGBUILD
  sysstat/repos/community-i686/lib64-fix.patch
  sysstat/repos/community-i686/sysstat.service
  sysstat/repos/community-x86_64/PKGBUILD
  sysstat/repos/community-x86_64/lib64-fix.patch
  sysstat/repos/community-x86_64/sysstat.service

--+
 /PKGBUILD|   98 +
 /lib64-fix.patch |   34 
 /sysstat.service |   22 
 community-i686/PKGBUILD  |   49 --
 community-i686/lib64-fix.patch   |   17 --
 community-i686/sysstat.service   |   11 
 community-x86_64/PKGBUILD|   49 --
 community-x86_64/lib64-fix.patch |   17 --
 community-x86_64/sysstat.service |   11 
 9 files changed, 154 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:17:07 UTC (rev 97532)
+++ community-i686/PKGBUILD 2013-09-23 16:17:24 UTC (rev 97533)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Martin Devera de...@cdi.cz
-
-pkgname=sysstat
-pkgver=10.1.6
-pkgrel=2
-pkgdesc=a collection of performance monitoring tools 
(iostat,isag,mpstat,pidstat,sadf,sar)
-arch=('i686' 'x86_64')
-url=http://pagesperso-orange.fr/sebastien.godard/;
-license=('GPL')
-depends=('lm_sensors')
-optdepends=('tk: to use isag'
-   'gnuplot: to use isag')
-options=(zipman)
-backup=('etc/conf.d/sysstat'
-   'etc/conf.d/sysstat.ioconf')
-source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
-   sysstat.service
-   lib64-fix.patch)
-md5sums=('909135c84e36d780d501274e7450f924'
- '12ba479c606620193e8b7c6e982d5088'
- '7ffa6bf990609d85367070f71b40a34b')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p1 $srcdir/lib64-fix.patch
-  autoreconf
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  conf_dir=/etc/conf.d ./configure --prefix=/usr \
-   --enable-yesterday \
-   --mandir=/usr/share/man \
-   --enable-install-isag \
-   --disable-man-group
-  make -j1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D -m 744 cron/sysstat.cron.hourly $pkgdir/etc/cron.hourly/sysstat
-  install -D -m 744 cron/sysstat.cron.daily $pkgdir/etc/cron.daily/sysstat
-  chown -R root:root $pkgdir
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  mv $pkgdir/usr/bin/nfsiostat $pkgdir/usr/bin/$pkgname-nfsiostat
-}

Copied: sysstat/repos/community-i686/PKGBUILD (from rev 97532, 
sysstat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:17:24 UTC (rev 97533)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Martin Devera de...@cdi.cz
+
+pkgname=sysstat
+pkgver=10.1.7
+pkgrel=1
+pkgdesc=a collection of performance monitoring tools 
(iostat,isag,mpstat,pidstat,sadf,sar)
+arch=('i686' 'x86_64')
+url=http://pagesperso-orange.fr/sebastien.godard/;
+license=('GPL')
+depends=('lm_sensors')
+optdepends=('tk: to use isag'
+   'gnuplot: to use isag')
+options=(zipman)
+backup=('etc/conf.d/sysstat'
+   'etc/conf.d/sysstat.ioconf')
+source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
+   sysstat.service
+   lib64-fix.patch)
+md5sums=('112c8cc92114c961709d09f6afa537bd'
+ '12ba479c606620193e8b7c6e982d5088'
+ '7ffa6bf990609d85367070f71b40a34b')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 $srcdir/lib64-fix.patch
+  autoreconf
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  conf_dir=/etc/conf.d ./configure --prefix=/usr \
+   --enable-yesterday \
+   --mandir=/usr/share/man \
+   --enable-install-isag \
+   --disable-man-group
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m 744 cron/sysstat.cron.hourly $pkgdir/etc/cron.hourly/sysstat
+  install -D -m 744 cron/sysstat.cron.daily 

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:17:07
  Author: spupykin
Revision: 97532

upgpkg: sysstat 10.1.7-1

upd

Modified:
  sysstat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:17:02 UTC (rev 97531)
+++ PKGBUILD2013-09-23 16:17:07 UTC (rev 97532)
@@ -3,8 +3,8 @@
 # Contributor: Martin Devera de...@cdi.cz
 
 pkgname=sysstat
-pkgver=10.1.6
-pkgrel=2
+pkgver=10.1.7
+pkgrel=1
 pkgdesc=a collection of performance monitoring tools 
(iostat,isag,mpstat,pidstat,sadf,sar)
 arch=('i686' 'x86_64')
 url=http://pagesperso-orange.fr/sebastien.godard/;
@@ -18,7 +18,7 @@
 source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
sysstat.service
lib64-fix.patch)
-md5sums=('909135c84e36d780d501274e7450f924'
+md5sums=('112c8cc92114c961709d09f6afa537bd'
  '12ba479c606620193e8b7c6e982d5088'
  '7ffa6bf990609d85367070f71b40a34b')
 



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:17:29
  Author: spupykin
Revision: 97534

upgpkg: xboard 4.7.2-1

upd

Modified:
  xboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:17:24 UTC (rev 97533)
+++ PKGBUILD2013-09-23 16:17:29 UTC (rev 97534)
@@ -4,8 +4,8 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=xboard
-pkgver=4.7.1
-pkgrel=3
+pkgver=4.7.2
+pkgrel=1
 pkgdesc=Graphical user interfaces for chess
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/xboard/;
@@ -17,7 +17,7 @@
 optdepends=('perl')
 install=${pkgname}.install
 source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('e42383c4594c24ebf2f9fdc5dc89e255')
+md5sums=('83ec086cbf5c4bc362a188654a9332fc')
 
 build() {
   cd ${srcdir}



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:17:42
  Author: spupykin
Revision: 97535

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

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

-+
 /PKGBUILD   |   90 ++
 /xboard.install |   30 
 community-i686/PKGBUILD |   45 ---
 community-i686/xboard.install   |   15 --
 community-x86_64/PKGBUILD   |   45 ---
 community-x86_64/xboard.install |   15 --
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:17:29 UTC (rev 97534)
+++ community-i686/PKGBUILD 2013-09-23 16:17:42 UTC (rev 97535)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jason Chu ja...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=xboard
-pkgver=4.7.1
-pkgrel=3
-pkgdesc=Graphical user interfaces for chess
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/xboard/;
-license=('GPL3')
-depends=('gnuchess' 'texinfo' 'xdg-utils'
-'xorg-fonts-75dpi' 'xorg-fonts-100dpi'
-'gtk2' 'cairo' 'librsvg')
-makedepends=('gendesk')
-optdepends=('perl')
-install=${pkgname}.install
-source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('e42383c4594c24ebf2f9fdc5dc89e255')
-
-build() {
-  cd ${srcdir}
-  gendesk $startdir/PKGBUILD
-
-  cd ${pkgname}-${pkgver}
-  sed -i 's/fairymax/gnuchess/g' {xaw,gtk}/xboard.h xboard.conf.in
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc \
---with-gtk
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 ${srcdir}/${pkgname}.png \
-${pkgdir}/usr/share/pixmaps/${pkgname}.png
-  install -Dm755 ${srcdir}/${pkgname}-${pkgver}/cmail \
-${pkgdir}/usr/bin/cmail
-}

Copied: xboard/repos/community-i686/PKGBUILD (from rev 97534, 
xboard/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:17:42 UTC (rev 97535)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Jason Chu ja...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=xboard
+pkgver=4.7.2
+pkgrel=1
+pkgdesc=Graphical user interfaces for chess
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/xboard/;
+license=('GPL3')
+depends=('gnuchess' 'texinfo' 'xdg-utils'
+'xorg-fonts-75dpi' 'xorg-fonts-100dpi'
+'gtk2' 'cairo' 'librsvg')
+makedepends=('gendesk')
+optdepends=('perl')
+install=${pkgname}.install
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('83ec086cbf5c4bc362a188654a9332fc')
+
+build() {
+  cd ${srcdir}
+  gendesk $startdir/PKGBUILD
+
+  cd ${pkgname}-${pkgver}
+  sed -i 's/fairymax/gnuchess/g' {xaw,gtk}/xboard.h xboard.conf.in
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--with-gtk
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/${pkgname}.png \
+${pkgdir}/usr/share/pixmaps/${pkgname}.png
+  install -Dm755 ${srcdir}/${pkgname}-${pkgver}/cmail \
+${pkgdir}/usr/bin/cmail
+}

Deleted: community-i686/xboard.install
===
--- community-i686/xboard.install   2013-09-23 16:17:29 UTC (rev 97534)
+++ community-i686/xboard.install   2013-09-23 16:17:42 UTC (rev 97535)
@@ -1,15 +0,0 @@
-post_install() {
-  install-info usr/share/info/xboard.info.gz usr/share/info/dir 2/dev/null
-  xdg-icon-resource forceupdate --theme hicolor /dev/null
-  true
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  install-info --delete usr/share/info/xboard.info.gz usr/share/info/dir 
2/dev/null
-  xdg-icon-resource forceupdate --theme hicolor /dev/null
-  true
-}

Copied: xboard/repos/community-i686/xboard.install (from rev 97534, 
xboard/trunk/xboard.install)
===
--- community-i686/xboard.install   (rev 0)
+++ 

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:13:52
  Author: spupykin
Revision: 97517

upgpkg: gloox 1.0.6-1

upd

Modified:
  gloox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:13:48 UTC (rev 97516)
+++ PKGBUILD2013-09-23 16:13:52 UTC (rev 97517)
@@ -3,7 +3,7 @@
 # Maintainer: William Rea sillywi...@gmail.com
 
 pkgname=gloox
-pkgver=1.0.2
+pkgver=1.0.6
 pkgrel=1
 pkgdesc=C++ libraries for development of Jabber client/component/server
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=(GPL)
 depends=('libidn' 'gnutls')
 source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
-md5sums=('4c446ee186406c3b3a24402418127faa')
+md5sums=('80ba7fa1220913a9f67bf6f3183aafbd')
 
 build() {
   cd $srcdir/gloox-$pkgver



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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:15:04
  Author: spupykin
Revision: 97523

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

Added:
  qcad/repos/community-i686/PKGBUILD
(from rev 97522, qcad/trunk/PKGBUILD)
  qcad/repos/community-i686/QCad.desktop
(from rev 97522, qcad/trunk/QCad.desktop)
  qcad/repos/community-x86_64/PKGBUILD
(from rev 97522, qcad/trunk/PKGBUILD)
  qcad/repos/community-x86_64/QCad.desktop
(from rev 97522, qcad/trunk/QCad.desktop)
Deleted:
  qcad/repos/community-i686/PKGBUILD
  qcad/repos/community-i686/QCad.desktop
  qcad/repos/community-x86_64/PKGBUILD
  qcad/repos/community-x86_64/QCad.desktop

---+
 /PKGBUILD |  140 
 /QCad.desktop |   18 +
 community-i686/PKGBUILD   |   69 ---
 community-i686/QCad.desktop   |9 --
 community-x86_64/PKGBUILD |   69 ---
 community-x86_64/QCad.desktop |9 --
 6 files changed, 158 insertions(+), 156 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:14:45 UTC (rev 97522)
+++ community-i686/PKGBUILD 2013-09-23 16:15:04 UTC (rev 97523)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-# Contributor: Giovanni Scafora linuxma...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=qcad
-pkgver=3.2.2.2
-pkgrel=1
-pkgdesc=A 2D CAD package based upon Qt
-arch=('i686' 'x86_64')
-url=http://www.ribbonsoft.com/qcad.html;
-license=('GPL3')
-depends=('qtwebkit')
-makedepends=('glu')
-options=(libtool)
-source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
-QCad.desktop)
-md5sums=('49c05861b309c48f04ed7910b496e48c'
- '35100eaedbdf6625f6e6a09b177854cd')
-
-prepare() {
-  cd ${srcdir}/qcad-$pkgver
-  sed -i '1,1i#include unistd.h' src/core/{RLocalPeer,RS}.cpp
-  sed -i '1,1i#include sys/sysinfo.h' src/core/{RScriptHandler,RS}.cpp
-  (cd src/3rdparty 
-cp -a qt-labs-qtscriptgenerator-4.8.4 qt-labs-qtscriptgenerator-4.8.5)
-  (cd src/3rdparty/qt-labs-qtscriptgenerator-4.8.5 
-mv qt-labs-qtscriptgenerator-4.8.4.pro qt-labs-qtscriptgenerator-4.8.5.pro)
-}
-
-build() {
-  cd ${srcdir}/qcad-$pkgver
-  qmake-qt4 -r
-  make all -j1
-}
-
-package() {
-  cd ${srcdir}/qcad-$pkgver
-
-  # remove project files
-  find . \( -name '*.pri' -or -name '.pro' -or -name '*.ts' \) -delete
-  find . \( -name 'Makefile' -name '.gitignore' \) -delete
-
-  install -dm755 ${pkgdir}/usr/share/{qcad,pixmaps,applications}
-  cp -r examples fonts libraries patterns plugins scripts ts 
${pkgdir}/usr/share/qcad
-  cp debug/* ${pkgdir}/usr/share/qcad
-
-  install -m755 readme.txt ${pkgdir}/usr/share/qcad/readme.txt
-
-  # qtwebkit
-  ln -sf /usr/lib/qt4/plugins/designer/libqwebview.so 
${pkgdir}/usr/share/qcad/plugins/designer/libqwebview.so
-  # qt
-  for sofiles in /usr/lib/qt4/plugins/imageformats/*.so
-  do
-ln -sf ${sofiles} 
${pkgdir}/usr/share/qcad/plugins/imageformats/${sofiles##/*/}
-  done
-  for sofiles in /usr/lib/qt4/plugins/sqldrivers/*.so
-  do
-ln -sf ${sofiles} 
${pkgdir}/usr/share/qcad/plugins/sqldrivers/${sofiles##/*/}
-  done
-
-  install -Dm644 scripts/qcad_icon.png 
${pkgdir}/usr/share/pixmaps/qcad_icon.png
-  install -Dm644 $srcdir/QCad.desktop 
${pkgdir}/usr/share/applications/QCad.desktop
-
-  install -dm0755 $pkgdir/usr/bin
-  echo -e '#!/bin/sh\ncd 
/usr/share/qcad\nLD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH exec ./qcad-bin' 
$pkgdir/usr/bin/qcad
-  chmod 0755 $pkgdir/usr/bin/qcad
-}

Copied: qcad/repos/community-i686/PKGBUILD (from rev 97522, qcad/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-23 16:15:04 UTC (rev 97523)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Giovanni Scafora linuxma...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=qcad
+pkgver=3.3.1.0
+pkgrel=1
+pkgdesc=A 2D CAD package based upon Qt
+arch=('i686' 'x86_64')
+url=http://www.ribbonsoft.com/qcad.html;
+license=('GPL3')
+depends=('qtwebkit')
+makedepends=('glu')
+options=(libtool)
+source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
+QCad.desktop)
+md5sums=('e6e469482b40515980c416e61482abc2'
+ '35100eaedbdf6625f6e6a09b177854cd')
+
+prepare() {
+  cd ${srcdir}/qcad-$pkgver
+  sed -i '1,1i#include unistd.h' src/core/{RLocalPeer,RS}.cpp
+  sed -i '1,1i#include sys/sysinfo.h' src/core/{RScriptHandler,RS}.cpp
+  (cd src/3rdparty 
+cp -a qt-labs-qtscriptgenerator-4.8.4 qt-labs-qtscriptgenerator-4.8.5)
+  

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 17:45:59
  Author: jgc
Revision: 194764

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-session/repos/gnome-unstable-i686/
  gnome-session/repos/gnome-unstable-i686/PKGBUILD
(from rev 194763, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/gnome-unstable-i686/gnome-session.install
(from rev 194763, gnome-session/trunk/gnome-session.install)
  gnome-session/repos/gnome-unstable-i686/timeout.patch
(from rev 194763, gnome-session/trunk/timeout.patch)
  gnome-session/repos/gnome-unstable-x86_64/
  gnome-session/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194763, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/gnome-unstable-x86_64/gnome-session.install
(from rev 194763, gnome-session/trunk/gnome-session.install)
  gnome-session/repos/gnome-unstable-x86_64/timeout.patch
(from rev 194763, gnome-session/trunk/timeout.patch)

-+
 gnome-unstable-i686/PKGBUILD|   39 ++
 gnome-unstable-i686/gnome-session.install   |   12 
 gnome-unstable-i686/timeout.patch   |   24 
 gnome-unstable-x86_64/PKGBUILD  |   39 ++
 gnome-unstable-x86_64/gnome-session.install |   12 
 gnome-unstable-x86_64/timeout.patch |   24 
 6 files changed, 150 insertions(+)

Copied: gnome-session/repos/gnome-unstable-i686/PKGBUILD (from rev 194763, 
gnome-session/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 15:45:59 UTC (rev 194764)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=gnome-session
+pkgver=3.9.92
+pkgrel=1
+pkgdesc=The GNOME Session Handler
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gconf gsettings-desktop-schemas gtk3 gnome-desktop
+ hicolor-icon-theme json-glib libgl libsm libxtst upower)
+makedepends=(intltool mesa gtk-doc xtrans)
+options=('!emptydirs')
+install=gnome-session.install
+url=http://www.gnome.org;
+groups=(gnome)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
+timeout.patch)
+sha256sums=('49cc0d455768eb823e2482bf0b4064e11017ecb270d1beb24f937385a6111cc9'
+'9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+}
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
+  --disable-schemas-compile --enable-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gnome-session/repos/gnome-unstable-i686/gnome-session.install (from rev 
194763, gnome-session/trunk/gnome-session.install)
===
--- gnome-unstable-i686/gnome-session.install   (rev 0)
+++ gnome-unstable-i686/gnome-session.install   2013-09-23 15:45:59 UTC (rev 
194764)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-session/repos/gnome-unstable-i686/timeout.patch (from rev 194763, 
gnome-session/trunk/timeout.patch)
===
--- gnome-unstable-i686/timeout.patch   (rev 0)
+++ gnome-unstable-i686/timeout.patch   2013-09-23 15:45:59 UTC (rev 194764)
@@ -0,0 +1,24 @@
+diff -u -r gnome-session-3.4.2/gnome-session/gsm-session-fill.c 
gnome-session-3.4.2-timeout/gnome-session/gsm-session-fill.c
+--- gnome-session-3.4.2/gnome-session/gsm-session-fill.c   2012-02-02 
15:33:01.0 +0100
 gnome-session-3.4.2-timeout/gnome-session/gsm-session-fill.c   
2012-06-10 02:39:46.184348462 +0200
+@@ -36,7 +36,7 @@
+ #define GSM_KEYFILE_DEFAULT_PROVIDER_PREFIX DefaultProvider
+ 
+ /* See https://bugzilla.gnome.org/show_bug.cgi?id=641992 for discussion */
+-#define GSM_RUNNABLE_HELPER_TIMEOUT 3000 /* ms */
++#define GSM_RUNNABLE_HELPER_TIMEOUT 1 /* ms */
+ 
+ typedef void (*GsmFillHandleProvider) (const char *provides,
+const char *default_provider,
+diff -u -r gnome-session-3.4.2/tools/gnome-session-check-accelerated.c 
gnome-session-3.4.2-timeout/tools/gnome-session-check-accelerated.c
+--- gnome-session-3.4.2/tools/gnome-session-check-accelerated.c
2011-03-22 21:31:43.0 +0100
 gnome-session-3.4.2-timeout/tools/gnome-session-check-accelerated.c
2012-06-10 02:42:08.013218006 +0200

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

2013-09-23 Thread Sergej Pupykin
Date: Monday, September 23, 2013 @ 18:16:04
  Author: spupykin
Revision: 97527

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

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 97526, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 97526, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 97526, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 97526, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 97526, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 97526, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 97526, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 97526, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-i686/PKGBUILD
  sdlmame/repos/community-i686/extras.tar.gz
  sdlmame/repos/community-i686/sdlmame.install
  sdlmame/repos/community-i686/sdlmame.sh
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

--+
 /PKGBUILD|  174 +
 /sdlmame.install |   16 +++
 /sdlmame.sh  |  116 
 community-i686/PKGBUILD  |   88 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   58 
 community-x86_64/PKGBUILD|   88 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   58 
 9 files changed, 306 insertions(+), 308 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-23 16:15:42 UTC (rev 97526)
+++ community-i686/PKGBUILD 2013-09-23 16:16:04 UTC (rev 97527)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: robb_force robb_fo...@holybuffalo.net
-# Maintainer: JJDaNiMoTh jjdanim...@gmail.com
-
-pkgname=sdlmame
-pkgver=0.149.u1
-_patchlevel=`echo $pkgver | cut -f2 -du`
-_basever=`echo $pkgver | cut -f1,2 -d.`
-pkgrel=1
-pkgdesc=A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support.
-url=http://mamedev.org/;
-license=('custom:MAME License')
-arch=('i686' 'x86_64')
-depends=('sdl=1.2.11' 'libxinerama' 'sdl_ttf' 'alsa-lib' 'qt4')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-DLAGENTS=('http::/usr/bin/wget -U Mozilla/5.0 (X11; U; Linux x86_64; en-US; 
rv:1.9.1.2) Gecko/20090804 Shiretoko/3.5.2 -c -t 3 --waitretry=3 -O %o %u')
-install=sdlmame.install
-
-for i in `seq 1 ${_patchlevel}`; do
-   _patches=${_patches} 
sdlmame-${_basever/./}u${i}_diff.zip::http://mamedev.org/updates/${_basever/./}u${i}_diff.zip;
-done
-
-source=(mame${_basever/./}s.zip::http://mamedev.org/downloader.php?file=releases/mame${_basever/./}s.zip;
-   sdlmame.sh
-   extras.tar.gz
-   ${_patches})
-md5sums=('0be44260fd75f5cbe40c4bf8d26867fb'
- 'e11a7d26704a9e2cff223b9b867d6a05'
- '420b61240bf5ae11615ba7c6100ee00d'
- '166d77d930d9a4d129c145bb11b13628')
-
-build() {
-  cd $srcdir/
-  if [ $NOEXTRACT -eq 0 ]; then
-unzip mame.zip
-find . -type f -not -name \*.png | xargs perl -pi -e 's/\r\n?/\n/g'
-for i in `seq 1 ${_patchlevel}`; do
-  msg Patch#$i
-  patch -p0 -E ${_basever/./}u$i.diff
-done
-  fi
-  make NOWERROR=1 OPTIMIZE=2 PYTHON=python2
-  make tools NOWERROR=1 OPTIMIZE=2 PYTHON=python2
-}
-
-package() {
-  cd $srcdir/
-  # Install the sdlmame script
-  install -Dm755 $srcdir/${pkgname}.sh $pkgdir/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame $pkgdir/usr/share/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 $pkgdir/usr/share/${pkgname}/${pkgname}
-
-  install -m755 chdman $pkgdir/usr/share/${pkgname}/chdman
-  install -m755 jedutil $pkgdir/usr/share/${pkgname}/jedutil
-  install -m755 regrep $pkgdir/usr/share/${pkgname}/regrep
-  install -m755 romcmp $pkgdir/usr/share/${pkgname}/romcmp
-  install -m755 testkeys $pkgdir/usr/share/${pkgname}/testkeys
-  install -m755 src2html $pkgdir/usr/share/${pkgname}/src2html
-  install -m755 srcclean $pkgdir/usr/share/${pkgname}/srcclean
-  install -m755 ldverify $pkgdir/usr/share/${pkgname}/ldverify
-  install -m755 ldresample $pkgdir/usr/share/${pkgname}/ldresample
-
-  # Install the extra bits
-  install -d $pkgdir/usr/share/${pkgname}/{artwork,ctrlr,keymaps,shader}
-  install -d $pkgdir/usr/share/man/man1
-  install -d $pkgdir/usr/share/man/man6
-  install -m644 src/osd/sdl/shader/glsl*.*h 
$pkgdir/usr/share/${pkgname}/shader/
-  install -m644 src/osd/sdl/man/*.1* 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 17:45:52
  Author: jgc
Revision: 194763

upgpkg: gnome-session 3.9.92-1

Modified:
  gnome-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 15:21:17 UTC (rev 194762)
+++ PKGBUILD2013-09-23 15:45:52 UTC (rev 194763)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=gnome-session
-pkgver=3.8.4
+pkgver=3.9.92
 pkgrel=1
 pkgdesc=The GNOME Session Handler
 arch=(i686 x86_64)
@@ -16,15 +16,17 @@
 groups=(gnome)
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
 timeout.patch)
-sha256sums=('e6ccc71563d9e36d166ebb8a1e9fc962ff31605d5800af411d3b8df494f03ec1'
+sha256sums=('49cc0d455768eb823e2482bf0b4064e11017ecb270d1beb24f937385a6111cc9'
 '9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
 
-build() {
+prepare() {
   cd $pkgname-$pkgver
 
   # Increase timeout, for slow machines
   patch -Np1 -i ../timeout.patch
-
+}
+build() {
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
   --disable-schemas-compile --enable-systemd



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 18:19:39
  Author: jgc
Revision: 194767

Add mutter-wayland

Added:
  mutter-wayland/
Deleted:
  mutter-wayland/repos/



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

2013-09-23 Thread Eric Bélanger
Date: Monday, September 23, 2013 @ 18:47:09
  Author: eric
Revision: 194774

archrelease: copy trunk to testing-any

Added:
  flickrnet/repos/testing-any/
  flickrnet/repos/testing-any/PKGBUILD
(from rev 194773, flickrnet/trunk/PKGBUILD)
  flickrnet/repos/testing-any/flickrnet.pc
(from rev 194773, flickrnet/trunk/flickrnet.pc)

--+
 PKGBUILD |   36 
 flickrnet.pc |7 +++
 2 files changed, 43 insertions(+)

Copied: flickrnet/repos/testing-any/PKGBUILD (from rev 194773, 
flickrnet/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-09-23 16:47:09 UTC (rev 194774)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: György Balló ball...@freestart.hu
+pkgname=flickrnet
+pkgver=3.7.0.0
+_pkgver=103861
+pkgrel=1
+pkgdesc=Flickr.Net API Library
+arch=('any')
+url=http://www.codeplex.com/FlickrNet;
+license=('LGPL')
+depends=('mono')
+makedepends=('unzip')
+source=($pkgname-$pkgver.zip::http://download.codeplex.com/Project/Download/SourceControlFileDownload.ashx?ProjectName=FlickrNetchangeSetId=$_pkgver;
+$pkgname.pc)
+md5sums=('88ee60f43e5e67fc57302ea5faf867eb'
+ '131dd6e01f99c0533e9367b5cfda3a13')
+
+prepare() {
+  cd $srcdir/FlickrNet
+
+  sed -i s/@VERSION@/$pkgver/ $srcdir/$pkgname.pc
+}
+
+build() {
+  cd $srcdir/FlickrNet
+
+  xbuild  /property:Configuration=Release FlickrNet.csproj
+}
+
+package() {
+  cd $srcdir/FlickrNet
+
+  gacutil -i bin/Release/FlickrNet.dll -package $pkgname-$pkgver -root 
$pkgdir/usr/lib/
+  install -Dm644 $srcdir/$pkgname.pc $pkgdir/usr/lib/pkgconfig/$pkgname.pc
+}

Copied: flickrnet/repos/testing-any/flickrnet.pc (from rev 194773, 
flickrnet/trunk/flickrnet.pc)
===
--- testing-any/flickrnet.pc(rev 0)
+++ testing-any/flickrnet.pc2013-09-23 16:47:09 UTC (rev 194774)
@@ -0,0 +1,7 @@
+prefix=/usr
+libdir=${prefix}/lib
+
+Name: flickrnet
+Description: Flickr.Net API Library
+Version: @VERSION@
+Libs: -r:${libdir}/mono/flickrnet-@VERSION@/FlickrNet.dll



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 18:58:17
  Author: heftig
Revision: 194776

3.10.0

Modified:
  evolution-ews/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:58:14 UTC (rev 194775)
+++ PKGBUILD2013-09-23 16:58:17 UTC (rev 194776)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=evolution-ews
-pkgver=3.8.5
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=MS Exchange integration through Exchange Web Services
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'evolution')
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('74a0fdcc698797902ca107f3523e3d3b3e51b8ba01709d308b47ed31e99de877')
+sha256sums=('689ad1908d750a6004ee7ce997543a1b5481849aafeb923edebe3f766efa4b46')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 18:58:14
  Author: heftig
Revision: 194775

3.10.0

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:47:09 UTC (rev 194774)
+++ PKGBUILD2013-09-23 16:58:14 UTC (rev 194775)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=evolution
-pkgver=3.8.5
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=Manage your email, contacts and schedule
 arch=(i686 x86_64)
@@ -18,8 +18,8 @@
 options=('!libtool' '!emptydirs')
 install=evolution.install
 url=http://www.gnome.org/projects/evolution/
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('26ef047425826a7672f0db7f3d4eef908e68bae47a9e0756883079c445e4326d')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e64fabc07e1126b80ef8354411d8232aee6e45cfece040a99d494d77df040064')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:00:10
  Author: heftig
Revision: 194777

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  cogl/repos/gnome-unstable-i686/PKGBUILD
(from rev 194776, cogl/trunk/PKGBUILD)
  cogl/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194776, cogl/trunk/PKGBUILD)
Deleted:
  cogl/repos/gnome-unstable-i686/PKGBUILD
  cogl/repos/gnome-unstable-i686/git-fixes.patch
  cogl/repos/gnome-unstable-x86_64/PKGBUILD
  cogl/repos/gnome-unstable-x86_64/git-fixes.patch

---+
 /PKGBUILD |   70 +
 gnome-unstable-i686/PKGBUILD  |   33 
 gnome-unstable-i686/git-fixes.patch   | 1948 
 gnome-unstable-x86_64/PKGBUILD|   33 
 gnome-unstable-x86_64/git-fixes.patch | 1948 
 5 files changed, 70 insertions(+), 3962 deletions(-)

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


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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 18:30:28
  Author: jgc
Revision: 194770

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

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

---+
 gnome-unstable-i686/PKGBUILD  |   49 
 gnome-unstable-i686/gnome-shell.install   |   19 ++
 gnome-unstable-i686/nm-libexecdir.patch   |   12 ++
 gnome-unstable-x86_64/PKGBUILD|   49 
 gnome-unstable-x86_64/gnome-shell.install |   19 ++
 gnome-unstable-x86_64/nm-libexecdir.patch |   12 ++
 6 files changed, 160 insertions(+)

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

Copied: gnome-shell/repos/gnome-unstable-i686/gnome-shell.install (from rev 
194769, gnome-shell/trunk/gnome-shell.install)
===
--- gnome-unstable-i686/gnome-shell.install (rev 0)
+++ gnome-unstable-i686/gnome-shell.install 2013-09-23 16:30:28 UTC (rev 
194770)
@@ -0,0 +1,19 @@
+pkgname=gnome-shell
+
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+pre_upgrade() {
+if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
+gconfpkg --uninstall $pkgname
+fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-shell/repos/gnome-unstable-i686/nm-libexecdir.patch (from rev 
194769, gnome-shell/trunk/nm-libexecdir.patch)
===
--- gnome-unstable-i686/nm-libexecdir.patch (rev 0)
+++ gnome-unstable-i686/nm-libexecdir.patch 2013-09-23 16:30:28 UTC (rev 
194770)
@@ -0,0 +1,12 @@
+diff -u -Nr gnome-shell-3.6.3.1/js/ui/components/networkAgent.js 
gnome-shell-3.6.3.1-nmlibexecdir/js/ui/components/networkAgent.js
+--- gnome-shell-3.6.3.1/js/ui/components/networkAgent.js   2013-02-20 
20:31:03.0 +0100
 gnome-shell-3.6.3.1-nmlibexecdir/js/ui/components/networkAgent.js  
2013-03-10 17:13:46.120907065 +0100
+@@ -686,7 +686,7 @@
+ } catch(e) { } // ignore errors if key does not exist
+ let path = binary;
+ if (!GLib.path_is_absolute(path)) 

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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 18:30:20
  Author: jgc
Revision: 194769

upgpkg: gnome-shell 3.9.92-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:22:04 UTC (rev 194768)
+++ PKGBUILD2013-09-23 16:30:20 UTC (rev 194769)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab panosfi...@gmail.com
 
 pkgname=gnome-shell
-pkgver=3.8.4
+pkgver=3.9.92
 pkgrel=1
 pkgdesc=The next generation GNOME Shell
 arch=(i686 x86_64)
@@ -20,7 +20,7 @@
 groups=(gnome)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
 nm-libexecdir.patch)
-sha256sums=('547e571c67b1436a32715b016ee63c666afcafed9c5a2f76dc4ad3bcaebffa47'
+sha256sums=('7c33c93226f74689a7d4b57dd2323ced11ba1ae86419b9d60847068959ea2c04'
 'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
 
 prepare() {



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 19:08:01
  Author: jgc
Revision: 194783

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  geocode-glib/repos/gnome-unstable-i686/PKGBUILD
(from rev 194782, geocode-glib/trunk/PKGBUILD)
  geocode-glib/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194782, geocode-glib/trunk/PKGBUILD)
Deleted:
  geocode-glib/repos/gnome-unstable-i686/PKGBUILD
  geocode-glib/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   52 +++
 gnome-unstable-i686/PKGBUILD   |   26 ---
 gnome-unstable-x86_64/PKGBUILD |   26 ---
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-09-23 17:07:54 UTC (rev 194782)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 17:08:01 UTC (rev 194783)
@@ -1,26 +0,0 @@
-#Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=geocode-glib
-pkgver=0.99.4
-pkgrel=1
-pkgdesc=Geocode Helper library
-arch=(i686 x86_64)
-license=('GPL')
-url=https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ba51f44014b51e09d598b48396465cb60775ffe9f947e2ee8becbf688dc322c9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}
-

Copied: geocode-glib/repos/gnome-unstable-i686/PKGBUILD (from rev 194782, 
geocode-glib/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 17:08:01 UTC (rev 194783)
@@ -0,0 +1,26 @@
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=geocode-glib
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=Geocode Helper library
+arch=(i686 x86_64)
+license=('GPL')
+url=https://git.gnome.org/browse/geocode-glib/;
+depends=('glib2' 'json-glib' 'libsoup')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('0aedc198cf8a9b934a290d50aadaf4b48bb13c3b4783618c6753eb466cdaa637')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:07:54 UTC (rev 194782)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:08:01 UTC (rev 194783)
@@ -1,26 +0,0 @@
-#Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=geocode-glib
-pkgver=0.99.4
-pkgrel=1
-pkgdesc=Geocode Helper library
-arch=(i686 x86_64)
-license=('GPL')
-url=https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ba51f44014b51e09d598b48396465cb60775ffe9f947e2ee8becbf688dc322c9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}
-

Copied: geocode-glib/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194782, 
geocode-glib/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:08:01 UTC (rev 194783)
@@ -0,0 +1,26 @@
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=geocode-glib
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=Geocode Helper library
+arch=(i686 x86_64)
+license=('GPL')
+url=https://git.gnome.org/browse/geocode-glib/;
+depends=('glib2' 'json-glib' 'libsoup')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('0aedc198cf8a9b934a290d50aadaf4b48bb13c3b4783618c6753eb466cdaa637')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 19:03:53
  Author: jgc
Revision: 194779

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gdm/repos/gnome-unstable-i686/
  gdm/repos/gnome-unstable-i686/PKGBUILD
(from rev 194778, gdm/trunk/PKGBUILD)
  gdm/repos/gnome-unstable-i686/arch-pam.patch
(from rev 194778, gdm/trunk/arch-pam.patch)
  gdm/repos/gnome-unstable-i686/fix_external_program_directories.patch
(from rev 194778, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/gnome-unstable-i686/gdm.install
(from rev 194778, gdm/trunk/gdm.install)
  gdm/repos/gnome-unstable-x86_64/
  gdm/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194778, gdm/trunk/PKGBUILD)
  gdm/repos/gnome-unstable-x86_64/arch-pam.patch
(from rev 194778, gdm/trunk/arch-pam.patch)
  gdm/repos/gnome-unstable-x86_64/fix_external_program_directories.patch
(from rev 194778, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/gnome-unstable-x86_64/gdm.install
(from rev 194778, gdm/trunk/gdm.install)

--+
 gnome-unstable-i686/PKGBUILD |   84 
 gnome-unstable-i686/arch-pam.patch   |  179 ++
 gnome-unstable-i686/fix_external_program_directories.patch   |   12 
 gnome-unstable-i686/gdm.install  |   31 +
 gnome-unstable-x86_64/PKGBUILD   |   84 
 gnome-unstable-x86_64/arch-pam.patch |  179 ++
 gnome-unstable-x86_64/fix_external_program_directories.patch |   12 
 gnome-unstable-x86_64/gdm.install|   31 +
 8 files changed, 612 insertions(+)

Copied: gdm/repos/gnome-unstable-i686/PKGBUILD (from rev 194778, 
gdm/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 17:03:53 UTC (rev 194779)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=gdm
+pkgname=(gdm libgdm)
+pkgver=3.9.92
+pkgrel=1
+pkgdesc=Gnome Display Manager
+arch=(i686 x86_64)
+license=(GPL)
+url=http://www.gnome.org;
+options=('!libtool')
+depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server xorg-xhost)
+makedepends=(itstool intltool yelp-tools gobject-introspection)
+checkdepends=('check')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz
+fix_external_program_directories.patch arch-pam.patch)
+sha256sums=('ba9035a943f58ca3c9e14c5a3891642a8725f244765d53599b73d5fccdc4d9d8'
+'a878680734e35c1d66252cbcfe678c3961b5ff0fa16302f8796a5e7e65ffe4a2'
+'b5c225784c3107564cb9685e41dfecdb20b8ea2415905c4119c96748c4e68003')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../fix_external_program_directories.patch
+  patch -Np1 -i ../arch-pam.patch
+  AUTOPOINT='intltoolize --automake -c' autoreconf -fi
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/gdm \
+--localstatedir=/var \
+--disable-static \
+--disable-schemas-compile \
+--with-at-spi-registryd-directory=/usr/lib/at-spi2-core \
+--with-check-accelerated-directory=/usr/lib/gnome-session \
+--with-authentication-agent-directory=/usr/lib/polkit-gnome \
+--without-tcp-wrappers \
+--without-console-kit \
+--with-systemd \
+--with-default-pam-config=arch
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+
+  make -j1
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  make check
+}
+
+package_gdm() {
+  depends+=(libgdm)
+  optdepends=('fprintd: fingerprint authentication')
+  backup=(etc/pam.d/gdm-autologin etc/pam.d/gdm-fingerprint 
etc/pam.d/gdm-launch-environment
+  etc/pam.d/gdm-password etc/pam.d/gdm-smartcard etc/gdm/custom.conf
+  etc/gdm/Xsession
+  etc/gdm/PostSession/Default etc/gdm/PreSession/Default)
+  groups=(gnome)
+  install=gdm.install
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=$pkgdir install
+
+  chmod 711 $pkgdir/var/log/gdm
+  rm -r $pkgdir/var/run
+
+### Split libgdm
+  make -C gui/libgdm DESTDIR=$pkgdir uninstall
+}
+
+package_libgdm() {
+  pkgdesc=GDM support library
+  depends=(systemd)
+
+  cd $pkgbase-$pkgver
+  make -C gui/libgdm DESTDIR=$pkgdir install
+}

Copied: gdm/repos/gnome-unstable-i686/arch-pam.patch (from rev 194778, 
gdm/trunk/arch-pam.patch)
===
--- gnome-unstable-i686/arch-pam.patch  (rev 0)
+++ 

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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 18:46:02
  Author: heftig
Revision: 194772

enable kms output; enable wayland compositor support

Modified:
  cogl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:32:12 UTC (rev 194771)
+++ PKGBUILD2013-09-23 16:46:02 UTC (rev 194772)
@@ -3,7 +3,7 @@
 
 pkgname=cogl
 pkgver=1.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
 arch=('i686' 'x86_64')
 url=http://www.clutter-project.org/;
@@ -17,7 +17,9 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr \
---enable-wayland-egl-platform --enable-gles{1,2}
+--enable-gles{1,2} \
+--enable-{kms,wayland}-egl-platform \
+--enable-wayland-egl-server
 
   # https://bugzilla.gnome.org/show_bug.cgi?id=655517
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:05:18
  Author: heftig
Revision: 194781

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  evolution-ews/repos/gnome-unstable-i686/
  evolution-ews/repos/gnome-unstable-i686/PKGBUILD
(from rev 194780, evolution-ews/trunk/PKGBUILD)
  evolution-ews/repos/gnome-unstable-x86_64/
  evolution-ews/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194780, evolution-ews/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   27 +++
 gnome-unstable-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: evolution-ews/repos/gnome-unstable-i686/PKGBUILD (from rev 194780, 
evolution-ews/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 17:05:18 UTC (rev 194781)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=evolution-ews
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=MS Exchange integration through Exchange Web Services
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url=http://www.gnome.org;
+depends=('evolution-data-server' 'gtkhtml4' 'libmspack')
+makedepends=('intltool' 'evolution')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('689ad1908d750a6004ee7ce997543a1b5481849aafeb923edebe3f766efa4b46')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/evolution --disable-static --with-krb5
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: evolution-ews/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194780, 
evolution-ews/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:05:18 UTC (rev 194781)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=evolution-ews
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=MS Exchange integration through Exchange Web Services
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url=http://www.gnome.org;
+depends=('evolution-data-server' 'gtkhtml4' 'libmspack')
+makedepends=('intltool' 'evolution')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('689ad1908d750a6004ee7ce997543a1b5481849aafeb923edebe3f766efa4b46')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/evolution --disable-static --with-krb5
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in cogl/trunk (git-fixes.patch)

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 18:32:12
  Author: heftig
Revision: 194771

remove old patch

Deleted:
  cogl/trunk/git-fixes.patch

-+
 git-fixes.patch | 1948 --
 1 file changed, 1948 deletions(-)

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


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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:04:41
  Author: heftig
Revision: 194780

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  evolution/repos/gnome-unstable-i686/
  evolution/repos/gnome-unstable-i686/PKGBUILD
(from rev 194779, evolution/trunk/PKGBUILD)
  evolution/repos/gnome-unstable-i686/evolution.install
(from rev 194779, evolution/trunk/evolution.install)
  evolution/repos/gnome-unstable-x86_64/
  evolution/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194779, evolution/trunk/PKGBUILD)
  evolution/repos/gnome-unstable-x86_64/evolution.install
(from rev 194779, evolution/trunk/evolution.install)

-+
 gnome-unstable-i686/PKGBUILD|   44 ++
 gnome-unstable-i686/evolution.install   |   19 
 gnome-unstable-x86_64/PKGBUILD  |   44 ++
 gnome-unstable-x86_64/evolution.install |   19 
 4 files changed, 126 insertions(+)

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

Copied: evolution/repos/gnome-unstable-i686/evolution.install (from rev 194779, 
evolution/trunk/evolution.install)
===
--- gnome-unstable-i686/evolution.install   (rev 0)
+++ gnome-unstable-i686/evolution.install   2013-09-23 17:04:41 UTC (rev 
194780)
@@ -0,0 +1,19 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  if [ -f /usr/share/gconf/schemas/evolution.schemas ]; then
+gconfpkg --uninstall evolution
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: evolution/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194779, 
evolution/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:04:41 UTC (rev 194780)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=evolution
+pkgver=3.10.0
+pkgrel=1
+pkgdesc=Manage your email, contacts and schedule
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gnome-desktop evolution-data-server gtkhtml4 libcanberra libpst 
libytnef psmisc
+ desktop-file-utils hicolor-icon-theme dconf)
+makedepends=(intltool itstool docbook-xsl networkmanager bogofilter 
spamassassin highlight)
+optdepends=('bogofilter: possible junk filter plugin'
+'spamassassin: possible junk filter plugin'
+'highlight: text highlight plugin')
+groups=('gnome-extra')
+options=('!libtool' '!emptydirs')
+install=evolution.install
+url=http://www.gnome.org/projects/evolution/
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e64fabc07e1126b80ef8354411d8232aee6e45cfece040a99d494d77df040064')

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

2013-09-23 Thread Eric Bélanger
Date: Monday, September 23, 2013 @ 18:46:29
  Author: eric
Revision: 194773

upgpkg: flickrnet 3.7.0.0-1

Upstream update, Add prepare function

Modified:
  flickrnet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 16:46:02 UTC (rev 194772)
+++ PKGBUILD2013-09-23 16:46:29 UTC (rev 194773)
@@ -2,9 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 # Contributor: György Balló ball...@freestart.hu
 pkgname=flickrnet
-_pkgname=FlickrNet
-pkgver=3.2.4310
-_pkgver=93705
+pkgver=3.7.0.0
+_pkgver=103861
 pkgrel=1
 pkgdesc=Flickr.Net API Library
 arch=('any')
@@ -12,21 +11,26 @@
 license=('LGPL')
 depends=('mono')
 makedepends=('unzip')
-source=($pkgname-$pkgver.zip::http://download.codeplex.com/Project/Download/SourceControlFileDownload.ashx?ProjectName=${_pkgname}changeSetId=$_pkgver;
+source=($pkgname-$pkgver.zip::http://download.codeplex.com/Project/Download/SourceControlFileDownload.ashx?ProjectName=FlickrNetchangeSetId=$_pkgver;
 $pkgname.pc)
-md5sums=('428e25f0f9921f72e5ecb60331fde248'
+md5sums=('88ee60f43e5e67fc57302ea5faf867eb'
  '131dd6e01f99c0533e9367b5cfda3a13')
 
+prepare() {
+  cd $srcdir/FlickrNet
+
+  sed -i s/@VERSION@/$pkgver/ $srcdir/$pkgname.pc
+}
+
 build() {
-  cd $srcdir/$_pkgname
-  sed -i s/@VERSION@/$pkgver/ $srcdir/$pkgname.pc
+  cd $srcdir/FlickrNet
 
   xbuild  /property:Configuration=Release FlickrNet.csproj
 }
 
 package() {
-  cd $srcdir/$_pkgname
+  cd $srcdir/FlickrNet
 
-  gacutil -i bin/Release/$_pkgname.dll -package $pkgname-$pkgver -root 
$pkgdir/usr/lib/
+  gacutil -i bin/Release/FlickrNet.dll -package $pkgname-$pkgver -root 
$pkgdir/usr/lib/
   install -Dm644 $srcdir/$pkgname.pc $pkgdir/usr/lib/pkgconfig/$pkgname.pc
 }



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 19:07:54
  Author: jgc
Revision: 194782

upgpkg: geocode-glib 3.10.0-1

Modified:
  geocode-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:05:18 UTC (rev 194781)
+++ PKGBUILD2013-09-23 17:07:54 UTC (rev 194782)
@@ -1,7 +1,7 @@
 #Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=geocode-glib
-pkgver=0.99.4
+pkgver=3.10.0
 pkgrel=1
 pkgdesc=Geocode Helper library
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 makedepends=('intltool' 'gobject-introspection')
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ba51f44014b51e09d598b48396465cb60775ffe9f947e2ee8becbf688dc322c9')
+sha256sums=('0aedc198cf8a9b934a290d50aadaf4b48bb13c3b4783618c6753eb466cdaa637')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:17:14
  Author: heftig
Revision: 194786

0.9.8.4

Modified:
  networkmanager-openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:11:40 UTC (rev 194785)
+++ PKGBUILD2013-09-23 17:17:14 UTC (rev 194786)
@@ -2,19 +2,19 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-openconnect
-pkgver=0.9.8.2
+pkgver=0.9.8.4
 pkgrel=1
 pkgdesc=NetworkManager VPN integration for openconnect
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.gnome.org/projects/NetworkManager/;
-depends=(networkmanager=${pkgver::5} 'openconnect' 'gconf' 
'libgnome-keyring')
+depends=(networkmanager=${pkgver::5} 'openconnect' 'libgnome-keyring' 
'gtk3')
 makedepends=('intltool')
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 options=('!libtool')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/0.9/NetworkManager-openconnect-${pkgver}.tar.xz)
-sha256sums=('8c3b393d155448d41f5de539d4920f0e5205a087aa5b25ed65601d6a370c44eb')
+sha256sums=('99b4dc03da311026eaa4bee2ff3f141270e8ba4bf341762d47152be387b6')
 
 build() {
   cd NetworkManager-openconnect-${pkgver}



[arch-commits] Commit in network-manager-applet/trunk (PKGBUILD)

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:17:19
  Author: heftig
Revision: 194787

0.9.8.4

Modified:
  network-manager-applet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:17:14 UTC (rev 194786)
+++ PKGBUILD2013-09-23 17:17:19 UTC (rev 194787)
@@ -6,7 +6,7 @@
 # Contributor: Will Rea sillywi...@gmail.com
 
 pkgname=network-manager-applet
-pkgver=0.9.8.2
+pkgver=0.9.8.4
 pkgrel=1
 pkgdesc=GNOME frontends to NetWorkmanager
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
 options=('!libtool' '!emptydirs')
 install=network-manager-applet.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.9/$pkgname-$pkgver.tar.xz)
-sha256sums=('a540c743971c199a7b8663a8d0a38eb66a4c13a6b5124cd3a7495c75560aadc7')
+sha256sums=('f68849291047c94487279aab4a6cb90945ad351df02da621a73b413e6c6c198c')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:17:27
  Author: heftig
Revision: 194788

0.9.8.4

Modified:
  networkmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:17:19 UTC (rev 194787)
+++ PKGBUILD2013-09-23 17:17:27 UTC (rev 194788)
@@ -8,7 +8,7 @@
 
 pkgname=networkmanager
 _pkgname=NetworkManager
-pkgver=0.9.8.2
+pkgver=0.9.8.4
 pkgrel=1
 pkgdesc=Network Management daemon
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 
#source=(git://anongit.freedesktop.org/NetworkManager/NetworkManager#commit=93c1041
 
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver:0:3}/$_pkgname-$pkgver.tar.xz
 NetworkManager.conf disable_set_hostname.patch)
-sha256sums=('5c0b2f71b2f61e0dfbe95cebad83001758db252d5cdf5b6f7ceebac9c6bd7ead'
+sha256sums=('4c9ff0aaf52bee8df9a73290ec2b3f4441ff504420d0b0dfd729b00a92d80d99'
 '44b048804c7c0b8b3b0c29b8632b6ad613c397d0a1635ec918e10c0fbcdadf21'
 '25056837ea92e559f09563ed817e3e0cd9333be861b8914e45f62ceaae2e0460')
 



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:19:29
  Author: heftig
Revision: 194789

0.9.8.4

Modified:
  networkmanager-openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:17:27 UTC (rev 194788)
+++ PKGBUILD2013-09-23 17:19:29 UTC (rev 194789)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-openvpn
-pkgver=0.9.8.2
+pkgver=0.9.8.4
 pkgrel=1
 pkgdesc=NetworkManager VPN plugin for OpenVPN
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 install=networkmanager-openvpn.install
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openvpn/0.9/NetworkManager-openvpn-${pkgver}.tar.xz)
-sha256sums=('d1c032f30e3c58d6d6bc371aad6d7e757f748d23a9240c077294492753078359')
+sha256sums=('af8c52b6a61af3c178eed1ea8f1d4704bea87331fde43deb3d4aafe1821e6687')
 
 build() {
   cd NetworkManager-openvpn-${pkgver}



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:19:34
  Author: heftig
Revision: 194790

0.9.8.4

Modified:
  networkmanager-pptp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:19:29 UTC (rev 194789)
+++ PKGBUILD2013-09-23 17:19:34 UTC (rev 194790)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-pptp
-pkgver=0.9.8.2
+pkgver=0.9.8.4
 pkgrel=1
 pkgdesc=NetworkManager VPN plugin for pptp 
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 install=networkmanager-pptp.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/0.9/NetworkManager-pptp-${pkgver}.tar.xz
 gtk_table_to_gtk_grid.patch)
-sha256sums=('7f46ea61376d13d03685eca3f26a26e0022f6e92e6f1fc356034ca9717eb6dac'
+sha256sums=('97ba8f6f726056c3b8e0e1c8d2ab3d32791cadd7c3a38e0478fb2bd3ecafdce8'
 '17c194c605bca780bf657711e9cff910c63ab27eae70c11cb6c53e9c75ad3215')
 
 prepare() {



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:20:19
  Author: heftig
Revision: 194791

0.9.8.6

Modified:
  networkmanager-vpnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:19:34 UTC (rev 194790)
+++ PKGBUILD2013-09-23 17:20:19 UTC (rev 194791)
@@ -2,19 +2,19 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-vpnc
-pkgver=0.9.8.2
+pkgver=0.9.8.6
 pkgrel=1
 pkgdesc=NetworkManager VPN plugin for vpnc
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.gnome.org/projects/NetworkManager/;
-depends=(networkmanager=${pkgver} 'vpnc' 'hicolor-icon-theme' 'gtk3' 
'libgnome-keyring')
+depends=(networkmanager=${pkgver%.*} 'vpnc' 'hicolor-icon-theme' 'gtk3' 
'libgnome-keyring')
 makedepends=('intltool')
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 options=('!libtool')
 install=networkmanager-vpnc.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-vpnc/0.9/NetworkManager-vpnc-${pkgver}.tar.xz)
-sha256sums=('adf6f4abd29d3f0384ef55fdfea75e6cd56088a0ecdfed2454305fd9e08318a1')
+sha256sums=('40306cd713d4e6e9df6a520d2992664d22173b3327e94df45a6dac23f0a8abd6')
 
 build() {
   cd NetworkManager-vpnc-${pkgver}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 19:21:13
  Author: jgc
Revision: 194792

upgpkg: vino 3.9.92-1

Modified:
  vino/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 17:20:19 UTC (rev 194791)
+++ PKGBUILD2013-09-23 17:21:13 UTC (rev 194792)
@@ -3,12 +3,12 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=vino
-pkgver=3.8.1
+pkgver=3.9.92
 pkgrel=1
 pkgdesc=a VNC server for the GNOME desktop
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libnotify' 'libxtst' 'libsm' 'libsoup' 'telepathy-glib' 'gtk3' 
'libsecret' 'avahi' 'desktop-file-utils')
+depends=('libnotify' 'libxtst' 'libsm' 'telepathy-glib' 'gtk3' 'libsecret' 
'avahi' 'desktop-file-utils')
 makedepends=('intltool' 'networkmanager' 'gnome-common')
 groups=('gnome')
 url=http://www.gnome.org;
@@ -15,7 +15,7 @@
 options=(!emptydirs)
 install=vino.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a82392aa479d5a4be38020ac64b3c4f0227917af6175938919dbe741995929c')
+sha256sums=('e8347b102f573f5acb28d2848f88c3d8ba6a2dda1b32ba1ff856929399f9279e')
 
 build() {
   cd $pkgname-$pkgver



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 19:11:40
  Author: jgc
Revision: 194785

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  yelp/repos/gnome-unstable-i686/
  yelp/repos/gnome-unstable-i686/PKGBUILD
(from rev 194784, yelp/trunk/PKGBUILD)
  yelp/repos/gnome-unstable-i686/yelp.install
(from rev 194784, yelp/trunk/yelp.install)
  yelp/repos/gnome-unstable-x86_64/
  yelp/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194784, yelp/trunk/PKGBUILD)
  yelp/repos/gnome-unstable-x86_64/yelp.install
(from rev 194784, yelp/trunk/yelp.install)

+
 gnome-unstable-i686/PKGBUILD   |   31 +++
 gnome-unstable-i686/yelp.install   |   13 +
 gnome-unstable-x86_64/PKGBUILD |   31 +++
 gnome-unstable-x86_64/yelp.install |   13 +
 4 files changed, 88 insertions(+)

Copied: yelp/repos/gnome-unstable-i686/PKGBUILD (from rev 194784, 
yelp/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 17:11:40 UTC (rev 194785)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=yelp
+pkgver=3.9.91
+pkgrel=1
+pkgdesc=A help browser for GNOME
+arch=('i686' 'x86_64')
+depends=('webkitgtk' 'yelp-xsl' 'libxslt' 'hicolor-icon-theme' 'xz' 'bzip2'
+ 'desktop-file-utils' 'dconf')
+makedepends=('intltool' 'gtk-doc' 'itstool')
+groups=('gnome')
+license=('GPL')
+options=('!emptydirs' '!libtool')
+url=http://www.gnome.org;
+install=yelp.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('8b0db4093477ffe344512f7361713bfaf23db640a470bfc87e30e580d52027dc')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: yelp/repos/gnome-unstable-i686/yelp.install (from rev 194784, 
yelp/trunk/yelp.install)
===
--- gnome-unstable-i686/yelp.install(rev 0)
+++ gnome-unstable-i686/yelp.install2013-09-23 17:11:40 UTC (rev 194785)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: yelp/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194784, 
yelp/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:11:40 UTC (rev 194785)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=yelp
+pkgver=3.9.91
+pkgrel=1
+pkgdesc=A help browser for GNOME
+arch=('i686' 'x86_64')
+depends=('webkitgtk' 'yelp-xsl' 'libxslt' 'hicolor-icon-theme' 'xz' 'bzip2'
+ 'desktop-file-utils' 'dconf')
+makedepends=('intltool' 'gtk-doc' 'itstool')
+groups=('gnome')
+license=('GPL')
+options=('!emptydirs' '!libtool')
+url=http://www.gnome.org;
+install=yelp.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('8b0db4093477ffe344512f7361713bfaf23db640a470bfc87e30e580d52027dc')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: yelp/repos/gnome-unstable-x86_64/yelp.install (from rev 194784, 
yelp/trunk/yelp.install)
===
--- gnome-unstable-x86_64/yelp.install  (rev 0)
+++ gnome-unstable-x86_64/yelp.install  2013-09-23 17:11:40 UTC (rev 194785)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-09-23 Thread Jan de Groot
Date: Monday, September 23, 2013 @ 19:21:19
  Author: jgc
Revision: 194793

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  vino/repos/gnome-unstable-i686/
  vino/repos/gnome-unstable-i686/PKGBUILD
(from rev 194792, vino/trunk/PKGBUILD)
  vino/repos/gnome-unstable-i686/vino.install
(from rev 194792, vino/trunk/vino.install)
  vino/repos/gnome-unstable-x86_64/
  vino/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 194792, vino/trunk/PKGBUILD)
  vino/repos/gnome-unstable-x86_64/vino.install
(from rev 194792, vino/trunk/vino.install)

+
 gnome-unstable-i686/PKGBUILD   |   34 ++
 gnome-unstable-i686/vino.install   |   12 
 gnome-unstable-x86_64/PKGBUILD |   34 ++
 gnome-unstable-x86_64/vino.install |   12 
 4 files changed, 92 insertions(+)

Copied: vino/repos/gnome-unstable-i686/PKGBUILD (from rev 194792, 
vino/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-09-23 17:21:19 UTC (rev 194793)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=vino
+pkgver=3.9.92
+pkgrel=1
+pkgdesc=a VNC server for the GNOME desktop
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libnotify' 'libxtst' 'libsm' 'telepathy-glib' 'gtk3' 'libsecret' 
'avahi' 'desktop-file-utils')
+makedepends=('intltool' 'networkmanager' 'gnome-common')
+groups=('gnome')
+url=http://www.gnome.org;
+options=(!emptydirs)
+install=vino.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e8347b102f573f5acb28d2848f88c3d8ba6a2dda1b32ba1ff856929399f9279e')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  autoreconf --force
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vino \
+  --localstatedir=/var \
+  --disable-http-server --with-secret
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: vino/repos/gnome-unstable-i686/vino.install (from rev 194792, 
vino/trunk/vino.install)
===
--- gnome-unstable-i686/vino.install(rev 0)
+++ gnome-unstable-i686/vino.install2013-09-23 17:21:19 UTC (rev 194793)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: vino/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194792, 
vino/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-09-23 17:21:19 UTC (rev 194793)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=vino
+pkgver=3.9.92
+pkgrel=1
+pkgdesc=a VNC server for the GNOME desktop
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libnotify' 'libxtst' 'libsm' 'telepathy-glib' 'gtk3' 'libsecret' 
'avahi' 'desktop-file-utils')
+makedepends=('intltool' 'networkmanager' 'gnome-common')
+groups=('gnome')
+url=http://www.gnome.org;
+options=(!emptydirs)
+install=vino.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e8347b102f573f5acb28d2848f88c3d8ba6a2dda1b32ba1ff856929399f9279e')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  autoreconf --force
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vino \
+  --localstatedir=/var \
+  --disable-http-server --with-secret
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: vino/repos/gnome-unstable-x86_64/vino.install (from rev 194792, 
vino/trunk/vino.install)
===
--- gnome-unstable-x86_64/vino.install  (rev 0)
+++ gnome-unstable-x86_64/vino.install  2013-09-23 17:21:19 UTC (rev 194793)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-09-23 Thread Jan Steffens
Date: Monday, September 23, 2013 @ 19:21:36
  Author: heftig
Revision: 194794

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

Added:
  networkmanager/repos/extra-i686/NetworkManager.conf
(from rev 194791, networkmanager/trunk/NetworkManager.conf)
  networkmanager/repos/extra-i686/PKGBUILD
(from rev 194791, networkmanager/trunk/PKGBUILD)
  networkmanager/repos/extra-i686/disable_set_hostname.patch
(from rev 194792, networkmanager/trunk/disable_set_hostname.patch)
  networkmanager/repos/extra-i686/networkmanager.install
(from rev 194792, networkmanager/trunk/networkmanager.install)
  networkmanager/repos/extra-x86_64/NetworkManager.conf
(from rev 194793, networkmanager/trunk/NetworkManager.conf)
  networkmanager/repos/extra-x86_64/PKGBUILD
(from rev 194793, networkmanager/trunk/PKGBUILD)
  networkmanager/repos/extra-x86_64/disable_set_hostname.patch
(from rev 194793, networkmanager/trunk/disable_set_hostname.patch)
  networkmanager/repos/extra-x86_64/networkmanager.install
(from rev 194793, networkmanager/trunk/networkmanager.install)
Deleted:
  networkmanager/repos/extra-i686/NetworkManager.conf
  networkmanager/repos/extra-i686/PKGBUILD
  networkmanager/repos/extra-i686/disable_set_hostname.patch
  networkmanager/repos/extra-i686/networkmanager.install
  networkmanager/repos/extra-x86_64/NetworkManager.conf
  networkmanager/repos/extra-x86_64/PKGBUILD
  networkmanager/repos/extra-x86_64/disable_set_hostname.patch
  networkmanager/repos/extra-x86_64/networkmanager.install

-+
 /NetworkManager.conf|4 
 /PKGBUILD   |  148 ++
 /disable_set_hostname.patch |   38 +++
 /networkmanager.install |   18 +++
 extra-i686/NetworkManager.conf  |2 
 extra-i686/PKGBUILD |   74 ---
 extra-i686/disable_set_hostname.patch   |   19 ---
 extra-i686/networkmanager.install   |9 -
 extra-x86_64/NetworkManager.conf|2 
 extra-x86_64/PKGBUILD   |   74 ---
 extra-x86_64/disable_set_hostname.patch |   19 ---
 extra-x86_64/networkmanager.install |9 -
 12 files changed, 208 insertions(+), 208 deletions(-)

Deleted: extra-i686/NetworkManager.conf
===
--- extra-i686/NetworkManager.conf  2013-09-23 17:21:19 UTC (rev 194793)
+++ extra-i686/NetworkManager.conf  2013-09-23 17:21:36 UTC (rev 194794)
@@ -1,2 +0,0 @@
-[main]
-plugins=keyfile

Copied: networkmanager/repos/extra-i686/NetworkManager.conf (from rev 194791, 
networkmanager/trunk/NetworkManager.conf)
===
--- extra-i686/NetworkManager.conf  (rev 0)
+++ extra-i686/NetworkManager.conf  2013-09-23 17:21:36 UTC (rev 194794)
@@ -0,0 +1,2 @@
+[main]
+plugins=keyfile

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-23 17:21:19 UTC (rev 194793)
+++ extra-i686/PKGBUILD 2013-09-23 17:21:36 UTC (rev 194794)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Maintainer: Jan de Groot j...@archlinxu.org
-# Contributor: Wael Nasreddine gand...@siemens-mobiles.org
-# Contributor: Tor Krill t...@krill.nu
-# Contributor: Will Rea sillywi...@gmail.com
-# Contributor: Valentine Sinitsyn e_...@inbox.ru
-
-pkgname=networkmanager
-_pkgname=NetworkManager
-pkgver=0.9.8.2
-pkgrel=1
-pkgdesc=Network Management daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org/projects/$_pkgname/;
-depends=(dbus-glib iproute2 libnl nss polkit udev wpa_supplicant dhcp-client
- libsoup systemd modemmanager)
-makedepends=(intltool dhcpcd dhclient iptables gobject-introspection gtk-doc 
git)
-optdepends=('dhclient: DHCPv6 support'
-'dnsmasq: Connection sharing'
-'bluez4: Bluetooth support'
-'openresolv: resolvconf support'
-'ppp: Dialup connection support')
-options=('!libtool')
-backup=('etc/NetworkManager/NetworkManager.conf')
-install=networkmanager.install
-#source=(git://anongit.freedesktop.org/NetworkManager/NetworkManager#commit=93c1041
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver:0:3}/$_pkgname-$pkgver.tar.xz
-NetworkManager.conf disable_set_hostname.patch)
-sha256sums=('5c0b2f71b2f61e0dfbe95cebad83001758db252d5cdf5b6f7ceebac9c6bd7ead'
-'44b048804c7c0b8b3b0c29b8632b6ad613c397d0a1635ec918e10c0fbcdadf21'
-'25056837ea92e559f09563ed817e3e0cd9333be861b8914e45f62ceaae2e0460')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  patch -Np1 -i ../disable_set_hostname.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
-

  1   2   3   >