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

2014-04-09 Thread Bartłomiej Piotrowski
Date: Wednesday, April 9, 2014 @ 10:54:18
  Author: bpiotrowski
Revision: 108991

upgpkg: awesome 3.5.4-2

add patch to fix menubar cairo warnings

Added:
  awesome/trunk/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch
Modified:
  awesome/trunk/PKGBUILD

-+
 PKGBUILD|   11 ++-
 awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch |   31 ++
 2 files changed, 39 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 07:43:53 UTC (rev 108990)
+++ PKGBUILD2014-04-09 08:54:18 UTC (rev 108991)
@@ -8,7 +8,7 @@
 
 pkgname=awesome
 pkgver=3.5.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Highly configurable framework window manager'
 arch=('i686' 'x86_64')
 url='http://awesome.naquadah.org/'
@@ -22,11 +22,16 @@
 'vicious: widgets for the Awesome window manager')
 provides=('notification-daemon')
 backup=('etc/xdg/awesome/rc.lua')
-source=($url/download/$pkgname-$pkgver.tar.xz)
-md5sums=('9d52a26bfbc142ace5427bfb55010359')
+source=($url/download/$pkgname-$pkgver.tar.xz
+awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch)
+md5sums=('9d52a26bfbc142ace5427bfb55010359'
+ '1db70d4e40ca982ce49d7226a4eb3c92')
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch
 }
 
 build() {

Added: awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch
===
--- awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch 
(rev 0)
+++ awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch 2014-04-09 
08:54:18 UTC (rev 108991)
@@ -0,0 +1,31 @@
+From 7967d05915c95c8eba7709a46093cc1b6de55572 Mon Sep 17 00:00:00 2001
+From: Uli Schlachter psyc...@znc.in
+Date: Wed, 2 Apr 2014 22:48:06 +0200
+Subject: [PATCH] imagebox: Don't try to scale by infinite (FS#1248)
+
+When an imagebox was drawn with width or height zero, it tried to calculate the
+needed scale factor for making the image fit. Sadly, this would be a division 
by
+zero aka infinite in this case.
+
+Fix this by just not drawing anything if there is no space available.
+
+Signed-off-by: Uli Schlachter psyc...@znc.in
+---
+ lib/wibox/widget/imagebox.lua.in | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lib/wibox/widget/imagebox.lua.in 
b/lib/wibox/widget/imagebox.lua.in
+index da51634..5963d0e 100644
+--- a/lib/wibox/widget/imagebox.lua.in
 b/lib/wibox/widget/imagebox.lua.in
+@@ -18,6 +18,7 @@ local imagebox = { mt = {} }
+ --- Draw an imagebox with the given cairo context in the given geometry.
+ function imagebox:draw(wibox, cr, width, height)
+ if not self._image then return end
++if width == 0 or height == 0 then return end
+ 
+ cr:save()
+ 
+-- 
+1.9.1
+



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

2014-04-09 Thread Bartłomiej Piotrowski
Date: Wednesday, April 9, 2014 @ 10:54:27
  Author: bpiotrowski
Revision: 108992

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

Added:
  awesome/repos/community-i686/PKGBUILD
(from rev 108991, awesome/trunk/PKGBUILD)
  
awesome/repos/community-i686/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch
(from rev 108991, 
awesome/trunk/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch)
  awesome/repos/community-x86_64/PKGBUILD
(from rev 108991, awesome/trunk/PKGBUILD)
  
awesome/repos/community-x86_64/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch
(from rev 108991, 
awesome/trunk/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch)
Deleted:
  awesome/repos/community-i686/PKGBUILD
  awesome/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD| 
 106 ++
 community-i686/PKGBUILD  | 
  48 
 community-i686/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch   | 
  31 ++
 community-x86_64/PKGBUILD| 
  48 
 community-x86_64/awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch | 
  31 ++
 5 files changed, 168 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 08:54:18 UTC (rev 108991)
+++ community-i686/PKGBUILD 2014-04-09 08:54:27 UTC (rev 108992)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Sébastien Luttringer
-# Contributor: xduugu
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: Vesa Kaihlavirta
-
-pkgname=awesome
-pkgver=3.5.4
-pkgrel=1
-pkgdesc='Highly configurable framework window manager'
-arch=('i686' 'x86_64')
-url='http://awesome.naquadah.org/'
-license=('GPL2')
-depends=('cairo' 'dbus' 'gdk-pixbuf2' 'imlib2' 'libxdg-basedir' 'lua' 'lua-lgi'
- 'pango' 'startup-notification' 'xcb-util-cursor' 'xcb-util-keysyms'
- 'xcb-util-wm' 'xorg-xmessage')
-makedepends=('asciidoc' 'cmake' 'docbook-xsl' 'doxygen' 'imagemagick' 'ldoc' 
'xmlto')
-optdepends=('rlwrap: readline support for awesome-client'
-'dex: autostart your desktop files'
-'vicious: widgets for the Awesome window manager')
-provides=('notification-daemon')
-backup=('etc/xdg/awesome/rc.lua')
-source=($url/download/$pkgname-$pkgver.tar.xz)
-md5sums=('9d52a26bfbc142ace5427bfb55010359')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=RELEASE \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONFDIR=/etc \
--DLUA_LIBRARY=/usr/lib/liblua.so.5.2
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 $srcdir/$pkgname-$pkgver/awesome.desktop \
-$pkgdir/usr/share/xsessions/awesome.desktop
-}

