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

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 09:05:48
  Author: lcarlier
Revision: 115639

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-libxcb/repos/multilib-staging-x86_64/
  
lib32-libxcb/repos/multilib-staging-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
(from rev 115638, 
lib32-libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
  
lib32-libxcb/repos/multilib-staging-x86_64/Force-XCB-event-structures-with-64-bit-extended-fiel.patch
(from rev 115638, 
lib32-libxcb/trunk/Force-XCB-event-structures-with-64-bit-extended-fiel.patch)
  lib32-libxcb/repos/multilib-staging-x86_64/PKGBUILD
(from rev 115638, lib32-libxcb/trunk/PKGBUILD)
  lib32-libxcb/repos/multilib-staging-x86_64/libxcb-1.1-no-pthread-stubs.patch
(from rev 115638, lib32-libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)

+
 Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch |  121 +++
 Force-XCB-event-structures-with-64-bit-extended-fiel.patch |  102 +
 PKGBUILD   |   61 +
 libxcb-1.1-no-pthread-stubs.patch  |   11 +
 4 files changed, 295 insertions(+)

Copied: 
lib32-libxcb/repos/multilib-staging-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
 (from rev 115638, 
lib32-libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
===
--- 
multilib-staging-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
  (rev 0)
+++ 
multilib-staging-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
  2014-07-13 07:05:48 UTC (rev 115639)
@@ -0,0 +1,121 @@
+From be0fe56c3bcad5124dcc6c47a2fad01acd16f71a Mon Sep 17 00:00:00 2001
+From: Keith Packard kei...@keithp.com
+Date: Mon, 23 Dec 2013 21:15:20 -0800
+Subject: [PATCH] Ensure xcb owns socket and no other threads are writing
+ before send_request
+
+send_request may only write to out.queue if no other thread is busy
+writing to the network (as that thread may be writing from out.queue).
+
+send_request may only allocate request sequence numbers if XCB owns
+the socket.
+
+Therefore, send_request must make sure that both conditions are true
+when it holds iolock, which can only be done by looping until both
+conditions are true without having dropped the lock waiting for the
+second condition.
+
+We choose to get the socket back from Xlib first as get_socket_back
+has a complicated test and checking for other threads writing is a
+simple in-lined check.
+
+This also changes the sequence number checks (64k requests with no
+reply, 4M request wrapping) to ensure that both conditions are true
+before queueing the request.
+
+Signed-off-by: Keith Packard kei...@keithp.com
+Reviewed-by: Uli Schlachter psyc...@znc.in
+---
+ src/xcb_out.c | 57 -
+ 1 file changed, 40 insertions(+), 17 deletions(-)
+
+diff --git a/src/xcb_out.c b/src/xcb_out.c
+index 18bb5f9..dc42954 100644
+--- a/src/xcb_out.c
 b/src/xcb_out.c
+@@ -103,6 +103,33 @@ static void get_socket_back(xcb_connection_t *c)
+ _xcb_in_replies_done(c);
+ }
+ 
++static void prepare_socket_request(xcb_connection_t *c)
++{
++/* We're about to append data to out.queue, so we need to
++ * atomically test for an external socket owner *and* some other
++ * thread currently writing.
++ *
++ * If we have an external socket owner, we have to get the socket back
++ * before we can use it again.
++ *
++ * If some other thread is writing to the socket, we assume it's
++ * writing from out.queue, and so we can't stick data there.
++ *
++ * We satisfy this condition by first calling get_socket_back
++ * (which may drop the lock, but will return when XCB owns the
++ * socket again) and then checking for another writing thread and
++ * escaping the loop if we're ready to go.
++ */
++for (;;) {
++if(c-has_error)
++return;
++get_socket_back(c);
++if (!c-out.writing)
++break;
++pthread_cond_wait(c-out.cond, c-iolock);
++}
++}
++
+ /* Public interface */
+ 
+ void xcb_prefetch_maximum_request_length(xcb_connection_t *c)
+@@ -236,24 +263,23 @@ unsigned int xcb_send_request(xcb_connection_t *c, int 
flags, struct iovec *vect
+ 
+ /* get a sequence number and arrange for delivery. */
+ pthread_mutex_lock(c-iolock);
+-/* wait for other writing threads to get out of my way. */
+-while(c-out.writing)
+-pthread_cond_wait(c-out.cond, c-iolock);
+-get_socket_back(c);
++
++prepare_socket_request(c);
+ 
+ /* send GetInputFocus (sync_req) when 64k-2 requests have been sent 
without
+- * a reply. */
+-if(req-isvoid  c-out.request == c-in.request_expected + (1  16) - 
2)
+-send_sync(c);
+-

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

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 09:05:40
  Author: lcarlier
Revision: 115638

upgpkg: lib32-libxcb 1.10-3

Fix Present support (FS#41172)

Added:
  lib32-libxcb/trunk/Force-XCB-event-structures-with-64-bit-extended-fiel.patch
Modified:
  lib32-libxcb/trunk/PKGBUILD

+
 Force-XCB-event-structures-with-64-bit-extended-fiel.patch |  102 +++
 PKGBUILD   |   10 -
 2 files changed, 109 insertions(+), 3 deletions(-)

Added: Force-XCB-event-structures-with-64-bit-extended-fiel.patch
===
--- Force-XCB-event-structures-with-64-bit-extended-fiel.patch  
(rev 0)
+++ Force-XCB-event-structures-with-64-bit-extended-fiel.patch  2014-07-13 
07:05:40 UTC (rev 115638)
@@ -0,0 +1,102 @@
+From 3b72a2c9d1d656c74c691a45689e1d637f669e3a Mon Sep 17 00:00:00 2001
+From: Kenneth Graunke kenn...@whitecape.org
+Date: Fri, 03 Jan 2014 23:08:33 +
+Subject: Force XCB event structures with 64-bit extended fields to be packed.
+
+With the advent of the Present extension, some events (such as
+PresentCompleteNotify) now use native 64-bit types on the wire.
+
+For XGE events, we insert an extra uint32_t full_sequence field
+immediately after the first 32 bytes of data.  Normally, this causes
+the subsequent fields to be shifted over by 4 bytes, and the structure
+to grow in size by 4 bytes.  Everything works fine.
+
+However, if event contains 64-bit extended fields, this may result in
+the compiler adding an extra 4 bytes of padding so that those fields
+remain aligned on 64-bit boundaries.  This causes the structure to grow
+by 8 bytes, not 4.  Unfortunately, XCB doesn't realize this, and
+always believes that the length only increased by 4.  read_packet()
+then fails to malloc enough memory to hold the event, and the event
+processing code uses the wrong offsets.
+
+To fix this, mark any event structures containing 64-bit extended
+fields with __attribute__((__packed__)).
+
+v2: Use any(...) instead of True in (...), as suggested by
+Daniel Martin.
+
+v3 (Alan Coopersmith): Fix build with Solaris Studio 12.3 by moving the
+attribute to after the structure definition.
+
+Signed-off-by: Kenneth Graunke kenn...@whitecape.org
+Reviewed-by: Keith Packard kei...@keithp.com [v1]
+Reviewed-by: Josh Triplett j...@joshtriplett.org [v1]
+Reviewed-by: Daniel Martin consume.no...@gmail.com
+Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com
+---
+diff --git a/src/c_client.py b/src/c_client.py
+index 99fd307..45de544 100644
+--- a/src/c_client.py
 b/src/c_client.py
+@@ -1762,7 +1762,7 @@ def c_simple(self, name):
+ # Iterator
+ _c_iterator(self, name)
+ 
+-def _c_complex(self):
++def _c_complex(self, force_packed = False):
+ '''
+ Helper function for handling all structure types.
+ Called for all structs, requests, replies, events, errors.
+@@ -1817,7 +1817,7 @@ def _c_complex(self):
+ if b.type.has_name:
+ _h('} %s;', b.c_field_name)
+ 
+-_h('} %s;', self.c_type)
++_h('} %s%s;', 'XCB_PACKED ' if force_packed else '', self.c_type)
+ 
+ def c_struct(self, name):
+ '''
+@@ -2902,6 +2902,7 @@ def c_event(self, name):
+ # events while generating the structure for them. Otherwise we would read
+ # garbage (the internal full_sequence) when accessing normal event fields
+ # there.
++force_packed = False
+ if hasattr(self, 'is_ge_event') and self.is_ge_event and self.name == 
name:
+ event_size = 0
+ for field in self.fields:
+@@ -2911,6 +2912,11 @@ def c_event(self, name):
+ full_sequence = Field(tcard32, tcard32.name, 'full_sequence', 
False, True, True)
+ idx = self.fields.index(field)
+ self.fields.insert(idx + 1, full_sequence)
++
++# If the event contains any 64-bit extended fields, they need
++# to remain aligned on a 64-bit boundary.  Adding 
full_sequence
++# would normally break that; force the struct to be packed.
++force_packed = any(f.type.size == 8 and f.type.is_simple for 
f in self.fields[(idx+1):])
+ break
+ 
+ _c_type_setup(self, name, ('event',))
+@@ -2920,7 +2926,7 @@ def c_event(self, name):
+ 
+ if self.name == name:
+ # Structure definition
+-_c_complex(self)
++_c_complex(self, force_packed)
+ else:
+ # Typedef
+ _h('')
+diff --git a/src/xcb.h b/src/xcb.h
+index e62c985..73c77a3 100644
+--- a/src/xcb.h
 b/src/xcb.h
+@@ -51,6 +51,8 @@ extern C {
+  * @file xcb.h
+  */
+ 
++#define XCB_PACKED __attribute__((__packed__))
++
+ /**
+  * @defgroup XCB_Core_API XCB Core API
+  * @brief Core API of the XCB library.
+--
+cgit v0.9.0.2-2-gbebe

Modified: PKGBUILD
===
--- 

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

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 09:13:17
  Author: lcarlier
Revision: 115640

upgpkg: lib32-mesa 10.2.3-2

rebuild to fix Present support (FS#41172)

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 07:05:48 UTC (rev 115639)
+++ PKGBUILD2014-07-13 07:13:17 UTC (rev 115640)
@@ -5,7 +5,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
 pkgver=10.2.3
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
  'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd'



[arch-commits] Commit in lib32-mesa/repos (2 files)

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 09:13:42
  Author: lcarlier
Revision: 115641

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-mesa/repos/multilib-testing-x86_64/
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD
(from rev 115640, lib32-mesa/trunk/PKGBUILD)

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

Copied: lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD (from rev 115640, 
lib32-mesa/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2014-07-13 07:13:42 UTC (rev 115641)
@@ -0,0 +1,159 @@
+# $Id$
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgbase=lib32-mesa
+pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
+pkgver=10.2.3
+pkgrel=2
+arch=('x86_64')
+makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
+ 'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd'
+ 'lib32-libvdpau' 'lib32-wayland')
+url=http://mesa3d.sourceforge.net;
+license=('custom')
+source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2)
+sha256sums=('e482a96170c98b17d6aba0d6e4dda4b9a2e61c39587bb64ac38cadfa4aba4aeb')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+  export LLVM_CONFIG=/usr/bin/llvm-config32
+
+  cd ${srcdir}/?esa-*
+
+  # our automake is far too new for their build system :)
+  autoreconf -vfi
+
+  ./configure --enable-32-bit \
+--libdir=/usr/lib32 \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-dri-driverdir=/usr/lib32/xorg/modules/dri \
+--with-gallium-drivers=r300,r600,radeonsi,nouveau,swrast \
+--with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
+--with-egl-platforms=x11,drm,wayland \
+--enable-llvm-shared-libs \
+--enable-egl \
+--disable-gallium-egl \
+--enable-gbm \
+--enable-gallium-gbm \
+--enable-gallium-llvm \
+--enable-shared-glapi \
+--enable-glx-tls \
+--enable-dri \
+--enable-glx \
+--enable-osmesa \
+--enable-gles1 \
+--enable-gles2 \
+--enable-texture-float \
+--enable-vdpau \
+--enable-dri3
+
+  make
+
+  mkdir $srcdir/fakeinstall
+  make DESTDIR=${srcdir}/fakeinstall install
+}
+
+package_lib32-ati-dri() {
+  pkgdesc=Mesa drivers for AMD/ATI Radeon (32-bit)
+  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'ati-dri')
+
+  install -m755 -d ${pkgdir}/usr/lib32/vdpau/
+  mv -v ${srcdir}/fakeinstall/usr/lib32/vdpau/libvdpau_{r600,radeonsi}.* 
${pkgdir}/usr/lib32/vdpau/
+
+  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
+  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{r200,r300,r600,radeon,radeonsi}_dri.so
 ${pkgdir}/usr/lib32/xorg/modules/dri/
+
+  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
+  mv -v 
${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_{r300,r600,radeonsi}* 
${pkgdir}/usr/lib32/gallium-pipe/
+
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s ati-dri $pkgdir/usr/share/licenses/lib32-ati-dri
+}
+
+package_lib32-intel-dri() {
+  pkgdesc=Mesa DRI drivers for Intel (32-bit)
+  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'intel-dri')
+
+  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
+  mv -v ${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{i915,i965}_dri.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
+
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s intel-dri $pkgdir/usr/share/licenses/lib32-intel-dri
+}
+
+package_lib32-nouveau-dri() {
+  pkgdesc=Mesa drivers for Nouveau (32-bit)
+  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'nouveau-dri')
+
+  install -m755 -d ${pkgdir}/usr/lib32/vdpau/
+  mv -v ${srcdir}/fakeinstall/usr/lib32/vdpau/libvdpau_nouveau.* 
${pkgdir}/usr/lib32/vdpau/
+
+  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
+  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/nouveau_{dri,vieux_dri}.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
+
+  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
+  mv -v ${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_nouveau* 
${pkgdir}/usr/lib32/gallium-pipe/
+
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s nouveau-dri $pkgdir/usr/share/licenses/lib32-nouveau-dri
+}
+
+package_lib32-mesa() {
+  pkgdesc=an open-source implementation of the OpenGL specification (32-bit)
+  depends=('lib32-libdrm' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'lib32-libxshmfence' 'lib32-systemd' 'lib32-elfutils' 'lib32-llvm-libs' 
'lib32-libvdpau' 'lib32-wayland' 'mesa')
+  optdepends=('opengl-man-pages: for the OpenGL API man pages')

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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 10:51:13
  Author: fyan
Revision: 115643

addpkg: zramctl 0.1-1 as dependency of systemd-swap

Added:
  zramctl/
  zramctl/repos/
  zramctl/trunk/
  zramctl/trunk/PKGBUILD

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

Added: zramctl/trunk/PKGBUILD
===
--- zramctl/trunk/PKGBUILD  (rev 0)
+++ zramctl/trunk/PKGBUILD  2014-07-13 08:51:13 UTC (rev 115643)
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 113760 2014-06-29 16:15:23Z fyan $
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=zramctl
+pkgver=0.1
+pkgrel=1
+pkgdesc=Tool to control zram devices
+arch=('i686' 'x86_64')
+url=https://github.com/Nefelim4ag/zramctl;
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('git')
+source=(git+https://github.com/Nefelim4ag/zramctl.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd zramctl
+  ./compile.sh
+}
+
+package() {
+  install -Dm755 zramctl/zramctl $pkgdir/usr/bin/zramctl
+}



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 10:51:41
  Author: fyan
Revision: 115644

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

Added:
  zramctl/repos/community-i686/
  zramctl/repos/community-i686/PKGBUILD
(from rev 115643, zramctl/trunk/PKGBUILD)
  zramctl/repos/community-x86_64/
  zramctl/repos/community-x86_64/PKGBUILD
(from rev 115643, zramctl/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   23 +++
 community-x86_64/PKGBUILD |   23 +++
 2 files changed, 46 insertions(+)

Copied: zramctl/repos/community-i686/PKGBUILD (from rev 115643, 
zramctl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-13 08:51:41 UTC (rev 115644)
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 113760 2014-06-29 16:15:23Z fyan $
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=zramctl
+pkgver=0.1
+pkgrel=1
+pkgdesc=Tool to control zram devices
+arch=('i686' 'x86_64')
+url=https://github.com/Nefelim4ag/zramctl;
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('git')
+source=(git+https://github.com/Nefelim4ag/zramctl.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd zramctl
+  ./compile.sh
+}
+
+package() {
+  install -Dm755 zramctl/zramctl $pkgdir/usr/bin/zramctl
+}

Copied: zramctl/repos/community-x86_64/PKGBUILD (from rev 115643, 
zramctl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-13 08:51:41 UTC (rev 115644)
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 113760 2014-06-29 16:15:23Z fyan $
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=zramctl
+pkgver=0.1
+pkgrel=1
+pkgdesc=Tool to control zram devices
+arch=('i686' 'x86_64')
+url=https://github.com/Nefelim4ag/zramctl;
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('git')
+source=(git+https://github.com/Nefelim4ag/zramctl.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd zramctl
+  ./compile.sh
+}
+
+package() {
+  install -Dm755 zramctl/zramctl $pkgdir/usr/bin/zramctl
+}



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 11:13:17
  Author: fyan
Revision: 115645

upgpkg: systemd-swap 2.24.1-1

Modified:
  systemd-swap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 08:51:41 UTC (rev 115644)
+++ PKGBUILD2014-07-13 09:13:17 UTC (rev 115645)
@@ -3,7 +3,7 @@
 # Contributor: Timofey Titovets nefelim...@gmail.com
 
 pkgname=systemd-swap
-pkgver=2.24
+pkgver=2.24.1
 pkgrel=1
 pkgdesc=Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions.
 arch=('any')
@@ -11,6 +11,7 @@
 license=('GPL3')
 conflicts=(systemd-loop-swapfile zramswap zram)
 depends=('systemd' 'bash')
+optdepends=('zramctl: for zram support')
 makedepends=('git')
 backup=(etc/systemd-swap.conf)
 install=$pkgname.install



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 11:13:36
  Author: fyan
Revision: 115646

archrelease: copy trunk to community-any

Added:
  systemd-swap/repos/community-any/PKGBUILD
(from rev 115645, systemd-swap/trunk/PKGBUILD)
  systemd-swap/repos/community-any/systemd-swap.install
(from rev 115645, systemd-swap/trunk/systemd-swap.install)
Deleted:
  systemd-swap/repos/community-any/PKGBUILD
  systemd-swap/repos/community-any/systemd-swap.install

--+
 PKGBUILD |   51 -
 systemd-swap.install |6 ++---
 2 files changed, 29 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 09:13:17 UTC (rev 115645)
+++ PKGBUILD2014-07-13 09:13:36 UTC (rev 115646)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Timofey Titovets nefelim...@gmail.com
-
-pkgname=systemd-swap
-pkgver=2.24
-pkgrel=1
-pkgdesc=Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions.
-arch=('any')
-url=https://github.com/Nefelim4ag/systemd-swap;
-license=('GPL3')
-conflicts=(systemd-loop-swapfile zramswap zram)
-depends=('systemd' 'bash')
-makedepends=('git')
-backup=(etc/systemd-swap.conf)
-install=$pkgname.install
-source=(git://github.com/Nefelim4ag/systemd-swap.git#tag=$pkgver)
-md5sums=('SKIP')
-
-package() {
-  install -Dm644 $srcdir/$pkgname/90-systemd-swap.conf 
$pkgdir/etc/modprobe.d/90-systemd-swap.conf
-  install -Dm644 $srcdir/$pkgname/systemd-swap.service 
$pkgdir/usr/lib/systemd/system/systemd-swap.service
-  install -Dm755 $srcdir/$pkgname/systemd-swap.sh  
$pkgdir/usr/lib/systemd/scripts/systemd-swap.sh
-  install -Dm644 $srcdir/$pkgname/systemd-swap.conf
$pkgdir/etc/systemd-swap.conf
-}

Copied: systemd-swap/repos/community-any/PKGBUILD (from rev 115645, 
systemd-swap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-13 09:13:36 UTC (rev 115646)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Timofey Titovets nefelim...@gmail.com
+
+pkgname=systemd-swap
+pkgver=2.24.1
+pkgrel=1
+pkgdesc=Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions.
+arch=('any')
+url=https://github.com/Nefelim4ag/systemd-swap;
+license=('GPL3')
+conflicts=(systemd-loop-swapfile zramswap zram)
+depends=('systemd' 'bash')
+optdepends=('zramctl: for zram support')
+makedepends=('git')
+backup=(etc/systemd-swap.conf)
+install=$pkgname.install
+source=(git://github.com/Nefelim4ag/systemd-swap.git#tag=$pkgver)
+md5sums=('SKIP')
+
+package() {
+  install -Dm644 $srcdir/$pkgname/90-systemd-swap.conf 
$pkgdir/etc/modprobe.d/90-systemd-swap.conf
+  install -Dm644 $srcdir/$pkgname/systemd-swap.service 
$pkgdir/usr/lib/systemd/system/systemd-swap.service
+  install -Dm755 $srcdir/$pkgname/systemd-swap.sh  
$pkgdir/usr/lib/systemd/scripts/systemd-swap.sh
+  install -Dm644 $srcdir/$pkgname/systemd-swap.conf
$pkgdir/etc/systemd-swap.conf
+}

Deleted: systemd-swap.install
===
--- systemd-swap.install2014-07-13 09:13:17 UTC (rev 115645)
+++ systemd-swap.install2014-07-13 09:13:36 UTC (rev 115646)
@@ -1,3 +0,0 @@
-post_install() {
-  echo To enable: sudo systemctl enable systemd-swap. Config in 
/etc/systemd-swap.conf
-}

Copied: systemd-swap/repos/community-any/systemd-swap.install (from rev 115645, 
systemd-swap/trunk/systemd-swap.install)
===
--- systemd-swap.install(rev 0)
+++ systemd-swap.install2014-07-13 09:13:36 UTC (rev 115646)
@@ -0,0 +1,3 @@
+post_install() {
+  echo To enable: sudo systemctl enable systemd-swap. Config in 
/etc/systemd-swap.conf
+}



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

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 12:46:56
  Author: lcarlier
Revision: 115647

upgpkg: lib32-systemd 215-1

upstream update 215

Added:
  
lib32-systemd/trunk/0001-networkd-properly-track-addresses-when-first-added.patch
Modified:
  lib32-systemd/trunk/PKGBUILD

---+
 0001-networkd-properly-track-addresses-when-first-added.patch |  104 ++
 PKGBUILD  |   14 +
 2 files changed, 115 insertions(+), 3 deletions(-)

Added: 0001-networkd-properly-track-addresses-when-first-added.patch
===
--- 0001-networkd-properly-track-addresses-when-first-added.patch   
(rev 0)
+++ 0001-networkd-properly-track-addresses-when-first-added.patch   
2014-07-13 10:46:56 UTC (rev 115647)
@@ -0,0 +1,104 @@
+From 4958aee4977f325be19f0e1e4b424922c3cada5f Mon Sep 17 00:00:00 2001
+From: Tom Gundersen t...@jklm.no
+Date: Thu, 3 Jul 2014 22:47:51 +0200
+Subject: [PATCH] networkd: properly track addresses when first added
+
+When doing a NEWADDR, the reply we get back is the NEWADDR itself, rather
+than just an empty ack (unlike how NEWLINK works). For this reason, the
+process that did the NEWADDR does not get the broadcast message.
+
+We were only listening for broadcast messages, and hence not tracking the
+addresses we added ourselves. This went unnoticed as the kernel will usually
+send NEWADDR messages from time to time anyway, so things would mostly work,
+but in the worst case we would not notice that a routable address was available
+and consider ourselves offline.
+---
+ src/network/networkd-link.c | 54 +
+ 1 file changed, 30 insertions(+), 24 deletions(-)
+
+diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c
+index 961c1ab..6257372 100644
+--- a/src/network/networkd-link.c
 b/src/network/networkd-link.c
+@@ -599,10 +599,35 @@ static int route_drop_handler(sd_rtnl *rtnl, 
sd_rtnl_message *m, void *userdata)
+ return 0;
+ }
+ 
++static int link_get_address_handler(sd_rtnl *rtnl, sd_rtnl_message *m, void 
*userdata) {
++_cleanup_link_unref_ Link *link = userdata;
++int r;
++
++assert(rtnl);
++assert(m);
++assert(link);
++assert(link-manager);
++
++for (; m; m = sd_rtnl_message_next(m)) {
++r = sd_rtnl_message_get_errno(m);
++if (r  0) {
++log_debug_link(link, getting address failed: %s, 
strerror(-r));
++continue;
++}
++
++r = link_rtnl_process_address(rtnl, m, link-manager);
++if (r  0)
++log_warning_link(link, could not process address: 
%s, strerror(-r));
++}
++
++return 1;
++}
++
+ static int address_handler(sd_rtnl *rtnl, sd_rtnl_message *m, void *userdata) 
{
+ _cleanup_link_unref_ Link *link = userdata;
+ int r;
+ 
++assert(rtnl);
+ assert(m);
+ assert(link);
+ assert(link-ifname);
+@@ -623,6 +648,11 @@ static int address_handler(sd_rtnl *rtnl, sd_rtnl_message 
*m, void *userdata) {
+ link-ifname, strerror(-r),
+ ERRNO=%d, -r,
+ NULL);
++if (r = 0) {
++/* calling handler directly so take a ref */
++link_ref(link);
++link_get_address_handler(rtnl, m, link);
++}
+ 
+ if (link-addr_messages == 0) {
+ log_debug_link(link, addresses set);
+@@ -2233,30 +2263,6 @@ int link_rtnl_process_address(sd_rtnl *rtnl, 
sd_rtnl_message *message, void *use
+ return 1;
+ }
+ 
+-static int link_get_address_handler(sd_rtnl *rtnl, sd_rtnl_message *m, void 
*userdata) {
+-_cleanup_link_unref_ Link *link = userdata;
+-int r;
+-
+-assert(rtnl);
+-assert(m);
+-assert(link);
+-assert(link-manager);
+-
+-for (; m; m = sd_rtnl_message_next(m)) {
+-r = sd_rtnl_message_get_errno(m);
+-if (r  0) {
+-log_debug_link(link, getting address failed: %s, 
strerror(-r));
+-continue;
+-}
+-
+-r = link_rtnl_process_address(rtnl, m, link-manager);
+-if (r  0)
+-log_warning_link(link, could not process address: 
%s, strerror(-r));
+-}
+-
+-return 1;
+-}
+-
+ int link_add(Manager *m, sd_rtnl_message *message, Link **ret) {
+ Link *link;
+ _cleanup_rtnl_message_unref_ sd_rtnl_message *req = NULL;
+-- 
+2.0.1
+

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 09:13:36 UTC (rev 115646)
+++ PKGBUILD2014-07-13 10:46:56 UTC (rev 

[arch-commits] Commit in lib32-systemd/repos/multilib-x86_64 (3 files)

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 12:47:04
  Author: lcarlier
Revision: 115648

archrelease: copy trunk to multilib-x86_64

Added:
  
lib32-systemd/repos/multilib-x86_64/0001-networkd-properly-track-addresses-when-first-added.patch
(from rev 115647, 
lib32-systemd/trunk/0001-networkd-properly-track-addresses-when-first-added.patch)
  lib32-systemd/repos/multilib-x86_64/PKGBUILD
(from rev 115647, lib32-systemd/trunk/PKGBUILD)
Deleted:
  lib32-systemd/repos/multilib-x86_64/PKGBUILD

---+
 0001-networkd-properly-track-addresses-when-first-added.patch |  104 +++
 PKGBUILD  |  136 +-
 2 files changed, 176 insertions(+), 64 deletions(-)

Copied: 
lib32-systemd/repos/multilib-x86_64/0001-networkd-properly-track-addresses-when-first-added.patch
 (from rev 115647, 
lib32-systemd/trunk/0001-networkd-properly-track-addresses-when-first-added.patch)
===
--- 0001-networkd-properly-track-addresses-when-first-added.patch   
(rev 0)
+++ 0001-networkd-properly-track-addresses-when-first-added.patch   
2014-07-13 10:47:04 UTC (rev 115648)
@@ -0,0 +1,104 @@
+From 4958aee4977f325be19f0e1e4b424922c3cada5f Mon Sep 17 00:00:00 2001
+From: Tom Gundersen t...@jklm.no
+Date: Thu, 3 Jul 2014 22:47:51 +0200
+Subject: [PATCH] networkd: properly track addresses when first added
+
+When doing a NEWADDR, the reply we get back is the NEWADDR itself, rather
+than just an empty ack (unlike how NEWLINK works). For this reason, the
+process that did the NEWADDR does not get the broadcast message.
+
+We were only listening for broadcast messages, and hence not tracking the
+addresses we added ourselves. This went unnoticed as the kernel will usually
+send NEWADDR messages from time to time anyway, so things would mostly work,
+but in the worst case we would not notice that a routable address was available
+and consider ourselves offline.
+---
+ src/network/networkd-link.c | 54 +
+ 1 file changed, 30 insertions(+), 24 deletions(-)
+
+diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c
+index 961c1ab..6257372 100644
+--- a/src/network/networkd-link.c
 b/src/network/networkd-link.c
+@@ -599,10 +599,35 @@ static int route_drop_handler(sd_rtnl *rtnl, 
sd_rtnl_message *m, void *userdata)
+ return 0;
+ }
+ 
++static int link_get_address_handler(sd_rtnl *rtnl, sd_rtnl_message *m, void 
*userdata) {
++_cleanup_link_unref_ Link *link = userdata;
++int r;
++
++assert(rtnl);
++assert(m);
++assert(link);
++assert(link-manager);
++
++for (; m; m = sd_rtnl_message_next(m)) {
++r = sd_rtnl_message_get_errno(m);
++if (r  0) {
++log_debug_link(link, getting address failed: %s, 
strerror(-r));
++continue;
++}
++
++r = link_rtnl_process_address(rtnl, m, link-manager);
++if (r  0)
++log_warning_link(link, could not process address: 
%s, strerror(-r));
++}
++
++return 1;
++}
++
+ static int address_handler(sd_rtnl *rtnl, sd_rtnl_message *m, void *userdata) 
{
+ _cleanup_link_unref_ Link *link = userdata;
+ int r;
+ 
++assert(rtnl);
+ assert(m);
+ assert(link);
+ assert(link-ifname);
+@@ -623,6 +648,11 @@ static int address_handler(sd_rtnl *rtnl, sd_rtnl_message 
*m, void *userdata) {
+ link-ifname, strerror(-r),
+ ERRNO=%d, -r,
+ NULL);
++if (r = 0) {
++/* calling handler directly so take a ref */
++link_ref(link);
++link_get_address_handler(rtnl, m, link);
++}
+ 
+ if (link-addr_messages == 0) {
+ log_debug_link(link, addresses set);
+@@ -2233,30 +2263,6 @@ int link_rtnl_process_address(sd_rtnl *rtnl, 
sd_rtnl_message *message, void *use
+ return 1;
+ }
+ 
+-static int link_get_address_handler(sd_rtnl *rtnl, sd_rtnl_message *m, void 
*userdata) {
+-_cleanup_link_unref_ Link *link = userdata;
+-int r;
+-
+-assert(rtnl);
+-assert(m);
+-assert(link);
+-assert(link-manager);
+-
+-for (; m; m = sd_rtnl_message_next(m)) {
+-r = sd_rtnl_message_get_errno(m);
+-if (r  0) {
+-log_debug_link(link, getting address failed: %s, 
strerror(-r));
+-continue;
+-}
+-
+-r = link_rtnl_process_address(rtnl, m, link-manager);
+-if (r  0)
+-log_warning_link(link, could not process address: 
%s, strerror(-r));
+-}
+-
+-

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

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 12:58:36
  Author: lcarlier
Revision: 115649

upgpkg: lib32-elfutils 0.159-1

upstream update 0.159

Modified:
  lib32-elfutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 10:47:04 UTC (rev 115648)
+++ PKGBUILD2014-07-13 10:58:36 UTC (rev 115649)
@@ -4,8 +4,8 @@
 
 _pkgbasename=elfutils
 pkgname=lib32-elfutils
-pkgver=0.158
-pkgrel=2
+pkgver=0.159
+pkgrel=1
 pkgdesc=Collection of libraries for working with ELF object files and DWARF 
debugging information (32-bit)
 arch=('x86_64')
 url=https://fedorahosted.org/elfutils/;
@@ -12,21 +12,10 @@
 license=('LGPL3' 'GPL' 'GPL3')
 depends=('lib32-bzip2' 'lib32-zlib' 'elfutils')
 makedepends=('gcc-multilib')
-source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2
-fix-run-backtrace-native-core-test.patch
-   CVE-2014-0172.patch)
-sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d'
-  '8ecef640f3d1229cdf45ffda016a69848c18e61b'
-  '3e776c07d6ca2c7604a384d266f79c3ece1fb179')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+sha1sums=('4ff214cdb95a10b03cf413f3d018393a838f98fc'
+ 'SKIP')
 
-prepare() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  patch -Np1 -i ../fix-run-backtrace-native-core-test.patch
-  # merged upstream
-  patch -Np1 -i ../CVE-2014-0172.patch
-}
-
 build() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}




[arch-commits] Commit in lib32-elfutils/repos/multilib-x86_64 (6 files)

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 12:58:44
  Author: lcarlier
Revision: 115650

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-elfutils/repos/multilib-x86_64/CVE-2014-0172.patch
(from rev 115649, lib32-elfutils/trunk/CVE-2014-0172.patch)
  lib32-elfutils/repos/multilib-x86_64/PKGBUILD
(from rev 115649, lib32-elfutils/trunk/PKGBUILD)
  lib32-elfutils/repos/multilib-x86_64/fix-run-backtrace-native-core-test.patch
(from rev 115649, 
lib32-elfutils/trunk/fix-run-backtrace-native-core-test.patch)
Deleted:
  lib32-elfutils/repos/multilib-x86_64/CVE-2014-0172.patch
  lib32-elfutils/repos/multilib-x86_64/PKGBUILD
  lib32-elfutils/repos/multilib-x86_64/fix-run-backtrace-native-core-test.patch

--+
 CVE-2014-0172.patch  |   74 +++---
 PKGBUILD |   95 -
 fix-run-backtrace-native-core-test.patch |   86 +-
 3 files changed, 122 insertions(+), 133 deletions(-)

Deleted: CVE-2014-0172.patch
===
--- CVE-2014-0172.patch 2014-07-13 10:58:36 UTC (rev 115649)
+++ CVE-2014-0172.patch 2014-07-13 10:58:44 UTC (rev 115650)
@@ -1,37 +0,0 @@
-From 7f1eec317db79627b473c5b149a22a1b20d1f68f Mon Sep 17 00:00:00 2001
-From: Mark Wielaard m...@redhat.com
-Date: Wed, 9 Apr 2014 11:33:23 +0200
-Subject: [PATCH] CVE-2014-0172 Check for overflow before calling malloc to
- uncompress data.
-
-https://bugzilla.redhat.com/show_bug.cgi?id=1085663
-
-Reported-by: Florian Weimer fwei...@redhat.com
-Signed-off-by: Mark Wielaard m...@redhat.com
-diff --git a/libdw/dwarf_begin_elf.c b/libdw/dwarf_begin_elf.c
-index 79daeac..34ea373 100644
 a/libdw/dwarf_begin_elf.c
-+++ b/libdw/dwarf_begin_elf.c
-@@ -1,5 +1,5 @@
- /* Create descriptor from ELF descriptor for processing file.
--   Copyright (C) 2002-2011 Red Hat, Inc.
-+   Copyright (C) 2002-2011, 2014 Red Hat, Inc.
-This file is part of elfutils.
-Written by Ulrich Drepper drep...@redhat.com, 2002.
- 
-@@ -282,6 +282,12 @@ check_section (Dwarf *result, GElf_Ehdr *ehdr, Elf_Scn 
*scn, bool inscngrp)
-   memcpy (size, data-d_buf + 4, sizeof size);
-   size = be64toh (size);
- 
-+  /* Check for unsigned overflow so malloc always allocated
-+ enough memory for both the Elf_Data header and the
-+ uncompressed section data.  */
-+  if (unlikely (sizeof (Elf_Data) + size  size))
-+break;
-+
-   Elf_Data *zdata = malloc (sizeof (Elf_Data) + size);
-   if (unlikely (zdata == NULL))
- break;
--- 
-1.9.2
-

Copied: lib32-elfutils/repos/multilib-x86_64/CVE-2014-0172.patch (from rev 
115649, lib32-elfutils/trunk/CVE-2014-0172.patch)
===
--- CVE-2014-0172.patch (rev 0)
+++ CVE-2014-0172.patch 2014-07-13 10:58:44 UTC (rev 115650)
@@ -0,0 +1,37 @@
+From 7f1eec317db79627b473c5b149a22a1b20d1f68f Mon Sep 17 00:00:00 2001
+From: Mark Wielaard m...@redhat.com
+Date: Wed, 9 Apr 2014 11:33:23 +0200
+Subject: [PATCH] CVE-2014-0172 Check for overflow before calling malloc to
+ uncompress data.
+
+https://bugzilla.redhat.com/show_bug.cgi?id=1085663
+
+Reported-by: Florian Weimer fwei...@redhat.com
+Signed-off-by: Mark Wielaard m...@redhat.com
+diff --git a/libdw/dwarf_begin_elf.c b/libdw/dwarf_begin_elf.c
+index 79daeac..34ea373 100644
+--- a/libdw/dwarf_begin_elf.c
 b/libdw/dwarf_begin_elf.c
+@@ -1,5 +1,5 @@
+ /* Create descriptor from ELF descriptor for processing file.
+-   Copyright (C) 2002-2011 Red Hat, Inc.
++   Copyright (C) 2002-2011, 2014 Red Hat, Inc.
+This file is part of elfutils.
+Written by Ulrich Drepper drep...@redhat.com, 2002.
+ 
+@@ -282,6 +282,12 @@ check_section (Dwarf *result, GElf_Ehdr *ehdr, Elf_Scn 
*scn, bool inscngrp)
+   memcpy (size, data-d_buf + 4, sizeof size);
+   size = be64toh (size);
+ 
++  /* Check for unsigned overflow so malloc always allocated
++ enough memory for both the Elf_Data header and the
++ uncompressed section data.  */
++  if (unlikely (sizeof (Elf_Data) + size  size))
++break;
++
+   Elf_Data *zdata = malloc (sizeof (Elf_Data) + size);
+   if (unlikely (zdata == NULL))
+ break;
+-- 
+1.9.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 10:58:36 UTC (rev 115649)
+++ PKGBUILD2014-07-13 10:58:44 UTC (rev 115650)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
-
-_pkgbasename=elfutils
-pkgname=lib32-elfutils
-pkgver=0.158
-pkgrel=2
-pkgdesc=Collection of libraries for working with ELF object files and DWARF 
debugging information (32-bit)
-arch=('x86_64')

[arch-commits] Commit in xf86-video-intel/trunk (2 files)

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 14:01:10
  Author: lcarlier
Revision: 216851

upgpkg: xf86-video-intel 2.99.912-2

fix FS#40863

Added:
  
xf86-video-intel/trunk/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
Modified:
  xf86-video-intel/trunk/PKGBUILD

-+
 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch |   56 
++
 PKGBUILD|   15 ++
 2 files changed, 68 insertions(+), 3 deletions(-)

Added: 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
===
--- 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch 
(rev 0)
+++ 0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch 
2014-07-13 12:01:10 UTC (rev 216851)
@@ -0,0 +1,56 @@
+From e2bfa715a9e115921263d572b9f4c496b550a494 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Tue, 10 Jun 2014 21:28:32 +0100
+Subject: [PATCH] sna/dri2: Check that the window covers the whole CRTC before
+ xchg
+
+Fixes TearFre regression from
+
+commit 3932e97057fca16615adaefbc1eb25a0d51a1d8b [2.99.912]
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon Jun 9 08:58:15 2014 +0100
+
+sna/dri2: Allow TearFree flipping to individual CRTC
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+ src/sna/sna_display.c |  1 +
+ src/sna/sna_dri2.c| 10 ++
+ 2 files changed, 11 insertions(+)
+
+diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
+index dcbe622..7169779 100644
+--- a/src/sna/sna_display.c
 b/src/sna/sna_display.c
+@@ -332,6 +332,7 @@ static unsigned get_fb(struct sna *sna, struct kgem_bo *bo,
+   assert(bo-refcnt);
+   assert(bo-proxy == NULL);
+   assert(!bo-snoop);
++  assert(8*bo-pitch = width * scrn-bitsPerPixel);
+   assert(height * bo-pitch = kgem_bo_size(bo)); /* XXX crtc offset */
+   if (bo-delta) {
+   DBG((%s: reusing fb=%d for handle=%d\n,
+diff --git a/src/sna/sna_dri2.c b/src/sna/sna_dri2.c
+index 1baaf2b..e196464 100644
+--- a/src/sna/sna_dri2.c
 b/src/sna/sna_dri2.c
+@@ -1605,6 +1605,16 @@ can_xchg_one(struct sna *sna,
+   return false;
+   }
+ 
++  if (memcmp(win-clipList.extents, crtc-bounds, 
sizeof(crtc-bounds))) {
++  DBG((%s: no, window [(%d, %d), (%d, %d)] does not cover CRTC 
[(%d, %d), (%d, %d)]\n,
++   __FUNCTION__,
++   win-clipList.extents.x1, win-clipList.extents.y1,
++   win-clipList.extents.x2, win-clipList.extents.y2,
++   crtc-bounds.x1, crtc-bounds.y1,
++   crtc-bounds.x2, crtc-bounds.y2));
++  return false;
++  }
++
+   if (sna_crtc_is_transformed(crtc)) {
+   DBG((%s: no, CRTC is rotated\n, __FUNCTION__));
+   return false;
+-- 
+2.0.1
+

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 10:59:11 UTC (rev 216850)
+++ PKGBUILD2014-07-13 12:01:10 UTC (rev 216851)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-video-intel
 pkgver=2.99.912
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -23,9 +23,18 @@
 conflicts=('xorg-server1.15.0' 'X-ABI-VIDEODRV_VERSION15' 
'X-ABI-VIDEODRV_VERSION=16'
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('7c8ffc492d59f34cac64093deb70717b4d9223cf416ecc6fa016ab2e8bde9501')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+   0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch)
+sha256sums=('7c8ffc492d59f34cac64093deb70717b4d9223cf416ecc6fa016ab2e8bde9501'
+'19fe39fa5cd175e14f77d67dbd731f992c8f51161d90b73c63f52604a9eed7ce')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # fix FS#40863, merged upstream
+  patch -Np1 -i 
../0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \



[arch-commits] Commit in xf86-video-intel/repos (8 files)

2014-07-13 Thread Laurent Carlier
Date: Sunday, July 13, 2014 @ 14:01:24
  Author: lcarlier
Revision: 216852

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

Added:
  xf86-video-intel/repos/testing-i686/
  
xf86-video-intel/repos/testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
(from rev 216851, 
xf86-video-intel/trunk/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch)
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 216851, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 216851, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/
  
xf86-video-intel/repos/testing-x86_64/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
(from rev 216851, 
xf86-video-intel/trunk/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch)
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 216851, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 216851, xf86-video-intel/trunk/xf86-video-intel.install)

+
 testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch   
|   56 +
 testing-i686/PKGBUILD  
|   58 ++
 testing-i686/xf86-video-intel.install  
|   22 +++
 testing-x86_64/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch 
|   56 +
 testing-x86_64/PKGBUILD
|   58 ++
 testing-x86_64/xf86-video-intel.install
|   22 +++
 6 files changed, 272 insertions(+)

Copied: 
xf86-video-intel/repos/testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
 (from rev 216851, 
xf86-video-intel/trunk/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch)
===
--- 
testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
(rev 0)
+++ 
testing-i686/0001-sna-dri2-Check-that-the-window-covers-the-whole-CRTC.patch
2014-07-13 12:01:24 UTC (rev 216852)
@@ -0,0 +1,56 @@
+From e2bfa715a9e115921263d572b9f4c496b550a494 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Tue, 10 Jun 2014 21:28:32 +0100
+Subject: [PATCH] sna/dri2: Check that the window covers the whole CRTC before
+ xchg
+
+Fixes TearFre regression from
+
+commit 3932e97057fca16615adaefbc1eb25a0d51a1d8b [2.99.912]
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon Jun 9 08:58:15 2014 +0100
+
+sna/dri2: Allow TearFree flipping to individual CRTC
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+ src/sna/sna_display.c |  1 +
+ src/sna/sna_dri2.c| 10 ++
+ 2 files changed, 11 insertions(+)
+
+diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
+index dcbe622..7169779 100644
+--- a/src/sna/sna_display.c
 b/src/sna/sna_display.c
+@@ -332,6 +332,7 @@ static unsigned get_fb(struct sna *sna, struct kgem_bo *bo,
+   assert(bo-refcnt);
+   assert(bo-proxy == NULL);
+   assert(!bo-snoop);
++  assert(8*bo-pitch = width * scrn-bitsPerPixel);
+   assert(height * bo-pitch = kgem_bo_size(bo)); /* XXX crtc offset */
+   if (bo-delta) {
+   DBG((%s: reusing fb=%d for handle=%d\n,
+diff --git a/src/sna/sna_dri2.c b/src/sna/sna_dri2.c
+index 1baaf2b..e196464 100644
+--- a/src/sna/sna_dri2.c
 b/src/sna/sna_dri2.c
+@@ -1605,6 +1605,16 @@ can_xchg_one(struct sna *sna,
+   return false;
+   }
+ 
++  if (memcmp(win-clipList.extents, crtc-bounds, 
sizeof(crtc-bounds))) {
++  DBG((%s: no, window [(%d, %d), (%d, %d)] does not cover CRTC 
[(%d, %d), (%d, %d)]\n,
++   __FUNCTION__,
++   win-clipList.extents.x1, win-clipList.extents.y1,
++   win-clipList.extents.x2, win-clipList.extents.y2,
++   crtc-bounds.x1, crtc-bounds.y1,
++   crtc-bounds.x2, crtc-bounds.y2));
++  return false;
++  }
++
+   if (sna_crtc_is_transformed(crtc)) {
+   DBG((%s: no, CRTC is rotated\n, __FUNCTION__));
+   return false;
+-- 
+2.0.1
+

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 216851, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-13 12:01:24 UTC (rev 216852)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-intel
+pkgver=2.99.912
+pkgrel=2
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;

[arch-commits] Commit in (5 files)

2014-07-13 Thread Pierre Schmitz
Date: Sunday, July 13, 2014 @ 14:24:33
  Author: pierre
Revision: 216853

Initial commit of PHP composer

Added:
  php-composer/
  php-composer/repos/
  php-composer/trunk/
  php-composer/trunk/PKGBUILD
  php-composer/trunk/php.ini

--+
 PKGBUILD |   51 +++
 php.ini  |9 +
 2 files changed, 60 insertions(+)

Added: php-composer/trunk/PKGBUILD
===
--- php-composer/trunk/PKGBUILD (rev 0)
+++ php-composer/trunk/PKGBUILD 2014-07-13 12:24:33 UTC (rev 216853)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-composer
+pkgver=1.0.0.alpha8.409
+pkgrel=1
+pkgdesc=Dependency Manager for PHP
+arch=('any')
+license=('MIT')
+url='http://getcomposer.org/'
+depends=('php')
+makedepends=('git' ${pkgname})
+checkdepends=('mercurial')
+source=(${pkgname}::git+https://github.com/composer/composer.git;
+'php.ini')
+md5sums=('SKIP'
+ '6adcd6eee1d5f2c53f38bddd26415620')
+
+pkgver() {
+   cd ${srcdir}/${pkgname}
+
+   local _tag=$(git tag -l --sort -version:refname | head -1)
+   echo ${_tag}.$(git rev-list ${_tag}.. --count) | sed 's/-/./g'
+}
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+
+   sed s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g -i src/Composer/Compiler.php
+   /usr/bin/composer install
+}
+
+check() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
+}
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
+   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
+}


Property changes on: php-composer/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: php-composer/trunk/php.ini
===
--- php-composer/trunk/php.ini  (rev 0)
+++ php-composer/trunk/php.ini  2014-07-13 12:24:33 UTC (rev 216853)
@@ -0,0 +1,9 @@
+[PHP]
+memory_limit=-1
+extension=openssl.so
+extension=phar.so
+extension=zip.so
+[Date]
+date.timezone=UTC
+[Phar]
+phar.readonly=Off



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

2014-07-13 Thread Pierre Schmitz
Date: Sunday, July 13, 2014 @ 14:26:21
  Author: pierre
Revision: 216854

archrelease: copy trunk to testing-any

Added:
  php-composer/repos/testing-any/
  php-composer/repos/testing-any/PKGBUILD
(from rev 216853, php-composer/trunk/PKGBUILD)
  php-composer/repos/testing-any/php.ini
(from rev 216853, php-composer/trunk/php.ini)

--+
 PKGBUILD |   51 +++
 php.ini  |9 +
 2 files changed, 60 insertions(+)

Copied: php-composer/repos/testing-any/PKGBUILD (from rev 216853, 
php-composer/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-07-13 12:26:21 UTC (rev 216854)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-composer
+pkgver=1.0.0.alpha8.409
+pkgrel=1
+pkgdesc=Dependency Manager for PHP
+arch=('any')
+license=('MIT')
+url='http://getcomposer.org/'
+depends=('php')
+makedepends=('git' ${pkgname})
+checkdepends=('mercurial')
+source=(${pkgname}::git+https://github.com/composer/composer.git;
+'php.ini')
+md5sums=('SKIP'
+ '6adcd6eee1d5f2c53f38bddd26415620')
+
+pkgver() {
+   cd ${srcdir}/${pkgname}
+
+   local _tag=$(git tag -l --sort -version:refname | head -1)
+   echo ${_tag}.$(git rev-list ${_tag}.. --count) | sed 's/-/./g'
+}
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+
+   sed s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g -i src/Composer/Compiler.php
+   /usr/bin/composer install
+}
+
+check() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
+}
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
+   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
+}

Copied: php-composer/repos/testing-any/php.ini (from rev 216853, 
php-composer/trunk/php.ini)
===
--- testing-any/php.ini (rev 0)
+++ testing-any/php.ini 2014-07-13 12:26:21 UTC (rev 216854)
@@ -0,0 +1,9 @@
+[PHP]
+memory_limit=-1
+extension=openssl.so
+extension=phar.so
+extension=zip.so
+[Date]
+date.timezone=UTC
+[Phar]
+phar.readonly=Off



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

2014-07-13 Thread Pierre Schmitz
Date: Sunday, July 13, 2014 @ 15:03:17
  Author: pierre
Revision: 216855

upgpkg: php-composer 1.0.0.alpha8.409-2

Fix check() in archbuild environment

Modified:
  php-composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 12:26:21 UTC (rev 216854)
+++ PKGBUILD2014-07-13 13:03:17 UTC (rev 216855)
@@ -3,7 +3,7 @@
 
 pkgname=php-composer
 pkgver=1.0.0.alpha8.409
-pkgrel=1
+pkgrel=2
 pkgdesc=Dependency Manager for PHP
 arch=('any')
 license=('MIT')
@@ -27,12 +27,14 @@
cd ${srcdir}/${pkgname}
 
sed s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g -i src/Composer/Compiler.php
-   /usr/bin/composer install
+   /usr/bin/composer -n install
 }
 
 check() {
cd ${srcdir}/${pkgname}
 
+   git config --global user.email ${USER}@${HOST}
+   git config --global user.name ${USER}
/usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
 }
 



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

2014-07-13 Thread Pierre Schmitz
Date: Sunday, July 13, 2014 @ 15:03:27
  Author: pierre
Revision: 216856

archrelease: copy trunk to testing-any

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

--+
 PKGBUILD |  104 +++--
 php.ini  |   18 +-
 2 files changed, 62 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 13:03:17 UTC (rev 216855)
+++ PKGBUILD2014-07-13 13:03:27 UTC (rev 216856)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=php-composer
-pkgver=1.0.0.alpha8.409
-pkgrel=1
-pkgdesc=Dependency Manager for PHP
-arch=('any')
-license=('MIT')
-url='http://getcomposer.org/'
-depends=('php')
-makedepends=('git' ${pkgname})
-checkdepends=('mercurial')
-source=(${pkgname}::git+https://github.com/composer/composer.git;
-'php.ini')
-md5sums=('SKIP'
- '6adcd6eee1d5f2c53f38bddd26415620')
-
-pkgver() {
-   cd ${srcdir}/${pkgname}
-
-   local _tag=$(git tag -l --sort -version:refname | head -1)
-   echo ${_tag}.$(git rev-list ${_tag}.. --count) | sed 's/-/./g'
-}
-
-prepare() {
-   cd ${srcdir}/${pkgname}
-
-   sed s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g -i src/Composer/Compiler.php
-   /usr/bin/composer install
-}
-
-check() {
-   cd ${srcdir}/${pkgname}
-
-   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
-}
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
-}
-
-package() {
-   cd ${srcdir}/${pkgname}
-
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
-   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
-}

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

Deleted: php.ini
===
--- php.ini 2014-07-13 13:03:17 UTC (rev 216855)
+++ php.ini 2014-07-13 13:03:27 UTC (rev 216856)
@@ -1,9 +0,0 @@
-[PHP]
-memory_limit=-1
-extension=openssl.so
-extension=phar.so
-extension=zip.so
-[Date]
-date.timezone=UTC
-[Phar]
-phar.readonly=Off

Copied: php-composer/repos/testing-any/php.ini (from rev 216855, 
php-composer/trunk/php.ini)
===
--- php.ini (rev 0)
+++ php.ini 2014-07-13 13:03:27 UTC (rev 216856)
@@ -0,0 +1,9 @@
+[PHP]
+memory_limit=-1
+extension=openssl.so
+extension=phar.so
+extension=zip.so
+[Date]
+date.timezone=UTC
+[Phar]
+phar.readonly=Off



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

2014-07-13 Thread Jaroslav Lichtblau
Date: Sunday, July 13, 2014 @ 15:45:09
  Author: jlichtblau
Revision: 115651

upgpkg: qlandkartegt 1.7.7-1

Modified:
  qlandkartegt/trunk/PKGBUILD
  qlandkartegt/trunk/qlandkartegt.changelog

+
 PKGBUILD   |4 +++-
 qlandkartegt.changelog |3 +++
 2 files changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 10:58:44 UTC (rev 115650)
+++ PKGBUILD2014-07-13 13:45:09 UTC (rev 115651)
@@ -4,7 +4,7 @@
 # Contributor: boe...@gmx.de
 
 pkgname=qlandkartegt
-pkgver=1.7.6
+pkgver=1.7.7
 pkgrel=1
 pkgdesc=Use your GPS with Linux
 arch=('i686' 'x86_64')
@@ -40,3 +40,5 @@
   install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \
 ${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
 }
+sha256sums=('0b0d659bef580bff7c6aabd563ad9bf0cf2d32467fe11e613ceaab58be7363d0'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')

Modified: qlandkartegt.changelog
===
--- qlandkartegt.changelog  2014-07-13 10:58:44 UTC (rev 115650)
+++ qlandkartegt.changelog  2014-07-13 13:45:09 UTC (rev 115651)
@@ -1,3 +1,6 @@
+2014-07-13 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * qlandkartegt 1.7.7-1
+
 2014-02-22 Jaroslav Lichtblau dragonl...@aur.archlinux.org
* qlandkartegt 1.7.6-1
 



[arch-commits] Commit in qlandkartegt/repos/community-x86_64 (8 files)

2014-07-13 Thread Jaroslav Lichtblau
Date: Sunday, July 13, 2014 @ 15:45:22
  Author: jlichtblau
Revision: 115652

archrelease: copy trunk to community-x86_64

Added:
  qlandkartegt/repos/community-x86_64/PKGBUILD
(from rev 115651, qlandkartegt/trunk/PKGBUILD)
  qlandkartegt/repos/community-x86_64/qlandkartegt-mimetypes.xml
(from rev 115651, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
  qlandkartegt/repos/community-x86_64/qlandkartegt.changelog
(from rev 115651, qlandkartegt/trunk/qlandkartegt.changelog)
  qlandkartegt/repos/community-x86_64/qlandkartegt.install
(from rev 115651, qlandkartegt/trunk/qlandkartegt.install)
Deleted:
  qlandkartegt/repos/community-x86_64/PKGBUILD
  qlandkartegt/repos/community-x86_64/qlandkartegt-mimetypes.xml
  qlandkartegt/repos/community-x86_64/qlandkartegt.changelog
  qlandkartegt/repos/community-x86_64/qlandkartegt.install

+
 PKGBUILD   |   86 -
 qlandkartegt-mimetypes.xml |   14 ++--
 qlandkartegt.changelog |  147 +--
 qlandkartegt.install   |   14 ++--
 4 files changed, 133 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 13:45:09 UTC (rev 115651)
+++ PKGBUILD2014-07-13 13:45:22 UTC (rev 115652)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Matthias Maennich a...@maennich.net
-# Contributor: boe...@gmx.de
-
-pkgname=qlandkartegt
-pkgver=1.7.6
-pkgrel=1
-pkgdesc=Use your GPS with Linux
-arch=('i686' 'x86_64')
-url=http://www.qlandkarte.org/;
-license=('GPL')
-depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu' 
'postgresql-libs'
- 'shared-mime-info' 'qtwebkit')
-makedepends=('cmake' 'garmindev' 'mesa')
-optdepends=('garmindev: to connect garmin devices')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
-$pkgname-mimetypes.xml)
-sha256sums=('ff1e352d07fd136e75a80035d888efe095f1f44ca15d46262169e98e5a14e1c3'
-'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package(){
-  cd ${srcdir}/build
-
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \
-${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
-}

Copied: qlandkartegt/repos/community-x86_64/PKGBUILD (from rev 115651, 
qlandkartegt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-13 13:45:22 UTC (rev 115652)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Matthias Maennich a...@maennich.net
+# Contributor: boe...@gmx.de
+
+pkgname=qlandkartegt
+pkgver=1.7.7
+pkgrel=1
+pkgdesc=Use your GPS with Linux
+arch=('i686' 'x86_64')
+url=http://www.qlandkarte.org/;
+license=('GPL')
+depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu' 
'postgresql-libs'
+ 'shared-mime-info' 'qtwebkit')
+makedepends=('cmake' 'garmindev' 'mesa')
+optdepends=('garmindev: to connect garmin devices')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-mimetypes.xml)
+sha256sums=('ff1e352d07fd136e75a80035d888efe095f1f44ca15d46262169e98e5a14e1c3'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \
+${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
+}
+sha256sums=('0b0d659bef580bff7c6aabd563ad9bf0cf2d32467fe11e613ceaab58be7363d0'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')

Deleted: qlandkartegt-mimetypes.xml
===
--- qlandkartegt-mimetypes.xml  2014-07-13 13:45:09 UTC (rev 115651)
+++ qlandkartegt-mimetypes.xml  2014-07-13 13:45:22 UTC (rev 115652)
@@ -1,7 +0,0 @@
-?xml version=1.0?
-mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'
-  mime-type type=application/vnd.qlandkartegt.qlb
-commentQLandkarteGT File/comment
-glob pattern=*.qlb/
-  /mime-type
-/mime-info

Copied: qlandkartegt/repos/community-x86_64/qlandkartegt-mimetypes.xml (from 
rev 115651, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
===
--- qlandkartegt-mimetypes.xml 

[arch-commits] Commit in qlandkartegt/repos/community-i686 (8 files)

2014-07-13 Thread Jaroslav Lichtblau
Date: Sunday, July 13, 2014 @ 17:38:37
  Author: jlichtblau
Revision: 115653

archrelease: copy trunk to community-i686

Added:
  qlandkartegt/repos/community-i686/PKGBUILD
(from rev 115652, qlandkartegt/trunk/PKGBUILD)
  qlandkartegt/repos/community-i686/qlandkartegt-mimetypes.xml
(from rev 115652, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
  qlandkartegt/repos/community-i686/qlandkartegt.changelog
(from rev 115652, qlandkartegt/trunk/qlandkartegt.changelog)
  qlandkartegt/repos/community-i686/qlandkartegt.install
(from rev 115652, qlandkartegt/trunk/qlandkartegt.install)
Deleted:
  qlandkartegt/repos/community-i686/PKGBUILD
  qlandkartegt/repos/community-i686/qlandkartegt-mimetypes.xml
  qlandkartegt/repos/community-i686/qlandkartegt.changelog
  qlandkartegt/repos/community-i686/qlandkartegt.install

+
 PKGBUILD   |   86 -
 qlandkartegt-mimetypes.xml |   14 ++--
 qlandkartegt.changelog |  147 +--
 qlandkartegt.install   |   14 ++--
 4 files changed, 133 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 13:45:22 UTC (rev 115652)
+++ PKGBUILD2014-07-13 15:38:37 UTC (rev 115653)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Matthias Maennich a...@maennich.net
-# Contributor: boe...@gmx.de
-
-pkgname=qlandkartegt
-pkgver=1.7.6
-pkgrel=1
-pkgdesc=Use your GPS with Linux
-arch=('i686' 'x86_64')
-url=http://www.qlandkarte.org/;
-license=('GPL')
-depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu' 
'postgresql-libs'
- 'shared-mime-info' 'qtwebkit')
-makedepends=('cmake' 'garmindev' 'mesa')
-optdepends=('garmindev: to connect garmin devices')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
-$pkgname-mimetypes.xml)
-sha256sums=('ff1e352d07fd136e75a80035d888efe095f1f44ca15d46262169e98e5a14e1c3'
-'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package(){
-  cd ${srcdir}/build
-
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \
-${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
-}

Copied: qlandkartegt/repos/community-i686/PKGBUILD (from rev 115652, 
qlandkartegt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-13 15:38:37 UTC (rev 115653)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Matthias Maennich a...@maennich.net
+# Contributor: boe...@gmx.de
+
+pkgname=qlandkartegt
+pkgver=1.7.7
+pkgrel=1
+pkgdesc=Use your GPS with Linux
+arch=('i686' 'x86_64')
+url=http://www.qlandkarte.org/;
+license=('GPL')
+depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu' 
'postgresql-libs'
+ 'shared-mime-info' 'qtwebkit')
+makedepends=('cmake' 'garmindev' 'mesa')
+optdepends=('garmindev: to connect garmin devices')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-mimetypes.xml)
+sha256sums=('ff1e352d07fd136e75a80035d888efe095f1f44ca15d46262169e98e5a14e1c3'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -D -m644 ${srcdir}/$pkgname-mimetypes.xml \
+${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
+}
+sha256sums=('0b0d659bef580bff7c6aabd563ad9bf0cf2d32467fe11e613ceaab58be7363d0'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')

Deleted: qlandkartegt-mimetypes.xml
===
--- qlandkartegt-mimetypes.xml  2014-07-13 13:45:22 UTC (rev 115652)
+++ qlandkartegt-mimetypes.xml  2014-07-13 15:38:37 UTC (rev 115653)
@@ -1,7 +0,0 @@
-?xml version=1.0?
-mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'
-  mime-type type=application/vnd.qlandkartegt.qlb
-commentQLandkarteGT File/comment
-glob pattern=*.qlb/
-  /mime-type
-/mime-info

Copied: qlandkartegt/repos/community-i686/qlandkartegt-mimetypes.xml (from rev 
115652, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
===
--- qlandkartegt-mimetypes.xml  (rev 

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

2014-07-13 Thread Jonathan Steel
Date: Sunday, July 13, 2014 @ 18:11:47
  Author: jsteel
Revision: 115655

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

Added:
  lsdvd/repos/community-i686/PKGBUILD
(from rev 115654, lsdvd/trunk/PKGBUILD)
  lsdvd/repos/community-i686/stdint_usage.patch
(from rev 115654, lsdvd/trunk/stdint_usage.patch)
  lsdvd/repos/community-x86_64/PKGBUILD
(from rev 115654, lsdvd/trunk/PKGBUILD)
  lsdvd/repos/community-x86_64/stdint_usage.patch
(from rev 115654, lsdvd/trunk/stdint_usage.patch)
Deleted:
  lsdvd/repos/community-i686/PKGBUILD
  lsdvd/repos/community-i686/stdint_usage.patch
  lsdvd/repos/community-x86_64/PKGBUILD
  lsdvd/repos/community-x86_64/stdint_usage.patch

-+
 /PKGBUILD   |   66 ++
 /stdint_usage.patch |   44 ++
 community-i686/PKGBUILD |   28 --
 community-i686/stdint_usage.patch   |   22 ---
 community-x86_64/PKGBUILD   |   28 --
 community-x86_64/stdint_usage.patch |   22 ---
 6 files changed, 110 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-13 16:11:24 UTC (rev 115654)
+++ community-i686/PKGBUILD 2014-07-13 16:11:47 UTC (rev 115655)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
-
-pkgname=lsdvd
-pkgver=0.16
-pkgrel=6
-pkgdesc=A C application for reading the contents of a DVD and printing the 
contents to your terminal
-arch=('i686' 'x86_64')
-url=http://sourceforge.net/projects/lsdvd/;
-depends=('libdvdread')
-license=('GPL2')
-#Special thanks to Mathieu Clabaut mathieu.clab...@gmail.com for patches
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'stdint_usage.patch')
-md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
- '6cbcbfde873f894bd3c784f65141b2fc')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/stdint_usage.patch
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: lsdvd/repos/community-i686/PKGBUILD (from rev 115654, 
lsdvd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-13 16:11:47 UTC (rev 115655)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jonathan Steel jsteel at aur.archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: Mathieu Clabaut mathieu.clab...@gmail.com
+
+pkgname=lsdvd
+pkgver=0.16
+pkgrel=7
+pkgdesc=Console application that displays the content of a DVD
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/lsdvd/;
+license=('GPL2')
+depends=('libdvdread')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+stdint_usage.patch)
+md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
+ '6cbcbfde873f894bd3c784f65141b2fc')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -Np1 -i $srcdir/stdint_usage.patch
+
+  ./configure --prefix=/usr --mandir=/usr/share/man
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/stdint_usage.patch
===
--- community-i686/stdint_usage.patch   2014-07-13 16:11:24 UTC (rev 115654)
+++ community-i686/stdint_usage.patch   2014-07-13 16:11:47 UTC (rev 115655)
@@ -1,22 +0,0 @@
 a/lsdvd.c  2006-03-02 07:48:11.0 -0600
-+++ b/lsdvd.c  2007-09-27 19:15:28.0 -0500
-@@ -13,6 +13,7 @@
-  *  2003-04-19  Cleanups get_title_name, added dvdtime2msec, added helper 
macros,
-  *  output info structures in form of a Perl module, by 
Henk Vergonet.
-  */
-+#include stdint.h
- #include dvdread/ifo_read.h
- #include string.h
- #include sys/stat.h
 a/configure2005-12-12 14:22:45.0 -0600
-+++ b/configure2007-09-27 19:15:13.0 -0500
-@@ -2887,8 +2887,8 @@
- cat confdefs.h conftest.$ac_ext
- cat conftest.$ac_ext _ACEOF
- /* end confdefs.h.  */
--#include dvdread/ifo_read.h
-   #include stdint.h
-+#include dvdread/ifo_read.h
- int
- main ()
- {

Copied: lsdvd/repos/community-i686/stdint_usage.patch (from rev 115654, 
lsdvd/trunk/stdint_usage.patch)
===
--- community-i686/stdint_usage.patch   (rev 0)
+++ community-i686/stdint_usage.patch   2014-07-13 16:11:47 UTC (rev 115655)
@@ -0,0 +1,22 @@
+--- a/lsdvd.c  2006-03-02 07:48:11.0 -0600
 b/lsdvd.c  2007-09-27 19:15:28.0 -0500
+@@ -13,6 +13,7 @@
+  *  2003-04-19  Cleanups get_title_name, added dvdtime2msec, added helper 
macros,
+  *

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

2014-07-13 Thread Jonathan Steel
Date: Sunday, July 13, 2014 @ 18:11:24
  Author: jsteel
Revision: 115654

mtree rebuilds

Modified:
  lsdvd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 15:38:37 UTC (rev 115653)
+++ PKGBUILD2014-07-13 16:11:24 UTC (rev 115654)
@@ -1,28 +1,33 @@
 # $Id$
-# Maintainer: Aaron Griffin aa...@archlinux.org
+# Maintainer: Jonathan Steel jsteel at aur.archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: Mathieu Clabaut mathieu.clab...@gmail.com
 
 pkgname=lsdvd
 pkgver=0.16
-pkgrel=6
-pkgdesc=A C application for reading the contents of a DVD and printing the 
contents to your terminal
+pkgrel=7
+pkgdesc=Console application that displays the content of a DVD
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/lsdvd/;
+license=('GPL2')
 depends=('libdvdread')
-license=('GPL2')
-#Special thanks to Mathieu Clabaut mathieu.clab...@gmail.com for patches
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'stdint_usage.patch')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+stdint_usage.patch)
 md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
  '6cbcbfde873f894bd3c784f65141b2fc')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/stdint_usage.patch
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -Np1 -i $srcdir/stdint_usage.patch
+
   ./configure --prefix=/usr --mandir=/usr/share/man
+
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
 }



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 18:17:08
  Author: fyan
Revision: 115657

archrelease: copy trunk to community-any

Added:
  shadowsocks/repos/community-any/PKGBUILD
(from rev 115656, shadowsocks/trunk/PKGBUILD)
  shadowsocks/repos/community-any/shadowsocks-server@.service
(from rev 115656, shadowsocks/trunk/shadowsocks-server@.service)
  shadowsocks/repos/community-any/shadowsocks.install
(from rev 115656, shadowsocks/trunk/shadowsocks.install)
  shadowsocks/repos/community-any/shadowsocks@.service
(from rev 115656, shadowsocks/trunk/shadowsocks@.service)
Deleted:
  shadowsocks/repos/community-any/PKGBUILD
  shadowsocks/repos/community-any/shadowsocks-server@.service
  shadowsocks/repos/community-any/shadowsocks.install
  shadowsocks/repos/community-any/shadowsocks@.service

-+
 PKGBUILD|   84 +-
 shadowsocks-server@.service |   24 ++--
 shadowsocks.install |   10 ++---
 shadowsocks@.service|   24 ++--
 4 files changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 16:16:41 UTC (rev 115656)
+++ PKGBUILD2014-07-13 16:17:08 UTC (rev 115657)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgname=shadowsocks
-pkgver=2.0.10
-pkgrel=1
-pkgdesc=A lightweight tunnel proxy
-license=(MIT)
-url=http://pypi.python.org/pypi/shadowsocks;
-depends=('python2' 'python2-setuptools')
-optdepends=('python2-m2crypto: For any encryption method other than table'
-'python2-numpy: For salsa20 support'
-'python2-salsa20: For salsa20 support')
-source=(http://pypi.python.org/packages/source/s/shadowsocks/shadowsocks-${pkgver}.tar.gz;
-
$pkgname-LICENSE::https://raw.github.com/clowwindy/shadowsocks/master/LICENSE;
-shadowsocks@.service
-shadowsocks-server@.service)
-arch=('any')
-install=${pkgname}.install
-
-prepare() {
-  cd shadowsocks-$pkgver/shadowsocks
-  # python2 fix
-  sed -e 's_#!/usr/bin/env python$_#!/usr/bin/env python2_' \
-  -e 's_#!/usr/bin/python$_#!/usr/bin/python2_' \
-  -i local.py server.py encrypt.py __init__.py utils.py
-}
-
-package() {
-  cd $srcdir/shadowsocks-$pkgver
-  python2 setup.py install -O1 --root=$pkgdir
-  
-  install -d $pkgdir/etc/shadowsocks
-  install -Dm644 $srcdir/shadowsocks@.service 
$pkgdir/usr/lib/systemd/system/shadowsocks@.service
-  install -Dm644 $srcdir/shadowsocks-server@.service 
$pkgdir/usr/lib/systemd/system/shadowsocks-server@.service
-  install -Dm644 $srcdir/$pkgname-LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('b8df95fa49f612aaa3541e5562436f2dce5171d6ba0939dcbfbd0aa27ae3fe68f45d5d170c457d22160e4a2c2964f2abb928a3b65cf605c8bb6163bf2d59e8ad'
-
'36c025d78d9d2b355516360c8d4642290dc4102543eb4b1473a6f3201785ef28727ff9cb662757f013a62fa4a73f62a2655508a5ae554e124404fc3077aef8cb'
-
'96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d'
-
'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df')

Copied: shadowsocks/repos/community-any/PKGBUILD (from rev 115656, 
shadowsocks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-13 16:17:08 UTC (rev 115657)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=shadowsocks
+pkgver=2.0.11
+pkgrel=1
+pkgdesc=A lightweight tunnel proxy
+license=(MIT)
+url=http://pypi.python.org/pypi/shadowsocks;
+depends=('python2' 'python2-setuptools')
+optdepends=('python2-m2crypto: For any encryption method other than table'
+'python2-numpy: For salsa20 support'
+'python2-salsa20: For salsa20 support')
+source=(http://pypi.python.org/packages/source/s/shadowsocks/shadowsocks-${pkgver}.tar.gz;
+
$pkgname-LICENSE::https://raw.github.com/clowwindy/shadowsocks/master/LICENSE;
+shadowsocks@.service
+shadowsocks-server@.service)
+arch=('any')
+install=${pkgname}.install
+
+prepare() {
+  cd shadowsocks-$pkgver/shadowsocks
+  # python2 fix
+  sed -e 's_#!/usr/bin/env python$_#!/usr/bin/env python2_' \
+  -e 's_#!/usr/bin/python$_#!/usr/bin/python2_' \
+  -i local.py server.py encrypt.py __init__.py utils.py
+}
+
+package() {
+  cd $srcdir/shadowsocks-$pkgver
+  python2 setup.py install -O1 --root=$pkgdir
+  
+  install -d $pkgdir/etc/shadowsocks
+  install -Dm644 $srcdir/shadowsocks@.service 
$pkgdir/usr/lib/systemd/system/shadowsocks@.service
+  install -Dm644 $srcdir/shadowsocks-server@.service 
$pkgdir/usr/lib/systemd/system/shadowsocks-server@.service
+  install -Dm644 $srcdir/$pkgname-LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 18:16:41
  Author: fyan
Revision: 115656

upgpkg: shadowsocks 2.0.11-1

Modified:
  shadowsocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 16:11:47 UTC (rev 115655)
+++ PKGBUILD2014-07-13 16:16:41 UTC (rev 115656)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@gmail.com
 
 pkgname=shadowsocks
-pkgver=2.0.10
+pkgver=2.0.11
 pkgrel=1
 pkgdesc=A lightweight tunnel proxy
 license=(MIT)
@@ -36,7 +36,7 @@
   install -Dm644 $srcdir/$pkgname-LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
-sha512sums=('b8df95fa49f612aaa3541e5562436f2dce5171d6ba0939dcbfbd0aa27ae3fe68f45d5d170c457d22160e4a2c2964f2abb928a3b65cf605c8bb6163bf2d59e8ad'
+sha512sums=('f977d16f30f9be4d265d9d2e26aa72310377acde3ff9699ae29e73fc97db5097bfec44dcbddbae0670f79afa955318467cf5f077b16afd8e3bbf61b5cc8124b3'
 
'36c025d78d9d2b355516360c8d4642290dc4102543eb4b1473a6f3201785ef28727ff9cb662757f013a62fa4a73f62a2655508a5ae554e124404fc3077aef8cb'
 
'96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d'
 
'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df')



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 18:55:37
  Author: fyan
Revision: 216859

upgpkg: python-pycurl 7.19.5-1

Modified:
  python-pycurl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 16:50:58 UTC (rev 216858)
+++ PKGBUILD2014-07-13 16:55:37 UTC (rev 216859)
@@ -6,40 +6,55 @@
 _pypiname=pycurl
 pkgbase=python-$_pypiname
 pkgname=('python-pycurl' 'python2-pycurl')
-pkgver=7.19.3.1
-pkgrel=2
+pkgver=7.19.5
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://pycurl.sourceforge.net/;
 license=('LGPL' 'MIT')
 makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose' 'python2-nose' 
'vsftpd')
 source=(git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
 sha1sums=('SKIP')
 
 prepare() {
-  cp -r ${_pypiname} python2-${_pypiname}
+  cp -r $_pypiname{,-py2}
 
-  cd ${srcdir}/${_pypiname}
+  cd $srcdir/$_pypiname
   find . -name '*.py' -exec sed -i -e s|#! /usr/bin/env python|#!/usr/bin/env 
python3| {} +
 sed -i 's/share, doc, PACKAGE/share, doc, python-pycurl/' 
setup.py
+  sed -i s/nosetests/nosetests3/ Makefile
 
-  cd ${srcdir}/python2-${_pypiname}
+  cd $srcdir/$_pypiname-py2
   find . -name '*.py' -exec sed -i -e s|#! /usr/bin/env python|#!/usr/bin/env 
python2| {} +
 sed -i 's/share, doc, PACKAGE/share, doc, python2-pycurl/' 
setup.py
+  sed -i s/nosetests/nosetests2/ Makefile
 }
 
 build() {
-  cd ${srcdir}/${_pypiname}
+  cd $srcdir/$_pypiname
+  make
   python3 setup.py build --with-ssl
 
-  cd ${srcdir}/python2-${_pypiname}
+  cd $srcdir/$_pypiname-py2
+  make
   python2 setup.py build --with-ssl
 }
 
+check() {
+  export PYCURL_VSFTPD_PATH=vsftpd
+
+  cd $srcdir/$_pypiname
+  PYTHONPATH=$PWD/build/lib.linux-$CARCH-3.4:$PYTHONPATH make test || 
warning Tests failed
+
+  cd $srcdir/$_pypiname-py2
+  PYTHONPATH=$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH make test || 
warning Tests failed
+}
+
 package_python-pycurl() {
   pkgdesc=A Python 3.x interface to libcurl
   depends=('python' 'curl')
 
-  cd ${_pypiname}
+  cd $_pypiname
   python setup.py install -O1 --root=${pkgdir}
   install -D -m644 COPYING-MIT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
@@ -48,7 +63,7 @@
   pkgdesc=A Python 2.x interface to libcurl
   depends=('python2' 'curl')
 
-  cd python2-${_pypiname}
+  cd $_pypiname-py2
   python2 setup.py install -O1 --root=${pkgdir}
   install -D -m644 COPYING-MIT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 18:50:40
  Author: fyan
Revision: 216857

upgpkg: perl-uri 1.63-1

Modified:
  perl-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 13:03:27 UTC (rev 216856)
+++ PKGBUILD2014-07-13 16:50:40 UTC (rev 216857)
@@ -5,7 +5,7 @@
 
 pkgname=perl-uri
 _realname=URI
-pkgver=1.62
+pkgver=1.63
 pkgrel=1
 pkgdesc=Uniform Resource Identifiers (absolute and relative)
 arch=('any')
@@ -15,7 +15,7 @@
 provides=('perl-uri-escape=3.30')
 options=('!emptydirs')
 
source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
-md5sums=('a2508570b6b28897c4125b0766c3c1a6')
+md5sums=('431f3696b9f2ac4b93e5a6263fd61180')
 
 build() {
   cd ${srcdir}/${_realname}-$pkgver



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 18:50:58
  Author: fyan
Revision: 216858

archrelease: copy trunk to extra-any

Added:
  perl-uri/repos/extra-any/PKGBUILD
(from rev 216857, perl-uri/trunk/PKGBUILD)
Deleted:
  perl-uri/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-13 16:50:40 UTC (rev 216857)
+++ PKGBUILD2014-07-13 16:50:58 UTC (rev 216858)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Manolis Tzanidakis
-# Contributor: Firmicus francois.archlinux.org 
-
-pkgname=perl-uri
-_realname=URI
-pkgver=1.62
-pkgrel=1
-pkgdesc=Uniform Resource Identifiers (absolute and relative)
-arch=('any')
-url=http://search.cpan.org/dist/${_realname}/;
-license=('PerlArtistic')
-depends=('perl')
-provides=('perl-uri-escape=3.30')
-options=('!emptydirs')
-source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
-md5sums=('a2508570b6b28897c4125b0766c3c1a6')
-
-build() {
-  cd ${srcdir}/${_realname}-$pkgver
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_realname}-$pkgver
-  make install DESTDIR=${pkgdir}
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: perl-uri/repos/extra-any/PKGBUILD (from rev 216857, 
perl-uri/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-13 16:50:58 UTC (rev 216858)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Manolis Tzanidakis
+# Contributor: Firmicus francois.archlinux.org 
+
+pkgname=perl-uri
+_realname=URI
+pkgver=1.63
+pkgrel=1
+pkgdesc=Uniform Resource Identifiers (absolute and relative)
+arch=('any')
+url=http://search.cpan.org/dist/${_realname}/;
+license=('PerlArtistic')
+depends=('perl')
+provides=('perl-uri-escape=3.30')
+options=('!emptydirs')
+source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
+md5sums=('431f3696b9f2ac4b93e5a6263fd61180')
+
+build() {
+  cd ${srcdir}/${_realname}-$pkgver
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${srcdir}/${_realname}-$pkgver
+  make install DESTDIR=${pkgdir}
+}
+# vim: ts=2 sw=2 et ft=sh



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

2014-07-13 Thread Felix Yan
Date: Sunday, July 13, 2014 @ 18:56:02
  Author: fyan
Revision: 216863

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

Added:
  python-pycurl/repos/testing-i686/
  python-pycurl/repos/testing-i686/PKGBUILD
(from rev 216859, python-pycurl/trunk/PKGBUILD)
  python-pycurl/repos/testing-x86_64/
  python-pycurl/repos/testing-x86_64/PKGBUILD
(from rev 216862, python-pycurl/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-x86_64/PKGBUILD |   69 ++
 2 files changed, 138 insertions(+)

Copied: python-pycurl/repos/testing-i686/PKGBUILD (from rev 216859, 
python-pycurl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-13 16:56:02 UTC (rev 216863)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve 
+
+_pypiname=pycurl
+pkgbase=python-$_pypiname
+pkgname=('python-pycurl' 'python2-pycurl')
+pkgver=7.19.5
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://pycurl.sourceforge.net/;
+license=('LGPL' 'MIT')
+makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose' 'python2-nose' 
'vsftpd')
+source=(git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -r $_pypiname{,-py2}
+
+  cd $srcdir/$_pypiname
+  find . -name '*.py' -exec sed -i -e s|#! /usr/bin/env python|#!/usr/bin/env 
python3| {} +
+sed -i 's/share, doc, PACKAGE/share, doc, python-pycurl/' 
setup.py
+  sed -i s/nosetests/nosetests3/ Makefile
+
+  cd $srcdir/$_pypiname-py2
+  find . -name '*.py' -exec sed -i -e s|#! /usr/bin/env python|#!/usr/bin/env 
python2| {} +
+sed -i 's/share, doc, PACKAGE/share, doc, python2-pycurl/' 
setup.py
+  sed -i s/nosetests/nosetests2/ Makefile
+}
+
+build() {
+  cd $srcdir/$_pypiname
+  make
+  python3 setup.py build --with-ssl
+
+  cd $srcdir/$_pypiname-py2
+  make
+  python2 setup.py build --with-ssl
+}
+
+check() {
+  export PYCURL_VSFTPD_PATH=vsftpd
+
+  cd $srcdir/$_pypiname
+  PYTHONPATH=$PWD/build/lib.linux-$CARCH-3.4:$PYTHONPATH make test || 
warning Tests failed
+
+  cd $srcdir/$_pypiname-py2
+  PYTHONPATH=$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH make test || 
warning Tests failed
+}
+
+package_python-pycurl() {
+  pkgdesc=A Python 3.x interface to libcurl
+  depends=('python' 'curl')
+
+  cd $_pypiname
+  python setup.py install -O1 --root=${pkgdir}
+  install -D -m644 COPYING-MIT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pycurl() {
+  pkgdesc=A Python 2.x interface to libcurl
+  depends=('python2' 'curl')
+
+  cd $_pypiname-py2
+  python2 setup.py install -O1 --root=${pkgdir}
+  install -D -m644 COPYING-MIT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python-pycurl/repos/testing-x86_64/PKGBUILD (from rev 216862, 
python-pycurl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-07-13 16:56:02 UTC (rev 216863)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve 
+
+_pypiname=pycurl
+pkgbase=python-$_pypiname
+pkgname=('python-pycurl' 'python2-pycurl')
+pkgver=7.19.5
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://pycurl.sourceforge.net/;
+license=('LGPL' 'MIT')
+makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose' 'python2-nose' 
'vsftpd')
+source=(git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -r $_pypiname{,-py2}
+
+  cd $srcdir/$_pypiname
+  find . -name '*.py' -exec sed -i -e s|#! /usr/bin/env python|#!/usr/bin/env 
python3| {} +
+sed -i 's/share, doc, PACKAGE/share, doc, python-pycurl/' 
setup.py
+  sed -i s/nosetests/nosetests3/ Makefile
+
+  cd $srcdir/$_pypiname-py2
+  find . -name '*.py' -exec sed -i -e s|#! /usr/bin/env python|#!/usr/bin/env 
python2| {} +
+sed -i 's/share, doc, PACKAGE/share, doc, python2-pycurl/' 
setup.py
+  sed -i s/nosetests/nosetests2/ Makefile
+}
+
+build() {
+  cd $srcdir/$_pypiname
+  make
+  python3 setup.py build --with-ssl
+
+  cd $srcdir/$_pypiname-py2
+  make
+  python2 setup.py build --with-ssl
+}
+
+check() {
+  export PYCURL_VSFTPD_PATH=vsftpd
+
+  cd $srcdir/$_pypiname
+  PYTHONPATH=$PWD/build/lib.linux-$CARCH-3.4:$PYTHONPATH make test || 
warning Tests failed
+
+  cd $srcdir/$_pypiname-py2
+  PYTHONPATH=$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH make test || 
warning Tests failed
+}
+
+package_python-pycurl() {
+  

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

2014-07-13 Thread Daniel Micay
Date: Sunday, July 13, 2014 @ 20:40:36
  Author: thestinger
Revision: 115659

upgpkg: linux-grsec 3.15.5.201407131211-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 16:56:40 UTC (rev 115658)
+++ PKGBUILD2014-07-13 18:40:36 UTC (rev 115659)
@@ -8,10 +8,10 @@
 _srcname=linux-3.15
 _pkgver=3.15.5
 _grsecver=3.0
-_timestamp=201407100036
+_timestamp=201407131211
 _grsec_patch=grsecurity-$_grsecver-$_pkgver-$_timestamp.patch
 pkgver=$_pkgver.$_timestamp
-pkgrel=2
+pkgrel=1
 arch=('i686' 'x86_64')
 url=https://grsecurity.net/
 license=('GPL2')
@@ -31,7 +31,7 @@
 )
 sha256sums=('c3927e87be4040fa8aca1b58663dc0776aaf00485604ff88a623be2f3fb07794'
 '9b0d000e0bdec7a25ee6303afdab8d2af77439995876eadd6ce248e5c954037d'
-'130ec88600865218aad9a41e07525d80b502f28b7ca411b001fa21b6f1f0347c'
+'b7b65ff2ab0ff7f4d7f91e7b26060c1832de50eb35eeac1b835e5190ffaf2645'
 'SKIP'
 '9e54806d6de98eeec1616657f29f0842ed63e3d79c3c8d644fb89eac6aaeb4fe'
 '9b2ae8b17b3d0048d785ba81184b1bbc0734296cd03e3be4780274616155941d'



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

2014-07-13 Thread Daniel Micay
Date: Sunday, July 13, 2014 @ 20:41:40
  Author: thestinger
Revision: 115660

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

Added:
  linux-grsec/repos/community-i686/0013-efistub-fix.patch
(from rev 115659, linux-grsec/trunk/0013-efistub-fix.patch)
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 115659, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 115659, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 115659, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 115659, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 115659, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 115659, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-i686/sysctl.conf
(from rev 115659, linux-grsec/trunk/sysctl.conf)
  linux-grsec/repos/community-x86_64/0013-efistub-fix.patch
(from rev 115659, linux-grsec/trunk/0013-efistub-fix.patch)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 115659, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 115659, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 115659, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 115659, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 115659, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 115659, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-x86_64/sysctl.conf
(from rev 115659, linux-grsec/trunk/sysctl.conf)
Deleted:
  linux-grsec/repos/community-i686/0013-efistub-fix.patch
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  linux-grsec/repos/community-i686/sysctl.conf
  linux-grsec/repos/community-x86_64/0013-efistub-fix.patch
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset
  linux-grsec/repos/community-x86_64/sysctl.conf

+
 /0013-efistub-fix.patch|  354 
 /PKGBUILD  |  652 
 /change-default-console-loglevel.patch |   24 
 /config|13824 +++
 /config.x86_64 |13384 ++
 /linux-grsec.install   |  174 
 /linux.preset  |   28 
 /sysctl.conf   |  262 
 community-i686/0013-efistub-fix.patch  |  177 
 community-i686/PKGBUILD|  326 
 community-i686/change-default-console-loglevel.patch   |   12 
 community-i686/config  | 6912 ---
 community-i686/config.x86_64   | 6692 ---
 community-i686/linux-grsec.install |   87 
 community-i686/linux.preset|   14 
 community-i686/sysctl.conf |  131 
 community-x86_64/0013-efistub-fix.patch|  177 
 community-x86_64/PKGBUILD  |  326 
 community-x86_64/change-default-console-loglevel.patch |   12 
 community-x86_64/config| 6912 ---
 community-x86_64/config.x86_64 | 6692 ---
 community-x86_64/linux-grsec.install   |   87 
 community-x86_64/linux.preset  |   14 
 community-x86_64/sysctl.conf   |  131 
 24 files changed, 28702 insertions(+), 28702 deletions(-)

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


[arch-commits] Commit in haskell-tar/repos (community-i686)

2014-07-13 Thread Jelle van der Waa
Date: Sunday, July 13, 2014 @ 21:33:15
  Author: jelle
Revision: 115662

db-remove: haskell-tar removed by jelle

Deleted:
  haskell-tar/repos/community-i686/



[arch-commits] Commit in haskell-tar/repos (community-x86_64)

2014-07-13 Thread Jelle van der Waa
Date: Sunday, July 13, 2014 @ 21:33:04
  Author: jelle
Revision: 115661

db-remove: haskell-tar removed by jelle

Deleted:
  haskell-tar/repos/community-x86_64/



[arch-commits] Commit in (haskell-tar)

2014-07-13 Thread Jelle van der Waa
Date: Sunday, July 13, 2014 @ 21:44:40
  Author: jelle
Revision: 115663

remove orphan library

Deleted:
  haskell-tar/



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

2014-07-13 Thread Daniel Wallace
Date: Sunday, July 13, 2014 @ 22:07:25
  Author: dwallace
Revision: 115664

upgpkg: uwsgi 2.0.6-1

upgpkg: uwsgi 2.0.6

Modified:
  uwsgi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 19:44:40 UTC (rev 115663)
+++ PKGBUILD2014-07-13 20:07:25 UTC (rev 115664)
@@ -24,7 +24,7 @@
 )
 #uwsgi-plugin-erlang
 #uwsgi-plugin-admin
-pkgver=2.0.5.1
+pkgver=2.0.6
 pkgrel=1
 arch=(i686 x86_64)
 url=http://projects.unbit.it/$pkgbase;
@@ -46,7 +46,7 @@
 emperor.uwsgi.service
 emperor.uwsgi.socket)
 
-md5sums=('9c89a1d411719b205f4709abe166efe9'
+md5sums=('50e9657ebbf52dd3bcd57b565f6b65a5'
  'a0749da07b545efcbb0276f52be22652'
  '752475ee32286acfbafa49b898616817'
  'c54a60431d8d81c1a65b9f4b271ac718'



[arch-commits] Commit in uwsgi/repos (52 files)

2014-07-13 Thread Daniel Wallace
Date: Sunday, July 13, 2014 @ 22:09:27
  Author: dwallace
Revision: 115665

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

Added:
  uwsgi/repos/community-i686/.lock
(from rev 115664, uwsgi/trunk/.lock)
  uwsgi/repos/community-i686/PKGBUILD
(from rev 115664, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-i686/archlinux.ini
(from rev 115664, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-i686/emperor.ini
(from rev 115664, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-i686/emperor.uwsgi.service
(from rev 115664, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-i686/emperor.uwsgi.socket
(from rev 115664, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-i686/tmpfilesd
(from rev 115664, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-i686/uwsgi.install
(from rev 115664, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-i686/uwsgi@.service
(from rev 115664, uwsgi/trunk/uwsgi@.service)
  uwsgi/repos/community-i686/uwsgi@.socket
(from rev 115664, uwsgi/trunk/uwsgi@.socket)
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
(from rev 115664, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
(from rev 115664, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
(from rev 115664, uwsgi/trunk/uwsgi_trick_chroot.patch)
  uwsgi/repos/community-x86_64/.lock
(from rev 115664, uwsgi/trunk/.lock)
  uwsgi/repos/community-x86_64/PKGBUILD
(from rev 115664, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-x86_64/archlinux.ini
(from rev 115664, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-x86_64/emperor.ini
(from rev 115664, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-x86_64/emperor.uwsgi.service
(from rev 115664, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-x86_64/emperor.uwsgi.socket
(from rev 115664, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-x86_64/tmpfilesd
(from rev 115664, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-x86_64/uwsgi.install
(from rev 115664, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-x86_64/uwsgi@.service
(from rev 115664, uwsgi/trunk/uwsgi@.service)
  uwsgi/repos/community-x86_64/uwsgi@.socket
(from rev 115664, uwsgi/trunk/uwsgi@.socket)
  uwsgi/repos/community-x86_64/uwsgi_fix_rpath.patch
(from rev 115664, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-x86_64/uwsgi_ruby20_compatibility.patch
(from rev 115664, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-x86_64/uwsgi_trick_chroot.patch
(from rev 115664, uwsgi/trunk/uwsgi_trick_chroot.patch)
Deleted:
  uwsgi/repos/community-i686/.lock
  uwsgi/repos/community-i686/PKGBUILD
  uwsgi/repos/community-i686/archlinux.ini
  uwsgi/repos/community-i686/emperor.ini
  uwsgi/repos/community-i686/emperor.uwsgi.service
  uwsgi/repos/community-i686/emperor.uwsgi.socket
  uwsgi/repos/community-i686/tmpfilesd
  uwsgi/repos/community-i686/uwsgi.install
  uwsgi/repos/community-i686/uwsgi@.service
  uwsgi/repos/community-i686/uwsgi@.socket
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
  uwsgi/repos/community-x86_64/.lock
  uwsgi/repos/community-x86_64/PKGBUILD
  uwsgi/repos/community-x86_64/archlinux.ini
  uwsgi/repos/community-x86_64/emperor.ini
  uwsgi/repos/community-x86_64/emperor.uwsgi.service
  uwsgi/repos/community-x86_64/emperor.uwsgi.socket
  uwsgi/repos/community-x86_64/tmpfilesd
  uwsgi/repos/community-x86_64/uwsgi.install
  uwsgi/repos/community-x86_64/uwsgi@.service
  uwsgi/repos/community-x86_64/uwsgi@.socket
  uwsgi/repos/community-x86_64/uwsgi_fix_rpath.patch
  uwsgi/repos/community-x86_64/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-x86_64/uwsgi_trick_chroot.patch

---+
 /PKGBUILD |  520 
 /archlinux.ini|   34 +
 /emperor.ini  |8 
 /emperor.uwsgi.service|   28 +
 /emperor.uwsgi.socket |   18 
 /tmpfilesd|2 
 /uwsgi.install|   24 
 /uwsgi@.service   |   28 +
 /uwsgi@.socket|   18 
 /uwsgi_fix_rpath.patch|  132 +
 /uwsgi_ruby20_compatibility.patch |   84 +++
 /uwsgi_trick_chroot.patch |   32 +
 community-i686/PKGBUILD   |  260 --
 community-i686/archlinux.ini  |   17 
 community-i686/emperor.ini|4 
 community-i686/emperor.uwsgi.service  |   14 
 

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

2014-07-13 Thread Eric Bélanger
Date: Monday, July 14, 2014 @ 02:03:50
  Author: eric
Revision: 216864

upgpkg: allegro4 4.4.2-3

Add glu makedepends

Modified:
  allegro4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 16:56:02 UTC (rev 216863)
+++ PKGBUILD2014-07-14 00:03:50 UTC (rev 216864)
@@ -5,13 +5,13 @@
 
 pkgname=allegro4
 pkgver=4.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Portable library mainly aimed at video game and multimedia 
programming (legacy version)
 arch=('i686' 'x86_64')
 url=http://alleg.sourceforge.net/;
 license=('custom')
 depends=('sh' 'jack' 'libxpm' 'libxxf86vm' 'libxxf86dga' 'libxcursor')
-makedepends=('cmake' 'libpng' 'mesa')
+makedepends=('cmake' 'libpng' 'mesa' 'glu')
 options=('staticlibs')
 source=(http://downloads.sourceforge.net/alleg/allegro-${pkgver}.tar.gz
 LICENSE)



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

2014-07-13 Thread Eric Bélanger
Date: Monday, July 14, 2014 @ 02:06:42
  Author: eric
Revision: 216865

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

Added:
  allegro4/repos/extra-i686/LICENSE
(from rev 216864, allegro4/trunk/LICENSE)
  allegro4/repos/extra-i686/PKGBUILD
(from rev 216864, allegro4/trunk/PKGBUILD)
  allegro4/repos/extra-x86_64/LICENSE
(from rev 216864, allegro4/trunk/LICENSE)
  allegro4/repos/extra-x86_64/PKGBUILD
(from rev 216864, allegro4/trunk/PKGBUILD)
Deleted:
  allegro4/repos/extra-i686/LICENSE
  allegro4/repos/extra-i686/PKGBUILD
  allegro4/repos/extra-x86_64/LICENSE
  allegro4/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |   52 
 /PKGBUILD |   78 
 extra-i686/LICENSE|   26 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/LICENSE  |   26 
 extra-x86_64/PKGBUILD |   39 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2014-07-14 00:03:50 UTC (rev 216864)
+++ extra-i686/LICENSE  2014-07-14 00:06:42 UTC (rev 216865)
@@ -1,26 +0,0 @@
-===
- Copyright 
-===
-
-   Allegro is gift-ware. It was created by a number of people working in 
-   cooperation, and is given to you freely as a gift. You may use, modify, 
-   redistribute, and generally hack it about in any way you like, and you do 
-   not have to give us anything in return. However, if you like this product 
-   you are encouraged to thank us by making a return gift to the Allegro 
-   community. This could be by writing an add-on package, providing a useful 
-   bug report, making an improvement to the library, or perhaps just 
-   releasing the sources of your program so that other people can learn from 
-   them. If you redistribute parts of this code or make a game using it, it 
-   would be nice if you mentioned Allegro somewhere in the credits, but you 
-   are not required to do this. We trust you not to abuse our generosity.
-
-   Disclaimer:
-
-   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
-   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
-   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-   DEALINGS IN THE SOFTWARE.
-

Copied: allegro4/repos/extra-i686/LICENSE (from rev 216864, 
allegro4/trunk/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2014-07-14 00:06:42 UTC (rev 216865)
@@ -0,0 +1,26 @@
+===
+ Copyright 
+===
+
+   Allegro is gift-ware. It was created by a number of people working in 
+   cooperation, and is given to you freely as a gift. You may use, modify, 
+   redistribute, and generally hack it about in any way you like, and you do 
+   not have to give us anything in return. However, if you like this product 
+   you are encouraged to thank us by making a return gift to the Allegro 
+   community. This could be by writing an add-on package, providing a useful 
+   bug report, making an improvement to the library, or perhaps just 
+   releasing the sources of your program so that other people can learn from 
+   them. If you redistribute parts of this code or make a game using it, it 
+   would be nice if you mentioned Allegro somewhere in the credits, but you 
+   are not required to do this. We trust you not to abuse our generosity.
+
+   Disclaimer:
+
+   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+   DEALINGS IN THE SOFTWARE.
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-14 00:03:50 UTC (rev 216864)
+++ extra-i686/PKGBUILD 2014-07-14 00:06:42 UTC (rev 216865)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: arjan ar...@archlinux.org
-
-pkgname=allegro4
-pkgver=4.4.2
-pkgrel=2
-pkgdesc=Portable library mainly 

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

2014-07-13 Thread Eric Bélanger
Date: Monday, July 14, 2014 @ 02:36:25
  Author: eric
Revision: 216866

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

Added:
  allegro4/repos/extra-i686/LICENSE
(from rev 216865, allegro4/trunk/LICENSE)
  allegro4/repos/extra-i686/PKGBUILD
(from rev 216865, allegro4/trunk/PKGBUILD)
  allegro4/repos/extra-x86_64/LICENSE
(from rev 216865, allegro4/trunk/LICENSE)
  allegro4/repos/extra-x86_64/PKGBUILD
(from rev 216865, allegro4/trunk/PKGBUILD)
Deleted:
  allegro4/repos/extra-i686/LICENSE
  allegro4/repos/extra-i686/PKGBUILD
  allegro4/repos/extra-x86_64/LICENSE
  allegro4/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |   52 
 /PKGBUILD |   78 
 extra-i686/LICENSE|   26 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/LICENSE  |   26 
 extra-x86_64/PKGBUILD |   39 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2014-07-14 00:06:42 UTC (rev 216865)
+++ extra-i686/LICENSE  2014-07-14 00:36:25 UTC (rev 216866)
@@ -1,26 +0,0 @@
-===
- Copyright 
-===
-
-   Allegro is gift-ware. It was created by a number of people working in 
-   cooperation, and is given to you freely as a gift. You may use, modify, 
-   redistribute, and generally hack it about in any way you like, and you do 
-   not have to give us anything in return. However, if you like this product 
-   you are encouraged to thank us by making a return gift to the Allegro 
-   community. This could be by writing an add-on package, providing a useful 
-   bug report, making an improvement to the library, or perhaps just 
-   releasing the sources of your program so that other people can learn from 
-   them. If you redistribute parts of this code or make a game using it, it 
-   would be nice if you mentioned Allegro somewhere in the credits, but you 
-   are not required to do this. We trust you not to abuse our generosity.
-
-   Disclaimer:
-
-   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
-   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
-   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-   DEALINGS IN THE SOFTWARE.
-

Copied: allegro4/repos/extra-i686/LICENSE (from rev 216865, 
allegro4/trunk/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2014-07-14 00:36:25 UTC (rev 216866)
@@ -0,0 +1,26 @@
+===
+ Copyright 
+===
+
+   Allegro is gift-ware. It was created by a number of people working in 
+   cooperation, and is given to you freely as a gift. You may use, modify, 
+   redistribute, and generally hack it about in any way you like, and you do 
+   not have to give us anything in return. However, if you like this product 
+   you are encouraged to thank us by making a return gift to the Allegro 
+   community. This could be by writing an add-on package, providing a useful 
+   bug report, making an improvement to the library, or perhaps just 
+   releasing the sources of your program so that other people can learn from 
+   them. If you redistribute parts of this code or make a game using it, it 
+   would be nice if you mentioned Allegro somewhere in the credits, but you 
+   are not required to do this. We trust you not to abuse our generosity.
+
+   Disclaimer:
+
+   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+   DEALINGS IN THE SOFTWARE.
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-14 00:06:42 UTC (rev 216865)
+++ extra-i686/PKGBUILD 2014-07-14 00:36:25 UTC (rev 216866)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: arjan ar...@archlinux.org
-
-pkgname=allegro4
-pkgver=4.4.2
-pkgrel=3
-pkgdesc=Portable library mainly 

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

2014-07-13 Thread Eric Bélanger
Date: Monday, July 14, 2014 @ 03:06:58
  Author: eric
Revision: 216867

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

Added:
  allegro4/repos/extra-i686/LICENSE
(from rev 216866, allegro4/trunk/LICENSE)
  allegro4/repos/extra-i686/PKGBUILD
(from rev 216866, allegro4/trunk/PKGBUILD)
  allegro4/repos/extra-x86_64/LICENSE
(from rev 216866, allegro4/trunk/LICENSE)
  allegro4/repos/extra-x86_64/PKGBUILD
(from rev 216866, allegro4/trunk/PKGBUILD)
Deleted:
  allegro4/repos/extra-i686/LICENSE
  allegro4/repos/extra-i686/PKGBUILD
  allegro4/repos/extra-x86_64/LICENSE
  allegro4/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |   52 
 /PKGBUILD |   78 
 extra-i686/LICENSE|   26 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/LICENSE  |   26 
 extra-x86_64/PKGBUILD |   39 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2014-07-14 00:36:25 UTC (rev 216866)
+++ extra-i686/LICENSE  2014-07-14 01:06:58 UTC (rev 216867)
@@ -1,26 +0,0 @@
-===
- Copyright 
-===
-
-   Allegro is gift-ware. It was created by a number of people working in 
-   cooperation, and is given to you freely as a gift. You may use, modify, 
-   redistribute, and generally hack it about in any way you like, and you do 
-   not have to give us anything in return. However, if you like this product 
-   you are encouraged to thank us by making a return gift to the Allegro 
-   community. This could be by writing an add-on package, providing a useful 
-   bug report, making an improvement to the library, or perhaps just 
-   releasing the sources of your program so that other people can learn from 
-   them. If you redistribute parts of this code or make a game using it, it 
-   would be nice if you mentioned Allegro somewhere in the credits, but you 
-   are not required to do this. We trust you not to abuse our generosity.
-
-   Disclaimer:
-
-   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
-   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
-   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-   DEALINGS IN THE SOFTWARE.
-

Copied: allegro4/repos/extra-i686/LICENSE (from rev 216866, 
allegro4/trunk/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2014-07-14 01:06:58 UTC (rev 216867)
@@ -0,0 +1,26 @@
+===
+ Copyright 
+===
+
+   Allegro is gift-ware. It was created by a number of people working in 
+   cooperation, and is given to you freely as a gift. You may use, modify, 
+   redistribute, and generally hack it about in any way you like, and you do 
+   not have to give us anything in return. However, if you like this product 
+   you are encouraged to thank us by making a return gift to the Allegro 
+   community. This could be by writing an add-on package, providing a useful 
+   bug report, making an improvement to the library, or perhaps just 
+   releasing the sources of your program so that other people can learn from 
+   them. If you redistribute parts of this code or make a game using it, it 
+   would be nice if you mentioned Allegro somewhere in the credits, but you 
+   are not required to do this. We trust you not to abuse our generosity.
+
+   Disclaimer:
+
+   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+   DEALINGS IN THE SOFTWARE.
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-14 00:36:25 UTC (rev 216866)
+++ extra-i686/PKGBUILD 2014-07-14 01:06:58 UTC (rev 216867)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: arjan ar...@archlinux.org
-
-pkgname=allegro4
-pkgver=4.4.2
-pkgrel=3
-pkgdesc=Portable library mainly 

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

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 04:16:41
  Author: fyan
Revision: 216868

upgpkg: perl-uri 1.64-1

Modified:
  perl-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-14 01:06:58 UTC (rev 216867)
+++ PKGBUILD2014-07-14 02:16:41 UTC (rev 216868)
@@ -5,7 +5,7 @@
 
 pkgname=perl-uri
 _realname=URI
-pkgver=1.63
+pkgver=1.64
 pkgrel=1
 pkgdesc=Uniform Resource Identifiers (absolute and relative)
 arch=('any')
@@ -15,7 +15,7 @@
 provides=('perl-uri-escape=3.30')
 options=('!emptydirs')
 
source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
-md5sums=('431f3696b9f2ac4b93e5a6263fd61180')
+md5sums=('975b2282bc8f0fd72a6dae5cefc33824')
 
 build() {
   cd ${srcdir}/${_realname}-$pkgver



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

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 04:16:59
  Author: fyan
Revision: 216869

archrelease: copy trunk to extra-any

Added:
  perl-uri/repos/extra-any/PKGBUILD
(from rev 216868, perl-uri/trunk/PKGBUILD)
Deleted:
  perl-uri/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-14 02:16:41 UTC (rev 216868)
+++ PKGBUILD2014-07-14 02:16:59 UTC (rev 216869)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Manolis Tzanidakis
-# Contributor: Firmicus francois.archlinux.org 
-
-pkgname=perl-uri
-_realname=URI
-pkgver=1.63
-pkgrel=1
-pkgdesc=Uniform Resource Identifiers (absolute and relative)
-arch=('any')
-url=http://search.cpan.org/dist/${_realname}/;
-license=('PerlArtistic')
-depends=('perl')
-provides=('perl-uri-escape=3.30')
-options=('!emptydirs')
-source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
-md5sums=('431f3696b9f2ac4b93e5a6263fd61180')
-
-build() {
-  cd ${srcdir}/${_realname}-$pkgver
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_realname}-$pkgver
-  make install DESTDIR=${pkgdir}
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: perl-uri/repos/extra-any/PKGBUILD (from rev 216868, 
perl-uri/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-14 02:16:59 UTC (rev 216869)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Manolis Tzanidakis
+# Contributor: Firmicus francois.archlinux.org 
+
+pkgname=perl-uri
+_realname=URI
+pkgver=1.64
+pkgrel=1
+pkgdesc=Uniform Resource Identifiers (absolute and relative)
+arch=('any')
+url=http://search.cpan.org/dist/${_realname}/;
+license=('PerlArtistic')
+depends=('perl')
+provides=('perl-uri-escape=3.30')
+options=('!emptydirs')
+source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
+md5sums=('975b2282bc8f0fd72a6dae5cefc33824')
+
+build() {
+  cd ${srcdir}/${_realname}-$pkgver
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${srcdir}/${_realname}-$pkgver
+  make install DESTDIR=${pkgdir}
+}
+# vim: ts=2 sw=2 et ft=sh



[arch-commits] Commit in perl-module-build/repos/extra-any (PKGBUILD PKGBUILD)

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 04:20:22
  Author: fyan
Revision: 216871

archrelease: copy trunk to extra-any

Added:
  perl-module-build/repos/extra-any/PKGBUILD
(from rev 216870, perl-module-build/trunk/PKGBUILD)
Deleted:
  perl-module-build/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-14 02:20:04 UTC (rev 216870)
+++ PKGBUILD2014-07-14 02:20:22 UTC (rev 216871)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor : Alan Young harley...@gmail.com
-
-pkgname=perl-module-build
-pkgver=0.4205
-pkgrel=1
-pkgdesc=Build, test, and install Perl modules
-arch=('any')
-url=http://search.cpan.org/dist/Module-Build;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
-md5sums=('bfc8504e845131625308bd4389c69fbe')
-
-build() {
-  cd Module-Build-$pkgver
-  perl Build.PL installdirs=vendor
-  perl Build
-}
-
-check() {
-  cd Module-Build-$pkgver
-  perl Build test
-}
-
-package() {
-  cd Module-Build-$pkgver
-  perl Build install destdir=$pkgdir
-}

Copied: perl-module-build/repos/extra-any/PKGBUILD (from rev 216870, 
perl-module-build/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-14 02:20:22 UTC (rev 216871)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor : Alan Young harley...@gmail.com
+
+pkgname=perl-module-build
+pkgver=0.4206
+pkgrel=1
+pkgdesc=Build, test, and install Perl modules
+arch=('any')
+url=http://search.cpan.org/dist/Module-Build;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
+md5sums=('55710a04c5639f2a165a000f78081d02')
+
+build() {
+  cd Module-Build-$pkgver
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd Module-Build-$pkgver
+  perl Build test
+}
+
+package() {
+  cd Module-Build-$pkgver
+  perl Build install destdir=$pkgdir
+}



[arch-commits] Commit in perl-module-build/trunk (PKGBUILD)

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 04:20:04
  Author: fyan
Revision: 216870

upgpkg: perl-module-build 0.4206-1

Modified:
  perl-module-build/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-14 02:16:59 UTC (rev 216869)
+++ PKGBUILD2014-07-14 02:20:04 UTC (rev 216870)
@@ -3,7 +3,7 @@
 # Contributor : Alan Young harley...@gmail.com
 
 pkgname=perl-module-build
-pkgver=0.4205
+pkgver=0.4206
 pkgrel=1
 pkgdesc=Build, test, and install Perl modules
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
-md5sums=('bfc8504e845131625308bd4389c69fbe')
+md5sums=('55710a04c5639f2a165a000f78081d02')
 
 build() {
   cd Module-Build-$pkgver



[arch-commits] Commit in meld/repos/testing-any (4 files)

2014-07-13 Thread Jan Steffens
Date: Monday, July 14, 2014 @ 06:25:18
  Author: heftig
Revision: 216873

archrelease: copy trunk to testing-any

Added:
  meld/repos/testing-any/PKGBUILD
(from rev 216872, meld/trunk/PKGBUILD)
  meld/repos/testing-any/meld.install
(from rev 216872, meld/trunk/meld.install)
Deleted:
  meld/repos/testing-any/PKGBUILD
  meld/repos/testing-any/meld.install

--+
 PKGBUILD |   69 -
 meld.install |   28 +++
 2 files changed, 48 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-14 04:24:01 UTC (rev 216872)
+++ PKGBUILD2014-07-14 04:25:18 UTC (rev 216873)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Gaetan Bisson bis...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=meld
-pkgver=3.11.2
-pkgrel=1
-pkgdesc='Visual diff and merge tool'
-url='http://meldmerge.org/'
-license=(GPL)
-arch=(any)
-makedepends=(intltool itstool)
-install=meld.install
-depends=(python2-gobject gtk3 hicolor-icon-theme desktop-file-utils)
-optdepends=('gtksourceview3: syntax highlighting'
-'python2-dbus: open a new tab in an already running instance')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
-sha1sums=('9d2dfe0579241ff8f4e9681945fb9cd229947edc')
-
-# Meld does not support Python 3. The build succeeds, but
-# the main executable checks the version and errors out.
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  # using --skip-build breaks install
-  python2 setup.py --no-update-icon-cache --no-compile-schemas \
-install --prefix=/usr --root=$pkgdir --optimize=1
-}

Copied: meld/repos/testing-any/PKGBUILD (from rev 216872, meld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-14 04:25:18 UTC (rev 216873)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=meld
+pkgver=3.11.2
+pkgrel=2
+pkgdesc='Visual diff and merge tool'
+url='http://meldmerge.org/'
+license=(GPL)
+arch=(any)
+makedepends=(intltool itstool)
+install=meld.install
+depends=(python2-gobject gtksourceview3 hicolor-icon-theme desktop-file-utils)
+optdepends=('python2-dbus: open a new tab in an already running instance')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('9d2dfe0579241ff8f4e9681945fb9cd229947edc')
+
+# Meld does not support Python 3. The build succeeds, but
+# the main executable checks the version and errors out.
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  # using --skip-build breaks install
+  python2 setup.py --no-update-icon-cache --no-compile-schemas \
+install --prefix=/usr --root=$pkgdir --optimize=1
+}

Deleted: meld.install
===
--- meld.install2014-07-14 04:24:01 UTC (rev 216872)
+++ meld.install2014-07-14 04:25:18 UTC (rev 216873)
@@ -1,14 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: meld/repos/testing-any/meld.install (from rev 216872, 
meld/trunk/meld.install)
===
--- meld.install(rev 0)
+++ meld.install2014-07-14 04:25:18 UTC (rev 216873)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-07-13 Thread Jan Steffens
Date: Monday, July 14, 2014 @ 06:24:01
  Author: heftig
Revision: 216872

gtksourceview3 is a proper depend

Modified:
  meld/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-14 02:20:22 UTC (rev 216871)
+++ PKGBUILD2014-07-14 04:24:01 UTC (rev 216872)
@@ -6,7 +6,7 @@
 
 pkgname=meld
 pkgver=3.11.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Visual diff and merge tool'
 url='http://meldmerge.org/'
 license=(GPL)
@@ -13,9 +13,8 @@
 arch=(any)
 makedepends=(intltool itstool)
 install=meld.install
-depends=(python2-gobject gtk3 hicolor-icon-theme desktop-file-utils)
-optdepends=('gtksourceview3: syntax highlighting'
-'python2-dbus: open a new tab in an already running instance')
+depends=(python2-gobject gtksourceview3 hicolor-icon-theme desktop-file-utils)
+optdepends=('python2-dbus: open a new tab in an already running instance')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
 sha1sums=('9d2dfe0579241ff8f4e9681945fb9cd229947edc')
 



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

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 07:31:05
  Author: fyan
Revision: 115666

upgpkg: fcitx-mozc 1.15.1834.102-1

Modified:
  fcitx-mozc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-13 20:09:27 UTC (rev 115665)
+++ PKGBUILD2014-07-14 05:31:05 UTC (rev 115666)
@@ -5,16 +5,16 @@
 ## Mozc compile option
 _bldtype=Release
 
-_zipcoderel=201404
+_zipcoderel=201406
 _protobuf_ver=2.5.0
-_gyp_rev=1920
+_gyp_rev=1950
 _japanese_usage_dictionary_rev=10
-_revision=192
+_revision=271
 
 _pkgbase=mozc
 pkgname=fcitx-mozc
 pkgdesc=Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)
-pkgver=1.15.1785.102
+pkgver=1.15.1834.102
 _patchver=${pkgver}.1
 pkgrel=1
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 url=http://code.google.com/p/mozc/;
 license=('custom')
 depends=('qt4' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'gtest' 'curl' 'gtk2' 'mesa' 'svn')
+makedepends=('pkg-config' 'python2' 'gtest' 'curl' 'gtk2' 'mesa' 'svn' 'ninja')
 replaces=('mozc-fcitx')
 conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
 source=(mozc::svn+http://mozc.googlecode.com/svn/trunk/src#revision=$_revision
@@ -79,7 +79,6 @@
   _targets=server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc
 
   QTDIR=/usr GYP_DEFINES=document_dir=/usr/share/licenses/$pkgname python2 
build_mozc.py gyp
-  python2 build_mozc.py build_tools -c $_bldtype
   python2 build_mozc.py build -c $_bldtype $_targets
 
   # Extract license part of mozc
@@ -94,7 +93,7 @@
   install -d ${pkgdir}/usr/share/licenses/$pkgname/
   install -m 644 LICENSE data/installer/*.html 
${pkgdir}/usr/share/licenses/${pkgname}/
 
-  for mofile in out_linux/${_bldtype}/obj/gen/unix/fcitx/po/*.mo
+  for mofile in out_linux/${_bldtype}/gen/unix/fcitx/po/*.mo
   do
 filename=`basename $mofile`
 lang=${filename/.mo/}
@@ -121,8 +120,8 @@
 sha512sums=('SKIP'
 'SKIP'
 'SKIP'
-
'3a868b8f34c6651221db585f3338c9d5ac5c832781fa23f299d6dbe24c8ec1b506e8284c113256330d340fd63e770458ff9212953a290c588ca2f3dab1a706ec'
-
'84c4c05b0a54df6cd3dbee1f7194779cdac90c3bff46bc34f4e0bb7edbcbd030fced03766f3e93a76f3c23905666d90fa80e1c69d1cc7f4a3b526fad44a42f7a'
+
'bdfebfd2a72ea1e8bd5e29c7e065b4ed45c1e5bc6f43e8fbdbf454f24fdf7d44b4f10f8a8f0ca5b6e433bb87877e77a3998a6b25ad9f904f2529d0d2e0ae4b76'
+
'bbfd5a48426bfa4a1d438d6d640ceb76174aac4d503dc9de64e6cd1d72c5e081588a2893ba7a558444a38c0f6a132acb0e5a3aed61ad79744efb3aa9dbb6c523'
 
'5994b3669808b82fef5c860ecad36358c0767f84acac877e7bfcf722e59d972835a955714149bdd4158fbd1328a51d01397a563991d26475351ee72be48142ee'
-
'04d695e06f895d737cf161ac00ddc774ffbf0c91c0e8a827a14f23dbe83f4a609becd6b834557befb83b923ee1a72ba237b688ee46e6b17d953f41955d985301'
+
'7a5bcedc8c3174fb65bdfd2126abae0f7432bc5b10dfdce7cd9703bdeac4a5652cc3be59b2a6829184a1b4e0199bf9606db79c2cef7858c2ccc6a5a367b229c6'
 
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')



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

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 07:32:06
  Author: fyan
Revision: 115667

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

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

---+
 /PKGBUILD |  254 
 community-i686/PKGBUILD   |  128 --
 community-x86_64/PKGBUILD |  128 --
 3 files changed, 254 insertions(+), 256 deletions(-)

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

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

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 07:42:11
  Author: fyan
Revision: 115668

upgpkg: jenkins 1.572-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-14 05:32:06 UTC (rev 115667)
+++ PKGBUILD2014-07-14 05:42:11 UTC (rev 115668)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.571
+pkgver=1.572
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('1ee514ff487e535e0eed8dfae92ee390b3ef3766a666eeb1a906f861d770972494544653a16dafbcf1485e4575eec1cfff2140edaa083e39d21891ac1cc30351'
+sha512sums=('057370c4d974f0bf7a4d1660f2d112e87ce77169a856a888c2dabd3129ffb13db90f5dd650f340323de1c4b03af106f17257d60d06d1d7b9913be5544ce556f9'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'



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

2014-07-13 Thread Felix Yan
Date: Monday, July 14, 2014 @ 07:42:47
  Author: fyan
Revision: 115669

archrelease: copy trunk to community-any

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

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

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

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

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