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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 08:18:27
  Author: seblu
Revision: 239981

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

Added:
  qemu/repos/testing-i686/
  qemu/repos/testing-i686/65-kvm.rules
(from rev 239980, qemu/trunk/65-kvm.rules)
  qemu/repos/testing-i686/CVE-2015-3456.patch
(from rev 239980, qemu/trunk/CVE-2015-3456.patch)
  qemu/repos/testing-i686/PKGBUILD
(from rev 239980, qemu/trunk/PKGBUILD)
  qemu/repos/testing-i686/qemu.install
(from rev 239980, qemu/trunk/qemu.install)
  qemu/repos/testing-x86_64/
  qemu/repos/testing-x86_64/65-kvm.rules
(from rev 239980, qemu/trunk/65-kvm.rules)
  qemu/repos/testing-x86_64/CVE-2015-3456.patch
(from rev 239980, qemu/trunk/CVE-2015-3456.patch)
  qemu/repos/testing-x86_64/PKGBUILD
(from rev 239980, qemu/trunk/PKGBUILD)
  qemu/repos/testing-x86_64/qemu.install
(from rev 239980, qemu/trunk/qemu.install)

+
 testing-i686/65-kvm.rules  |2 
 testing-i686/CVE-2015-3456.patch   |   84 +
 testing-i686/PKGBUILD  |  100 +++
 testing-i686/qemu.install  |   19 ++
 testing-x86_64/65-kvm.rules|2 
 testing-x86_64/CVE-2015-3456.patch |   84 +
 testing-x86_64/PKGBUILD|  100 +++
 testing-x86_64/qemu.install|   19 ++
 8 files changed, 410 insertions(+)

Copied: qemu/repos/testing-i686/65-kvm.rules (from rev 239980, 
qemu/trunk/65-kvm.rules)
===
--- testing-i686/65-kvm.rules   (rev 0)
+++ testing-i686/65-kvm.rules   2015-06-01 06:18:27 UTC (rev 239981)
@@ -0,0 +1,2 @@
+KERNEL==kvm, GROUP=kvm, MODE=0660
+KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Copied: qemu/repos/testing-i686/CVE-2015-3456.patch (from rev 239980, 
qemu/trunk/CVE-2015-3456.patch)
===
--- testing-i686/CVE-2015-3456.patch(rev 0)
+++ testing-i686/CVE-2015-3456.patch2015-06-01 06:18:27 UTC (rev 239981)
@@ -0,0 +1,84 @@
+From e907746266721f305d67bc0718795fedee2e824c Mon Sep 17 00:00:00 2001
+From: Petr Matousek pmato...@redhat.com
+Date: Wed, 6 May 2015 09:48:59 +0200
+Subject: [PATCH] fdc: force the fifo access to be in bounds of the allocated 
buffer
+
+During processing of certain commands such as FD_CMD_READ_ID and
+FD_CMD_DRIVE_SPECIFICATION_COMMAND the fifo memory access could
+get out of bounds leading to memory corruption with values coming
+from the guest.
+
+Fix this by making sure that the index is always bounded by the
+allocated memory.
+
+This is CVE-2015-3456.
+
+Signed-off-by: Petr Matousek pmato...@redhat.com
+Reviewed-by: John Snow js...@redhat.com
+Signed-off-by: John Snow js...@redhat.com
+---
+ hw/block/fdc.c |   17 +++--
+ 1 files changed, 11 insertions(+), 6 deletions(-)
+
+diff --git a/hw/block/fdc.c b/hw/block/fdc.c
+index f72a392..d8a8edd 100644
+--- a/hw/block/fdc.c
 b/hw/block/fdc.c
+@@ -1497,7 +1497,7 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ {
+ FDrive *cur_drv;
+ uint32_t retval = 0;
+-int pos;
++uint32_t pos;
+ 
+ cur_drv = get_cur_drv(fdctrl);
+ fdctrl-dsr = ~FD_DSR_PWRDOWN;
+@@ -1506,8 +1506,8 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ return 0;
+ }
+ pos = fdctrl-data_pos;
++pos %= FD_SECTOR_LEN;
+ if (fdctrl-msr  FD_MSR_NONDMA) {
+-pos %= FD_SECTOR_LEN;
+ if (pos == 0) {
+ if (fdctrl-data_pos != 0)
+ if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
+@@ -1852,10 +1852,13 @@ static void fdctrl_handle_option(FDCtrl *fdctrl, int 
direction)
+ static void fdctrl_handle_drive_specification_command(FDCtrl *fdctrl, int 
direction)
+ {
+ FDrive *cur_drv = get_cur_drv(fdctrl);
++uint32_t pos;
+ 
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x80) {
++pos = fdctrl-data_pos - 1;
++pos %= FD_SECTOR_LEN;
++if (fdctrl-fifo[pos]  0x80) {
+ /* Command parameters done */
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x40) {
++if (fdctrl-fifo[pos]  0x40) {
+ fdctrl-fifo[0] = fdctrl-fifo[1];
+ fdctrl-fifo[2] = 0;
+ fdctrl-fifo[3] = 0;
+@@ -1955,7 +1958,7 @@ static uint8_t command_to_handler[256];
+ static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t value)
+ {
+ FDrive *cur_drv;
+-int pos;
++uint32_t pos;
+ 
+ /* Reset mode */
+ if (!(fdctrl-dor  FD_DOR_nRESET)) {
+@@ -2004,7 +2007,9 @@ static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t 
value)
+ }
+ 
+ FLOPPY_DPRINTF(%s: %02x\n, __func__, value);
+-fdctrl-fifo[fdctrl-data_pos++] = value;
++pos = fdctrl-data_pos++;
++pos %= FD_SECTOR_LEN;
++fdctrl-fifo[pos] = value;
+ if (fdctrl-data_pos == 

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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 08:18:07
  Author: seblu
Revision: 239980

upgpkg: qemu 2.3.0-3

- Add ceph/rbd support; 
https://lists.archlinux.org/pipermail/arch-dev-public/2015-May/027182.html

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 03:21:25 UTC (rev 239979)
+++ PKGBUILD2015-06-01 06:18:07 UTC (rev 239980)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=('qemu' 'libcacard')
 pkgver=2.3.0
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
 url=http://wiki.qemu.org/Index.html;
@@ -10,7 +10,7 @@
  'gnutls=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
  'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
  'libiscsi' 'libcacard' 'spice' 'spice-protocol' 'python2'
- 'usbredir')
+ 'usbredir' 'ceph')
 options=(!strip)
 source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
 CVE-2015-3456.patch
@@ -43,7 +43,7 @@
   depends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
  'gnutls=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
  'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
- 'libiscsi' 'libcacard' 'spice' 'usbredir' 'libssh2=1.5.0')
+ 'libiscsi' 'libcacard' 'spice' 'usbredir' 'libssh2=1.5.0' 'ceph')
   backup=('etc/qemu/target-x86_64.conf')
   replaces=('qemu-kvm')
   optdepends=('samba: for SMB Server support')


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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 08:29:52
  Author: seblu
Revision: 239982

upgpkg: dbus 1.8.18-1

Modified:
  dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 06:18:27 UTC (rev 239981)
+++ PKGBUILD2015-06-01 06:29:52 UTC (rev 239982)
@@ -5,8 +5,8 @@
 
 pkgbase=dbus
 pkgname=('dbus' 'libdbus')
-pkgver=1.8.16
-pkgrel=2
+pkgver=1.8.18
+pkgrel=1
 pkgdesc=Freedesktop.org message bus system
 url=http://www.freedesktop.org/Software/dbus;
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
 source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}
 30-dbus)
-md5sums=('020824a38850501e7d6ba8307a7c5ac3'
+md5sums=('83e607e9ccb1c921d5b6bbea2376a36c'
  'SKIP'
  '6683a05bd749929ef9442816c22c3268')
 validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
simon.mcvit...@collabora.co.uk


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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 08:30:05
  Author: seblu
Revision: 239983

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

Added:
  dbus/repos/testing-i686/
  dbus/repos/testing-i686/30-dbus
(from rev 239982, dbus/trunk/30-dbus)
  dbus/repos/testing-i686/PKGBUILD
(from rev 239982, dbus/trunk/PKGBUILD)
  dbus/repos/testing-x86_64/
  dbus/repos/testing-x86_64/30-dbus
(from rev 239982, dbus/trunk/30-dbus)
  dbus/repos/testing-x86_64/PKGBUILD
(from rev 239982, dbus/trunk/PKGBUILD)

-+
 testing-i686/30-dbus|6 
 testing-i686/PKGBUILD   |   66 ++
 testing-x86_64/30-dbus  |6 
 testing-x86_64/PKGBUILD |   66 ++
 4 files changed, 144 insertions(+)

Copied: dbus/repos/testing-i686/30-dbus (from rev 239982, dbus/trunk/30-dbus)
===
--- testing-i686/30-dbus(rev 0)
+++ testing-i686/30-dbus2015-06-01 06:30:05 UTC (rev 239983)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# launches a session dbus instance
+if [ -z ${DBUS_SESSION_BUS_ADDRESS-} ]  type dbus-launch /dev/null; then
+  eval $(dbus-launch --sh-syntax --exit-with-session)
+fi

Copied: dbus/repos/testing-i686/PKGBUILD (from rev 239982, dbus/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-01 06:30:05 UTC (rev 239983)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Link Dupont l...@subpop.net
+
+pkgbase=dbus
+pkgname=('dbus' 'libdbus')
+pkgver=1.8.18
+pkgrel=1
+pkgdesc=Freedesktop.org message bus system
+url=http://www.freedesktop.org/Software/dbus;
+arch=(i686 x86_64)
+license=('GPL' 'custom')
+makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}
+30-dbus)
+md5sums=('83e607e9ccb1c921d5b6bbea2376a36c'
+ 'SKIP'
+ '6683a05bd749929ef9442816c22c3268')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
simon.mcvit...@collabora.co.uk
+
+build() {
+  cd dbus-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
+  --with-system-pid-file=/run/dbus/pid \
+  --with-system-socket=/run/dbus/system_bus_socket \
+  --with-console-auth-dir=/run/console/ \
+  --enable-inotify --disable-dnotify \
+  --disable-verbose-mode --disable-static \
+  --disable-tests --disable-asserts \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --enable-systemd
+  make
+}
+
+package_dbus(){
+  depends=('libdbus' 'expat')
+  optdepends=('libx11: dbus-launch support')
+  provides=('dbus-core')
+  conflicts=('dbus-core')
+  replaces=('dbus-core')
+
+  cd dbus-$pkgver
+
+  # Disable installation of libdbus
+  sed -i -e 's/^SUBDIRS = dbus/SUBDIRS =/' Makefile
+
+  make DESTDIR=$pkgdir install
+
+  rm -rf ${pkgdir}/var/run
+  rm -rf ${pkgdir}/usr/lib/pkgconfig
+
+  install -Dm755 ../30-dbus $pkgdir/etc/X11/xinit/xinitrc.d/30-dbus.sh
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/dbus/COPYING
+}
+
+package_libdbus(){
+  pkgdesc=DBus library
+  depends=('glibc')
+
+  cd dbus-$pkgver
+  make DESTDIR=$pkgdir -C dbus install
+  make DESTDIR=$pkgdir install-data-am
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/libdbus/COPYING
+}

Copied: dbus/repos/testing-x86_64/30-dbus (from rev 239982, dbus/trunk/30-dbus)
===
--- testing-x86_64/30-dbus  (rev 0)
+++ testing-x86_64/30-dbus  2015-06-01 06:30:05 UTC (rev 239983)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# launches a session dbus instance
+if [ -z ${DBUS_SESSION_BUS_ADDRESS-} ]  type dbus-launch /dev/null; then
+  eval $(dbus-launch --sh-syntax --exit-with-session)
+fi

Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 239982, 
dbus/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-01 06:30:05 UTC (rev 239983)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Link Dupont l...@subpop.net
+
+pkgbase=dbus
+pkgname=('dbus' 'libdbus')
+pkgver=1.8.18
+pkgrel=1
+pkgdesc=Freedesktop.org message bus system
+url=http://www.freedesktop.org/Software/dbus;
+arch=(i686 x86_64)
+license=('GPL' 'custom')
+makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}
+30-dbus)
+md5sums=('83e607e9ccb1c921d5b6bbea2376a36c'
+ 'SKIP'
+ 

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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 08:38:37
  Author: seblu
Revision: 134441

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

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

-+
 community-testing-i686/PKGBUILD |  123 ++
 community-testing-i686/libvirt.install  |   15 ++
 community-testing-i686/libvirt.tmpfiles.d   |4 
 community-testing-i686/libvirtd-guests.conf.d   |9 +
 community-testing-i686/libvirtd.conf.d  |1 
 community-testing-x86_64/PKGBUILD   |  123 ++
 community-testing-x86_64/libvirt.install|   15 ++
 community-testing-x86_64/libvirt.tmpfiles.d |4 
 community-testing-x86_64/libvirtd-guests.conf.d |9 +
 community-testing-x86_64/libvirtd.conf.d|1 
 10 files changed, 304 insertions(+)

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

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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 08:38:15
  Author: seblu
Revision: 134440

upgpkg: libvirt 1.2.16-1

- bump upstream version
- Add support for ceph; 
https://lists.archlinux.org/pipermail/arch-dev-public/2015-May/027182.html

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 04:23:51 UTC (rev 134439)
+++ PKGBUILD2015-06-01 06:38:15 UTC (rev 134440)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Wiersma archaur at jonw dot org
 
 pkgname=libvirt
-pkgver=1.2.15
+pkgver=1.2.16
 pkgrel=1
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
 'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 
'libpcap'
 'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
-'iproute2' 'libnl' 'libx11' 'numactl' 'gettext')
+'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph')
# 'audit'
 makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
 'libiscsi' 'open-iscsi'