Copied: awesome/repos/community-i686/PKGBUILD (from rev 108991, 
awesome/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 08:54:27 UTC (rev 108992)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Sébastien Luttringer
+# Contributor: xduugu
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Vesa Kaihlavirta
+
+pkgname=awesome
+pkgver=3.5.4
+pkgrel=2
+pkgdesc='Highly configurable framework window manager'
+arch=('i686' 'x86_64')
+url='http://awesome.naquadah.org/'
+license=('GPL2')
+depends=('cairo' 'dbus' 'gdk-pixbuf2' 'imlib2' 'libxdg-basedir' 'lua' 'lua-lgi'
+ 'pango' 'startup-notification' 'xcb-util-cursor' 'xcb-util-keysyms'
+ 'xcb-util-wm' 'xorg-xmessage')
+makedepends=('asciidoc' 'cmake' 'docbook-xsl' 'doxygen' 'imagemagick' 'ldoc' 
'xmlto')
+optdepends=('rlwrap: readline support for awesome-client'
+'dex: autostart your desktop files'
+'vicious: widgets for the Awesome window manager')
+provides=('notification-daemon')
+backup=('etc/xdg/awesome/rc.lua')
+source=($url/download/$pkgname-$pkgver.tar.xz
+awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch)
+md5sums=('9d52a26bfbc142ace5427bfb55010359'
+ '1db70d4e40ca982ce49d7226a4eb3c92')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../awesome-3.5.4-imagebox-Don-t-try-to-scale-by-infinite.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=RELEASE \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc \
+-DLUA_LIBRARY=/usr/lib/liblua.so.5.2
+  make
+}
+
+package() {
+  cd build
+  

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

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 11:40:09
  Author: alucryd
Revision: 108993

upgpkg: aegisub 3.1.3-2

Modified:
  aegisub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 08:54:27 UTC (rev 108992)
+++ PKGBUILD2014-04-09 09:40:09 UTC (rev 108993)
@@ -5,12 +5,12 @@
 
 pkgname=aegisub
 pkgver=3.1.3
-pkgrel=1
-pkgdesc=A general-purpose subtitle editor with ASS/SSA support
+pkgrel=2
+pkgdesc='A general-purpose subtitle editor with ASS/SSA support'
 arch=('i686' 'x86_64')
-url=http://www.aegisub.org;
+url='http://www.aegisub.org'
 license=('GPL' 'BSD')
-depends=('boost-libs' 'desktop-file-utils' 'ffms2' 'fftw' 'hunspell' 'lua51' 
'wxgtk')
+depends=('boost-libs' 'desktop-file-utils' 'ffms2' 'fftw' 'hunspell' 'wxgtk')
 makedepends=('boost' 'intltool' 'mesa')
 install=${pkgname}.install
 
source=(http://ftp.aegisub.org/pub/archives/releases/source/${pkgname}-${pkgver}.tar.xz;)



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

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 11:40:32
  Author: alucryd
Revision: 108994

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

Added:
  aegisub/repos/community-staging-i686/PKGBUILD
(from rev 108993, aegisub/trunk/PKGBUILD)
  aegisub/repos/community-staging-i686/aegisub.install
(from rev 108993, aegisub/trunk/aegisub.install)
  aegisub/repos/community-staging-x86_64/PKGBUILD
(from rev 108993, aegisub/trunk/PKGBUILD)
  aegisub/repos/community-staging-x86_64/aegisub.install
(from rev 108993, aegisub/trunk/aegisub.install)
Deleted:
  aegisub/repos/community-staging-i686/PKGBUILD
  aegisub/repos/community-staging-i686/aegisub.install
  aegisub/repos/community-staging-x86_64/PKGBUILD
  aegisub/repos/community-staging-x86_64/aegisub.install

--+
 /PKGBUILD|   70 +
 /aegisub.install |   28 +++
 community-staging-i686/PKGBUILD  |   35 --
 community-staging-i686/aegisub.install   |   14 -
 community-staging-x86_64/PKGBUILD|   35 --
 community-staging-x86_64/aegisub.install |   14 -
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-04-09 09:40:09 UTC (rev 108993)
+++ community-staging-i686/PKGBUILD 2014-04-09 09:40:32 UTC (rev 108994)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: kozec ko...@kozec.com
-# Contributor: Limao Luo luolimao+...@gmail.com
-
-pkgname=aegisub
-pkgver=3.1.3
-pkgrel=1
-pkgdesc=A general-purpose subtitle editor with ASS/SSA support
-arch=('i686' 'x86_64')
-url=http://www.aegisub.org;
-license=('GPL' 'BSD')
-depends=('boost-libs' 'desktop-file-utils' 'ffms2' 'fftw' 'hunspell' 'lua51' 
'wxgtk')
-makedepends=('boost' 'intltool' 'mesa')
-install=${pkgname}.install
-source=(http://ftp.aegisub.org/pub/archives/releases/source/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('efea5bc2bc5e0651ada4f65cfdd8af1b422a15f87933710d11287bf51e2b5e58')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix='/usr' --without-{portaudio,openal,oss}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -dm 755 ${pkgdir}/usr/share/licenses/aegisub
-  install -m 644 LICENCE ${pkgdir}/usr/share/licenses/aegisub/LICENSE
-}
-
-# vim: ts=2 sw=2 et:

Copied: aegisub/repos/community-staging-i686/PKGBUILD (from rev 108993, 
aegisub/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-09 09:40:32 UTC (rev 108994)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: kozec ko...@kozec.com
+# Contributor: Limao Luo luolimao+...@gmail.com
+
+pkgname=aegisub
+pkgver=3.1.3
+pkgrel=2
+pkgdesc='A general-purpose subtitle editor with ASS/SSA support'
+arch=('i686' 'x86_64')
+url='http://www.aegisub.org'
+license=('GPL' 'BSD')
+depends=('boost-libs' 'desktop-file-utils' 'ffms2' 'fftw' 'hunspell' 'wxgtk')
+makedepends=('boost' 'intltool' 'mesa')
+install=${pkgname}.install
+source=(http://ftp.aegisub.org/pub/archives/releases/source/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('efea5bc2bc5e0651ada4f65cfdd8af1b422a15f87933710d11287bf51e2b5e58')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr' --without-{portaudio,openal,oss}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -dm 755 ${pkgdir}/usr/share/licenses/aegisub
+  install -m 644 LICENCE ${pkgdir}/usr/share/licenses/aegisub/LICENSE
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-staging-i686/aegisub.install
===
--- community-staging-i686/aegisub.install  2014-04-09 09:40:09 UTC (rev 
108993)
+++ community-staging-i686/aegisub.install  2014-04-09 09:40:32 UTC (rev 
108994)
@@ -1,14 +0,0 @@
-post_install() {
-gtk-update-icon-cache -ftq usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: aegisub/repos/community-staging-i686/aegisub.install (from rev 108993, 
aegisub/trunk/aegisub.install)
===
--- community-staging-i686/aegisub.install  (rev 0)
+++ community-staging-i686/aegisub.install  2014-04-09 09:40:32 UTC (rev 
108994)
@@ -0,0 +1,14 @@
+post_install() {
+gtk-update-icon-cache -ftq usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: 

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

2014-04-09 Thread Florian Pritz
Date: Wednesday, April 9, 2014 @ 11:53:18
  Author: bluewind
Revision: 108996

archrelease: copy trunk to community-any

Added:
  inxi/repos/community-any/PKGBUILD
(from rev 108995, inxi/trunk/PKGBUILD)
  inxi/repos/community-any/upgpkg
(from rev 108995, inxi/trunk/upgpkg)
Deleted:
  inxi/repos/community-any/PKGBUILD
  inxi/repos/community-any/upgpkg

--+
 PKGBUILD |   72 ++---
 upgpkg   |8 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-09 09:53:12 UTC (rev 108995)
+++ PKGBUILD2014-04-09 09:53:18 UTC (rev 108996)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@gmx.at
-pkgname=inxi
-pkgver=2.1.19
-pkgrel=1
-pkgdesc=script to get system information
-arch=('any')
-url=http://inxi.org;
-license=('GPL')
-depends=(coreutils gawk grep pciutils procps-ng sed)
-optdepends=(
-  dmidecode: inxi -M if no sys machine data
-  file: inxi -o unmounted file system
-  hddtemp: inxi -Dx show hdd temp
-  net-tools: inxi -i ip lan-deprecated
-  iproute2: inxi -i ip lan
-  lm_sensors: inxi -s sensors output
-  usbutils: inxi -A usb audio;-N usb networking
-  kmod: inxi -Ax,-Nx module version
-  systemd-sysvcompat: inxi -I runlevel
-  sudo: inxi -Dx hddtemp-user;-o file-user
-  mesa-demos: inxi -G glx info
-  xorg-xdpyinfo: inxi -G multi screen resolution
-  xorg-xprop: inxi -S desktop data
-  xorg-xrandr: inxi -G single screen resolution
-)
-source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('2d605d5978d64bfd39c34803fdb0f52d')
-
-package() {
-  cd $srcdir
-  install -D -m755 inxi $pkgdir/usr/bin/inxi
-  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
-}
-
-# vim:set ts=2 sw=2 et:

Copied: inxi/repos/community-any/PKGBUILD (from rev 108995, inxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-09 09:53:18 UTC (rev 108996)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Florian Pritz f...@gmx.at
+pkgname=inxi
+pkgver=2.1.20
+pkgrel=1
+pkgdesc=script to get system information
+arch=('any')
+url=http://inxi.org;
+license=('GPL')
+depends=(coreutils gawk grep pciutils procps-ng sed)
+optdepends=(
+  dmidecode: inxi -M if no sys machine data
+  file: inxi -o unmounted file system
+  hddtemp: inxi -Dx show hdd temp
+  net-tools: inxi -i ip lan-deprecated
+  iproute2: inxi -i ip lan
+  lm_sensors: inxi -s sensors output
+  usbutils: inxi -A usb audio;-N usb networking
+  kmod: inxi -Ax,-Nx module version
+  systemd-sysvcompat: inxi -I runlevel
+  sudo: inxi -Dx hddtemp-user;-o file-user
+  mesa-demos: inxi -G glx info
+  xorg-xdpyinfo: inxi -G multi screen resolution
+  xorg-xprop: inxi -S desktop data
+  xorg-xrandr: inxi -G single screen resolution
+)
+source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('8d5566b425c8f0dc43777019adc9d27e')
+
+package() {
+  cd $srcdir
+  install -D -m755 inxi $pkgdir/usr/bin/inxi
+  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: upgpkg
===
--- upgpkg  2014-04-09 09:53:12 UTC (rev 108995)
+++ upgpkg  2014-04-09 09:53:18 UTC (rev 108996)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 108995, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2014-04-09 09:53:18 UTC (rev 108996)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}



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

2014-04-09 Thread Florian Pritz
Date: Wednesday, April 9, 2014 @ 11:53:12
  Author: bluewind
Revision: 108995

upgpkg: inxi 2.1.20-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 09:40:32 UTC (rev 108994)
+++ PKGBUILD2014-04-09 09:53:12 UTC (rev 108995)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Florian Pritz f...@gmx.at
 pkgname=inxi
-pkgver=2.1.19
+pkgver=2.1.20
 pkgrel=1
 pkgdesc=script to get system information
 arch=('any')
@@ -25,7 +25,7 @@
   xorg-xrandr: inxi -G single screen resolution
 )
 
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('2d605d5978d64bfd39c34803fdb0f52d')
+md5sums=('8d5566b425c8f0dc43777019adc9d27e')
 
 package() {
   cd $srcdir



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

2014-04-09 Thread Lukas Jirkovsky
Date: Wednesday, April 9, 2014 @ 12:03:56
  Author: stativ
Revision: 108997

upgpkg: luxrender 1.3.1-7

add dependency on libpng, FS#39764

Modified:
  luxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 09:53:18 UTC (rev 108996)
+++ PKGBUILD2014-04-09 10:03:56 UTC (rev 108997)
@@ -5,12 +5,12 @@
 pkgname=luxrender
 pkgver=1.3.1
 _pkgver=d0b0e20c47cc
-pkgrel=6
+pkgrel=7
 pkgdesc=Rendering system for physically correct, unbiased image synthesis
 arch=('i686' 'x86_64')
 url=http://www.luxrender.net/;
 license=('GPL')
-depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl' 'fftw')
+depends=('boost-libs' 'freeimage' 'openexr' 'libpng' 'libcl' 'libgl' 'fftw')
 optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
 'python: Python interface (pylux)'
 'nvidia-utils: OpenCL support for nVidia GPUs' \



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

2014-04-09 Thread Lukas Jirkovsky
Date: Wednesday, April 9, 2014 @ 12:04:12
  Author: stativ
Revision: 108998

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

Added:
  luxrender/repos/community-i686/PKGBUILD
(from rev 108997, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-i686/force_python3.diff
(from rev 108997, luxrender/trunk/force_python3.diff)
  luxrender/repos/community-x86_64/PKGBUILD
(from rev 108997, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-x86_64/force_python3.diff
(from rev 108997, luxrender/trunk/force_python3.diff)
Deleted:
  luxrender/repos/community-i686/PKGBUILD
  luxrender/repos/community-i686/force_python3.diff
  luxrender/repos/community-x86_64/PKGBUILD
  luxrender/repos/community-x86_64/force_python3.diff

-+
 /PKGBUILD   |  108 ++
 /force_python3.diff |   24 +++
 community-i686/PKGBUILD |   54 -
 community-i686/force_python3.diff   |   12 ---
 community-x86_64/PKGBUILD   |   54 -
 community-x86_64/force_python3.diff |   12 ---
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 10:03:56 UTC (rev 108997)
+++ community-i686/PKGBUILD 2014-04-09 10:04:12 UTC (rev 108998)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-# Contributor: flixie 69...@gmx.net
-# Contributor: Imanol Celaya ornitorrin...@archlinux-es.org
-pkgname=luxrender
-pkgver=1.3.1
-_pkgver=d0b0e20c47cc
-pkgrel=5
-pkgdesc=Rendering system for physically correct, unbiased image synthesis
-arch=('i686' 'x86_64')
-url=http://www.luxrender.net/;
-license=('GPL')
-depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl' 'fftw')
-optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
-'python: Python interface (pylux)'
-'nvidia-utils: OpenCL support for nVidia GPUs' \
-'amdstream: OpenCL support for AMD GPUs' \
-'intel-opencl-sdk: OpenCL support for Intel CPUs')
-makedepends=('cmake' 'boost' 'mesa' 'qt4' luxrays=$pkgver 'python' 
'opencl-headers')
-source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
-force_python3.diff)
-md5sums=('cbe749f56a1e1976745f5458100efa8a'
- '42692e65eabc5828693e2682e94b7c64')
-
-prepare() {
-  cd $srcdir/luxrender-lux-$_pkgver
-
-  patch -Np1  $srcdir/force_python3.diff || true
-}
-
-build() {
-  cd $srcdir/luxrender-lux-$_pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DLUXRAYS_DISABLE_OPENCL=OFF \
--DPYTHON_CUSTOM=ON \
--DPYTHON_LIBRARIES=/usr/lib/libpython3.4m.so \
--DPYTHON_INCLUDE_PATH=/usr/include/python3.4m/ \
-.
-  make
-}
-
-package() {
-  cd $srcdir/luxrender-lux-$_pkgver
-  make DESTDIR=$pkgdir install
-
-  # fix library path on x86_64
-  [ $CARCH = x86_64 ]  mv $pkgdir/usr/lib64 $pkgdir/usr/lib
-
-  #install pylux
-  install -D -m644 pylux.so $pkgdir/usr/lib/python3.4/pylux.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: luxrender/repos/community-i686/PKGBUILD (from rev 108997, 
luxrender/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 10:04:12 UTC (rev 108998)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: flixie 69...@gmx.net
+# Contributor: Imanol Celaya ornitorrin...@archlinux-es.org
+pkgname=luxrender
+pkgver=1.3.1
+_pkgver=d0b0e20c47cc
+pkgrel=7
+pkgdesc=Rendering system for physically correct, unbiased image synthesis
+arch=('i686' 'x86_64')
+url=http://www.luxrender.net/;
+license=('GPL')
+depends=('boost-libs' 'freeimage' 'openexr' 'libpng' 'libcl' 'libgl' 'fftw')
+optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
+'python: Python interface (pylux)'
+'nvidia-utils: OpenCL support for nVidia GPUs' \
+'amdstream: OpenCL support for AMD GPUs' \
+'intel-opencl-sdk: OpenCL support for Intel CPUs')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' luxrays=$pkgver 'python' 
'opencl-headers')
+source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
+force_python3.diff)
+md5sums=('cbe749f56a1e1976745f5458100efa8a'
+ '42692e65eabc5828693e2682e94b7c64')
+
+prepare() {
+  cd $srcdir/luxrender-lux-$_pkgver
+
+  patch -Np1  $srcdir/force_python3.diff || true
+}
+
+build() {
+  cd $srcdir/luxrender-lux-$_pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+-DPYTHON_CUSTOM=ON \
+-DPYTHON_LIBRARIES=/usr/lib/libpython3.4m.so \
+-DPYTHON_INCLUDE_PATH=/usr/include/python3.4m/ \
+.
+  make
+}
+
+package() {
+  cd $srcdir/luxrender-lux-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  # fix library path on x86_64
+  [ $CARCH = x86_64 ]  mv 

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

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 12:21:36
  Author: alucryd
Revision: 108999

upgpkg: lightdm 1:1.10.0-1

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

--+
 PKGBUILD |6 +++---
 lightdm-default-config.patch |   41 ++---
 2 files changed, 17 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 10:04:12 UTC (rev 108998)
+++ PKGBUILD2014-04-09 10:21:36 UTC (rev 108999)
@@ -4,7 +4,7 @@
 
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
-pkgver=1.8.8
+pkgver=1.10.0
 pkgrel=1
 epoch=1
 pkgdesc='A lightweight display manager'
@@ -20,13 +20,13 @@
 'lightdm.rules'
 'lightdm-default-config.patch'
 'Xsession')
-sha256sums=('b366c7580574766f40d5b24dbaaecdc5e332be6df44bd4b3df0c04a729b493ba'
+sha256sums=('0edfaf947984906b1f37be7a24377267cdd3e0ebee64d683c9401dd3988d1824'
 '0d2adba25cdbe59e97ffd302083db9d5e23920780f41e04f64512cd6b633289a'
 'b29521fbd7a48a8f60b93ecca3b30c30bcb71560de8033c8d39b25c22c6f696f'
 'e8c4c5fd3b801a390d201166fd1fb9730e78a5c62928768103b870b6bd980ea0'
 '33e3c3d6e16c8d30756754ea3f31f5457c5be0343686aad287692be34958984a'
 'a89566307e1c81c24f037d854cbd472d2f94f8a4b759877a01563a332319f7d6'
-'0b2f740616110887d5c8662e40f1a8350fc0dfa6c7e99f6e3a5636c6b0ca714f'
+'20de3152b9ea037be1cbb9a32c052cb53d3362daf7c4ebd3d8669a1af0f13723'
 '4d5674906742200b3c171f978457e943560f2c10a2b9156fcd44da3796d185a2')
 
 prepare() {

Modified: lightdm-default-config.patch
===
--- lightdm-default-config.patch2014-04-09 10:04:12 UTC (rev 108998)
+++ lightdm-default-config.patch2014-04-09 10:21:36 UTC (rev 108999)
@@ -1,11 +1,8 @@
 a/data/lightdm.conf2013-09-02 17:17:41.167211771 +0200
-+++ b/data/lightdm.conf2013-09-02 17:20:41.278613565 +0200
-@@ -18,14 +18,14 @@
- #
- [LightDM]
+--- a/data/lightdm.conf 2014-03-12 20:56:34.0 +0100
 b/data/lightdm.conf 2014-03-14 15:48:32.089948842 +0100
+@@ -19,12 +19,12 @@
  #start-default-seat=true
--#greeter-user=lightdm
-+greeter-user=lightdm
+ #greeter-user=lightdm
  #minimum-display-number=0
 -#minimum-vt=7
 +minimum-vt=1
@@ -12,41 +9,31 @@
  #lock-memory=true
  #user-authority-in-system-dir=false
  #guest-account-script=guest-account
--#log-directory=/var/log/lightdm
+ #log-directory=/var/log/lightdm
 -#run-directory=/var/run/lightdm
-+log-directory=/var/log/lightdm
 +run-directory=/run/lightdm
  #cache-directory=/var/cache/lightdm
  #sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions
  #remote-sessions-directory=/usr/share/lightdm/remote-sessions
-@@ -81,7 +81,7 @@
- #xdmcp-key=
- #unity-compositor-command=unity-system-compositor
- #unity-compositor-timeout=60
--#greeter-session=example-gtk-gnome
-+greeter-session=lightdm-gtk-greeter
- #greeter-hide-users=false
- #greeter-allow-guest=true
- #greeter-show-manual-login=false
-@@ -89,7 +89,7 @@
+@@ -93,7 +93,7 @@
  #user-session=default
  #allow-guest=true
- #guest-session=UNIMPLEMENTED
+ #guest-session=
 -#session-wrapper=lightdm-session
 +session-wrapper=/etc/lightdm/Xsession
  #greeter-wrapper=
+ #guest-wrapper=
  #display-setup-script=
- #greeter-setup-script=
-@@ -100,6 +100,7 @@
- #autologin-user-timeout=0
+@@ -107,6 +107,7 @@
  #autologin-in-background=false
  #autologin-session=UNIMPLEMENTED
+ #exit-on-failure=false
 +pam-service=lightdm-autologin
- #exit-on-failure=false
- 
+
  #
 a/data/users.conf  2013-09-02 17:17:41.167211771 +0200
-+++ b/data/users.conf  2013-09-02 17:21:27.955545717 +0200
+ # Seat configuration
+--- a/data/users.conf 2013-09-02 17:17:41.167211771 +0200
 b/data/users.conf 2013-09-02 17:21:27.955545717 +0200
 @@ -9,6 +9,6 @@
  # hidden-shells = Shells that indicate a user cannot login
  #



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

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 12:22:20
  Author: alucryd
Revision: 109000

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

Added:
  lightdm/repos/community-i686/PKGBUILD
(from rev 108999, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-i686/Xsession
(from rev 108999, lightdm/trunk/Xsession)
  lightdm/repos/community-i686/lightdm-autologin.pam
(from rev 108999, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-i686/lightdm-default-config.patch
(from rev 108999, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-i686/lightdm.install
(from rev 108999, lightdm/trunk/lightdm.install)
  lightdm/repos/community-i686/lightdm.pam
(from rev 108999, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-i686/lightdm.rules
(from rev 108999, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-i686/lightdm.service
(from rev 108999, lightdm/trunk/lightdm.service)
  lightdm/repos/community-i686/lightdm.tmpfiles
(from rev 108999, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-x86_64/PKGBUILD
(from rev 108999, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-x86_64/Xsession
(from rev 108999, lightdm/trunk/Xsession)
  lightdm/repos/community-x86_64/lightdm-autologin.pam
(from rev 108999, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-x86_64/lightdm-default-config.patch
(from rev 108999, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-x86_64/lightdm.install
(from rev 108999, lightdm/trunk/lightdm.install)
  lightdm/repos/community-x86_64/lightdm.pam
(from rev 108999, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-x86_64/lightdm.rules
(from rev 108999, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-x86_64/lightdm.service
(from rev 108999, lightdm/trunk/lightdm.service)
  lightdm/repos/community-x86_64/lightdm.tmpfiles
(from rev 108999, lightdm/trunk/lightdm.tmpfiles)
Deleted:
  lightdm/repos/community-i686/PKGBUILD
  lightdm/repos/community-i686/Xsession
  lightdm/repos/community-i686/lightdm-autologin.pam
  lightdm/repos/community-i686/lightdm-default-config.patch
  lightdm/repos/community-i686/lightdm.install
  lightdm/repos/community-i686/lightdm.pam
  lightdm/repos/community-i686/lightdm.rules
  lightdm/repos/community-i686/lightdm.service
  lightdm/repos/community-i686/lightdm.tmpfiles
  lightdm/repos/community-x86_64/PKGBUILD
  lightdm/repos/community-x86_64/Xsession
  lightdm/repos/community-x86_64/lightdm-autologin.pam
  lightdm/repos/community-x86_64/lightdm-default-config.patch
  lightdm/repos/community-x86_64/lightdm.install
  lightdm/repos/community-x86_64/lightdm.pam
  lightdm/repos/community-x86_64/lightdm.rules
  lightdm/repos/community-x86_64/lightdm.service
  lightdm/repos/community-x86_64/lightdm.tmpfiles

---+
 /PKGBUILD |  240 
 /Xsession |  114 +++
 /lightdm-autologin.pam|   26 ++
 /lightdm-default-config.patch |   90 +
 /lightdm.install  |   46 
 /lightdm.pam  |   14 +
 /lightdm.rules|   30 +++
 /lightdm.service  |   28 ++
 /lightdm.tmpfiles |2 
 community-i686/PKGBUILD   |  120 
 community-i686/Xsession   |   57 -
 community-i686/lightdm-autologin.pam  |   13 -
 community-i686/lightdm-default-config.patch   |   58 -
 community-i686/lightdm.install|   23 --
 community-i686/lightdm.pam|7 
 community-i686/lightdm.rules  |   15 -
 community-i686/lightdm.service|   14 -
 community-i686/lightdm.tmpfiles   |1 
 community-x86_64/PKGBUILD |  120 
 community-x86_64/Xsession |   57 -
 community-x86_64/lightdm-autologin.pam|   13 -
 community-x86_64/lightdm-default-config.patch |   58 -
 community-x86_64/lightdm.install  |   23 --
 community-x86_64/lightdm.pam  |7 
 community-x86_64/lightdm.rules|   15 -
 community-x86_64/lightdm.service  |   14 -
 community-x86_64/lightdm.tmpfiles |1 
 27 files changed, 590 insertions(+), 616 deletions(-)

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


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

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 12:27:47
  Author: alucryd
Revision: 109001

upgpkg: lightdm-gtk3-greeter 1:1.8.4-1

Modified:
  lightdm-gtk3-greeter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 10:22:20 UTC (rev 109000)
+++ PKGBUILD2014-04-09 10:27:47 UTC (rev 109001)
@@ -3,7 +3,7 @@
 # Contributor: Padfoot padf...@exemail.com.au
 
 pkgname=lightdm-gtk3-greeter
-pkgver=1.8.3
+pkgver=1.8.4
 pkgrel=1
 epoch=1
 pkgdesc='GTK+ greeter for LightDM'
@@ -17,7 +17,7 @@
 backup=('etc/lightdm/lightdm-gtk-greeter.conf')
 install=${pkgname/3/}.install
 
source=(https://launchpad.net/${pkgname/3/}/${pkgver%.?}/${pkgver}/+download/${pkgname/3/}-${pkgver}.tar.gz;)
-sha256sums=('5c4676a7aa85f1507d7169df8b2cc026db208811a8945d615adb53c50d80eb03')
+sha256sums=('cb3e93bfcb8fbaf109e01080dc75ec9a6803afcb68acbf9eef3799be927a2c6c')
 
 build() {
   cd ${pkgname/3/}-${pkgver}



[arch-commits] Commit in lightdm-gtk3-greeter/repos (12 files)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 12:28:04
  Author: alucryd
Revision: 109002

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

Added:
  lightdm-gtk3-greeter/repos/community-i686/PKGBUILD
(from rev 109001, lightdm-gtk3-greeter/trunk/PKGBUILD)
  lightdm-gtk3-greeter/repos/community-i686/lightdm-gtk-greeter.install
(from rev 109001, lightdm-gtk3-greeter/trunk/lightdm-gtk-greeter.install)
  lightdm-gtk3-greeter/repos/community-i686/session-preselection.patch
(from rev 109001, lightdm-gtk3-greeter/trunk/session-preselection.patch)
  lightdm-gtk3-greeter/repos/community-x86_64/PKGBUILD
(from rev 109001, lightdm-gtk3-greeter/trunk/PKGBUILD)
  lightdm-gtk3-greeter/repos/community-x86_64/lightdm-gtk-greeter.install
(from rev 109001, lightdm-gtk3-greeter/trunk/lightdm-gtk-greeter.install)
  lightdm-gtk3-greeter/repos/community-x86_64/session-preselection.patch
(from rev 109001, lightdm-gtk3-greeter/trunk/session-preselection.patch)
Deleted:
  lightdm-gtk3-greeter/repos/community-i686/PKGBUILD
  lightdm-gtk3-greeter/repos/community-i686/lightdm-gtk-greeter.install
  lightdm-gtk3-greeter/repos/community-i686/session-preselection.patch
  lightdm-gtk3-greeter/repos/community-x86_64/PKGBUILD
  lightdm-gtk3-greeter/repos/community-x86_64/lightdm-gtk-greeter.install
  lightdm-gtk3-greeter/repos/community-x86_64/session-preselection.patch

--+
 /PKGBUILD|   70 +
 /lightdm-gtk-greeter.install |   26 +
 /session-preselection.patch  |   38 +
 community-i686/PKGBUILD  |   35 
 community-i686/lightdm-gtk-greeter.install   |   13 
 community-i686/session-preselection.patch|   19 --
 community-x86_64/PKGBUILD|   35 
 community-x86_64/lightdm-gtk-greeter.install |   13 
 community-x86_64/session-preselection.patch  |   19 --
 9 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 10:27:47 UTC (rev 109001)
+++ community-i686/PKGBUILD 2014-04-09 10:28:04 UTC (rev 109002)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Padfoot padf...@exemail.com.au
-
-pkgname=lightdm-gtk3-greeter
-pkgver=1.8.3
-pkgrel=1
-epoch=1
-pkgdesc='GTK+ greeter for LightDM'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/lightdm-gtk-greeter'
-license=('GPL3' 'LGPL3')
-depends=('gtk3' 'lightdm')
-makedepends=('exo' 'gnome-doc-utils' 'gobject-introspection' 'intltool')
-provides=(${pkgname/3/})
-conflicts=(${pkgname/3/2})
-backup=('etc/lightdm/lightdm-gtk-greeter.conf')
-install=${pkgname/3/}.install
-source=(https://launchpad.net/${pkgname/3/}/${pkgver%.?}/${pkgver}/+download/${pkgname/3/}-${pkgver}.tar.gz;)
-sha256sums=('5c4676a7aa85f1507d7169df8b2cc026db208811a8945d615adb53c50d80eb03')
-
-build() {
-  cd ${pkgname/3/}-${pkgver}
-
-  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--libexecdir='/usr/lib/lightdm' --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname/3/}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lightdm-gtk3-greeter/repos/community-i686/PKGBUILD (from rev 109001, 
lightdm-gtk3-greeter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 10:28:04 UTC (rev 109002)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Padfoot padf...@exemail.com.au
+
+pkgname=lightdm-gtk3-greeter
+pkgver=1.8.4
+pkgrel=1
+epoch=1
+pkgdesc='GTK+ greeter for LightDM'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/lightdm-gtk-greeter'
+license=('GPL3' 'LGPL3')
+depends=('gtk3' 'lightdm')
+makedepends=('exo' 'gnome-doc-utils' 'gobject-introspection' 'intltool')
+provides=(${pkgname/3/})
+conflicts=(${pkgname/3/2})
+backup=('etc/lightdm/lightdm-gtk-greeter.conf')
+install=${pkgname/3/}.install
+source=(https://launchpad.net/${pkgname/3/}/${pkgver%.?}/${pkgver}/+download/${pkgname/3/}-${pkgver}.tar.gz;)
+sha256sums=('cb3e93bfcb8fbaf109e01080dc75ec9a6803afcb68acbf9eef3799be927a2c6c')
+
+build() {
+  cd ${pkgname/3/}-${pkgver}
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--libexecdir='/usr/lib/lightdm' --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname/3/}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/lightdm-gtk-greeter.install
===
--- community-i686/lightdm-gtk-greeter.install  2014-04-09 10:27:47 UTC (rev 
109001)
+++ community-i686/lightdm-gtk-greeter.install  2014-04-09 10:28:04 UTC (rev 
109002)
@@ -1,13 +0,0 @@

[arch-commits] Commit in lightdm-gtk2-greeter/trunk (PKGBUILD)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 12:32:35
  Author: alucryd
Revision: 109003

upgpkg: lightdm-gtk2-greeter 1:1.8.4-1

Modified:
  lightdm-gtk2-greeter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 10:28:04 UTC (rev 109002)
+++ PKGBUILD2014-04-09 10:32:35 UTC (rev 109003)
@@ -3,7 +3,7 @@
 # Contributor: Padfoot padf...@exemail.com.au
 
 pkgname=lightdm-gtk2-greeter
-pkgver=1.8.3
+pkgver=1.8.4
 pkgrel=1
 epoch=1
 pkgdesc='GTK+ greeter for LightDM'
@@ -17,7 +17,7 @@
 backup=('etc/lightdm/lightdm-gtk-greeter.conf')
 install=${pkgname/2/}.install
 
source=(https://launchpad.net/${pkgname/2/}/${pkgver%.?}/${pkgver}/+download/${pkgname/2/}-${pkgver}.tar.gz;)
-sha256sums=('5c4676a7aa85f1507d7169df8b2cc026db208811a8945d615adb53c50d80eb03')
+sha256sums=('cb3e93bfcb8fbaf109e01080dc75ec9a6803afcb68acbf9eef3799be927a2c6c')
 
 build() {
   cd ${pkgname/2/}-${pkgver}



[arch-commits] Commit in lightdm-gtk2-greeter/repos (12 files)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 12:32:53
  Author: alucryd
Revision: 109004

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

Added:
  lightdm-gtk2-greeter/repos/community-i686/PKGBUILD
(from rev 109003, lightdm-gtk2-greeter/trunk/PKGBUILD)
  lightdm-gtk2-greeter/repos/community-i686/lightdm-gtk-greeter.install
(from rev 109003, lightdm-gtk2-greeter/trunk/lightdm-gtk-greeter.install)
  lightdm-gtk2-greeter/repos/community-i686/session-preselection.patch
(from rev 109003, lightdm-gtk2-greeter/trunk/session-preselection.patch)
  lightdm-gtk2-greeter/repos/community-x86_64/PKGBUILD
(from rev 109003, lightdm-gtk2-greeter/trunk/PKGBUILD)
  lightdm-gtk2-greeter/repos/community-x86_64/lightdm-gtk-greeter.install
(from rev 109003, lightdm-gtk2-greeter/trunk/lightdm-gtk-greeter.install)
  lightdm-gtk2-greeter/repos/community-x86_64/session-preselection.patch
(from rev 109003, lightdm-gtk2-greeter/trunk/session-preselection.patch)
Deleted:
  lightdm-gtk2-greeter/repos/community-i686/PKGBUILD
  lightdm-gtk2-greeter/repos/community-i686/lightdm-gtk-greeter.install
  lightdm-gtk2-greeter/repos/community-i686/session-preselection.patch
  lightdm-gtk2-greeter/repos/community-x86_64/PKGBUILD
  lightdm-gtk2-greeter/repos/community-x86_64/lightdm-gtk-greeter.install
  lightdm-gtk2-greeter/repos/community-x86_64/session-preselection.patch

--+
 /PKGBUILD|   70 +
 /lightdm-gtk-greeter.install |   26 +
 /session-preselection.patch  |   38 +
 community-i686/PKGBUILD  |   35 
 community-i686/lightdm-gtk-greeter.install   |   13 
 community-i686/session-preselection.patch|   19 --
 community-x86_64/PKGBUILD|   35 
 community-x86_64/lightdm-gtk-greeter.install |   13 
 community-x86_64/session-preselection.patch  |   19 --
 9 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 10:32:35 UTC (rev 109003)
+++ community-i686/PKGBUILD 2014-04-09 10:32:53 UTC (rev 109004)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Padfoot padf...@exemail.com.au
-
-pkgname=lightdm-gtk2-greeter
-pkgver=1.8.3
-pkgrel=1
-epoch=1
-pkgdesc='GTK+ greeter for LightDM'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/lightdm-gtk-greeter'
-license=('GPL3' 'LGPL3')
-depends=('gtk2' 'lightdm')
-makedepends=('exo' 'gnome-doc-utils' 'gobject-introspection' 'intltool')
-provides=(${pkgname/2/})
-conflicts=(${pkgname/2/3})
-backup=('etc/lightdm/lightdm-gtk-greeter.conf')
-install=${pkgname/2/}.install
-source=(https://launchpad.net/${pkgname/2/}/${pkgver%.?}/${pkgver}/+download/${pkgname/2/}-${pkgver}.tar.gz;)
-sha256sums=('5c4676a7aa85f1507d7169df8b2cc026db208811a8945d615adb53c50d80eb03')
-
-build() {
-  cd ${pkgname/2/}-${pkgver}
-
-  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--libexecdir='/usr/lib/lightdm' --disable-static --with-gtk2
-  make
-}
-
-package() {
-  cd ${pkgname/2/}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lightdm-gtk2-greeter/repos/community-i686/PKGBUILD (from rev 109003, 
lightdm-gtk2-greeter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 10:32:53 UTC (rev 109004)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Padfoot padf...@exemail.com.au
+
+pkgname=lightdm-gtk2-greeter
+pkgver=1.8.4
+pkgrel=1
+epoch=1
+pkgdesc='GTK+ greeter for LightDM'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/lightdm-gtk-greeter'
+license=('GPL3' 'LGPL3')
+depends=('gtk2' 'lightdm')
+makedepends=('exo' 'gnome-doc-utils' 'gobject-introspection' 'intltool')
+provides=(${pkgname/2/})
+conflicts=(${pkgname/2/3})
+backup=('etc/lightdm/lightdm-gtk-greeter.conf')
+install=${pkgname/2/}.install
+source=(https://launchpad.net/${pkgname/2/}/${pkgver%.?}/${pkgver}/+download/${pkgname/2/}-${pkgver}.tar.gz;)
+sha256sums=('cb3e93bfcb8fbaf109e01080dc75ec9a6803afcb68acbf9eef3799be927a2c6c')
+
+build() {
+  cd ${pkgname/2/}-${pkgver}
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--libexecdir='/usr/lib/lightdm' --disable-static --with-gtk2
+  make
+}
+
+package() {
+  cd ${pkgname/2/}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/lightdm-gtk-greeter.install
===
--- community-i686/lightdm-gtk-greeter.install  2014-04-09 10:32:35 UTC (rev 
109003)
+++ community-i686/lightdm-gtk-greeter.install  2014-04-09 10:32:53 UTC (rev 

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

2014-04-09 Thread Jan de Groot
Date: Wednesday, April 9, 2014 @ 12:55:26
  Author: jgc
Revision: 209930

upgpkg: nss 3.16-1

Modified:
  nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 07:42:54 UTC (rev 209929)
+++ PKGBUILD2014-04-09 10:55:26 UTC (rev 209930)
@@ -2,13 +2,13 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=nss
-pkgver=3.15.5
-pkgrel=2
+pkgver=3.16
+pkgrel=1
 pkgdesc=Mozilla Network Security Services
 arch=(i686 x86_64)
 url=http://www.mozilla.org/projects/security/pki/nss/;
 license=('MPL' 'GPL')
-_nsprver=4.10.2
+_nsprver=4.10.4
 depends=(nspr=${_nsprver} 'sqlite' 'zlib' 'sh')
 makedepends=('perl')
 options=('!strip' '!makeflags' 'staticlibs')
@@ -16,7 +16,7 @@
 nss.pc.in
 nss-config.in
 ssl-renegotiate-transitional.patch)
-sha1sums=('c8d34a33cf5782d35df1aa78cdb38707d7bfc5fe'
+sha1sums=('981dc6ef2f1e69ec7e2b277ce27c7005e9837f95'
   'aa5b2c0aa38d3c1066d511336cf28d1333e3aebd'
   'cb744cc3e56b604e4754bc3c7d9f25bb9a0a136c'
   '8a964a744ba098711b80c0d279a2993524e8eb92')



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

2014-04-09 Thread Jan de Groot
Date: Wednesday, April 9, 2014 @ 12:55:38
  Author: jgc
Revision: 209931

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

Added:
  nss/repos/extra-i686/PKGBUILD
(from rev 209930, nss/trunk/PKGBUILD)
  nss/repos/extra-i686/nss-config.in
(from rev 209930, nss/trunk/nss-config.in)
  nss/repos/extra-i686/nss.pc.in
(from rev 209930, nss/trunk/nss.pc.in)
  nss/repos/extra-i686/ssl-renegotiate-transitional.patch
(from rev 209930, nss/trunk/ssl-renegotiate-transitional.patch)
  nss/repos/extra-x86_64/PKGBUILD
(from rev 209930, nss/trunk/PKGBUILD)
  nss/repos/extra-x86_64/nss-config.in
(from rev 209930, nss/trunk/nss-config.in)
  nss/repos/extra-x86_64/nss.pc.in
(from rev 209930, nss/trunk/nss.pc.in)
  nss/repos/extra-x86_64/ssl-renegotiate-transitional.patch
(from rev 209930, nss/trunk/ssl-renegotiate-transitional.patch)
Deleted:
  nss/repos/extra-i686/PKGBUILD
  nss/repos/extra-i686/nss-config.in
  nss/repos/extra-i686/nss.pc.in
  nss/repos/extra-i686/ssl-renegotiate-transitional.patch
  nss/repos/extra-x86_64/PKGBUILD
  nss/repos/extra-x86_64/nss-config.in
  nss/repos/extra-x86_64/nss.pc.in
  nss/repos/extra-x86_64/ssl-renegotiate-transitional.patch

-+
 /PKGBUILD   |  182 +
 /nss-config.in  |  290 ++
 /nss.pc.in  |   22 +
 /ssl-renegotiate-transitional.patch |   42 +++
 extra-i686/PKGBUILD |   91 --
 extra-i686/nss-config.in|  145 ---
 extra-i686/nss.pc.in|   11 
 extra-i686/ssl-renegotiate-transitional.patch   |   21 -
 extra-x86_64/PKGBUILD   |   91 --
 extra-x86_64/nss-config.in  |  145 ---
 extra-x86_64/nss.pc.in  |   11 
 extra-x86_64/ssl-renegotiate-transitional.patch |   21 -
 12 files changed, 536 insertions(+), 536 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 10:55:26 UTC (rev 209930)
+++ extra-i686/PKGBUILD 2014-04-09 10:55:38 UTC (rev 209931)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=nss
-pkgver=3.15.5
-pkgrel=2
-pkgdesc=Mozilla Network Security Services
-arch=(i686 x86_64)
-url=http://www.mozilla.org/projects/security/pki/nss/;
-license=('MPL' 'GPL')
-_nsprver=4.10.2
-depends=(nspr=${_nsprver} 'sqlite' 'zlib' 'sh')
-makedepends=('perl')
-options=('!strip' '!makeflags' 'staticlibs')
-source=(ftp://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/${pkgname}-${pkgver}.tar.gz
-nss.pc.in
-nss-config.in
-ssl-renegotiate-transitional.patch)
-sha1sums=('c8d34a33cf5782d35df1aa78cdb38707d7bfc5fe'
-  'aa5b2c0aa38d3c1066d511336cf28d1333e3aebd'
-  'cb744cc3e56b604e4754bc3c7d9f25bb9a0a136c'
-  '8a964a744ba098711b80c0d279a2993524e8eb92')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Adds transitional SSL renegotiate support - patch from Debian
-  patch -Np3 -i ../ssl-renegotiate-transitional.patch
-
-  # Respect LDFLAGS
-  sed -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/' \
-  -i nss/coreconf/rules.mk
-}
-
-
-build() {
-  cd $pkgname-$pkgver/nss
-
-  export BUILD_OPT=1
-  export NSS_USE_SYSTEM_SQLITE=1
-  export NSS_ENABLE_ECC=1
-  export NSPR_INCLUDE_DIR=`nspr-config --includedir`
-  export NSPR_LIB_DIR=`nspr-config --libdir`
-  export XCFLAGS=${CFLAGS}
-
-  [ $CARCH = x86_64 ]  export USE_64=1
-
-  make -C coreconf
-  make -C lib/dbm
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -d $pkgdir/usr/{bin,include/nss,lib/pkgconfig}
-
-  NSS_VMAJOR=$(grep '#define.*NSS_VMAJOR' nss/lib/nss/nss.h | awk '{print $3}')
-  NSS_VMINOR=$(grep '#define.*NSS_VMINOR' nss/lib/nss/nss.h | awk '{print $3}')
-  NSS_VPATCH=$(grep '#define.*NSS_VPATCH' nss/lib/nss/nss.h | awk '{print $3}')
-
-  sed ../nss.pc.in \
--e s,%libdir%,/usr/lib,g \
--e s,%prefix%,/usr,g \
--e s,%exec_prefix%,/usr/bin,g \
--e s,%includedir%,/usr/include/nss,g \
--e s,%NSPR_VERSION%,${_nsprver},g \
--e s,%NSS_VERSION%,${pkgver},g \
- $pkgdir/usr/lib/pkgconfig/nss.pc
-  ln -s nss.pc $pkgdir/usr/lib/pkgconfig/mozilla-nss.pc
-
-  sed ../nss-config.in \
--e s,@libdir@,/usr/lib,g \
--e s,@prefix@,/usr/bin,g \
--e s,@exec_prefix@,/usr/bin,g \
--e s,@includedir@,/usr/include/nss,g \
--e s,@MOD_MAJOR_VERSION@,${NSS_VMAJOR},g \
--e s,@MOD_MINOR_VERSION@,${NSS_VMINOR},g \
--e s,@MOD_PATCH_VERSION@,${NSS_VPATCH},g \
- $pkgdir/usr/bin/nss-config
-  chmod 755 $pkgdir/usr/bin/nss-config
-
-  cd dist/*.OBJ/bin
-  install -t $pkgdir/usr/bin *util shlibsign signtool signver ssltap
-
-  cd ../lib
-  install -t $pkgdir/usr/lib *.so
-  install -t $pkgdir/usr/lib -m644 libcrmf.a *.chk
-
-  cd 

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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 12:59:33
  Author: tredaelli
Revision: 109005

upgpkg: miniupnpc 1.9.20140401-1

Modified:
  miniupnpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 10:32:53 UTC (rev 109004)
+++ PKGBUILD2014-04-09 10:59:33 UTC (rev 109005)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli timothy.redae...@gmail.com
 # Contributor: Florian Loitsch archli...@florian.loitsch.com
 pkgname=miniupnpc
-pkgver=1.9
+pkgver=1.9.20140401
 pkgrel=1
 pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('sh')
 source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
-sha256sums=('2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464')
+sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 12:59:45
  Author: tredaelli
Revision: 109006

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 10:59:33 UTC (rev 109005)
+++ community-i686/PKGBUILD 2014-04-09 10:59:45 UTC (rev 109006)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Florian Loitsch archli...@florian.loitsch.com
-pkgname=miniupnpc
-pkgver=1.9
-pkgrel=1
-pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
-arch=('i686' 'x86_64')
-url=http://miniupnp.free.fr;
-license=('BSD')
-depends=('sh')
-source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
-sha256sums=('2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=$pkgdir/ install
-  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: miniupnpc/repos/community-i686/PKGBUILD (from rev 109005, 
miniupnpc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 10:59:45 UTC (rev 109006)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Florian Loitsch archli...@florian.loitsch.com
+pkgname=miniupnpc
+pkgver=1.9.20140401
+pkgrel=1
+pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
+arch=('i686' 'x86_64')
+url=http://miniupnp.free.fr;
+license=('BSD')
+depends=('sh')
+source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=$pkgdir/ install
+  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 10:59:33 UTC (rev 109005)
+++ community-x86_64/PKGBUILD   2014-04-09 10:59:45 UTC (rev 109006)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Florian Loitsch archli...@florian.loitsch.com
-pkgname=miniupnpc
-pkgver=1.9
-pkgrel=1
-pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
-arch=('i686' 'x86_64')
-url=http://miniupnp.free.fr;
-license=('BSD')
-depends=('sh')
-source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
-sha256sums=('2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=$pkgdir/ install
-  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: miniupnpc/repos/community-x86_64/PKGBUILD (from rev 109005, 
miniupnpc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 10:59:45 UTC (rev 109006)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Florian Loitsch archli...@florian.loitsch.com
+pkgname=miniupnpc
+pkgver=1.9.20140401
+pkgrel=1
+pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
+arch=('i686' 'x86_64')
+url=http://miniupnp.free.fr;
+license=('BSD')
+depends=('sh')
+source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=$pkgdir/ install
+  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 13:00:33
  Author: tredaelli
Revision: 109008

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

Added:
  miniupnpd/repos/community-i686/PKGBUILD
(from rev 109007, miniupnpd/trunk/PKGBUILD)
  miniupnpd/repos/community-i686/miniupnpd.systemd
(from rev 109007, miniupnpd/trunk/miniupnpd.systemd)
  miniupnpd/repos/community-x86_64/PKGBUILD
(from rev 109007, miniupnpd/trunk/PKGBUILD)
  miniupnpd/repos/community-x86_64/miniupnpd.systemd
(from rev 109007, miniupnpd/trunk/miniupnpd.systemd)
Deleted:
  miniupnpd/repos/community-i686/PKGBUILD
  miniupnpd/repos/community-i686/miniupnpd.systemd
  miniupnpd/repos/community-x86_64/PKGBUILD
  miniupnpd/repos/community-x86_64/miniupnpd.systemd

+
 /PKGBUILD  |   82 +++
 /miniupnpd.systemd |   24 ++
 community-i686/PKGBUILD|   41 -
 community-i686/miniupnpd.systemd   |   12 -
 community-x86_64/PKGBUILD  |   41 -
 community-x86_64/miniupnpd.systemd |   12 -
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:00:24 UTC (rev 109007)
+++ community-i686/PKGBUILD 2014-04-09 11:00:33 UTC (rev 109008)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: fauno fa...@parabola.nu
-pkgname=miniupnpd
-pkgver=1.8.20131216
-pkgrel=1
-pkgdesc=Lightweight UPnP IGD daemon
-arch=('i686' 'x86_64')
-url=http://miniupnp.free.fr;
-license=('BSD')
-backup=(etc/miniupnpd/miniupnpd.conf)
-depends=('libnfnetlink' 'iptables' 'net-tools' 'util-linux')
-makedepends=('lsb-release')
-source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;
-miniupnpd.systemd)
-sha256sums=('f016e21d84ecce7887cef4ec74354afe465412022c013473f3ac3e33ca51a8a7'
-'2707d028f28fbb28c3a9d13605c9c738e9628f828e22288a8a1492ac93f9ad7c')
-
-build() {
-   cd $pkgname-$pkgver
-
-   CONFIG_OPTIONS=--strict --ipv6 --leasefile make -f Makefile.linux 
config.h
-   make -f Makefile.linux
-}
-
-package() {
-   cd $pkgname-$pkgver
-   mkdir -p $pkgdir/usr/share/man/man8
-
-   make PREFIX=$pkgdir/ SBININSTALLDIR=$pkgdir/usr/bin -f 
Makefile.linux install
-
-   rm -r ${pkgdir}/etc/init.d
-
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm644 ${srcdir}/miniupnpd.systemd 
${pkgdir}/usr/lib/systemd/system/miniupnpd.service
-
-   sed -i 's:/s\?bin/iptables:/usr/bin/iptables:
-   s:eth0:`cat /etc/miniupnpd/miniupnpd.conf | 'awk -F= 
'/^ext_ifname/ { print \$2 }''`:' ${pkgdir}/etc/miniupnpd/*.sh
-   sed -i -e s/^uuid=[-0-9a-f]*/uuid=----/
-  s/make genuuid/uuidgen/ 
${pkgdir}/etc/miniupnpd/miniupnpd.conf
-}

Copied: miniupnpd/repos/community-i686/PKGBUILD (from rev 109007, 
miniupnpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:00:33 UTC (rev 109008)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: fauno fa...@parabola.nu
+pkgname=miniupnpd
+pkgver=1.8.20140401
+pkgrel=1
+pkgdesc=Lightweight UPnP IGD daemon
+arch=('i686' 'x86_64')
+url=http://miniupnp.free.fr;
+license=('BSD')
+backup=(etc/miniupnpd/miniupnpd.conf)
+depends=('libnfnetlink' 'iptables' 'net-tools' 'util-linux')
+makedepends=('lsb-release')
+source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;
+miniupnpd.systemd)
+sha256sums=('086dfffa59e8e86e792b73a71d275fec55ef17fe3e94a8c140301aceb05bcdbd'
+'2707d028f28fbb28c3a9d13605c9c738e9628f828e22288a8a1492ac93f9ad7c')
+
+build() {
+   cd $pkgname-$pkgver
+
+   CONFIG_OPTIONS=--strict --ipv6 --leasefile make -f Makefile.linux 
config.h
+   make -f Makefile.linux
+}
+
+package() {
+   cd $pkgname-$pkgver
+   mkdir -p $pkgdir/usr/share/man/man8
+
+   make PREFIX=$pkgdir/ SBININSTALLDIR=$pkgdir/usr/bin -f 
Makefile.linux install
+
+   rm -r ${pkgdir}/etc/init.d
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm644 ${srcdir}/miniupnpd.systemd 
${pkgdir}/usr/lib/systemd/system/miniupnpd.service
+
+   sed -i 's:/s\?bin/iptables:/usr/bin/iptables:
+   s:eth0:`cat /etc/miniupnpd/miniupnpd.conf | 'awk -F= 
'/^ext_ifname/ { print \$2 }''`:' ${pkgdir}/etc/miniupnpd/*.sh
+   sed -i -e s/^uuid=[-0-9a-f]*/uuid=----/
+  s/make genuuid/uuidgen/ 
${pkgdir}/etc/miniupnpd/miniupnpd.conf
+}

Deleted: community-i686/miniupnpd.systemd
===

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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 13:00:24
  Author: tredaelli
Revision: 109007

upgpkg: miniupnpd 1.8.20140401-1

Modified:
  miniupnpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 10:59:45 UTC (rev 109006)
+++ PKGBUILD2014-04-09 11:00:24 UTC (rev 109007)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli timothy.redae...@gmail.com
 # Contributor: fauno fa...@parabola.nu
 pkgname=miniupnpd
-pkgver=1.8.20131216
+pkgver=1.8.20140401
 pkgrel=1
 pkgdesc=Lightweight UPnP IGD daemon
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('lsb-release')
 source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;
 miniupnpd.systemd)
-sha256sums=('f016e21d84ecce7887cef4ec74354afe465412022c013473f3ac3e33ca51a8a7'
+sha256sums=('086dfffa59e8e86e792b73a71d275fec55ef17fe3e94a8c140301aceb05bcdbd'
 '2707d028f28fbb28c3a9d13605c9c738e9628f828e22288a8a1492ac93f9ad7c')
 
 build() {



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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 13:02:21
  Author: tredaelli
Revision: 109009

upgpkg: vidalia 0.2.21-3

Rebuild for new openssl

Modified:
  vidalia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:00:33 UTC (rev 109008)
+++ PKGBUILD2014-04-09 11:02:21 UTC (rev 109009)
@@ -4,7 +4,7 @@
 
 pkgname=vidalia
 pkgver=0.2.21
-pkgrel=2
+pkgrel=3
 pkgdesc=Controller GUI for Tor
 url=https://www.torproject.org/vidalia;
 arch=('i686' 'x86_64')



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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 13:02:32
  Author: tredaelli
Revision: 109010

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

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

--+
 /PKGBUILD|   62 +
 /vidalia.install |   22 +
 community-i686/PKGBUILD  |   31 --
 community-i686/vidalia.install   |   11 --
 community-x86_64/PKGBUILD|   31 --
 community-x86_64/vidalia.install |   11 --
 6 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:02:21 UTC (rev 109009)
+++ community-i686/PKGBUILD 2014-04-09 11:02:32 UTC (rev 109010)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Rorschach r0rsch...@lavabit.com
-
-pkgname=vidalia
-pkgver=0.2.21
-pkgrel=2
-pkgdesc=Controller GUI for Tor
-url=https://www.torproject.org/vidalia;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('geoip' 'qt4' 'tor')
-makedepends=('cmake')
-install=vidalia.install
-source=(https://www.torproject.org/vidalia/dist/$pkgname-$pkgver.tar.gz{,.asc})
-md5sums=('8d3079a66d79c79ccfefb929b820f9ac'
- 'c735521ae9d231e974c753a5206c2c0f')
-
-build() {
-  cd $srcdir
-  mkdir build
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -DUSE_GEOIP=1 ../$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir/ install
-  install -Dm644 ../$pkgname-$pkgver/doc/vidalia.1 
$pkgdir/usr/share/man/man1/vidalia.1 || return 1
-}

Copied: vidalia/repos/community-i686/PKGBUILD (from rev 109009, 
vidalia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:02:32 UTC (rev 109010)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Rorschach r0rsch...@lavabit.com
+
+pkgname=vidalia
+pkgver=0.2.21
+pkgrel=3
+pkgdesc=Controller GUI for Tor
+url=https://www.torproject.org/vidalia;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('geoip' 'qt4' 'tor')
+makedepends=('cmake')
+install=vidalia.install
+source=(https://www.torproject.org/vidalia/dist/$pkgname-$pkgver.tar.gz{,.asc})
+md5sums=('8d3079a66d79c79ccfefb929b820f9ac'
+ 'c735521ae9d231e974c753a5206c2c0f')
+
+build() {
+  cd $srcdir
+  mkdir build
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -DUSE_GEOIP=1 ../$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir/ install
+  install -Dm644 ../$pkgname-$pkgver/doc/vidalia.1 
$pkgdir/usr/share/man/man1/vidalia.1 || return 1
+}

Deleted: community-i686/vidalia.install
===
--- community-i686/vidalia.install  2014-04-09 11:02:21 UTC (rev 109009)
+++ community-i686/vidalia.install  2014-04-09 11:02:32 UTC (rev 109010)
@@ -1,11 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}

Copied: vidalia/repos/community-i686/vidalia.install (from rev 109009, 
vidalia/trunk/vidalia.install)
===
--- community-i686/vidalia.install  (rev 0)
+++ community-i686/vidalia.install  2014-04-09 11:02:32 UTC (rev 109010)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 11:02:21 UTC (rev 109009)
+++ community-x86_64/PKGBUILD   2014-04-09 11:02:32 UTC (rev 109010)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Rorschach r0rsch...@lavabit.com
-
-pkgname=vidalia
-pkgver=0.2.21
-pkgrel=2
-pkgdesc=Controller GUI for Tor
-url=https://www.torproject.org/vidalia;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('geoip' 'qt4' 'tor')

[arch-commits] Commit in (11 files)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 13:09:05
  Author: alucryd
Revision: 109011

Add light-locker

Added:
  libxxf86misc/
  libxxf86misc/trunk/
  libxxf86misc/trunk/MKPKG
  libxxf86misc/trunk/PKGBUILD
  light-locker/
  light-locker/trunk/
  light-locker/trunk/PKGBUILD
  xf86miscproto/
  xf86miscproto/trunk/
  xf86miscproto/trunk/MKPKG
  xf86miscproto/trunk/PKGBUILD

--+
 libxxf86misc/trunk/MKPKG |4 
 libxxf86misc/trunk/PKGBUILD  |   33 +
 light-locker/trunk/PKGBUILD  |   29 +
 xf86miscproto/trunk/MKPKG|4 
 xf86miscproto/trunk/PKGBUILD |   32 
 5 files changed, 102 insertions(+)

Added: libxxf86misc/trunk/MKPKG
===
--- libxxf86misc/trunk/MKPKG(rev 0)
+++ libxxf86misc/trunk/MKPKG2014-04-09 11:09:05 UTC (rev 109011)
@@ -0,0 +1,4 @@
+pkgname=('libxxf86misc')
+builddeps=('xf86miscproto')
+
+# vim: ts=2 sw=2 et:

Added: libxxf86misc/trunk/PKGBUILD
===
--- libxxf86misc/trunk/PKGBUILD (rev 0)
+++ libxxf86misc/trunk/PKGBUILD 2014-04-09 11:09:05 UTC (rev 109011)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=libxxf86misc
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='X11 XFree86 misc extension library'
+arch=('x86_64' 'i686')
+license=('custom')
+url='http://xorg.freedesktop.org/'
+depends=('libxext' 'xf86miscproto')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/lib/libXxf86misc-${pkgver}.tar.bz2)
+sha256sums=('563f4200862efd3334c33a669e0a0aae5bab31f3998db75b87a99a697cc26b5b')
+
+build() {
+  cd libXxf86misc-${pkgver}
+
+  ./configure --prefix='/usr' --disable-static
+  make
+}
+
+package() {
+  cd libXxf86misc-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: libxxf86misc/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: light-locker/trunk/PKGBUILD
===
--- light-locker/trunk/PKGBUILD (rev 0)
+++ light-locker/trunk/PKGBUILD 2014-04-09 11:09:05 UTC (rev 109011)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=light-locker
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='A simple session locker'
+arch=('i686' 'x86_64')
+url='https://github.com/the-cavalry/light-locker'
+license=('GPL2')
+depends=('dbus-glib' 'gtk3' 'libxxf86misc' 'lightdm' 'libxss')
+makedepends=('gnome-common' 'intltool')
+source=(https://github.com/the-cavalry/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('560f20390b24513d5bf7b691bac5d745b76eb21ac3bccd877b73cb7f6d137ec3')
+
+build () {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' 
--disable-{schemas-compile,static} --with-{mit-ext,systemd,xf86gamma-ext,x} 
--without-{console-kit,upower}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: light-locker/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: xf86miscproto/trunk/MKPKG
===
--- xf86miscproto/trunk/MKPKG   (rev 0)
+++ xf86miscproto/trunk/MKPKG   2014-04-09 11:09:05 UTC (rev 109011)
@@ -0,0 +1,4 @@
+arch=('any')
+pkgname=('xf86miscproto')
+
+# vim: ts=2 sw=2 et:

Added: xf86miscproto/trunk/PKGBUILD
===
--- xf86miscproto/trunk/PKGBUILD(rev 0)
+++ xf86miscproto/trunk/PKGBUILD2014-04-09 11:09:05 UTC (rev 109011)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=xf86miscproto
+pkgver=0.9.3
+pkgrel=1
+pkgdesc='X11 Misc extension wire protocol'
+arch=('any')
+url='http://xorg.freedesktop.org/'
+license=('custom')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('45b8ec6a4a8ca21066dce117e09dcc88539862e616e60fb391de05b36f63b095')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: xf86miscproto/trunk/PKGBUILD

[arch-commits] Commit in xf86miscproto (4 files)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 13:10:10
  Author: alucryd
Revision: 109012

archrelease: copy trunk to community-any

Added:
  xf86miscproto/repos/
  xf86miscproto/repos/community-any/
  xf86miscproto/repos/community-any/MKPKG
(from rev 109011, xf86miscproto/trunk/MKPKG)
  xf86miscproto/repos/community-any/PKGBUILD
(from rev 109011, xf86miscproto/trunk/PKGBUILD)

--+
 MKPKG|4 
 PKGBUILD |   32 
 2 files changed, 36 insertions(+)

Copied: xf86miscproto/repos/community-any/MKPKG (from rev 109011, 
xf86miscproto/trunk/MKPKG)
===
--- repos/community-any/MKPKG   (rev 0)
+++ repos/community-any/MKPKG   2014-04-09 11:10:10 UTC (rev 109012)
@@ -0,0 +1,4 @@
+arch=('any')
+pkgname=('xf86miscproto')
+
+# vim: ts=2 sw=2 et:

Copied: xf86miscproto/repos/community-any/PKGBUILD (from rev 109011, 
xf86miscproto/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2014-04-09 11:10:10 UTC (rev 109012)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=xf86miscproto
+pkgver=0.9.3
+pkgrel=1
+pkgdesc='X11 Misc extension wire protocol'
+arch=('any')
+url='http://xorg.freedesktop.org/'
+license=('custom')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('45b8ec6a4a8ca21066dce117e09dcc88539862e616e60fb391de05b36f63b095')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in libxxf86misc (7 files)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 13:11:45
  Author: alucryd
Revision: 109013

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

Added:
  libxxf86misc/repos/
  libxxf86misc/repos/community-i686/
  libxxf86misc/repos/community-i686/MKPKG
(from rev 109012, libxxf86misc/trunk/MKPKG)
  libxxf86misc/repos/community-i686/PKGBUILD
(from rev 109012, libxxf86misc/trunk/PKGBUILD)
  libxxf86misc/repos/community-x86_64/
  libxxf86misc/repos/community-x86_64/MKPKG
(from rev 109012, libxxf86misc/trunk/MKPKG)
  libxxf86misc/repos/community-x86_64/PKGBUILD
(from rev 109012, libxxf86misc/trunk/PKGBUILD)

---+
 community-i686/MKPKG  |4 
 community-i686/PKGBUILD   |   33 +
 community-x86_64/MKPKG|4 
 community-x86_64/PKGBUILD |   33 +
 4 files changed, 74 insertions(+)

Copied: libxxf86misc/repos/community-i686/MKPKG (from rev 109012, 
libxxf86misc/trunk/MKPKG)
===
--- repos/community-i686/MKPKG  (rev 0)
+++ repos/community-i686/MKPKG  2014-04-09 11:11:45 UTC (rev 109013)
@@ -0,0 +1,4 @@
+pkgname=('libxxf86misc')
+builddeps=('xf86miscproto')
+
+# vim: ts=2 sw=2 et:

Copied: libxxf86misc/repos/community-i686/PKGBUILD (from rev 109012, 
libxxf86misc/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-04-09 11:11:45 UTC (rev 109013)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=libxxf86misc
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='X11 XFree86 misc extension library'
+arch=('x86_64' 'i686')
+license=('custom')
+url='http://xorg.freedesktop.org/'
+depends=('libxext' 'xf86miscproto')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/lib/libXxf86misc-${pkgver}.tar.bz2)
+sha256sums=('563f4200862efd3334c33a669e0a0aae5bab31f3998db75b87a99a697cc26b5b')
+
+build() {
+  cd libXxf86misc-${pkgver}
+
+  ./configure --prefix='/usr' --disable-static
+  make
+}
+
+package() {
+  cd libXxf86misc-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:

Copied: libxxf86misc/repos/community-x86_64/MKPKG (from rev 109012, 
libxxf86misc/trunk/MKPKG)
===
--- repos/community-x86_64/MKPKG(rev 0)
+++ repos/community-x86_64/MKPKG2014-04-09 11:11:45 UTC (rev 109013)
@@ -0,0 +1,4 @@
+pkgname=('libxxf86misc')
+builddeps=('xf86miscproto')
+
+# vim: ts=2 sw=2 et:

Copied: libxxf86misc/repos/community-x86_64/PKGBUILD (from rev 109012, 
libxxf86misc/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-04-09 11:11:45 UTC (rev 109013)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=libxxf86misc
+pkgver=1.0.3
+pkgrel=2
+pkgdesc='X11 XFree86 misc extension library'
+arch=('x86_64' 'i686')
+license=('custom')
+url='http://xorg.freedesktop.org/'
+depends=('libxext' 'xf86miscproto')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/lib/libXxf86misc-${pkgver}.tar.bz2)
+sha256sums=('563f4200862efd3334c33a669e0a0aae5bab31f3998db75b87a99a697cc26b5b')
+
+build() {
+  cd libXxf86misc-${pkgver}
+
+  ./configure --prefix='/usr' --disable-static
+  make
+}
+
+package() {
+  cd libXxf86misc-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:23:50
  Author: spupykin
Revision: 109014

upgpkg: libmediainfo 0.7.68-1

upd

Modified:
  libmediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:11:45 UTC (rev 109013)
+++ PKGBUILD2014-04-09 11:23:50 UTC (rev 109014)
@@ -3,7 +3,7 @@
 # Maintainer:  hydro hy...@freenet.de
 
 pkgname=libmediainfo
-pkgver=0.7.67
+pkgver=0.7.68
 pkgrel=1
 pkgdesc=shared library for mediainfo
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('libtool' 'automake' 'autoconf')
 source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
libmediainfo-0.7.50-libmms.patch)
-md5sums=('c6372a176f45a9971740b46c652f65eb'
+md5sums=('838a472b430a28383366ad335c7b5416'
  '2f4b21cc250f663d52b497dedb963e3b')
 
 build() {



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:06
  Author: spupykin
Revision: 109015

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

Added:
  libmediainfo/repos/community-i686/PKGBUILD
(from rev 109014, libmediainfo/trunk/PKGBUILD)
  libmediainfo/repos/community-i686/libmediainfo-0.7.50-libmms.patch
(from rev 109014, libmediainfo/trunk/libmediainfo-0.7.50-libmms.patch)
  libmediainfo/repos/community-x86_64/PKGBUILD
(from rev 109014, libmediainfo/trunk/PKGBUILD)
  libmediainfo/repos/community-x86_64/libmediainfo-0.7.50-libmms.patch
(from rev 109014, libmediainfo/trunk/libmediainfo-0.7.50-libmms.patch)
Deleted:
  libmediainfo/repos/community-i686/PKGBUILD
  libmediainfo/repos/community-i686/libmediainfo-0.7.50-libmms.patch
  libmediainfo/repos/community-x86_64/PKGBUILD
  libmediainfo/repos/community-x86_64/libmediainfo-0.7.50-libmms.patch

---+
 /PKGBUILD |   76 +++
 /libmediainfo-0.7.50-libmms.patch |  100 
 community-i686/PKGBUILD   |   38 ---
 community-i686/libmediainfo-0.7.50-libmms.patch   |   50 --
 community-x86_64/PKGBUILD |   38 ---
 community-x86_64/libmediainfo-0.7.50-libmms.patch |   50 --
 6 files changed, 176 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:23:50 UTC (rev 109014)
+++ community-i686/PKGBUILD 2014-04-09 11:24:06 UTC (rev 109015)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  hydro hy...@freenet.de
-
-pkgname=libmediainfo
-pkgver=0.7.67
-pkgrel=1
-pkgdesc=shared library for mediainfo
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=( 'curl' 'libmms' 'libzen')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
-   libmediainfo-0.7.50-libmms.patch)
-md5sums=('c6372a176f45a9971740b46c652f65eb'
- '2f4b21cc250f663d52b497dedb963e3b')
-
-build() {
-  cd $srcdir/MediaInfoLib/Project/GNU/Library
-  sh ./autogen
-  ./configure --prefix=/usr --enable-shared --disable-static --with-libcurl 
--with-libmms
-  make clean
-  (cd ../../..  patch -p1 $srcdir/libmediainfo-0.7.50-libmms.patch)
-  make
-}
-
-package() {
-  cd $srcdir/MediaInfoLib/Project/GNU/Library
-  make DESTDIR=$pkgdir install
-  for i in MediaInfo MediaInfoDLL; do
-install -dm 755 $pkgdir/usr/include/$i
-install -m 644 $srcdir/MediaInfoLib/Source/$i/*.h $pkgdir/usr/include/$i
-  done
-  install -dm 755 $pkgdir/usr/lib/pkgconfig
-  install -m 644 $srcdir/MediaInfoLib/Project/GNU/Library/libmediainfo.pc 
$pkgdir/usr/lib/pkgconfig
-  sed -i -e 's|Version: |Version: '$pkgver'|g' 
$pkgdir/usr/lib/pkgconfig/libmediainfo.pc
-}

Copied: libmediainfo/repos/community-i686/PKGBUILD (from rev 109014, 
libmediainfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:24:06 UTC (rev 109015)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  hydro hy...@freenet.de
+
+pkgname=libmediainfo
+pkgver=0.7.68
+pkgrel=1
+pkgdesc=shared library for mediainfo
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=( 'curl' 'libmms' 'libzen')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
+   libmediainfo-0.7.50-libmms.patch)
+md5sums=('838a472b430a28383366ad335c7b5416'
+ '2f4b21cc250f663d52b497dedb963e3b')
+
+build() {
+  cd $srcdir/MediaInfoLib/Project/GNU/Library
+  sh ./autogen
+  ./configure --prefix=/usr --enable-shared --disable-static --with-libcurl 
--with-libmms
+  make clean
+  (cd ../../..  patch -p1 $srcdir/libmediainfo-0.7.50-libmms.patch)
+  make
+}
+
+package() {
+  cd $srcdir/MediaInfoLib/Project/GNU/Library
+  make DESTDIR=$pkgdir install
+  for i in MediaInfo MediaInfoDLL; do
+install -dm 755 $pkgdir/usr/include/$i
+install -m 644 $srcdir/MediaInfoLib/Source/$i/*.h $pkgdir/usr/include/$i
+  done
+  install -dm 755 $pkgdir/usr/lib/pkgconfig
+  install -m 644 $srcdir/MediaInfoLib/Project/GNU/Library/libmediainfo.pc 
$pkgdir/usr/lib/pkgconfig
+  sed -i -e 's|Version: |Version: '$pkgver'|g' 
$pkgdir/usr/lib/pkgconfig/libmediainfo.pc
+}

Deleted: community-i686/libmediainfo-0.7.50-libmms.patch
===
--- community-i686/libmediainfo-0.7.50-libmms.patch 2014-04-09 11:23:50 UTC 
(rev 109014)
+++ community-i686/libmediainfo-0.7.50-libmms.patch 2014-04-09 11:24:06 UTC 
(rev 109015)
@@ -1,50 +0,0 @@
-diff -wbBur 

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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:10
  Author: spupykin
Revision: 109016

upgpkg: mediainfo 0.7.68-1

upd

Modified:
  mediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:24:06 UTC (rev 109015)
+++ PKGBUILD2014-04-09 11:24:10 UTC (rev 109016)
@@ -3,7 +3,7 @@
 # Maintainer: hydro hy...@freenet.de
 
 pkgname=mediainfo
-pkgver=0.7.67
+pkgver=0.7.68
 pkgrel=1
 pkgdesc=supplies technical and tag information about a video or audio file
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libmediainfo')
 makedepends=('libtool' 'automake' 'autoconf')
 
source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('480ac31a4080737f21937f9d260b96de')
+md5sums=('afd6f5d007d52c1e35a399ec7ca4cfeb')
 
 build() {
   cd $srcdir/MediaInfo/Project/GNU/CLI



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:23
  Author: spupykin
Revision: 109017

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

Added:
  mediainfo/repos/community-i686/PKGBUILD
(from rev 109016, mediainfo/trunk/PKGBUILD)
  mediainfo/repos/community-x86_64/PKGBUILD
(from rev 109016, mediainfo/trunk/PKGBUILD)
Deleted:
  mediainfo/repos/community-i686/PKGBUILD
  mediainfo/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 2014-04-09 11:24:10 UTC (rev 109016)
+++ community-i686/PKGBUILD 2014-04-09 11:24:23 UTC (rev 109017)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo
-pkgver=0.7.67
-pkgrel=1
-pkgdesc=supplies technical and tag information about a video or audio file
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('480ac31a4080737f21937f9d260b96de')
-
-build() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  make DESTDIR=$pkgdir install
-}

Copied: mediainfo/repos/community-i686/PKGBUILD (from rev 109016, 
mediainfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:24:23 UTC (rev 109017)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo
+pkgver=0.7.68
+pkgrel=1
+pkgdesc=supplies technical and tag information about a video or audio file
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
+md5sums=('afd6f5d007d52c1e35a399ec7ca4cfeb')
+
+build() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 11:24:10 UTC (rev 109016)
+++ community-x86_64/PKGBUILD   2014-04-09 11:24:23 UTC (rev 109017)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo
-pkgver=0.7.67
-pkgrel=1
-pkgdesc=supplies technical and tag information about a video or audio file
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('480ac31a4080737f21937f9d260b96de')
-
-build() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  make DESTDIR=$pkgdir install
-}

Copied: mediainfo/repos/community-x86_64/PKGBUILD (from rev 109016, 
mediainfo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 11:24:23 UTC (rev 109017)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo
+pkgver=0.7.68
+pkgrel=1
+pkgdesc=supplies technical and tag information about a video or audio file
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
+md5sums=('afd6f5d007d52c1e35a399ec7ca4cfeb')
+
+build() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  make DESTDIR=$pkgdir install
+}



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:27
  Author: spupykin
Revision: 109018

upgpkg: mediainfo-gui 0.7.68-1

upd

Modified:
  mediainfo-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:24:23 UTC (rev 109017)
+++ PKGBUILD2014-04-09 11:24:27 UTC (rev 109018)
@@ -3,8 +3,8 @@
 # Maintainer: hydro hy...@freenet.de
 
 pkgname=mediainfo-gui
-pkgver=0.7.67
-pkgrel=2
+pkgver=0.7.68
+pkgrel=1
 pkgdesc=GUI for mediainfo
 arch=('i686' 'x86_64')
 url=http://mediainfo.sourceforge.net;
@@ -13,7 +13,7 @@
 makedepends=('imagemagick')
 install=mediainfo-gui.install
 source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('480ac31a4080737f21937f9d260b96de')
+md5sums=('afd6f5d007d52c1e35a399ec7ca4cfeb')
 
 build() {
   cd MediaInfo/Project/GNU/GUI



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:59
  Author: spupykin
Revision: 109021

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

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 109020, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 109020, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 109020, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 109020, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 109020, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 109020, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 109020, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 109020, 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  |   87 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   58 
 community-x86_64/PKGBUILD|   87 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   58 
 9 files changed, 306 insertions(+), 306 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:24:42 UTC (rev 109020)
+++ community-i686/PKGBUILD 2014-04-09 11:24:59 UTC (rev 109021)
@@ -1,87 +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.152.u0
-_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=('ef3321a0a1ff3532ea0b07ad3f254db2'
- '3c35b4a0806a82f3210df1683337655e'
- '420b61240bf5ae11615ba7c6100ee00d')
-
-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* $pkgdir/usr/share/man/man1/
-  install -m644 

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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:25:15
  Author: spupykin
Revision: 109022

upgpkg: tea 37.2.1-1

upd

Modified:
  tea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:24:59 UTC (rev 109021)
+++ PKGBUILD2014-04-09 11:25:15 UTC (rev 109022)
@@ -6,7 +6,7 @@
 # Contributor: Zsolt Varadi sysop_...@fibermail.hu
 
 pkgname=tea
-pkgver=37.2.0
+pkgver=37.2.1
 pkgrel=1
 pkgdesc=A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions.
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 install=tea.install
 source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
 tea.desktop)
-md5sums=('810fbe3c85027cd42919fec8d1be8d2d'
+md5sums=('a74c2d18cc2cace9d961d1a215b19e31'
  '377ace3363124f4c086de0babb820761')
 
 build() {



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:42
  Author: spupykin
Revision: 109020

upgpkg: sdlmame 0.153.u0-1

upd

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:24:39 UTC (rev 109019)
+++ PKGBUILD2014-04-09 11:24:42 UTC (rev 109020)
@@ -4,7 +4,7 @@
 # Maintainer: JJDaNiMoTh jjdanim...@gmail.com
 
 pkgname=sdlmame
-pkgver=0.152.u0
+pkgver=0.153.u0
 _patchlevel=`echo $pkgver | cut -f2 -du`
 _basever=`echo $pkgver | cut -f1,2 -d.`
 pkgrel=1
@@ -25,7 +25,7 @@
sdlmame.sh
extras.tar.gz
${_patches})
-md5sums=('ef3321a0a1ff3532ea0b07ad3f254db2'
+md5sums=('960c9181af27b4d06ef214128fc2abf3'
  '3c35b4a0806a82f3210df1683337655e'
  '420b61240bf5ae11615ba7c6100ee00d')
 



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:24:39
  Author: spupykin
Revision: 109019

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

Added:
  mediainfo-gui/repos/community-i686/PKGBUILD
(from rev 109018, mediainfo-gui/trunk/PKGBUILD)
  mediainfo-gui/repos/community-i686/mediainfo-gui.install
(from rev 109018, mediainfo-gui/trunk/mediainfo-gui.install)
  mediainfo-gui/repos/community-x86_64/PKGBUILD
(from rev 109018, mediainfo-gui/trunk/PKGBUILD)
  mediainfo-gui/repos/community-x86_64/mediainfo-gui.install
(from rev 109018, mediainfo-gui/trunk/mediainfo-gui.install)
Deleted:
  mediainfo-gui/repos/community-i686/PKGBUILD
  mediainfo-gui/repos/community-i686/mediainfo-gui.install
  mediainfo-gui/repos/community-x86_64/PKGBUILD
  mediainfo-gui/repos/community-x86_64/mediainfo-gui.install

+
 /PKGBUILD  |   70 +++
 /mediainfo-gui.install |   24 ++
 community-i686/PKGBUILD|   35 ---
 community-i686/mediainfo-gui.install   |   12 -
 community-x86_64/PKGBUILD  |   35 ---
 community-x86_64/mediainfo-gui.install |   12 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:24:27 UTC (rev 109018)
+++ community-i686/PKGBUILD 2014-04-09 11:24:39 UTC (rev 109019)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo-gui
-pkgver=0.7.67
-pkgrel=2
-pkgdesc=GUI for mediainfo
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
-makedepends=('imagemagick')
-install=mediainfo-gui.install
-source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('480ac31a4080737f21937f9d260b96de')
-
-build() {
-  cd MediaInfo/Project/GNU/GUI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd MediaInfo/Project/GNU/GUI
-  make DESTDIR=$pkgdir install
-  _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | 
grep -oP ' \d+x\d+ ' | tr -d ' '`
-  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
-
$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png
-  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
-$pkgdir/usr/share/pixmaps/mediainfo-gui.png
-  install -D -m 644 $srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
-$pkgdir/usr/share/applications/mediainfo-gui.desktop
-}

Copied: mediainfo-gui/repos/community-i686/PKGBUILD (from rev 109018, 
mediainfo-gui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:24:39 UTC (rev 109019)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo-gui
+pkgver=0.7.68
+pkgrel=1
+pkgdesc=GUI for mediainfo
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
+makedepends=('imagemagick')
+install=mediainfo-gui.install
+source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
+md5sums=('afd6f5d007d52c1e35a399ec7ca4cfeb')
+
+build() {
+  cd MediaInfo/Project/GNU/GUI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd MediaInfo/Project/GNU/GUI
+  make DESTDIR=$pkgdir install
+  _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | 
grep -oP ' \d+x\d+ ' | tr -d ' '`
+  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
+
$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png
+  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
+$pkgdir/usr/share/pixmaps/mediainfo-gui.png
+  install -D -m 644 $srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
+$pkgdir/usr/share/applications/mediainfo-gui.desktop
+}

Deleted: community-i686/mediainfo-gui.install
===
--- community-i686/mediainfo-gui.install2014-04-09 11:24:27 UTC (rev 
109018)
+++ community-i686/mediainfo-gui.install2014-04-09 11:24:39 UTC (rev 
109019)
@@ -1,12 +0,0 @@
-post_install() {
-  which gtk-update-icon-cache /dev/null  gtk-update-icon-cache -q -t -f 
usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: mediainfo-gui/repos/community-i686/mediainfo-gui.install (from rev 

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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:25:29
  Author: spupykin
Revision: 109023

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

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

--+
 /PKGBUILD|   68 +
 /tea.desktop |   20 
 /tea.install |8 
 community-i686/PKGBUILD  |   34 
 community-i686/tea.desktop   |   10 --
 community-i686/tea.install   |4 --
 community-x86_64/PKGBUILD|   34 
 community-x86_64/tea.desktop |   10 --
 community-x86_64/tea.install |4 --
 9 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:25:15 UTC (rev 109022)
+++ community-i686/PKGBUILD 2014-04-09 11:25:29 UTC (rev 109023)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Michal Kaliszka desm...@gmail.com
-# Contributor: Zsolt Varadi sysop_...@fibermail.hu
-
-pkgname=tea
-pkgver=37.2.0
-pkgrel=1
-pkgdesc=A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions.
-arch=('i686' 'x86_64')
-url=http://semiletov.org/tea/;
-license=('GPL')
-depends=('qt4' 'aspell' 'hunspell')
-install=tea.install
-source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
-tea.desktop)
-md5sums=('810fbe3c85027cd42919fec8d1be8d2d'
- '377ace3363124f4c086de0babb820761')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
-  qmake-qt4 PREFIX=/usr/bin
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make INSTALL_ROOT=${pkgdir} install
-  install -Dm644 ${srcdir}/tea.desktop 
${pkgdir}/usr/share/applications/tea.desktop
-  install -Dm644 icons/tea_icon_v2.png ${pkgdir}/usr/share/pixmaps/tea.png
-}

Copied: tea/repos/community-i686/PKGBUILD (from rev 109022, tea/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:25:29 UTC (rev 109023)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Michal Kaliszka desm...@gmail.com
+# Contributor: Zsolt Varadi sysop_...@fibermail.hu
+
+pkgname=tea
+pkgver=37.2.1
+pkgrel=1
+pkgdesc=A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions.
+arch=('i686' 'x86_64')
+url=http://semiletov.org/tea/;
+license=('GPL')
+depends=('qt4' 'aspell' 'hunspell')
+install=tea.install
+source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
+tea.desktop)
+md5sums=('a74c2d18cc2cace9d961d1a215b19e31'
+ '377ace3363124f4c086de0babb820761')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
+  qmake-qt4 PREFIX=/usr/bin
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make INSTALL_ROOT=${pkgdir} install
+  install -Dm644 ${srcdir}/tea.desktop 
${pkgdir}/usr/share/applications/tea.desktop
+  install -Dm644 icons/tea_icon_v2.png ${pkgdir}/usr/share/pixmaps/tea.png
+}

Deleted: community-i686/tea.desktop
===
--- community-i686/tea.desktop  2014-04-09 11:25:15 UTC (rev 109022)
+++ community-i686/tea.desktop  2014-04-09 11:25:29 UTC (rev 109023)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=Tea
-Comment=A small programmer's QT editor
-Exec=tea %U
-Terminal=false
-Type=Application
-StartupNotify=true
-Icon=tea.png
-Categories=Application;Utility;TextEditor;

Copied: tea/repos/community-i686/tea.desktop (from rev 109022, 
tea/trunk/tea.desktop)
===
--- community-i686/tea.desktop  (rev 0)
+++ community-i686/tea.desktop  2014-04-09 11:25:29 UTC (rev 109023)

[arch-commits] Commit in freerdp/trunk (CVE-2014-0791.patch PKGBUILD)

2014-04-09 Thread Felix Yan
Date: Wednesday, April 9, 2014 @ 13:40:03
  Author: fyan
Revision: 109024

upgpkg: freerdp 1.0.2-5

- test patch for CVE-2014-0791

Added:
  freerdp/trunk/CVE-2014-0791.patch
Modified:
  freerdp/trunk/PKGBUILD

-+
 CVE-2014-0791.patch |   79 ++
 PKGBUILD|9 +++--
 2 files changed, 85 insertions(+), 3 deletions(-)

Added: CVE-2014-0791.patch
===
--- CVE-2014-0791.patch (rev 0)
+++ CVE-2014-0791.patch 2014-04-09 11:40:03 UTC (rev 109024)
@@ -0,0 +1,79 @@
+--- a/libfreerdp-core/license.h2013-01-03 05:46:59.0 +0800
 b/libfreerdp-core/license.h2014-04-09 19:11:59.593507658 +0800
+@@ -177,9 +177,9 @@
+ 
+ SCOPE_LIST* license_new_scope_list();
+ void license_free_scope_list(SCOPE_LIST* scopeList);
+-void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList);
++boolean license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList);
+ 
+-void license_read_license_request_packet(rdpLicense* license, STREAM* s);
++boolean license_read_license_request_packet(rdpLicense* license, STREAM* s);
+ void license_read_platform_challenge_packet(rdpLicense* license, STREAM* s);
+ void license_read_new_license_packet(rdpLicense* license, STREAM* s);
+ void license_read_upgrade_license_packet(rdpLicense* license, STREAM* s);
+--- a/libfreerdp-core/license.c2013-01-03 05:46:59.0 +0800
 b/libfreerdp-core/license.c2014-04-09 19:11:59.593507658 +0800
+@@ -199,7 +199,8 @@
+   switch (bMsgType)
+   {
+   case LICENSE_REQUEST:
+-  license_read_license_request_packet(license, s);
++  if(!license_read_license_request_packet(license, s))
++  return false;
+   license_send_new_license_request_packet(license);
+   break;
+ 
+@@ -533,13 +534,16 @@
+  * @param scopeList scope list
+  */
+ 
+-void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList)
++boolean license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList)
+ {
+   uint32 i;
+   uint32 scopeCount;
+ 
+   stream_read_uint32(s, scopeCount); /* ScopeCount (4 bytes) */
+ 
++  if (scopeCount  stream_get_length(s) / 4)  /* every blob is at least 4 
bytes */
++  return false;
++
+   scopeList-count = scopeCount;
+   scopeList-array = (LICENSE_BLOB*) xmalloc(sizeof(LICENSE_BLOB) * 
scopeCount);
+ 
+@@ -549,6 +553,7 @@
+   scopeList-array[i].type = BB_SCOPE_BLOB;
+   license_read_binary_blob(s, scopeList-array[i]);
+   }
++  return true;
+ }
+ 
+ /**
+@@ -593,7 +598,7 @@
+  * @param s stream
+  */
+ 
+-void license_read_license_request_packet(rdpLicense* license, STREAM* s)
++boolean license_read_license_request_packet(rdpLicense* license, STREAM* s)
+ {
+   /* ServerRandom (32 bytes) */
+   stream_read(s, license-server_random, 32);
+@@ -608,7 +613,8 @@
+   license_read_binary_blob(s, license-server_certificate);
+ 
+   /* ScopeList */
+-  license_read_scope_list(s, license-scope_list);
++  if(!license_read_scope_list(s, license-scope_list))
++  return false;
+ 
+   /* Parse Server Certificate */
+   certificate_read_server_certificate(license-certificate,
+@@ -617,6 +623,7 @@
+   license_generate_keys(license);
+   license_generate_hwid(license);
+   license_encrypt_premaster_secret(license);
++  return true;
+ }
+ 
+ /**

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:25:29 UTC (rev 109023)
+++ PKGBUILD2014-04-09 11:40:03 UTC (rev 109024)
@@ -4,7 +4,7 @@
 
 pkgname=freerdp
 pkgver=1.0.2
-pkgrel=4
+pkgrel=5
 pkgdesc=Free RDP client
 arch=('i686' 'x86_64')
 url=http://freerdp.sourceforge.net;
@@ -16,15 +16,18 @@
 changelog=${pkgname}.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/FreeRDP/archive/$pkgver.tar.gz
 ffmpeg2.0.patch
-patch_numblock.patch)
+patch_numblock.patch
+CVE-2014-0791.patch)
 md5sums=('c260051a94caff590def5caa4fcf59d6'
  '1260eecf01ea5212e2db8ac9c5e7fa6d'
- 'ac581d445ded7cdbd59082a48d9c28ac')
+ 'ac581d445ded7cdbd59082a48d9c28ac'
+ '62d0ab241c16ee5d85ff89183df9bbc0')
 
 prepare() {
   cd $srcdir/FreeRDP-$pkgver
   patch -Np1 -i ../ffmpeg2.0.patch
   patch -Np1 -i ../patch_numblock.patch
+  patch -Np1 -i ../CVE-2014-0791.patch
 }
 
 build() {



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

2014-04-09 Thread Felix Yan
Date: Wednesday, April 9, 2014 @ 13:41:52
  Author: fyan
Revision: 109025

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

Added:
  freerdp/repos/community-testing-i686/
  freerdp/repos/community-testing-i686/CVE-2014-0791.patch
(from rev 109024, freerdp/trunk/CVE-2014-0791.patch)
  freerdp/repos/community-testing-i686/PKGBUILD
(from rev 109024, freerdp/trunk/PKGBUILD)
  freerdp/repos/community-testing-i686/ffmpeg2.0.patch
(from rev 109024, freerdp/trunk/ffmpeg2.0.patch)
  freerdp/repos/community-testing-i686/freerdp.changelog
(from rev 109024, freerdp/trunk/freerdp.changelog)
  freerdp/repos/community-testing-i686/patch_numblock.patch
(from rev 109024, freerdp/trunk/patch_numblock.patch)
  freerdp/repos/community-testing-x86_64/
  freerdp/repos/community-testing-x86_64/CVE-2014-0791.patch
(from rev 109024, freerdp/trunk/CVE-2014-0791.patch)
  freerdp/repos/community-testing-x86_64/PKGBUILD
(from rev 109024, freerdp/trunk/PKGBUILD)
  freerdp/repos/community-testing-x86_64/ffmpeg2.0.patch
(from rev 109024, freerdp/trunk/ffmpeg2.0.patch)
  freerdp/repos/community-testing-x86_64/freerdp.changelog
(from rev 109024, freerdp/trunk/freerdp.changelog)
  freerdp/repos/community-testing-x86_64/patch_numblock.patch
(from rev 109024, freerdp/trunk/patch_numblock.patch)

---+
 community-testing-i686/CVE-2014-0791.patch|   79 
 community-testing-i686/PKGBUILD   |   46 +
 community-testing-i686/ffmpeg2.0.patch|   76 +++
 community-testing-i686/freerdp.changelog  |2 
 community-testing-i686/patch_numblock.patch   |   12 +++
 community-testing-x86_64/CVE-2014-0791.patch  |   79 
 community-testing-x86_64/PKGBUILD |   46 +
 community-testing-x86_64/ffmpeg2.0.patch  |   76 +++
 community-testing-x86_64/freerdp.changelog|2 
 community-testing-x86_64/patch_numblock.patch |   12 +++
 10 files changed, 430 insertions(+)

Copied: freerdp/repos/community-testing-i686/CVE-2014-0791.patch (from rev 
109024, freerdp/trunk/CVE-2014-0791.patch)
===
--- community-testing-i686/CVE-2014-0791.patch  (rev 0)
+++ community-testing-i686/CVE-2014-0791.patch  2014-04-09 11:41:52 UTC (rev 
109025)
@@ -0,0 +1,79 @@
+--- a/libfreerdp-core/license.h2013-01-03 05:46:59.0 +0800
 b/libfreerdp-core/license.h2014-04-09 19:11:59.593507658 +0800
+@@ -177,9 +177,9 @@
+ 
+ SCOPE_LIST* license_new_scope_list();
+ void license_free_scope_list(SCOPE_LIST* scopeList);
+-void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList);
++boolean license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList);
+ 
+-void license_read_license_request_packet(rdpLicense* license, STREAM* s);
++boolean license_read_license_request_packet(rdpLicense* license, STREAM* s);
+ void license_read_platform_challenge_packet(rdpLicense* license, STREAM* s);
+ void license_read_new_license_packet(rdpLicense* license, STREAM* s);
+ void license_read_upgrade_license_packet(rdpLicense* license, STREAM* s);
+--- a/libfreerdp-core/license.c2013-01-03 05:46:59.0 +0800
 b/libfreerdp-core/license.c2014-04-09 19:11:59.593507658 +0800
+@@ -199,7 +199,8 @@
+   switch (bMsgType)
+   {
+   case LICENSE_REQUEST:
+-  license_read_license_request_packet(license, s);
++  if(!license_read_license_request_packet(license, s))
++  return false;
+   license_send_new_license_request_packet(license);
+   break;
+ 
+@@ -533,13 +534,16 @@
+  * @param scopeList scope list
+  */
+ 
+-void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList)
++boolean license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList)
+ {
+   uint32 i;
+   uint32 scopeCount;
+ 
+   stream_read_uint32(s, scopeCount); /* ScopeCount (4 bytes) */
+ 
++  if (scopeCount  stream_get_length(s) / 4)  /* every blob is at least 4 
bytes */
++  return false;
++
+   scopeList-count = scopeCount;
+   scopeList-array = (LICENSE_BLOB*) xmalloc(sizeof(LICENSE_BLOB) * 
scopeCount);
+ 
+@@ -549,6 +553,7 @@
+   scopeList-array[i].type = BB_SCOPE_BLOB;
+   license_read_binary_blob(s, scopeList-array[i]);
+   }
++  return true;
+ }
+ 
+ /**
+@@ -593,7 +598,7 @@
+  * @param s stream
+  */
+ 
+-void license_read_license_request_packet(rdpLicense* license, STREAM* s)
++boolean license_read_license_request_packet(rdpLicense* license, STREAM* s)
+ {
+   /* ServerRandom (32 bytes) */
+   stream_read(s, license-server_random, 32);
+@@ -608,7 +613,8 @@
+   license_read_binary_blob(s, license-server_certificate);
+ 
+   /* ScopeList */

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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:57:20
  Author: spupykin
Revision: 109026

upgpkg: libmicrohttpd 0.9.34-1

upd

Modified:
  libmicrohttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:41:52 UTC (rev 109025)
+++ PKGBUILD2014-04-09 11:57:20 UTC (rev 109026)
@@ -6,7 +6,7 @@
 # Contributor: Mathias Rohnstock links...@gmx.de
 
 pkgname=libmicrohttpd
-pkgver=0.9.33
+pkgver=0.9.34
 pkgrel=1
 pkgdesc=a small C library that is supposed to make it easy to run an HTTP 
server as part of another application.
 arch=('i686' 'x86_64')
@@ -13,9 +13,10 @@
 url=http://www.gnu.org/software/libmicrohttpd/;
 license=('LGPL')
 depends=('gnutls' 'libgcrypt')
+optdepends=('file' 'curl')
 install=libmicrohttpd.install
 source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('013b10f9de1cda5448b29c81305354a3')
+md5sums=('2947eee13c2c8affb95023a0cb6fda0c')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -29,8 +30,6 @@
   make DESTDIR=${pkgdir} install
   install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
${pkgdir}/usr/include/$pkgname/platform.h
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/plibc/plibc.h \
-   ${pkgdir}/usr/include/$pkgname/plibc.h
   sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
$pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
 }



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 13:57:32
  Author: spupykin
Revision: 109027

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

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

+
 /PKGBUILD  |   70 +++
 /libmicrohttpd.install |   40 +
 community-i686/PKGBUILD|   36 ---
 community-i686/libmicrohttpd.install   |   20 
 community-x86_64/PKGBUILD  |   36 ---
 community-x86_64/libmicrohttpd.install |   20 
 6 files changed, 110 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 11:57:20 UTC (rev 109026)
+++ community-i686/PKGBUILD 2014-04-09 11:57:32 UTC (rev 109027)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Norberto Lopes shel...@mail.telepac.pt
-# Contributor: Kao Dome kaod...@gmail.com
-# Contributor: Dmitrij D. Czarkoff czark...@gmail.com
-# Contributor: Mathias Rohnstock links...@gmx.de
-
-pkgname=libmicrohttpd
-pkgver=0.9.33
-pkgrel=1
-pkgdesc=a small C library that is supposed to make it easy to run an HTTP 
server as part of another application.
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/libmicrohttpd/;
-license=('LGPL')
-depends=('gnutls' 'libgcrypt')
-install=libmicrohttpd.install
-source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('013b10f9de1cda5448b29c81305354a3')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
-   --enable-curl --enable-messages --with-pic
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
-   ${pkgdir}/usr/include/$pkgname/platform.h
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/plibc/plibc.h \
-   ${pkgdir}/usr/include/$pkgname/plibc.h
-  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
-   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
-}

Copied: libmicrohttpd/repos/community-i686/PKGBUILD (from rev 109026, 
libmicrohttpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 11:57:32 UTC (rev 109027)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Norberto Lopes shel...@mail.telepac.pt
+# Contributor: Kao Dome kaod...@gmail.com
+# Contributor: Dmitrij D. Czarkoff czark...@gmail.com
+# Contributor: Mathias Rohnstock links...@gmx.de
+
+pkgname=libmicrohttpd
+pkgver=0.9.34
+pkgrel=1
+pkgdesc=a small C library that is supposed to make it easy to run an HTTP 
server as part of another application.
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/libmicrohttpd/;
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+optdepends=('file' 'curl')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('2947eee13c2c8affb95023a0cb6fda0c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
+}

Deleted: community-i686/libmicrohttpd.install
===
--- community-i686/libmicrohttpd.install2014-04-09 11:57:20 UTC (rev 
109026)
+++ community-i686/libmicrohttpd.install2014-04-09 11:57:32 UTC (rev 
109027)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(libmicrohttpd.info libmicrohttpd-tutorial.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info 

[arch-commits] Commit in light-locker (5 files)

2014-04-09 Thread Maxime Gauduin
Date: Wednesday, April 9, 2014 @ 14:12:14
  Author: alucryd
Revision: 109028

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

Added:
  light-locker/repos/
  light-locker/repos/community-i686/
  light-locker/repos/community-i686/PKGBUILD
(from rev 109027, light-locker/trunk/PKGBUILD)
  light-locker/repos/community-x86_64/
  light-locker/repos/community-x86_64/PKGBUILD
(from rev 109027, light-locker/trunk/PKGBUILD)

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

Copied: light-locker/repos/community-i686/PKGBUILD (from rev 109027, 
light-locker/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-04-09 12:12:14 UTC (rev 109028)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=light-locker
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='A simple session locker'
+arch=('i686' 'x86_64')
+url='https://github.com/the-cavalry/light-locker'
+license=('GPL2')
+depends=('dbus-glib' 'gtk3' 'libxxf86misc' 'lightdm' 'libxss')
+makedepends=('gnome-common' 'intltool')
+source=(https://github.com/the-cavalry/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('560f20390b24513d5bf7b691bac5d745b76eb21ac3bccd877b73cb7f6d137ec3')
+
+build () {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' 
--disable-{schemas-compile,static} --with-{mit-ext,systemd,xf86gamma-ext,x} 
--without-{console-kit,upower}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Copied: light-locker/repos/community-x86_64/PKGBUILD (from rev 109027, 
light-locker/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-04-09 12:12:14 UTC (rev 109028)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=light-locker
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='A simple session locker'
+arch=('i686' 'x86_64')
+url='https://github.com/the-cavalry/light-locker'
+license=('GPL2')
+depends=('dbus-glib' 'gtk3' 'libxxf86misc' 'lightdm' 'libxss')
+makedepends=('gnome-common' 'intltool')
+source=(https://github.com/the-cavalry/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('560f20390b24513d5bf7b691bac5d745b76eb21ac3bccd877b73cb7f6d137ec3')
+
+build () {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' 
--disable-{schemas-compile,static} --with-{mit-ext,systemd,xf86gamma-ext,x} 
--without-{console-kit,upower}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:



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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 15:43:17
  Author: tredaelli
Revision: 109029

upgpkg: bitcoin 0.9.1-1

Useless version dump.
Built only to avoid retarded people to flag the package as out of date

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 12:12:14 UTC (rev 109028)
+++ PKGBUILD2014-04-09 13:43:17 UTC (rev 109029)
@@ -4,7 +4,7 @@
 
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-qt')
-pkgver=0.9.0
+pkgver=0.9.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.bitcoin.org/;
@@ -16,7 +16,7 @@

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('0f767c13b2c670939750a26558cbb40a7f89ff5ba7d42ce63da0bcc0b701642d'
+sha256sums=('3fabc1c629007b465a278525883663d41a2ba62699f2773536a8bf59ca210425'
 'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
 'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
 'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'



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

2014-04-09 Thread Timothy Redaelli
Date: Wednesday, April 9, 2014 @ 15:43:28
  Author: tredaelli
Revision: 109030

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

Added:
  bitcoin/repos/community-i686/PKGBUILD
(from rev 109029, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-i686/bitcoin-qt.install
(from rev 109029, bitcoin/trunk/bitcoin-qt.install)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 109029, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin-qt.install
(from rev 109029, bitcoin/trunk/bitcoin-qt.install)
Deleted:
  bitcoin/repos/community-i686/PKGBUILD
  bitcoin/repos/community-i686/bitcoin-qt.install
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/bitcoin-qt.install

-+
 /PKGBUILD   |  132 ++
 /bitcoin-qt.install |   22 +
 community-i686/PKGBUILD |   66 -
 community-i686/bitcoin-qt.install   |   11 --
 community-x86_64/PKGBUILD   |   66 -
 community-x86_64/bitcoin-qt.install |   11 --
 6 files changed, 154 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 13:43:17 UTC (rev 109029)
+++ community-i686/PKGBUILD 2014-04-09 13:43:28 UTC (rev 109030)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: shahid hellla...@gmail.com
-
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-qt')
-pkgver=0.9.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.bitcoin.org/;
-makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
-license=('MIT')
-source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('0f767c13b2c670939750a26558cbb40a7f89ff5ba7d42ce63da0bcc0b701642d'
-'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
-'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
-'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'
-'881dcc53ebe2d2a4f8647eb206fd355c69e4186f225e2dcfce19d276381e613a'
-'f4598dcff7056a699b62a079b76e74d54435db22e05723bab995e22ae71c7f79')
-
-prepare() {
-  cd $srcdir/$pkgbase-$pkgver-linux/src
-  tar xf $pkgbase-$pkgver.tar.gz
-}
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$pkgver
-  ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt4
-  make
-}
-
-package_bitcoin-qt() {
-  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - Qt
-  depends=(boost-libs qt4 miniupnpc qrencode protobuf)
-  install=bitcoin-qt.install
-
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$pkgver
-  install -Dm755 src/qt/bitcoin-qt $pkgdir/usr/bin/bitcoin-qt
-  install -Dm644 $srcdir/bitcoin-qt.desktop \
-$pkgdir/usr/share/applications/bitcoin.desktop
-  install -Dm644 $srcdir/bitcoin128.png \
-$pkgdir/usr/share/pixmaps/bitcoin128.png
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-package_bitcoin-daemon() {
-  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - daemon
-  depends=(boost-libs miniupnpc openssl)
-
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$pkgver
-  install -Dm755 src/bitcoind $pkgdir/usr/bin/bitcoind
-  install -Dm644 $srcdir/bitcoin.conf \
-$pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf
-  install -Dm644 $srcdir/bitcoind.1 \
-$pkgdir/usr/share/man/man1/bitcoind.1
-  install -Dm644 $srcdir/bitcoin.conf.5 \
-$pkgdir/usr/share/man/man5/bitcoin.conf.5
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-

Copied: bitcoin/repos/community-i686/PKGBUILD (from rev 109029, 
bitcoin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 13:43:28 UTC (rev 109030)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: shahid hellla...@gmail.com
+
+pkgbase=bitcoin
+pkgname=('bitcoin-daemon' 'bitcoin-qt')
+pkgver=0.9.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://www.bitcoin.org/;
+makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
+license=('MIT')
+source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
+   

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

2014-04-09 Thread Ionuț Mircea Bîru
Date: Wednesday, April 9, 2014 @ 18:51:50
  Author: ioni
Revision: 210081

update

Modified:
  flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 11:07:33 UTC (rev 210080)
+++ PKGBUILD2014-04-09 16:51:50 UTC (rev 210081)
@@ -4,7 +4,7 @@
 
 pkgname=flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.346
+pkgver=11.2.202.350
 pkgrel=1
 pkgdesc='Adobe Flash Player'
 url='http://get.adobe.com/flashplayer'
@@ -21,7 +21,7 @@
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('48a48eda9dace5ee080f666ef0d9aeef'
+md5sums=('1798388311aab66d12ab7ccafe6a0448'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 elif [ $CARCH = x86_64 ]; then
@@ -28,7 +28,7 @@
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('92ce66451381754933a1c5456139d9ff'
+md5sums=('c691f758e2bd78240ea278e0180aaa2a'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 fi



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

2014-04-09 Thread Ionuț Mircea Bîru
Date: Wednesday, April 9, 2014 @ 18:52:39
  Author: ioni
Revision: 210082

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

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

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

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

Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 210081, 
flashplugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-09 16:52:39 UTC (rev 210082)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.350
+pkgrel=1
+pkgdesc='Adobe Flash Player'
+url='http://get.adobe.com/flashplayer'
+arch=('i686' 'x86_64')
+depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 

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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 19:07:38
  Author: spupykin
Revision: 109031

upgpkg: lxc 1:1.0.3-1

upd

Modified:
  lxc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 13:43:28 UTC (rev 109030)
+++ PKGBUILD2014-04-09 17:07:38 UTC (rev 109031)
@@ -6,7 +6,7 @@
 # Contributor: Jon Nordby jono...@gmail.com
 
 pkgname=lxc
-pkgver=1.0.2
+pkgver=1.0.3
 epoch=1
 pkgrel=1
 pkgdesc=Linux Containers
@@ -21,7 +21,7 @@
 source=(http://linuxcontainers.org/downloads/$pkgname-${pkgver}.tar.gz;
lxc.tmpfiles.d
lxc@.service)
-md5sums=('89cddb431672db355483a96046f7fd95'
+md5sums=('55873b1411a606397309aa6c4c4263b3'
  'df94c9fb8a753011c86ee664e9f521ff'
  '32db4ef06b27f36e15ff4b67c049dfeb')
 



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 19:07:57
  Author: spupykin
Revision: 109032

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

Added:
  lxc/repos/community-i686/PKGBUILD
(from rev 109031, lxc/trunk/PKGBUILD)
  lxc/repos/community-i686/lxc.install
(from rev 109031, lxc/trunk/lxc.install)
  lxc/repos/community-i686/lxc.tmpfiles.d
(from rev 109031, lxc/trunk/lxc.tmpfiles.d)
  lxc/repos/community-i686/lxc@.service
(from rev 109031, lxc/trunk/lxc@.service)
  lxc/repos/community-x86_64/PKGBUILD
(from rev 109031, lxc/trunk/PKGBUILD)
  lxc/repos/community-x86_64/lxc.install
(from rev 109031, lxc/trunk/lxc.install)
  lxc/repos/community-x86_64/lxc.tmpfiles.d
(from rev 109031, lxc/trunk/lxc.tmpfiles.d)
  lxc/repos/community-x86_64/lxc@.service
(from rev 109031, lxc/trunk/lxc@.service)
Deleted:
  lxc/repos/community-i686/PKGBUILD
  lxc/repos/community-i686/lxc.install
  lxc/repos/community-i686/lxc.tmpfiles.d
  lxc/repos/community-i686/lxc@.service
  lxc/repos/community-x86_64/PKGBUILD
  lxc/repos/community-x86_64/lxc.install
  lxc/repos/community-x86_64/lxc.tmpfiles.d
  lxc/repos/community-x86_64/lxc@.service

-+
 /PKGBUILD   |  122 ++
 /lxc.install|   16 
 /lxc.tmpfiles.d |2 
 /lxc@.service   |   22 ++
 community-i686/PKGBUILD |   61 ---
 community-i686/lxc.install  |8 --
 community-i686/lxc.tmpfiles.d   |1 
 community-i686/lxc@.service |   11 ---
 community-x86_64/PKGBUILD   |   61 ---
 community-x86_64/lxc.install|8 --
 community-x86_64/lxc.tmpfiles.d |1 
 community-x86_64/lxc@.service   |   11 ---
 12 files changed, 162 insertions(+), 162 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 17:07:38 UTC (rev 109031)
+++ community-i686/PKGBUILD 2014-04-09 17:07:57 UTC (rev 109032)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Zucchelli zukk...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-# Contributor: Jonathan Liu net...@gmail.com
-# Contributor: Jon Nordby jono...@gmail.com
-
-pkgname=lxc
-pkgver=1.0.2
-epoch=1
-pkgrel=1
-pkgdesc=Linux Containers
-arch=('i686' 'x86_64')
-url=http://linuxcontainers.org;
-depends=('bash' 'perl' 'libseccomp' 'libcap' 'python')
-makedepends=('docbook2x')
-optdepends=('arch-install-scripts: for archlinux template')
-license=('LGPL')
-install=lxc.install
-options=('emptydirs')
-source=(http://linuxcontainers.org/downloads/$pkgname-${pkgver}.tar.gz;
-   lxc.tmpfiles.d
-   lxc@.service)
-md5sums=('89cddb431672db355483a96046f7fd95'
- 'df94c9fb8a753011c86ee664e9f521ff'
- '32db4ef06b27f36e15ff4b67c049dfeb')
-
-prepare() {
-  cd $srcdir/$pkgname-${pkgver/_/-}
-  sed -i \
--e 's|\\-//Davenport//DTD DocBook V3.0//EN\\|\\-//OASIS//DTD DocBook 
XML\\ \\http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\\;|' \
-configure.ac
-}
-
-build() {
-  cd $srcdir/$pkgname-${pkgver/_/-}
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---localstatedir=/var \
---libexecdir=/usr/lib \
---sysconfdir=/etc \
---disable-apparmor \
---enable-seccomp
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-${pkgver/_/-}
-
-  make DESTDIR=$pkgdir install
-  install -d -m755 $pkgdir/var/lib/lxc
-  install -d -m755 $pkgdir/usr/lib/lxc/rootfs/dev
-  install -D -m644 ${srcdir}/lxc@.service 
${pkgdir}/usr/lib/systemd/system/lxc@.service
-  install -D -m644 ${srcdir}/lxc.tmpfiles.d 
${pkgdir}/usr/lib/tmpfiles.d/lxc.conf
-
-  cd doc
-  find . -type f -name '*.1' -exec install -D -m644 {} 
$pkgdir/usr/share/man/man1/{} \;
-  find . -type f -name '*.5' -exec install -D -m644 {} 
$pkgdir/usr/share/man/man5/{} \;
-  find . -type f -name '*.7' -exec install -D -m644 {} 
$pkgdir/usr/share/man/man7/{} \;
-}

Copied: lxc/repos/community-i686/PKGBUILD (from rev 109031, lxc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 17:07:57 UTC (rev 109032)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Zucchelli zukk...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Jonathan Liu net...@gmail.com
+# Contributor: Jon Nordby jono...@gmail.com
+
+pkgname=lxc
+pkgver=1.0.3
+epoch=1
+pkgrel=1
+pkgdesc=Linux Containers
+arch=('i686' 'x86_64')
+url=http://linuxcontainers.org;
+depends=('bash' 'perl' 'libseccomp' 'libcap' 'python')
+makedepends=('docbook2x')
+optdepends=('arch-install-scripts: for archlinux template')
+license=('LGPL')
+install=lxc.install
+options=('emptydirs')

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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 19:08:00
  Author: spupykin
Revision: 109033

upgpkg: opensips 1.10.1-1

upd

Modified:
  opensips/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 17:07:57 UTC (rev 109032)
+++ PKGBUILD2014-04-09 17:08:00 UTC (rev 109033)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=opensips
-pkgver=1.10.0
-pkgrel=2
+pkgver=1.10.1
+pkgrel=1
 pkgdesc=An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ...
 url=http://www.opensips.org;
 depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
@@ -25,7 +25,7 @@
 options=('!emptydirs' 'zipman' '!makeflags' 'docs')
 
source=(http://opensips.org/pub/opensips/$pkgver/src/opensips-${pkgver}_src.tar.gz
opensips.service)
-md5sums=('5cbccda321940c51baed798f2f6c5b1a'
+md5sums=('168d005f6c8706665877aa82f01afbae'
  '35cdcb3692f6925236fd5fe7e9484c58')
 
 prepare() {



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

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 19:08:13
  Author: spupykin
Revision: 109034

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

Added:
  opensips/repos/community-i686/PKGBUILD
(from rev 109033, opensips/trunk/PKGBUILD)
  opensips/repos/community-i686/opensips.install
(from rev 109033, opensips/trunk/opensips.install)
  opensips/repos/community-i686/opensips.service
(from rev 109033, opensips/trunk/opensips.service)
  opensips/repos/community-x86_64/PKGBUILD
(from rev 109033, opensips/trunk/PKGBUILD)
  opensips/repos/community-x86_64/opensips.install
(from rev 109033, opensips/trunk/opensips.install)
  opensips/repos/community-x86_64/opensips.service
(from rev 109033, opensips/trunk/opensips.service)
Deleted:
  opensips/repos/community-i686/PKGBUILD
  opensips/repos/community-i686/opensips.install
  opensips/repos/community-i686/opensips.service
  opensips/repos/community-x86_64/PKGBUILD
  opensips/repos/community-x86_64/opensips.install
  opensips/repos/community-x86_64/opensips.service

---+
 /PKGBUILD |  156 
 /opensips.install |6 +
 /opensips.service |   22 +
 community-i686/PKGBUILD   |   78 --
 community-i686/opensips.install   |3 
 community-i686/opensips.service   |   11 --
 community-x86_64/PKGBUILD |   78 --
 community-x86_64/opensips.install |3 
 community-x86_64/opensips.service |   11 --
 9 files changed, 184 insertions(+), 184 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 17:08:00 UTC (rev 109033)
+++ community-i686/PKGBUILD 2014-04-09 17:08:13 UTC (rev 109034)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=opensips
-pkgver=1.10.0
-pkgrel=2
-pkgdesc=An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ...
-url=http://www.opensips.org;
-depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
-makedepends=('postgresql-libs=8.4.1' 'unixodbc' 'libldap=2.4.18' 
'libmariadbclient'
-'lynx' 'libxslt')
-optdepends=('postgresql-libs'
-   'unixodbc'
-   'libldap'
-   'libmariadbclient'
-   'libsasl'
-   'python2'
-   'pcre')
-backup=(etc/opensips/opensips.cfg
-   etc/opensips/dictionary.radius
-   etc/opensips/opensipsctlrc)
-arch=('i686' 'x86_64')
-license=('GPL')
-install=opensips.install
-options=('!emptydirs' 'zipman' '!makeflags' 'docs')
-source=(http://opensips.org/pub/opensips/$pkgver/src/opensips-${pkgver}_src.tar.gz
-   opensips.service)
-md5sums=('5cbccda321940c51baed798f2f6c5b1a'
- '35cdcb3692f6925236fd5fe7e9484c58')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver-tls/
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  sed -i 's|sbin|bin|g' Makefile
-  sed -i 's|bin-dir = sbin/|bin-dir = bin/|' Makefile.defs
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver-tls/
-
-  make \
-   include_modules=ldap db_mysql db_postgres db_unixodbc presence 
presence_xml h350 \
-   TLS=1 LIBDIR=lib PREFIX=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver-tls/
-
-  make \
-   include_modules=ldap db_mysql db_postgres db_unixodbc presence 
presence_xml h350 \
-   TLS=1 BASEDIR=$pkgdir PREFIX=/usr LIBDIR=lib install
-
-  # Conforms to the arch packaging standards 
(http://wiki.archlinux.org/index.php/Arch_Packaging_Standards)
-  mkdir -p $pkgdir/etc/
-  mv $pkgdir/usr/etc/opensips/ $pkgdir/etc/
-  sed -i 
's#mpath=.*lib/opensips/modules/#mpath=/usr/lib/opensips/modules/#' 
$pkgdir/etc/opensips/opensips.cfg
-
-  # fix bad paths
-  cd $pkgdir/usr/share
-  find -type f -exec sed -i s#$pkgdir## {} \;
-
-  cd $pkgdir/usr/lib/opensips/opensipsctl
-  find -type f -exec sed -i s#$pkgdir## {} \;
-
-  cd $pkgdir/usr/bin
-  sed -i s#$pkgdir## opensipsctl opensipsdbctl osipsconsole
-
-  cd $pkgdir/etc
-  find -type f -exec sed -i s#$pkgdir## {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: opensips/repos/community-i686/PKGBUILD (from rev 109033, 
opensips/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 17:08:13 UTC (rev 109034)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=opensips
+pkgver=1.10.1
+pkgrel=1
+pkgdesc=An Open Source SIP Server able to act as a SIP proxy, registrar, 
location server, redirect server ...
+url=http://www.opensips.org;
+depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')

[arch-commits] Commit in lxc/trunk (PKGBUILD lxc.service lxc@.service)

2014-04-09 Thread Sergej Pupykin
Date: Wednesday, April 9, 2014 @ 19:22:32
  Author: spupykin
Revision: 109035

avoid svn peg revision

Added:
  lxc/trunk/lxc.service
(from rev 109030, lxc/trunk/lxc@.service)
Modified:
  lxc/trunk/PKGBUILD
Deleted:
  lxc/trunk/lxc@.service

--+
 PKGBUILD |4 ++--
 lxc.service  |   11 +++
 lxc@.service |   11 ---
 3 files changed, 13 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 17:08:13 UTC (rev 109034)
+++ PKGBUILD2014-04-09 17:22:32 UTC (rev 109035)
@@ -20,7 +20,7 @@
 options=('emptydirs')
 source=(http://linuxcontainers.org/downloads/$pkgname-${pkgver}.tar.gz;
lxc.tmpfiles.d
-   lxc@.service)
+   lxc.service)
 md5sums=('55873b1411a606397309aa6c4c4263b3'
  'df94c9fb8a753011c86ee664e9f521ff'
  '32db4ef06b27f36e15ff4b67c049dfeb')
@@ -51,7 +51,7 @@
   make DESTDIR=$pkgdir install
   install -d -m755 $pkgdir/var/lib/lxc
   install -d -m755 $pkgdir/usr/lib/lxc/rootfs/dev
-  install -D -m644 ${srcdir}/lxc@.service 
${pkgdir}/usr/lib/systemd/system/lxc@.service
+  install -D -m644 ${srcdir}/lxc.service 
${pkgdir}/usr/lib/systemd/system/lxc@.service
   install -D -m644 ${srcdir}/lxc.tmpfiles.d 
${pkgdir}/usr/lib/tmpfiles.d/lxc.conf
 
   cd doc

Copied: lxc/trunk/lxc.service (from rev 109030, lxc/trunk/lxc@.service)
===
--- lxc.service (rev 0)
+++ lxc.service 2014-04-09 17:22:32 UTC (rev 109035)
@@ -0,0 +1,11 @@
+[Unit]
+Description=%i LXC
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/lxc-start -d -n %i
+ExecStop=/usr/bin/lxc-stop -n %i
+
+[Install]
+WantedBy=multi-user.target

Deleted: lxc@.service
===
--- lxc@.service2014-04-09 17:08:13 UTC (rev 109034)
+++ lxc@.service2014-04-09 17:22:32 UTC (rev 109035)
@@ -1,11 +0,0 @@
-[Unit]
-Description=%i LXC
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/lxc-start -d -n %i
-ExecStop=/usr/bin/lxc-stop -n %i
-
-[Install]
-WantedBy=multi-user.target



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

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 19:57:54
  Author: anatolik
Revision: 109036

updpkg: fatsort 1.3.365

Modified:
  fatsort/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 17:22:32 UTC (rev 109035)
+++ PKGBUILD2014-04-09 17:57:54 UTC (rev 109036)
@@ -6,7 +6,7 @@
 # Contributor: Simon Morgan si...@16hz.net
 
 pkgname=fatsort
-pkgver=1.2.355
+pkgver=1.3.365
 pkgrel=1
 pkgdesc='Sorts directory structures of FAT16 and FAT32 file systems'
 arch=(i686 x86_64)
@@ -14,8 +14,9 @@
 license=(GPL)
 depends=(glibc)
 makedepends=(help2man)
+checkdepends=(dosfstools)
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('86bc350bd72c96aa83a456f9874c529d2db1b2bf65f00a19356eb3fb73c1ac23')
+sha256sums=('77acc374b189e80e3d75d3508f3c0ca559f8030f1c220f7cfde719a4adb03f3d')
 
 build() {
   cd $pkgname-$pkgver
@@ -22,6 +23,11 @@
   make
 }
 
+check() {
+  cd $pkgname-$pkgver
+  make tests
+}
+
 package() {
   cd $pkgname-$pkgver
   make DESTDIR=$pkgdir SBINDIR=/usr/bin MANDIR=/usr/share/man/man1 install



[arch-commits] Commit in (5 files)

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 20:03:54
  Author: anatolik
Revision: 109037

bbe: move package from AUR to [community]

Added:
  bbe/
  bbe/repos/
  bbe/trunk/
  bbe/trunk/PKGBUILD
  bbe/trunk/bbe.install

-+
 PKGBUILD|   25 +
 bbe.install |   13 +
 2 files changed, 38 insertions(+)

Added: bbe/trunk/PKGBUILD
===
--- bbe/trunk/PKGBUILD  (rev 0)
+++ bbe/trunk/PKGBUILD  2014-04-09 18:03:54 UTC (rev 109037)
@@ -0,0 +1,25 @@
+# Maintainer:  TDY t...@gmx.com
+# Contributor: Nathan Owe ndowens04+...@gmail.com
+
+pkgname=bbe
+pkgver=0.2.2
+pkgrel=1
+pkgdesc='A sed-like editor for binary files'
+arch=(i686 x86_64)
+url=http://bbe.sourceforge.net/;
+license=(GPL)
+depends=(glibc)
+install=bbe.install
+source=(http://downloads.sourceforge.net/$pkgname-/$pkgname-$pkgver.tar.gz)
+sha1sums=('42d5b47d607a9633fb49e7d39e2aebfb7bb89c05')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: bbe/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: bbe/trunk/bbe.install
===
--- bbe/trunk/bbe.install   (rev 0)
+++ bbe/trunk/bbe.install   2014-04-09 18:03:54 UTC (rev 109037)
@@ -0,0 +1,13 @@
+infodir=/usr/share/info
+
+post_install() {
+  install-info $infodir/bbe.info.gz $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  install-info delete $infodir/bbe.info.gz $infodir/dir 2 /dev/null
+}



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

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 20:04:46
  Author: anatolik
Revision: 109038

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

Added:
  bbe/repos/community-i686/
  bbe/repos/community-i686/PKGBUILD
(from rev 109037, bbe/trunk/PKGBUILD)
  bbe/repos/community-i686/bbe.install
(from rev 109037, bbe/trunk/bbe.install)
  bbe/repos/community-x86_64/
  bbe/repos/community-x86_64/PKGBUILD
(from rev 109037, bbe/trunk/PKGBUILD)
  bbe/repos/community-x86_64/bbe.install
(from rev 109037, bbe/trunk/bbe.install)

--+
 community-i686/PKGBUILD  |   25 +
 community-i686/bbe.install   |   13 +
 community-x86_64/PKGBUILD|   25 +
 community-x86_64/bbe.install |   13 +
 4 files changed, 76 insertions(+)

Copied: bbe/repos/community-i686/PKGBUILD (from rev 109037, bbe/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 18:04:46 UTC (rev 109038)
@@ -0,0 +1,25 @@
+# Maintainer:  TDY t...@gmx.com
+# Contributor: Nathan Owe ndowens04+...@gmail.com
+
+pkgname=bbe
+pkgver=0.2.2
+pkgrel=1
+pkgdesc='A sed-like editor for binary files'
+arch=(i686 x86_64)
+url=http://bbe.sourceforge.net/;
+license=(GPL)
+depends=(glibc)
+install=bbe.install
+source=(http://downloads.sourceforge.net/$pkgname-/$pkgname-$pkgver.tar.gz)
+sha1sums=('42d5b47d607a9633fb49e7d39e2aebfb7bb89c05')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: bbe/repos/community-i686/bbe.install (from rev 109037, 
bbe/trunk/bbe.install)
===
--- community-i686/bbe.install  (rev 0)
+++ community-i686/bbe.install  2014-04-09 18:04:46 UTC (rev 109038)
@@ -0,0 +1,13 @@
+infodir=/usr/share/info
+
+post_install() {
+  install-info $infodir/bbe.info.gz $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  install-info delete $infodir/bbe.info.gz $infodir/dir 2 /dev/null
+}

Copied: bbe/repos/community-x86_64/PKGBUILD (from rev 109037, 
bbe/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 18:04:46 UTC (rev 109038)
@@ -0,0 +1,25 @@
+# Maintainer:  TDY t...@gmx.com
+# Contributor: Nathan Owe ndowens04+...@gmail.com
+
+pkgname=bbe
+pkgver=0.2.2
+pkgrel=1
+pkgdesc='A sed-like editor for binary files'
+arch=(i686 x86_64)
+url=http://bbe.sourceforge.net/;
+license=(GPL)
+depends=(glibc)
+install=bbe.install
+source=(http://downloads.sourceforge.net/$pkgname-/$pkgname-$pkgver.tar.gz)
+sha1sums=('42d5b47d607a9633fb49e7d39e2aebfb7bb89c05')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: bbe/repos/community-x86_64/bbe.install (from rev 109037, 
bbe/trunk/bbe.install)
===
--- community-x86_64/bbe.install(rev 0)
+++ community-x86_64/bbe.install2014-04-09 18:04:46 UTC (rev 109038)
@@ -0,0 +1,13 @@
+infodir=/usr/share/info
+
+post_install() {
+  install-info $infodir/bbe.info.gz $infodir/dir 2 /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  install-info delete $infodir/bbe.info.gz $infodir/dir 2 /dev/null
+}



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

2014-04-09 Thread Lukas Jirkovsky
Date: Wednesday, April 9, 2014 @ 20:05:04
  Author: stativ
Revision: 109039

rawtherapee: make the description grammatically correct.

Modified:
  rawtherapee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 18:04:46 UTC (rev 109038)
+++ PKGBUILD2014-04-09 18:05:04 UTC (rev 109039)
@@ -8,7 +8,7 @@
 pkgver=4.0.12
 pkgrel=1
 epoch=1
-pkgdesc=RAW photo editor
+pkgdesc=Raw photo editor
 arch=('i686' 'x86_64')
 url=http://www.rawtherapee.com/;
 license=('GPL3')



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

2014-04-09 Thread Jakob Gruber
Date: Wednesday, April 9, 2014 @ 20:16:02
  Author: schuay
Revision: 109040

stone-soup-0.14.0-1

Modified:
  stone-soup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 18:05:04 UTC (rev 109039)
+++ PKGBUILD2014-04-09 18:16:02 UTC (rev 109040)
@@ -1,7 +1,7 @@
 # Maintainer: Jakob Gruber jakob.gru...@gmail.com
 
 pkgname=stone-soup
-pkgver=0.13.2
+pkgver=0.14.0
 pkgrel=1
 pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
 arch=('i686' 'x86_64')
@@ -66,4 +66,4 @@
 
 }
 
-md5sums=('c63074afa81c74c311697b04fb6e7610')
+md5sums=('d71cd86cda1e00fd52c3a6d009fa3fcb')



[arch-commits] Commit in stone-soup/repos/community-x86_64 (4 files)

2014-04-09 Thread Jakob Gruber
Date: Wednesday, April 9, 2014 @ 20:16:16
  Author: schuay
Revision: 109042

archrelease: copy trunk to community-x86_64

Added:
  stone-soup/repos/community-x86_64/PKGBUILD
(from rev 109041, stone-soup/trunk/PKGBUILD)
  stone-soup/repos/community-x86_64/stone-soup.install
(from rev 109041, stone-soup/trunk/stone-soup.install)
Deleted:
  stone-soup/repos/community-x86_64/PKGBUILD
  stone-soup/repos/community-x86_64/stone-soup.install

+
 PKGBUILD   |  138 +--
 stone-soup.install |   22 
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-09 18:16:10 UTC (rev 109041)
+++ PKGBUILD2014-04-09 18:16:16 UTC (rev 109042)
@@ -1,69 +0,0 @@
-# Maintainer: Jakob Gruber jakob.gru...@gmail.com
-
-pkgname=stone-soup
-pkgver=0.13.2
-pkgrel=1
-pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
-arch=('i686' 'x86_64')
-url='http://crawl.develz.org/'
-depends=('lua51' 'ncurses' 'sdl_image' 'sqlite' 'glu' 'freetype2' 'ttf-dejavu')
-makedepends=('bison' 'flex' 'gendesk' 'mesa')
-conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
-license=('custom')
-install=stone-soup.install
-source=(http://downloads.sourceforge.net/sourceforge/crawl-ref/stone_soup-${pkgver}-nodeps.tar.xz;)
-
-# used by gendesk to create .desktop file
-_exec=('crawl-tiles')
-_name=('Dungeon Crawl Stone Soup')
-
-package() {
-cd $srcdir
-gendesk -n --pkgname $pkgname --pkgdesc $pkgdesc \
---exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup'
-
-cd stone_soup-${pkgver}/source
-
-# adjust makefile to use /usr/bin, owner root:root,
-# disable setgid on executable
-
-sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
-sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
-sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
-
-# first build and install tiles version
-
-make DESTDIR=${pkgdir} \
- SAVEDIR=~/.crawl/ \
- DATADIR=/usr/share/${pkgname}/data \
- USE_UNICODE=y \
- TILES=y \
- install
-
-# rename tiles executable to avoid clashing with console crawl
-
-mv ${pkgdir}/usr/bin/crawl ${pkgdir}/usr/bin/crawl-tiles
-
-# then build and install console version
-
-make DESTDIR=${pkgdir} \
- SAVEDIR=~/.crawl/ \
- DATADIR=/usr/share/${pkgname}/data \
- USE_UNICODE=y \
- install
-
-# install crawl license
-
-install -D -m644 ../licence.txt \
-${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-
-# install icon and .desktop file
-
-install -D -m644 dat/tiles/stone_soup_icon-32x32.png \
-${pkgdir}/usr/share/pixmaps/${pkgname}.png
-install -D -m644 ${srcdir}/${pkgname}.desktop \
-${pkgdir}/usr/share/applications/${pkgname}.desktop
-
-}
-
-md5sums=('c63074afa81c74c311697b04fb6e7610')

Copied: stone-soup/repos/community-x86_64/PKGBUILD (from rev 109041, 
stone-soup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-09 18:16:16 UTC (rev 109042)
@@ -0,0 +1,69 @@
+# Maintainer: Jakob Gruber jakob.gru...@gmail.com
+
+pkgname=stone-soup
+pkgver=0.14.0
+pkgrel=1
+pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
+arch=('i686' 'x86_64')
+url='http://crawl.develz.org/'
+depends=('lua51' 'ncurses' 'sdl_image' 'sqlite' 'glu' 'freetype2' 'ttf-dejavu')
+makedepends=('bison' 'flex' 'gendesk' 'mesa')
+conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
+license=('custom')
+install=stone-soup.install
+source=(http://downloads.sourceforge.net/sourceforge/crawl-ref/stone_soup-${pkgver}-nodeps.tar.xz;)
+
+# used by gendesk to create .desktop file
+_exec=('crawl-tiles')
+_name=('Dungeon Crawl Stone Soup')
+
+package() {
+cd $srcdir
+gendesk -n --pkgname $pkgname --pkgdesc $pkgdesc \
+--exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup'
+
+cd stone_soup-${pkgver}/source
+
+# adjust makefile to use /usr/bin, owner root:root,
+# disable setgid on executable
+
+sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
+sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
+sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
+
+# first build and install tiles version
+
+make DESTDIR=${pkgdir} \
+ SAVEDIR=~/.crawl/ \
+ DATADIR=/usr/share/${pkgname}/data \
+ USE_UNICODE=y \
+ TILES=y \
+ install
+
+# rename tiles executable to avoid clashing with console crawl
+
+mv ${pkgdir}/usr/bin/crawl ${pkgdir}/usr/bin/crawl-tiles
+
+# then build and install console version
+
+make DESTDIR=${pkgdir} \
+ SAVEDIR=~/.crawl/ \
+   

[arch-commits] Commit in stone-soup/repos/community-i686 (4 files)

2014-04-09 Thread Jakob Gruber
Date: Wednesday, April 9, 2014 @ 20:16:10
  Author: schuay
Revision: 109041

archrelease: copy trunk to community-i686

Added:
  stone-soup/repos/community-i686/PKGBUILD
(from rev 109040, stone-soup/trunk/PKGBUILD)
  stone-soup/repos/community-i686/stone-soup.install
(from rev 109040, stone-soup/trunk/stone-soup.install)
Deleted:
  stone-soup/repos/community-i686/PKGBUILD
  stone-soup/repos/community-i686/stone-soup.install

+
 PKGBUILD   |  138 +--
 stone-soup.install |   22 
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-09 18:16:02 UTC (rev 109040)
+++ PKGBUILD2014-04-09 18:16:10 UTC (rev 109041)
@@ -1,69 +0,0 @@
-# Maintainer: Jakob Gruber jakob.gru...@gmail.com
-
-pkgname=stone-soup
-pkgver=0.13.2
-pkgrel=1
-pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
-arch=('i686' 'x86_64')
-url='http://crawl.develz.org/'
-depends=('lua51' 'ncurses' 'sdl_image' 'sqlite' 'glu' 'freetype2' 'ttf-dejavu')
-makedepends=('bison' 'flex' 'gendesk' 'mesa')
-conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
-license=('custom')
-install=stone-soup.install
-source=(http://downloads.sourceforge.net/sourceforge/crawl-ref/stone_soup-${pkgver}-nodeps.tar.xz;)
-
-# used by gendesk to create .desktop file
-_exec=('crawl-tiles')
-_name=('Dungeon Crawl Stone Soup')
-
-package() {
-cd $srcdir
-gendesk -n --pkgname $pkgname --pkgdesc $pkgdesc \
---exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup'
-
-cd stone_soup-${pkgver}/source
-
-# adjust makefile to use /usr/bin, owner root:root,
-# disable setgid on executable
-
-sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
-sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
-sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
-
-# first build and install tiles version
-
-make DESTDIR=${pkgdir} \
- SAVEDIR=~/.crawl/ \
- DATADIR=/usr/share/${pkgname}/data \
- USE_UNICODE=y \
- TILES=y \
- install
-
-# rename tiles executable to avoid clashing with console crawl
-
-mv ${pkgdir}/usr/bin/crawl ${pkgdir}/usr/bin/crawl-tiles
-
-# then build and install console version
-
-make DESTDIR=${pkgdir} \
- SAVEDIR=~/.crawl/ \
- DATADIR=/usr/share/${pkgname}/data \
- USE_UNICODE=y \
- install
-
-# install crawl license
-
-install -D -m644 ../licence.txt \
-${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-
-# install icon and .desktop file
-
-install -D -m644 dat/tiles/stone_soup_icon-32x32.png \
-${pkgdir}/usr/share/pixmaps/${pkgname}.png
-install -D -m644 ${srcdir}/${pkgname}.desktop \
-${pkgdir}/usr/share/applications/${pkgname}.desktop
-
-}
-
-md5sums=('c63074afa81c74c311697b04fb6e7610')

Copied: stone-soup/repos/community-i686/PKGBUILD (from rev 109040, 
stone-soup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-09 18:16:10 UTC (rev 109041)
@@ -0,0 +1,69 @@
+# Maintainer: Jakob Gruber jakob.gru...@gmail.com
+
+pkgname=stone-soup
+pkgver=0.14.0
+pkgrel=1
+pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
+arch=('i686' 'x86_64')
+url='http://crawl.develz.org/'
+depends=('lua51' 'ncurses' 'sdl_image' 'sqlite' 'glu' 'freetype2' 'ttf-dejavu')
+makedepends=('bison' 'flex' 'gendesk' 'mesa')
+conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
+license=('custom')
+install=stone-soup.install
+source=(http://downloads.sourceforge.net/sourceforge/crawl-ref/stone_soup-${pkgver}-nodeps.tar.xz;)
+
+# used by gendesk to create .desktop file
+_exec=('crawl-tiles')
+_name=('Dungeon Crawl Stone Soup')
+
+package() {
+cd $srcdir
+gendesk -n --pkgname $pkgname --pkgdesc $pkgdesc \
+--exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup'
+
+cd stone_soup-${pkgver}/source
+
+# adjust makefile to use /usr/bin, owner root:root,
+# disable setgid on executable
+
+sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
+sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
+sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
+
+# first build and install tiles version
+
+make DESTDIR=${pkgdir} \
+ SAVEDIR=~/.crawl/ \
+ DATADIR=/usr/share/${pkgname}/data \
+ USE_UNICODE=y \
+ TILES=y \
+ install
+
+# rename tiles executable to avoid clashing with console crawl
+
+mv ${pkgdir}/usr/bin/crawl ${pkgdir}/usr/bin/crawl-tiles
+
+# then build and install console version
+
+make DESTDIR=${pkgdir} \
+ SAVEDIR=~/.crawl/ \
+ 

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

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 20:35:58
  Author: anatolik
Revision: 210084

upgpkg: check 0.9.12-1

Modified:
  check/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 17:50:07 UTC (rev 210083)
+++ PKGBUILD2014-04-09 18:35:58 UTC (rev 210084)
@@ -4,7 +4,7 @@
 # Contributor: Jeremy Cowgar jer...@cowgar.com
 
 pkgname=check
-pkgver=0.9.11
+pkgver=0.9.12
 pkgrel=1
 pkgdesc=A unit testing framework for C
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=$pkgname.install
 depends=('awk')
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('fd5a03979bcab9fb80ba005b55f54178')
+md5sums=('46fe540d1a03714c7a1967dbc6d484e7')
 
 build() {
   cd $pkgname-$pkgver
@@ -34,4 +34,7 @@
   # get rid of the package's info directory,
   # install-info adds entries for us at install-time
   rm $pkgdir/usr/share/info/dir
+
+  # svn log file is too big
+  rm $pkgdir/usr/share/doc/check/*ChangeLog*
 }



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

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 20:36:39
  Author: anatolik
Revision: 210085

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

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

+
 /PKGBUILD  |   80 +++
 /check.install |   40 +
 extra-i686/PKGBUILD|   37 ---
 extra-i686/check.install   |   20 --
 extra-x86_64/PKGBUILD  |   37 ---
 extra-x86_64/check.install |   20 --
 6 files changed, 120 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 18:35:58 UTC (rev 210084)
+++ extra-i686/PKGBUILD 2014-04-09 18:36:39 UTC (rev 210085)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Jeremy Cowgar jer...@cowgar.com
-
-pkgname=check
-pkgver=0.9.11
-pkgrel=1
-pkgdesc=A unit testing framework for C
-arch=('i686' 'x86_64')
-url=http://check.sourceforge.net/;
-license=('LGPL')
-install=$pkgname.install
-depends=('awk')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('fd5a03979bcab9fb80ba005b55f54178')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Extremely long
-  #make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # get rid of the package's info directory,
-  # install-info adds entries for us at install-time
-  rm $pkgdir/usr/share/info/dir
-}

Copied: check/repos/extra-i686/PKGBUILD (from rev 210084, check/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-09 18:36:39 UTC (rev 210085)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Jeremy Cowgar jer...@cowgar.com
+
+pkgname=check
+pkgver=0.9.12
+pkgrel=1
+pkgdesc=A unit testing framework for C
+arch=('i686' 'x86_64')
+url=http://check.sourceforge.net/;
+license=('LGPL')
+install=$pkgname.install
+depends=('awk')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('46fe540d1a03714c7a1967dbc6d484e7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Extremely long
+  #make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # get rid of the package's info directory,
+  # install-info adds entries for us at install-time
+  rm $pkgdir/usr/share/info/dir
+
+  # svn log file is too big
+  rm $pkgdir/usr/share/doc/check/*ChangeLog*
+}

Deleted: extra-i686/check.install
===
--- extra-i686/check.install2014-04-09 18:35:58 UTC (rev 210084)
+++ extra-i686/check.install2014-04-09 18:36:39 UTC (rev 210085)
@@ -1,20 +0,0 @@
-_infodir=/usr/share/info
-_filelist=(check.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${_filelist[@]}; do
-install-info $_infodir/$file $_infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${_filelist[@]}; do
-install-info --delete $_infodir/$file $_infodir/dir 2 /dev/null
-  done
-}

Copied: check/repos/extra-i686/check.install (from rev 210084, 
check/trunk/check.install)
===
--- extra-i686/check.install(rev 0)
+++ extra-i686/check.install2014-04-09 18:36:39 UTC (rev 210085)
@@ -0,0 +1,20 @@
+_infodir=/usr/share/info
+_filelist=(check.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${_filelist[@]}; do
+install-info --delete $_infodir/$file $_infodir/dir 2 /dev/null
+  done
+}

Deleted: extra-x86_64/PKGBUILD

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

2014-04-09 Thread Bartłomiej Piotrowski
Date: Wednesday, April 9, 2014 @ 21:13:48
  Author: bpiotrowski
Revision: 210086

upgpkg: x265 0.9-1

new upstream release

Modified:
  x265/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 18:36:39 UTC (rev 210085)
+++ PKGBUILD2014-04-09 19:13:48 UTC (rev 210086)
@@ -3,8 +3,8 @@
 # Contributor: kfgz kfgz at interia pl
 
 pkgname=x265
-pkgver=0.8
-pkgrel=2
+pkgver=0.9
+pkgrel=1
 pkgdesc='Open Source H265/HEVC video encoder'
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -12,7 +12,7 @@
 makedepends=('yasm' 'cmake')
 url='https://bitbucket.org/multicoreware/x265'
 source=($url/get/$pkgver.tar.bz2)
-md5sums=('0c690dfad024e87f6b617e6fc2f354eb')
+md5sums=('0cc0b0189cf9ed7422aad98633c6de8f')
 
 build() {
   cd multicoreware-x265-*/build/linux



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

2014-04-09 Thread Bartłomiej Piotrowski
Date: Wednesday, April 9, 2014 @ 21:14:05
  Author: bpiotrowski
Revision: 210087

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 19:13:48 UTC (rev 210086)
+++ extra-i686/PKGBUILD 2014-04-09 19:14:05 UTC (rev 210087)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: kfgz kfgz at interia pl
-
-pkgname=x265
-pkgver=0.8
-pkgrel=2
-pkgdesc='Open Source H265/HEVC video encoder'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gcc-libs')
-makedepends=('yasm' 'cmake')
-url='https://bitbucket.org/multicoreware/x265'
-source=($url/get/$pkgver.tar.bz2)
-md5sums=('0c690dfad024e87f6b617e6fc2f354eb')
-
-build() {
-  cd multicoreware-x265-*/build/linux
-  [[ $CARCH == x86_64 ]]  LDFLAGS+=',-z,noexecstack'
-  cmake -G Unix Makefiles -DCMAKE_INSTALL_PREFIX=/usr ../../source
-  make
-}
-
-package() {
-  cd multicoreware-x265-*/build/linux
-  make DESTDIR=$pkgdir install
-}

Copied: x265/repos/extra-i686/PKGBUILD (from rev 210086, x265/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-09 19:14:05 UTC (rev 210087)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: kfgz kfgz at interia pl
+
+pkgname=x265
+pkgver=0.9
+pkgrel=1
+pkgdesc='Open Source H265/HEVC video encoder'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gcc-libs')
+makedepends=('yasm' 'cmake')
+url='https://bitbucket.org/multicoreware/x265'
+source=($url/get/$pkgver.tar.bz2)
+md5sums=('0cc0b0189cf9ed7422aad98633c6de8f')
+
+build() {
+  cd multicoreware-x265-*/build/linux
+  [[ $CARCH == x86_64 ]]  LDFLAGS+=',-z,noexecstack'
+  cmake -G Unix Makefiles -DCMAKE_INSTALL_PREFIX=/usr ../../source
+  make
+}
+
+package() {
+  cd multicoreware-x265-*/build/linux
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-09 19:13:48 UTC (rev 210086)
+++ extra-x86_64/PKGBUILD   2014-04-09 19:14:05 UTC (rev 210087)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: kfgz kfgz at interia pl
-
-pkgname=x265
-pkgver=0.8
-pkgrel=2
-pkgdesc='Open Source H265/HEVC video encoder'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gcc-libs')
-makedepends=('yasm' 'cmake')
-url='https://bitbucket.org/multicoreware/x265'
-source=($url/get/$pkgver.tar.bz2)
-md5sums=('0c690dfad024e87f6b617e6fc2f354eb')
-
-build() {
-  cd multicoreware-x265-*/build/linux
-  [[ $CARCH == x86_64 ]]  LDFLAGS+=',-z,noexecstack'
-  cmake -G Unix Makefiles -DCMAKE_INSTALL_PREFIX=/usr ../../source
-  make
-}
-
-package() {
-  cd multicoreware-x265-*/build/linux
-  make DESTDIR=$pkgdir install
-}

Copied: x265/repos/extra-x86_64/PKGBUILD (from rev 210086, x265/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-09 19:14:05 UTC (rev 210087)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: kfgz kfgz at interia pl
+
+pkgname=x265
+pkgver=0.9
+pkgrel=1
+pkgdesc='Open Source H265/HEVC video encoder'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gcc-libs')
+makedepends=('yasm' 'cmake')
+url='https://bitbucket.org/multicoreware/x265'
+source=($url/get/$pkgver.tar.bz2)
+md5sums=('0cc0b0189cf9ed7422aad98633c6de8f')
+
+build() {
+  cd multicoreware-x265-*/build/linux
+  [[ $CARCH == x86_64 ]]  LDFLAGS+=',-z,noexecstack'
+  cmake -G Unix Makefiles -DCMAKE_INSTALL_PREFIX=/usr ../../source
+  make
+}
+
+package() {
+  cd multicoreware-x265-*/build/linux
+  make DESTDIR=$pkgdir install
+}



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

2014-04-09 Thread Andreas Radke
Date: Wednesday, April 9, 2014 @ 21:22:29
  Author: andyrtr
Revision: 210088

upgpkg: hplip 3.14.4-1

upstream update 3.14.4

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 19:14:05 UTC (rev 210087)
+++ PKGBUILD2014-04-09 19:22:29 UTC (rev 210088)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.14.3
-pkgrel=2
+pkgver=3.14.4
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('a0ae59a75d202b92738dc24610b98428'
+md5sums=('6e8d53fb2284271505d2e1706c01f6c5'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
 



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

2014-04-09 Thread Andreas Radke
Date: Wednesday, April 9, 2014 @ 21:22:49
  Author: andyrtr
Revision: 210089

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

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 210088, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/disable_upgrade.patch
(from rev 210088, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-i686/hplip.install
(from rev 210088, hplip/trunk/hplip.install)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 210088, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/disable_upgrade.patch
(from rev 210088, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-x86_64/hplip.install
(from rev 210088, hplip/trunk/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/disable_upgrade.patch
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/disable_upgrade.patch
  hplip/repos/extra-x86_64/hplip.install

+
 /PKGBUILD  |  196 +++
 /disable_upgrade.patch |   28 +
 /hplip.install |   36 ++
 extra-i686/PKGBUILD|   98 -
 extra-i686/disable_upgrade.patch   |   14 --
 extra-i686/hplip.install   |   18 ---
 extra-x86_64/PKGBUILD  |   98 -
 extra-x86_64/disable_upgrade.patch |   14 --
 extra-x86_64/hplip.install |   18 ---
 9 files changed, 260 insertions(+), 260 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 19:22:29 UTC (rev 210088)
+++ extra-i686/PKGBUILD 2014-04-09 19:22:49 UTC (rev 210089)
@@ -1,98 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor : Rémy Oudompheng r...@archlinux.org
-# Contributor: Morgan LEFIEUX com...@archlinuxfr.org
-
-pkgname=hplip
-pkgver=3.14.3
-pkgrel=2
-pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
-arch=('i686' 'x86_64')
-url=http://hplipopensource.com;
-license=('GPL')
-depends=('python2' 'ghostscript=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp=5.7.1' 'wget')
-makedepends=('python2-pyqt4' 'python2-gobject2' 'sane' 'rpcbind' 'cups' 
'libusb')
-optdepends=('cups: for printing support'
-'python2-dbus: for dbus support'
-'sane: for scanner support'
-'python2-pillow: for commandline scanning support'
-'python2-notify: for Desktop notification support'
-'python2-reportlab: for pdf output in hp-scan'
-'rpcbind: for network support'
-'python2-pyqt4: for running hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
-'libusb: for advanced usb support')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-disable_upgrade.patch)
-md5sums=('a0ae59a75d202b92738dc24610b98428'
- 'SKIP'
- '257c8bfe675862d90f4ce07d3dff1d9f')
-
-prepare() {
- cd $pkgname-$pkgver
- 
- export PYTHON=python2
- 
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
- sed -i 's|python ./print.py|python2 ./print.py|' scan.py
- sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
- sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
- sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
- sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
- sed -i 's|/usr/bin/python|/usr/bin/python2|' data/rules/hplip-printer@.service
- 
- # disable insecure update - https://bugs.archlinux.org/task/38083
- patch -Np0 -i ${srcdir}/disable_upgrade.patch
- 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip  ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
-  

[arch-commits] Commit in linux/trunk (13 files)

2014-04-09 Thread Thomas Bächler
Date: Wednesday, April 9, 2014 @ 21:24:57
  Author: thomas
Revision: 210090

upgpkg: linux 3.14-4

* Remove syscalls.h revert
* Properly fix symbol CRC generation
* Fix use of code32_start in the EFI boot stub
* Re-add MTD_NAND to the configuration to support ricoh sd card readers 
(FS#25889)

Added:
  linux/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
  linux/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
  linux/trunk/0006-genksyms-fix-typeof-handling.patch
  linux/trunk/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch
Modified:
  linux/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch
  linux/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
  linux/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch
  linux/trunk/PKGBUILD
  linux/trunk/config
  linux/trunk/config.x86_64
Deleted:
  linux/trunk/0004-Revert-syscalls.h-use-gcc-alias-instead-of-assembler.patch
  linux/trunk/0005-fs-Don-t-return-0-from-get_anon_bdev.patch
  linux/trunk/0006-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch

-+
 0001-Bluetooth-allocate-static-minor-for-vhci.patch |2 
 0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch |2 
 0003-module-remove-MODULE_GENERIC_TABLE.patch   |2 
 0004-Revert-syscalls.h-use-gcc-alias-instead-of-assembler.patch |   60 
 0004-fs-Don-t-return-0-from-get_anon_bdev.patch |   44 
 0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch |   33 
 0005-fs-Don-t-return-0-from-get_anon_bdev.patch |   44 
 0006-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch |   33 
 0006-genksyms-fix-typeof-handling.patch | 1360 
++
 0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch |   96 
 PKGBUILD|   42 
 config  |   23 
 config.x86_64   |   22 
 13 files changed, 1601 insertions(+), 162 deletions(-)

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


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

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 21:26:54
  Author: anatolik
Revision: 109043

upgpkg: fatsort 1.3.365-1

comment out tests as they require 'sudo' and cannot be run in a clean build 
environment

Modified:
  fatsort/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 18:16:16 UTC (rev 109042)
+++ PKGBUILD2014-04-09 19:26:54 UTC (rev 109043)
@@ -14,7 +14,7 @@
 license=(GPL)
 depends=(glibc)
 makedepends=(help2man)
-checkdepends=(dosfstools)
+#checkdepends=(dosfstools bbe)
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)
 sha256sums=('77acc374b189e80e3d75d3508f3c0ca559f8030f1c220f7cfde719a4adb03f3d')
 
@@ -25,7 +25,8 @@
 
 check() {
   cd $pkgname-$pkgver
-  make tests
+  # the tests require sudo so we cannot use it in a clean environment build
+  # make tests
 }
 
 package() {



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

2014-04-09 Thread Anatol Pomozov
Date: Wednesday, April 9, 2014 @ 21:27:36
  Author: anatolik
Revision: 109044

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 19:26:54 UTC (rev 109043)
+++ community-i686/PKGBUILD 2014-04-09 19:27:36 UTC (rev 109044)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: birdflesh antkoul at gmail dot com
-# Contributor: Natan Vivo nvivo64_gmail_com
-# Contributor: rabyte rabyte*gmail
-# Contributor: Simon Morgan si...@16hz.net
-
-pkgname=fatsort
-pkgver=1.2.355
-pkgrel=1
-pkgdesc='Sorts directory structures of FAT16 and FAT32 file systems'
-arch=(i686 x86_64)
-url='http://fatsort.sourceforge.net'
-license=(GPL)
-depends=(glibc)
-makedepends=(help2man)
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('86bc350bd72c96aa83a456f9874c529d2db1b2bf65f00a19356eb3fb73c1ac23')
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir SBINDIR=/usr/bin MANDIR=/usr/share/man/man1 install
-}

Copied: fatsort/repos/community-i686/PKGBUILD (from rev 109043, 
fatsort/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 19:27:36 UTC (rev 109044)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: birdflesh antkoul at gmail dot com
+# Contributor: Natan Vivo nvivo64_gmail_com
+# Contributor: rabyte rabyte*gmail
+# Contributor: Simon Morgan si...@16hz.net
+
+pkgname=fatsort
+pkgver=1.3.365
+pkgrel=1
+pkgdesc='Sorts directory structures of FAT16 and FAT32 file systems'
+arch=(i686 x86_64)
+url='http://fatsort.sourceforge.net'
+license=(GPL)
+depends=(glibc)
+makedepends=(help2man)
+#checkdepends=(dosfstools bbe)
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('77acc374b189e80e3d75d3508f3c0ca559f8030f1c220f7cfde719a4adb03f3d')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # the tests require sudo so we cannot use it in a clean environment build
+  # make tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir SBINDIR=/usr/bin MANDIR=/usr/share/man/man1 install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 19:26:54 UTC (rev 109043)
+++ community-x86_64/PKGBUILD   2014-04-09 19:27:36 UTC (rev 109044)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: birdflesh antkoul at gmail dot com
-# Contributor: Natan Vivo nvivo64_gmail_com
-# Contributor: rabyte rabyte*gmail
-# Contributor: Simon Morgan si...@16hz.net
-
-pkgname=fatsort
-pkgver=1.2.355
-pkgrel=1
-pkgdesc='Sorts directory structures of FAT16 and FAT32 file systems'
-arch=(i686 x86_64)
-url='http://fatsort.sourceforge.net'
-license=(GPL)
-depends=(glibc)
-makedepends=(help2man)
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('86bc350bd72c96aa83a456f9874c529d2db1b2bf65f00a19356eb3fb73c1ac23')
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir SBINDIR=/usr/bin MANDIR=/usr/share/man/man1 install
-}

Copied: fatsort/repos/community-x86_64/PKGBUILD (from rev 109043, 
fatsort/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 19:27:36 UTC (rev 109044)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: birdflesh antkoul at gmail dot com
+# Contributor: Natan Vivo nvivo64_gmail_com
+# Contributor: rabyte rabyte*gmail
+# Contributor: Simon Morgan si...@16hz.net
+
+pkgname=fatsort
+pkgver=1.3.365
+pkgrel=1
+pkgdesc='Sorts directory structures of FAT16 and FAT32 file systems'
+arch=(i686 x86_64)
+url='http://fatsort.sourceforge.net'
+license=(GPL)
+depends=(glibc)
+makedepends=(help2man)
+#checkdepends=(dosfstools bbe)
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)

[arch-commits] Commit in linux/repos (50 files)

2014-04-09 Thread Thomas Bächler
Date: Wednesday, April 9, 2014 @ 21:30:13
  Author: thomas
Revision: 210091

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

Added:
  linux/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 210090, 
linux/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 210090, 
linux/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 210090, linux/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux/repos/testing-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 210090, 
linux/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux/repos/testing-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 210090, 
linux/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 210090, linux/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux/repos/testing-i686/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch
(from rev 210090, 
linux/trunk/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 210090, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 210090, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 210090, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 210090, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 210090, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 210090, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 210090, 
linux/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 210090, 
linux/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 210090, linux/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux/repos/testing-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 210090, 
linux/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux/repos/testing-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 210090, 
linux/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 210090, linux/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux/repos/testing-x86_64/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch
(from rev 210090, 
linux/trunk/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 210090, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 210090, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 210090, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 210090, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 210090, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 210090, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
  
linux/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
  linux/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
  
linux/repos/testing-i686/0004-Revert-syscalls.h-use-gcc-alias-instead-of-assembler.patch
  linux/repos/testing-i686/0005-fs-Don-t-return-0-from-get_anon_bdev.patch
  
linux/repos/testing-i686/0006-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
  
linux/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
  linux/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
  
linux/repos/testing-x86_64/0004-Revert-syscalls.h-use-gcc-alias-instead-of-assembler.patch
  linux/repos/testing-x86_64/0005-fs-Don-t-return-0-from-get_anon_bdev.patch
  
linux/repos/testing-x86_64/0006-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
  linux/repos/testing-x86_64/PKGBUILD
  

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

2014-04-09 Thread Bartłomiej Piotrowski
Date: Wednesday, April 9, 2014 @ 21:38:34
  Author: bpiotrowski
Revision: 109045

upgpkg: luajit 2.0.3-2

enable more Lua 5.2 backports

Modified:
  luajit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 19:27:36 UTC (rev 109044)
+++ PKGBUILD2014-04-09 19:38:34 UTC (rev 109045)
@@ -6,7 +6,7 @@
 
 pkgname=luajit
 pkgver=2.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
 arch=('i686' 'x86_64')
 url='http://luajit.org/'
@@ -17,7 +17,7 @@
 
 build() {
   cd LuaJIT-$pkgver
-  make amalg PREFIX=/usr
+  CFLAGS+=' -DLUAJIT_ENABLE_LUA52COMPAT' make amalg PREFIX=/usr
 }
 
 package() {



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

2014-04-09 Thread Bartłomiej Piotrowski
Date: Wednesday, April 9, 2014 @ 21:38:52
  Author: bpiotrowski
Revision: 109046

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 19:38:34 UTC (rev 109045)
+++ community-i686/PKGBUILD 2014-04-09 19:38:52 UTC (rev 109046)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Chris Brannon ch...@the-brannons.com
-# Contributor: Paulo Matias matiasΘarchlinux-br·org
-# Contributor: Anders Bergh ande...@gmail.com
-
-pkgname=luajit
-pkgver=2.0.3
-pkgrel=1
-pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
-arch=('i686' 'x86_64')
-url='http://luajit.org/'
-license=('MIT')
-depends=('gcc-libs')
-source=(http://luajit.org/download/LuaJIT-$pkgver.tar.gz)
-md5sums=('f14e9104be513913810cd59c8c658dc0')
-
-build() {
-  cd LuaJIT-$pkgver
-  make amalg PREFIX=/usr
-}
-
-package() {
-  cd LuaJIT-$pkgver
-  make install DESTDIR=$pkgdir PREFIX=/usr
-
-  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
-}

Copied: luajit/repos/community-i686/PKGBUILD (from rev 109045, 
luajit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 19:38:52 UTC (rev 109046)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Chris Brannon ch...@the-brannons.com
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgname=luajit
+pkgver=2.0.3
+pkgrel=2
+pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
+arch=('i686' 'x86_64')
+url='http://luajit.org/'
+license=('MIT')
+depends=('gcc-libs')
+source=(http://luajit.org/download/LuaJIT-$pkgver.tar.gz)
+md5sums=('f14e9104be513913810cd59c8c658dc0')
+
+build() {
+  cd LuaJIT-$pkgver
+  CFLAGS+=' -DLUAJIT_ENABLE_LUA52COMPAT' make amalg PREFIX=/usr
+}
+
+package() {
+  cd LuaJIT-$pkgver
+  make install DESTDIR=$pkgdir PREFIX=/usr
+
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 19:38:34 UTC (rev 109045)
+++ community-x86_64/PKGBUILD   2014-04-09 19:38:52 UTC (rev 109046)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Chris Brannon ch...@the-brannons.com
-# Contributor: Paulo Matias matiasΘarchlinux-br·org
-# Contributor: Anders Bergh ande...@gmail.com
-
-pkgname=luajit
-pkgver=2.0.3
-pkgrel=1
-pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
-arch=('i686' 'x86_64')
-url='http://luajit.org/'
-license=('MIT')
-depends=('gcc-libs')
-source=(http://luajit.org/download/LuaJIT-$pkgver.tar.gz)
-md5sums=('f14e9104be513913810cd59c8c658dc0')
-
-build() {
-  cd LuaJIT-$pkgver
-  make amalg PREFIX=/usr
-}
-
-package() {
-  cd LuaJIT-$pkgver
-  make install DESTDIR=$pkgdir PREFIX=/usr
-
-  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
-}

Copied: luajit/repos/community-x86_64/PKGBUILD (from rev 109045, 
luajit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 19:38:52 UTC (rev 109046)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Chris Brannon ch...@the-brannons.com
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgname=luajit
+pkgver=2.0.3
+pkgrel=2
+pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
+arch=('i686' 'x86_64')
+url='http://luajit.org/'
+license=('MIT')
+depends=('gcc-libs')
+source=(http://luajit.org/download/LuaJIT-$pkgver.tar.gz)
+md5sums=('f14e9104be513913810cd59c8c658dc0')
+
+build() {
+  cd LuaJIT-$pkgver
+  CFLAGS+=' -DLUAJIT_ENABLE_LUA52COMPAT' make amalg PREFIX=/usr
+}
+
+package() {
+  cd LuaJIT-$pkgver
+  make install DESTDIR=$pkgdir PREFIX=/usr
+
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+}



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

2014-04-09 Thread Florian Pritz
Date: Wednesday, April 9, 2014 @ 21:48:24
  Author: bluewind
Revision: 109048

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 19:48:19 UTC (rev 109047)
+++ community-i686/PKGBUILD 2014-04-09 19:48:24 UTC (rev 109048)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Jan Fader jan.fa...@web.de
-pkgbase=highlight
-pkgname=(highlight highlight-gui)
-pkgver=3.17
-pkgrel=1
-url=http://www.andre-simon.de/doku/highlight/highlight.html;
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=(qt4 lua boost)
-source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('52babb37da6a69867dc295e31d8a721e'
- 'SKIP')
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver
-
-  make QMAKE=qmake-qt4
-  make QMAKE=qmake-qt4 gui
-}
-
-package_highlight() {
-  pkgdesc=Fast and flexible source code highlighter (CLI version)
-  depends=('lua')
-  cd $srcdir/$pkgbase-$pkgver
-
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
-}
-
-package_highlight-gui() {
-  pkgdesc=Fast and flexible source code highlighter (Qt version)
-  depends=('qt4' 'highlight')
-  cd $srcdir/$pkgbase-$pkgver
-
-  install -dm755 $pkgdir/usr/bin
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui
-}
-
-# vim:set ts=2 sw=2 et:

Copied: highlight/repos/community-i686/PKGBUILD (from rev 109047, 
highlight/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 19:48:24 UTC (rev 109048)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Jan Fader jan.fa...@web.de
+pkgbase=highlight
+pkgname=(highlight highlight-gui)
+pkgver=3.18
+pkgrel=1
+url=http://www.andre-simon.de/doku/highlight/highlight.html;
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=(qt4 lua boost)
+source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('085d7639a7e05a0d41923a889dc801c9'
+ 'SKIP')
+backup=(etc/highlight/filetypes.conf)
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver
+
+  make QMAKE=qmake-qt4
+  make QMAKE=qmake-qt4 gui
+}
+
+package_highlight() {
+  pkgdesc=Fast and flexible source code highlighter (CLI version)
+  depends=('lua')
+  cd $srcdir/$pkgbase-$pkgver
+
+  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
+}
+
+package_highlight-gui() {
+  pkgdesc=Fast and flexible source code highlighter (Qt version)
+  depends=('qt4' 'highlight')
+  cd $srcdir/$pkgbase-$pkgver
+
+  install -dm755 $pkgdir/usr/bin
+  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 19:48:19 UTC (rev 109047)
+++ community-x86_64/PKGBUILD   2014-04-09 19:48:24 UTC (rev 109048)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Jan Fader jan.fa...@web.de
-pkgbase=highlight
-pkgname=(highlight highlight-gui)
-pkgver=3.17
-pkgrel=1
-url=http://www.andre-simon.de/doku/highlight/highlight.html;
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=(qt4 lua boost)
-source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('52babb37da6a69867dc295e31d8a721e'
- 'SKIP')
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver
-
-  make QMAKE=qmake-qt4
-  make QMAKE=qmake-qt4 gui
-}
-
-package_highlight() {
-  pkgdesc=Fast and flexible source code highlighter (CLI version)
-  depends=('lua')
-  cd $srcdir/$pkgbase-$pkgver
-
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install
-}
-
-package_highlight-gui() {
-  pkgdesc=Fast and flexible source code highlighter (Qt version)
-  depends=('qt4' 'highlight')
-  cd $srcdir/$pkgbase-$pkgver
-
-  install -dm755 $pkgdir/usr/bin
-  make DESTDIR=$pkgdir QMAKE=qmake-qt4 install-gui
-}
-
-# vim:set ts=2 sw=2 et:

Copied: highlight/repos/community-x86_64/PKGBUILD (from rev 109047, 
highlight/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 19:48:24 UTC (rev 109048)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Jan Fader jan.fa...@web.de

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

2014-04-09 Thread Florian Pritz
Date: Wednesday, April 9, 2014 @ 21:48:19
  Author: bluewind
Revision: 109047

upgpkg: highlight 3.18-1

upstream update

Modified:
  highlight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 19:38:52 UTC (rev 109046)
+++ PKGBUILD2014-04-09 19:48:19 UTC (rev 109047)
@@ -3,7 +3,7 @@
 # Contributor: Jan Fader jan.fa...@web.de
 pkgbase=highlight
 pkgname=(highlight highlight-gui)
-pkgver=3.17
+pkgver=3.18
 pkgrel=1
 url=http://www.andre-simon.de/doku/highlight/highlight.html;
 license=('GPL')
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 makedepends=(qt4 lua boost)
 source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('52babb37da6a69867dc295e31d8a721e'
+md5sums=('085d7639a7e05a0d41923a889dc801c9'
  'SKIP')
 backup=(etc/highlight/filetypes.conf)
 



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

2014-04-09 Thread Thomas Bächler
Date: Wednesday, April 9, 2014 @ 22:20:45
  Author: thomas
Revision: 210092

upgpkg: openvpn 2.3.3-1

Modified:
  openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 19:30:13 UTC (rev 210091)
+++ PKGBUILD2014-04-09 20:20:45 UTC (rev 210092)
@@ -2,8 +2,8 @@
 # Maintainer: Thomas Bächler tho...@archlinux.org
 
 pkgname=openvpn
-pkgver=2.3.2
-pkgrel=2
+pkgver=2.3.3
+pkgrel=1
 pkgdesc=An easy-to-use, robust, and highly configurable VPN (Virtual Private 
Network)
 arch=(i686 x86_64)
 url=http://openvpn.net/index.php/open-source.html;
@@ -14,7 +14,7 @@
 source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz
 
http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc
 openvpn@.service)
-md5sums=('06e5f93dbf13f2c19647ca15ffc23ac1'
+md5sums=('5c66ea3143ac884a3075521bd74ede06'
  'SKIP'
  '71fab8d1c2aa3a1f2609e259eaaf88b3')
 



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

2014-04-09 Thread Thomas Bächler
Date: Wednesday, April 9, 2014 @ 22:20:57
  Author: thomas
Revision: 210093

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

Added:
  openvpn/repos/testing-i686/
  openvpn/repos/testing-i686/PKGBUILD
(from rev 210092, openvpn/trunk/PKGBUILD)
  openvpn/repos/testing-i686/openvpn.install
(from rev 210092, openvpn/trunk/openvpn.install)
  openvpn/repos/testing-i686/openvpn@.service
(from rev 210092, openvpn/trunk/openvpn@.service)
  openvpn/repos/testing-x86_64/
  openvpn/repos/testing-x86_64/PKGBUILD
(from rev 210092, openvpn/trunk/PKGBUILD)
  openvpn/repos/testing-x86_64/openvpn.install
(from rev 210092, openvpn/trunk/openvpn.install)
  openvpn/repos/testing-x86_64/openvpn@.service
(from rev 210092, openvpn/trunk/openvpn@.service)

-+
 testing-i686/PKGBUILD   |   49 ++
 testing-i686/openvpn.install|8 ++
 testing-i686/openvpn@.service   |9 ++
 testing-x86_64/PKGBUILD |   49 ++
 testing-x86_64/openvpn.install  |8 ++
 testing-x86_64/openvpn@.service |9 ++
 6 files changed, 132 insertions(+)

Copied: openvpn/repos/testing-i686/PKGBUILD (from rev 210092, 
openvpn/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-09 20:20:57 UTC (rev 210093)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=openvpn
+pkgver=2.3.3
+pkgrel=1
+pkgdesc=An easy-to-use, robust, and highly configurable VPN (Virtual Private 
Network)
+arch=(i686 x86_64)
+url=http://openvpn.net/index.php/open-source.html;
+depends=('openssl' 'lzo2' 'iproute2')
+makedepends=('systemd')
+license=('custom')
+install=openvpn.install
+source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz
+
http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc
+openvpn@.service)
+md5sums=('5c66ea3143ac884a3075521bd74ede06'
+ 'SKIP'
+ '71fab8d1c2aa3a1f2609e259eaaf88b3')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  CFLAGS=$CFLAGS -DPLUGIN_LIBDIR=\\\/usr/lib/openvpn\\\ ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--enable-password-save \
+--mandir=/usr/share/man \
+--enable-iproute2 \
+--enable-systemd
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  # Install openvpn
+  make DESTDIR=${pkgdir} install
+  install -d -m755 ${pkgdir}/etc/openvpn
+  # Install examples
+  install -d -m755 ${pkgdir}/usr/share/openvpn
+  cp -r sample/sample-config-files ${pkgdir}/usr/share/openvpn/examples
+  # Install license
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}/
+  ln -sf /usr/share/doc/${pkgname}/{COPYING,COPYRIGHT.GPL} 
${pkgdir}/usr/share/licenses/${pkgname}/
+  # Install contrib
+  install -d -m755 ${pkgdir}/usr/share/openvpn/contrib
+  cp -r contrib ${pkgdir}/usr/share/openvpn
+  # Install systemd service
+  install -D -m644 ${srcdir}/openvpn@.service 
${pkgdir}/usr/lib/systemd/system/openvpn@.service
+}

Copied: openvpn/repos/testing-i686/openvpn.install (from rev 210092, 
openvpn/trunk/openvpn.install)
===
--- testing-i686/openvpn.install(rev 0)
+++ testing-i686/openvpn.install2014-04-09 20:20:57 UTC (rev 210093)
@@ -0,0 +1,8 @@
+## arg 1:  the new package version
+## arg 2:  the old package version
+post_upgrade() {
+  if [ $(vercmp 2.3.2-1 $2) -ge 0 ]; then
+echo  easy-rsa has moved into its own package. Run:
+echo   # pacman -S easy-rsa
+  fi
+}

Copied: openvpn/repos/testing-i686/openvpn@.service (from rev 210092, 
openvpn/trunk/openvpn@.service)
===
--- testing-i686/openvpn@.service   (rev 0)
+++ testing-i686/openvpn@.service   2014-04-09 20:20:57 UTC (rev 210093)
@@ -0,0 +1,9 @@
+[Unit]
+Description=OpenVPN connection to %i
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/openvpn --cd /etc/openvpn --config /etc/openvpn/%i.conf 
--daemon openvpn@%i
+
+[Install]
+WantedBy=multi-user.target

Copied: openvpn/repos/testing-x86_64/PKGBUILD (from rev 210092, 
openvpn/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-09 20:20:57 UTC (rev 210093)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=openvpn
+pkgver=2.3.3
+pkgrel=1
+pkgdesc=An easy-to-use, robust, and highly configurable VPN (Virtual Private 
Network)
+arch=(i686 x86_64)
+url=http://openvpn.net/index.php/open-source.html;
+depends=('openssl' 'lzo2' 'iproute2')
+makedepends=('systemd')
+license=('custom')
+install=openvpn.install

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

2014-04-09 Thread Dave Reisner
Date: Wednesday, April 9, 2014 @ 22:44:44
  Author: dreisner
Revision: 210095

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

Added:
  dnsmasq/repos/extra-i686/PKGBUILD
(from rev 210094, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-i686/dnsmasq.install
(from rev 210094, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-i686/dnsmasq.service
(from rev 210094, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-x86_64/PKGBUILD
(from rev 210094, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-x86_64/dnsmasq.install
(from rev 210094, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-x86_64/dnsmasq.service
(from rev 210094, dnsmasq/trunk/dnsmasq.service)
Deleted:
  dnsmasq/repos/extra-i686/PKGBUILD
  dnsmasq/repos/extra-i686/dnsmasq.install
  dnsmasq/repos/extra-i686/dnsmasq.service
  dnsmasq/repos/extra-x86_64/PKGBUILD
  dnsmasq/repos/extra-x86_64/dnsmasq.install
  dnsmasq/repos/extra-x86_64/dnsmasq.service

--+
 /PKGBUILD|   82 +
 /dnsmasq.install |   42 +
 /dnsmasq.service |   30 +++
 extra-i686/PKGBUILD  |   45 --
 extra-i686/dnsmasq.install   |   21 --
 extra-i686/dnsmasq.service   |   15 ---
 extra-x86_64/PKGBUILD|   45 --
 extra-x86_64/dnsmasq.install |   21 --
 extra-x86_64/dnsmasq.service |   15 ---
 9 files changed, 154 insertions(+), 162 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 20:44:14 UTC (rev 210094)
+++ extra-i686/PKGBUILD 2014-04-09 20:44:44 UTC (rev 210095)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=dnsmasq
-pkgver=2.68
-pkgrel=1
-pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
-url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('glibc' 'dbus-core')
-install=$pkgname.install
-backup=('etc/dnsmasq.conf')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz;
-'dnsmasq.service')
-md5sums=('fec885ba0a9df0f7d8f2e44db48f19ae'
- '7ac45726cabef4145db40d758cc7fedf')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # link against dbus. this ugliness is needed to ensure that the
-  # compile time opts report properly on startup. yuck.
-  sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ i#define HAVE_DBUS' src/config.h
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make CFLAGS=$CPPFLAGS $CFLAGS LDFLAGS=$LDFLAGS
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
-
-  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
-  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
-  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/usr/lib/systemd/system/dnsmasq.service
-}
-
-# vim: ts=2 sw=2 et ft=sh

Copied: dnsmasq/repos/extra-i686/PKGBUILD (from rev 210094, 
dnsmasq/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-09 20:44:44 UTC (rev 210095)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=dnsmasq
+pkgver=2.69
+pkgrel=1
+pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
+url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc' 'libdbus' 'gmp' 'nettle')
+install=$pkgname.install
+backup=('etc/dnsmasq.conf')
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
+'dnsmasq.service')
+md5sums=('c5a1152e646eb54db4f33f8e0deee180'
+ 'SKIP'
+ '7ac45726cabef4145db40d758cc7fedf')
+
+build() {
+  cd $pkgname-$pkgver
+
+  make \
+CFLAGS=$CPPFLAGS $CFLAGS \
+LDFLAGS=$LDFLAGS \
+COPTS=-DHAVE_DNSSEC -DHAVE_DBUS
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
+
+  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
+  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
+  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/usr/lib/systemd/system/dnsmasq.service
+}
+
+# vim: ts=2 sw=2 et ft=sh

Deleted: extra-i686/dnsmasq.install
===
--- extra-i686/dnsmasq.install  2014-04-09 20:44:14 UTC (rev 210094)
+++ extra-i686/dnsmasq.install  2014-04-09 20:44:44 UTC (rev 210095)
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-add_dnsmasq_user() {
-  if ! getent passwd dnsmasq /dev/null; then
-useradd -r -d / -c 'dnsmasq daemon' -s /sbin/nologin dnsmasq
-  fi
-}
-

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

2014-04-09 Thread Dave Reisner
Date: Wednesday, April 9, 2014 @ 22:44:14
  Author: dreisner
Revision: 210094

upgpkg: dnsmasq 2.69-1

- remove hacky prepare function, we can do this via the buildsys
- add gmp/nettle as deps for dnssec support

Modified:
  dnsmasq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 20:20:57 UTC (rev 210093)
+++ PKGBUILD2014-04-09 20:44:14 UTC (rev 210094)
@@ -4,32 +4,28 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=dnsmasq
-pkgver=2.68
+pkgver=2.69
 pkgrel=1
 pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
 url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('glibc' 'libdbus')
+depends=('glibc' 'libdbus' 'gmp' 'nettle')
 install=$pkgname.install
 backup=('etc/dnsmasq.conf')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz;
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
 'dnsmasq.service')
-md5sums=('fec885ba0a9df0f7d8f2e44db48f19ae'
+md5sums=('c5a1152e646eb54db4f33f8e0deee180'
+ 'SKIP'
  '7ac45726cabef4145db40d758cc7fedf')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  # link against dbus. this ugliness is needed to ensure that the
-  # compile time opts report properly on startup. yuck.
-  sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ i#define HAVE_DBUS' src/config.h
-}
-
 build() {
   cd $pkgname-$pkgver
 
-  make CFLAGS=$CPPFLAGS $CFLAGS LDFLAGS=$LDFLAGS
+  make \
+CFLAGS=$CPPFLAGS $CFLAGS \
+LDFLAGS=$LDFLAGS \
+COPTS=-DHAVE_DNSSEC -DHAVE_DBUS
 }
 
 package() {



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

2014-04-09 Thread Jan Steffens
Date: Wednesday, April 9, 2014 @ 23:05:47
  Author: heftig
Revision: 210096

icu rebuild

Modified:
  webkitgtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 20:44:44 UTC (rev 210095)
+++ PKGBUILD2014-04-09 21:05:47 UTC (rev 210096)
@@ -4,7 +4,7 @@
 pkgbase=webkitgtk
 pkgname=(webkitgtk webkitgtk2)
 pkgver=2.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=GTK+ Web content engine library
 arch=(i686 x86_64)
 url=http://webkitgtk.org/;



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

2014-04-09 Thread Jan Steffens
Date: Wednesday, April 9, 2014 @ 23:24:56
  Author: heftig
Revision: 210097

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

Added:
  webkitgtk/repos/staging-i686/
  webkitgtk/repos/staging-i686/PKGBUILD
(from rev 210096, webkitgtk/trunk/PKGBUILD)
  webkitgtk/repos/staging-i686/fix-pretty-quotes.patch
(from rev 210096, webkitgtk/trunk/fix-pretty-quotes.patch)
  webkitgtk/repos/staging-x86_64/
  webkitgtk/repos/staging-x86_64/PKGBUILD
(from rev 210096, webkitgtk/trunk/PKGBUILD)
  webkitgtk/repos/staging-x86_64/fix-pretty-quotes.patch
(from rev 210096, webkitgtk/trunk/fix-pretty-quotes.patch)

+
 staging-i686/PKGBUILD  |   72 +++
 staging-i686/fix-pretty-quotes.patch   |   26 +++
 staging-x86_64/PKGBUILD|   72 +++
 staging-x86_64/fix-pretty-quotes.patch |   26 +++
 4 files changed, 196 insertions(+)

Copied: webkitgtk/repos/staging-i686/PKGBUILD (from rev 210096, 
webkitgtk/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-09 21:24:56 UTC (rev 210097)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=webkitgtk
+pkgname=(webkitgtk webkitgtk2)
+pkgver=2.4.0
+pkgrel=2
+pkgdesc=GTK+ Web content engine library
+arch=(i686 x86_64)
+url=http://webkitgtk.org/;
+license=(custom)
+depends=(libxt libxslt sqlite libsoup enchant libgl geoclue 
gst-plugins-base-libs
+ libsecret libwebp harfbuzz-icu)
+makedepends=(gtk3 gtk2 gperf gobject-introspection python mesa ruby gtk-doc)
+optdepends=('gst-plugins-base: free media decoding'
+'gst-plugins-good: media decoding'
+'gst-libav: nonfree media decoding')
+options=(!emptydirs)
+source=(http://webkitgtk.org/releases/$pkgbase-${pkgver}.tar.xz
+fix-pretty-quotes.patch)
+sha256sums=('dc5277cda89ee038408f78c94b1b07f101997f01ef877a142ffedac3b537dfbb'
+'56316228bbbf0b7ebcbe210a35120f4e72cb9c1b680dd82cc2bde0f4549245e6')
+
+prepare() {
+  mkdir build-gtk{,2}
+  cd $pkgbase-$pkgver
+  patch -Np0 -i ../fix-pretty-quotes.patch
+}
+
+_build() (
+  _ver=$1; shift
+  cd build-${_ver}
+
+  ../$pkgbase-$pkgver/configure --prefix=/usr \
+--libexecdir=/usr/lib/webkit${_ver} \
+--enable-introspection \
+$@
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make all stamp-po
+)
+
+build() {
+  _build gtk --enable-gtk-doc
+  _build gtk2 --disable-webkit2 --with-gtk=2.0
+}
+
+package_webkitgtk() {
+  depends+=(gtk3)
+  optdepends+=('gtk2: Netscape plugin support')
+  provides=(webkitgtk3=${pkgver} libwebkit3=${pkgver})
+  conflicts=(webkitgtk3 libwebkit3)
+  replaces=(webkitgtk3 libwebkit3)
+
+  make -C build-gtk -j1 DESTDIR=$pkgdir install
+  install -Dm644 $pkgbase-$pkgver/Source/WebKit/LICENSE \
+$pkgdir/usr/share/licenses/webkitgtk/LICENSE
+}
+
+package_webkitgtk2() {
+  pkgdesc+= for GTK2
+  depends+=(gtk2)
+  provides=(libwebkit=${pkgver})
+  conflicts=(libwebkit)
+  replaces=(libwebkit)
+
+  make -C build-gtk2 -j1 DESTDIR=$pkgdir install
+  install -Dm644 $pkgbase-$pkgver/Source/WebKit/LICENSE \
+$pkgdir/usr/share/licenses/webkitgtk2/LICENSE
+}

Copied: webkitgtk/repos/staging-i686/fix-pretty-quotes.patch (from rev 210096, 
webkitgtk/trunk/fix-pretty-quotes.patch)
===
--- staging-i686/fix-pretty-quotes.patch(rev 0)
+++ staging-i686/fix-pretty-quotes.patch2014-04-09 21:24:56 UTC (rev 
210097)
@@ -0,0 +1,26 @@
+Pretty quotes in licence break Python stdin.
+
+https://bugs.webkit.org/show_bug.cgi?id=128971
+
+--- Source/WebCore/xml/XMLViewer.css.orig  2014-01-23 16:49:58.0 
+
 Source/WebCore/xml/XMLViewer.css
+@@ -14,7 +14,7 @@
+  * distribution.
+  *
+  * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS
+- * “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
++ * AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.
+  * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+--- Source/WebCore/xml/XMLViewer.js.orig   2014-01-23 16:49:58.0 
+
 Source/WebCore/xml/XMLViewer.js
+@@ -15,7 +15,7 @@
+  * distribution.
+  *
+  * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS
+- * “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
++ * AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.
+  * OR ITS 

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

2014-04-09 Thread Jan Steffens
Date: Wednesday, April 9, 2014 @ 23:41:58
  Author: heftig
Revision: 109049

icu rebuild

Modified:
  yaz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 19:48:24 UTC (rev 109048)
+++ PKGBUILD2014-04-09 21:41:58 UTC (rev 109049)
@@ -8,7 +8,7 @@
 
 pkgname=yaz
 pkgver=5.0.12
-pkgrel=1
+pkgrel=2
 pkgdesc=A toolkit supporting the development of Z39.50/SRW/SRU clients and 
servers
 arch=('i686' 'x86_64')
 url=http://www.indexdata.dk/yaz;



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

2014-04-09 Thread Jan Steffens
Date: Wednesday, April 9, 2014 @ 23:42:33
  Author: heftig
Revision: 210098

icu rebuild

Modified:
  tracker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 21:24:56 UTC (rev 210097)
+++ PKGBUILD2014-04-09 21:42:33 UTC (rev 210098)
@@ -6,7 +6,7 @@
 pkgbase=tracker
 pkgname=(tracker libtracker-sparql)
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc=All-in-one indexer, search tool and metadata database
 arch=(i686 x86_64)
 license=(GPL)



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

2014-04-09 Thread Jan Steffens
Date: Wednesday, April 9, 2014 @ 23:42:54
  Author: heftig
Revision: 109050

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

Added:
  yaz/repos/community-staging-i686/
  yaz/repos/community-staging-i686/PKGBUILD
(from rev 109049, yaz/trunk/PKGBUILD)
  yaz/repos/community-staging-i686/yaz.changelog
(from rev 109049, yaz/trunk/yaz.changelog)
  yaz/repos/community-staging-x86_64/
  yaz/repos/community-staging-x86_64/PKGBUILD
(from rev 109049, yaz/trunk/PKGBUILD)
  yaz/repos/community-staging-x86_64/yaz.changelog
(from rev 109049, yaz/trunk/yaz.changelog)

+
 community-staging-i686/PKGBUILD|   36 +++
 community-staging-i686/yaz.changelog   |   14 
 community-staging-x86_64/PKGBUILD  |   36 +++
 community-staging-x86_64/yaz.changelog |   14 
 4 files changed, 100 insertions(+)

Copied: yaz/repos/community-staging-i686/PKGBUILD (from rev 109049, 
yaz/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-09 21:42:54 UTC (rev 109050)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Robert Emil Berge filokte...@linuxophic.org
+
+pkgname=yaz
+pkgver=5.0.12
+pkgrel=2
+pkgdesc=A toolkit supporting the development of Z39.50/SRW/SRU clients and 
servers
+arch=('i686' 'x86_64')
+url=http://www.indexdata.dk/yaz;
+license=('BSD')
+depends=('openssl' 'libxslt' 'icu')
+changelog=$pkgname.changelog
+source=(http://ftp.indexdata.dk/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('4501bbeee665e34ad480508e83fbe8b65d2b5fd0a8194077f1b4235b616a846e')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --enable-shared=yaz \
+  --with-openssl=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Copied: yaz/repos/community-staging-i686/yaz.changelog (from rev 109049, 
yaz/trunk/yaz.changelog)
===
--- community-staging-i686/yaz.changelog(rev 0)
+++ community-staging-i686/yaz.changelog2014-04-09 21:42:54 UTC (rev 
109050)
@@ -0,0 +1,14 @@
+2014-02-06 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * yaz 5.0.12-1
+
+2013-10-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * yaz 5.0.9-1
+
+2013-10-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * yaz 5.0.1-1
+
+2013-04-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * yaz 4.2.54-1
+
+2013-01-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * yaz 4.2.49-1

Copied: yaz/repos/community-staging-x86_64/PKGBUILD (from rev 109049, 
yaz/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-04-09 21:42:54 UTC (rev 109050)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Robert Emil Berge filokte...@linuxophic.org
+
+pkgname=yaz
+pkgver=5.0.12
+pkgrel=2
+pkgdesc=A toolkit supporting the development of Z39.50/SRW/SRU clients and 
servers
+arch=('i686' 'x86_64')
+url=http://www.indexdata.dk/yaz;
+license=('BSD')
+depends=('openssl' 'libxslt' 'icu')
+changelog=$pkgname.changelog
+source=(http://ftp.indexdata.dk/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('4501bbeee665e34ad480508e83fbe8b65d2b5fd0a8194077f1b4235b616a846e')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --enable-shared=yaz \
+  --with-openssl=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Copied: yaz/repos/community-staging-x86_64/yaz.changelog (from rev 109049, 
yaz/trunk/yaz.changelog)
===
--- community-staging-x86_64/yaz.changelog  (rev 0)
+++ community-staging-x86_64/yaz.changelog  2014-04-09 21:42:54 UTC (rev 
109050)
@@ -0,0 +1,14 @@
+2014-02-06 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * yaz 5.0.12-1
+
+2013-10-25 

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

2014-04-09 Thread Jan Steffens
Date: Wednesday, April 9, 2014 @ 23:43:54
  Author: heftig
Revision: 210099

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

Added:
  tracker/repos/staging-i686/
  tracker/repos/staging-i686/PKGBUILD
(from rev 210098, tracker/trunk/PKGBUILD)
  tracker/repos/staging-i686/tracker.install
(from rev 210098, tracker/trunk/tracker.install)
  tracker/repos/staging-x86_64/
  tracker/repos/staging-x86_64/PKGBUILD
(from rev 210098, tracker/trunk/PKGBUILD)
  tracker/repos/staging-x86_64/tracker.install
(from rev 210098, tracker/trunk/tracker.install)

+
 staging-i686/PKGBUILD  |   76 +++
 staging-i686/tracker.install   |   13 ++
 staging-x86_64/PKGBUILD|   76 +++
 staging-x86_64/tracker.install |   13 ++
 4 files changed, 178 insertions(+)

Copied: tracker/repos/staging-i686/PKGBUILD (from rev 210098, 
tracker/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-09 21:43:54 UTC (rev 210099)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=tracker
+pkgname=(tracker libtracker-sparql)
+pkgver=1.0.0
+pkgrel=3
+pkgdesc=All-in-one indexer, search tool and metadata database
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(libgee libsecret upower libexif exempi
+ poppler-glib libgsf icu enca networkmanager gtk3
+ desktop-file-utils hicolor-icon-theme gobject-introspection
+ intltool giflib gst-plugins-base-libs totem-plparser
+ taglib libvorbis flac vala libgxps libnautilus-extension 
libmediaart)
+url=http://www.gnome.org;
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver:0:3}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('a1d033faf2c78f0e239f3c2c961b96623c9a7dabd938c08e3f5660bd70f54ba2')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/tracker \
+--disable-unit-tests \
+--enable-libflac \
+--enable-libvorbis
+
+  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_tracker() {
+  depends=(libtracker-sparql=$pkgver-$pkgrel libgee libsecret
+   upower libexif exempi poppler-glib libgsf enca
+   networkmanager gtk3 desktop-file-utils hicolor-icon-theme 
libmediaart)
+  optdepends=('giflib: extractor for GIF data'
+  'gst-plugins-base-libs: video extractor'
+  'totem-plparser: playlist support'
+  'libvorbis: Vorbis metadata extractor'
+  'flac: FLAC metadata extractor'
+  'taglib: writeback for audio files'
+  nautilus: edit files' tracker tags
+  'libgxps: XPS extractor')
+  groups=('gnome')
+  install=tracker.install
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=$pkgdir install
+
+  for dir in libtracker-{sparql,common,data,sparql-backend}; do
+make DESTDIR=$pkgdir -C src/$dir uninstall
+  done
+
+  rm -f $pkgdir/usr/lib/pkgconfig/tracker-sparql-*.pc
+}
+
+package_libtracker-sparql() {
+  pkgdesc=$pkgdesc (SPARQL library)
+  depends=(sqlite icu glib2 libffi pcre util-linux)
+
+  cd $pkgbase-$pkgver/src
+  for dir in libtracker-{sparql,common,data,sparql-backend}; do
+make DESTDIR=$pkgdir -C $dir install
+  done
+
+  install -m755 -d $pkgdir/usr/lib/pkgconfig
+  install -m644 ../data/tracker-sparql-*.pc $pkgdir/usr/lib/pkgconfig/
+}

Copied: tracker/repos/staging-i686/tracker.install (from rev 210098, 
tracker/trunk/tracker.install)
===
--- staging-i686/tracker.install(rev 0)
+++ staging-i686/tracker.install2014-04-09 21:43:54 UTC (rev 210099)
@@ -0,0 +1,13 @@
+post_install() {
+  usr/bin/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: tracker/repos/staging-x86_64/PKGBUILD (from rev 210098, 
tracker/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-04-09 21:43:54 UTC (rev 210099)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: 

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:21:57
  Author: thomas
Revision: 210102

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

Added:
  kmod/repos/core-i686/PKGBUILD
(from rev 210099, kmod/repos/testing-i686/PKGBUILD)
  kmod/repos/core-i686/depmod-search.conf
(from rev 210099, kmod/repos/testing-i686/depmod-search.conf)
  kmod/repos/core-x86_64/PKGBUILD
(from rev 210099, kmod/repos/testing-x86_64/PKGBUILD)
  kmod/repos/core-x86_64/depmod-search.conf
(from rev 210099, kmod/repos/testing-x86_64/depmod-search.conf)
Deleted:
  kmod/repos/core-i686/PKGBUILD
  kmod/repos/core-i686/depmod-search.conf
  kmod/repos/core-x86_64/PKGBUILD
  kmod/repos/core-x86_64/depmod-search.conf
  kmod/repos/testing-i686/
  kmod/repos/testing-x86_64/

+
 /PKGBUILD  |  102 +++
 /depmod-search.conf|   10 +++
 core-i686/PKGBUILD |   51 ---
 core-i686/depmod-search.conf   |5 -
 core-x86_64/PKGBUILD   |   51 ---
 core-x86_64/depmod-search.conf |5 -
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-04-09 22:21:57 UTC (rev 210101)
+++ core-i686/PKGBUILD  2014-04-09 22:21:57 UTC (rev 210102)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-
-pkgname=kmod
-pkgver=16
-pkgrel=1
-pkgdesc=Linux kernel module handling
-arch=('i686' 'x86_64')
-url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
-license=('GPL2')
-depends=('glibc' 'zlib')
-makedepends=('gtk-doc')
-options=('strip' 'debug')
-provides=('module-init-tools=3.16' 'libkmod.so')
-conflicts=('module-init-tools')
-replaces=('module-init-tools')
-source=(ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz;
-depmod-search.conf)
-md5sums=('3006a0287211212501cdfe1211b29f09'
- 'dd62cbf62bd8f212f51ef8c43bec9a77')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---sysconfdir=/etc \
---enable-gtk-doc \
---with-zlib
-
-  make
-}
-
-check() {
-  make -C $pkgname-$pkgver check
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-
-  # extra directories
-  install -dm755 $pkgdir/{etc,usr/lib}/{depmod,modprobe}.d
-
-  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
-ln -s kmod $pkgdir/usr/bin/$tool
-  done
-
-  # install depmod.d file for search/ dir
-  install -Dm644 $srcdir/depmod-search.conf 
$pkgdir/usr/lib/depmod.d/search.conf
-}
-
-# vim: ft=sh syn=sh et

Copied: kmod/repos/core-i686/PKGBUILD (from rev 210099, 
kmod/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-04-09 22:21:57 UTC (rev 210102)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=kmod
+pkgver=17
+pkgrel=1
+pkgdesc=Linux kernel module handling
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=(ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz;
+depmod-search.conf)
+md5sums=('bc36d28b12dcb2b664a35411560c5610'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+
+  # extra directories
+  install -dm755 $pkgdir/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod $pkgdir/usr/bin/$tool
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 $srcdir/depmod-search.conf 
$pkgdir/usr/lib/depmod.d/search.conf
+}
+
+# vim: ft=sh syn=sh et

Deleted: core-i686/depmod-search.conf
===
--- core-i686/depmod-search.conf2014-04-09 22:21:57 UTC (rev 210101)
+++ core-i686/depmod-search.conf2014-04-09 22:21:57 UTC (rev 210102)
@@ -1,5 +0,0 @@
-#
-# /usr/lib/depmod.d/search.conf
-#
-
-search updates extramodules built-in

Copied: kmod/repos/core-i686/depmod-search.conf (from rev 210099, 
kmod/repos/testing-i686/depmod-search.conf)
===
--- core-i686/depmod-search.conf(rev 0)
+++ core-i686/depmod-search.conf2014-04-09 22:21:57 UTC (rev 210102)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Deleted: core-x86_64/PKGBUILD

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:03
  Author: thomas
Revision: 210105

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

Added:
  
util-linux/repos/core-i686/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
(from rev 210099, 
util-linux/repos/testing-i686/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch)
  
util-linux/repos/core-i686/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
(from rev 210099, 
util-linux/repos/testing-i686/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch)
  util-linux/repos/core-i686/PKGBUILD
(from rev 210099, util-linux/repos/testing-i686/PKGBUILD)
  util-linux/repos/core-i686/move_is_mountinfo.patch
(from rev 210099, util-linux/repos/testing-i686/move_is_mountinfo.patch)
  util-linux/repos/core-i686/pam-common
(from rev 210099, util-linux/repos/testing-i686/pam-common)
  util-linux/repos/core-i686/pam-login
(from rev 210099, util-linux/repos/testing-i686/pam-login)
  util-linux/repos/core-i686/pam-su
(from rev 210099, util-linux/repos/testing-i686/pam-su)
  util-linux/repos/core-i686/util-linux.install
(from rev 210099, util-linux/repos/testing-i686/util-linux.install)
  util-linux/repos/core-i686/uuidd.tmpfiles
(from rev 210099, util-linux/repos/testing-i686/uuidd.tmpfiles)
  
util-linux/repos/core-x86_64/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
(from rev 210099, 
util-linux/repos/testing-x86_64/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch)
  
util-linux/repos/core-x86_64/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
(from rev 210099, 
util-linux/repos/testing-x86_64/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch)
  util-linux/repos/core-x86_64/PKGBUILD
(from rev 210099, util-linux/repos/testing-x86_64/PKGBUILD)
  util-linux/repos/core-x86_64/move_is_mountinfo.patch
(from rev 210099, util-linux/repos/testing-x86_64/move_is_mountinfo.patch)
  util-linux/repos/core-x86_64/pam-common
(from rev 210099, util-linux/repos/testing-x86_64/pam-common)
  util-linux/repos/core-x86_64/pam-login
(from rev 210099, util-linux/repos/testing-x86_64/pam-login)
  util-linux/repos/core-x86_64/pam-su
(from rev 210099, util-linux/repos/testing-x86_64/pam-su)
  util-linux/repos/core-x86_64/util-linux.install
(from rev 210099, util-linux/repos/testing-x86_64/util-linux.install)
  util-linux/repos/core-x86_64/uuidd.tmpfiles
(from rev 210099, util-linux/repos/testing-x86_64/uuidd.tmpfiles)
Deleted:
  util-linux/repos/core-i686/PKGBUILD
  util-linux/repos/core-i686/pam-common
  util-linux/repos/core-i686/pam-login
  util-linux/repos/core-i686/pam-su
  util-linux/repos/core-i686/util-linux.install
  util-linux/repos/core-i686/uuidd.tmpfiles
  util-linux/repos/core-x86_64/PKGBUILD
  util-linux/repos/core-x86_64/pam-common
  util-linux/repos/core-x86_64/pam-login
  util-linux/repos/core-x86_64/pam-su
  util-linux/repos/core-x86_64/util-linux.install
  util-linux/repos/core-x86_64/uuidd.tmpfiles
  util-linux/repos/testing-i686/
  util-linux/repos/testing-x86_64/

-+
 /PKGBUILD   |  236 
++
 /pam-common |   12 
 /pam-login  |   14 
 /pam-su |   18 
 /util-linux.install |   42 
+
 /uuidd.tmpfiles |2 
 core-i686/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch |   98 

 core-i686/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch   |   59 
++
 core-i686/PKGBUILD  |  104 

 core-i686/move_is_mountinfo.patch   |   46 
+
 core-i686/pam-common|6 
 core-i686/pam-login |7 
 core-i686/pam-su|9 
 core-i686/util-linux.install|   21 
 core-i686/uuidd.tmpfiles|1 
 core-x86_64/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch   |   98 

 core-x86_64/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch |   59 
++
 core-x86_64/PKGBUILD|  104 

 core-x86_64/move_is_mountinfo.patch |   46 
+
 core-x86_64/pam-common  |6 
 core-x86_64/pam-login   |7 
 core-x86_64/pam-su  |9 
 

[arch-commits] Commit in gummiboot/repos (22 files)

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:21:57
  Author: thomas
Revision: 210101

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

Added:
  gummiboot/repos/core-i686/PKGBUILD
(from rev 210099, gummiboot/repos/testing-i686/PKGBUILD)
  gummiboot/repos/core-i686/arch.conf
(from rev 210099, gummiboot/repos/testing-i686/arch.conf)
  gummiboot/repos/core-i686/gummiboot.install
(from rev 210099, gummiboot/repos/testing-i686/gummiboot.install)
  gummiboot/repos/core-i686/loader.conf
(from rev 210099, gummiboot/repos/testing-i686/loader.conf)
  gummiboot/repos/core-i686/splash-arch.bmp
(from rev 210099, gummiboot/repos/testing-i686/splash-arch.bmp)
  gummiboot/repos/core-x86_64/PKGBUILD
(from rev 210099, gummiboot/repos/testing-x86_64/PKGBUILD)
  gummiboot/repos/core-x86_64/arch.conf
(from rev 210099, gummiboot/repos/testing-x86_64/arch.conf)
  gummiboot/repos/core-x86_64/gummiboot.install
(from rev 210099, gummiboot/repos/testing-x86_64/gummiboot.install)
  gummiboot/repos/core-x86_64/loader.conf
(from rev 210099, gummiboot/repos/testing-x86_64/loader.conf)
  gummiboot/repos/core-x86_64/splash-arch.bmp
(from rev 210099, gummiboot/repos/testing-x86_64/splash-arch.bmp)
Deleted:
  gummiboot/repos/core-i686/PKGBUILD
  gummiboot/repos/core-i686/arch.conf
  gummiboot/repos/core-i686/gummiboot.install
  gummiboot/repos/core-i686/loader.conf
  gummiboot/repos/core-i686/splash-arch.bmp
  gummiboot/repos/core-x86_64/PKGBUILD
  gummiboot/repos/core-x86_64/arch.conf
  gummiboot/repos/core-x86_64/gummiboot.install
  gummiboot/repos/core-x86_64/loader.conf
  gummiboot/repos/core-x86_64/splash-arch.bmp
  gummiboot/repos/testing-i686/
  gummiboot/repos/testing-x86_64/

---+
 /PKGBUILD |  100 
 /arch.conf|   14 +
 /gummiboot.install|   26 ++
 /loader.conf  |4 +
 core-i686/PKGBUILD|   50 
 core-i686/arch.conf   |7 --
 core-i686/gummiboot.install   |   13 -
 core-i686/loader.conf |2 
 core-x86_64/PKGBUILD  |   50 
 core-x86_64/arch.conf |7 --
 core-x86_64/gummiboot.install |   13 -
 core-x86_64/loader.conf   |2 
 12 files changed, 144 insertions(+), 144 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-04-09 22:21:54 UTC (rev 210100)
+++ core-i686/PKGBUILD  2014-04-09 22:21:57 UTC (rev 210101)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-# Contributor: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
-# Contributor:  Mantas Mikulėnas graw...@gmail.com
-
-pkgname=gummiboot
-pkgver=43
-pkgrel=2
-pkgdesc=Simple UEFI Boot Manager
-url=http://freedesktop.org/wiki/Software/gummiboot;
-arch=('x86_64' 'i686')
-license=('LGPL2.1')
-makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
-depends=('util-linux')
-conflicts=('gummiboot-efi')
-provides=('gummiboot-efi')
-replaces=('gummiboot-efi')
-options=('!strip' '!makeflags')
-source=(git://anongit.freedesktop.org/${pkgname}#commit=48e0a487
-'loader.conf'
-'arch.conf'
-   'splash-arch.bmp')
-install=gummiboot.install
-md5sums=('SKIP'
- '6ea803e5179d623716e3be0b636de658'
- '82bda9612e3a361a74cf8de2a0134b15'
- '1e2f9a8b0fa32022bf0a8f39123e5f4e')
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   ./autogen.sh
-   ./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib 
--libexecdir=/usr/lib --libdir=/usr/lib
-   
-   make
-}
-
-package() {
-   ## Install gummiboot example configuration files (can go away with 
systemd's kernel-install)
-   install -D -m0644 ${srcdir}/loader.conf 
${pkgdir}/usr/lib/gummiboot/loader/loader.conf
-   install -D -m0644 ${srcdir}/arch.conf 
${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf
-
-   ## ship an Arch Linux boot splash (still has to be dropped in manually 
to take effect)
-   install -D -m0644 ${srcdir}/splash-arch.bmp 
${pkgdir}/usr/lib/gummiboot/splash-arch.bmp
-
-   cd ${srcdir}/${pkgname}
-
-   make DESTDIR=${pkgdir} install
-}

Copied: gummiboot/repos/core-i686/PKGBUILD (from rev 210099, 
gummiboot/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-04-09 22:21:57 UTC (rev 210101)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Keshav P R (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
+# Contributor:  Mantas Mikulėnas graw...@gmail.com
+
+pkgname=gummiboot
+pkgver=44
+pkgrel=1
+pkgdesc=Simple UEFI Boot Manager

[arch-commits] Commit in linux/repos (64 files)

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:21:59
  Author: thomas
Revision: 210103

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

Added:
  linux/repos/core-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 210099, 
linux/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/core-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 210099, 
linux/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux/repos/core-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 210099, 
linux/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux/repos/core-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 210099, 
linux/repos/testing-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux/repos/core-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 210099, 
linux/repos/testing-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux/repos/core-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 210099, 
linux/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch)
  
linux/repos/core-i686/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch
(from rev 210099, 
linux/repos/testing-i686/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch)
  linux/repos/core-i686/PKGBUILD
(from rev 210099, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 210099, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 210099, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 210099, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/linux.install
(from rev 210099, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 210099, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 210099, 
linux/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/core-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 210099, 
linux/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux/repos/core-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 210099, 
linux/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux/repos/core-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 210099, 
linux/repos/testing-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux/repos/core-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 210099, 
linux/repos/testing-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux/repos/core-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 210099, 
linux/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch)
  
linux/repos/core-x86_64/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch
(from rev 210099, 
linux/repos/testing-x86_64/0007-Fix-the-use-of-code32_start-in-the-EFI-boot-stub.patch)
  linux/repos/core-x86_64/PKGBUILD
(from rev 210099, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 210099, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 210099, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 210099, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/linux.install
(from rev 210099, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 210099, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
  
linux/repos/core-i686/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch
  
linux/repos/core-i686/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch
  
linux/repos/core-i686/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch
  
linux/repos/core-i686/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch
  
linux/repos/core-i686/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch
  
linux/repos/core-i686/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch
  
linux/repos/core-i686/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.last
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/criu-no-expert.patch
  linux/repos/core-i686/i8042-fix-aliases.patch
  

[arch-commits] Commit in systemd/repos (22 files)

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:01
  Author: thomas
Revision: 210104

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

Added:
  systemd/repos/core-i686/PKGBUILD
(from rev 210099, systemd/repos/testing-i686/PKGBUILD)
  systemd/repos/core-i686/initcpio-hook-udev
(from rev 210099, systemd/repos/testing-i686/initcpio-hook-udev)
  systemd/repos/core-i686/initcpio-install-systemd
(from rev 210099, systemd/repos/testing-i686/initcpio-install-systemd)
  systemd/repos/core-i686/initcpio-install-udev
(from rev 210099, systemd/repos/testing-i686/initcpio-install-udev)
  systemd/repos/core-i686/systemd.install
(from rev 210099, systemd/repos/testing-i686/systemd.install)
  systemd/repos/core-x86_64/PKGBUILD
(from rev 210099, systemd/repos/testing-x86_64/PKGBUILD)
  systemd/repos/core-x86_64/initcpio-hook-udev
(from rev 210099, systemd/repos/testing-x86_64/initcpio-hook-udev)
  systemd/repos/core-x86_64/initcpio-install-systemd
(from rev 210099, systemd/repos/testing-x86_64/initcpio-install-systemd)
  systemd/repos/core-x86_64/initcpio-install-udev
(from rev 210099, systemd/repos/testing-x86_64/initcpio-install-udev)
  systemd/repos/core-x86_64/systemd.install
(from rev 210099, systemd/repos/testing-x86_64/systemd.install)
Deleted:
  systemd/repos/core-i686/PKGBUILD
  systemd/repos/core-i686/initcpio-hook-udev
  systemd/repos/core-i686/initcpio-install-systemd
  systemd/repos/core-i686/initcpio-install-udev
  systemd/repos/core-i686/systemd.install
  systemd/repos/core-x86_64/PKGBUILD
  systemd/repos/core-x86_64/initcpio-hook-udev
  systemd/repos/core-x86_64/initcpio-install-systemd
  systemd/repos/core-x86_64/initcpio-install-udev
  systemd/repos/core-x86_64/systemd.install
  systemd/repos/testing-i686/
  systemd/repos/testing-x86_64/

--+
 /PKGBUILD|  300 ++
 /initcpio-hook-udev  |   44 
 /initcpio-install-systemd|  320 +
 /initcpio-install-udev   |   58 +
 /systemd.install |  288 +
 core-i686/PKGBUILD   |  150 ---
 core-i686/initcpio-hook-udev |   22 --
 core-i686/initcpio-install-systemd   |  159 
 core-i686/initcpio-install-udev  |   29 --
 core-i686/systemd.install|  144 --
 core-x86_64/PKGBUILD |  150 ---
 core-x86_64/initcpio-hook-udev   |   22 --
 core-x86_64/initcpio-install-systemd |  159 
 core-x86_64/initcpio-install-udev|   29 --
 core-x86_64/systemd.install  |  144 --
 15 files changed, 1010 insertions(+), 1008 deletions(-)

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


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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:53
  Author: thomas
Revision: 109055

db-move: moved tp_smapi from [community-testing] to [community] (i686, x86_64)

Added:
  tp_smapi/repos/community-i686/PKGBUILD
(from rev 109050, tp_smapi/repos/community-testing-i686/PKGBUILD)
  tp_smapi/repos/community-i686/tp_smapi.install
(from rev 109050, tp_smapi/repos/community-testing-i686/tp_smapi.install)
  tp_smapi/repos/community-x86_64/PKGBUILD
(from rev 109050, tp_smapi/repos/community-testing-x86_64/PKGBUILD)
  tp_smapi/repos/community-x86_64/tp_smapi.install
(from rev 109050, tp_smapi/repos/community-testing-x86_64/tp_smapi.install)
Deleted:
  tp_smapi/repos/community-i686/PKGBUILD
  tp_smapi/repos/community-i686/tp_smapi.install
  tp_smapi/repos/community-testing-i686/
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-x86_64/PKGBUILD
  tp_smapi/repos/community-x86_64/tp_smapi.install

---+
 /PKGBUILD |  118 
 /tp_smapi.install |   26 +++
 community-i686/PKGBUILD   |   59 --
 community-i686/tp_smapi.install   |   13 ---
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/tp_smapi.install |   13 ---
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 22:22:52 UTC (rev 109054)
+++ community-i686/PKGBUILD 2014-04-09 22:22:53 UTC (rev 109055)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
-# Contributor: Nick B Shirakawasuna ð gmail đ com
-# Contributor: Christof Musik christof ð senfdax đ de
-# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
-# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
-
-pkgname=tp_smapi
-pkgver=0.41
-pkgrel=44
-pkgdesc=Modules for ThinkPad's SMAPI functionality
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux=3.13' 'linux3.14')
-makedepends=('linux-headers=3.13' 'linux-headers3.14')
-install=${pkgname}.install
-source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('63c683415c764568f6bf17c7eabe4752')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
- -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
-
-  make HDAPS=1
-}
-
-package() {
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  make -C ${_extramodules%/*}/${_kernver}/build \
-INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
-M=${srcdir}/${pkgname}-${pkgver} modules_install
-
-  cd ${pkgdir}/${_extramodules%/*}
-  mv ${_kernver}/extra ${_extramodules##*/}
-  rmdir ${_kernver}
-
-  # compress kernel modules
-  find ${pkgdir} -name *.ko -exec gzip -9 {} +
-
-  # load module on startup
-  echo tp_smapi  ${srcdir}/${pkgname}.conf
-  install -Dm644 ${srcdir}/${pkgname}.conf 
${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
-
-  # update kernel version in install file
-  sed -ri s#^(extramodules=).*\$#\1${_extramodules}# 
${startdir}/${pkgname}.install
-}

Copied: tp_smapi/repos/community-i686/PKGBUILD (from rev 109050, 
tp_smapi/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 22:22:53 UTC (rev 109055)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi
+pkgver=0.41
+pkgrel=45
+pkgdesc=Modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux=3.14' 'linux3.15')
+makedepends=('linux-headers=3.14' 'linux-headers3.15')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
+  _kernver=$( 

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:26
  Author: thomas
Revision: 210106

db-move: moved lirc from [testing] to [extra] (i686, x86_64)

Added:
  lirc/repos/extra-i686/PKGBUILD
(from rev 210105, lirc/repos/testing-i686/PKGBUILD)
  lirc/repos/extra-i686/irexec.service
(from rev 210105, lirc/repos/testing-i686/irexec.service)
  lirc/repos/extra-i686/kernel-2.6.39.patch
(from rev 210105, lirc/repos/testing-i686/kernel-2.6.39.patch)
  lirc/repos/extra-i686/linux-3.8.patch
(from rev 210105, lirc/repos/testing-i686/linux-3.8.patch)
  lirc/repos/extra-i686/lirc-utils.install
(from rev 210105, lirc/repos/testing-i686/lirc-utils.install)
  lirc/repos/extra-i686/lirc.install
(from rev 210105, lirc/repos/testing-i686/lirc.install)
  lirc/repos/extra-i686/lirc.logrotate
(from rev 210105, lirc/repos/testing-i686/lirc.logrotate)
  lirc/repos/extra-i686/lirc.service
(from rev 210105, lirc/repos/testing-i686/lirc.service)
  lirc/repos/extra-i686/lirc.tmpfiles
(from rev 210105, lirc/repos/testing-i686/lirc.tmpfiles)
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
(from rev 210105, lirc/repos/testing-i686/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-i686/lirc_wpc8769l.patch
(from rev 210105, lirc/repos/testing-i686/lirc_wpc8769l.patch)
  lirc/repos/extra-i686/lircd-handle-large-config.patch
(from rev 210105, lirc/repos/testing-i686/lircd-handle-large-config.patch)
  lirc/repos/extra-i686/lircm.service
(from rev 210105, lirc/repos/testing-i686/lircm.service)
  lirc/repos/extra-x86_64/PKGBUILD
(from rev 210105, lirc/repos/testing-x86_64/PKGBUILD)
  lirc/repos/extra-x86_64/irexec.service
(from rev 210105, lirc/repos/testing-x86_64/irexec.service)
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
(from rev 210105, lirc/repos/testing-x86_64/kernel-2.6.39.patch)
  lirc/repos/extra-x86_64/linux-3.8.patch
(from rev 210105, lirc/repos/testing-x86_64/linux-3.8.patch)
  lirc/repos/extra-x86_64/lirc-utils.install
(from rev 210105, lirc/repos/testing-x86_64/lirc-utils.install)
  lirc/repos/extra-x86_64/lirc.install
(from rev 210105, lirc/repos/testing-x86_64/lirc.install)
  lirc/repos/extra-x86_64/lirc.logrotate
(from rev 210105, lirc/repos/testing-x86_64/lirc.logrotate)
  lirc/repos/extra-x86_64/lirc.service
(from rev 210105, lirc/repos/testing-x86_64/lirc.service)
  lirc/repos/extra-x86_64/lirc.tmpfiles
(from rev 210105, lirc/repos/testing-x86_64/lirc.tmpfiles)
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
(from rev 210105, lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
(from rev 210105, lirc/repos/testing-x86_64/lirc_wpc8769l.patch)
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
(from rev 210105, lirc/repos/testing-x86_64/lircd-handle-large-config.patch)
  lirc/repos/extra-x86_64/lircm.service
(from rev 210105, lirc/repos/testing-x86_64/lircm.service)
Deleted:
  lirc/repos/extra-i686/PKGBUILD
  lirc/repos/extra-i686/irexec.service
  lirc/repos/extra-i686/kernel-2.6.39.patch
  lirc/repos/extra-i686/linux-3.8.patch
  lirc/repos/extra-i686/lirc-utils.install
  lirc/repos/extra-i686/lirc.install
  lirc/repos/extra-i686/lirc.logrotate
  lirc/repos/extra-i686/lirc.service
  lirc/repos/extra-i686/lirc.tmpfiles
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
  lirc/repos/extra-i686/lirc_wpc8769l.patch
  lirc/repos/extra-i686/lircd-handle-large-config.patch
  lirc/repos/extra-i686/lircm.service
  lirc/repos/extra-x86_64/PKGBUILD
  lirc/repos/extra-x86_64/irexec.service
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
  lirc/repos/extra-x86_64/linux-3.8.patch
  lirc/repos/extra-x86_64/lirc-utils.install
  lirc/repos/extra-x86_64/lirc.install
  lirc/repos/extra-x86_64/lirc.logrotate
  lirc/repos/extra-x86_64/lirc.service
  lirc/repos/extra-x86_64/lirc.tmpfiles
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
  lirc/repos/extra-x86_64/lircm.service
  lirc/repos/testing-i686/
  lirc/repos/testing-x86_64/

--+
 /PKGBUILD|  242 +
 /irexec.service  |   22 ++
 /kernel-2.6.39.patch |  108 +++
 /linux-3.8.patch |  160 
 /lirc-utils.install  |   14 +
 /lirc.install|   32 +++
 /lirc.logrotate  |   10 +
 /lirc.service|   24 ++
 /lirc.tmpfiles   |2 
 /lirc_atiusb-kfifo.patch |   62 ++
 /lirc_wpc8769l.patch |  176 ++
 /lircd-handle-large-config.patch |   78 
 /lircm.service   |   24 ++
 extra-i686/PKGBUILD  

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:52
  Author: thomas
Revision: 109054

db-move: moved rt3562sta from [community-testing] to [community] (i686, x86_64)

Added:
  rt3562sta/repos/community-i686/PKGBUILD
(from rev 109050, rt3562sta/repos/community-testing-i686/PKGBUILD)
  rt3562sta/repos/community-i686/rt3562sta.install
(from rev 109050, rt3562sta/repos/community-testing-i686/rt3562sta.install)
  rt3562sta/repos/community-x86_64/PKGBUILD
(from rev 109050, rt3562sta/repos/community-testing-x86_64/PKGBUILD)
  rt3562sta/repos/community-x86_64/rt3562sta.install
(from rev 109050, 
rt3562sta/repos/community-testing-x86_64/rt3562sta.install)
Deleted:
  rt3562sta/repos/community-i686/PKGBUILD
  rt3562sta/repos/community-i686/linux-3.8.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
  rt3562sta/repos/community-i686/rt3562sta.install
  rt3562sta/repos/community-testing-i686/
  rt3562sta/repos/community-testing-x86_64/
  rt3562sta/repos/community-x86_64/PKGBUILD
  rt3562sta/repos/community-x86_64/linux-3.8.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch
  rt3562sta/repos/community-x86_64/rt3562sta.install

+
 /PKGBUILD  
|  120 ++
 /rt3562sta.install 
|   32 ++
 community-i686/PKGBUILD
|   88 ---
 community-i686/linux-3.8.patch 
|   50 
 community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch   
|   11 
 community-i686/rt3562sta-2.4.1.1-config.patch  
|   98 
 community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch 
|   13 -
 community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch 
|   14 -
 community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch 
|   15 -
 
community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
   |   47 ---
 community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
|   11 
 community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch  
|   11 
 community-i686/rt3562sta.install   
|   16 -
 community-x86_64/PKGBUILD  
|   88 ---
 community-x86_64/linux-3.8.patch   
|   50 
 community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch 
|   11 
 community-x86_64/rt3562sta-2.4.1.1-config.patch
|   98 
 community-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch   
|   13 -
 community-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch   
|   14 -
 community-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch   
|   15 -
 
community-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
 |   47 ---
 community-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch  
|   11 
 community-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch
|   11 
 community-x86_64/rt3562sta.install 
|   16 -
 24 files changed, 152 insertions(+), 748 deletions(-)

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


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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:49
  Author: thomas
Revision: 109052

db-move: moved bbswitch from [community-testing] to [community] (i686, x86_64)

Added:
  bbswitch/repos/community-i686/PKGBUILD
(from rev 109050, bbswitch/repos/community-testing-i686/PKGBUILD)
  bbswitch/repos/community-i686/bbswitch.install
(from rev 109050, bbswitch/repos/community-testing-i686/bbswitch.install)
  bbswitch/repos/community-x86_64/PKGBUILD
(from rev 109050, bbswitch/repos/community-testing-x86_64/PKGBUILD)
  bbswitch/repos/community-x86_64/bbswitch.install
(from rev 109050, bbswitch/repos/community-testing-x86_64/bbswitch.install)
Deleted:
  bbswitch/repos/community-i686/PKGBUILD
  bbswitch/repos/community-i686/bbswitch.install
  bbswitch/repos/community-testing-i686/
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-x86_64/PKGBUILD
  bbswitch/repos/community-x86_64/bbswitch.install

---+
 /PKGBUILD |   66 
 /bbswitch.install |   24 +
 community-i686/PKGBUILD   |   33 --
 community-i686/bbswitch.install   |   12 --
 community-x86_64/PKGBUILD |   33 --
 community-x86_64/bbswitch.install |   12 --
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 22:22:48 UTC (rev 109051)
+++ community-i686/PKGBUILD 2014-04-09 22:22:49 UTC (rev 109052)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: M0Rf30
-# Contributor: Samsagax samsa...@gmail.com
-
-pkgname=bbswitch
-pkgver=0.8
-_extramodules=extramodules-3.13-ARCH # Don't forget to update bbswitch.install
-pkgrel=6
-pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
-arch=('i686' 'x86_64')
-url=(http://github.com/Bumblebee-Project/bbswitch;)
-license=('GPL')
-depends=('linux=3.13' 'linux3.14')
-makedepends=('linux-headers=3.13' 'linux-headers3.14')
-install=bbswitch.install
-source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
-md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-
-  make KDIR=/lib/modules/${_kernver}/build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-   
-  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
-  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
-}

Copied: bbswitch/repos/community-i686/PKGBUILD (from rev 109050, 
bbswitch/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 22:22:49 UTC (rev 109052)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: M0Rf30
+# Contributor: Samsagax samsa...@gmail.com
+
+pkgname=bbswitch
+pkgver=0.8
+_extramodules=extramodules-3.14-ARCH # Don't forget to update bbswitch.install
+pkgrel=7
+pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
+arch=('i686' 'x86_64')
+url=(http://github.com/Bumblebee-Project/bbswitch;)
+license=('GPL')
+depends=('linux=3.14' 'linux3.15')
+makedepends=('linux-headers=3.14' 'linux-headers3.15')
+install=bbswitch.install
+source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
+}

Deleted: community-i686/bbswitch.install
===
--- community-i686/bbswitch.install 2014-04-09 22:22:48 UTC (rev 109051)
+++ community-i686/bbswitch.install 2014-04-09 22:22:49 UTC (rev 109052)
@@ -1,12 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.13-ARCH'
-depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bbswitch/repos/community-i686/bbswitch.install (from rev 109050, 
bbswitch/repos/community-testing-i686/bbswitch.install)
===
--- community-i686/bbswitch.install (rev 0)
+++ community-i686/bbswitch.install 2014-04-09 22:22:49 UTC (rev 109052)
@@ -0,0 +1,12 @@
+post_install() {
+

[arch-commits] Commit in nvidia/repos (14 files)

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:28
  Author: thomas
Revision: 210107

db-move: moved nvidia from [testing] to [extra] (i686, x86_64)

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 210105, nvidia/repos/testing-i686/PKGBUILD)
  nvidia/repos/extra-i686/nvidia-3.14.patch
(from rev 210105, nvidia/repos/testing-i686/nvidia-3.14.patch)
  nvidia/repos/extra-i686/nvidia.install
(from rev 210105, nvidia/repos/testing-i686/nvidia.install)
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 210105, nvidia/repos/testing-x86_64/PKGBUILD)
  nvidia/repos/extra-x86_64/nvidia-3.14.patch
(from rev 210105, nvidia/repos/testing-x86_64/nvidia-3.14.patch)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 210105, nvidia/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/extra-i686/nvidia_3.13_kernel.patch
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/nvidia.install
  nvidia/repos/extra-x86_64/nvidia_3.13_kernel.patch
  nvidia/repos/testing-i686/
  nvidia/repos/testing-x86_64/

---+
 /PKGBUILD |  104 
 /nvidia.install   |   36 +++
 extra-i686/PKGBUILD   |   49 ---
 extra-i686/nvidia-3.14.patch  |   12 +++
 extra-i686/nvidia.install |   18 -
 extra-i686/nvidia_3.13_kernel.patch   |   46 --
 extra-x86_64/PKGBUILD |   49 ---
 extra-x86_64/nvidia-3.14.patch|   12 +++
 extra-x86_64/nvidia.install   |   18 -
 extra-x86_64/nvidia_3.13_kernel.patch |   46 --
 10 files changed, 164 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 22:22:26 UTC (rev 210106)
+++ extra-i686/PKGBUILD 2014-04-09 22:22:28 UTC (rev 210107)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=334.21
-_extramodules=extramodules-3.13-ARCH
-pkgrel=2
-pkgdesc=NVIDIA drivers for linux
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.13' 'linux3.14' nvidia-libgl nvidia-utils=${pkgver})
-makedepends=('linux-headers=3.13' 'linux-headers3.14')
-conflicts=('nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-md5sums=('3b2736dd6ed7e24f71004bad0e55e32e'
- 'f96b6708702830fe647a7d11832c514e')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-prepare() {
-sh ${_pkg}.run --extract-only
-cd ${_pkg}
-# patches here
-}
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${_pkg}/kernel
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-
-cd uvm
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/*.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-}

Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 210105, 
nvidia/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-09 22:22:28 UTC (rev 210107)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=334.21
+_extramodules=extramodules-3.14-ARCH
+pkgrel=4
+pkgdesc=NVIDIA drivers for linux
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.14' 'linux3.15' nvidia-libgl nvidia-utils=${pkgver})
+makedepends=('linux-headers=3.14' 'linux-headers3.15')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'nvidia-3.14.patch')
+md5sums=('3b2736dd6ed7e24f71004bad0e55e32e'
+ 'f96b6708702830fe647a7d11832c514e'
+ '08810729376eb0f829dedaf00d1c5915')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = 

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:48
  Author: thomas
Revision: 109051

db-move: moved acpi_call from [community-testing] to [community] (i686, x86_64)

Added:
  acpi_call/repos/community-i686/PKGBUILD
(from rev 109050, acpi_call/repos/community-testing-i686/PKGBUILD)
  acpi_call/repos/community-i686/acpi_call.install
(from rev 109050, acpi_call/repos/community-testing-i686/acpi_call.install)
  acpi_call/repos/community-x86_64/PKGBUILD
(from rev 109050, acpi_call/repos/community-testing-x86_64/PKGBUILD)
  acpi_call/repos/community-x86_64/acpi_call.install
(from rev 109050, 
acpi_call/repos/community-testing-x86_64/acpi_call.install)
Deleted:
  acpi_call/repos/community-i686/PKGBUILD
  acpi_call/repos/community-i686/acpi_call.install
  acpi_call/repos/community-testing-i686/
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-x86_64/PKGBUILD
  acpi_call/repos/community-x86_64/acpi_call.install

+
 /PKGBUILD  |   80 +++
 /acpi_call.install |   28 
 community-i686/PKGBUILD|   40 -
 community-i686/acpi_call.install   |   14 --
 community-x86_64/PKGBUILD  |   40 -
 community-x86_64/acpi_call.install |   14 --
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 21:42:54 UTC (rev 109050)
+++ community-i686/PKGBUILD 2014-04-09 22:22:48 UTC (rev 109051)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: mortzu m...@mortzu.de
-# Contributor: fnord0 fno...@riseup.net
-
-pkgname=acpi_call
-pkgver=1.1.0
-pkgrel=2
-_extramodules=extramodules-3.13-ARCH
-pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
-arch=('i686' 'x86_64')
-url=http://github.com/mkottman/${pkgname};
-license=('GPL')
-depends=('linux=3.13' 'linux3.14')
-makedepends=('linux-headers=3.13' 'linux-headers3.14')
-install=${pkgname}.install
-source=(${url}/archive/v${pkgver}.tar.gz)
-sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-
-  make KVERSION=${_kernver}
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -dm 755 ${pkgdir}/usr/lib/{modules/${_extramodules},modules-load.d}
-  install -m 644 ${pkgname}.ko ${pkgdir}/usr/lib/modules/${_extramodules}
-  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/${pkgname}.ko
-  echo ${pkgname}  ${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
-
-  install -dm 755 ${pkgdir}/usr/share/${pkgname}
-  cp -dr --no-preserve='ownership' {examples,support} 
${pkgdir}/usr/share/${pkgname}/
-}
-
-# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-i686/PKGBUILD (from rev 109050, 
acpi_call/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 22:22:48 UTC (rev 109051)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: mortzu m...@mortzu.de
+# Contributor: fnord0 fno...@riseup.net
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=3
+_extramodules=extramodules-3.14-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url=http://github.com/mkottman/${pkgname};
+license=('GPL')
+depends=('linux=3.14' 'linux3.15')
+makedepends=('linux-headers=3.14' 'linux-headers3.15')
+install=${pkgname}.install
+source=(${url}/archive/v${pkgver}.tar.gz)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KVERSION=${_kernver}
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -dm 755 ${pkgdir}/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname}.ko ${pkgdir}/usr/lib/modules/${_extramodules}
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/${pkgname}.ko
+  echo ${pkgname}  ${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 ${pkgdir}/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
${pkgdir}/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/acpi_call.install
===
--- community-i686/acpi_call.install2014-04-09 21:42:54 UTC (rev 109050)
+++ community-i686/acpi_call.install2014-04-09 22:22:48 UTC (rev 109051)
@@ -1,14 +0,0 @@
-post_install() {
-  _extramodules=extramodules-3.13-ARCH
-  depmod $(cat /usr/lib/modules/${_extramodules}/version)
-}
-
-post_upgrade() {
-  post_install
-}
-

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:55
  Author: thomas
Revision: 109057

db-move: moved virtualbox-modules from [community-testing] to [community] 
(i686, x86_64)

Added:
  virtualbox-modules/repos/community-i686/PKGBUILD
(from rev 109050, virtualbox-modules/repos/community-testing-i686/PKGBUILD)
  virtualbox-modules/repos/community-i686/build.sh
(from rev 109050, virtualbox-modules/repos/community-testing-i686/build.sh)
  virtualbox-modules/repos/community-i686/virtualbox-guest-modules.install
(from rev 109050, 
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install)
  virtualbox-modules/repos/community-i686/virtualbox-host-modules.install
(from rev 109050, 
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install)
  virtualbox-modules/repos/community-x86_64/PKGBUILD
(from rev 109050, 
virtualbox-modules/repos/community-testing-x86_64/PKGBUILD)
  virtualbox-modules/repos/community-x86_64/build.sh
(from rev 109050, 
virtualbox-modules/repos/community-testing-x86_64/build.sh)
  virtualbox-modules/repos/community-x86_64/virtualbox-guest-modules.install
(from rev 109050, 
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install)
  virtualbox-modules/repos/community-x86_64/virtualbox-host-modules.install
(from rev 109050, 
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install)
Deleted:
  virtualbox-modules/repos/community-i686/PKGBUILD
  virtualbox-modules/repos/community-i686/build.sh
  virtualbox-modules/repos/community-i686/virtualbox-guest-modules.install
  virtualbox-modules/repos/community-i686/virtualbox-host-modules.install
  virtualbox-modules/repos/community-testing-i686/
  virtualbox-modules/repos/community-testing-x86_64/
  virtualbox-modules/repos/community-x86_64/PKGBUILD
  virtualbox-modules/repos/community-x86_64/build.sh
  virtualbox-modules/repos/community-x86_64/virtualbox-guest-modules.install
  virtualbox-modules/repos/community-x86_64/virtualbox-host-modules.install

---+
 /PKGBUILD |  126 
 /build.sh |  120 +++
 /virtualbox-guest-modules.install |   42 ++
 /virtualbox-host-modules.install  |   46 +++
 community-i686/PKGBUILD   |   63 --
 community-i686/build.sh   |   60 -
 community-i686/virtualbox-guest-modules.install   |   21 ---
 community-i686/virtualbox-host-modules.install|   23 ---
 community-x86_64/PKGBUILD |   63 --
 community-x86_64/build.sh |   60 -
 community-x86_64/virtualbox-guest-modules.install |   21 ---
 community-x86_64/virtualbox-host-modules.install  |   23 ---
 12 files changed, 334 insertions(+), 334 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 22:22:54 UTC (rev 109056)
+++ community-i686/PKGBUILD 2014-04-09 22:22:55 UTC (rev 109057)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.3.10
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux=3.13' 'linux3.14'
- 'linux-headers=3.13' 'linux-headers3.14'
- virtualbox-host-dkms=$pkgver
- virtualbox-guest-dkms=$pkgver)
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.13-ARCH
-
-build() {
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  # dkms need modification to be run as user
-  cp -r /var/lib/dkms .
-  echo dkms_tree='$srcdir/dkms'  dkms.conf
-  # build host modules
-  msg2 'Host modules'
-  dkms --dkmsframework dkms.conf build vboxhost/$pkgver -k $_kernver
-  # build guest modules
-  msg2 'Guest modules'
-  dkms --dkmsframework dkms.conf build vboxguest/$pkgver -k $_kernver
-}
-
-package_virtualbox-host-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux=3.13' 'linux3.14')
-  replaces=('virtualbox-modules')
-  conflicts=('virtualbox-modules')
-  install=virtualbox-host-modules.install
-
-  cd dkms/vboxhost/$pkgver/$_kernver/$CARCH/module
-  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
-  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
-  find $pkgdir -name '*.ko' -exec gzip -9 {} +
-}
-
-package_virtualbox-guest-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux=3.13' 'linux3.14')
-  

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:50
  Author: thomas
Revision: 109053

db-move: moved r8168 from [community-testing] to [community] (i686, x86_64)

Added:
  r8168/repos/community-i686/PKGBUILD
(from rev 109050, r8168/repos/community-testing-i686/PKGBUILD)
  r8168/repos/community-i686/r8168.install
(from rev 109050, r8168/repos/community-testing-i686/r8168.install)
  r8168/repos/community-x86_64/PKGBUILD
(from rev 109050, r8168/repos/community-testing-x86_64/PKGBUILD)
  r8168/repos/community-x86_64/r8168.install
(from rev 109050, r8168/repos/community-testing-x86_64/r8168.install)
Deleted:
  r8168/repos/community-i686/PKGBUILD
  r8168/repos/community-i686/r8168.install
  r8168/repos/community-testing-i686/
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-x86_64/PKGBUILD
  r8168/repos/community-x86_64/r8168.install

+
 /PKGBUILD  |   90 +++
 /r8168.install |   34 ++
 community-i686/PKGBUILD|   45 ---
 community-i686/r8168.install   |   17 ---
 community-x86_64/PKGBUILD  |   45 ---
 community-x86_64/r8168.install |   17 ---
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 22:22:49 UTC (rev 109052)
+++ community-i686/PKGBUILD 2014-04-09 22:22:50 UTC (rev 109053)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Bob Fanger  bfanger(at)gmail 
-# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
-
-pkgname=r8168
-pkgver=8.038.00
-pkgrel=1
-pkgdesc=A kernel module for Realtek 8168 network cards
-url=http://www.realtek.com.tw;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('glibc' 'linux')
-makedepends=('linux-headers')
-source=(https://dl.dropboxusercontent.com/u/362439/archlinux/r8168-$pkgver.tar.bz2;)
-install=$pkgname.install
-
-build() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-
-   cd $pkgname-$pkgver
-
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
-   SUBDIRS=$srcdir/$pkgname-$pkgver/src \
-   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   depends=(linux=3.${_kernver} linux3.$(expr ${_kernver} + 1))
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-   msg Kernel = $KERNEL_VERSION
-
-   cd $pkgname-$pkgver
-   install -Dm644 src/$pkgname.ko 
$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko
-   find $pkgdir -name '*.ko' -exec gzip -9 {} +
-
-   sed -i s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH| 
$startdir/$pkgname.install
-}
-
-sha256sums=('1384bdf4d33b219f937bf1a600c72b22962baf7796e562b08e4da3c000f49072')

Copied: r8168/repos/community-i686/PKGBUILD (from rev 109050, 
r8168/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 22:22:50 UTC (rev 109053)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Bob Fanger  bfanger(at)gmail 
+# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
+
+pkgname=r8168
+pkgver=8.038.00
+pkgrel=2
+pkgdesc=A kernel module for Realtek 8168 network cards
+url=http://www.realtek.com.tw;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://dl.dropboxusercontent.com/u/362439/archlinux/r8168-$pkgver.tar.bz2;)
+install=$pkgname.install
+
+build() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
+
+   cd $pkgname-$pkgver
+
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
+   SUBDIRS=$srcdir/$pkgname-$pkgver/src \
+   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+   depends=(linux=3.${_kernver} linux3.$(expr ${_kernver} + 1))
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
+   msg Kernel = $KERNEL_VERSION
+
+   cd $pkgname-$pkgver
+   install 

[arch-commits] Commit in nvidia-304xx/repos (10 files)

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:30
  Author: thomas
Revision: 210108

db-move: moved nvidia-304xx from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 210105, nvidia-304xx/repos/testing-i686/PKGBUILD)
  nvidia-304xx/repos/extra-i686/nvidia.install
(from rev 210105, nvidia-304xx/repos/testing-i686/nvidia.install)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 210105, nvidia-304xx/repos/testing-x86_64/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/nvidia.install
(from rev 210105, nvidia-304xx/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/nvidia.install
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/nvidia.install
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-x86_64/

-+
 /PKGBUILD   |  106 ++
 /nvidia.install |   30 +++
 extra-i686/PKGBUILD |   52 
 extra-i686/nvidia.install   |   15 -
 extra-x86_64/PKGBUILD   |   52 
 extra-x86_64/nvidia.install |   15 -
 6 files changed, 136 insertions(+), 134 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-09 22:22:28 UTC (rev 210107)
+++ extra-i686/PKGBUILD 2014-04-09 22:22:30 UTC (rev 210108)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia-304xx
-pkgver=304.121
-_extramodules=extramodules-3.13-ARCH
-pkgrel=2
-pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.13' 'linux3.14' 'nvidia-304xx-libgl' 
nvidia-304xx-utils=${pkgver})
-makedepends=('linux-headers=3.13' 'linux-headers3.14')
-conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('b8c950f0a30a6e1f503630fbd0ca8ab9')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('41e6d2b6325e5b0ae9889cfbd6bec696')
-fi
-
-
-prepare() {
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-}
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${_pkg}/kernel
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-
-# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
-}

Copied: nvidia-304xx/repos/extra-i686/PKGBUILD (from rev 210105, 
nvidia-304xx/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-09 22:22:30 UTC (rev 210108)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia-304xx
+pkgver=304.121
+_extramodules=extramodules-3.14-ARCH
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.14' 'linux3.15' 'nvidia-304xx-libgl' 
nvidia-304xx-utils=${pkgver})
+makedepends=('linux-headers=3.14' 'linux-headers3.15')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('b8c950f0a30a6e1f503630fbd0ca8ab9')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('41e6d2b6325e5b0ae9889cfbd6bec696')
+fi
+
+prepare() {
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${pkg}
+# patches here
+}
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+install -D -m644 

[arch-commits] Commit in vhba-module/repos (14 files)

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:22:54
  Author: thomas
Revision: 109056

db-move: moved vhba-module from [community-testing] to [community] (i686, 
x86_64)

Added:
  vhba-module/repos/community-i686/60-vhba.rules
(from rev 109050, vhba-module/repos/community-testing-i686/60-vhba.rules)
  vhba-module/repos/community-i686/PKGBUILD
(from rev 109050, vhba-module/repos/community-testing-i686/PKGBUILD)
  vhba-module/repos/community-i686/vhba-module.install
(from rev 109050, 
vhba-module/repos/community-testing-i686/vhba-module.install)
  vhba-module/repos/community-x86_64/60-vhba.rules
(from rev 109050, vhba-module/repos/community-testing-x86_64/60-vhba.rules)
  vhba-module/repos/community-x86_64/PKGBUILD
(from rev 109050, vhba-module/repos/community-testing-x86_64/PKGBUILD)
  vhba-module/repos/community-x86_64/vhba-module.install
(from rev 109050, 
vhba-module/repos/community-testing-x86_64/vhba-module.install)
Deleted:
  vhba-module/repos/community-i686/60-vhba.rules
  vhba-module/repos/community-i686/PKGBUILD
  vhba-module/repos/community-i686/vhba-module.install
  vhba-module/repos/community-testing-i686/
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-x86_64/60-vhba.rules
  vhba-module/repos/community-x86_64/PKGBUILD
  vhba-module/repos/community-x86_64/vhba-module.install

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   80 +
 /vhba-module.install |   44 ++
 community-i686/60-vhba.rules |1 
 community-i686/PKGBUILD  |   40 
 community-i686/vhba-module.install   |   22 -
 community-x86_64/60-vhba.rules   |1 
 community-x86_64/PKGBUILD|   40 
 community-x86_64/vhba-module.install |   22 -
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/60-vhba.rules
===
--- community-i686/60-vhba.rules2014-04-09 22:22:53 UTC (rev 109055)
+++ community-i686/60-vhba.rules2014-04-09 22:22:54 UTC (rev 109056)
@@ -1 +0,0 @@
-ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Copied: vhba-module/repos/community-i686/60-vhba.rules (from rev 109050, 
vhba-module/repos/community-testing-i686/60-vhba.rules)
===
--- community-i686/60-vhba.rules(rev 0)
+++ community-i686/60-vhba.rules2014-04-09 22:22:54 UTC (rev 109056)
@@ -0,0 +1 @@
+ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 22:22:53 UTC (rev 109055)
+++ community-i686/PKGBUILD 2014-04-09 22:22:54 UTC (rev 109056)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Mateusz Herych heni...@gmail.com
-# Contributor: Charles Lindsay char...@chaoslizard.org
-
-pkgname=vhba-module
-pkgver=20130607
-_extramodules=extramodules-3.13-ARCH
-pkgrel=24
-pkgdesc=Kernel module that emulates SCSI devices
-arch=('i686' 'x86_64')
-url=http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux=3.13' 'linux3.14')
-makedepends=('linux-headers')
-options=(!makeflags)
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-md5sums=('660df41d08b1fd86baad1f16a0264438'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-build() {
-  cd $pkgname-$pkgver
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko $pkgdir/usr/lib/modules/$_extramodules/vhba.ko
-  install -Dm644 ../60-vhba.rules $pkgdir/usr/lib/udev/rules.d/60-vhba.rules
-
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true  install=${install}.pkg
-  sed -i s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/ $install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-i686/PKGBUILD (from rev 109050, 
vhba-module/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 22:22:54 UTC (rev 109056)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Charles Lindsay char...@chaoslizard.org
+
+pkgname=vhba-module
+pkgver=20130607
+_extramodules=extramodules-3.14-ARCH
+pkgrel=25
+pkgdesc=Kernel module that emulates SCSI devices
+arch=('i686' 'x86_64')
+url=http://cdemu.sourceforge.net/;
+license=('GPL')
+depends=('linux=3.14' 'linux3.15')

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

2014-04-09 Thread Thomas Bächler
Date: Thursday, April 10, 2014 @ 00:21:54
  Author: thomas
Revision: 210100

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

Added:
  coreutils/repos/core-i686/0001-cp-don-t-reserve-a-device-number.patch
(from rev 210099, 
coreutils/repos/testing-i686/0001-cp-don-t-reserve-a-device-number.patch)
  coreutils/repos/core-i686/PKGBUILD
(from rev 210099, coreutils/repos/testing-i686/PKGBUILD)
  coreutils/repos/core-i686/coreutils-8.22-shuf-segfault.patch
(from rev 210099, 
coreutils/repos/testing-i686/coreutils-8.22-shuf-segfault.patch)
  coreutils/repos/core-i686/coreutils.install
(from rev 210099, coreutils/repos/testing-i686/coreutils.install)
  coreutils/repos/core-x86_64/0001-cp-don-t-reserve-a-device-number.patch
(from rev 210099, 
coreutils/repos/testing-x86_64/0001-cp-don-t-reserve-a-device-number.patch)
  coreutils/repos/core-x86_64/PKGBUILD
(from rev 210099, coreutils/repos/testing-x86_64/PKGBUILD)
  coreutils/repos/core-x86_64/coreutils-8.22-shuf-segfault.patch
(from rev 210099, 
coreutils/repos/testing-x86_64/coreutils-8.22-shuf-segfault.patch)
  coreutils/repos/core-x86_64/coreutils.install
(from rev 210099, coreutils/repos/testing-x86_64/coreutils.install)
Deleted:
  coreutils/repos/core-i686/PKGBUILD
  coreutils/repos/core-i686/coreutils-8.22-shuf-segfault.patch
  coreutils/repos/core-i686/coreutils.install
  coreutils/repos/core-x86_64/PKGBUILD
  coreutils/repos/core-x86_64/coreutils-8.22-shuf-segfault.patch
  coreutils/repos/core-x86_64/coreutils.install
  coreutils/repos/testing-i686/
  coreutils/repos/testing-x86_64/

-+
 /PKGBUILD   |   92 
 /coreutils-8.22-shuf-segfault.patch |  148 ++
 /coreutils.install  |   34 +++
 core-i686/0001-cp-don-t-reserve-a-device-number.patch   |   77 +++
 core-i686/PKGBUILD  |   43 
 core-i686/coreutils-8.22-shuf-segfault.patch|   74 ---
 core-i686/coreutils.install |   17 -
 core-x86_64/0001-cp-don-t-reserve-a-device-number.patch |   77 +++
 core-x86_64/PKGBUILD|   43 
 core-x86_64/coreutils-8.22-shuf-segfault.patch  |   74 ---
 core-x86_64/coreutils.install   |   17 -
 11 files changed, 428 insertions(+), 268 deletions(-)

Copied: coreutils/repos/core-i686/0001-cp-don-t-reserve-a-device-number.patch 
(from rev 210099, 
coreutils/repos/testing-i686/0001-cp-don-t-reserve-a-device-number.patch)
===
--- core-i686/0001-cp-don-t-reserve-a-device-number.patch   
(rev 0)
+++ core-i686/0001-cp-don-t-reserve-a-device-number.patch   2014-04-09 
22:21:54 UTC (rev 210100)
@@ -0,0 +1,77 @@
+From d0294ff3b90430750a631556277c75f1a555dd44 Mon Sep 17 00:00:00 2001
+From: Paul Eggert egg...@cs.ucla.edu
+Date: Thu, 3 Apr 2014 09:48:22 -0700
+Subject: [PATCH] cp: don't reserve a device number
+
+* src/copy.c (copy_internal): Replace dev_t arg DEVICE with struct
+stat pointer arg PARENT.  All callers changed.  This removes an
+unwarranted assumption that dev_t values of 0 cannot occur in file
+systems.  See: http://bugs.gnu.org/17179
+---
+ src/copy.c | 15 +++
+ 1 file changed, 7 insertions(+), 8 deletions(-)
+
+diff --git a/src/copy.c b/src/copy.c
+index 781cc1e..d471a77 100644
+--- a/src/copy.c
 b/src/copy.c
+@@ -117,7 +117,7 @@ struct dir_list
+ #define DEST_INFO_INITIAL_CAPACITY 61
+ 
+ static bool copy_internal (char const *src_name, char const *dst_name,
+-   bool new_dst, dev_t device,
++   bool new_dst, struct stat const *parent,
+struct dir_list *ancestors,
+const struct cp_options *x,
+bool command_line_arg,
+@@ -621,7 +621,7 @@ copy_dir (char const *src_name_in, char const 
*dst_name_in, bool new_dst,
+   char *dst_name = file_name_concat (dst_name_in, namep, NULL);
+   bool first_dir_created = *first_dir_created_per_command_line_arg;
+ 
+-  ok = copy_internal (src_name, dst_name, new_dst, src_sb-st_dev,
++  ok = copy_internal (src_name, dst_name, new_dst, src_sb,
+ancestors, non_command_line_options, false,
+first_dir_created,
+local_copy_into_self, NULL);
+@@ -1725,9 +1725,8 @@ should_dereference (const struct cp_options *x, bool 
command_line_arg)
+ /* Copy the file SRC_NAME to the file DST_NAME.  The files may be of
+any type.  NEW_DST should be true if the file DST_NAME cannot
+exist because its parent directory was just created; NEW_DST should
+-   be false if DST_NAME might already exist.  DEVICE is the device
+-   number of 

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

2014-04-09 Thread Anatol Pomozov
Date: Thursday, April 10, 2014 @ 01:28:54
  Author: anatolik
Revision: 210109

upgpkg: re2c 0.13.6-1

Modified:
  re2c/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 22:22:30 UTC (rev 210108)
+++ PKGBUILD2014-04-09 23:28:54 UTC (rev 210109)
@@ -4,8 +4,8 @@
 # Contributor: Dale Blount d...@archlinux.org
 
 pkgname=re2c
-pkgver=0.13.5
-pkgrel=3
+pkgver=0.13.6
+pkgrel=1
 arch=('i686' 'x86_64')
 depends=('gcc-libs')
 pkgdesc=A tool for generating C-based recognizers from regular expressions
@@ -12,15 +12,20 @@
 url=http://re2c.sourceforge.net/;
 license=('GPL')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('4a97d8f77ed6d2c76c8bd840a43f5633')
+md5sums=('8927c3f65d445c40f2e6213269dcef2d')
 
 build() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
 package() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=${pkgdir} install
 }



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

2014-04-09 Thread Anatol Pomozov
Date: Thursday, April 10, 2014 @ 01:29:33
  Author: anatolik
Revision: 210110

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

Added:
  re2c/repos/testing-i686/
  re2c/repos/testing-i686/PKGBUILD
(from rev 210109, re2c/trunk/PKGBUILD)
  re2c/repos/testing-x86_64/
  re2c/repos/testing-x86_64/PKGBUILD
(from rev 210109, re2c/trunk/PKGBUILD)

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

Copied: re2c/repos/testing-i686/PKGBUILD (from rev 210109, re2c/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-09 23:29:33 UTC (rev 210110)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: nut543 k...@online.no
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=re2c
+pkgver=0.13.6
+pkgrel=1
+arch=('i686' 'x86_64')
+depends=('gcc-libs')
+pkgdesc=A tool for generating C-based recognizers from regular expressions
+url=http://re2c.sourceforge.net/;
+license=('GPL')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('8927c3f65d445c40f2e6213269dcef2d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Copied: re2c/repos/testing-x86_64/PKGBUILD (from rev 210109, 
re2c/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-09 23:29:33 UTC (rev 210110)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: nut543 k...@online.no
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=re2c
+pkgver=0.13.6
+pkgrel=1
+arch=('i686' 'x86_64')
+depends=('gcc-libs')
+pkgdesc=A tool for generating C-based recognizers from regular expressions
+url=http://re2c.sourceforge.net/;
+license=('GPL')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('8927c3f65d445c40f2e6213269dcef2d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}



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

2014-04-09 Thread Daniel Micay
Date: Thursday, April 10, 2014 @ 01:39:03
  Author: thestinger
Revision: 109058

upgpkg: python-pygit2 0.20.3-1

Modified:
  python-pygit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 22:22:55 UTC (rev 109057)
+++ PKGBUILD2014-04-09 23:39:03 UTC (rev 109058)
@@ -3,8 +3,8 @@
 
 pkgbase=python-pygit2
 pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.20.2
-pkgrel=2
+pkgver=0.20.3
+pkgrel=1
 pkgdesc='Python bindings for libgit2'
 url=https://github.com/libgit2/pygit2;
 depends=(libgit2)
@@ -12,7 +12,7 @@
 arch=(i686 x86_64)
 license=('GPL2')
 source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('97631fd2b468fa91a2f6f771ce95f242')
+md5sums=('3002cc84ab85600a7eeca5611e20dca0')
 
 package_python-pygit2() {
   cd $srcdir/pygit2-$pkgver



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

2014-04-09 Thread Daniel Micay
Date: Thursday, April 10, 2014 @ 01:39:38
  Author: thestinger
Revision: 109059

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

Added:
  python-pygit2/repos/community-i686/PKGBUILD
(from rev 109058, python-pygit2/trunk/PKGBUILD)
  python-pygit2/repos/community-x86_64/PKGBUILD
(from rev 109058, python-pygit2/trunk/PKGBUILD)
Deleted:
  python-pygit2/repos/community-i686/PKGBUILD
  python-pygit2/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-09 23:39:03 UTC (rev 109058)
+++ community-i686/PKGBUILD 2014-04-09 23:39:38 UTC (rev 109059)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgbase=python-pygit2
-pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.20.2
-pkgrel=2
-pkgdesc='Python bindings for libgit2'
-url=https://github.com/libgit2/pygit2;
-depends=(libgit2)
-makedepends=(python python2)
-arch=(i686 x86_64)
-license=('GPL2')
-source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('97631fd2b468fa91a2f6f771ce95f242')
-
-package_python-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python)
-  replaces=(python-libgit2)
-  conflicts=(python-libgit2)
-  LANG=en_US.UTF8 python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python2)
-  replaces=(python2-libgit2)
-  conflicts=(python2-libgit2)
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

Copied: python-pygit2/repos/community-i686/PKGBUILD (from rev 109058, 
python-pygit2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-09 23:39:38 UTC (rev 109059)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+pkgbase=python-pygit2
+pkgname=(python-pygit2 python2-pygit2)
+pkgver=0.20.3
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+url=https://github.com/libgit2/pygit2;
+depends=(libgit2)
+makedepends=(python python2)
+arch=(i686 x86_64)
+license=('GPL2')
+source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
+md5sums=('3002cc84ab85600a7eeca5611e20dca0')
+
+package_python-pygit2() {
+  cd $srcdir/pygit2-$pkgver
+  depends+=(python)
+  replaces=(python-libgit2)
+  conflicts=(python-libgit2)
+  LANG=en_US.UTF8 python setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-pygit2() {
+  cd $srcdir/pygit2-$pkgver
+  depends+=(python2)
+  replaces=(python2-libgit2)
+  conflicts=(python2-libgit2)
+  python2 setup.py install --root=$pkgdir --optimize=1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-09 23:39:03 UTC (rev 109058)
+++ community-x86_64/PKGBUILD   2014-04-09 23:39:38 UTC (rev 109059)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgbase=python-pygit2
-pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.20.2
-pkgrel=2
-pkgdesc='Python bindings for libgit2'
-url=https://github.com/libgit2/pygit2;
-depends=(libgit2)
-makedepends=(python python2)
-arch=(i686 x86_64)
-license=('GPL2')
-source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('97631fd2b468fa91a2f6f771ce95f242')
-
-package_python-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python)
-  replaces=(python-libgit2)
-  conflicts=(python-libgit2)
-  LANG=en_US.UTF8 python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python2)
-  replaces=(python2-libgit2)
-  conflicts=(python2-libgit2)
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

Copied: python-pygit2/repos/community-x86_64/PKGBUILD (from rev 109058, 
python-pygit2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-09 23:39:38 UTC (rev 109059)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+pkgbase=python-pygit2
+pkgname=(python-pygit2 python2-pygit2)
+pkgver=0.20.3
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+url=https://github.com/libgit2/pygit2;
+depends=(libgit2)
+makedepends=(python python2)
+arch=(i686 x86_64)
+license=('GPL2')
+source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
+md5sums=('3002cc84ab85600a7eeca5611e20dca0')
+
+package_python-pygit2() {
+  cd $srcdir/pygit2-$pkgver
+  depends+=(python)
+  replaces=(python-libgit2)
+  conflicts=(python-libgit2)
+  

  1   2   >