@@ -64,7 +64,7 @@
libvirtd.conf.d
libvirtd-guests.conf.d
libvirt.tmpfiles.d)
-md5sums=('08c2ea825d076ee67b1bbc600c220b97'
+md5sums=('015b0aa29c7868916f7b32c9ee70ef60'
  '5e31269067dbd12ca871234450bb66bb'
  '384fff96c6248d4f020f6fa66c32b357'
  '020971887442ebbf1b6949e031c8dd3f')


[arch-commits] Commit in backuppc/trunk (4 files)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:07:25
  Author: seblu
Revision: 134442

upgpkg: backuppc 3.3.1-2

- move to systemd-sysusers

Added:
  backuppc/trunk/backuppc.sysusers
  backuppc/trunk/backuppc.tmpfiles
Modified:
  backuppc/trunk/PKGBUILD
  backuppc/trunk/backuppc.install

---+
 PKGBUILD  |   37 ++---
 backuppc.install  |   14 +++---
 backuppc.sysusers |1 +
 backuppc.tmpfiles |1 +
 4 files changed, 23 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 06:38:37 UTC (rev 134441)
+++ PKGBUILD2015-06-01 07:07:25 UTC (rev 134442)
@@ -3,28 +3,26 @@
 
 pkgname=backuppc
 pkgver=3.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Enterprise-grade system for backing up Linux, Windows and MacOS PCs'
 url='http://backuppc.sourceforge.net/'
 license=('GPL2')
 arch=('any')
-depends=(
-  'openssh'
-  'par2cmdline'
-  'perl-archive-zip'
-  'perl-file-listing'
-  'perl-time-modules'
-  'perl-xml-rss'
-  'smbclient'
-)
-optdepends=(
-  'rsync: used by rsync transfert method'
-  'perl-file-rsyncp: used by rsync transfert method'
-  'perl-io-dirent'
-)
+depends=('openssh'
+ 'par2cmdline'
+ 'perl-archive-zip'
+ 'perl-file-listing'
+ 'perl-time-modules'
+ 'perl-xml-rss'
+ 'smbclient')
+optdepends=('rsync: used by rsync transfert method'
+'perl-file-rsyncp: used by rsync transfert method'
+'perl-io-dirent')
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/BackupPC-$pkgver.tar.gz;
 $pkgname.service
 $pkgname.socket
+$pkgname.sysusers
+$pkgname.tmpfiles
 $pkgname.profile.sh
 $pkgname.profile.csh
 $pkgname.httpd
@@ -32,8 +30,7 @@
 '02-move-socket-into-run.patch'
 '03-fix-FS#32642.patch'
 '04-fix-cve-2011-4923.patch'
-'05-fix-edit-menu-ordering.patch'
-)
+'05-fix-edit-menu-ordering.patch')
 install=$pkgname.install
 backup=(etc/$pkgname/config.pl
 etc/$pkgname/hosts
@@ -42,6 +39,8 @@
 md5sums=('5efdcdd48e9e0d4ef7a706902d1f8b3d'
  'ffb8827bbefcf5f0cd959d08fdf64fc1'
  '88344dbc5f8777e04fc8e0d250a2db82'
+ 'd90840387358e5dd230cace0b2d6b53a'
+ 'bda3ec3f4c75521c6869279eb16af2f8'
  '67a939aa63740c52d12bbdca72d37891'
  'ef09e4dae5b4197998f5c3a74e0ec86d'
  '99e641c4f3ba4fbcc53e046ce7290ad5'
@@ -80,8 +79,8 @@
   # systemd
   install -D -m 644 $pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
   install -D -m 644 $pkgname.socket 
$pkgdir/usr/lib/systemd/system/$pkgname.socket
-  install -D -m 644 /dev/null $pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
-  echo 'd /run/backuppc 0750 backuppc backuppc'  
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
+  install -D -m 644 $pkgname.sysusers 
$pkgdir/usr/lib/sysusers.d/$pkgname.conf
+  install -D -m 644 $pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
   # install shell profiles
   install -D -m 755 $pkgname.profile.sh $pkgdir/etc/profile.d/$pkgname.sh
   install -D -m 755 $pkgname.profile.csh $pkgdir/etc/profile.d/$pkgname.csh

Modified: backuppc.install
===
--- backuppc.install2015-06-01 06:38:37 UTC (rev 134441)
+++ backuppc.install2015-06-01 07:07:25 UTC (rev 134442)
@@ -2,10 +2,9 @@
 
 # arg 1:  the new package version
 post_install() {
-  getent group backuppc /dev/null || groupadd -g 126 backuppc
-  getent passwd backuppc /dev/null || useradd -d /var/lib/backuppc -u 126 -g 
126 backuppc
+  systemd-sysusers backuppc.conf
   systemd-tmpfiles --create backuppc.conf
-  true
+  :
 }
 
 # arg 1:  the new package version
@@ -24,14 +23,7 @@
   fi
   # ensure /run/backuppc exists
   systemd-tmpfiles --create backuppc.conf
-  true
+  :
 }
 
-# arg 1:  the old package version
-post_remove() {
-  userdel -f backuppc /dev/null
-  groupdel backuppc /dev/null
-  true
-}
-
 # vim:set ts=2 sw=2 ft=sh et:

Added: backuppc.sysusers
===
--- backuppc.sysusers   (rev 0)
+++ backuppc.sysusers   2015-06-01 07:07:25 UTC (rev 134442)
@@ -0,0 +1 @@
+u backuppc 126 - /var/lib/backuppc

Added: backuppc.tmpfiles
===
--- backuppc.tmpfiles   (rev 0)
+++ backuppc.tmpfiles   2015-06-01 07:07:25 UTC (rev 134442)
@@ -0,0 +1 @@
+d /run/backuppc 0750 backuppc backuppc


[arch-commits] Commit in backuppc/repos/community-any (26 files)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:07:53
  Author: seblu
Revision: 134443

archrelease: copy trunk to community-any

Added:
  backuppc/repos/community-any/01-move-socket-into-run.patch
(from rev 134442, backuppc/trunk/01-move-socket-into-run.patch)
  backuppc/repos/community-any/02-move-socket-into-run.patch
(from rev 134442, backuppc/trunk/02-move-socket-into-run.patch)
  backuppc/repos/community-any/03-fix-FS#32642.patch
(from rev 134442, backuppc/trunk/03-fix-FS#32642.patch)
  backuppc/repos/community-any/04-fix-cve-2011-4923.patch
(from rev 134442, backuppc/trunk/04-fix-cve-2011-4923.patch)
  backuppc/repos/community-any/05-fix-edit-menu-ordering.patch
(from rev 134442, backuppc/trunk/05-fix-edit-menu-ordering.patch)
  backuppc/repos/community-any/PKGBUILD
(from rev 134442, backuppc/trunk/PKGBUILD)
  backuppc/repos/community-any/backuppc.httpd
(from rev 134442, backuppc/trunk/backuppc.httpd)
  backuppc/repos/community-any/backuppc.install
(from rev 134442, backuppc/trunk/backuppc.install)
  backuppc/repos/community-any/backuppc.profile.csh
(from rev 134442, backuppc/trunk/backuppc.profile.csh)
  backuppc/repos/community-any/backuppc.profile.sh
(from rev 134442, backuppc/trunk/backuppc.profile.sh)
  backuppc/repos/community-any/backuppc.service
(from rev 134442, backuppc/trunk/backuppc.service)
  backuppc/repos/community-any/backuppc.socket
(from rev 134442, backuppc/trunk/backuppc.socket)
  backuppc/repos/community-any/backuppc.sysusers
(from rev 134442, backuppc/trunk/backuppc.sysusers)
  backuppc/repos/community-any/backuppc.tmpfiles
(from rev 134442, backuppc/trunk/backuppc.tmpfiles)
Deleted:
  backuppc/repos/community-any/01-move-socket-into-run.patch
  backuppc/repos/community-any/02-move-socket-into-run.patch
  backuppc/repos/community-any/03-fix-FS#32642.patch
  backuppc/repos/community-any/04-fix-cve-2011-4923.patch
  backuppc/repos/community-any/05-fix-edit-menu-ordering.patch
  backuppc/repos/community-any/PKGBUILD
  backuppc/repos/community-any/backuppc.httpd
  backuppc/repos/community-any/backuppc.install
  backuppc/repos/community-any/backuppc.profile.csh
  backuppc/repos/community-any/backuppc.profile.sh
  backuppc/repos/community-any/backuppc.service
  backuppc/repos/community-any/backuppc.socket

-+
 01-move-socket-into-run.patch   |  110 ++--
 02-move-socket-into-run.patch   |   86 
 03-fix-FS#32642.patch   |   24 ++--
 04-fix-cve-2011-4923.patch  |   28 ++---
 05-fix-edit-menu-ordering.patch |   58 +-
 PKGBUILD|  203 ++
 backuppc.httpd  |   42 +++
 backuppc.install|   66 +---
 backuppc.profile.csh|2 
 backuppc.profile.sh |6 -
 backuppc.service|   22 ++--
 backuppc.socket |   16 +-
 backuppc.sysusers   |1 
 backuppc.tmpfiles   |1 
 14 files changed, 329 insertions(+), 336 deletions(-)

Deleted: 01-move-socket-into-run.patch
===
--- 01-move-socket-into-run.patch   2015-06-01 07:07:25 UTC (rev 134442)
+++ 01-move-socket-into-run.patch   2015-06-01 07:07:53 UTC (rev 134443)
@@ -1,55 +0,0 @@
-From 1cba5f001533ec6d0a728847bdc4fc57e5fed0a3 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= se...@seblu.net
-Date: Tue, 16 Apr 2013 22:39:15 +0200
-Subject: [PATCH] Move pid file into /run
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This is not a clean patch but it doesn't targeted to upstream inclusion
-
-Signed-off-by: Sébastien Luttringer se...@seblu.net

- bin/BackupPC | 10 +-
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/bin/BackupPC b/bin/BackupPC
-index c6fc7d2..d9f3dbc 100755
 a/bin/BackupPC
-+++ b/bin/BackupPC
-@@ -363,11 +363,11 @@ sub Main_Initialize
- # Write out our initial status and save our PID
- #
- StatusWrite();
--unlink($LogDir/BackupPC.pid);
--if ( open(PID, , $LogDir/BackupPC.pid) ) {
-+unlink(/run/backuppc/backuppc.pid);
-+if ( open(PID, , /run/backuppc/backuppc.pid) ) {
- print(PID $$);
- close(PID);
--chmod(0444, $LogDir/BackupPC.pid);
-+chmod(0444, /run/backuppc/backuppc.pid);
- }
- 
- #
-@@ -1846,7 +1846,7 @@ sub catch_signal
- close(LOG);
- LogFileOpen();
- print(LOG Fatal error: unhandled signal $SigName\n);
--unlink($LogDir/BackupPC.pid);
-+unlink(/run/backuppc/backuppc.pid);
- confess(Got new signal $SigName... quitting\n);
- } else {
-   $SigName = shift;
-@@ -1968,7 +1968,7 @@ sub ServerShutdown
- }
- delete($Info{pid});
- StatusWrite();
--unlink($LogDir/BackupPC.pid);
-+unlink(/run/backuppc/backuppc.pid);
-   

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

2015-06-01 Thread Andrzej Giniewicz
Date: Monday, June 1, 2015 @ 14:44:39
  Author: aginiewicz
Revision: 134464

archrelease: copy trunk to community-any

Added:
  python-oauth2client/repos/community-any/PKGBUILD
(from rev 134463, python-oauth2client/trunk/PKGBUILD)
Deleted:
  python-oauth2client/repos/community-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 12:44:31 UTC (rev 134463)
+++ PKGBUILD2015-06-01 12:44:39 UTC (rev 134464)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Atlanis emall...@archlinux.us
-
-pkgbase=python-oauth2client
-pkgname=('python2-oauth2client' 'python-oauth2client')
-pkgver=1.4.9
-pkgrel=1
-pkgdesc=A client library for OAuth 2.0
-arch=('any')
-url=https://github.com/google/oauth2client;
-license=('Apache')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-httplib2'
- 'python-pyasn1' 'python-pyasn1-modules' 'python-rsa'
- 'python-six' 'python2-httplib2' 'python2-pyasn1'
- 'python2-pyasn1-modules' 'python2-rsa' 'python2-six')
-source=(https://pypi.python.org/packages/source/o/oauth2client/oauth2client-${pkgver}.tar.gz;)
-md5sums=('b266d01e281a473a18c45e5f3b2f84db')
-
-prepare() {
-  cd $srcdir
-  cp -a oauth2client-${pkgver} oauth2client-py2-${pkgver}
-  cd oauth2client-py2-${pkgver}
-
-  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
-  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg Building Python2
-  cd $srcdir/oauth2client-py2-${pkgver}
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/oauth2client-${pkgver}
-  python setup.py build
-}
-
-package_python2-oauth2client() {
-  depends=('python2-httplib2' 'python2-pyasn1=0.1.7' 
'python2-pyasn1-modules=0.0.5' 'python2-rsa=3.1.4' 'python2-six')
-  optdepends=('python2-gflags: for oauth2client.tools.run function')
-
-  cd $srcdir/oauth2client-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-}
-
-package_python-oauth2client() {
-  depends=('python-httplib2' 'python-pyasn1=0.1.7' 
'python-pyasn1-modules=0.0.5' 'python-rsa=3.1.4' 'python-six')
-
-  cd $srcdir/oauth2client-${pkgver}
-
-  python setup.py install --skip-build --root=$pkgdir --optimize=1
-}
-

Copied: python-oauth2client/repos/community-any/PKGBUILD (from rev 134463, 
python-oauth2client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 12:44:39 UTC (rev 134464)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Atlanis emall...@archlinux.us
+
+pkgbase=python-oauth2client
+pkgname=('python2-oauth2client' 'python-oauth2client')
+pkgver=1.4.11
+pkgrel=1
+pkgdesc=A client library for OAuth 2.0
+arch=('any')
+url=https://github.com/google/oauth2client;
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools' 'python-httplib2'
+ 'python-pyasn1' 'python-pyasn1-modules' 'python-rsa'
+ 'python-six' 'python2-httplib2' 'python2-pyasn1'
+ 'python2-pyasn1-modules' 'python2-rsa' 'python2-six')
+source=(https://pypi.python.org/packages/source/o/oauth2client/oauth2client-${pkgver}.tar.gz;)
+md5sums=('ace6b6e4c9cd17fd611d9984d6746c7b')
+
+prepare() {
+  cd $srcdir
+  cp -a oauth2client-${pkgver} oauth2client-py2-${pkgver}
+  cd oauth2client-py2-${pkgver}
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/oauth2client-py2-${pkgver}
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/oauth2client-${pkgver}
+  python setup.py build
+}
+
+package_python2-oauth2client() {
+  depends=('python2-httplib2' 'python2-pyasn1=0.1.7' 
'python2-pyasn1-modules=0.0.5' 'python2-rsa=3.1.4' 'python2-six')
+  optdepends=('python2-gflags: for oauth2client.tools.run function')
+
+  cd $srcdir/oauth2client-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
+}
+
+package_python-oauth2client() {
+  depends=('python-httplib2' 'python-pyasn1=0.1.7' 
'python-pyasn1-modules=0.0.5' 'python-rsa=3.1.4' 'python-six')
+
+  cd $srcdir/oauth2client-${pkgver}
+
+  python setup.py install --skip-build --root=$pkgdir --optimize=1
+}
+


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

2015-06-01 Thread Andrzej Giniewicz
Date: Monday, June 1, 2015 @ 14:44:31
  Author: aginiewicz
Revision: 134463

upgpkg: python-oauth2client 1.4.11-1

python-oauth2client: new upstream release

Modified:
  python-oauth2client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 10:22:36 UTC (rev 134462)
+++ PKGBUILD2015-06-01 12:44:31 UTC (rev 134463)
@@ -4,7 +4,7 @@
 
 pkgbase=python-oauth2client
 pkgname=('python2-oauth2client' 'python-oauth2client')
-pkgver=1.4.9
+pkgver=1.4.11
 pkgrel=1
 pkgdesc=A client library for OAuth 2.0
 arch=('any')
@@ -15,7 +15,7 @@
  'python-six' 'python2-httplib2' 'python2-pyasn1'
  'python2-pyasn1-modules' 'python2-rsa' 'python2-six')
 
source=(https://pypi.python.org/packages/source/o/oauth2client/oauth2client-${pkgver}.tar.gz;)
-md5sums=('b266d01e281a473a18c45e5f3b2f84db')
+md5sums=('ace6b6e4c9cd17fd611d9984d6746c7b')
 
 prepare() {
   cd $srcdir


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

2015-06-01 Thread Andrzej Giniewicz
Date: Monday, June 1, 2015 @ 14:51:27
  Author: aginiewicz
Revision: 134467

upgpkg: python2-traitsui 4.5.1-1

python2-traitsui: new upstream release

Modified:
  python2-traitsui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 12:48:09 UTC (rev 134466)
+++ PKGBUILD2015-06-01 12:51:27 UTC (rev 134467)
@@ -2,8 +2,8 @@
 # Maintainer: Andrzej Giniewicz ggi...@gmail.com
 
 pkgname=python2-traitsui
-pkgver=4.4.0
-pkgrel=2
+pkgver=4.5.1
+pkgrel=1
 pkgdesc=Traits-capable user interfaces
 arch=('any')
 url=https://github.com/enthought/traitsui;
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 
 
source=($pkgname-$pkgver.tar.gz::https://github.com/enthought/traitsui/archive/${pkgver}.tar.gz;
 wx28.patch)
-md5sums=('02b79ca4f2773394bd7c412d331c51d2'
+md5sums=('4d60037fbe30b0f67ae2826710968a4d'
  '0baa7f7c9620871b5e472d033181db4d')
 
 build() {


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

2015-06-01 Thread Andrzej Giniewicz
Date: Monday, June 1, 2015 @ 14:51:30
  Author: aginiewicz
Revision: 134468

archrelease: copy trunk to community-any

Added:
  python2-traitsui/repos/community-any/PKGBUILD
(from rev 134467, python2-traitsui/trunk/PKGBUILD)
  python2-traitsui/repos/community-any/wx28.patch
(from rev 134467, python2-traitsui/trunk/wx28.patch)
Deleted:
  python2-traitsui/repos/community-any/PKGBUILD
  python2-traitsui/repos/community-any/wx28.patch

+
 PKGBUILD   |   74 +--
 wx28.patch |   24 +--
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 12:51:27 UTC (rev 134467)
+++ PKGBUILD2015-06-01 12:51:30 UTC (rev 134468)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-
-pkgname=python2-traitsui
-pkgver=4.4.0
-pkgrel=2
-pkgdesc=Traits-capable user interfaces
-arch=('any')
-url=https://github.com/enthought/traitsui;
-license=('BSD')
-depends=('python2-pyface')
-makedepends=('python2-setuptools')
-options=(!emptydirs)
-
-source=($pkgname-$pkgver.tar.gz::https://github.com/enthought/traitsui/archive/${pkgver}.tar.gz;
 wx28.patch)
-md5sums=('02b79ca4f2773394bd7c412d331c51d2'
- '0baa7f7c9620871b5e472d033181db4d')
-
-build() {
-  cd $srcdir/traitsui-$pkgver
-
-  # force selection of wxpython 2.8
-  # (see https://github.com/enthought/pyface/issues/96)
-  sed -e s/^\(.*\)import wx$/\1import 
wxversion\n\1wxversion.select(\2.8\)\n\1import wx/g -i $(find . -name '*.py')
-  patch -p0  ../wx28.patch
-
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/traitsui-$pkgver
-
-  python2 setup.py install --root=$pkgdir/ --optimize=1
-
-  install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python2-traitsui/repos/community-any/PKGBUILD (from rev 134467, 
python2-traitsui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 12:51:30 UTC (rev 134468)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+
+pkgname=python2-traitsui
+pkgver=4.5.1
+pkgrel=1
+pkgdesc=Traits-capable user interfaces
+arch=('any')
+url=https://github.com/enthought/traitsui;
+license=('BSD')
+depends=('python2-pyface')
+makedepends=('python2-setuptools')
+options=(!emptydirs)
+
+source=($pkgname-$pkgver.tar.gz::https://github.com/enthought/traitsui/archive/${pkgver}.tar.gz;
 wx28.patch)
+md5sums=('4d60037fbe30b0f67ae2826710968a4d'
+ '0baa7f7c9620871b5e472d033181db4d')
+
+build() {
+  cd $srcdir/traitsui-$pkgver
+
+  # force selection of wxpython 2.8
+  # (see https://github.com/enthought/pyface/issues/96)
+  sed -e s/^\(.*\)import wx$/\1import 
wxversion\n\1wxversion.select(\2.8\)\n\1import wx/g -i $(find . -name '*.py')
+  patch -p0  ../wx28.patch
+
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/traitsui-$pkgver
+
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+
+  install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: wx28.patch
===
--- wx28.patch  2015-06-01 12:51:27 UTC (rev 134467)
+++ wx28.patch  2015-06-01 12:51:30 UTC (rev 134468)
@@ -1,12 +0,0 @@
 traitsui/toolkit.py.orig   2015-03-21 11:54:29.883107683 +0100
-+++ traitsui/toolkit.py2015-03-21 11:56:52.905373040 +0100
-@@ -48,6 +48,9 @@
- 
#---
- 
- def _import_toolkit ( name ):
-+if name == wx:
-+import wxversion
-+wxversion.select(2.8)
- return __import__( name, globals=globals(), level=1 ).toolkit
- 
- 

Copied: python2-traitsui/repos/community-any/wx28.patch (from rev 134467, 
python2-traitsui/trunk/wx28.patch)
===
--- wx28.patch  (rev 0)
+++ wx28.patch  2015-06-01 12:51:30 UTC (rev 134468)
@@ -0,0 +1,12 @@
+--- traitsui/toolkit.py.orig   2015-03-21 11:54:29.883107683 +0100
 traitsui/toolkit.py2015-03-21 11:56:52.905373040 +0100
+@@ -48,6 +48,9 @@
+ 
#---
+ 
+ def _import_toolkit ( name ):
++if name == wx:
++import wxversion
++wxversion.select(2.8)
+ return __import__( name, globals=globals(), level=1 ).toolkit
+ 
+ 


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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 14:59:49
  Author: spupykin
Revision: 134471

upgpkg: phpmyadmin 4.4.8-1

upd

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 12:59:43 UTC (rev 134470)
+++ PKGBUILD2015-06-01 12:59:49 UTC (rev 134471)
@@ -7,7 +7,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=4.4.7
+pkgver=4.4.8
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('2716b1d8b04ae380d97eeba4eaf0')
+md5sums=('28cd25689eb71541bfda4c18bb3ab1b6')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin


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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 14:59:43
  Author: spupykin
Revision: 134470

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 12:59:22 UTC (rev 134469)
+++ community-i686/PKGBUILD 2015-06-01 12:59:43 UTC (rev 134470)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: farid farid at archlinuc-br.org
-# Contributor: Archie mym...@gmail.com
-
-pkgbase=gmic
-pkgname=(gmic gimp-plugin-gmic zart)
-pkgver=1.6.2.0
-pkgrel=3
-arch=(i686 x86_64)
-url=http://gmic.sourceforge.net;
-license=(custom:CeCILL)
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;)
-md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
-
-prepare() {
-  cd ${srcdir}/gmic-${pkgver}
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd ${srcdir}/gmic-${pkgver}
-  (cd zart  qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc=GREYC's Magic Image Converter: image processing framework
-  depends=(opencv fftw libtiff libjpeg libpng openexr libx11)
-  replaces=(greycstoration)
-
-  cd ${srcdir}/gmic-${pkgver}
-  make -C src install DESTDIR=$pkgdir USR=/usr
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -rf ${pkgdir}/usr/{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc=A GUI for G'MIC real-time manipulations on the output of a webcam
-  depends=(opencv fftw qt4)
-
-  cd ${srcdir}/gmic-${pkgver}
-  install -Dm755 zart/zart ${pkgdir}/usr/bin/zart
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc=Gimp plugin for the G'MIC image processing framework
-  depends=(opencv gimp fftw)
-  replaces=(gimp-plugin-greycstoration gimp-plugin-gmic4gimp)
-
-  cd ${srcdir}/gmic-${pkgver}
-  install -Dm755 src/gmic_gimp ${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 134469, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 12:59:43 UTC (rev 134470)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+# Contributor: farid farid at archlinuc-br.org
+# Contributor: Archie mym...@gmail.com
+
+pkgbase=gmic
+pkgname=(gmic gimp-plugin-gmic zart)
+pkgver=1.6.3.1
+pkgrel=1
+arch=(i686 x86_64)
+url=http://gmic.eu/;
+license=(custom:CeCILL)
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=(http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
+md5sums=('90c85c90953d928be0bf689403da553e')
+
+prepare() {
+  cd ${srcdir}/gmic-${pkgver}
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd ${srcdir}/gmic-${pkgver}
+  (cd zart  qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc=GREYC's Magic Image Converter: image processing framework
+  depends=(opencv fftw libtiff libjpeg libpng openexr libx11)
+  replaces=(greycstoration)
+
+  cd ${srcdir}/gmic-${pkgver}
+  make -C src install DESTDIR=$pkgdir USR=/usr
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -rf ${pkgdir}/usr/{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc=A GUI for G'MIC real-time manipulations on the output of a webcam
+  depends=(opencv fftw qt4)
+
+  cd ${srcdir}/gmic-${pkgver}
+  install -Dm755 zart/zart ${pkgdir}/usr/bin/zart
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc=Gimp plugin for the G'MIC image processing framework
+  depends=(opencv gimp fftw)
+  replaces=(gimp-plugin-greycstoration gimp-plugin-gmic4gimp)
+
+  cd ${srcdir}/gmic-${pkgver}
+  install -Dm755 src/gmic_gimp 

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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 14:59:58
  Author: spupykin
Revision: 134472

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 12:59:49 UTC (rev 134471)
+++ PKGBUILD2015-06-01 12:59:58 UTC (rev 134472)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-# Contributor: Simon Lackerbauer calypso at strpg.org
-
-pkgname=phpmyadmin
-pkgver=4.4.7
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('2716b1d8b04ae380d97eeba4eaf0')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
-  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
-  cd $_instdir
-
-  cp -ra $srcdir/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
-  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 134471, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 12:59:58 UTC (rev 134472)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Manolis Tzanidakis mano...@archlinux.org
+# Contributor: Simon Lackerbauer calypso at strpg.org
+
+pkgname=phpmyadmin
+pkgver=4.4.8
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url='http://www.phpmyadmin.net'
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
+backup=(etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+md5sums=('28cd25689eb71541bfda4c18bb3ab1b6')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
+  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
+  cd $_instdir
+
+  cp -ra $srcdir/phpMyAdmin-$pkgver-all-languages/* .
+
+  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
+  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
+}


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

2015-06-01 Thread Andrzej Giniewicz
Date: Monday, June 1, 2015 @ 14:48:09
  Author: aginiewicz
Revision: 134466

archrelease: copy trunk to community-any

Added:
  python-openpyxl/repos/community-any/LICENCE
(from rev 134465, python-openpyxl/trunk/LICENCE)
  python-openpyxl/repos/community-any/PKGBUILD
(from rev 134465, python-openpyxl/trunk/PKGBUILD)
Deleted:
  python-openpyxl/repos/community-any/LICENCE
  python-openpyxl/repos/community-any/PKGBUILD

--+
 LICENCE  |   70 +-
 PKGBUILD |  124 ++---
 2 files changed, 97 insertions(+), 97 deletions(-)

Deleted: LICENCE
===
--- LICENCE 2015-06-01 12:48:05 UTC (rev 134465)
+++ LICENCE 2015-06-01 12:48:09 UTC (rev 134466)
@@ -1,35 +0,0 @@
-This software is under the MIT Licence
-==
-
-Copyright (c) 2010 openpyxl
-
-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.
-
-Odict implementation in openpyxl/writer/odict.py uses the following licence:
-
-Copyright (c) 2001-2011 Python Software Foundation
-  2011 Raymond Hettinger
-License: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
- See http://www.opensource.org/licenses/Python-2.0 for full terms
-Note: backport changes by Raymond were originally distributed under MIT
-  license, but since the original license for Python is more
-  restrictive than MIT, code cannot be released under its terms and
-  still adheres to the limitations of Python license.
-

Copied: python-openpyxl/repos/community-any/LICENCE (from rev 134465, 
python-openpyxl/trunk/LICENCE)
===
--- LICENCE (rev 0)
+++ LICENCE 2015-06-01 12:48:09 UTC (rev 134466)
@@ -0,0 +1,35 @@
+This software is under the MIT Licence
+==
+
+Copyright (c) 2010 openpyxl
+
+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.
+
+Odict implementation in openpyxl/writer/odict.py uses the following licence:
+
+Copyright (c) 2001-2011 Python Software Foundation
+  2011 Raymond Hettinger
+License: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+ See http://www.opensource.org/licenses/Python-2.0 for full terms
+Note: backport changes by Raymond were originally distributed under MIT
+  license, but since the original license for Python is more
+  restrictive than MIT, code cannot be released under its terms and
+  still adheres to the limitations of Python license.
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 12:48:05 UTC (rev 134465)
+++ PKGBUILD2015-06-01 12:48:09 UTC (rev 134466)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Nishit Joseph (reachjlight at gmail dot com)
-# Contributor: Martin Corley martin.cor...@ed.ac.uk
-
-pkgbase=python-openpyxl

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

2015-06-01 Thread Andrzej Giniewicz
Date: Monday, June 1, 2015 @ 14:48:05
  Author: aginiewicz
Revision: 134465

upgpkg: python-openpyxl 2.2.3-1

python-openpyxl: new upstream release

Modified:
  python-openpyxl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 12:44:39 UTC (rev 134464)
+++ PKGBUILD2015-06-01 12:48:05 UTC (rev 134465)
@@ -5,7 +5,7 @@
 
 pkgbase=python-openpyxl
 pkgname=('python2-openpyxl' 'python-openpyxl')
-pkgver=2.2.2
+pkgver=2.2.3
 pkgrel=1
 pkgdesc=A Python library to read/write Excel 2007 xlsx/xlsm files
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python2-setuptools' 'python-setuptools' 'python-jdcal' 
'python2-jdcal' 'python-lxml' 'python2-lxml')
 
source=(https://pypi.python.org/packages/source/o/openpyxl/openpyxl-${pkgver}.tar.gz;
 LICENCE)
-md5sums=('94668360e4a9726b4d0a3c5884df802e'
+md5sums=('77dbe64a9a43a3bf4791871cf8fe62a2'
  'c8afe530744e932b892358e6eb5bea9b')
 
 prepare() {


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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 14:59:22
  Author: spupykin
Revision: 134469

upgpkg: gmic 1.6.3.1-1

upd

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 12:51:30 UTC (rev 134468)
+++ PKGBUILD2015-06-01 12:59:22 UTC (rev 134469)
@@ -6,14 +6,14 @@
 
 pkgbase=gmic
 pkgname=(gmic gimp-plugin-gmic zart)
-pkgver=1.6.2.0
-pkgrel=3
+pkgver=1.6.3.1
+pkgrel=1
 arch=(i686 x86_64)
-url=http://gmic.sourceforge.net;
+url=http://gmic.eu/;
 license=(custom:CeCILL)
 makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;)
-md5sums=('75c0c842ed6e1cd1de2999df7762f7d6')
+source=(http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
+md5sums=('90c85c90953d928be0bf689403da553e')
 
 prepare() {
   cd ${srcdir}/gmic-${pkgver}


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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:57:02
  Author: seblu
Revision: 239988

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

Added:
  arptables/repos/extra-i686/PKGBUILD
(from rev 239986, arptables/trunk/PKGBUILD)
  arptables/repos/extra-i686/arptables.service
(from rev 239986, arptables/trunk/arptables.service)
  arptables/repos/extra-i686/arptables.systemd
(from rev 239987, arptables/trunk/arptables.systemd)
  arptables/repos/extra-x86_64/PKGBUILD
(from rev 239987, arptables/trunk/PKGBUILD)
  arptables/repos/extra-x86_64/arptables.service
(from rev 239987, arptables/trunk/arptables.service)
  arptables/repos/extra-x86_64/arptables.systemd
(from rev 239987, arptables/trunk/arptables.systemd)
Deleted:
  arptables/repos/extra-i686/PKGBUILD
  arptables/repos/extra-i686/arptables.service
  arptables/repos/extra-i686/arptables.systemd
  arptables/repos/extra-x86_64/PKGBUILD
  arptables/repos/extra-x86_64/arptables.service
  arptables/repos/extra-x86_64/arptables.systemd

+
 /PKGBUILD  |   98 +++
 /arptables.service |   26 ++
 /arptables.systemd |   42 
 extra-i686/PKGBUILD|   49 ---
 extra-i686/arptables.service   |   11 
 extra-i686/arptables.systemd   |   21 
 extra-x86_64/PKGBUILD  |   49 ---
 extra-x86_64/arptables.service |   11 
 extra-x86_64/arptables.systemd |   21 
 9 files changed, 166 insertions(+), 162 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-01 07:56:50 UTC (rev 239987)
+++ extra-i686/PKGBUILD 2015-06-01 07:57:02 UTC (rev 239988)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Daniel Micay danielmi...@gmail.com
-# Contributor: Michal Soltys sol...@ziu.info
-
-pkgname=arptables
-pkgver=0.0.4
-pkgrel=2
-pkgdesc='ARP filtering utility'
-arch=('i686' 'x86_64')
-url='http://ebtables.sourceforge.net/'
-depends=('glibc' 'perl' 'bash')
-license=('GPL')
-backup=(etc/$pkgname.conf)
-source=(http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz;
-$pkgname.systemd
-$pkgname.service)
-md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
- 'e54342a833c52b2bc67e7985e8f8fdfd'
- 'b26771191e52905d8aea6333c26cb1c3')
-
-build() {
-  cd $pkgname-v${pkgver//_/-}
-  make
-}
-
-package() {
-  pushd $pkgname-v${pkgver//_/-}
-  make install \
-DESTDIR=$pkgdir \
-PREFIX=/usr \
-LIBDIR=/usr/lib/arptables \
-BINDIR=/usr/bin \
-MANDIR=/usr/share/man \
-INITDIR=/etc/rc.d \
-SYSCONFIGDIR=/etc
-  popd
-  # systemd
-  install -Dm 755 $pkgname.systemd \
-$pkgdir/usr/lib/systemd/scripts/$pkgname
-  install -Dm 644 $pkgname.service \
-$pkgdir/usr/lib/systemd/system/$pkgname.service
-  # default config file
-  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
-  # remove upstream rc
-  rm -rf $pkgdir/etc/rc.d
-}
-
-# vim:set ts=2 sw=2 et:

Copied: arptables/repos/extra-i686/PKGBUILD (from rev 239986, 
arptables/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-01 07:57:02 UTC (rev 239988)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Michal Soltys sol...@ziu.info
+
+pkgname=arptables
+pkgver=0.0.4
+pkgrel=3
+pkgdesc='ARP filtering utility'
+arch=('i686' 'x86_64')
+url='http://ebtables.sourceforge.net/'
+depends=('glibc' 'perl' 'bash')
+license=('GPL')
+backup=(etc/$pkgname.conf)
+source=(http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz;
+$pkgname.systemd
+$pkgname.service)
+md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
+ 'e54342a833c52b2bc67e7985e8f8fdfd'
+ '7e908fd77ef05bc7a9a05b6e877cd2bf')
+
+build() {
+  cd $pkgname-v${pkgver//_/-}
+  make
+}
+
+package() {
+  pushd $pkgname-v${pkgver//_/-}
+  make install \
+DESTDIR=$pkgdir \
+PREFIX=/usr \
+LIBDIR=/usr/lib/arptables \
+BINDIR=/usr/bin \
+MANDIR=/usr/share/man \
+INITDIR=/etc/rc.d \
+SYSCONFIGDIR=/etc
+  popd
+  # systemd
+  install -Dm 755 $pkgname.systemd \
+$pkgdir/usr/lib/systemd/scripts/$pkgname
+  install -Dm 644 $pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+  # default config file
+  install -Dm 644 /dev/null $pkgdir/etc/$pkgname.conf
+  # remove upstream rc
+  rm -rf $pkgdir/etc/rc.d
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/arptables.service
===
--- extra-i686/arptables.service2015-06-01 07:56:50 UTC (rev 239987)
+++ extra-i686/arptables.service2015-06-01 07:57:02 UTC (rev 239988)
@@ -1,11 +0,0 @@
-[Unit]
-Description=ARP 

[arch-commits] Commit in ppsspp/trunk (PKGBUILD ppsspp-gcc5.1.patch)

2015-06-01 Thread Maxime Gauduin
Date: Monday, June 1, 2015 @ 11:18:35
  Author: alucryd
Revision: 134450

gcc5.1: ppsspp 1.0.1-3

Added:
  ppsspp/trunk/ppsspp-gcc5.1.patch
Modified:
  ppsspp/trunk/PKGBUILD

-+
 PKGBUILD|9 ++---
 ppsspp-gcc5.1.patch |   40 
 2 files changed, 46 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 08:48:20 UTC (rev 134449)
+++ PKGBUILD2015-06-01 09:18:35 UTC (rev 134450)
@@ -8,7 +8,7 @@
 pkgbase=ppsspp
 pkgname=('ppsspp' 'ppsspp-qt')
 pkgver=1.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc='A PSP emulator written in C++'
 arch=('i686' 'x86_64')
 url='http://www.ppsspp.org/'
@@ -19,12 +19,14 @@
 'git+https://github.com/hrydgard/ppsspp-lang.git#commit=52c757e'
 
'ppsspp-native::git+https://github.com/hrydgard/native.git#commit=52ce9c1'
 
'ppsspp-armips::git+https://github.com/Kingcom/armips.git#commit=a0b878f'
-'ppsspp-ffmpeg.patch')
+'ppsspp-ffmpeg.patch'
+'ppsspp-gcc5.1.patch')
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
 'SKIP'
-'4d60b99f9e6fe1bb81b2b1b648845f9e76289ba824fcb5e53f2117d0319e086d')
+'4d60b99f9e6fe1bb81b2b1b648845f9e76289ba824fcb5e53f2117d0319e086d'
+'f5f946da7eb234a24338aaa990c50e35966231ea931923c35b5c09ae7ee59ad0')
 
 prepare() {
   cd ppsspp
@@ -36,6 +38,7 @@
   done
 
   patch -Np1 -i ../ppsspp-ffmpeg.patch
+  patch -Np1 -i ../ppsspp-gcc5.1.patch
 }
 
 build() {

Added: ppsspp-gcc5.1.patch
===
--- ppsspp-gcc5.1.patch (rev 0)
+++ ppsspp-gcc5.1.patch 2015-06-01 09:18:35 UTC (rev 134450)
@@ -0,0 +1,40 @@
+diff -rupN ppsspp.orig/ext/xbrz/xbrz.cpp ppsspp/ext/xbrz/xbrz.cpp
+--- ppsspp.orig/ext/xbrz/xbrz.cpp  2015-06-01 10:48:46.841998475 +0200
 ppsspp/ext/xbrz/xbrz.cpp   2015-06-01 10:50:31.379058513 +0200
+@@ -616,23 +616,21 @@ void scalePixel(const Kernel_3x3 ker,
+   auto eq   = [](uint32_t col1, uint32_t col2) { return 
ColorDistance::dist(col1, col2, cfg.luminanceWeight_)  
cfg.equalColorTolerance_; };
+   auto dist = [](uint32_t col1, uint32_t col2) { return 
ColorDistance::dist(col1, col2, cfg.luminanceWeight_); };
+ 
+-  const bool doLineBlend = []() - bool
+-  {
+-  if (getBottomR(blend) = BLEND_DOMINANT)
+-  return true;
++  bool doLineBlend;
+ 
+-  //make sure there is no second blending in an adjacent 
rotation for this pixel: handles insular pixels, mario eyes
+-  if (getTopR(blend) != BLEND_NONE  !eq(e, g)) //but 
support double-blending for 90� corners
+-  return false;
+-  if (getBottomL(blend) != BLEND_NONE  !eq(e, c))
+-  return false;
++  if (getBottomR(blend) = BLEND_DOMINANT)
++  doLineBlend = true;
+ 
+-  //no full blending for L-shapes; blend corner only 
(handles mario mushroom eyes)
+-  if (eq(g, h)   eq(h , i)  eq(i, f)  eq(f, c)  
!eq(e, i))
+-  return false;
+-
+-  return true;
+-  }();
++  //make sure there is no second blending in an adjacent rotation for 
this pixel: handles insular pixels, mario eyes
++  else if (getTopR(blend) != BLEND_NONE  !eq(e, g)) //but support 
double-blending for 90� corners
++  doLineBlend = false;
++  else if (getBottomL(blend) != BLEND_NONE  !eq(e, c))
++  doLineBlend = false;
++  //no full blending for L-shapes; blend corner only (handles mario 
mushroom eyes)
++  else if (!eq(e, i)  eq(g, h)  eq(h , i)  eq(i, f)  eq(f, c))
++  doLineBlend = false;
++  else
++  doLineBlend = true;
+ 
+   const uint32_t px = dist(e, f) = dist(e, h) ? f : h; //choose 
most similar color
+ 


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

2015-06-01 Thread Maxime Gauduin
Date: Monday, June 1, 2015 @ 11:19:05
  Author: alucryd
Revision: 134451

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

Added:
  ppsspp/repos/community-i686/PKGBUILD
(from rev 134450, ppsspp/trunk/PKGBUILD)
  ppsspp/repos/community-i686/ppsspp-ffmpeg.patch
(from rev 134450, ppsspp/trunk/ppsspp-ffmpeg.patch)
  ppsspp/repos/community-i686/ppsspp-gcc5.1.patch
(from rev 134450, ppsspp/trunk/ppsspp-gcc5.1.patch)
  ppsspp/repos/community-x86_64/PKGBUILD
(from rev 134450, ppsspp/trunk/PKGBUILD)
  ppsspp/repos/community-x86_64/ppsspp-ffmpeg.patch
(from rev 134450, ppsspp/trunk/ppsspp-ffmpeg.patch)
  ppsspp/repos/community-x86_64/ppsspp-gcc5.1.patch
(from rev 134450, ppsspp/trunk/ppsspp-gcc5.1.patch)
Deleted:
  ppsspp/repos/community-i686/PKGBUILD
  ppsspp/repos/community-i686/ppsspp-ffmpeg.patch
  ppsspp/repos/community-x86_64/PKGBUILD
  ppsspp/repos/community-x86_64/ppsspp-ffmpeg.patch

--+
 /PKGBUILD|  190 +
 /ppsspp-ffmpeg.patch |  360 +
 community-i686/PKGBUILD  |   92 
 community-i686/ppsspp-ffmpeg.patch   |  180 
 community-i686/ppsspp-gcc5.1.patch   |   40 +++
 community-x86_64/PKGBUILD|   92 
 community-x86_64/ppsspp-ffmpeg.patch |  180 
 community-x86_64/ppsspp-gcc5.1.patch |   40 +++
 8 files changed, 630 insertions(+), 544 deletions(-)

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


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 12:02:15
  Author: bluewind
Revision: 134454

upgpkg: inxi 2.2.22-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 09:46:44 UTC (rev 134453)
+++ PKGBUILD2015-06-01 10:02:15 UTC (rev 134454)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Florian Pritz f...@gmx.at
 pkgname=inxi
-pkgver=2.2.21
+pkgver=2.2.22
 pkgrel=1
 pkgdesc=script to get system information
 arch=('any')
@@ -25,7 +25,7 @@
   xorg-xrandr: inxi -G single screen resolution
 )
 
source=(https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('285d1f44e6730d7a6bd4d4cca12c9b3a')
+md5sums=('82aaa1e38831cee75a88175a7699a8e8')
 
 package() {
   cd $srcdir


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 12:02:18
  Author: bluewind
Revision: 134455

archrelease: copy trunk to community-any

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

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

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

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

Deleted: upgpkg
===
--- upgpkg  2015-06-01 10:02:15 UTC (rev 134454)
+++ upgpkg  2015-06-01 10:02:18 UTC (rev 134455)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 134454, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2015-06-01 10:02:18 UTC (rev 134455)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}


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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:23:14
  Author: seblu
Revision: 134445

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

Added:
  sslh/repos/community-i686/PKGBUILD
(from rev 13, sslh/trunk/PKGBUILD)
  sslh/repos/community-i686/sslh-fork.service
(from rev 13, sslh/trunk/sslh-fork.service)
  sslh/repos/community-i686/sslh-select.service
(from rev 13, sslh/trunk/sslh-select.service)
  sslh/repos/community-i686/sslh.conf
(from rev 13, sslh/trunk/sslh.conf)
  sslh/repos/community-i686/sslh.install
(from rev 13, sslh/trunk/sslh.install)
  sslh/repos/community-i686/sslh.sysusers
(from rev 13, sslh/trunk/sslh.sysusers)
  sslh/repos/community-x86_64/PKGBUILD
(from rev 13, sslh/trunk/PKGBUILD)
  sslh/repos/community-x86_64/sslh-fork.service
(from rev 13, sslh/trunk/sslh-fork.service)
  sslh/repos/community-x86_64/sslh-select.service
(from rev 13, sslh/trunk/sslh-select.service)
  sslh/repos/community-x86_64/sslh.conf
(from rev 13, sslh/trunk/sslh.conf)
  sslh/repos/community-x86_64/sslh.install
(from rev 13, sslh/trunk/sslh.install)
  sslh/repos/community-x86_64/sslh.sysusers
(from rev 13, sslh/trunk/sslh.sysusers)
Deleted:
  sslh/repos/community-i686/PKGBUILD
  sslh/repos/community-i686/sslh-fork.service
  sslh/repos/community-i686/sslh-select.service
  sslh/repos/community-i686/sslh.conf
  sslh/repos/community-i686/sslh.install
  sslh/repos/community-x86_64/PKGBUILD
  sslh/repos/community-x86_64/sslh-fork.service
  sslh/repos/community-x86_64/sslh-select.service
  sslh/repos/community-x86_64/sslh.conf
  sslh/repos/community-x86_64/sslh.install

--+
 /PKGBUILD|  104 +
 /sslh-fork.service   |   22 ++
 /sslh-select.service |   20 ++
 /sslh.conf   |   58 ++
 /sslh.install|   50 +++
 community-i686/PKGBUILD  |   50 ---
 community-i686/sslh-fork.service |   11 ---
 community-i686/sslh-select.service   |   10 ---
 community-i686/sslh.conf |   29 -
 community-i686/sslh.install  |   32 --
 community-i686/sslh.sysusers |1 
 community-x86_64/PKGBUILD|   50 ---
 community-x86_64/sslh-fork.service   |   11 ---
 community-x86_64/sslh-select.service |   10 ---
 community-x86_64/sslh.conf   |   29 -
 community-x86_64/sslh.install|   32 --
 community-x86_64/sslh.sysusers   |1 
 17 files changed, 256 insertions(+), 264 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 07:22:46 UTC (rev 13)
+++ community-i686/PKGBUILD 2015-06-01 07:23:14 UTC (rev 134445)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
-# Contributor: Le_suisse lesuisse.dev+aur at gmail dot com
-# Contributor: Jason Rodriguez jason-...@catloaf.net
-
-pkgname=sslh
-pkgver=1.17
-pkgrel=2
-pkgdesc='SSL/SSH/OpenVPN/XMPP/tinc port multiplexer'
-arch=('i686' 'x86_64')
-url='http://www.rutschle.net/tech/sslh.shtml'
-license=('GPL2')
-depends=('libcap' 'libconfig')
-backup=('etc/sslh.conf')
-install=$pkgname.install
-source=(http://www.rutschle.net/tech/$pkgname-v$pkgver.tar.gz;
-'sslh.conf'
-'sslh-select.service'
-'sslh-fork.service')
-md5sums=('1fc3ada4bafaca5a9786cc1431f48ed4'
- 'd5405c7ca7e1813e4d49a473e5834640'
- '0f3f9e3ac2ac4b576d684b21b566aeb9'
- '4e64f0850ec9bd44071ae8d5369316e5')
-
-build() {
-  cd $pkgname-v$pkgver
-  make VERSION=\v$pkgver\ USELIBCAP=1
-}
-
-package() {
-  # default arch config
-  install -Dm 644 sslh.conf $pkgdir/etc/sslh.conf
-  # manually install to have both ssl-fork and ssl-select
-  cd $pkgname-v$pkgver
-  install -Dm 755 sslh-fork $pkgdir/usr/bin/sslh-fork
-  install -Dm 755 sslh-select $pkgdir/usr/bin/sslh-select
-  ln -s sslh-fork $pkgdir/usr/bin/sslh
-  # install manpage
-  install -Dm 644 sslh.8.gz $pkgdir/usr/share/man/man8/sslh.8.gz
-  # install examples files
-  install -Dm 644 basic.cfg $pkgdir/usr/share/doc/$pkgname/basic.cfg
-  install -Dm 644 example.cfg $pkgdir/usr/share/doc/$pkgname/example.cfg
-  # systemd
-  install -Dm 644 $srcdir/sslh-fork.service \
-$pkgdir/usr/lib/systemd/system/sslh-fork.service
-  install -Dm 644 $srcdir/sslh-select.service \
-$pkgdir/usr/lib/systemd/system/sslh-select.service
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sslh/repos/community-i686/PKGBUILD (from rev 13, 
sslh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 07:23:14 UTC (rev 134445)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sébastien 

[arch-commits] Commit in quagga/repos (26 files)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:56:50
  Author: seblu
Revision: 239987

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

Added:
  quagga/repos/community-i686/
  quagga/repos/community-i686/PKGBUILD
(from rev 239985, quagga/trunk/PKGBUILD)
  quagga/repos/community-i686/babeld.service
(from rev 239985, quagga/trunk/babeld.service)
  quagga/repos/community-i686/bgpd.service
(from rev 239985, quagga/trunk/bgpd.service)
  quagga/repos/community-i686/isisd.service
(from rev 239985, quagga/trunk/isisd.service)
  quagga/repos/community-i686/ospf6d.service
(from rev 239985, quagga/trunk/ospf6d.service)
  quagga/repos/community-i686/ospfd.service
(from rev 239985, quagga/trunk/ospfd.service)
  quagga/repos/community-i686/quagga.install
(from rev 239985, quagga/trunk/quagga.install)
  quagga/repos/community-i686/quagga.sysusers
(from rev 239985, quagga/trunk/quagga.sysusers)
  quagga/repos/community-i686/quagga.tmpfiles
(from rev 239985, quagga/trunk/quagga.tmpfiles)
  quagga/repos/community-i686/ripd.service
(from rev 239985, quagga/trunk/ripd.service)
  quagga/repos/community-i686/ripngd.service
(from rev 239985, quagga/trunk/ripngd.service)
  quagga/repos/community-i686/zebra.service
(from rev 239985, quagga/trunk/zebra.service)
  quagga/repos/community-x86_64/
  quagga/repos/community-x86_64/PKGBUILD
(from rev 239985, quagga/trunk/PKGBUILD)
  quagga/repos/community-x86_64/babeld.service
(from rev 239985, quagga/trunk/babeld.service)
  quagga/repos/community-x86_64/bgpd.service
(from rev 239985, quagga/trunk/bgpd.service)
  quagga/repos/community-x86_64/isisd.service
(from rev 239985, quagga/trunk/isisd.service)
  quagga/repos/community-x86_64/ospf6d.service
(from rev 239985, quagga/trunk/ospf6d.service)
  quagga/repos/community-x86_64/ospfd.service
(from rev 239985, quagga/trunk/ospfd.service)
  quagga/repos/community-x86_64/quagga.install
(from rev 239985, quagga/trunk/quagga.install)
  quagga/repos/community-x86_64/quagga.sysusers
(from rev 239985, quagga/trunk/quagga.sysusers)
  quagga/repos/community-x86_64/quagga.tmpfiles
(from rev 239985, quagga/trunk/quagga.tmpfiles)
  quagga/repos/community-x86_64/ripd.service
(from rev 239985, quagga/trunk/ripd.service)
  quagga/repos/community-x86_64/ripngd.service
(from rev 239985, quagga/trunk/ripngd.service)
  quagga/repos/community-x86_64/zebra.service
(from rev 239985, quagga/trunk/zebra.service)

--+
 community-i686/PKGBUILD  |   91 +
 community-i686/babeld.service|   16 ++
 community-i686/bgpd.service  |   16 ++
 community-i686/isisd.service |   16 ++
 community-i686/ospf6d.service|   16 ++
 community-i686/ospfd.service |   16 ++
 community-i686/quagga.install|   23 +
 community-i686/quagga.sysusers   |1 
 community-i686/quagga.tmpfiles   |3 +
 community-i686/ripd.service  |   16 ++
 community-i686/ripngd.service|   16 ++
 community-i686/zebra.service |   16 ++
 community-x86_64/PKGBUILD|   91 +
 community-x86_64/babeld.service  |   16 ++
 community-x86_64/bgpd.service|   16 ++
 community-x86_64/isisd.service   |   16 ++
 community-x86_64/ospf6d.service  |   16 ++
 community-x86_64/ospfd.service   |   16 ++
 community-x86_64/quagga.install  |   23 +
 community-x86_64/quagga.sysusers |1 
 community-x86_64/quagga.tmpfiles |3 +
 community-x86_64/ripd.service|   16 ++
 community-x86_64/ripngd.service  |   16 ++
 community-x86_64/zebra.service   |   16 ++
 24 files changed, 492 insertions(+)

Copied: quagga/repos/community-i686/PKGBUILD (from rev 239985, 
quagga/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 07:56:50 UTC (rev 239987)
@@ -0,0 +1,91 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=quagga
+pkgver=0.99.24.1
+pkgrel=2
+pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite'
+arch=('i686' 'x86_64')
+url='http://www.quagga.net'
+license=('GPL2')
+depends=('libcap' 'libnl' 'net-snmp' 'readline' 'ncurses' 'perl')
+options=('!buildflags')
+install=quagga.install
+source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz;
+'quagga.sysusers'
+'quagga.tmpfiles'
+'babeld.service'
+'bgpd.service'
+'isisd.service'
+'ospf6d.service'
+'ospfd.service'
+'ripd.service'
+'ripngd.service'
+'zebra.service')
+md5sums=('7986bdc2fe6027d4c9216f7f5791e718'
+ '286c545efadcc7b463eb603c25473cb4'
+ '9dfa2f649a2c83a2e52f5f89dec3b167'
+ '20a8e36ad851d4e06467aeb56a84b245'
+ 'cc90c234aac9098c5132d653037d5269'
+ 

[arch-commits] Commit in quagga/trunk (4 files)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:56:06
  Author: seblu
Revision: 239985

upgpkg: quagga 0.99.24.1-2

- move to systemd-sysusers and systemd-tmpfiles

Added:
  quagga/trunk/quagga.sysusers
  quagga/trunk/quagga.tmpfiles
Modified:
  quagga/trunk/PKGBUILD
  quagga/trunk/quagga.install

-+
 PKGBUILD|   11 ---
 quagga.install  |   25 ++---
 quagga.sysusers |1 +
 quagga.tmpfiles |3 +++
 4 files changed, 18 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 07:34:58 UTC (rev 239984)
+++ PKGBUILD2015-06-01 07:56:06 UTC (rev 239985)
@@ -3,7 +3,7 @@
 
 pkgname=quagga
 pkgver=0.99.24.1
-pkgrel=1
+pkgrel=2
 pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite'
 arch=('i686' 'x86_64')
 url='http://www.quagga.net'
@@ -12,6 +12,8 @@
 options=('!buildflags')
 install=quagga.install
 
source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz;
+'quagga.sysusers'
+'quagga.tmpfiles'
 'babeld.service'
 'bgpd.service'
 'isisd.service'
@@ -21,6 +23,8 @@
 'ripngd.service'
 'zebra.service')
 md5sums=('7986bdc2fe6027d4c9216f7f5791e718'
+ '286c545efadcc7b463eb603c25473cb4'
+ '9dfa2f649a2c83a2e52f5f89dec3b167'
  '20a8e36ad851d4e06467aeb56a84b245'
  'cc90c234aac9098c5132d653037d5269'
  '67d0ada0f3000b9a86351798786c5256'
@@ -76,11 +80,12 @@
 
   # systemd
   cd $srcdir
+  install -d -m 755 $pkgdir/usr/lib/{systemd/system,tmpfiles.d,sysusers.d}
   for _d in zebra ripd ripngd bgpd ospfd ospf6d isisd babeld; do
 install -D -m 644 $_d.service $pkgdir/usr/lib/systemd/system/$_d.service
   done
-  install -D -m 644 /dev/null $pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
-  echo d /run/$pkgname 0750 $pkgname $pkgname  
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
+  install -D -m 644 $pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
+  install -D -m 644 $pkgname.sysusers 
$pkgdir/usr/lib/sysusers.d/$pkgname.conf
 }
 
 # vim:set ts=2 sw=2 et:

Modified: quagga.install
===
--- quagga.install  2015-06-01 07:34:58 UTC (rev 239984)
+++ quagga.install  2015-06-01 07:56:06 UTC (rev 239985)
@@ -2,35 +2,22 @@
 filelist=(quagga.info quagga.info-1 quagga.info-2)
 
 post_install() {
-  groupadd -r quagga
-  useradd -MNr -s /bin/false -d /run/quagga -g quagga quagga  passwd -l 
quagga /dev/null
-  install -d -m 750 -o quagga -g quagga /{run,etc,var/log}/quagga
+  systemd-sysusers quagga.conf
+  systemd-tmpfiles --create quagga.conf
   post_upgrade
 }
 
 post_upgrade() {
   if [[ -x /usr/bin/install-info ]]; then
-for file in ${filelist[@]}; do
-  install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+for file in ${filelist[@]}; do
+  install-info $infodir/$file.gz $infodir/dir 2/dev/null
 done
   fi
+  :
 }
 
 pre_remove() {
-  for d in zebra ripd ripngd bgpd ospfd ospf6d isisd; do
-/etc/rc.d/$d stop /dev/null
-  done
-  if [[ -x /usr/bin/install-info ]]; then
-for file in ${filelist[@]}; do
-  install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
-done
-  fi
+  post_upgrade
 }
 
-post_remove() {
-  userdel quagga /dev/null
-  groupdel quagga /dev/null
-  rmdir /{etc,var/log}/quagga
-}
-
 # vim: ft=sh ts=2 sw=2 et:

Added: quagga.sysusers
===
--- quagga.sysusers (rev 0)
+++ quagga.sysusers 2015-06-01 07:56:06 UTC (rev 239985)
@@ -0,0 +1 @@
+u quagga - - /run/quagga

Added: quagga.tmpfiles
===
--- quagga.tmpfiles (rev 0)
+++ quagga.tmpfiles 2015-06-01 07:56:06 UTC (rev 239985)
@@ -0,0 +1,3 @@
+d /etc/quagga 0750 quagga quagga
+d /var/log/quagga 0750 quagga quagga
+d /run/quagga 0750 quagga quagga


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

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:56:44
  Author: seblu
Revision: 239986

upgpkg: arptables 0.0.4-3

Modified:
  arptables/trunk/PKGBUILD
  arptables/trunk/arptables.service

---+
 PKGBUILD  |4 ++--
 arptables.service |2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 07:56:06 UTC (rev 239985)
+++ PKGBUILD2015-06-01 07:56:44 UTC (rev 239986)
@@ -5,7 +5,7 @@
 
 pkgname=arptables
 pkgver=0.0.4
-pkgrel=2
+pkgrel=3
 pkgdesc='ARP filtering utility'
 arch=('i686' 'x86_64')
 url='http://ebtables.sourceforge.net/'
@@ -17,7 +17,7 @@
 $pkgname.service)
 md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
  'e54342a833c52b2bc67e7985e8f8fdfd'
- 'b26771191e52905d8aea6333c26cb1c3')
+ '7e908fd77ef05bc7a9a05b6e877cd2bf')
 
 build() {
   cd $pkgname-v${pkgver//_/-}

Modified: arptables.service
===
--- arptables.service   2015-06-01 07:56:06 UTC (rev 239985)
+++ arptables.service   2015-06-01 07:56:44 UTC (rev 239986)
@@ -1,5 +1,7 @@
 [Unit]
 Description=ARP Tables
+Before=network-pre.target
+Wants=network-pre.target
 
 [Service]
 Type=oneshot


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 11:46:44
  Author: bluewind
Revision: 134453

archrelease: copy trunk to community-any

Added:
  vimpager/repos/community-any/PKGBUILD
(from rev 134452, vimpager/trunk/PKGBUILD)
  vimpager/repos/community-any/license.txt
(from rev 134452, vimpager/trunk/license.txt)
Deleted:
  vimpager/repos/community-any/PKGBUILD
  vimpager/repos/community-any/license.txt

-+
 PKGBUILD|   71 +++
 license.txt |  574 +-
 2 files changed, 322 insertions(+), 323 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 09:46:41 UTC (rev 134452)
+++ PKGBUILD2015-06-01 09:46:44 UTC (rev 134453)
@@ -1,36 +0,0 @@
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=vimpager
-pkgver=2.03
-pkgrel=1
-pkgdesc=A vim-based script to use as a PAGER.
-arch=('any')
-url=http://www.vim.org/scripts/script.php?script_id=1723;
-license=('custom:BSD')
-depends=('vim')
-noextract=(vimpager-$pkgver.tar.gz)
-backup=(etc/vimpagerrc)
-source=(vimpager-$pkgver.tar.gz::https://github.com/rkitover/vimpager/tarball/$pkgver;)
-md5sums=('98314680201b1008c0da9466fc58f5ef')
-
-build() {
-   cd ${srcdir}
-
-   mkdir -p $srcdir/vimpager-$pkgver
-   bsdtar --strip-components=1 -C $srcdir/vimpager-$pkgver -xf 
vimpager-$pkgver.tar.gz
-
-   cd $srcdir/vimpager-$pkgver
-
-   sed -i s/\r$// vimpager
-}
-
-package() {
-   cd ${srcdir}/vimpager-$pkgver
-
-   make SYSCONFDIR=/etc PREFIX=/usr DESTDIR=$pkgdir install
-
-   install -Dm644 README 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-   sed -n '/LICENSE AND COPYRIGHT/,$p' -i 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-}

Copied: vimpager/repos/community-any/PKGBUILD (from rev 134452, 
vimpager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 09:46:44 UTC (rev 134453)
@@ -0,0 +1,35 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=vimpager
+pkgver=2.04
+pkgrel=1
+pkgdesc=A vim-based script to use as a PAGER.
+arch=('any')
+url=http://www.vim.org/scripts/script.php?script_id=1723;
+license=('custom:BSD')
+depends=('vim')
+noextract=(vimpager-$pkgver.tar.gz)
+backup=(etc/vimpagerrc)
+source=(vimpager-$pkgver.tar.gz::https://github.com/rkitover/vimpager/tarball/$pkgver;)
+md5sums=('8d602e0d953bcb5993eff5af42d8a71f')
+
+build() {
+   cd ${srcdir}
+
+   mkdir -p $srcdir/vimpager-$pkgver
+   bsdtar --strip-components=1 -C $srcdir/vimpager-$pkgver -xf 
vimpager-$pkgver.tar.gz
+
+   cd $srcdir/vimpager-$pkgver
+
+   sed -i s/\r$// vimpager
+}
+
+package() {
+   cd ${srcdir}/vimpager-$pkgver
+
+   make SYSCONFDIR=/etc PREFIX=/usr DESTDIR=$pkgdir install
+
+   install -Dm644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}

Deleted: license.txt
===
--- license.txt 2015-06-01 09:46:41 UTC (rev 134452)
+++ license.txt 2015-06-01 09:46:44 UTC (rev 134453)
@@ -1,287 +0,0 @@
-*uganda.txt*For Vim version 7.2.  Last change: 2008 Jun 21
-
-
- VIM REFERENCE MANUALby Bram Moolenaar
-
-
-   *uganda* *Uganda* *copying* *copyright* *license*
-SUMMARY
-   *iccf* *ICCF*
-Vim is Charityware.  You can use and copy it as much as you like, but you are
-encouraged to make a donation for needy children in Uganda.  Please see |kcc|
-below or visit the ICCF web site, available at these URLs:
-
-   http://iccf-holland.org/
-   http://www.vim.org/iccf/
-   http://www.iccf.nl/
-
-You can also sponsor the development of Vim.  Vim sponsors can vote for
-features.  See |sponsor|.  The money goes to Uganda anyway.
-
-The Open Publication License applies to the Vim documentation, see
-|manual-copyright|.
-
-=== begin of license ===
-
-VIM LICENSE
-
-I)  There are no restrictions on distributing unmodified copies of Vim except
-that they must include this license text.  You can also distribute
-unmodified parts of Vim, likewise unrestricted except that they must
-include this license text.  You are also allowed to include executables
-that you made from the unmodified Vim sources, plus your own usage
-examples and Vim scripts.
-
-II) It is allowed to distribute a modified (or extended) version of Vim,
-including executables and/or source code, when the following four
-conditions are met:
-1) This license text must be included unmodified.
-2) The modified Vim must be distributed in one of the following five 

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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 11:46:41
  Author: bluewind
Revision: 134452

upgpkg: vimpager 2.04-1

upstream update

Modified:
  vimpager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 09:19:05 UTC (rev 134451)
+++ PKGBUILD2015-06-01 09:46:41 UTC (rev 134452)
@@ -3,7 +3,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=vimpager
-pkgver=2.03
+pkgver=2.04
 pkgrel=1
 pkgdesc=A vim-based script to use as a PAGER.
 arch=('any')
@@ -13,7 +13,7 @@
 noextract=(vimpager-$pkgver.tar.gz)
 backup=(etc/vimpagerrc)
 
source=(vimpager-$pkgver.tar.gz::https://github.com/rkitover/vimpager/tarball/$pkgver;)
-md5sums=('98314680201b1008c0da9466fc58f5ef')
+md5sums=('8d602e0d953bcb5993eff5af42d8a71f')
 
 build() {
cd ${srcdir}
@@ -31,6 +31,5 @@
 
make SYSCONFDIR=/etc PREFIX=/usr DESTDIR=$pkgdir install
 
-   install -Dm644 README 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-   sed -n '/LICENSE AND COPYRIGHT/,$p' -i 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+   install -Dm644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
 }


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 12:11:35
  Author: bluewind
Revision: 134457

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

Added:
  openbox/repos/community-i686/PKGBUILD
(from rev 134456, openbox/trunk/PKGBUILD)
  openbox/repos/community-i686/openbox-3.5.0-title-matching.patch
(from rev 134456, openbox/trunk/openbox-3.5.0-title-matching.patch)
  openbox/repos/community-i686/openbox-3.5.0-which-2.20.patch
(from rev 134456, openbox/trunk/openbox-3.5.0-which-2.20.patch)
  openbox/repos/community-x86_64/PKGBUILD
(from rev 134456, openbox/trunk/PKGBUILD)
  openbox/repos/community-x86_64/openbox-3.5.0-title-matching.patch
(from rev 134456, openbox/trunk/openbox-3.5.0-title-matching.patch)
  openbox/repos/community-x86_64/openbox-3.5.0-which-2.20.patch
(from rev 134456, openbox/trunk/openbox-3.5.0-which-2.20.patch)
Deleted:
  openbox/repos/community-i686/PKGBUILD
  openbox/repos/community-i686/openbox-3.5.0-title-matching.patch
  openbox/repos/community-i686/openbox-3.5.0-which-2.20.patch
  openbox/repos/community-x86_64/PKGBUILD
  openbox/repos/community-x86_64/openbox-3.5.0-title-matching.patch
  openbox/repos/community-x86_64/openbox-3.5.0-which-2.20.patch

-+
 /PKGBUILD   |  126 ++
 /openbox-3.5.0-title-matching.patch |   22 +++
 /openbox-3.5.0-which-2.20.patch |   22 +++
 community-i686/PKGBUILD |   61 
 community-i686/openbox-3.5.0-title-matching.patch   |   11 -
 community-i686/openbox-3.5.0-which-2.20.patch   |   11 -
 community-x86_64/PKGBUILD   |   61 
 community-x86_64/openbox-3.5.0-title-matching.patch |   11 -
 community-x86_64/openbox-3.5.0-which-2.20.patch |   11 -
 9 files changed, 170 insertions(+), 166 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 10:11:30 UTC (rev 134456)
+++ community-i686/PKGBUILD 2015-06-01 10:11:35 UTC (rev 134457)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Florian pritz bluew...@xinu.at
-# Contributor: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: tobias tob...@archlinux.org
-
-pkgname=openbox
-pkgver=3.5.2
-pkgrel=7
-pkgdesc='Highly configurable and lightweight X11 window manager'
-arch=('i686' 'x86_64')
-url='http://openbox.org'
-license=('GPL')
-depends=('startup-notification' 'libxml2' 'libxinerama' 'libxrandr'
- 'libxcursor' 'pango' 'imlib2' 'librsvg' 'libsm')
-optdepends=('kdebase-workspace: for the KDE/Openbox xsession'
-'python2-xdg: for the openbox-xdg-autostart script')
-groups=('lxde')
-backup=('etc/xdg/openbox/menu.xml' 'etc/xdg/openbox/rc.xml'
-'etc/xdg/openbox/autostart' 'etc/xdg/openbox/environment')
-source=(http://www.icculus.org/openbox/releases/$pkgname-$pkgver.tar.gz
-openbox-3.5.0-title-matching.patch
-openbox-3.5.0-which-2.20.patch)
-md5sums=('93df606606053b7e8578a5c116afb8ec'
- '0a11d7149da210a31ef88f8a9c717711'
- '7ca3b5244bb092d46f5bcf1e2bdf4a18')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -Np1 -i $srcdir/openbox-3.5.0-title-matching.patch  # OB#5277
-  patch -Np1 -i $srcdir/openbox-3.5.0-which-2.20.patch # FS#11455
-
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-data/autostart/openbox-xdg-autostart
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---with-x \
---enable-startup-notification \
---sysconfdir=/etc \
---libexecdir=/usr/lib/openbox
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # GNOME Panel is no longer available in the official repositories
-  rm -r 
$pkgdir/usr/bin/{gdm-control,gnome-panel-control,openbox-gnome-session} \
-$pkgdir/usr/share/gnome{,-session} \
-$pkgdir/usr/share/man/man1/openbox-gnome-session.1 \
-$pkgdir/usr/share/xsessions/openbox-gnome.desktop
-
-  sed -i 's:startkde:/usr/bin/\0:' \
-$pkgdir/usr/share/xsessions/openbox-kde.desktop
-}

Copied: openbox/repos/community-i686/PKGBUILD (from rev 134456, 
openbox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 10:11:35 UTC (rev 134457)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Florian pritz bluew...@xinu.at
+# Contributor: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Brad Fanella bradfane...@archlinux.us
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: tobias tob...@archlinux.org
+
+pkgname=openbox
+pkgver=3.6
+pkgrel=1
+pkgdesc='Highly configurable and lightweight X11 window manager'
+arch=('i686' 'x86_64')
+url='http://openbox.org'

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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 12:11:30
  Author: bluewind
Revision: 134456

upgpkg: openbox 3.6-1

upstream update

Modified:
  openbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 10:02:18 UTC (rev 134455)
+++ PKGBUILD2015-06-01 10:11:30 UTC (rev 134456)
@@ -6,8 +6,8 @@
 # Contributor: tobias tob...@archlinux.org
 
 pkgname=openbox
-pkgver=3.5.2
-pkgrel=7
+pkgver=3.6
+pkgrel=1
 pkgdesc='Highly configurable and lightweight X11 window manager'
 arch=('i686' 'x86_64')
 url='http://openbox.org'
@@ -16,15 +16,17 @@
  'libxcursor' 'pango' 'imlib2' 'librsvg' 'libsm')
 optdepends=('kdebase-workspace: for the KDE/Openbox xsession'
 'python2-xdg: for the openbox-xdg-autostart script')
-groups=('lxde')
+groups=('lxde' 'lxqt')
 backup=('etc/xdg/openbox/menu.xml' 'etc/xdg/openbox/rc.xml'
 'etc/xdg/openbox/autostart' 'etc/xdg/openbox/environment')
-source=(http://www.icculus.org/openbox/releases/$pkgname-$pkgver.tar.gz
+source=(http://openbox.org/dist/openbox/$pkgname-$pkgver.tar.gz{,.asc}
 openbox-3.5.0-title-matching.patch
 openbox-3.5.0-which-2.20.patch)
-md5sums=('93df606606053b7e8578a5c116afb8ec'
+md5sums=('a995a15361b18f24e45f9be752e89f4e'
+ 'SKIP'
  '0a11d7149da210a31ef88f8a9c717711'
  '7ca3b5244bb092d46f5bcf1e2bdf4a18')
+validpgpkeys=(4B71379A9D5263D112A85620A5A4E99C711D3B61)
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in sslh/trunk (PKGBUILD sslh.install sslh.sysusers)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:22:46
  Author: seblu
Revision: 13

upgpkg: sslh 1.17-3

Added:
  sslh/trunk/sslh.sysusers
Modified:
  sslh/trunk/PKGBUILD
  sslh/trunk/sslh.install

---+
 PKGBUILD  |   12 +++-
 sslh.install  |9 +
 sslh.sysusers |1 +
 3 files changed, 9 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 07:07:53 UTC (rev 134443)
+++ PKGBUILD2015-06-01 07:22:46 UTC (rev 13)
@@ -5,7 +5,7 @@
 
 pkgname=sslh
 pkgver=1.17
-pkgrel=2
+pkgrel=3
 pkgdesc='SSL/SSH/OpenVPN/XMPP/tinc port multiplexer'
 arch=('i686' 'x86_64')
 url='http://www.rutschle.net/tech/sslh.shtml'
@@ -15,10 +15,12 @@
 install=$pkgname.install
 source=(http://www.rutschle.net/tech/$pkgname-v$pkgver.tar.gz;
 'sslh.conf'
+'sslh.sysusers'
 'sslh-select.service'
 'sslh-fork.service')
 md5sums=('1fc3ada4bafaca5a9786cc1431f48ed4'
  'd5405c7ca7e1813e4d49a473e5834640'
+ 'f39544277a30595d4b7476b3f87ebbcf'
  '0f3f9e3ac2ac4b576d684b21b566aeb9'
  '4e64f0850ec9bd44071ae8d5369316e5')
 
@@ -41,10 +43,10 @@
   install -Dm 644 basic.cfg $pkgdir/usr/share/doc/$pkgname/basic.cfg
   install -Dm 644 example.cfg $pkgdir/usr/share/doc/$pkgname/example.cfg
   # systemd
-  install -Dm 644 $srcdir/sslh-fork.service \
-$pkgdir/usr/lib/systemd/system/sslh-fork.service
-  install -Dm 644 $srcdir/sslh-select.service \
-$pkgdir/usr/lib/systemd/system/sslh-select.service
+  cd $pkgdir
+  install -dm 755 usr/lib/{systemd/system,sysusers.d}
+  install -Dm 644 $srcdir/sslh-{fork,select}.service usr/lib/systemd/system
+  install -Dm 644 $srcdir/sslh.sysusers usr/lib/sysusers.d/sslh.conf
 }
 
 # vim:set ts=2 sw=2 et:

Modified: sslh.install
===
--- sslh.install2015-06-01 07:07:53 UTC (rev 134443)
+++ sslh.install2015-06-01 07:22:46 UTC (rev 13)
@@ -2,7 +2,7 @@
 
 # arg 1:  the new package version
 post_install() {
-  getent passwd sslh /dev/null || useradd -M -d /var/empty -r -U -M sslh
+  systemd-sysusers sslh.conf
   :
 }
 
@@ -22,11 +22,4 @@
   fi
 }
 
-# arg 1:  the old package version
-post_remove() {
-  userdel -f sslh /dev/null
-  groupdel sslh /dev/null
-  :
-}
-
 # vim:set ts=2 sw=2 ft=sh et:

Added: sslh.sysusers
===
--- sslh.sysusers   (rev 0)
+++ sslh.sysusers   2015-06-01 07:22:46 UTC (rev 13)
@@ -0,0 +1 @@
+u sslh - - -


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 12:13:39
  Author: bluewind
Revision: 134459

archrelease: copy trunk to multilib-testing-x86_64

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

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

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

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


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 12:13:37
  Author: bluewind
Revision: 134458

upgpkg: lib32-glib2 2.44.1-1

upstream update

Modified:
  lib32-glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 10:11:35 UTC (rev 134457)
+++ PKGBUILD2015-06-01 10:13:37 UTC (rev 134458)
@@ -5,7 +5,7 @@
 
 _pkgbasename=glib2
 pkgname=lib32-$_pkgbasename
-pkgver=2.44.0
+pkgver=2.44.1
 pkgrel=1
 pkgdesc=Common C routines used by GTK+ 2.4 and other libs (32-bit)
 url=http://www.gtk.org/;
@@ -16,7 +16,7 @@
 options=('!docs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-${pkgver}.tar.xz;
 'revert-warn-glib-compile-schemas.patch')
-sha256sums=('f2d362b106a08fa801770d41829a06fcfe287a00421018869eebf5efc796f5b9'
+sha256sums=('8811deacaf8a503d0a9b701777ea079ca6a4277be10e3d730d2112735d5eca07'
 '049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
 
 prepare() {


[arch-commits] Commit in quagga/repos (44 files)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:59:55
  Author: seblu
Revision: 239990

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

Added:
  quagga/repos/extra-i686/PKGBUILD
(from rev 239989, quagga/trunk/PKGBUILD)
  quagga/repos/extra-i686/babeld.service
(from rev 239989, quagga/trunk/babeld.service)
  quagga/repos/extra-i686/bgpd.service
(from rev 239989, quagga/trunk/bgpd.service)
  quagga/repos/extra-i686/isisd.service
(from rev 239989, quagga/trunk/isisd.service)
  quagga/repos/extra-i686/ospf6d.service
(from rev 239989, quagga/trunk/ospf6d.service)
  quagga/repos/extra-i686/ospfd.service
(from rev 239989, quagga/trunk/ospfd.service)
  quagga/repos/extra-i686/quagga.install
(from rev 239989, quagga/trunk/quagga.install)
  quagga/repos/extra-i686/quagga.sysusers
(from rev 239989, quagga/trunk/quagga.sysusers)
  quagga/repos/extra-i686/quagga.tmpfiles
(from rev 239989, quagga/trunk/quagga.tmpfiles)
  quagga/repos/extra-i686/ripd.service
(from rev 239989, quagga/trunk/ripd.service)
  quagga/repos/extra-i686/ripngd.service
(from rev 239989, quagga/trunk/ripngd.service)
  quagga/repos/extra-i686/zebra.service
(from rev 239989, quagga/trunk/zebra.service)
  quagga/repos/extra-x86_64/PKGBUILD
(from rev 239989, quagga/trunk/PKGBUILD)
  quagga/repos/extra-x86_64/babeld.service
(from rev 239989, quagga/trunk/babeld.service)
  quagga/repos/extra-x86_64/bgpd.service
(from rev 239989, quagga/trunk/bgpd.service)
  quagga/repos/extra-x86_64/isisd.service
(from rev 239989, quagga/trunk/isisd.service)
  quagga/repos/extra-x86_64/ospf6d.service
(from rev 239989, quagga/trunk/ospf6d.service)
  quagga/repos/extra-x86_64/ospfd.service
(from rev 239989, quagga/trunk/ospfd.service)
  quagga/repos/extra-x86_64/quagga.install
(from rev 239989, quagga/trunk/quagga.install)
  quagga/repos/extra-x86_64/quagga.sysusers
(from rev 239989, quagga/trunk/quagga.sysusers)
  quagga/repos/extra-x86_64/quagga.tmpfiles
(from rev 239989, quagga/trunk/quagga.tmpfiles)
  quagga/repos/extra-x86_64/ripd.service
(from rev 239989, quagga/trunk/ripd.service)
  quagga/repos/extra-x86_64/ripngd.service
(from rev 239989, quagga/trunk/ripngd.service)
  quagga/repos/extra-x86_64/zebra.service
(from rev 239989, quagga/trunk/zebra.service)
Deleted:
  quagga/repos/extra-i686/PKGBUILD
  quagga/repos/extra-i686/babeld.service
  quagga/repos/extra-i686/bgpd.service
  quagga/repos/extra-i686/isisd.service
  quagga/repos/extra-i686/ospf6d.service
  quagga/repos/extra-i686/ospfd.service
  quagga/repos/extra-i686/quagga.install
  quagga/repos/extra-i686/ripd.service
  quagga/repos/extra-i686/ripngd.service
  quagga/repos/extra-i686/zebra.service
  quagga/repos/extra-x86_64/PKGBUILD
  quagga/repos/extra-x86_64/babeld.service
  quagga/repos/extra-x86_64/bgpd.service
  quagga/repos/extra-x86_64/isisd.service
  quagga/repos/extra-x86_64/ospf6d.service
  quagga/repos/extra-x86_64/ospfd.service
  quagga/repos/extra-x86_64/quagga.install
  quagga/repos/extra-x86_64/ripd.service
  quagga/repos/extra-x86_64/ripngd.service
  quagga/repos/extra-x86_64/zebra.service

--+
 /PKGBUILD|  182 +
 /babeld.service  |   32 +++
 /bgpd.service|   32 +++
 /isisd.service   |   32 +++
 /ospf6d.service  |   32 +++
 /ospfd.service   |   32 +++
 /quagga.install  |   46 ++
 /ripd.service|   32 +++
 /ripngd.service  |   32 +++
 /zebra.service   |   32 +++
 extra-i686/PKGBUILD  |   86 ---
 extra-i686/babeld.service|   16 ---
 extra-i686/bgpd.service  |   16 ---
 extra-i686/isisd.service |   16 ---
 extra-i686/ospf6d.service|   16 ---
 extra-i686/ospfd.service |   16 ---
 extra-i686/quagga.install|   36 
 extra-i686/quagga.sysusers   |1 
 extra-i686/quagga.tmpfiles   |3 
 extra-i686/ripd.service  |   16 ---
 extra-i686/ripngd.service|   16 ---
 extra-i686/zebra.service |   16 ---
 extra-x86_64/PKGBUILD|   86 ---
 extra-x86_64/babeld.service  |   16 ---
 extra-x86_64/bgpd.service|   16 ---
 extra-x86_64/isisd.service   |   16 ---
 extra-x86_64/ospf6d.service  |   16 ---
 extra-x86_64/ospfd.service   |   16 ---
 extra-x86_64/quagga.install  |   36 
 extra-x86_64/quagga.sysusers |1 
 extra-x86_64/quagga.tmpfiles |3 
 extra-x86_64/ripd.service|   16 ---
 extra-x86_64/ripngd.service  |   16 ---
 extra-x86_64/zebra.service   |   16 ---
 34 files changed, 492 insertions(+), 500 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-01 07:59:00 UTC (rev 239989)
+++ extra-i686/PKGBUILD 2015-06-01 07:59:55 UTC (rev 239990)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: 

[arch-commits] Commit in quagga/repos (community-i686 community-x86_64)

2015-06-01 Thread Sébastien Luttringer
Date: Monday, June 1, 2015 @ 09:59:00
  Author: seblu
Revision: 239989

Still mad...

Deleted:
  quagga/repos/community-i686/
  quagga/repos/community-x86_64/


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

2015-06-01 Thread Levente Polyak
Date: Monday, June 1, 2015 @ 12:15:40
  Author: anthraxx
Revision: 134461

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

Added:
  synergy/repos/community-i686/PKGBUILD
(from rev 134460, synergy/trunk/PKGBUILD)
  synergy/repos/community-i686/fix-incompetence.patch
(from rev 134460, synergy/trunk/fix-incompetence.patch)
  synergy/repos/community-i686/synergys_at.service
(from rev 134460, synergy/trunk/synergys_at.service)
  synergy/repos/community-i686/synergys_at.socket
(from rev 134460, synergy/trunk/synergys_at.socket)
  synergy/repos/community-x86_64/PKGBUILD
(from rev 134460, synergy/trunk/PKGBUILD)
  synergy/repos/community-x86_64/fix-incompetence.patch
(from rev 134460, synergy/trunk/fix-incompetence.patch)
  synergy/repos/community-x86_64/synergys_at.service
(from rev 134460, synergy/trunk/synergys_at.service)
  synergy/repos/community-x86_64/synergys_at.socket
(from rev 134460, synergy/trunk/synergys_at.socket)
Deleted:
  synergy/repos/community-i686/PKGBUILD
  synergy/repos/community-i686/synergys_at.service
  synergy/repos/community-i686/synergys_at.socket
  synergy/repos/community-x86_64/PKGBUILD
  synergy/repos/community-x86_64/synergys_at.service
  synergy/repos/community-x86_64/synergys_at.socket

-+
 /PKGBUILD   |  184 ++
 /synergys_at.service|   22 +++
 /synergys_at.socket |   18 ++
 community-i686/PKGBUILD |   89 --
 community-i686/fix-incompetence.patch   |   31 +
 community-i686/synergys_at.service  |   11 -
 community-i686/synergys_at.socket   |9 -
 community-x86_64/PKGBUILD   |   89 --
 community-x86_64/fix-incompetence.patch |   31 +
 community-x86_64/synergys_at.service|   11 -
 community-x86_64/synergys_at.socket |9 -
 11 files changed, 286 insertions(+), 218 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 10:15:11 UTC (rev 134460)
+++ community-i686/PKGBUILD 2015-06-01 10:15:40 UTC (rev 134461)
@@ -1,89 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
-# Contributor: Jelle van der Waa jelle vdwaa nl
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Michael Düll m...@akurei.me
-
-# I would just like to take a minute here and state that synergy is
-# some of the worst packaged software ever. They BUNDLE a fucking
-# zip for cryptopp and do not provide an option to use a system-
-# installed version of that library. They change around paths every
-# update and just generally don't seem to care much.
-pkgname=synergy
-pkgver=1.7.3
-pkgrel=1
-pkgdesc=Share a single mouse and keyboard between multiple computers
-url=http://synergy-foss.org;
-arch=('i686' 'x86_64')
-depends=('gcc-libs' 'libxtst' 'libxinerama' 'libxkbcommon-x11' 'avahi' 'curl')
-makedepends=('libxt' 'cmake' 'qt5-base' 'unzip')
-optdepends=(
-  'qt5-base: gui support'
-  'openssl: encryption support'
-)
-license=('GPL2')
-source=(synergy-${pkgver}.tar.gz::https://github.com/synergy/synergy/archive/v${pkgver}-stable.tar.gz;
-synergys_at.socket
-synergys_at.service)
-sha1sums=('8b29b172ef6d025f3cdf8fb434eb0e23b6ed896f'
-  '7ec33221725fc496b807e0f435c5e87b590beb5d'
-  '65ab58cc3546d6374a05a6a260f15045632e43ce')
-
-prepare() {
-  cd ${srcdir}/synergy-${pkgver}-stable
-
-  cd ext
-  unzip gmock-1.6.0.zip -d gmock-1.6.0
-  unzip gtest-1.6.0.zip -d gtest-1.6.0
-}
-
-build() {
-  cd ${srcdir}/synergy-${pkgver}-stable
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-
-  cd src/gui
-  qmake
-  make
-}
-
-check() {
-  cd ${srcdir}/synergy-${pkgver}-stable/bin
-  ./unittests
-}
-
-package() {
-  cd ${srcdir}/synergy-${pkgver}-stable
-
-  # install binary
-  install -Dm755 bin/synergy ${pkgdir}/usr/bin/synergy
-  install -Dm755 bin/synergyc ${pkgdir}/usr/bin/synergyc
-  install -Dm755 bin/synergyd ${pkgdir}/usr/bin/synergyd
-  install -Dm755 bin/synergys ${pkgdir}/usr/bin/synergys
-  install -Dm755 bin/syntool ${pkgdir}/usr/bin/syntool
-  install -Dm755 bin/usynergy ${pkgdir}/usr/bin/usynergy
-
-  # install config
-  install -Dm644 doc/${pkgname}.conf.example 
${pkgdir}/etc/${pkgname}.conf.example 
-  install -Dm644 doc/${pkgname}.conf.example-advanced 
${pkgdir}/etc/${pkgname}.conf.example-advanced
-  install -Dm644 doc/${pkgname}.conf.example-basic 
${pkgdir}/etc/${pkgname}.conf.example-basic 
-
-  # install manfiles
-  install -Dm644 doc/${pkgname}c.man 
${pkgdir}/usr/share/man/man1/${pkgname}c.1
-  install -Dm644 doc/${pkgname}s.man 
${pkgdir}/usr/share/man/man1/${pkgname}s.1
-  
-  # plugin
-  install -Dm644 bin/plugins/libns.so ${pkgdir}/usr/lib/${pkgname}/libns.so
-
-  # install 

[arch-commits] Commit in synergy/trunk (PKGBUILD fix-incompetence.patch)

2015-06-01 Thread Levente Polyak
Date: Monday, June 1, 2015 @ 12:15:11
  Author: anthraxx
Revision: 134460

fix incompetente plugin detection via upstream patch

Added:
  synergy/trunk/fix-incompetence.patch
Modified:
  synergy/trunk/PKGBUILD

+
 PKGBUILD   |9 ++---
 fix-incompetence.patch |   31 +++
 2 files changed, 37 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 10:13:39 UTC (rev 134459)
+++ PKGBUILD2015-06-01 10:15:11 UTC (rev 134460)
@@ -12,7 +12,7 @@
 # update and just generally don't seem to care much.
 pkgname=synergy
 pkgver=1.7.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Share a single mouse and keyboard between multiple computers
 url=http://synergy-foss.org;
 arch=('i686' 'x86_64')
@@ -25,13 +25,16 @@
 license=('GPL2')
 
source=(synergy-${pkgver}.tar.gz::https://github.com/synergy/synergy/archive/v${pkgver}-stable.tar.gz;
 synergys_at.socket
-synergys_at.service)
+synergys_at.service
+fix-incompetence.patch)
 sha1sums=('8b29b172ef6d025f3cdf8fb434eb0e23b6ed896f'
   '7ec33221725fc496b807e0f435c5e87b590beb5d'
-  '65ab58cc3546d6374a05a6a260f15045632e43ce')
+  '65ab58cc3546d6374a05a6a260f15045632e43ce'
+  '10a899901ef62828280f21979625495f4da159f5')
 
 prepare() {
   cd ${srcdir}/synergy-${pkgver}-stable
+  patch -p1  ../fix-incompetence.patch
 
   cd ext
   unzip gmock-1.6.0.zip -d gmock-1.6.0

Added: fix-incompetence.patch
===
--- fix-incompetence.patch  (rev 0)
+++ fix-incompetence.patch  2015-06-01 10:15:11 UTC (rev 134460)
@@ -0,0 +1,31 @@
+From 03fc9b5fa72fd3197ca1e496f2c22e640304a602 Mon Sep 17 00:00:00 2001
+From: Maxim Doucet maxim.dou...@gmail.com
+Date: Wed, 27 May 2015 18:34:47 +0200
+Subject: [PATCH] Fix issue synergy/synergy#4720
+
+---
+ src/gui/src/PluginManager.cpp | 8 +---
+ 1 file changed, 1 insertion(+), 7 deletions(-)
+
+diff --git a/src/gui/src/PluginManager.cpp b/src/gui/src/PluginManager.cpp
+index fd3a24e..d1dc876 100644
+--- a/src/gui/src/PluginManager.cpp
 b/src/gui/src/PluginManager.cpp
+@@ -194,13 +194,7 @@ QString PluginManager::getPluginUrl(const QString 
pluginName)
+   process.start(program, args);
+   bool success = process.waitForStarted();
+ 
+-  if (!success || !process.waitForFinished())
+-  {
+-  emit error(tr(Could not get Linux package type.));
+-  return ;
+-  }
+-
+-  bool isDeb = (process.exitCode() == 0);
++  bool isDeb = (success  process.waitForFinished()  
(process.exitCode() == 0));
+ 
+   int arch = getProcessorArch();
+   if (arch == kProcessorArchLinux32) {
+-- 
+2.4.2
+


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

2015-06-01 Thread Massimiliano Torromeo
Date: Monday, June 1, 2015 @ 10:29:07
  Author: mtorromeo
Revision: 134446

upgpkg: libdwarf 20150507-1

Updated to 20150507

Modified:
  libdwarf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 07:23:14 UTC (rev 134445)
+++ PKGBUILD2015-06-01 08:29:07 UTC (rev 134446)
@@ -4,8 +4,8 @@
 # Contributor: Marti Raudsepp ma...@juffo.org
 
 pkgname=libdwarf
-pkgver=20140805
-pkgrel=2
+pkgver=20150507
+pkgrel=1
 pkgdesc=A library for handling DWARF Debugging Information Format
 arch=(i686 x86_64)
 license=('GPL' 'LGPL')
@@ -13,7 +13,7 @@
 depends=('elfutils')
 options+=('staticlibs')
 source=(http://www.prevanders.net/libdwarf-$pkgver.tar.gz)
-sha256sums=('d48219a1c240d05cf68d55a6a1ed0d4592f4a2dd8df48f19d7686e1f38f8bdfc')
+sha256sums=('29aa8d07db659d7d7af7079854cf42c09bf74d303942159cbfee82d655549870')
 
 build() {
   cd $srcdir/dwarf-$pkgver
@@ -34,7 +34,7 @@
   install -m644 README NEWS *.pdf $pkgdir/usr/share/doc/$pkgname/
 
   # dwarfdump
-  cd $srcdir/dwarf-$pkgver/dwarfdump2
+  cd $srcdir/dwarf-$pkgver/dwarfdump
   install -Dm755 dwarfdump $pkgdir/usr/bin/dwarfdump
   install -Dm644 dwarfdump.1 $pkgdir/usr/share/man/man1/dwarfdump.1
   install -Dm644 dwarfdump.conf $pkgdir/usr/lib/dwarfdump.conf


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

2015-06-01 Thread Felix Yan
Date: Monday, June 1, 2015 @ 10:48:20
  Author: fyan
Revision: 134449

archrelease: copy trunk to community-any

Added:
  flake8/repos/community-any/PKGBUILD
(from rev 134448, flake8/trunk/PKGBUILD)
Deleted:
  flake8/repos/community-any/PKGBUILD

--+
 PKGBUILD |  138 ++---
 1 file changed, 70 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 08:48:06 UTC (rev 134448)
+++ PKGBUILD2015-06-01 08:48:20 UTC (rev 134449)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Karol Kenji Takahashi Woźniak kenji.sx
-# Contributor: spider-mario spiderma...@free.fr
-# Contributor: Allen Li darkfeline at abagofapples.com
-
-pkgbase=flake8
-pkgname=(flake8 python2-flake8)
-pkgver=2.4.1
-pkgrel=1
-epoch=1
-pkgdesc=The modular source code checker: pep8, pyflakes and co
-arch=('any')
-url=http://bitbucket.org/tarek/flake8;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pyflakes' 
'python2-pyflakes'
- 'pep8' 'python2-pep8' 'python-mccabe' 'python2-mccabe')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
-source=(https://pypi.python.org/packages/source/f/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('ed45d3db81a3b7c88bd63c6e37ca1d65')
-
-prepare() {
-  # We have patched pep8 to fix the problem, allowing 1.6.2)
-  sed -i 's/pep8 = 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2/pep8 = 1.5.7, != 
1.6.0, != 1.6.1/' $pkgbase-$pkgver/setup.py
-
-  cp -a ${pkgbase}-${pkgver}{,-py2}
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  python setup.py build
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  python2 setup.py build
-}
-
-check() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  python setup.py test
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  python2 setup.py test
-}
-
-package_flake8() {
-  depends=('python-pyflakes' 'python-mccabe' 'pep8')
-  provides=('flake8-python3')
-  replaces=('flake8-python3')
-  conflicts=('flake8-python3')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  python setup.py install --root=${pkgdir}/ --prefix=/usr --optimize=1
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-flake8() {
-  depends=('python2-pyflakes' 'python2-mccabe' 'python2-pep8')
-  provides=('flake8-python2')
-  replaces=('flake8-python2')
-  conflicts=('flake8-python2')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  python2 setup.py install --root=${pkgdir}/ --prefix=/usr --optimize=1
-  mv ${pkgdir}/usr/bin/flake8 ${pkgdir}/usr/bin/flake8-python2
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: flake8/repos/community-any/PKGBUILD (from rev 134448, 
flake8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 08:48:20 UTC (rev 134449)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Karol Kenji Takahashi Woźniak kenji.sx
+# Contributor: spider-mario spiderma...@free.fr
+# Contributor: Allen Li darkfeline at abagofapples.com
+
+pkgbase=flake8
+pkgname=(flake8 python2-flake8)
+pkgver=2.4.1
+pkgrel=2
+epoch=1
+pkgdesc=The modular source code checker: pep8, pyflakes and co
+arch=('any')
+url=http://bitbucket.org/tarek/flake8;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pyflakes' 
'python2-pyflakes'
+ 'pep8' 'python2-pep8' 'python-mccabe' 'python2-mccabe')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
+source=(https://pypi.python.org/packages/source/f/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
+md5sums=('ed45d3db81a3b7c88bd63c6e37ca1d65')
+
+prepare() {
+  # We have patched pep8 to fix the problem, allowing 1.6.2)
+  sed -e 's/pep8 = 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2/pep8 = 1.5.7, != 
1.6.0, != 1.6.1/' \
+  -e 's/pyflakes = 0.8.1,  0.9/pyflakes = 0.8.1/' \
+  -i $pkgbase-$pkgver/setup.py
+
+  cp -a ${pkgbase}-${pkgver}{,-py2}
+}
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  python setup.py build
+
+  cd ${srcdir}/${pkgbase}-${pkgver}-py2
+  python2 setup.py build
+}
+
+check() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  python setup.py test
+
+  cd ${srcdir}/${pkgbase}-${pkgver}-py2
+  python2 setup.py test
+}
+
+package_flake8() {
+  depends=('python-pyflakes' 'python-mccabe' 'pep8')
+  provides=('flake8-python3')
+  replaces=('flake8-python3')
+  conflicts=('flake8-python3')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  python setup.py install --root=${pkgdir}/ --prefix=/usr --optimize=1
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-flake8() {
+  depends=('python2-pyflakes' 'python2-mccabe' 'python2-pep8')
+  provides=('flake8-python2')
+  replaces=('flake8-python2')
+  

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

2015-06-01 Thread Felix Yan
Date: Monday, June 1, 2015 @ 10:48:06
  Author: fyan
Revision: 134448

upgpkg: flake8 1:2.4.1-2

allowing pyflakes 0.9 for now, works for me, waiting for upstream confirmation. 
(FS#45162)

Modified:
  flake8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 08:29:25 UTC (rev 134447)
+++ PKGBUILD2015-06-01 08:48:06 UTC (rev 134448)
@@ -7,7 +7,7 @@
 pkgbase=flake8
 pkgname=(flake8 python2-flake8)
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=The modular source code checker: pep8, pyflakes and co
 arch=('any')
@@ -21,7 +21,9 @@
 
 prepare() {
   # We have patched pep8 to fix the problem, allowing 1.6.2)
-  sed -i 's/pep8 = 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2/pep8 = 1.5.7, != 
1.6.0, != 1.6.1/' $pkgbase-$pkgver/setup.py
+  sed -e 's/pep8 = 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2/pep8 = 1.5.7, != 
1.6.0, != 1.6.1/' \
+  -e 's/pyflakes = 0.8.1,  0.9/pyflakes = 0.8.1/' \
+  -i $pkgbase-$pkgver/setup.py
 
   cp -a ${pkgbase}-${pkgver}{,-py2}
 }


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

2015-06-01 Thread Johannes Löthberg
Date: Monday, June 1, 2015 @ 18:10:59
  Author: demize
Revision: 134482

archrelease: copy trunk to community-any

Added:
  python-pafy/repos/community-any/PKGBUILD
(from rev 134481, python-pafy/trunk/PKGBUILD)
Deleted:
  python-pafy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 15:55:12 UTC (rev 134481)
+++ PKGBUILD2015-06-01 16:10:59 UTC (rev 134482)
@@ -1,22 +0,0 @@
-# Maintainer: Johannes Löthberg johan...@kyriasis.com
-
-pkgname=python-pafy
-pkgver=0.3.74
-pkgrel=1
-
-pkgdesc=Python API for YouTube
-url=http://np1.github.io/pafy;
-arch=('any')
-license=('GPL3')
-
-depends=('python')
-optdepends=('ffmpeg: fix issues with audio file downloads')
-
-source=(python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz;)
-
-sha1sums=('4106f6f7d03a3786ad4f2105ae42657b92cb336d')
-
-package() {
-   cd pafy-$pkgver
-   python setup.py install --root=$pkgdir --optimize=1
-}

Copied: python-pafy/repos/community-any/PKGBUILD (from rev 134481, 
python-pafy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 16:10:59 UTC (rev 134482)
@@ -0,0 +1,22 @@
+# Maintainer: Johannes Löthberg johan...@kyriasis.com
+
+pkgname=python-pafy
+pkgver=0.3.74
+pkgrel=1
+
+pkgdesc=Python API for YouTube
+url=http://np1.github.io/pafy;
+arch=('any')
+license=('GPL3')
+
+depends=('python')
+optdepends=('ffmpeg: fix issues with audio file downloads')
+
+source=(python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz;)
+
+sha1sums=('4106f6f7d03a3786ad4f2105ae42657b92cb336d')
+
+package() {
+   cd pafy-$pkgver
+   python setup.py install --root=$pkgdir --optimize=1
+}


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

2015-06-01 Thread Johannes Löthberg
Date: Monday, June 1, 2015 @ 17:51:08
  Author: demize
Revision: 134479

archrelease: copy trunk to community-any

Added:
  python-pafy/repos/community-any/PKGBUILD
(from rev 134478, python-pafy/trunk/PKGBUILD)
Deleted:
  python-pafy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 15:50:50 UTC (rev 134478)
+++ PKGBUILD2015-06-01 15:51:08 UTC (rev 134479)
@@ -1,22 +0,0 @@
-# Maintainer: Johannes Löthberg johan...@kyriasis.com
-
-pkgname=python-pafy
-pkgver=0.3.72
-pkgrel=1
-
-pkgdesc=Python API for YouTube
-url=http://np1.github.io/pafy;
-arch=('any')
-license=('GPL3')
-
-depends=('python')
-optdepends=('ffmpeg: fix issues with audio file downloads')
-
-source=(https://github.com/np1/pafy/archive/v$pkgver.tar.gz;)
-
-sha1sums=('d4bd7de0a08676470342d6445cc70229bcc00ff2')
-
-package() {
-   cd pafy-$pkgver
-   python setup.py install --root=$pkgdir --optimize=1
-}

Copied: python-pafy/repos/community-any/PKGBUILD (from rev 134478, 
python-pafy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 15:51:08 UTC (rev 134479)
@@ -0,0 +1,22 @@
+# Maintainer: Johannes Löthberg johan...@kyriasis.com
+
+pkgname=python-pafy
+pkgver=0.3.74
+pkgrel=1
+
+pkgdesc=Python API for YouTube
+url=http://np1.github.io/pafy;
+arch=('any')
+license=('GPL3')
+
+depends=('python')
+optdepends=('ffmpeg: fix issues with audio file downloads')
+
+source=(python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz;)
+
+sha1sums=('4106f6f7d03a3786ad4f2105ae42657b92cb336d')
+
+package() {
+   cd pafy-$pkgver
+   python setup.py install --root=$pkgdir --optimize=1
+}


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

2015-06-01 Thread Johannes Löthberg
Date: Monday, June 1, 2015 @ 17:50:50
  Author: demize
Revision: 134478

upgpkg: python-pafy 0.3.74-1

Modified:
  python-pafy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 14:43:57 UTC (rev 134477)
+++ PKGBUILD2015-06-01 15:50:50 UTC (rev 134478)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg johan...@kyriasis.com
 
 pkgname=python-pafy
-pkgver=0.3.72
+pkgver=0.3.74
 pkgrel=1
 
 pkgdesc=Python API for YouTube
@@ -14,7 +14,7 @@
 
 
source=(python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz;)
 
-sha1sums=('d4bd7de0a08676470342d6445cc70229bcc00ff2')
+sha1sums=('4106f6f7d03a3786ad4f2105ae42657b92cb336d')
 
 package() {
cd pafy-$pkgver


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 17:55:12
  Author: bluewind
Revision: 134481

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

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

-+
 /PKGBUILD   |   60 ++
 /obconf.install |   24 +++
 community-i686/PKGBUILD |   30 ---
 community-i686/obconf.install   |   12 ---
 community-x86_64/PKGBUILD   |   30 ---
 community-x86_64/obconf.install |   12 ---
 6 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 15:55:07 UTC (rev 134480)
+++ community-i686/PKGBUILD 2015-06-01 15:55:12 UTC (rev 134481)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=obconf
-pkgver=2.0.4
-pkgrel=1
-pkgdesc=A GTK2 based configuration tool for the Openbox windowmanager
-arch=('i686' 'x86_64')
-url=http://openbox.org/wiki/ObConf:About;
-license=('GPL')
-depends=('openbox' 'gtk2' 'libglade' 'desktop-file-utils' 'libsm')
-install=${pkgname}.install
-source=(http://openbox.org/dist/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('9271c5d2dc366d61f73665a5e8bceabc')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  #./bootstrap
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: obconf/repos/community-i686/PKGBUILD (from rev 134480, 
obconf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 15:55:12 UTC (rev 134481)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=obconf
+pkgver=2.0.4
+pkgrel=2
+pkgdesc=A GTK2 based configuration tool for the Openbox windowmanager
+arch=('i686' 'x86_64')
+url=http://openbox.org/wiki/ObConf:About;
+license=('GPL')
+depends=('openbox' 'gtk2' 'libglade' 'desktop-file-utils' 'libsm')
+install=${pkgname}.install
+source=(http://openbox.org/dist/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('9271c5d2dc366d61f73665a5e8bceabc')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  #./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/obconf.install
===
--- community-i686/obconf.install   2015-06-01 15:55:07 UTC (rev 134480)
+++ community-i686/obconf.install   2015-06-01 15:55:12 UTC (rev 134481)
@@ -1,12 +0,0 @@
-post_install() {
-update-desktop-database -q
-update-mime-database /usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: obconf/repos/community-i686/obconf.install (from rev 134480, 
obconf/trunk/obconf.install)
===
--- community-i686/obconf.install   (rev 0)
+++ community-i686/obconf.install   2015-06-01 15:55:12 UTC (rev 134481)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+update-mime-database /usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-01 15:55:07 UTC (rev 134480)
+++ community-x86_64/PKGBUILD   2015-06-01 15:55:12 UTC (rev 134481)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=obconf
-pkgver=2.0.4
-pkgrel=1
-pkgdesc=A GTK2 based configuration tool for the Openbox windowmanager
-arch=('i686' 'x86_64')
-url=http://openbox.org/wiki/ObConf:About;
-license=('GPL')
-depends=('openbox' 'gtk2' 'libglade' 'desktop-file-utils' 'libsm')
-install=${pkgname}.install

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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 17:55:07
  Author: bluewind
Revision: 134480

upgpkg: obconf 2.0.4-2

rebuild against openbox 3.6

Modified:
  obconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 15:51:08 UTC (rev 134479)
+++ PKGBUILD2015-06-01 15:55:07 UTC (rev 134480)
@@ -6,7 +6,7 @@
 
 pkgname=obconf
 pkgver=2.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc=A GTK2 based configuration tool for the Openbox windowmanager
 arch=('i686' 'x86_64')
 url=http://openbox.org/wiki/ObConf:About;


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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 15:25:49
  Author: spupykin
Revision: 134473

upgpkg: canorus 0.7.2rc1-1

upd

Modified:
  canorus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 12:59:58 UTC (rev 134472)
+++ PKGBUILD2015-06-01 13:25:49 UTC (rev 134473)
@@ -5,8 +5,8 @@
 # Contributor: hm_b holger (at) music-nerds (dot) net
 
 pkgname=canorus
-pkgver=0.7.R1002
-pkgrel=6
+pkgver=0.7.2rc1
+pkgrel=1
 pkgdesc=A free music score editor
 arch=('i686' 'x86_64')
 url=http://www.canorus.org/;
@@ -13,8 +13,8 @@
 license=('GPL')
 depends=('qt4' 'alsa-lib' 'python2' 'zlib')
 makedepends=('cmake' 'swig')
-source=(http://download.berlios.de/$pkgname/$pkgname\_$pkgver\_source.tar.bz2)
-md5sums=('5575b7c54633056a463177579a390318')
+source=(http://downloads.sourceforge.net/project/canorus/0.7.2/canorus-${pkgver}.tar.bz2;)
+md5sums=('df5ea87e22aefe742be4e49e566b46f1')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 15:26:04
  Author: spupykin
Revision: 134474

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 13:25:49 UTC (rev 134473)
+++ community-i686/PKGBUILD 2015-06-01 13:26:04 UTC (rev 134474)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Arch Linux Pro Audio d...@archaudio.org
-# Contributor: Coenraad van der Westhuizen chwesthui...@gmail.com
-# Contributor: hm_b holger (at) music-nerds (dot) net
-
-pkgname=canorus
-pkgver=0.7.R1002
-pkgrel=6
-pkgdesc=A free music score editor
-arch=('i686' 'x86_64')
-url=http://www.canorus.org/;
-license=('GPL')
-depends=('qt4' 'alsa-lib' 'python2' 'zlib')
-makedepends=('cmake' 'swig')
-source=(http://download.berlios.de/$pkgname/$pkgname\_$pkgver\_source.tar.bz2)
-md5sums=('5575b7c54633056a463177579a390318')
-
-build() {
-  cd $pkgname-$pkgver
-  export LDFLAGS=-lz -lpthread
-  cmake . -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
-   -DDEFAULT_DATA_DIR=/usr/share/canorus \
-   -DNO_SWIG=ON
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  cp canorus.desktop $pkgdir/usr/share/applications
-  cp $pkgdir/usr/share/{canorus/images/clogosm.png,pixmaps/canorus.png}
-}

Copied: canorus/repos/community-i686/PKGBUILD (from rev 134473, 
canorus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 13:26:04 UTC (rev 134474)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Arch Linux Pro Audio d...@archaudio.org
+# Contributor: Coenraad van der Westhuizen chwesthui...@gmail.com
+# Contributor: hm_b holger (at) music-nerds (dot) net
+
+pkgname=canorus
+pkgver=0.7.2rc1
+pkgrel=1
+pkgdesc=A free music score editor
+arch=('i686' 'x86_64')
+url=http://www.canorus.org/;
+license=('GPL')
+depends=('qt4' 'alsa-lib' 'python2' 'zlib')
+makedepends=('cmake' 'swig')
+source=(http://downloads.sourceforge.net/project/canorus/0.7.2/canorus-${pkgver}.tar.bz2;)
+md5sums=('df5ea87e22aefe742be4e49e566b46f1')
+
+build() {
+  cd $pkgname-$pkgver
+  export LDFLAGS=-lz -lpthread
+  cmake . -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
+   -DDEFAULT_DATA_DIR=/usr/share/canorus \
+   -DNO_SWIG=ON
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install
+  install -d $pkgdir/usr/share/{applications,pixmaps}
+  cp canorus.desktop $pkgdir/usr/share/applications
+  cp $pkgdir/usr/share/{canorus/images/clogosm.png,pixmaps/canorus.png}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-01 13:25:49 UTC (rev 134473)
+++ community-x86_64/PKGBUILD   2015-06-01 13:26:04 UTC (rev 134474)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Arch Linux Pro Audio d...@archaudio.org
-# Contributor: Coenraad van der Westhuizen chwesthui...@gmail.com
-# Contributor: hm_b holger (at) music-nerds (dot) net
-
-pkgname=canorus
-pkgver=0.7.R1002
-pkgrel=6
-pkgdesc=A free music score editor
-arch=('i686' 'x86_64')
-url=http://www.canorus.org/;
-license=('GPL')
-depends=('qt4' 'alsa-lib' 'python2' 'zlib')
-makedepends=('cmake' 'swig')
-source=(http://download.berlios.de/$pkgname/$pkgname\_$pkgver\_source.tar.bz2)
-md5sums=('5575b7c54633056a463177579a390318')
-
-build() {
-  cd $pkgname-$pkgver
-  export LDFLAGS=-lz -lpthread
-  cmake . -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
-   -DDEFAULT_DATA_DIR=/usr/share/canorus \
-   -DNO_SWIG=ON
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  cp canorus.desktop $pkgdir/usr/share/applications
-  cp $pkgdir/usr/share/{canorus/images/clogosm.png,pixmaps/canorus.png}
-}

Copied: canorus/repos/community-x86_64/PKGBUILD (from rev 134473, 
canorus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-01 13:26:04 UTC (rev 134474)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Arch Linux Pro Audio 

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

2015-06-01 Thread Felix Yan
Date: Monday, June 1, 2015 @ 16:43:57
  Author: fyan
Revision: 134477

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 134476, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 134476, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 134476, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 134476, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 134476, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.tmpfiles.d
(from rev 134476, 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 2015-06-01 14:43:29 UTC (rev 134476)
+++ LICENSE 2015-06-01 14:43:57 UTC (rev 134477)
@@ -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 134476, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-06-01 14:43:57 UTC (rev 134477)
@@ -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
===
--- PKGBUILD2015-06-01 14:43:29 UTC (rev 134476)
+++ PKGBUILD2015-06-01 14:43:57 UTC (rev 134477)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# 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.615
-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')

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

2015-06-01 Thread Felix Yan
Date: Monday, June 1, 2015 @ 16:43:29
  Author: fyan
Revision: 134476

upgpkg: jenkins 1.616-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 13:52:42 UTC (rev 134475)
+++ PKGBUILD2015-06-01 14:43:29 UTC (rev 134476)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.615
+pkgver=1.616
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('5f1bed0488ce98d883f2230fa3cca0143858786177a1848bde676d9c57c2e3fe4e9a134274ecbc1ca645ce04afca28db1308d9064bc49320722730b7e19dd699'
+sha512sums=('db639bbbc957c0bc9c07c279091a1bbe7499c1784e031d631f2f382e5f8283f8ac187a05338ff37166be68459c2e27b5f97df04003c15bcc93c886aad5fb4a3b'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'


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

2015-06-01 Thread Sergej Pupykin
Date: Monday, June 1, 2015 @ 15:52:42
  Author: spupykin
Revision: 134475

Modified:
  festvox-ru/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 13:26:04 UTC (rev 134474)
+++ PKGBUILD2015-06-01 13:52:42 UTC (rev 134475)
@@ -4,22 +4,19 @@
 
 pkgname=festvox-ru
 pkgver=0.5
-pkgrel=3
+pkgrel=4
 pkgdesc=Russian support for Festival.
 arch=('any')
-url=http://festlang.berlios.de/docu/doku.php?id=russianru;
+url=https://launchpad.net/ubuntu/+source/festvox-ru;
 depends=('festival')
 makedepends=()
 license=('BSD')
 install=festvox-ru.install
-#source=(http://download.berlios.de/festlang/msu_ru_nsh_clunits-$pkgver.tar.bz2)
-source=(http://archive.ubuntu.com/ubuntu/pool/universe/f/festvox-ru/festvox-ru_$pkgver.orig.tar.gz)
-md5sums=('0e4a802ef64d000f583f0cf09bdf874c')
+source=(https://launchpad.net/ubuntu/+archive/primary/+files/festvox-ru_${pkgver}%2Bdfsg.orig.tar.bz2)
+md5sums=('ded572f715cfd58e62d4bc380eb64c48')
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-  tar xjf msu_ru_nsh_clunits-$pkgver.tar.bz2
-  cd msu_ru_nsh_clunits
+  cd $srcdir/msu_ru_nsh_clunits
   mkdir -p $pkgdir/usr/share/festival/voices/russian/msu_ru_nsh_clunits
   mv * $pkgdir/usr/share/festival/voices/russian/msu_ru_nsh_clunits
   mkdir -p $pkgdir/usr/share/licenses/$pkgname/


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

2015-06-01 Thread Andreas Radke
Date: Monday, June 1, 2015 @ 20:22:59
  Author: andyrtr
Revision: 239992

upgpkg: hunspell-en 2015.05.18-2

fix broken links FS#45158

Modified:
  hunspell-en/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 09:33:15 UTC (rev 239991)
+++ PKGBUILD2015-06-01 18:22:59 UTC (rev 239992)
@@ -3,7 +3,7 @@
 
 pkgname=hunspell-en
 pkgver=2015.05.18
-pkgrel=1
+pkgrel=2
 pkgdesc=English hunspell dictionaries
 arch=(any)
 url=http://wordlist.aspell.net/dicts/;
@@ -28,8 +28,8 @@
   pushd $pkgdir/usr/share/hunspell/
   en_GB_aliases=en_AG en_AU en_BS en_BW en_BZ en_DK en_GH en_HK en_IE en_IN 
en_JM en_NA en_NG en_NZ en_SG en_TT en_ZA en_ZW
   for lang in $en_GB_aliases; do
-   ln -s en_GB.aff $lang.aff
-   ln -s en_GB.dic $lang.dic
+   ln -s en_GB-large.aff $lang.aff
+   ln -s en_GB-large.dic $lang.dic
   done
   en_US_aliases=en_PH
   for lang in $en_US_aliases; do


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

2015-06-01 Thread Andreas Radke
Date: Monday, June 1, 2015 @ 20:23:13
  Author: andyrtr
Revision: 239993

archrelease: copy trunk to extra-any

Added:
  hunspell-en/repos/extra-any/PKGBUILD
(from rev 239992, hunspell-en/trunk/PKGBUILD)
Deleted:
  hunspell-en/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 18:22:59 UTC (rev 239992)
+++ PKGBUILD2015-06-01 18:23:13 UTC (rev 239993)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=hunspell-en
-pkgver=2015.05.18
-pkgrel=1
-pkgdesc=English hunspell dictionaries
-arch=(any)
-url=http://wordlist.aspell.net/dicts/;
-license=('LGPL' 'custom:scowl')
-optdepends=('hunspell: the spell checking libraries and apps')
-source=(http://downloads.sourceforge.net/project/wordlist/speller/$pkgver/hunspell-en_US-$pkgver.zip
-
http://downloads.sourceforge.net/project/wordlist/speller/$pkgver/hunspell-en_CA-$pkgver.zip
-
http://downloads.sourceforge.net/project/wordlist/speller/$pkgver/hunspell-en_GB-large-$pkgver.zip)
-sha1sums=('a4172755005d80cc4d89d919aed08fb998db7635'
-  '84722666d4f7a9c1b3d46a4c47f595cc6f9e1d80'
-  'daf8e7d03571990199cb0986e18e469a951e8ab0')
-
-build() {
- /bin/true
-}
-
-package() {
-  cd $srcdir
-  install -dm755 ${pkgdir}/usr/share/hunspell
-  install -m644 en_*.dic en_*.aff $pkgdir/usr/share/hunspell
-
-  pushd $pkgdir/usr/share/hunspell/
-  en_GB_aliases=en_AG en_AU en_BS en_BW en_BZ en_DK en_GH en_HK en_IE en_IN 
en_JM en_NA en_NG en_NZ en_SG en_TT en_ZA en_ZW
-  for lang in $en_GB_aliases; do
-   ln -s en_GB.aff $lang.aff
-   ln -s en_GB.dic $lang.dic
-  done
-  en_US_aliases=en_PH
-  for lang in $en_US_aliases; do
-   ln -s en_US.aff $lang.aff
-   ln -s en_US.dic $lang.dic
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hunspell/*; do
-  ln -sv /usr/share/hunspell/$(basename $file) .
-done
-  popd
-  
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  install -m644 README_en_*.txt $pkgdir/usr/share/doc/$pkgname
-
-  # licenses
-  install -D -m644 README_en_US.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_US
-  install -D -m644 README_en_CA.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_CA
-  install -D -m644 README_en_GB-large.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_GB-large
-}

Copied: hunspell-en/repos/extra-any/PKGBUILD (from rev 239992, 
hunspell-en/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 18:23:13 UTC (rev 239993)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+
+pkgname=hunspell-en
+pkgver=2015.05.18
+pkgrel=2
+pkgdesc=English hunspell dictionaries
+arch=(any)
+url=http://wordlist.aspell.net/dicts/;
+license=('LGPL' 'custom:scowl')
+optdepends=('hunspell: the spell checking libraries and apps')
+source=(http://downloads.sourceforge.net/project/wordlist/speller/$pkgver/hunspell-en_US-$pkgver.zip
+
http://downloads.sourceforge.net/project/wordlist/speller/$pkgver/hunspell-en_CA-$pkgver.zip
+
http://downloads.sourceforge.net/project/wordlist/speller/$pkgver/hunspell-en_GB-large-$pkgver.zip)
+sha1sums=('a4172755005d80cc4d89d919aed08fb998db7635'
+  '84722666d4f7a9c1b3d46a4c47f595cc6f9e1d80'
+  'daf8e7d03571990199cb0986e18e469a951e8ab0')
+
+build() {
+ /bin/true
+}
+
+package() {
+  cd $srcdir
+  install -dm755 ${pkgdir}/usr/share/hunspell
+  install -m644 en_*.dic en_*.aff $pkgdir/usr/share/hunspell
+
+  pushd $pkgdir/usr/share/hunspell/
+  en_GB_aliases=en_AG en_AU en_BS en_BW en_BZ en_DK en_GH en_HK en_IE en_IN 
en_JM en_NA en_NG en_NZ en_SG en_TT en_ZA en_ZW
+  for lang in $en_GB_aliases; do
+   ln -s en_GB-large.aff $lang.aff
+   ln -s en_GB-large.dic $lang.dic
+  done
+  en_US_aliases=en_PH
+  for lang in $en_US_aliases; do
+   ln -s en_US.aff $lang.aff
+   ln -s en_US.dic $lang.dic
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hunspell/*; do
+  ln -sv /usr/share/hunspell/$(basename $file) .
+done
+  popd
+  
+  # docs
+  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
+  install -m644 README_en_*.txt $pkgdir/usr/share/doc/$pkgname
+
+  # licenses
+  install -D -m644 README_en_US.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_US
+  install -D -m644 README_en_CA.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_CA
+  install -D -m644 README_en_GB-large.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_GB-large
+}


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

2015-06-01 Thread Andreas Radke
Date: Monday, June 1, 2015 @ 20:39:19
  Author: andyrtr
Revision: 239995

archrelease: copy trunk to extra-any

Added:
  getmail/repos/extra-any/PKGBUILD
(from rev 239994, getmail/trunk/PKGBUILD)
Deleted:
  getmail/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 18:39:06 UTC (rev 239994)
+++ PKGBUILD2015-06-01 18:39:19 UTC (rev 239995)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Committer: Manolis Tzanidakis mano...@archlinux.org
-
-pkgname=getmail
-pkgver=4.47.0
-pkgrel=1
-pkgdesc=A POP3 mail retriever with reliable Maildir and command delivery.
-arch=(any)
-url=http://pyropus.ca/software/getmail;
-license=(GPL)
-depends=('python2')
-optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
-source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-md5sums=('4f7cb44e699be9b727e9b305ce4ee2f1')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # fix broken shebang calls
-  sed -i -e s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2| 
getmailcore/__init__.py
-  sed -i -e s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2| $(find . 
-name '*.py')
-  # recheck
-  head -1 $(find . -name '*.py')
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir}
-}

Copied: getmail/repos/extra-any/PKGBUILD (from rev 239994, 
getmail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 18:39:19 UTC (rev 239995)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Committer: Manolis Tzanidakis mano...@archlinux.org
+
+pkgname=getmail
+pkgver=4.48.0
+pkgrel=1
+pkgdesc=A POP3 mail retriever with reliable Maildir and command delivery.
+arch=(any)
+url=http://pyropus.ca/software/getmail;
+license=(GPL)
+depends=('python2')
+optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
+source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
+md5sums=('e1d1aca390abc447b18f474a8b9706a9')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix broken shebang calls
+  sed -i -e s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2| 
getmailcore/__init__.py
+  sed -i -e s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2| $(find . 
-name '*.py')
+  # recheck
+  head -1 $(find . -name '*.py')
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir}
+}


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

2015-06-01 Thread Andreas Radke
Date: Monday, June 1, 2015 @ 20:39:06
  Author: andyrtr
Revision: 239994

upgpkg: getmail 4.48.0-1

upstream update 4.48.0

Modified:
  getmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 18:23:13 UTC (rev 239993)
+++ PKGBUILD2015-06-01 18:39:06 UTC (rev 239994)
@@ -3,7 +3,7 @@
 # Committer: Manolis Tzanidakis mano...@archlinux.org
 
 pkgname=getmail
-pkgver=4.47.0
+pkgver=4.48.0
 pkgrel=1
 pkgdesc=A POP3 mail retriever with reliable Maildir and command delivery.
 arch=(any)
@@ -12,7 +12,7 @@
 depends=('python2')
 optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
 
source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-md5sums=('4f7cb44e699be9b727e9b305ce4ee2f1')
+md5sums=('e1d1aca390abc447b18f474a8b9706a9')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2015-06-01 Thread Jaroslav Lichtblau
Date: Monday, June 1, 2015 @ 20:44:29
  Author: jlichtblau
Revision: 134484

archrelease: copy trunk to community-any

Added:
  syncthing-gtk/repos/community-any/PKGBUILD
(from rev 134483, syncthing-gtk/trunk/PKGBUILD)
  syncthing-gtk/repos/community-any/syncthing-gtk.install
(from rev 134483, syncthing-gtk/trunk/syncthing-gtk.install)
Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD
  syncthing-gtk/repos/community-any/syncthing-gtk.install

---+
 PKGBUILD  |   60 
 syncthing-gtk.install |   22 -
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-01 18:44:11 UTC (rev 134483)
+++ PKGBUILD2015-06-01 18:44:29 UTC (rev 134484)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Martin Wimpress c...@flexion.org
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: kozec kozec at kozec dot com
-
-pkgname=syncthing-gtk
-pkgver=0.7.1.2
-pkgrel=1
-pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
-arch=('any')
-url='https://github.com/syncthing/syncthing-gtk'
-license=('GPL2')
-depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing=0.11')
-makedepends=('python2-setuptools')
-optdepends=('python2-nautilus: file manager integration for Nautilus'
-'python2-caja: file manager integration for Caja'
-'librsvg: to shown menu icons correctly if not using traditional 
window header')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('8bda44533101c9bc2d298356896b49f416082d6d5a672908049e370bf3d098b9')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: syncthing-gtk/repos/community-any/PKGBUILD (from rev 134483, 
syncthing-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-01 18:44:29 UTC (rev 134484)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Martin Wimpress c...@flexion.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: kozec kozec at kozec dot com
+
+pkgname=syncthing-gtk
+pkgver=0.7.2
+pkgrel=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
+arch=('any')
+url='https://github.com/syncthing/syncthing-gtk'
+license=('GPL2')
+depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing=0.11')
+makedepends=('python2-setuptools')
+optdepends=('python2-nautilus: file manager integration for Nautilus'
+'python2-caja: file manager integration for Caja'
+'librsvg: to shown menu icons correctly if not using traditional 
window header')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('22bdca7c4ed540aa46ce93e0aed7056a254cf0263fae5a144aa6ff3d167da6cd')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: syncthing-gtk.install
===
--- syncthing-gtk.install   2015-06-01 18:44:11 UTC (rev 134483)
+++ syncthing-gtk.install   2015-06-01 18:44:29 UTC (rev 134484)
@@ -1,11 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: syncthing-gtk/repos/community-any/syncthing-gtk.install (from rev 
134483, syncthing-gtk/trunk/syncthing-gtk.install)
===
--- syncthing-gtk.install   (rev 0)
+++ syncthing-gtk.install   2015-06-01 18:44:29 UTC (rev 134484)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-06-01 Thread Jaroslav Lichtblau
Date: Monday, June 1, 2015 @ 20:56:14
  Author: jlichtblau
Revision: 134486

upgpkg: foremost 1.5.7-3
package moved to [community] with 151 votes in AUR

Modified:
  foremost/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 18:55:10 UTC (rev 134485)
+++ PKGBUILD2015-06-01 18:56:14 UTC (rev 134486)
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 130102 2015-03-28 10:50:55Z jlichtblau $
+# $Id$
 # Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 
 pkgname=foremost


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


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

2015-06-01 Thread Andreas Radke
Date: Monday, June 1, 2015 @ 20:56:42
  Author: andyrtr
Revision: 239996

upgpkg: libtirpc 0.3.1-1

upstream update 0.3.1

Modified:
  libtirpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 18:39:19 UTC (rev 239995)
+++ PKGBUILD2015-06-01 18:56:42 UTC (rev 239996)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Powalowski tp...@archlinux.org
 
 pkgname=libtirpc
-pkgver=0.3.0
+pkgver=0.3.1
 pkgrel=1
 pkgdesc=Transport Independent RPC library (SunRPC replacement)
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('krb5')
 backup=('etc/netconfig')
 
source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fd7b83ed2dd0e322d400cb3173c1ff32ea0482dc')
+sha1sums=('0e0ef9123cf28cd0940148fabd23952476a8fcd6')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 20:56:46
  Author: bluewind
Revision: 134488

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

Added:
  lxappearance-obconf/repos/community-i686/PKGBUILD
(from rev 134487, lxappearance-obconf/trunk/PKGBUILD)
  lxappearance-obconf/repos/community-x86_64/PKGBUILD
(from rev 134487, lxappearance-obconf/trunk/PKGBUILD)
Deleted:
  lxappearance-obconf/repos/community-i686/PKGBUILD
  lxappearance-obconf/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 18:56:41 UTC (rev 134487)
+++ community-i686/PKGBUILD 2015-06-01 18:56:46 UTC (rev 134488)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-
-pkgname=lxappearance-obconf
-pkgver=0.2.2
-pkgrel=1
-pkgdesc='Plugin for LXAppearance to configure Openbox'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('lxappearance' 'openbox' 'libsm')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('d958ac5514ba1707429ff6794ab59abf')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxappearance-obconf/repos/community-i686/PKGBUILD (from rev 134487, 
lxappearance-obconf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 18:56:46 UTC (rev 134488)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+
+pkgname=lxappearance-obconf
+pkgver=0.2.2
+pkgrel=2
+pkgdesc='Plugin for LXAppearance to configure Openbox'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('lxappearance' 'openbox' 'libsm')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('d958ac5514ba1707429ff6794ab59abf')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-01 18:56:41 UTC (rev 134487)
+++ community-x86_64/PKGBUILD   2015-06-01 18:56:46 UTC (rev 134488)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
-
-pkgname=lxappearance-obconf
-pkgver=0.2.2
-pkgrel=1
-pkgdesc='Plugin for LXAppearance to configure Openbox'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('lxappearance' 'openbox' 'libsm')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('d958ac5514ba1707429ff6794ab59abf')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxappearance-obconf/repos/community-x86_64/PKGBUILD (from rev 134487, 
lxappearance-obconf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-01 18:56:46 UTC (rev 134488)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+
+pkgname=lxappearance-obconf
+pkgver=0.2.2
+pkgrel=2
+pkgdesc='Plugin for LXAppearance to configure Openbox'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('lxappearance' 'openbox' 'libsm')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('d958ac5514ba1707429ff6794ab59abf')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2015-06-01 Thread Florian Pritz
Date: Monday, June 1, 2015 @ 20:56:41
  Author: bluewind
Revision: 134487

upgpkg: lxappearance-obconf 0.2.2-2

rebuild against openbox 3.6

Modified:
  lxappearance-obconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 18:56:14 UTC (rev 134486)
+++ PKGBUILD2015-06-01 18:56:41 UTC (rev 134487)
@@ -3,7 +3,7 @@
 
 pkgname=lxappearance-obconf
 pkgver=0.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Plugin for LXAppearance to configure Openbox'
 arch=('i686' 'x86_64')
 license=('GPL2')


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

2015-06-01 Thread Jaroslav Lichtblau
Date: Monday, June 1, 2015 @ 20:56:49
  Author: jlichtblau
Revision: 134489

archrelease: copy trunk to community-x86_64

Added:
  foremost/repos/community-x86_64/
  foremost/repos/community-x86_64/PKGBUILD
(from rev 134486, foremost/trunk/PKGBUILD)
  foremost/repos/community-x86_64/foremost-makefile.patch
(from rev 134486, foremost/trunk/foremost-makefile.patch)

-+
 PKGBUILD|   37 +
 foremost-makefile.patch |   23 +++
 2 files changed, 60 insertions(+)

Copied: foremost/repos/community-x86_64/PKGBUILD (from rev 134486, 
foremost/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-01 18:56:49 UTC (rev 134489)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=foremost
+pkgver=1.5.7
+pkgrel=3
+pkgdesc=A console program to recover files based on their headers, footers, 
and internal data structures
+arch=('i686' 'x86_64')
+url=http://foremost.sourceforge.net/;
+license=('custom')
+depends=('glibc')
+makedepends=('patch')
+backup=(etc/foremost.conf)
+source=(http://foremost.sourceforge.net/pkg/$pkgname-$pkgver.tar.gz
+$pkgname-makefile.patch)
+sha256sums=('502054ef212e3d90b292e99c7f7ac91f89f024720cd5a7e7680c3d1901ef5f34'
+'9073fe84c1355e6b1b1c16ccba06893ebd4d35590e45ecbcb4b89e02083a5848')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -Np0 -i ${srcdir}/$pkgname-makefile.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make
+}
+
+package () {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d 
${pkgdir}/{etc,usr/bin,usr/share/man/man8,usr/share/licenses/foremost}
+  make DESTDIR=${pkgdir} install
+
+#license
+  ./foremost -V  ${pkgdir}/usr/share/licenses/$pkgname/COPYRIGHT
+}

Copied: foremost/repos/community-x86_64/foremost-makefile.patch (from rev 
134486, foremost/trunk/foremost-makefile.patch)
===
--- community-x86_64/foremost-makefile.patch(rev 0)
+++ community-x86_64/foremost-makefile.patch2015-06-01 18:56:49 UTC (rev 
134489)
@@ -0,0 +1,23 @@
+--- Makefile.orig  2008-10-14 02:09:13.0 +0200
 Makefile   2008-10-14 18:31:38.0 +0200
+@@ -26,5 +26,5 @@
+ # Where we get installed
+-BIN = /usr/local/bin
+-MAN = /usr/share/man/man8
+-CONF= /usr/local/etc
++BIN = $(DESTDIR)/usr/bin
++MAN = $(DESTDIR)/usr/share/man/man8
++CONF= $(DESTDIR)/etc
+ # Setup for compiling and cross-compiling for Windows
+diff -uNr foremost-1.4.orig/config.c foremost-1.4/config.c
+--- config.c   2006-08-31 17:50:47.0 +0100
 config.c   2006-08-31 17:51:09.0 +0100
+@@ -288,7 +288,7 @@
+ #ifdef __WIN32
+   set_config_file(s, /Program Files/foremost/foremost.conf);
+ #else
+-  set_config_file(s, /usr/local/etc/foremost.conf);
++  set_config_file(s, /etc/foremost.conf);
+ #endif
+   if ((f = fopen(get_config_file(s), r)) == NULL)
+   {


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

2015-06-01 Thread Andreas Radke
Date: Monday, June 1, 2015 @ 20:56:55
  Author: andyrtr
Revision: 239997

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

Added:
  libtirpc/repos/testing-i686/
  libtirpc/repos/testing-i686/PKGBUILD
(from rev 239996, libtirpc/trunk/PKGBUILD)
  libtirpc/repos/testing-x86_64/
  libtirpc/repos/testing-x86_64/PKGBUILD
(from rev 239996, libtirpc/trunk/PKGBUILD)

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

Copied: libtirpc/repos/testing-i686/PKGBUILD (from rev 239996, 
libtirpc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-01 18:56:55 UTC (rev 239997)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=libtirpc
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=Transport Independent RPC library (SunRPC replacement)
+arch=('i686' 'x86_64')
+url=http://libtirpc.sourceforge.net/;
+license=('BSD')
+depends=('krb5')
+backup=('etc/netconfig')
+source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('0e0ef9123cf28cd0940148fabd23952476a8fcd6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconf=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: libtirpc/repos/testing-x86_64/PKGBUILD (from rev 239996, 
libtirpc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-01 18:56:55 UTC (rev 239997)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=libtirpc
+pkgver=0.3.1
+pkgrel=1
+pkgdesc=Transport Independent RPC library (SunRPC replacement)
+arch=('i686' 'x86_64')
+url=http://libtirpc.sourceforge.net/;
+license=('BSD')
+depends=('krb5')
+backup=('etc/netconfig')
+source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('0e0ef9123cf28cd0940148fabd23952476a8fcd6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconf=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


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

2015-06-01 Thread Jaroslav Lichtblau
Date: Monday, June 1, 2015 @ 20:44:11
  Author: jlichtblau
Revision: 134483

upgpkg: syncthing-gtk 0.7.2-1 - new upstream release

Modified:
  syncthing-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 16:10:59 UTC (rev 134482)
+++ PKGBUILD2015-06-01 18:44:11 UTC (rev 134483)
@@ -4,7 +4,7 @@
 # Contributor: kozec kozec at kozec dot com
 
 pkgname=syncthing-gtk
-pkgver=0.7.1.2
+pkgver=0.7.2
 pkgrel=1
 pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
 arch=('any')
@@ -17,7 +17,7 @@
 'librsvg: to shown menu icons correctly if not using traditional 
window header')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('8bda44533101c9bc2d298356896b49f416082d6d5a672908049e370bf3d098b9')
+sha256sums=('22bdca7c4ed540aa46ce93e0aed7056a254cf0263fae5a144aa6ff3d167da6cd')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in (5 files)

2015-06-01 Thread Jaroslav Lichtblau
Date: Monday, June 1, 2015 @ 20:55:10
  Author: jlichtblau
Revision: 134485

foremost package moved to [community]
with 151 votes in AUR

Added:
  foremost/
  foremost/repos/
  foremost/trunk/
  foremost/trunk/PKGBUILD
  foremost/trunk/foremost-makefile.patch

-+
 PKGBUILD|   37 +
 foremost-makefile.patch |   23 +++
 2 files changed, 60 insertions(+)

Added: foremost/trunk/PKGBUILD
===
--- foremost/trunk/PKGBUILD (rev 0)
+++ foremost/trunk/PKGBUILD 2015-06-01 18:55:10 UTC (rev 134485)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 130102 2015-03-28 10:50:55Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=foremost
+pkgver=1.5.7
+pkgrel=3
+pkgdesc=A console program to recover files based on their headers, footers, 
and internal data structures
+arch=('i686' 'x86_64')
+url=http://foremost.sourceforge.net/;
+license=('custom')
+depends=('glibc')
+makedepends=('patch')
+backup=(etc/foremost.conf)
+source=(http://foremost.sourceforge.net/pkg/$pkgname-$pkgver.tar.gz
+$pkgname-makefile.patch)
+sha256sums=('502054ef212e3d90b292e99c7f7ac91f89f024720cd5a7e7680c3d1901ef5f34'
+'9073fe84c1355e6b1b1c16ccba06893ebd4d35590e45ecbcb4b89e02083a5848')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -Np0 -i ${srcdir}/$pkgname-makefile.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make
+}
+
+package () {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d 
${pkgdir}/{etc,usr/bin,usr/share/man/man8,usr/share/licenses/foremost}
+  make DESTDIR=${pkgdir} install
+
+#license
+  ./foremost -V  ${pkgdir}/usr/share/licenses/$pkgname/COPYRIGHT
+}

Added: foremost/trunk/foremost-makefile.patch
===
--- foremost/trunk/foremost-makefile.patch  (rev 0)
+++ foremost/trunk/foremost-makefile.patch  2015-06-01 18:55:10 UTC (rev 
134485)
@@ -0,0 +1,23 @@
+--- Makefile.orig  2008-10-14 02:09:13.0 +0200
 Makefile   2008-10-14 18:31:38.0 +0200
+@@ -26,5 +26,5 @@
+ # Where we get installed
+-BIN = /usr/local/bin
+-MAN = /usr/share/man/man8
+-CONF= /usr/local/etc
++BIN = $(DESTDIR)/usr/bin
++MAN = $(DESTDIR)/usr/share/man/man8
++CONF= $(DESTDIR)/etc
+ # Setup for compiling and cross-compiling for Windows
+diff -uNr foremost-1.4.orig/config.c foremost-1.4/config.c
+--- config.c   2006-08-31 17:50:47.0 +0100
 config.c   2006-08-31 17:51:09.0 +0100
+@@ -288,7 +288,7 @@
+ #ifdef __WIN32
+   set_config_file(s, /Program Files/foremost/foremost.conf);
+ #else
+-  set_config_file(s, /usr/local/etc/foremost.conf);
++  set_config_file(s, /etc/foremost.conf);
+ #endif
+   if ((f = fopen(get_config_file(s), r)) == NULL)
+   {


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

2015-06-01 Thread Jaroslav Lichtblau
Date: Monday, June 1, 2015 @ 20:58:27
  Author: jlichtblau
Revision: 134490

archrelease: copy trunk to community-i686

Added:
  foremost/repos/community-i686/
  foremost/repos/community-i686/PKGBUILD
(from rev 134489, foremost/trunk/PKGBUILD)
  foremost/repos/community-i686/foremost-makefile.patch
(from rev 134489, foremost/trunk/foremost-makefile.patch)

-+
 PKGBUILD|   37 +
 foremost-makefile.patch |   23 +++
 2 files changed, 60 insertions(+)

Copied: foremost/repos/community-i686/PKGBUILD (from rev 134489, 
foremost/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 18:58:27 UTC (rev 134490)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=foremost
+pkgver=1.5.7
+pkgrel=3
+pkgdesc=A console program to recover files based on their headers, footers, 
and internal data structures
+arch=('i686' 'x86_64')
+url=http://foremost.sourceforge.net/;
+license=('custom')
+depends=('glibc')
+makedepends=('patch')
+backup=(etc/foremost.conf)
+source=(http://foremost.sourceforge.net/pkg/$pkgname-$pkgver.tar.gz
+$pkgname-makefile.patch)
+sha256sums=('502054ef212e3d90b292e99c7f7ac91f89f024720cd5a7e7680c3d1901ef5f34'
+'9073fe84c1355e6b1b1c16ccba06893ebd4d35590e45ecbcb4b89e02083a5848')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -Np0 -i ${srcdir}/$pkgname-makefile.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make
+}
+
+package () {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d 
${pkgdir}/{etc,usr/bin,usr/share/man/man8,usr/share/licenses/foremost}
+  make DESTDIR=${pkgdir} install
+
+#license
+  ./foremost -V  ${pkgdir}/usr/share/licenses/$pkgname/COPYRIGHT
+}

Copied: foremost/repos/community-i686/foremost-makefile.patch (from rev 134489, 
foremost/trunk/foremost-makefile.patch)
===
--- community-i686/foremost-makefile.patch  (rev 0)
+++ community-i686/foremost-makefile.patch  2015-06-01 18:58:27 UTC (rev 
134490)
@@ -0,0 +1,23 @@
+--- Makefile.orig  2008-10-14 02:09:13.0 +0200
 Makefile   2008-10-14 18:31:38.0 +0200
+@@ -26,5 +26,5 @@
+ # Where we get installed
+-BIN = /usr/local/bin
+-MAN = /usr/share/man/man8
+-CONF= /usr/local/etc
++BIN = $(DESTDIR)/usr/bin
++MAN = $(DESTDIR)/usr/share/man/man8
++CONF= $(DESTDIR)/etc
+ # Setup for compiling and cross-compiling for Windows
+diff -uNr foremost-1.4.orig/config.c foremost-1.4/config.c
+--- config.c   2006-08-31 17:50:47.0 +0100
 config.c   2006-08-31 17:51:09.0 +0100
+@@ -288,7 +288,7 @@
+ #ifdef __WIN32
+   set_config_file(s, /Program Files/foremost/foremost.conf);
+ #else
+-  set_config_file(s, /usr/local/etc/foremost.conf);
++  set_config_file(s, /etc/foremost.conf);
+ #endif
+   if ((f = fopen(get_config_file(s), r)) == NULL)
+   {


[arch-commits] Commit in java7-openjdk/trunk (PKGBUILD icedtea-7.2.5.5-gcc5.diff)

2015-06-01 Thread Guillaume Alaux
Date: Monday, June 1, 2015 @ 22:58:11
  Author: guillaume
Revision: 239998

Add patch to fix build with latest g++5

Added:
  java7-openjdk/trunk/icedtea-7.2.5.5-gcc5.diff
Modified:
  java7-openjdk/trunk/PKGBUILD

---+
 PKGBUILD  |   13 ++---
 icedtea-7.2.5.5-gcc5.diff |   41 +
 2 files changed, 51 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 18:56:55 UTC (rev 239997)
+++ PKGBUILD2015-06-01 20:58:11 UTC (rev 239998)
@@ -38,8 +38,11 @@
 
icedtea_${_icedtea_ver}_langtools.tar.bz2::${_drops_url}/langtools.tar.bz2
 icedtea_${_icedtea_ver}_hotspot.tar.bz2::${_drops_url}/hotspot.tar.bz2
 fontconfig-paths.diff
-openjdk7_nonreparenting-wm.diff)
+openjdk7_nonreparenting-wm.diff
+icedtea-7.2.5.5-gcc5.diff)
 
+# http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2357
+
 sha256sums=('f05b1db06021f4cd3a39647f358a47130136d189431fb55f79855f627b1d6619'
 '5301baacfb6b4ee28a3469b8429a0017898615532f727bb50d94777682c5fd0d'
 'f0576599b474f56e58068071242cedbbf2f181b58c9010b614c9096be764ac51'
@@ -49,7 +52,8 @@
 '71b269ea930da36d751c6183816ef53a65c0587b7cf0195f87759b4c02c3b660'
 'd724a9749f51a3c66351ad8a27bc4570640720eace33cd03f1a52e2e45731dfb'
 '9ad943ceb3dbcdf45d72974fc3667886a7ed65c69ab9abc17be5412827551a7f'
-'56b919ababb13bd6afdcdaceb112b529b6e82539255f2dae9a7e5eb91645164b')
+'56b919ababb13bd6afdcdaceb112b529b6e82539255f2dae9a7e5eb91645164b'
+'49f8b65e24f6e6c8afa9e48b11f6e1675ef2c5d3bfe31fd7d73c8de1f4150cf2')
 
 noextract=(icedtea_${_icedtea_ver}_openjdk.tar.bz2
icedtea_${_icedtea_ver}_corba.tar.bz2
@@ -69,6 +73,8 @@
   lib/${_JARCH}/libsplashscreen.so
   lib/${_JARCH}/xawt/libmawt.so)
 
+
+
 build() {
   cd ${srcdir}/icedtea-${_icedtea_ver}
 
@@ -79,7 +85,8 @@
 
   cp ${srcdir}/*.diff ${srcdir}/icedtea-${_icedtea_ver}/patches
   export DISTRIBUTION_PATCHES=patches/fontconfig-paths.diff \
-   patches/openjdk7_nonreparenting-wm.diff
+   patches/openjdk7_nonreparenting-wm.diff \
+   patches/icedtea-7.2.5.5-gcc5.diff
 
   if [ $_bootstrap = 1 ]; then
  BOOTSTRAPOPT=--enable-bootstrap --with-ecj-jar=/usr/share/java/ecj.jar

Added: icedtea-7.2.5.5-gcc5.diff
===
--- icedtea-7.2.5.5-gcc5.diff   (rev 0)
+++ icedtea-7.2.5.5-gcc5.diff   2015-06-01 20:58:11 UTC (rev 239998)
@@ -0,0 +1,41 @@
+--- 
openjdk/hotspot/src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.cpp   
   Thu Jun 26 10:00:00 2014 +0200
 
openjdk/hotspot/src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.cpp   
   Thu Jun 26 13:20:18 2014 +0200
+@@ -66,6 +66,17 @@ 
+   }
+ }
+ 
++void G1SATBCardTableModRefBS::write_ref_array_pre(oop* dst, int count, bool 
dest_uninitialized) {
++  if (!dest_uninitialized) {
++write_ref_array_pre_work(dst, count);
++  }
++}
++void G1SATBCardTableModRefBS::write_ref_array_pre(narrowOop* dst, int count, 
bool dest_uninitialized) {
++  if (!dest_uninitialized) {
++write_ref_array_pre_work(dst, count);
++  }
++}
++
+ bool G1SATBCardTableModRefBS::mark_card_deferred(size_t card_index) {
+   jbyte val = _byte_map[card_index];
+   // It's already processed
+--- 
openjdk/hotspot/src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.hpp   
   Thu Jun 26 10:00:00 2014 +0200
 
openjdk/hotspot/src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.hpp   
   Thu Jun 26 13:20:18 2014 +0200
+@@ -86,16 +86,8 @@ 
+   }
+ 
+   template class T void write_ref_array_pre_work(T* dst, int count);
+-  virtual void write_ref_array_pre(oop* dst, int count, bool 
dest_uninitialized) {
+-if (!dest_uninitialized) {
+-  write_ref_array_pre_work(dst, count);
+-}
+-  }
+-  virtual void write_ref_array_pre(narrowOop* dst, int count, bool 
dest_uninitialized) {
+-if (!dest_uninitialized) {
+-  write_ref_array_pre_work(dst, count);
+-}
+-  }
++  virtual void write_ref_array_pre(oop* dst, int count, bool 
dest_uninitialized);
++  virtual void write_ref_array_pre(narrowOop* dst, int count, bool 
dest_uninitialized);
+ 
+ /*
+Claimed and deferred bits are used together in G1 during the evacuation


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:02:18
  Author: faidoc
Revision: 134493

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

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

---+
 staging-i686/PKGBUILD |   46 
 staging-i686/muffin.install   |   10 
 staging-x86_64/PKGBUILD   |   46 
 staging-x86_64/muffin.install |   10 
 4 files changed, 112 insertions(+)

Copied: muffin/repos/staging-i686/PKGBUILD (from rev 134492, 
muffin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-01 22:02:18 UTC (rev 134493)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection-runtime' 'cinnamon-desktop' 
'libcanberra' 'libsm'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 
'gobject-introspection' 'gtk-doc') 
+options=('!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
+sha256sums=('0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile \
+ --enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ install
+
+  # Remove unused stuff
+  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+  make -C src/tools DESTDIR=$pkgdir uninstall
+  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
+  make -C doc/man DESTDIR=$pkgdir uninstall
+}
+
+# vim:set ts=2 sw=2 et:

Copied: muffin/repos/staging-i686/muffin.install (from rev 134492, 
muffin/trunk/muffin.install)
===
--- staging-i686/muffin.install (rev 0)
+++ staging-i686/muffin.install 2015-06-01 22:02:18 UTC (rev 134493)
@@ -0,0 +1,10 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+post_remove() {
+  post_install
+}

Copied: muffin/repos/staging-x86_64/PKGBUILD (from rev 134492, 
muffin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-06-01 22:02:18 UTC (rev 134493)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection-runtime' 'cinnamon-desktop' 
'libcanberra' 'libsm'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 
'gobject-introspection' 'gtk-doc') 
+options=('!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
+sha256sums=('0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile \
+ --enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ install
+
+  # Remove unused stuff
+  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+  make -C src/tools DESTDIR=$pkgdir uninstall
+  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
+  make -C doc/man DESTDIR=$pkgdir uninstall
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:19:10
  Author: faidoc
Revision: 134495

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

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

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

Copied: cjs/repos/community-staging-i686/PKGBUILD (from rev 134494, 
cjs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 22:19:10 UTC (rev 134495)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Ionut Biru ib...@archlinux.org
+
+pkgname=cjs
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Javascript Bindings for Cinnamon
+arch=(i686 x86_64)
+url=https://github.com/linuxmint/cjs;
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js dbus-glib)
+makedepends=(gnome-common python2 gobject-introspection)
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
+sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
+   verbump.py
+
+  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Needs a display
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: cjs/repos/community-staging-x86_64/PKGBUILD (from rev 134494, 
cjs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-01 22:19:10 UTC (rev 134495)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Ionut Biru ib...@archlinux.org
+
+pkgname=cjs
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Javascript Bindings for Cinnamon
+arch=(i686 x86_64)
+url=https://github.com/linuxmint/cjs;
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js dbus-glib)
+makedepends=(gnome-common python2 gobject-introspection)
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
+sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
+   verbump.py
+
+  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Needs a display
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:14:59
  Author: faidoc
Revision: 134494

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

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

-+
 community-staging-i686/PKGBUILD |   46 ++
 community-staging-i686/muffin.install   |   10 ++
 community-staging-x86_64/PKGBUILD   |   46 ++
 community-staging-x86_64/muffin.install |   10 ++
 4 files changed, 112 insertions(+)

Copied: muffin/repos/community-staging-i686/PKGBUILD (from rev 134493, 
muffin/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 22:14:59 UTC (rev 134494)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection-runtime' 'cinnamon-desktop' 
'libcanberra' 'libsm'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 
'gobject-introspection' 'gtk-doc') 
+options=('!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
+sha256sums=('0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile \
+ --enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ install
+
+  # Remove unused stuff
+  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+  make -C src/tools DESTDIR=$pkgdir uninstall
+  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
+  make -C doc/man DESTDIR=$pkgdir uninstall
+}
+
+# vim:set ts=2 sw=2 et:

Copied: muffin/repos/community-staging-i686/muffin.install (from rev 134493, 
muffin/trunk/muffin.install)
===
--- community-staging-i686/muffin.install   (rev 0)
+++ community-staging-i686/muffin.install   2015-06-01 22:14:59 UTC (rev 
134494)
@@ -0,0 +1,10 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+post_remove() {
+  post_install
+}

Copied: muffin/repos/community-staging-x86_64/PKGBUILD (from rev 134493, 
muffin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-01 22:14:59 UTC (rev 134494)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection-runtime' 'cinnamon-desktop' 
'libcanberra' 'libsm'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 
'gobject-introspection' 'gtk-doc') 
+options=('!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
+sha256sums=('0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile \
+ --enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ install
+
+  # Remove unused stuff
+  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:19:58
  Author: faidoc
Revision: 134496

upgpkg: cinnamon-translations 2.6.1-1

Modified:
  cinnamon-translations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 22:19:10 UTC (rev 134495)
+++ PKGBUILD2015-06-01 22:19:58 UTC (rev 134496)
@@ -2,7 +2,7 @@
 # Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
 
 pkgname=cinnamon-translations
-pkgver=2.6.0
+pkgver=2.6.1
 pkgrel=1
 pkgdesc=Translations for Cinnamon and Nemo
 arch=(any)
@@ -9,7 +9,7 @@
 url=http://cinnamon.linuxmint.com/;
 license=('GPL2')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
-sha256sums=('c88e415cfe142a5f0cbe10488d296242e91e8e0f3bb7802ad94d3a5747bf5f88')
+sha256sums=('ed2c4a63a0193f770b0340a3281219a19e5e7102e287d533309f2f6de0dbf3c0')
 
 build() {
cd ${pkgname}-${pkgver}


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:21:38
  Author: faidoc
Revision: 134497

archrelease: copy trunk to community-staging-any

Added:
  cinnamon-translations/repos/community-staging-any/
  cinnamon-translations/repos/community-staging-any/PKGBUILD
(from rev 134496, cinnamon-translations/trunk/PKGBUILD)

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

Copied: cinnamon-translations/repos/community-staging-any/PKGBUILD (from rev 
134496, cinnamon-translations/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-06-01 22:21:38 UTC (rev 134497)
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 98057 2013-10-05 02:33:20Z faidoc $
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-translations
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Translations for Cinnamon and Nemo
+arch=(any)
+url=http://cinnamon.linuxmint.com/;
+license=('GPL2')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
+sha256sums=('ed2c4a63a0193f770b0340a3281219a19e5e7102e287d533309f2f6de0dbf3c0')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  
+  install -m 0755 -d ${pkgdir}/usr/share/locale/ 
+  cp -Rp usr/share/locale/* ${pkgdir}/usr/share/locale/
+}


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:28:06
  Author: faidoc
Revision: 134498

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

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

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

Copied: cinnamon-desktop/repos/community-staging-i686/PKGBUILD (from rev 
134497, cinnamon-desktop/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 22:28:06 UTC (rev 134498)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.6.4
+pkgrel=1
+pkgdesc=Library with common API for various Cinnamon modules
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxkbfile python2 glib2 libgsystem)
+makedepends=(intltool gobject-introspection gnome-common python2)
+url=https://github.com/linuxmint/cinnamon-desktop;
+install=cinnamon-desktop.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
+gnome-3.14.patch)
+sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+
+  # Workaround for make error until it is fixed upstream
+  cd libcinnamon-desktop/libgsystem  ln -sr '../$(libgsystem_srcpath)/.deps' 
.deps
+  cd ../../
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
\ No newline at end of file

Copied: cinnamon-desktop/repos/community-staging-i686/cinnamon-desktop.install 
(from rev 134497, cinnamon-desktop/trunk/cinnamon-desktop.install)
===
--- community-staging-i686/cinnamon-desktop.install 
(rev 0)
+++ community-staging-i686/cinnamon-desktop.install 2015-06-01 22:28:06 UTC 
(rev 134498)
@@ -0,0 +1,11 @@
+post_install() {
+   glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

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

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:40:11
  Author: faidoc
Revision: 134501

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

Added:
  cinnamon-session/repos/community-staging-i686/
  cinnamon-session/repos/community-staging-i686/PKGBUILD
(from rev 134500, cinnamon-session/trunk/PKGBUILD)
  cinnamon-session/repos/community-staging-i686/cinnamon-session.install
(from rev 134500, cinnamon-session/trunk/cinnamon-session.install)
  cinnamon-session/repos/community-staging-i686/timeout.patch
(from rev 134500, cinnamon-session/trunk/timeout.patch)
  cinnamon-session/repos/community-staging-x86_64/
  cinnamon-session/repos/community-staging-x86_64/PKGBUILD
(from rev 134500, cinnamon-session/trunk/PKGBUILD)
  cinnamon-session/repos/community-staging-x86_64/cinnamon-session.install
(from rev 134500, cinnamon-session/trunk/cinnamon-session.install)
  cinnamon-session/repos/community-staging-x86_64/timeout.patch
(from rev 134500, cinnamon-session/trunk/timeout.patch)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-i686/cinnamon-session.install   |   12 ++
 community-staging-i686/timeout.patch  |   24 
 community-staging-x86_64/PKGBUILD |   40 
 community-staging-x86_64/cinnamon-session.install |   12 ++
 community-staging-x86_64/timeout.patch|   24 
 6 files changed, 152 insertions(+)

Copied: cinnamon-session/repos/community-staging-i686/PKGBUILD (from rev 
134500, cinnamon-session/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 22:40:11 UTC (rev 134501)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-session
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=The Cinnamon Session Handler
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(dbus-glib cinnamon-desktop libsm libcanberra)
+makedepends=(intltool mesa json-glib xtrans gnome-common)
+options=('!emptydirs')
+install=cinnamon-session.install
+url=https://github.com/linuxmint/cinnamon-session;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
+timeout.patch)
+sha256sums=('42ea718b77240ff24061203bc03ba6af7d51bcba2323b0bb73a56870e232cb92'
+'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/cinnamon-session \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: cinnamon-session/repos/community-staging-i686/cinnamon-session.install 
(from rev 134500, cinnamon-session/trunk/cinnamon-session.install)
===
--- community-staging-i686/cinnamon-session.install 
(rev 0)
+++ community-staging-i686/cinnamon-session.install 2015-06-01 22:40:11 UTC 
(rev 134501)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: cinnamon-session/repos/community-staging-i686/timeout.patch (from rev 
134500, cinnamon-session/trunk/timeout.patch)
===
--- community-staging-i686/timeout.patch(rev 0)
+++ community-staging-i686/timeout.patch2015-06-01 22:40:11 UTC (rev 
134501)
@@ -0,0 +1,24 @@
+diff -u -r cinnamon-session-3.4.2/cinnamon-session/csm-session-fill.c 
cinnamon-session-3.4.2-timeout/cinnamon-session/csm-session-fill.c
+--- cinnamon-session-3.4.2/cinnamon-session/csm-session-fill.c 2012-02-02 
15:33:01.0 +0100
 cinnamon-session-3.4.2-timeout/cinnamon-session/csm-session-fill.c 
2012-06-10 02:39:46.184348462 +0200
+@@ -36,7 +36,7 @@
+ #define CSM_KEYFILE_DEFAULT_PROVIDER_PREFIX DefaultProvider
+ 
+ /* See https://bugzilla.gnome.org/show_bug.cgi?id=641992 for discussion */
+-#define CSM_RUNNABLE_HELPER_TIMEOUT 3000 /* ms */
++#define CSM_RUNNABLE_HELPER_TIMEOUT 1 /* ms */
+ 
+ typedef void (*GsmFillHandleProvider) (const char *provides,
+const char *default_provider,
+diff -u -r cinnamon-session-3.4.2/tools/cinnamon-session-check-accelerated.c 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:00:00
  Author: faidoc
Revision: 134492

upgpkg: muffin 2.6.1-1

Modified:
  muffin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 21:35:26 UTC (rev 134491)
+++ PKGBUILD2015-06-01 22:00:00 UTC (rev 134492)
@@ -4,7 +4,7 @@
 # Contributor: Ner0
 
 pkgname=muffin
-pkgver=2.6.0
+pkgver=2.6.1
 pkgrel=1
 pkgdesc=Cinnamon window manager based on Mutter
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!emptydirs')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
-sha256sums=('61239f6dccae6ba2a3cf8b6682b6fe89247910e8978668fc9090d4d676822637')
+sha256sums=('0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:32:01
  Author: faidoc
Revision: 134499

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

Added:
  cinnamon-menus/repos/community-staging-i686/
  cinnamon-menus/repos/community-staging-i686/PKGBUILD
(from rev 134498, cinnamon-menus/trunk/PKGBUILD)
  cinnamon-menus/repos/community-staging-x86_64/
  cinnamon-menus/repos/community-staging-x86_64/PKGBUILD
(from rev 134498, cinnamon-menus/trunk/PKGBUILD)

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

Copied: cinnamon-menus/repos/community-staging-i686/PKGBUILD (from rev 134498, 
cinnamon-menus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 22:32:01 UTC (rev 134499)
@@ -0,0 +1,26 @@
+#Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-menus
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Cinnamon menu specifications
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
+license=('GPL' 'LGPL')
+url=http://www.linuxmint.com;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
+sha256sums=('8fe81ffe9818aa9412b4d89daf846f4c0c01f170838b121d4cba027a48068574')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --sbindir=/usr/bin
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}

Copied: cinnamon-menus/repos/community-staging-x86_64/PKGBUILD (from rev 
134498, cinnamon-menus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-01 22:32:01 UTC (rev 134499)
@@ -0,0 +1,26 @@
+#Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-menus
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Cinnamon menu specifications
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
+license=('GPL' 'LGPL')
+url=http://www.linuxmint.com;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
+sha256sums=('8fe81ffe9818aa9412b4d89daf846f4c0c01f170838b121d4cba027a48068574')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --sbindir=/usr/bin
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:36:29
  Author: faidoc
Revision: 134500

upgpkg: cinnamon-session 2.6.2-1

Modified:
  cinnamon-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 22:32:01 UTC (rev 134499)
+++ PKGBUILD2015-06-01 22:36:29 UTC (rev 134500)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-session
-pkgver=2.6.0
+pkgver=2.6.2
 pkgrel=1
 pkgdesc=The Cinnamon Session Handler
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 url=https://github.com/linuxmint/cinnamon-session;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
 timeout.patch)
-sha256sums=('b738fb4d1f8b93e2217b2c7e0d905e964e0ebde726a4cf5a28296e3eba7daab7'
+sha256sums=('42ea718b77240ff24061203bc03ba6af7d51bcba2323b0bb73a56870e232cb92'
 'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
 
 prepare() {


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 00:57:53
  Author: faidoc
Revision: 134502

upgpkg: cinnamon-settings-daemon 2.6.2-1

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 22:40:11 UTC (rev 134501)
+++ PKGBUILD2015-06-01 22:57:53 UTC (rev 134502)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-settings-daemon
-pkgver=2.6.0
+pkgver=2.6.2
 pkgrel=1
 pkgdesc=The Cinnamon Settings daemon
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 install=cinnamon-settings-daemon.install
 url=https://github.com/linuxmint/cinnamon-settings-daemon;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('6d29f1afcbe2724d50066e6417b0a86b8f84abcf2c717732b2ce094be303f0fc')
+sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:02:17
  Author: faidoc
Revision: 134504

upgpkg: cinnamon-screensaver 2.6.2-1

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 23:01:04 UTC (rev 134503)
+++ PKGBUILD2015-06-01 23:02:17 UTC (rev 134504)
@@ -4,7 +4,7 @@
 # Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-screensaver
-pkgver=2.6.0
+pkgver=2.6.2
 pkgrel=1
 pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('intltool' 'gnome-common')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
cinnamon-screensaver.pam)
-sha256sums=('2e2417e3ed4be3c3744acb4110df7ff5427491fc5d93c8cada6bab2c725a3c15'
+sha256sums=('81a5527b14fdd7b3482fc8a4a1cbddae7f1fd691ad3b117231c0f181806c1594'
 'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
 
 build() {


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:05:15
  Author: faidoc
Revision: 134505

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

Added:
  cinnamon-screensaver/repos/community-staging-i686/
  cinnamon-screensaver/repos/community-staging-i686/PKGBUILD
(from rev 134504, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-staging-i686/cinnamon-screensaver.pam
(from rev 134504, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
  cinnamon-screensaver/repos/community-staging-x86_64/
  cinnamon-screensaver/repos/community-staging-x86_64/PKGBUILD
(from rev 134504, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-staging-x86_64/cinnamon-screensaver.pam
(from rev 134504, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)

---+
 community-staging-i686/PKGBUILD   |   35 
 community-staging-i686/cinnamon-screensaver.pam   |6 +++
 community-staging-x86_64/PKGBUILD |   35 
 community-staging-x86_64/cinnamon-screensaver.pam |6 +++
 4 files changed, 82 insertions(+)

Copied: cinnamon-screensaver/repos/community-staging-i686/PKGBUILD (from rev 
134504, cinnamon-screensaver/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 23:05:15 UTC (rev 134505)
@@ -0,0 +1,35 @@
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-screensaver
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=https://github.com/linuxmint/cinnamon-screensaver;
+backup=(etc/pam.d/cinnamon-screensaver)
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk')
+makedepends=('intltool' 'gnome-common')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
+   cinnamon-screensaver.pam)
+sha256sums=('81a5527b14fdd7b3482fc8a4a1cbddae7f1fd691ad3b117231c0f181806c1594'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+   --libexecdir=/usr/lib/cinnamon-screensaver \
+   --localstatedir=/var \
+   --with-mit-ext --with-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
+}

Copied: 
cinnamon-screensaver/repos/community-staging-i686/cinnamon-screensaver.pam 
(from rev 134504, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
===
--- community-staging-i686/cinnamon-screensaver.pam 
(rev 0)
+++ community-staging-i686/cinnamon-screensaver.pam 2015-06-01 23:05:15 UTC 
(rev 134505)
@@ -0,0 +1,6 @@
+#%PAM-1.0
+auth   include system-auth
+auth   optional pam_gnome_keyring.so
+accountinclude system-auth
+password   include system-auth
+sessioninclude system-auth
\ No newline at end of file

Copied: cinnamon-screensaver/repos/community-staging-x86_64/PKGBUILD (from rev 
134504, cinnamon-screensaver/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-01 23:05:15 UTC (rev 134505)
@@ -0,0 +1,35 @@
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-screensaver
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=https://github.com/linuxmint/cinnamon-screensaver;
+backup=(etc/pam.d/cinnamon-screensaver)
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk')
+makedepends=('intltool' 'gnome-common')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
+   cinnamon-screensaver.pam)
+sha256sums=('81a5527b14fdd7b3482fc8a4a1cbddae7f1fd691ad3b117231c0f181806c1594'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+   --libexecdir=/usr/lib/cinnamon-screensaver \
+   --localstatedir=/var \
+   --with-mit-ext --with-systemd

[arch-commits] Commit in cinnamon-control-center/repos (6 files)

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:08:38
  Author: faidoc
Revision: 134506

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

Added:
  cinnamon-control-center/repos/community-staging-i686/
  cinnamon-control-center/repos/community-staging-i686/PKGBUILD
(from rev 134505, cinnamon-control-center/trunk/PKGBUILD)
  
cinnamon-control-center/repos/community-staging-i686/cinnamon-control-center.install
(from rev 134505, 
cinnamon-control-center/trunk/cinnamon-control-center.install)
  cinnamon-control-center/repos/community-staging-x86_64/
  cinnamon-control-center/repos/community-staging-x86_64/PKGBUILD
(from rev 134505, cinnamon-control-center/trunk/PKGBUILD)
  
cinnamon-control-center/repos/community-staging-x86_64/cinnamon-control-center.install
(from rev 134505, 
cinnamon-control-center/trunk/cinnamon-control-center.install)

--+
 community-staging-i686/PKGBUILD  |   55 +
 community-staging-i686/cinnamon-control-center.install   |   11 ++
 community-staging-x86_64/PKGBUILD|   55 +
 community-staging-x86_64/cinnamon-control-center.install |   11 ++
 4 files changed, 132 insertions(+)

Copied: cinnamon-control-center/repos/community-staging-i686/PKGBUILD (from rev 
134505, cinnamon-control-center/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 23:08:38 UTC (rev 134506)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-control-center
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=The Control Center for Cinnamon
+arch=('i686' 'x86_64')
+depends=('cinnamon-settings-daemon' 'cinnamon-translations' 'cinnamon-menus'
+ 'libgnomekbd' 'network-manager-applet')
+optdepends=('gnome-color-manager: for color management tasks')
+makedepends=('intltool' 'gnome-common' 'docbook-xsl')
+url=https://github.com/linuxmint/cinnamon-control-center;
+install=cinnamon-control-center.install
+license=('GPL')
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-control-center/archive/$pkgver.tar.gz;)
+sha256sums=('bbc39ac8ddcbc06b6aada1ef271f95f5f0d0fe439bec38b9cd847af420305c49')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-systemd \
+  --disable-update-mimedb
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656229
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # Remove unused stuff
+  make -C panels/sound DESTDIR=$pkgdir uninstall
+  make -C panels/sound/data DESTDIR=$pkgdir install
+  make -C shell DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-directoryDATA uninstall-uiDATA
+  rm 
$pkgdir/usr/share/applications/cinnamon-{control-center,datetime-panel,region-panel,sound-panel}.desktop
+  rm -R $pkgdir/etc
+
+  # Fix a warning
+  chown 102:0 $pkgdir/usr/share/polkit-1/rules.d
+  chmod 700 $pkgdir/usr/share/polkit-1/rules.d
+}

Copied: 
cinnamon-control-center/repos/community-staging-i686/cinnamon-control-center.install
 (from rev 134505, 
cinnamon-control-center/trunk/cinnamon-control-center.install)
===
--- community-staging-i686/cinnamon-control-center.install  
(rev 0)
+++ community-staging-i686/cinnamon-control-center.install  2015-06-01 
23:08:38 UTC (rev 134506)
@@ -0,0 +1,11 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+post_install $1
+}
\ No newline at end of file

Copied: cinnamon-control-center/repos/community-staging-x86_64/PKGBUILD (from 
rev 134505, cinnamon-control-center/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-01 23:08:38 UTC (rev 134506)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-control-center
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=The Control Center for Cinnamon
+arch=('i686' 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:15:54
  Author: faidoc
Revision: 134507

upgpkg: cinnamon 2.6.6-1

Modified:
  cinnamon/trunk/PKGBUILD
  cinnamon/trunk/set_wheel.patch

-+
 PKGBUILD|8 
 set_wheel.patch |   38 +-
 2 files changed, 5 insertions(+), 41 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 23:08:38 UTC (rev 134506)
+++ PKGBUILD2015-06-01 23:15:54 UTC (rev 134507)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=2.4.8
+pkgver=2.6.6
 pkgrel=1
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
  'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
  'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
  'network-manager-applet' 'nemo' 'polkit-gnome')
-makedepends=('gnome-common' 'intltool' 'gobject-introspection')
+makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
 options=('!emptydirs')
 install=${pkgname}.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
@@ -25,8 +25,8 @@
 set_wheel.patch
 gnome-3.14.patch
 default-theme.patch)
-sha256sums=('5dc693cb57adce95cf917c94ee4e02fa8740e5cd5edbd8ee9cdeed81604aefd3'
-'3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444'
+sha256sums=('e0207d1cda13ccbe51f78be7f35096a758c94e130cca09adffb996cd9feb5918'
+'0f6a4055fc70f727b90c3d97ebc99f6bf3028b8cc7189736d8e0f1dac6fac137'
 'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058'
 '566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
 

Modified: set_wheel.patch
===
--- set_wheel.patch 2015-06-01 23:08:38 UTC (rev 134506)
+++ set_wheel.patch 2015-06-01 23:15:54 UTC (rev 134507)
@@ -1,41 +1,5 @@
 --- a/files/usr/lib/cinnamon-settings-users/cinnamon-settings-users.py
 +++ b/files/usr/lib/cinnamon-settings-users/cinnamon-settings-users.py
-@@ -144,12 +144,11 @@ class EditableEntry (Gtk.Notebook):
- 
- class PasswordDialog(Gtk.Dialog):
- 
--def __init__ (self, user, password_mask, group_mask):
-+def __init__ (self, user, password_mask):
- super(PasswordDialog, self).__init__()
- 
- self.user = user
- self.password_mask = password_mask
--self.group_mask = group_mask
- 
- self.set_modal(True)
- self.set_skip_taskbar_hint(True)
-@@ -215,12 +214,6 @@ class PasswordDialog(Gtk.Dialog):
- def change_password(self):
- newpass = self.new_password.get_text()
- self.user.set_password(newpass, )
--os.system(gpasswd -d '%s' nopasswdlogin % self.user.get_user_name())
--mask = self.group_mask.get_text()
--mask = mask.split(, )
--mask.remove(nopasswdlogin)
--mask = , .join(mask)
--self.group_mask.set_text(mask)
- self.password_mask.set_text(u'\u2022\u2022\u2022\u2022\u2022\u2022')
- self.destroy()  
- 
-@@ -515,7 +508,7 @@ class Module:
- model, treeiter = self.users_treeview.get_selection().get_selected()
- if treeiter != None:
- user = model[treeiter][INDEX_USER_OBJECT]   
--dialog = PasswordDialog(user, self.password_mask, 
self.groups_label)
-+dialog = PasswordDialog(user, self.password_mask)
- response = dialog.run()
- 
- def _on_groups_button_clicked(self, widget): 
 @@ -745,11 +738,11 @@ class Module:
  pixbuf = 
GdkPixbuf.Pixbuf.new_from_file_at_size(/usr/share/cinnamon/faces/user-generic.png,
 48, 48)
  description = b%s/b\n%s % (fullname, username)
@@ -47,7 +11,7 @@
 +os.system(usermod %s -G %s,wheel % (username, username)) 
  else:
 -os.system(usermod %s -G %s,nopasswdlogin % (username, 
username))
-+os.system(usermod %s -G %s % (username, username))
++os.system(usermod %s -G users,nopasswdlogin % username)
  self.load_groups()
  dialog.destroy()
   


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:20:29
  Author: faidoc
Revision: 134509

upgpkg: nemo 2.6.5-1

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 23:19:42 UTC (rev 134508)
+++ PKGBUILD2015-06-01 23:20:29 UTC (rev 134509)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=2.4.5
+pkgver=2.6.5
 pkgrel=1
 pkgdesc=Cinnamon file manager (Nautilus fork)
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 install=nemo.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
 desktop-theme.patch)
-sha256sums=('58d1c0116aeb11ca965e4bf93af9c7e3226fca2855192c49b071d7745b2a7da0'
+sha256sums=('1a7f91498fdcb8a75b0eb4e06ab50541e8178d3b91af274af4e2d5fcfe845e2d'
 '565aaf8275bc255c89dce44dca3e353e35d093411558aa278b4f52dd49f9d57d')
 
 prepare() {
@@ -29,7 +29,7 @@
   patch -Np1 -i ../desktop-theme.patch
 
   # Fix build
-  sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
+  #sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
 
   # Rename 'Files' app name to avoid having the same as nautilus
   sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:53
  Author: faidoc
Revision: 134518

db-move: moved cinnamon-screensaver from [community-staging] to [community] 
(i686, x86_64)

Added:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
(from rev 134513, 
cinnamon-screensaver/repos/community-staging-i686/PKGBUILD)
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
(from rev 134513, 
cinnamon-screensaver/repos/community-staging-i686/cinnamon-screensaver.pam)
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 134513, 
cinnamon-screensaver/repos/community-staging-x86_64/PKGBUILD)
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam
(from rev 134513, 
cinnamon-screensaver/repos/community-staging-x86_64/cinnamon-screensaver.pam)
Deleted:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
  cinnamon-screensaver/repos/community-staging-i686/
  cinnamon-screensaver/repos/community-staging-x86_64/
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam

---+
 /PKGBUILD |   70 
 /cinnamon-screensaver.pam |   12 
 community-i686/PKGBUILD   |   35 --
 community-i686/cinnamon-screensaver.pam   |6 --
 community-x86_64/PKGBUILD |   35 --
 community-x86_64/cinnamon-screensaver.pam |6 --
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:27:51 UTC (rev 134517)
+++ community-i686/PKGBUILD 2015-06-01 23:27:53 UTC (rev 134518)
@@ -1,35 +0,0 @@
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-screensaver
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
-arch=('i686' 'x86_64')
-license=('GPL')
-url=https://github.com/linuxmint/cinnamon-screensaver;
-backup=(etc/pam.d/cinnamon-screensaver)
-depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk')
-makedepends=('intltool' 'gnome-common')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
-   cinnamon-screensaver.pam)
-sha256sums=('2e2417e3ed4be3c3744acb4110df7ff5427491fc5d93c8cada6bab2c725a3c15'
-'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-   --libexecdir=/usr/lib/cinnamon-screensaver \
-   --localstatedir=/var \
-   --with-mit-ext --with-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
-}

Copied: cinnamon-screensaver/repos/community-i686/PKGBUILD (from rev 134513, 
cinnamon-screensaver/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:27:53 UTC (rev 134518)
@@ -0,0 +1,35 @@
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-screensaver
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=https://github.com/linuxmint/cinnamon-screensaver;
+backup=(etc/pam.d/cinnamon-screensaver)
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk')
+makedepends=('intltool' 'gnome-common')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
+   cinnamon-screensaver.pam)
+sha256sums=('81a5527b14fdd7b3482fc8a4a1cbddae7f1fd691ad3b117231c0f181806c1594'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+   --libexecdir=/usr/lib/cinnamon-screensaver \
+   --localstatedir=/var \
+   --with-mit-ext --with-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
+}

Deleted: community-i686/cinnamon-screensaver.pam
===
--- 

[arch-commits] Commit in cinnamon-settings-daemon/repos (10 files)

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:54
  Author: faidoc
Revision: 134519

db-move: moved cinnamon-settings-daemon from [community-staging] to [community] 
(i686, x86_64)

Added:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
(from rev 134513, 
cinnamon-settings-daemon/repos/community-staging-i686/PKGBUILD)
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
(from rev 134513, 
cinnamon-settings-daemon/repos/community-staging-i686/cinnamon-settings-daemon.install)
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 134513, 
cinnamon-settings-daemon/repos/community-staging-x86_64/PKGBUILD)
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install
(from rev 134513, 
cinnamon-settings-daemon/repos/community-staging-x86_64/cinnamon-settings-daemon.install)
Deleted:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
  cinnamon-settings-daemon/repos/community-staging-i686/
  cinnamon-settings-daemon/repos/community-staging-x86_64/
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install

---+
 /PKGBUILD |   80 
 /cinnamon-settings-daemon.install |   24 ++
 community-i686/PKGBUILD   |   40 --
 community-i686/cinnamon-settings-daemon.install   |   12 ---
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/cinnamon-settings-daemon.install |   12 ---
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:27:53 UTC (rev 134518)
+++ community-i686/PKGBUILD 2015-06-01 23:27:54 UTC (rev 134519)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-settings-daemon
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=The Cinnamon Settings daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
- 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom')
-makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
-options=('!emptydirs')
-install=cinnamon-settings-daemon.install
-url=https://github.com/linuxmint/cinnamon-settings-daemon;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('6d29f1afcbe2724d50066e6417b0a86b8f84abcf2c717732b2ce094be303f0fc')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-settings-daemon/repos/community-i686/PKGBUILD (from rev 
134513, cinnamon-settings-daemon/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:27:54 UTC (rev 134519)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-settings-daemon
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=The Cinnamon Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
+ 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom')
+makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
+options=('!emptydirs')
+install=cinnamon-settings-daemon.install
+url=https://github.com/linuxmint/cinnamon-settings-daemon;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
+sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-settings-daemon.install

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:28:00
  Author: faidoc
Revision: 134521

db-move: moved nemo from [community-staging] to [community] (i686, x86_64)

Added:
  nemo/repos/community-i686/PKGBUILD
(from rev 134513, nemo/repos/community-staging-i686/PKGBUILD)
  nemo/repos/community-i686/desktop-theme.patch
(from rev 134513, nemo/repos/community-staging-i686/desktop-theme.patch)
  nemo/repos/community-i686/nemo.install
(from rev 134513, nemo/repos/community-staging-i686/nemo.install)
  nemo/repos/community-x86_64/PKGBUILD
(from rev 134513, nemo/repos/community-staging-x86_64/PKGBUILD)
  nemo/repos/community-x86_64/desktop-theme.patch
(from rev 134513, nemo/repos/community-staging-x86_64/desktop-theme.patch)
  nemo/repos/community-x86_64/nemo.install
(from rev 134513, nemo/repos/community-staging-x86_64/nemo.install)
Deleted:
  nemo/repos/community-i686/PKGBUILD
  nemo/repos/community-i686/desktop-theme.patch
  nemo/repos/community-i686/nemo.install
  nemo/repos/community-staging-i686/
  nemo/repos/community-staging-x86_64/
  nemo/repos/community-x86_64/PKGBUILD
  nemo/repos/community-x86_64/desktop-theme.patch
  nemo/repos/community-x86_64/nemo.install

--+
 /PKGBUILD|  110 +
 /desktop-theme.patch |  262 +
 /nemo.install|   28 +++
 community-i686/PKGBUILD  |   55 --
 community-i686/desktop-theme.patch   |  131 
 community-i686/nemo.install  |   14 -
 community-x86_64/PKGBUILD|   55 --
 community-x86_64/desktop-theme.patch |  131 
 community-x86_64/nemo.install|   14 -
 9 files changed, 400 insertions(+), 400 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:27:56 UTC (rev 134520)
+++ community-i686/PKGBUILD 2015-06-01 23:28:00 UTC (rev 134521)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=2.4.5
-pkgrel=1
-pkgdesc=Cinnamon file manager (Nautilus fork)
-arch=('i686' 'x86_64')
-url=https://github.com/linuxmint/nemo;
-license=('GPL')
-depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
- 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations')
-makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
-options=('!emptydirs')
-install=nemo.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
-desktop-theme.patch)
-sha256sums=('58d1c0116aeb11ca965e4bf93af9c7e3226fca2855192c49b071d7745b2a7da0'
-'565aaf8275bc255c89dce44dca3e353e35d093411558aa278b4f52dd49f9d57d')
-
-prepare() {
-  cd linuxmint-nemo-*
-
-  # Python2 fix
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Add application-specific theme for Adwaita
-  patch -Np1 -i ../desktop-theme.patch
-
-  # Fix build
-  sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
-
-  # Rename 'Files' app name to avoid having the same as nautilus
-  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
-}
-
-build() {
-  cd linuxmint-nemo-*
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/nemo \
-  --disable-update-mimedb \
-  --disable-tracker \
-  --disable-gtk-doc-html \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd linuxmint-nemo-*
-
-  make DESTDIR=$pkgdir/ install
-}

Copied: nemo/repos/community-i686/PKGBUILD (from rev 134513, 
nemo/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:28:00 UTC (rev 134521)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.6.5
+pkgrel=1
+pkgdesc=Cinnamon file manager (Nautilus fork)
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/nemo;
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
+ 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
+options=('!emptydirs')
+install=nemo.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
+desktop-theme.patch)
+sha256sums=('1a7f91498fdcb8a75b0eb4e06ab50541e8178d3b91af274af4e2d5fcfe845e2d'
+'565aaf8275bc255c89dce44dca3e353e35d093411558aa278b4f52dd49f9d57d')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  find -type f | xargs sed -i 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:50
  Author: faidoc
Revision: 134516

db-move: moved cinnamon-desktop from [community-staging] to [community] (i686, 
x86_64)

Added:
  cinnamon-desktop/repos/community-i686/PKGBUILD
(from rev 134513, cinnamon-desktop/repos/community-staging-i686/PKGBUILD)
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
(from rev 134513, 
cinnamon-desktop/repos/community-staging-i686/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
(from rev 134513, 
cinnamon-desktop/repos/community-staging-i686/gnome-3.14.patch)
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 134513, cinnamon-desktop/repos/community-staging-x86_64/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
(from rev 134513, 
cinnamon-desktop/repos/community-staging-x86_64/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch
(from rev 134513, 
cinnamon-desktop/repos/community-staging-x86_64/gnome-3.14.patch)
Deleted:
  cinnamon-desktop/repos/community-i686/PKGBUILD
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
  cinnamon-desktop/repos/community-staging-i686/
  cinnamon-desktop/repos/community-staging-x86_64/
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch

---+
 /PKGBUILD |   80 
 /cinnamon-desktop.install |   22 +++
 /gnome-3.14.patch |   48 
 community-i686/PKGBUILD   |   40 --
 community-i686/cinnamon-desktop.install   |   11 ---
 community-i686/gnome-3.14.patch   |   24 
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/cinnamon-desktop.install |   11 ---
 community-x86_64/gnome-3.14.patch |   24 
 9 files changed, 150 insertions(+), 150 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:27:48 UTC (rev 134515)
+++ community-i686/PKGBUILD 2015-06-01 23:27:50 UTC (rev 134516)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
-# Contributor:  Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-desktop
-pkgver=2.6.4
-pkgrel=1
-pkgdesc=Library with common API for various Cinnamon modules
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(gtk3 libxkbfile python2 glib2 libgsystem)
-makedepends=(intltool gobject-introspection gnome-common python2)
-url=https://github.com/linuxmint/cinnamon-desktop;
-install=cinnamon-desktop.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
-gnome-3.14.patch)
-sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
-'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Update configuration for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-
-  # Workaround for make error until it is fixed upstream
-  cd libcinnamon-desktop/libgsystem  ln -sr '../$(libgsystem_srcpath)/.deps' 
.deps
-  cd ../../
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
\ No newline at end of file

Copied: cinnamon-desktop/repos/community-i686/PKGBUILD (from rev 134513, 
cinnamon-desktop/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:27:50 UTC (rev 134516)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.6.4
+pkgrel=1
+pkgdesc=Library with common API for various Cinnamon modules
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxkbfile python2 glib2 libgsystem)
+makedepends=(intltool gobject-introspection gnome-common python2)
+url=https://github.com/linuxmint/cinnamon-desktop;
+install=cinnamon-desktop.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
+gnome-3.14.patch)
+sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+}
+

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:47
  Author: faidoc
Revision: 134514

db-move: moved cinnamon from [community-staging] to [community] (i686, x86_64)

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 134513, cinnamon/repos/community-staging-i686/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 134513, cinnamon/repos/community-staging-i686/cinnamon.install)
  cinnamon/repos/community-i686/default-theme.patch
(from rev 134513, cinnamon/repos/community-staging-i686/default-theme.patch)
  cinnamon/repos/community-i686/gnome-3.14.patch
(from rev 134513, cinnamon/repos/community-staging-i686/gnome-3.14.patch)
  cinnamon/repos/community-i686/set_wheel.patch
(from rev 134513, cinnamon/repos/community-staging-i686/set_wheel.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 134513, cinnamon/repos/community-staging-x86_64/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 134513, cinnamon/repos/community-staging-x86_64/cinnamon.install)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 134513, 
cinnamon/repos/community-staging-x86_64/default-theme.patch)
  cinnamon/repos/community-x86_64/gnome-3.14.patch
(from rev 134513, cinnamon/repos/community-staging-x86_64/gnome-3.14.patch)
  cinnamon/repos/community-x86_64/set_wheel.patch
(from rev 134513, cinnamon/repos/community-staging-x86_64/set_wheel.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/default-theme.patch
  cinnamon/repos/community-i686/gnome-3.14.patch
  cinnamon/repos/community-i686/set_wheel.patch
  cinnamon/repos/community-staging-i686/
  cinnamon/repos/community-staging-x86_64/
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/gnome-3.14.patch
  cinnamon/repos/community-x86_64/set_wheel.patch

--+
 /PKGBUILD|  178 +
 /cinnamon.install|   24 
 /default-theme.patch |   50 +
 /gnome-3.14.patch|   50 +
 /set_wheel.patch |   34 ++
 community-i686/PKGBUILD  |   89 
 community-i686/cinnamon.install  |   12 --
 community-i686/default-theme.patch   |   25 
 community-i686/gnome-3.14.patch  |   25 
 community-i686/set_wheel.patch   |   53 -
 community-x86_64/PKGBUILD|   89 
 community-x86_64/cinnamon.install|   12 --
 community-x86_64/default-theme.patch |   25 
 community-x86_64/gnome-3.14.patch|   25 
 community-x86_64/set_wheel.patch |   53 -
 15 files changed, 336 insertions(+), 408 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:26:39 UTC (rev 134513)
+++ community-i686/PKGBUILD 2015-06-01 23:27:47 UTC (rev 134514)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: M0Rf30
-# Contributor: unifiedlinux
-# Contributor: CReimer
-
-pkgname=cinnamon
-pkgver=2.4.8
-pkgrel=1
-pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
-arch=('i686' 'x86_64')
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
- 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
- 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
- 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
- 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
- 'network-manager-applet' 'nemo' 'polkit-gnome')
-makedepends=('gnome-common' 'intltool')
-options=('!emptydirs')
-install=${pkgname}.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
-set_wheel.patch
-gnome-3.14.patch
-default-theme.patch)
-sha256sums=('5dc693cb57adce95cf917c94ee4e02fa8740e5cd5edbd8ee9cdeed81604aefd3'
-'3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444'
-'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058'
-'566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
-
-prepare() {
-  cd ${srcdir}/Cinnamon*
-
-  # Python2 fix
-  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Use wheel group instread of sudo
-  patch -Np1 -i 

[arch-commits] Commit in cinnamon-control-center/repos (10 files)

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:48
  Author: faidoc
Revision: 134515

db-move: moved cinnamon-control-center from [community-staging] to [community] 
(i686, x86_64)

Added:
  cinnamon-control-center/repos/community-i686/PKGBUILD
(from rev 134513, 
cinnamon-control-center/repos/community-staging-i686/PKGBUILD)
  cinnamon-control-center/repos/community-i686/cinnamon-control-center.install
(from rev 134513, 
cinnamon-control-center/repos/community-staging-i686/cinnamon-control-center.install)
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
(from rev 134513, 
cinnamon-control-center/repos/community-staging-x86_64/PKGBUILD)
  cinnamon-control-center/repos/community-x86_64/cinnamon-control-center.install
(from rev 134513, 
cinnamon-control-center/repos/community-staging-x86_64/cinnamon-control-center.install)
Deleted:
  cinnamon-control-center/repos/community-i686/PKGBUILD
  cinnamon-control-center/repos/community-i686/cinnamon-control-center.install
  cinnamon-control-center/repos/community-staging-i686/
  cinnamon-control-center/repos/community-staging-x86_64/
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
  cinnamon-control-center/repos/community-x86_64/cinnamon-control-center.install

--+
 /PKGBUILD|  110 +
 /cinnamon-control-center.install |   22 
 community-i686/PKGBUILD  |   55 --
 community-i686/cinnamon-control-center.install   |   11 --
 community-x86_64/PKGBUILD|   55 --
 community-x86_64/cinnamon-control-center.install |   11 --
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:27:47 UTC (rev 134514)
+++ community-i686/PKGBUILD 2015-06-01 23:27:48 UTC (rev 134515)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Based on gnome-control-center:
-# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-control-center
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=The Control Center for Cinnamon
-arch=('i686' 'x86_64')
-depends=('cinnamon-settings-daemon' 'cinnamon-translations' 'cinnamon-menus'
- 'libgnomekbd' 'network-manager-applet')
-optdepends=('gnome-color-manager: for color management tasks')
-makedepends=('intltool' 'gnome-common' 'docbook-xsl')
-url=https://github.com/linuxmint/cinnamon-control-center;
-install=cinnamon-control-center.install
-license=('GPL')
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-control-center/archive/$pkgver.tar.gz;)
-sha256sums=('bbc39ac8ddcbc06b6aada1ef271f95f5f0d0fe439bec38b9cd847af420305c49')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --enable-systemd \
-  --disable-update-mimedb
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656229
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  # Remove unused stuff
-  make -C panels/sound DESTDIR=$pkgdir uninstall
-  make -C panels/sound/data DESTDIR=$pkgdir install
-  make -C shell DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-directoryDATA uninstall-uiDATA
-  rm 
$pkgdir/usr/share/applications/cinnamon-{control-center,datetime-panel,region-panel,sound-panel}.desktop
-  rm -R $pkgdir/etc
-
-  # Fix a warning
-  chown 102:0 $pkgdir/usr/share/polkit-1/rules.d
-  chmod 700 $pkgdir/usr/share/polkit-1/rules.d
-}

Copied: cinnamon-control-center/repos/community-i686/PKGBUILD (from rev 134513, 
cinnamon-control-center/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:27:48 UTC (rev 134515)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-control-center
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=The Control Center for Cinnamon
+arch=('i686' 'x86_64')
+depends=('cinnamon-settings-daemon' 'cinnamon-translations' 'cinnamon-menus'
+ 'libgnomekbd' 'network-manager-applet')
+optdepends=('gnome-color-manager: for color management tasks')
+makedepends=('intltool' 'gnome-common' 'docbook-xsl')

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:56
  Author: faidoc
Revision: 134520

db-move: moved cinnamon-translations from [community-staging] to [community] 
(any)

Added:
  cinnamon-translations/repos/community-any/PKGBUILD
(from rev 134513, 
cinnamon-translations/repos/community-staging-any/PKGBUILD)
Deleted:
  cinnamon-translations/repos/community-any/PKGBUILD
  cinnamon-translations/repos/community-staging-any/

+
 /PKGBUILD  |   24 
 community-any/PKGBUILD |   24 
 2 files changed, 24 insertions(+), 24 deletions(-)

Deleted: community-any/PKGBUILD
===
--- community-any/PKGBUILD  2015-06-01 23:27:54 UTC (rev 134519)
+++ community-any/PKGBUILD  2015-06-01 23:27:56 UTC (rev 134520)
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD 98057 2013-10-05 02:33:20Z faidoc $
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-
-pkgname=cinnamon-translations
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Translations for Cinnamon and Nemo
-arch=(any)
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
-sha256sums=('c88e415cfe142a5f0cbe10488d296242e91e8e0f3bb7802ad94d3a5747bf5f88')
-
-build() {
-   cd ${pkgname}-${pkgver}
-   make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  
-  install -m 0755 -d ${pkgdir}/usr/share/locale/ 
-  cp -Rp usr/share/locale/* ${pkgdir}/usr/share/locale/
-}

Copied: cinnamon-translations/repos/community-any/PKGBUILD (from rev 134513, 
cinnamon-translations/repos/community-staging-any/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-06-01 23:27:56 UTC (rev 134520)
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 98057 2013-10-05 02:33:20Z faidoc $
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-translations
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Translations for Cinnamon and Nemo
+arch=(any)
+url=http://cinnamon.linuxmint.com/;
+license=('GPL2')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
+sha256sums=('ed2c4a63a0193f770b0340a3281219a19e5e7102e287d533309f2f6de0dbf3c0')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  
+  install -m 0755 -d ${pkgdir}/usr/share/locale/ 
+  cp -Rp usr/share/locale/* ${pkgdir}/usr/share/locale/
+}


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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:27:51
  Author: faidoc
Revision: 134517

db-move: moved cinnamon-menus from [community-staging] to [community] (i686, 
x86_64)

Added:
  cinnamon-menus/repos/community-i686/PKGBUILD
(from rev 134513, cinnamon-menus/repos/community-staging-i686/PKGBUILD)
  cinnamon-menus/repos/community-x86_64/PKGBUILD
(from rev 134513, cinnamon-menus/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  cinnamon-menus/repos/community-i686/PKGBUILD
  cinnamon-menus/repos/community-staging-i686/
  cinnamon-menus/repos/community-staging-x86_64/
  cinnamon-menus/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:27:50 UTC (rev 134516)
+++ community-i686/PKGBUILD 2015-06-01 23:27:51 UTC (rev 134517)
@@ -1,26 +0,0 @@
-#Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-
-pkgname=cinnamon-menus
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Cinnamon menu specifications
-arch=('i686' 'x86_64')
-depends=('glib2')
-makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
-license=('GPL' 'LGPL')
-url=http://www.linuxmint.com;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
-sha256sums=('8fe81ffe9818aa9412b4d89daf846f4c0c01f170838b121d4cba027a48068574')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --sbindir=/usr/bin
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-menus/repos/community-i686/PKGBUILD (from rev 134513, 
cinnamon-menus/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:27:51 UTC (rev 134517)
@@ -0,0 +1,26 @@
+#Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-menus
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Cinnamon menu specifications
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
+license=('GPL' 'LGPL')
+url=http://www.linuxmint.com;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
+sha256sums=('8fe81ffe9818aa9412b4d89daf846f4c0c01f170838b121d4cba027a48068574')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --sbindir=/usr/bin
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-01 23:27:50 UTC (rev 134516)
+++ community-x86_64/PKGBUILD   2015-06-01 23:27:51 UTC (rev 134517)
@@ -1,26 +0,0 @@
-#Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-
-pkgname=cinnamon-menus
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Cinnamon menu specifications
-arch=('i686' 'x86_64')
-depends=('glib2')
-makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
-license=('GPL' 'LGPL')
-url=http://www.linuxmint.com;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
-sha256sums=('8fe81ffe9818aa9412b4d89daf846f4c0c01f170838b121d4cba027a48068574')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --sbindir=/usr/bin
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-menus/repos/community-x86_64/PKGBUILD (from rev 134513, 
cinnamon-menus/repos/community-staging-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-01 23:27:51 UTC (rev 134517)
@@ -0,0 +1,26 @@
+#Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-menus
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Cinnamon menu specifications
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
+license=('GPL' 'LGPL')
+url=http://www.linuxmint.com;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
+sha256sums=('8fe81ffe9818aa9412b4d89daf846f4c0c01f170838b121d4cba027a48068574')
+
+build() {
+  cd 

[arch-commits] Commit in cinnamon-settings-daemon/repos (6 files)

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:01:04
  Author: faidoc
Revision: 134503

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

Added:
  cinnamon-settings-daemon/repos/community-staging-i686/
  cinnamon-settings-daemon/repos/community-staging-i686/PKGBUILD
(from rev 134502, cinnamon-settings-daemon/trunk/PKGBUILD)
  
cinnamon-settings-daemon/repos/community-staging-i686/cinnamon-settings-daemon.install
(from rev 134502, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
  cinnamon-settings-daemon/repos/community-staging-x86_64/
  cinnamon-settings-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 134502, cinnamon-settings-daemon/trunk/PKGBUILD)
  
cinnamon-settings-daemon/repos/community-staging-x86_64/cinnamon-settings-daemon.install
(from rev 134502, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-i686/cinnamon-settings-daemon.install   |   12 +++
 community-staging-x86_64/PKGBUILD |   40 
 community-staging-x86_64/cinnamon-settings-daemon.install |   12 +++
 4 files changed, 104 insertions(+)

Copied: cinnamon-settings-daemon/repos/community-staging-i686/PKGBUILD (from 
rev 134502, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 23:01:04 UTC (rev 134503)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-settings-daemon
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=The Cinnamon Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
+ 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom')
+makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
+options=('!emptydirs')
+install=cinnamon-settings-daemon.install
+url=https://github.com/linuxmint/cinnamon-settings-daemon;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
+sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: 
cinnamon-settings-daemon/repos/community-staging-i686/cinnamon-settings-daemon.install
 (from rev 134502, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
===
--- community-staging-i686/cinnamon-settings-daemon.install 
(rev 0)
+++ community-staging-i686/cinnamon-settings-daemon.install 2015-06-01 
23:01:04 UTC (rev 134503)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: cinnamon-settings-daemon/repos/community-staging-x86_64/PKGBUILD (from 
rev 134502, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-01 23:01:04 UTC (rev 134503)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-settings-daemon
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=The Cinnamon Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
+ 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom')
+makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
+options=('!emptydirs')
+install=cinnamon-settings-daemon.install
+url=https://github.com/linuxmint/cinnamon-settings-daemon;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
+sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:19:42
  Author: faidoc
Revision: 134508

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

Added:
  cinnamon/repos/community-staging-i686/
  cinnamon/repos/community-staging-i686/PKGBUILD
(from rev 134507, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-staging-i686/cinnamon.install
(from rev 134507, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-staging-i686/default-theme.patch
(from rev 134507, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-staging-i686/gnome-3.14.patch
(from rev 134507, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-staging-i686/set_wheel.patch
(from rev 134507, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-staging-x86_64/
  cinnamon/repos/community-staging-x86_64/PKGBUILD
(from rev 134507, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-staging-x86_64/cinnamon.install
(from rev 134507, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-staging-x86_64/default-theme.patch
(from rev 134507, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-staging-x86_64/gnome-3.14.patch
(from rev 134507, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-staging-x86_64/set_wheel.patch
(from rev 134507, cinnamon/trunk/set_wheel.patch)

--+
 community-staging-i686/PKGBUILD  |   89 +
 community-staging-i686/cinnamon.install  |   12 +++
 community-staging-i686/default-theme.patch   |   25 +++
 community-staging-i686/gnome-3.14.patch  |   25 +++
 community-staging-i686/set_wheel.patch   |   17 
 community-staging-x86_64/PKGBUILD|   89 +
 community-staging-x86_64/cinnamon.install|   12 +++
 community-staging-x86_64/default-theme.patch |   25 +++
 community-staging-x86_64/gnome-3.14.patch|   25 +++
 community-staging-x86_64/set_wheel.patch |   17 
 10 files changed, 336 insertions(+)

Copied: cinnamon/repos/community-staging-i686/PKGBUILD (from rev 134507, 
cinnamon/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 23:19:42 UTC (rev 134508)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: M0Rf30
+# Contributor: unifiedlinux
+# Contributor: CReimer
+
+pkgname=cinnamon
+pkgver=2.6.6
+pkgrel=1
+pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
+arch=('i686' 'x86_64')
+url=http://cinnamon.linuxmint.com/;
+license=('GPL2')
+depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
+ 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
+ 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
+ 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
+ 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
+ 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
+ 'network-manager-applet' 'nemo' 'polkit-gnome')
+makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
+options=('!emptydirs')
+install=${pkgname}.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
+set_wheel.patch
+gnome-3.14.patch
+default-theme.patch)
+sha256sums=('e0207d1cda13ccbe51f78be7f35096a758c94e130cca09adffb996cd9feb5918'
+'0f6a4055fc70f727b90c3d97ebc99f6bf3028b8cc7189736d8e0f1dac6fac137'
+'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058'
+'566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
+
+prepare() {
+  cd ${srcdir}/Cinnamon*
+
+  # Python2 fix
+  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Use wheel group instread of sudo
+  patch -Np1 -i ../set_wheel.patch
+
+  # Some fixes for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+
+  # Set default theme to 'cinnamon'
+  patch -Np1 -i ../default-theme.patch
+
+  # Add polkit agent to required components
+  sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 \
+files/usr/share/cinnamon-session/sessions/cinnamon*.session
+
+  # Fix for the python2 PAM module  
+  sed -i 's:import PAM:import pam:' 
files/usr/lib/cinnamon-settings/modules/cs_user.py
+
+  # Use pkexec instead of gksu
+  sed -i 's/gksu/pkexec/' files/usr/bin/cinnamon-settings-users
+
+  # Check for the cc-panel path, not for the unneeded binary
+  sed -i 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:22:28
  Author: faidoc
Revision: 134510

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

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

--+
 community-staging-i686/PKGBUILD  |   55 ++
 community-staging-i686/desktop-theme.patch   |  131 +
 community-staging-i686/nemo.install  |   14 ++
 community-staging-x86_64/PKGBUILD|   55 ++
 community-staging-x86_64/desktop-theme.patch |  131 +
 community-staging-x86_64/nemo.install|   14 ++
 6 files changed, 400 insertions(+)

Copied: nemo/repos/community-staging-i686/PKGBUILD (from rev 134509, 
nemo/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-01 23:22:28 UTC (rev 134510)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.6.5
+pkgrel=1
+pkgdesc=Cinnamon file manager (Nautilus fork)
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/nemo;
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
+ 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
+options=('!emptydirs')
+install=nemo.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
+desktop-theme.patch)
+sha256sums=('1a7f91498fdcb8a75b0eb4e06ab50541e8178d3b91af274af4e2d5fcfe845e2d'
+'565aaf8275bc255c89dce44dca3e353e35d093411558aa278b4f52dd49f9d57d')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Add application-specific theme for Adwaita
+  patch -Np1 -i ../desktop-theme.patch
+
+  # Fix build
+  #sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
+
+  # Rename 'Files' app name to avoid having the same as nautilus
+  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
+}
+
+build() {
+  cd linuxmint-nemo-*
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nemo \
+  --disable-update-mimedb \
+  --disable-tracker \
+  --disable-gtk-doc-html \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+
+  make DESTDIR=$pkgdir/ install
+}

Copied: nemo/repos/community-staging-i686/desktop-theme.patch (from rev 134509, 
nemo/trunk/desktop-theme.patch)
===
--- community-staging-i686/desktop-theme.patch  (rev 0)
+++ community-staging-i686/desktop-theme.patch  2015-06-01 23:22:28 UTC (rev 
134510)
@@ -0,0 +1,131 @@
+From 64ad6c0a96b46a9d86d9a8babac1298c18d5fc1f Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= ballog...@gmail.com
+Date: Sat, 22 Nov 2014 21:23:25 +0100
+Subject: [PATCH] Add application-specific theme for Adwaita
+
+Based on this patch for Nautilus:
+https://git.gnome.org/browse/nautilus/commit/?id=3fd7e847d531fbbfc4ebba24864bdd0f8b81c750
+---
+ src/Adwaita.css| 26 +
+ src/nemo-application.c | 52 ++
+ src/nemo.gresource.xml |  1 +
+ 3 files changed, 79 insertions(+)
+ create mode 100644 src/Adwaita.css
+
+diff --git a/src/Adwaita.css b/src/Adwaita.css
+new file mode 100644
+index 000..d8b1f0c
+--- /dev/null
 b/src/Adwaita.css
+@@ -0,0 +1,26 @@
++.nemo-canvas-item {
++border-radius: 5px;
++}
++
++.nemo-desktop.nemo-canvas-item {
++color: @theme_selected_fg_color;
++text-shadow: 1px 1px black;
++}
++
++.nemo-desktop.nemo-canvas-item:active {
++color: @theme_text_color;
++}
++
++.nemo-desktop.nemo-canvas-item:selected {
++color: @theme_selected_fg_color;
++}
++
++.nemo-desktop.nemo-canvas-item:active,
++.nemo-desktop.nemo-canvas-item:prelight,
++.nemo-desktop.nemo-canvas-item:selected {
++text-shadow: none;
++}
++
++.nemo-desktop.nemo-canvas-item:selected:backdrop {
++color: 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:26:18
  Author: faidoc
Revision: 134511

db-move: moved cjs from [community-staging] to [community] (i686, x86_64)

Added:
  cjs/repos/community-i686/PKGBUILD
(from rev 134510, cjs/repos/community-staging-i686/PKGBUILD)
  cjs/repos/community-x86_64/PKGBUILD
(from rev 134510, cjs/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  cjs/repos/community-i686/PKGBUILD
  cjs/repos/community-staging-i686/
  cjs/repos/community-staging-x86_64/
  cjs/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:22:28 UTC (rev 134510)
+++ community-i686/PKGBUILD 2015-06-01 23:26:18 UTC (rev 134511)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Ionut Biru ib...@archlinux.org
-
-pkgname=cjs
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Javascript Bindings for Cinnamon
-arch=(i686 x86_64)
-url=https://github.com/linuxmint/cjs;
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js dbus-glib)
-makedepends=(gnome-common python2 gobject-introspection)
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
-sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
-   verbump.py
-
-  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Needs a display
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cjs/repos/community-i686/PKGBUILD (from rev 134510, 
cjs/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:26:18 UTC (rev 134511)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Ionut Biru ib...@archlinux.org
+
+pkgname=cjs
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Javascript Bindings for Cinnamon
+arch=(i686 x86_64)
+url=https://github.com/linuxmint/cjs;
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js dbus-glib)
+makedepends=(gnome-common python2 gobject-introspection)
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
+sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
+   verbump.py
+
+  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Needs a display
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-01 23:22:28 UTC (rev 134510)
+++ community-x86_64/PKGBUILD   2015-06-01 23:26:18 UTC (rev 134511)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Ionut Biru ib...@archlinux.org
-
-pkgname=cjs
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Javascript Bindings for Cinnamon
-arch=(i686 x86_64)
-url=https://github.com/linuxmint/cjs;
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js dbus-glib)
-makedepends=(gnome-common python2 gobject-introspection)
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
-sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
-   verbump.py
-
-  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Needs a display
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cjs/repos/community-x86_64/PKGBUILD (from rev 134510, 
cjs/repos/community-staging-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-01 23:26:18 UTC (rev 134511)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Ionut Biru ib...@archlinux.org
+
+pkgname=cjs
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=Javascript 

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:26:37
  Author: faidoc
Revision: 134512

db-move: moved muffin from [community-staging] to [community] (i686, x86_64)

Added:
  muffin/repos/community-i686/PKGBUILD
(from rev 134511, muffin/repos/community-staging-i686/PKGBUILD)
  muffin/repos/community-i686/muffin.install
(from rev 134511, muffin/repos/community-staging-i686/muffin.install)
  muffin/repos/community-x86_64/PKGBUILD
(from rev 134511, muffin/repos/community-staging-x86_64/PKGBUILD)
  muffin/repos/community-x86_64/muffin.install
(from rev 134511, muffin/repos/community-staging-x86_64/muffin.install)
Deleted:
  muffin/repos/community-i686/PKGBUILD
  muffin/repos/community-i686/muffin.install
  muffin/repos/community-staging-i686/
  muffin/repos/community-staging-x86_64/
  muffin/repos/community-x86_64/PKGBUILD
  muffin/repos/community-x86_64/muffin.install

-+
 /PKGBUILD   |   92 ++
 /muffin.install |   20 
 community-i686/PKGBUILD |   46 ---
 community-i686/muffin.install   |   10 
 community-x86_64/PKGBUILD   |   46 ---
 community-x86_64/muffin.install |   10 
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:26:18 UTC (rev 134511)
+++ community-i686/PKGBUILD 2015-06-01 23:26:37 UTC (rev 134512)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Adam Hani Schakaki a...@schakaki.net
-# Contributor: Ner0
-
-pkgname=muffin
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Cinnamon window manager based on Mutter
-arch=('i686' 'x86_64')
-url=https://github.com/linuxmint/muffin;
-license=('GPL')
-depends=('clutter' 'gobject-introspection-runtime' 'cinnamon-desktop' 
'libcanberra' 'libsm'
- 'startup-notification' 'zenity' 'dconf')
-makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 
'gobject-introspection' 'gtk-doc') 
-options=('!emptydirs')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
-sha256sums=('61239f6dccae6ba2a3cf8b6682b6fe89247910e8978668fc9090d4d676822637')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
---localstatedir=/var 
--disable-static --disable-schemas-compile \
- --enable-compile-warnings=minimum
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir/ install
-
-  # Remove unused stuff
-  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
-  make -C src/tools DESTDIR=$pkgdir uninstall
-  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
-  make -C doc/man DESTDIR=$pkgdir uninstall
-}
-
-# vim:set ts=2 sw=2 et:

Copied: muffin/repos/community-i686/PKGBUILD (from rev 134511, 
muffin/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:26:37 UTC (rev 134512)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.6.1
+pkgrel=1
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection-runtime' 'cinnamon-desktop' 
'libcanberra' 'libsm'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 
'gobject-introspection' 'gtk-doc') 
+options=('!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
+sha256sums=('0772ad6caace2f4570e7d3a0cbc8a6ef5f65be92c6a30cc95a59ed8bba6b5f74')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile \
+ --enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ install
+
+  # Remove unused stuff
+  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+  make -C src/tools DESTDIR=$pkgdir uninstall
+  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
+  make -C doc/man DESTDIR=$pkgdir uninstall
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/muffin.install

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

2015-06-01 Thread Alexandre Filgueira
Date: Tuesday, June 2, 2015 @ 01:26:39
  Author: faidoc
Revision: 134513

db-move: moved cinnamon-session from [community-staging] to [community] (i686, 
x86_64)

Added:
  cinnamon-session/repos/community-i686/PKGBUILD
(from rev 134511, cinnamon-session/repos/community-staging-i686/PKGBUILD)
  cinnamon-session/repos/community-i686/cinnamon-session.install
(from rev 134511, 
cinnamon-session/repos/community-staging-i686/cinnamon-session.install)
  cinnamon-session/repos/community-i686/timeout.patch
(from rev 134511, 
cinnamon-session/repos/community-staging-i686/timeout.patch)
  cinnamon-session/repos/community-x86_64/PKGBUILD
(from rev 134511, cinnamon-session/repos/community-staging-x86_64/PKGBUILD)
  cinnamon-session/repos/community-x86_64/cinnamon-session.install
(from rev 134511, 
cinnamon-session/repos/community-staging-x86_64/cinnamon-session.install)
  cinnamon-session/repos/community-x86_64/timeout.patch
(from rev 134511, 
cinnamon-session/repos/community-staging-x86_64/timeout.patch)
Deleted:
  cinnamon-session/repos/community-i686/PKGBUILD
  cinnamon-session/repos/community-i686/cinnamon-session.install
  cinnamon-session/repos/community-i686/timeout.patch
  cinnamon-session/repos/community-staging-i686/
  cinnamon-session/repos/community-staging-x86_64/
  cinnamon-session/repos/community-x86_64/PKGBUILD
  cinnamon-session/repos/community-x86_64/cinnamon-session.install
  cinnamon-session/repos/community-x86_64/timeout.patch

---+
 /PKGBUILD |   80 
 /cinnamon-session.install |   24 
 /timeout.patch|   48 
 community-i686/PKGBUILD   |   40 --
 community-i686/cinnamon-session.install   |   12 
 community-i686/timeout.patch  |   24 
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/cinnamon-session.install |   12 
 community-x86_64/timeout.patch|   24 
 9 files changed, 152 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-01 23:26:37 UTC (rev 134512)
+++ community-i686/PKGBUILD 2015-06-01 23:26:39 UTC (rev 134513)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-session
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=The Cinnamon Session Handler
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(dbus-glib cinnamon-desktop libsm libcanberra)
-makedepends=(intltool mesa json-glib xtrans gnome-common)
-options=('!emptydirs')
-install=cinnamon-session.install
-url=https://github.com/linuxmint/cinnamon-session;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
-timeout.patch)
-sha256sums=('b738fb4d1f8b93e2217b2c7e0d905e964e0ebde726a4cf5a28296e3eba7daab7'
-'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Increase timeout, for slow machines
-  patch -Np1 -i ../timeout.patch
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/cinnamon-session \
-  --disable-schemas-compile --enable-systemd --disable-gconf
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-session/repos/community-i686/PKGBUILD (from rev 134511, 
cinnamon-session/repos/community-staging-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-01 23:26:39 UTC (rev 134513)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-session
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=The Cinnamon Session Handler
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(dbus-glib cinnamon-desktop libsm libcanberra)
+makedepends=(intltool mesa json-glib xtrans gnome-common)
+options=('!emptydirs')
+install=cinnamon-session.install
+url=https://github.com/linuxmint/cinnamon-session;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
+timeout.patch)
+sha256sums=('42ea718b77240ff24061203bc03ba6af7d51bcba2323b0bb73a56870e232cb92'
+'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var