[arch-commits] Commit in nvidia-304xx-lts/trunk (PKGBUILD)

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:17:26
  Author: bpiotrowski
Revision: 207137

upgpkg: nvidia-304xx-lts 304.119-2

rebuild against linux-lts 3.10.33

Modified:
  nvidia-304xx-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:10:58 UTC (rev 207136)
+++ PKGBUILD2014-03-07 14:17:26 UTC (rev 207137)
@@ -4,7 +4,7 @@
 pkgname=nvidia-304xx-lts
 pkgver=304.119
 _extramodules=extramodules-3.10-lts
-pkgrel=1
+pkgrel=2
 pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:17:32
  Author: bpiotrowski
Revision: 207138

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

Added:
  nvidia-304xx-lts/repos/testing-i686/
  nvidia-304xx-lts/repos/testing-i686/PKGBUILD
(from rev 207137, nvidia-304xx-lts/trunk/PKGBUILD)
  nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install
(from rev 207137, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
  nvidia-304xx-lts/repos/testing-x86_64/
  nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD
(from rev 207137, nvidia-304xx-lts/trunk/PKGBUILD)
  nvidia-304xx-lts/repos/testing-x86_64/nvidia-304xx-lts.install
(from rev 207137, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)

-+
 testing-i686/PKGBUILD   |   47 ++
 testing-i686/nvidia-304xx-lts.install   |   15 +
 testing-x86_64/PKGBUILD |   47 ++
 testing-x86_64/nvidia-304xx-lts.install |   15 +
 4 files changed, 124 insertions(+)

Copied: nvidia-304xx-lts/repos/testing-i686/PKGBUILD (from rev 207137, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-07 14:17:32 UTC (rev 207138)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=nvidia-304xx-lts
+pkgver=304.119
+_extramodules=extramodules-3.10-lts
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.26' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.10.26')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('a2acb8066ac296005dbf560ee83ae6d9')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('fb93002115c99f15b6ca393a90a9c9ec')
+fi
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
+install -d -m755 ${pkgdir}/usr/lib/modprobe.d
+echo blacklist nouveau  
${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf
+echo blacklist nvidiafb  
${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf
+gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
+install -D -m644 ${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-304xx-lts/LICENSE
+}

Copied: nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install (from rev 
207137, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
===
--- testing-i686/nvidia-304xx-lts.install   (rev 0)
+++ testing-i686/nvidia-304xx-lts.install   2014-03-07 14:17:32 UTC (rev 
207138)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD (from rev 207137, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-07 14:17:32 UTC (rev 207138)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=nvidia-304xx-lts
+pkgver=304.119
+_extramodules=extramodules-3.10-lts
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.26' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.10.26')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('a2acb8066ac296005dbf560ee83ae6d9')

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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:22
  Author: bpiotrowski
Revision: 106773

upgpkg: r8168-lts 8.037.00-7

rebuild against linux-lts 3.10.33

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:36:21 UTC (rev 106772)
+++ PKGBUILD2014-03-07 14:36:22 UTC (rev 106773)
@@ -4,7 +4,7 @@
 pkgname=r8168-lts
 _pkgname=r8168
 pkgver=8.037.00
-pkgrel=6
+pkgrel=7
 pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
 url=http://www.realtek.com.tw;
 license=(GPL)



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:15
  Author: bpiotrowski
Revision: 106771

upgpkg: acpi_call-lts 1.1.0-4

rebuild against linux-lts 3.10.33

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 13:43:25 UTC (rev 106770)
+++ PKGBUILD2014-03-07 14:36:15 UTC (rev 106771)
@@ -5,7 +5,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 _extramodules=extramodules-3.10-lts
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')



[arch-commits] Commit in virtualbox-modules-lts/trunk (PKGBUILD)

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:29
  Author: bpiotrowski
Revision: 106777

upgpkg: virtualbox-modules-lts 4.3.8-2

rebuild against linux-lts 3.10.33

Modified:
  virtualbox-modules-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:36:28 UTC (rev 106776)
+++ PKGBUILD2014-03-07 14:36:29 UTC (rev 106777)
@@ -6,7 +6,7 @@
 pkgbase=virtualbox-modules-lts
 pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
 pkgver=4.3.8
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:24
  Author: bpiotrowski
Revision: 106774

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

Added:
  r8168-lts/repos/community-testing-i686/
  r8168-lts/repos/community-testing-i686/PKGBUILD
(from rev 106773, r8168-lts/trunk/PKGBUILD)
  r8168-lts/repos/community-testing-i686/linux-3.10.patch
(from rev 106773, r8168-lts/trunk/linux-3.10.patch)
  r8168-lts/repos/community-testing-i686/r8168-lts.install
(from rev 106773, r8168-lts/trunk/r8168-lts.install)
  r8168-lts/repos/community-testing-x86_64/
  r8168-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 106773, r8168-lts/trunk/PKGBUILD)
  r8168-lts/repos/community-testing-x86_64/linux-3.10.patch
(from rev 106773, r8168-lts/trunk/linux-3.10.patch)
  r8168-lts/repos/community-testing-x86_64/r8168-lts.install
(from rev 106773, r8168-lts/trunk/r8168-lts.install)

+
 community-testing-i686/PKGBUILD|   34 +++
 community-testing-i686/linux-3.10.patch|   59 +++
 community-testing-i686/r8168-lts.install   |   17 +++
 community-testing-x86_64/PKGBUILD  |   34 +++
 community-testing-x86_64/linux-3.10.patch  |   59 +++
 community-testing-x86_64/r8168-lts.install |   17 +++
 6 files changed, 220 insertions(+)

Copied: r8168-lts/repos/community-testing-i686/PKGBUILD (from rev 106773, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-03-07 14:36:24 UTC (rev 106774)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.037.00
+pkgrel=7
+pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
+url=http://www.realtek.com.tw;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('glibc' linux-lts=3.10 linux-lts3.11)
+makedepends=(linux-lts-headers=3.10 linux-lts-headers3.11)
+source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2)
+install=$pkgname.install
+
+_extramodules=extramodules-3.10-lts
+
+build() {
+   cd $_pkgname-$pkgver
+   local _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+   make -C /usr/lib/modules/$_kernver/build \
+   SUBDIRS=$srcdir/$_pkgname-$pkgver/src \
+   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
+   modules
+}
+
+package() {
+   cd $_pkgname-$pkgver
+   install -Dm644 src/$_pkgname.ko 
$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko
+   find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}
+
+sha256sums=('06aa1c6a58a878450798100eb5f9c3d87763c5f41e99b7d5f3b2fe78646d02b0')

Copied: r8168-lts/repos/community-testing-i686/linux-3.10.patch (from rev 
106773, r8168-lts/trunk/linux-3.10.patch)
===
--- community-testing-i686/linux-3.10.patch (rev 0)
+++ community-testing-i686/linux-3.10.patch 2014-03-07 14:36:24 UTC (rev 
106774)
@@ -0,0 +1,59 @@
+--- src/r8168_n.c.orig 2013-07-02 14:20:27.355887286 +0200
 src/r8168_n.c  2013-07-02 14:24:25.302573010 +0200
+@@ -52,6 +52,10 @@
+ #include linux/init.h
+ #include linux/rtnetlink.h
+ 
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++#include linux/if_ether.h
++#endif
++
+ #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,26)
+ #include linux/pci-aspm.h
+ #endif
+@@ -2232,6 +2236,9 @@
+swab16(opts2  0x));
+ ret = 0;
+ }
++#elif LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  if (opts2  RxVlanTag)
++  __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2  
0x));
+ #else
+ if (opts2  RxVlanTag)
+ __vlan_hwaccel_put_tag(skb, swab16(opts2  0x));
+@@ -2295,7 +2302,11 @@
+ else
+ tp-cp_cmd = ~RxChkSum;
+ 
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  if (dev-features  NETIF_F_HW_VLAN_CTAG_RX)
++#else
+ if (dev-features  NETIF_F_HW_VLAN_RX)
++#endif
+ tp-cp_cmd |= RxVlan;
+ else
+ tp-cp_cmd = ~RxVlan;
+@@ -16195,7 +16206,11 @@
+ 
+ #ifdef CONFIG_R8168_VLAN
+ if (tp-mcfg != CFG_METHOD_DEFAULT) {
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  dev-features |= NETIF_F_HW_VLAN_CTAG_TX | 
NETIF_F_HW_VLAN_CTAG_RX;
++#else
+ dev-features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
++#endif
+ #if LINUX_VERSION_CODE  KERNEL_VERSION(2,6,22)
+ dev-vlan_rx_kill_vid = rtl8168_vlan_rx_kill_vid;
+ #endif //LINUX_VERSION_CODE  KERNEL_VERSION(2,6,22)
+@@ -16210,7 +16225,11 @@
+ #else
+ dev-features |= NETIF_F_RXCSUM;
+ dev-hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++ 

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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:21
  Author: bpiotrowski
Revision: 106772

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

Added:
  acpi_call-lts/repos/community-testing-i686/
  acpi_call-lts/repos/community-testing-i686/PKGBUILD
(from rev 106771, acpi_call-lts/trunk/PKGBUILD)
  acpi_call-lts/repos/community-testing-i686/acpi_call.install
(from rev 106771, acpi_call-lts/trunk/acpi_call.install)
  acpi_call-lts/repos/community-testing-x86_64/
  acpi_call-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 106771, acpi_call-lts/trunk/PKGBUILD)
  acpi_call-lts/repos/community-testing-x86_64/acpi_call.install
(from rev 106771, acpi_call-lts/trunk/acpi_call.install)

+
 community-testing-i686/PKGBUILD|   41 +++
 community-testing-i686/acpi_call.install   |   14 +
 community-testing-x86_64/PKGBUILD  |   41 +++
 community-testing-x86_64/acpi_call.install |   14 +
 4 files changed, 110 insertions(+)

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

Copied: acpi_call-lts/repos/community-testing-i686/acpi_call.install (from rev 
106771, acpi_call-lts/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2014-03-07 14:36:21 UTC (rev 
106772)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-3.10-lts
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

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


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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:25
  Author: bpiotrowski
Revision: 106775

upgpkg: tp_smapi-lts 0.41-26

rebuild against linux-lts 3.10.33

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:36:24 UTC (rev 106774)
+++ PKGBUILD2014-03-07 14:36:25 UTC (rev 106775)
@@ -12,7 +12,7 @@
 _pkgname=tp_smapi
 _extramodules=/usr/lib/modules/extramodules-3.10-lts
 pkgver=0.41
-pkgrel=25
+pkgrel=26
 pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:28
  Author: bpiotrowski
Revision: 106776

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

Added:
  tp_smapi-lts/repos/community-testing-i686/
  tp_smapi-lts/repos/community-testing-i686/PKGBUILD
(from rev 106775, tp_smapi-lts/trunk/PKGBUILD)
  tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install
(from rev 106775, tp_smapi-lts/trunk/tp_smapi-lts.install)
  tp_smapi-lts/repos/community-testing-x86_64/
  tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 106775, tp_smapi-lts/trunk/PKGBUILD)
  tp_smapi-lts/repos/community-testing-x86_64/tp_smapi-lts.install
(from rev 106775, tp_smapi-lts/trunk/tp_smapi-lts.install)

---+
 community-testing-i686/PKGBUILD   |   57 
 community-testing-i686/tp_smapi-lts.install   |   13 +
 community-testing-x86_64/PKGBUILD |   57 
 community-testing-x86_64/tp_smapi-lts.install |   13 +
 4 files changed, 140 insertions(+)

Copied: tp_smapi-lts/repos/community-testing-i686/PKGBUILD (from rev 106775, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-03-07 14:36:28 UTC (rev 106776)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-3.10-lts
+pkgver=0.41
+pkgrel=26
+pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts=3.10' 'linux-lts3.11')
+makedepends=('linux-lts-headers=3.10' 'linux-lts-headers3.11')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+
+  _kernver=$( ${_extramodules}/version)
+
+  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
+ -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver=$( ${_extramodules}/version)
+
+  make -C ${_extramodules%/*}/${_kernver}/build \
+INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
+M=${srcdir}/${_pkgname}-${pkgver} modules_install
+
+  cd ${pkgdir}/${_extramodules%/*}
+  mv ${_kernver}/extra ${_extramodules##*/}
+  rmdir ${_kernver}
+
+  # compress kernel modules
+  find ${pkgdir} -name *.ko -exec gzip -9 {} +
+
+  # load module on startup
+  echo tp_smapi  ${srcdir}/${pkgname}.conf
+  install -Dm644 ${srcdir}/${pkgname}.conf 
${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
+
+  # update kernel version in install file
+  sed -ri s#^(extramodules=).*\$#\1${_extramodules}# 
${startdir}/${pkgname}.install
+}

Copied: tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install (from 
rev 106775, tp_smapi-lts/trunk/tp_smapi-lts.install)
===
--- community-testing-i686/tp_smapi-lts.install (rev 0)
+++ community-testing-i686/tp_smapi-lts.install 2014-03-07 14:36:28 UTC (rev 
106776)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-3.10-lts
+
+post_install() {
+  depmod -v $( $extramodules/version) /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 106775, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-03-07 14:36:28 UTC (rev 106776)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-3.10-lts
+pkgver=0.41
+pkgrel=26
+pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts=3.10' 'linux-lts3.11')

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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:36:32
  Author: bpiotrowski
Revision: 106778

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

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

---+
 community-testing-i686/PKGBUILD   |   66 ++
 community-testing-i686/build.sh   |   60 +
 community-testing-i686/virtualbox-guest-modules-lts.install   |   21 +++
 community-testing-i686/virtualbox-host-modules-lts.install|   23 +++
 community-testing-x86_64/PKGBUILD |   66 ++
 community-testing-x86_64/build.sh |   60 +
 community-testing-x86_64/virtualbox-guest-modules-lts.install |   21 +++
 community-testing-x86_64/virtualbox-host-modules-lts.install  |   23 +++
 8 files changed, 340 insertions(+)

Copied: virtualbox-modules-lts/repos/community-testing-i686/PKGBUILD (from rev 
106777, virtualbox-modules-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-03-07 14:36:32 UTC (rev 106778)
@@ -0,0 +1,66 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Sébastien Luttringer
+
+pkgbase=virtualbox-modules-lts
+pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
+pkgver=4.3.8
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux-lts=3.10' 'linux-lts3.11'
+ 'linux-lts-headers=3.10' 'linux-lts-headers3.11'
+ virtualbox-host-dkms=$pkgver
+ virtualbox-guest-dkms=$pkgver)
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-3.10-lts
+
+build() {
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  # dkms need modification to be run as user
+  cp -r /var/lib/dkms .
+  echo dkms_tree='$srcdir/dkms'  dkms.conf
+  # build host modules
+  msg2 'Host modules'
+  dkms --dkmsframework dkms.conf build vboxhost/$pkgver -k $_kernver
+  # build guest modules
+  msg2 'Guest modules'
+  dkms --dkmsframework dkms.conf build vboxguest/$pkgver -k $_kernver
+}
+
+package_virtualbox-host-modules-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Host kernel modules for VirtualBox'
+  depends=('linux-lts=3.10' 'linux-lts3.11')
+  replaces=('virtualbox-modules-lts')
+  conflicts=('virtualbox-modules-lts')
+  provides=(virtualbox-host-modules=$pkgver)
+  install=virtualbox-host-modules-lts.install
+
+  cd dkms/vboxhost/$pkgver/$_kernver/$CARCH/module
+  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
+  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
+  find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}
+
+package_virtualbox-guest-modules-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Guest kernel modules for VirtualBox'
+  license=('GPL')
+  depends=('linux-lts=3.10' 'linux-lts3.11')
+  replaces=('virtualbox-archlinux-modules-lts')
+  conflicts=('virtualbox-archlinux-modules-lts')
+  provides=(virtualbox-guest-modules=$pkgver)
+  install=virtualbox-guest-modules-lts.install
+
+  cd dkms/vboxguest/$pkgver/$_kernver/$CARCH/module
+  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
+  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
+  find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=()

Copied: 

[arch-commits] Commit in postfixadmin/repos/community-any (3 files)

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:30:37
  Author: svenstaro
Revision: 106780

archrelease: copy trunk to community-any

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

-+
 PKGBUILD|   95 +++---
 apache.example.conf |8 
 2 files changed, 45 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 15:30:28 UTC (rev 106779)
+++ PKGBUILD2014-03-07 15:30:37 UTC (rev 106780)
@@ -1,50 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Filip fila pruda.com
-pkgname=postfixadmin
-pkgver=2.3.6
-pkgrel=1
-pkgdesc=A web based interface used to manage mailboxes, virtual domains and 
aliases created for Postfix
-arch=('any')
-license=('GPL')
-url=http://postfixadmin.sourceforge.net/;
-backup=(etc/webapps/postfixadmin/config.inc.php
-etc/webapps/postfixadmin/.htaccess
-   etc/webapps/postfixadmin/motd.txt
-etc/webapps/postfixadmin/motd-users.txt)
-depends=('php')
-optdepends=('mariadb: MySQL server'
-   'postgresql: PostgreSQL server')
-source=(http://downloads.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-$pkgver/postfixadmin-$pkgver.tar.gz
-apache.example.conf)
-md5sums=('2976aa2126747a25fa006b7be67ba9ba'
- 'dc301336210336c505f33d124ac05a7b')
-
-package() {
-  _destdir=$pkgdir/usr/share/webapps/postfixAdmin
-  _destdir_etc=$pkgdir/etc/webapps/postfixadmin
-  _destdir_doc=$pkgdir/usr/share/doc/postfixadmin
-  
-  install -dm755 ${_destdir}
-  install -dm755 ${_destdir_etc}
-  install -dm755 ${_destdir_doc}
-  
-  cd $srcdir/$pkgname-$pkgver
-  cp -r * ${_destdir}
-  
-  # config
-  mv ${_destdir}/config.inc.php ${_destdir_etc}
-  ln -s /etc/webapps/postfixadmin/config.inc.php ${_destdir}/config.inc.php
-  echo #deny from all ${_destdir_etc}/.htaccess
-  ln -s /etc/webapps/postfixadmin/.htaccess ${_destdir}/.htaccess
-  mv ${_destdir}/motd.txt ${_destdir_etc}
-  mv ${_destdir}/motd-users.txt ${_destdir_etc}
-  ln -s /etc/webapps/postfixadmin/motd.txt ${_destdir}/motd.txt
-  ln -s /etc/webapps/postfixadmin/motd-users.txt ${_destdir}/motd-users.txt
-  
-  # docs
-  mv ${_destdir}/{*.TXT,tests,ADDITIONS,DOCUMENTS,VIRTUAL_VACATION} 
${_destdir_doc}
-  rm -rf ${_destdir}/debian
-  
-  # apache  
-  install ${srcdir}/apache.example.conf ${_destdir_etc}/apache.example.conf
-}

Copied: postfixadmin/repos/community-any/PKGBUILD (from rev 106779, 
postfixadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 15:30:37 UTC (rev 106780)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Filip fila pruda.com
+pkgname=postfixadmin
+pkgver=2.3.7
+pkgrel=1
+pkgdesc=A web based interface used to manage mailboxes, virtual domains and 
aliases created for Postfix
+arch=('any')
+license=('GPL')
+url=http://postfixadmin.sourceforge.net/;
+backup=(etc/webapps/postfixadmin/config.inc.php
+etc/webapps/postfixadmin/.htaccess
+   etc/webapps/postfixadmin/motd.txt
+etc/webapps/postfixadmin/motd-users.txt)
+depends=('php')
+optdepends=('mariadb: MySQL server'
+   'postgresql: PostgreSQL server')
+
source=(http://downloads.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-$pkgver/postfixadmin-$pkgver.tar.gz)
+md5sums=('35265807e815fbfbec5d7246e5b5e978')
+
+package() {
+  _destdir=$pkgdir/usr/share/webapps/postfixAdmin
+  _destdir_etc=$pkgdir/etc/webapps/postfixadmin
+  _destdir_doc=$pkgdir/usr/share/doc/postfixadmin
+  
+  install -dm755 ${_destdir}
+  install -dm755 ${_destdir_etc}
+  install -dm755 ${_destdir_doc}
+  
+  cd $srcdir/$pkgname-$pkgver
+  cp -r * ${_destdir}
+  
+  # config
+  mv ${_destdir}/config.inc.php ${_destdir_etc}
+  ln -s /etc/webapps/postfixadmin/config.inc.php ${_destdir}/config.inc.php
+  echo #deny from all ${_destdir_etc}/.htaccess
+  ln -s /etc/webapps/postfixadmin/.htaccess ${_destdir}/.htaccess
+  mv ${_destdir}/motd.txt ${_destdir_etc}
+  mv ${_destdir}/motd-users.txt ${_destdir_etc}
+  ln -s /etc/webapps/postfixadmin/motd.txt ${_destdir}/motd.txt
+  ln -s /etc/webapps/postfixadmin/motd-users.txt ${_destdir}/motd-users.txt
+  
+  # docs
+  mv ${_destdir}/{*.TXT,tests,ADDITIONS,DOCUMENTS,VIRTUAL_VACATION} 
${_destdir_doc}
+  rm -rf ${_destdir}/debian
+}

Deleted: apache.example.conf
===
--- apache.example.conf 2014-03-07 15:30:28 UTC (rev 106779)
+++ apache.example.conf 2014-03-07 15:30:37 UTC (rev 106780)
@@ -1,8 +0,0 @@
-Alias /postfixAdmin /usr/share/webapps/postfixAdmin
-Directory /usr/share/webapps/postfixAdmin
-

[arch-commits] Commit in postfixadmin/trunk (PKGBUILD apache.example.conf)

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:30:28
  Author: svenstaro
Revision: 106779

upgpkg: postfixadmin 2.3.7-1

upstream release 2.3.7 and also removing example apache config (this should be 
in the wiki)

Modified:
  postfixadmin/trunk/PKGBUILD
Deleted:
  postfixadmin/trunk/apache.example.conf

-+
 PKGBUILD|   13 -
 apache.example.conf |8 
 2 files changed, 4 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:36:32 UTC (rev 106778)
+++ PKGBUILD2014-03-07 15:30:28 UTC (rev 106779)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 # Contributor: Filip fila pruda.com
 pkgname=postfixadmin
-pkgver=2.3.6
+pkgver=2.3.7
 pkgrel=1
 pkgdesc=A web based interface used to manage mailboxes, virtual domains and 
aliases created for Postfix
 arch=('any')
@@ -13,11 +13,9 @@
 etc/webapps/postfixadmin/motd-users.txt)
 depends=('php')
 optdepends=('mariadb: MySQL server'
-   'postgresql: PostgreSQL server')
-source=(http://downloads.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-$pkgver/postfixadmin-$pkgver.tar.gz
-apache.example.conf)
-md5sums=('2976aa2126747a25fa006b7be67ba9ba'
- 'dc301336210336c505f33d124ac05a7b')
+   'postgresql: PostgreSQL server')
+
source=(http://downloads.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-$pkgver/postfixadmin-$pkgver.tar.gz)
+md5sums=('35265807e815fbfbec5d7246e5b5e978')
 
 package() {
   _destdir=$pkgdir/usr/share/webapps/postfixAdmin
@@ -44,7 +42,4 @@
   # docs
   mv ${_destdir}/{*.TXT,tests,ADDITIONS,DOCUMENTS,VIRTUAL_VACATION} 
${_destdir_doc}
   rm -rf ${_destdir}/debian
-  
-  # apache  
-  install ${srcdir}/apache.example.conf ${_destdir_etc}/apache.example.conf
 }

Deleted: apache.example.conf
===
--- apache.example.conf 2014-03-07 14:36:32 UTC (rev 106778)
+++ apache.example.conf 2014-03-07 15:30:28 UTC (rev 106779)
@@ -1,8 +0,0 @@
-Alias /postfixAdmin /usr/share/webapps/postfixAdmin
-Directory /usr/share/webapps/postfixAdmin
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/postfixAdmin/:/etc/webapps/postfixadmin/:/usr/share/pear/
-/Directory



[arch-commits] Commit in nvidia-304xx/trunk (PKGBUILD nvidia.install)

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:43:41
  Author: svenstaro
Revision: 207139

upgpkg: nvidia-304xx 304.119-2

Use correct kernel version (fixes FS#39168)

Modified:
  nvidia-304xx/trunk/PKGBUILD
  nvidia-304xx/trunk/nvidia.install

+
 PKGBUILD   |2 +-
 nvidia.install |6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:17:32 UTC (rev 207138)
+++ PKGBUILD2014-03-07 15:43:41 UTC (rev 207139)
@@ -4,7 +4,7 @@
 pkgname=nvidia-304xx
 pkgver=304.119
 _extramodules=extramodules-3.13-ARCH
-pkgrel=1
+pkgrel=2
 pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;

Modified: nvidia.install
===
--- nvidia.install  2014-03-07 14:17:32 UTC (rev 207138)
+++ nvidia.install  2014-03-07 15:43:41 UTC (rev 207139)
@@ -1,15 +1,15 @@
 post_install() {
-EXTRAMODULES='extramodules-3.12-ARCH'
+EXTRAMODULES='extramodules-3.13-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }
 
 post_upgrade() {
-EXTRAMODULES='extramodules-3.12-ARCH'
+EXTRAMODULES='extramodules-3.13-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 
 post_remove() {
-EXTRAMODULES='extramodules-3.12-ARCH'
+EXTRAMODULES='extramodules-3.13-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }



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

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:43:52
  Author: svenstaro
Revision: 207140

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

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 207139, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/extra-i686/nvidia.install
(from rev 207139, nvidia-304xx/trunk/nvidia.install)
  nvidia-304xx/repos/extra-i686/nvidia_3.13_kernel.patch
(from rev 207139, nvidia-304xx/trunk/nvidia_3.13_kernel.patch)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 207139, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/nvidia.install
(from rev 207139, nvidia-304xx/trunk/nvidia.install)
  nvidia-304xx/repos/extra-x86_64/nvidia_3.13_kernel.patch
(from rev 207139, nvidia-304xx/trunk/nvidia_3.13_kernel.patch)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/nvidia.install
  nvidia-304xx/repos/extra-i686/nvidia_3.13_kernel.patch
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/nvidia.install
  nvidia-304xx/repos/extra-x86_64/nvidia_3.13_kernel.patch

---+
 /PKGBUILD |  110 
 /nvidia.install   |   30 
 /nvidia_3.13_kernel.patch |   50 ++
 extra-i686/PKGBUILD   |   55 
 extra-i686/nvidia.install |   15 
 extra-i686/nvidia_3.13_kernel.patch   |   25 ---
 extra-x86_64/PKGBUILD |   55 
 extra-x86_64/nvidia.install   |   15 
 extra-x86_64/nvidia_3.13_kernel.patch |   25 ---
 9 files changed, 190 insertions(+), 190 deletions(-)

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

Copied: nvidia-304xx/repos/extra-i686/PKGBUILD (from rev 207139, 
nvidia-304xx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-07 15:43:52 UTC (rev 207140)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia-304xx
+pkgver=304.119
+_extramodules=extramodules-3.13-ARCH
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.13' 'linux3.14' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-headers=3.13' 'linux-headers3.14')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=('nvidia_3.13_kernel.patch')
+md5sums=('f1569a1ce7f9293b876c2b72f3fd7c9e')
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('a2acb8066ac296005dbf560ee83ae6d9')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'

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

2014-03-07 Thread Alexander Rødseth
Date: Friday, March 7, 2014 @ 16:52:33
  Author: arodseth
Revision: 106781

Upgrade to 6.6.2

Modified:
  swi-prolog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 15:30:37 UTC (rev 106780)
+++ PKGBUILD2014-03-07 15:52:33 UTC (rev 106781)
@@ -6,7 +6,7 @@
 # Contributor: Juergen Hoetzel juer...@archlinux.org
 
 pkgname=swi-prolog
-pkgver=6.6.0
+pkgver=6.6.2
 pkgrel=1
 pkgdesc='Prolog environment'
 arch=('x86_64' 'i686')
@@ -21,7 +21,7 @@
 'libxft: for using the pl2xpce library')
 options=('!makeflags')
 source=(http://www.swi-prolog.org/download/stable/src/pl-$pkgver.tar.gz;)
-sha256sums=('b85ac27a8afeb29640fe2b98c088e5f9c753adacb20114f8c10ba4835b26f9cd')
+sha256sums=('e4996e363a19353f8b4eb1c19284fa73612b0137b32ba3cb066210567260b6cd')
 
 build() {
   cd pl-$pkgver
@@ -37,7 +37,7 @@
 package() {
   make -C pl-$pkgver DESTDIR=$pkgdir install
 
-  # fix https://bugs.archlinux.org/task/20873
+  # Fix for FS#20873
   chmod +x $pkgdir/usr/lib/swipl-$pkgver/library/dialect/sicstus/swipl-lfr.pl
 }
 



[arch-commits] Commit in (4 files)

2014-03-07 Thread Felix Yan
Date: Friday, March 7, 2014 @ 16:53:16
  Author: fyan
Revision: 207141

addpkg: mpdecimal 2.4.0-1

- dependency for the coming python 3.4 release

Added:
  mpdecimal/
  mpdecimal/repos/
  mpdecimal/trunk/
  mpdecimal/trunk/PKGBUILD

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

Added: mpdecimal/trunk/PKGBUILD
===
--- mpdecimal/trunk/PKGBUILD(rev 0)
+++ mpdecimal/trunk/PKGBUILD2014-03-07 15:53:16 UTC (rev 207141)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=mpdecimal
+pkgver=2.4.0
+pkgrel=1
+pkgdesc=Package for correctly-rounded arbitrary precision decimal floating 
point arithmetic
+arch=('i686' 'x86_64')
+url=http://www.bytereef.org/mpdecimal/index.html;
+license=('custom')
+depends=('glibc')
+source=(http://www.bytereef.org/software/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE.txt 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+sha512sums=('9528274c77f874ea75652f08e64bb76ecdaa6c2111900809bc3ce58b4740d8b313bf41283cfb41b525a7d2df7d86cb7d9415b0abb2ce58a209df9d54e2ab0f75')


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


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

2014-03-07 Thread Felix Yan
Date: Friday, March 7, 2014 @ 16:54:55
  Author: fyan
Revision: 207142

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

Added:
  mpdecimal/repos/extra-i686/
  mpdecimal/repos/extra-i686/PKGBUILD
(from rev 207141, mpdecimal/trunk/PKGBUILD)
  mpdecimal/repos/extra-x86_64/
  mpdecimal/repos/extra-x86_64/PKGBUILD
(from rev 207141, mpdecimal/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   28 
 extra-x86_64/PKGBUILD |   28 
 2 files changed, 56 insertions(+)

Copied: mpdecimal/repos/extra-i686/PKGBUILD (from rev 207141, 
mpdecimal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-07 15:54:55 UTC (rev 207142)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=mpdecimal
+pkgver=2.4.0
+pkgrel=1
+pkgdesc=Package for correctly-rounded arbitrary precision decimal floating 
point arithmetic
+arch=('i686' 'x86_64')
+url=http://www.bytereef.org/mpdecimal/index.html;
+license=('custom')
+depends=('glibc')
+source=(http://www.bytereef.org/software/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE.txt 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+sha512sums=('9528274c77f874ea75652f08e64bb76ecdaa6c2111900809bc3ce58b4740d8b313bf41283cfb41b525a7d2df7d86cb7d9415b0abb2ce58a209df9d54e2ab0f75')

Copied: mpdecimal/repos/extra-x86_64/PKGBUILD (from rev 207141, 
mpdecimal/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-03-07 15:54:55 UTC (rev 207142)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgname=mpdecimal
+pkgver=2.4.0
+pkgrel=1
+pkgdesc=Package for correctly-rounded arbitrary precision decimal floating 
point arithmetic
+arch=('i686' 'x86_64')
+url=http://www.bytereef.org/mpdecimal/index.html;
+license=('custom')
+depends=('glibc')
+source=(http://www.bytereef.org/software/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE.txt 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+sha512sums=('9528274c77f874ea75652f08e64bb76ecdaa6c2111900809bc3ce58b4740d8b313bf41283cfb41b525a7d2df7d86cb7d9415b0abb2ce58a209df9d54e2ab0f75')



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

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:58:10
  Author: svenstaro
Revision: 106782

upgpkg: phppgadmin 5.1-3

Remove apache config (FS#39213)

Modified:
  phppgadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 15:52:33 UTC (rev 106781)
+++ PKGBUILD2014-03-07 15:58:10 UTC (rev 106782)
@@ -5,8 +5,8 @@
 
 pkgname=phppgadmin
 pkgver=5.1
-pkgrel=2
-pkgdesc=A web-based administration tool for PostgreSQL. It is perfect for 
PostgreSQL DBAs, newbies and hosting services.
+pkgrel=3
+pkgdesc=A web-based administration tool for PostgreSQL
 arch=('any')
 url=http://sourceforge.net/projects/phppgadmin;
 license=('GPL')
@@ -23,12 +23,4 @@
   cp ./conf/config.inc.php-dist $pkgdir/etc/webapps/phppgadmin/config.inc.php
   rm -f ${_instdir}/conf/config.inc.php
   ln -s /etc/webapps/phppgadmin/config.inc.php ${_instdir}/conf/config.inc.php
-  cat $pkgdir/etc/webapps/phppgadmin/apache.example.conf EOF
-   Alias /phppgadmin /usr/share/webapps/phppgadmin
-   Directory /usr/share/webapps/phppgadmin
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   /Directory
-EOF
 }



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

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:58:17
  Author: svenstaro
Revision: 106783

archrelease: copy trunk to community-any

Added:
  phppgadmin/repos/community-any/PKGBUILD
(from rev 106782, phppgadmin/trunk/PKGBUILD)
Deleted:
  phppgadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 15:58:10 UTC (rev 106782)
+++ PKGBUILD2014-03-07 15:58:17 UTC (rev 106783)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: wizzomafizzo wizzomafi...@gmail.com
-# Contributor: Benjamin Andresen be...@klapmuetz.org
-
-pkgname=phppgadmin
-pkgver=5.1
-pkgrel=2
-pkgdesc=A web-based administration tool for PostgreSQL. It is perfect for 
PostgreSQL DBAs, newbies and hosting services.
-arch=('any')
-url=http://sourceforge.net/projects/phppgadmin;
-license=('GPL')
-depends=('php' 'php-pgsql')
-backup=('etc/webapps/phppgadmin/config.inc.php')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpPgAdmin-$pkgver.tar.gz)
-md5sums=('554c94f5b38a1c6e8327ec3aa4cc6538')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phppgadmin
-  mkdir -p ${_instdir} $pkgdir/etc/webapps/phppgadmin
-  cd ${_instdir}
-  cp -ra $srcdir/phpPgAdmin-$pkgver/* .
-  cp ./conf/config.inc.php-dist $pkgdir/etc/webapps/phppgadmin/config.inc.php
-  rm -f ${_instdir}/conf/config.inc.php
-  ln -s /etc/webapps/phppgadmin/config.inc.php ${_instdir}/conf/config.inc.php
-  cat $pkgdir/etc/webapps/phppgadmin/apache.example.conf EOF
-   Alias /phppgadmin /usr/share/webapps/phppgadmin
-   Directory /usr/share/webapps/phppgadmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   /Directory
-EOF
-}

Copied: phppgadmin/repos/community-any/PKGBUILD (from rev 106782, 
phppgadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 15:58:17 UTC (rev 106783)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: wizzomafizzo wizzomafi...@gmail.com
+# Contributor: Benjamin Andresen be...@klapmuetz.org
+
+pkgname=phppgadmin
+pkgver=5.1
+pkgrel=3
+pkgdesc=A web-based administration tool for PostgreSQL
+arch=('any')
+url=http://sourceforge.net/projects/phppgadmin;
+license=('GPL')
+depends=('php' 'php-pgsql')
+backup=('etc/webapps/phppgadmin/config.inc.php')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpPgAdmin-$pkgver.tar.gz)
+md5sums=('554c94f5b38a1c6e8327ec3aa4cc6538')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phppgadmin
+  mkdir -p ${_instdir} $pkgdir/etc/webapps/phppgadmin
+  cd ${_instdir}
+  cp -ra $srcdir/phpPgAdmin-$pkgver/* .
+  cp ./conf/config.inc.php-dist $pkgdir/etc/webapps/phppgadmin/config.inc.php
+  rm -f ${_instdir}/conf/config.inc.php
+  ln -s /etc/webapps/phppgadmin/config.inc.php ${_instdir}/conf/config.inc.php
+}



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

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:58:35
  Author: svenstaro
Revision: 106785

archrelease: copy trunk to community-any

Added:
  phpldapadmin/repos/community-any/PKGBUILD
(from rev 106784, phpldapadmin/trunk/PKGBUILD)
  phpldapadmin/repos/community-any/phpldapadmin-1.2.3-php5_5.patch
(from rev 106784, phpldapadmin/trunk/phpldapadmin-1.2.3-php5_5.patch)
Deleted:
  phpldapadmin/repos/community-any/PKGBUILD
  phpldapadmin/repos/community-any/phpldapadmin-1.2.3-php5_5.patch

-+
 PKGBUILD|   81 +++--
 phpldapadmin-1.2.3-php5_5.patch |  176 +++---
 2 files changed, 123 insertions(+), 134 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 15:58:29 UTC (rev 106784)
+++ PKGBUILD2014-03-07 15:58:35 UTC (rev 106785)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=phpldapadmin
-pkgver=1.2.3
-pkgrel=6
-pkgdesc=A PHP and hence web-based tool to administrate LDAP over the WWW
-arch=('any')
-url=http://phpldapadmin.sourceforge.net/;
-license=('GPL')
-depends=('libldap' 'php' 'php-ldap')
-makedepends=('optipng')
-backup=(etc/webapps/phpldapadmin/config.php)
-source=(http://downloads.sourceforge.net/project/phpldapadmin/phpldapadmin-php5/$pkgver/phpldapadmin-$pkgver.tgz
-phpldapadmin-1.2.3-php5_5.patch )
-md5sums=('59a49054039ceb852c2da377d8742360'
- '45ebc875c588ff6756369b949ffe7401')
-
-build() {
-  cd $srcdir/phpldapadmin-${pkgver}/
-  find -name '*.png' -exec optipng -quiet -force -fix {} \;
-  # patch from http://pkgs.fedoraproject.org/cgit/phpldapadmin.git/tree/
-  patch -p1 -i $srcdir/phpldapadmin-1.2.3-php5_5.patch
-}
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpldapadmin
-  mkdir -p ${_instdir} $pkgdir/etc/webapps/phpldapadmin
-  cd ${_instdir}
-
-  cp -ra $srcdir/phpldapadmin-${pkgver}/* .
-
-  ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
-  cp ${_instdir}/config/config.php.example 
$pkgdir/etc/webapps/phpldapadmin/config.php
-
-  cat $pkgdir/etc/webapps/phpldapadmin/apache.example.conf EOF
-   Alias /phpldapadmin /usr/share/webapps/phpldapadmin
-   Directory /usr/share/webapps/phpldapadmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
-}

Copied: phpldapadmin/repos/community-any/PKGBUILD (from rev 106784, 
phpldapadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 15:58:35 UTC (rev 106785)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=phpldapadmin
+pkgver=1.2.3
+pkgrel=7
+pkgdesc=A PHP and hence web-based tool to administrate LDAP over the WWW
+arch=('any')
+url=http://phpldapadmin.sourceforge.net/;
+license=('GPL')
+depends=('libldap' 'php' 'php-ldap')
+makedepends=('optipng')
+backup=(etc/webapps/phpldapadmin/config.php)
+source=(http://downloads.sourceforge.net/project/phpldapadmin/phpldapadmin-php5/$pkgver/phpldapadmin-$pkgver.tgz
+phpldapadmin-1.2.3-php5_5.patch )
+md5sums=('59a49054039ceb852c2da377d8742360'
+ '45ebc875c588ff6756369b949ffe7401')
+
+build() {
+  cd $srcdir/phpldapadmin-${pkgver}/
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+  # patch from http://pkgs.fedoraproject.org/cgit/phpldapadmin.git/tree/
+  patch -p1 -i $srcdir/phpldapadmin-1.2.3-php5_5.patch
+}
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpldapadmin
+  mkdir -p ${_instdir} $pkgdir/etc/webapps/phpldapadmin
+  cd ${_instdir}
+
+  cp -ra $srcdir/phpldapadmin-${pkgver}/* .
+
+  ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
+  cp ${_instdir}/config/config.php.example 
$pkgdir/etc/webapps/phpldapadmin/config.php
+}

Deleted: phpldapadmin-1.2.3-php5_5.patch
===
--- phpldapadmin-1.2.3-php5_5.patch 2014-03-07 15:58:29 UTC (rev 106784)
+++ phpldapadmin-1.2.3-php5_5.patch 2014-03-07 15:58:35 UTC (rev 106785)
@@ -1,88 +0,0 @@
-diff -Nrbu phpldapadmin-1.2.3/lib/PageRender.php 
phpldapadmin-1.2.3-OK/lib/PageRender.php
 phpldapadmin-1.2.3/lib/PageRender.php  2012-10-01 10:54:14.0 
+0400
-+++ phpldapadmin-1.2.3-OK/lib/PageRender.php   2013-11-12 03:44:40.518144839 
+0400
-@@ -287,7 +287,7 @@
-   break;
- 
-   default:
--  $vals[$i] = 
password_hash($passwordvalue,$enc);
-+  $vals[$i] = 
pla_password_hash($passwordvalue,$enc);
-   }
- 
- 

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

2014-03-07 Thread Sven-Hendrik Haase
Date: Friday, March 7, 2014 @ 16:58:29
  Author: svenstaro
Revision: 106784

upgpkg: phpldapadmin 1.2.3-7

Remove apache config (FS#39213)

Modified:
  phpldapadmin/trunk/PKGBUILD

--+
 PKGBUILD |   12 +---
 1 file changed, 1 insertion(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 15:58:17 UTC (rev 106783)
+++ PKGBUILD2014-03-07 15:58:29 UTC (rev 106784)
@@ -3,7 +3,7 @@
 
 pkgname=phpldapadmin
 pkgver=1.2.3
-pkgrel=6
+pkgrel=7
 pkgdesc=A PHP and hence web-based tool to administrate LDAP over the WWW
 arch=('any')
 url=http://phpldapadmin.sourceforge.net/;
@@ -32,14 +32,4 @@
 
   ln -s /etc/webapps/phpldapadmin/config.php ${_instdir}/config/config.php
   cp ${_instdir}/config/config.php.example 
$pkgdir/etc/webapps/phpldapadmin/config.php
-
-  cat $pkgdir/etc/webapps/phpldapadmin/apache.example.conf EOF
-   Alias /phpldapadmin /usr/share/webapps/phpldapadmin
-   Directory /usr/share/webapps/phpldapadmin
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
 }



[arch-commits] Commit in (359 files)

2014-03-07 Thread Andrea Scarpino
Date: Friday, March 7, 2014 @ 17:10:48
  Author: andrea
Revision: 207143

KDE 4.13 beta 1

Added:
  baloo-widgets/
  baloo-widgets/kde-unstable/
  baloo-widgets/kde-unstable/PKGBUILD
  baloo-widgets/repos/
  baloo-widgets/trunk/
  baloo/
  baloo/kde-unstable/
  baloo/kde-unstable/PKGBUILD
  baloo/kde-unstable/baloo.install
  baloo/repos/
  baloo/trunk/
  kactivities/kde-unstable/
  kde-base-artwork/kde-unstable/
  kde-meta/kde-unstable/
  kde-wallpapers/kde-unstable/
  kdeaccessibility-jovie/kde-unstable/
  kdeaccessibility-kaccessible/kde-unstable/
  kdeaccessibility-kmag/kde-unstable/
  kdeaccessibility-kmousetool/kde-unstable/
  kdeaccessibility-kmouth/kde-unstable/
  kdeadmin-kcron/kde-unstable/
  kdeadmin-ksystemlog/kde-unstable/
  kdeadmin-kuser/kde-unstable/
  kdeartwork/kde-unstable/
  kdebase-konsole/kde-unstable/
  kdebase-runtime/kde-unstable/
  kdebase/kde-unstable/
  kdebindings-kimono/kde-unstable/
  kdebindings-korundum/kde-unstable/
  kdebindings-kross/kde-unstable/
  kdebindings-perlkde/kde-unstable/
  kdebindings-perlqt/kde-unstable/
  kdebindings-python/kde-unstable/
  kdebindings-qtruby/kde-unstable/
  kdebindings-qyoto/kde-unstable/
  kdebindings-smokegen/kde-unstable/
  kdebindings-smokekde/kde-unstable/
  kdebindings-smokeqt/kde-unstable/
  kdeedu-analitza/kde-unstable/
  kdeedu-artikulate/
  kdeedu-artikulate/kde-unstable/
  kdeedu-artikulate/kde-unstable/PKGBUILD
  kdeedu-artikulate/repos/
  kdeedu-artikulate/trunk/
  kdeedu-blinken/kde-unstable/
  kdeedu-cantor/kde-unstable/
  kdeedu-kalgebra/kde-unstable/
  kdeedu-kalzium/kde-unstable/
  kdeedu-kanagram/kde-unstable/
  kdeedu-kbruch/kde-unstable/
  kdeedu-kgeography/kde-unstable/
  kdeedu-khangman/kde-unstable/
  kdeedu-kig/kde-unstable/
  kdeedu-kiten/kde-unstable/
  kdeedu-klettres/kde-unstable/
  kdeedu-kmplot/kde-unstable/
  kdeedu-kstars/kde-unstable/
  kdeedu-ktouch/kde-unstable/
  kdeedu-kturtle/kde-unstable/
  kdeedu-kwordquiz/kde-unstable/
  kdeedu-marble/kde-unstable/
  kdeedu-pairs/kde-unstable/
  kdeedu-parley/kde-unstable/
  kdeedu-rocs/kde-unstable/
  kdeedu-step/kde-unstable/
  kdegames-bomber/kde-unstable/
  kdegames-bovo/kde-unstable/
  kdegames-granatier/kde-unstable/
  kdegames-kajongg/kde-unstable/
  kdegames-kapman/kde-unstable/
  kdegames-katomic/kde-unstable/
  kdegames-kblackbox/kde-unstable/
  kdegames-kblocks/kde-unstable/
  kdegames-kbounce/kde-unstable/
  kdegames-kbreakout/kde-unstable/
  kdegames-kdiamond/kde-unstable/
  kdegames-kfourinline/kde-unstable/
  kdegames-kgoldrunner/kde-unstable/
  kdegames-kigo/kde-unstable/
  kdegames-killbots/kde-unstable/
  kdegames-kiriki/kde-unstable/
  kdegames-kjumpingcube/kde-unstable/
  kdegames-klickety/kde-unstable/
  kdegames-klines/kde-unstable/
  kdegames-kmahjongg/kde-unstable/
  kdegames-kmines/kde-unstable/
  kdegames-knavalbattle/kde-unstable/
  kdegames-knetwalk/kde-unstable/
  kdegames-kolf/kde-unstable/
  kdegames-kollision/kde-unstable/
  kdegames-konquest/kde-unstable/
  kdegames-kpatience/kde-unstable/
  kdegames-kreversi/kde-unstable/
  kdegames-kshisen/kde-unstable/
  kdegames-ksirk/kde-unstable/
  kdegames-ksnakeduel/kde-unstable/
  kdegames-kspaceduel/kde-unstable/
  kdegames-ksquares/kde-unstable/
  kdegames-ksudoku/kde-unstable/
  kdegames-ktuberling/kde-unstable/
  kdegames-kubrick/kde-unstable/
  kdegames-lskat/kde-unstable/
  kdegames-palapeli/kde-unstable/
  kdegames-picmi/kde-unstable/
  kdegraphics-gwenview/kde-unstable/
  kdegraphics-kamera/kde-unstable/
  kdegraphics-kcolorchooser/kde-unstable/
  kdegraphics-kgamma/kde-unstable/
  kdegraphics-kolourpaint/kde-unstable/
  kdegraphics-kruler/kde-unstable/
  kdegraphics-ksaneplugin/kde-unstable/
  kdegraphics-ksnapshot/kde-unstable/
  kdegraphics-mobipocket/kde-unstable/
  kdegraphics-okular/kde-unstable/
  kdegraphics-strigi-analyzer/kde-unstable/
  kdegraphics-svgpart/kde-unstable/
  kdegraphics-thumbnailers/kde-unstable/
  kdelibs/kde-unstable/
  kdemultimedia-audiocd-kio/kde-unstable/
  kdemultimedia-dragonplayer/kde-unstable/
  kdemultimedia-ffmpegthumbs/kde-unstable/
  kdemultimedia-juk/kde-unstable/
  kdemultimedia-kmix/kde-unstable/
  kdemultimedia-kscd/kde-unstable/
  kdemultimedia-mplayerthumbs/kde-unstable/
  kdenetwork-filesharing/kde-unstable/
  kdenetwork-kdnssd/kde-unstable/
  kdenetwork-kget/kde-unstable/
  kdenetwork-kopete/kde-unstable/
  kdenetwork-kppp/kde-unstable/
  kdenetwork-krdc/kde-unstable/
  kdenetwork-krfb/kde-unstable/
  kdenetwork-strigi-analyzers/kde-unstable/
  kdepim-runtime/kde-unstable/
  kdepim/kde-unstable/
  kdepim/kde-unstable/kdepim-kaddressbook.install
  kdepimlibs/kde-unstable/
  kdeplasma-addons/kde-unstable/
  kdesdk-cervisia/kde-unstable/
  kdesdk-dev-scripts/kde-unstable/
  kdesdk-dev-utils/kde-unstable/
  kdesdk-dolphin-plugins/kde-unstable/
  kdesdk-kapptemplate/kde-unstable/
  kdesdk-kate/kde-unstable/
  kdesdk-kcachegrind/kde-unstable/
  kdesdk-kioslaves/kde-unstable/
  kdesdk-kompare/kde-unstable/
  kdesdk-lokalize/kde-unstable/
  

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

2014-03-07 Thread Daniel Micay
Date: Friday, March 7, 2014 @ 17:40:02
  Author: thestinger
Revision: 106786

upgpkg: python-pygit2 0.20.2-1

Modified:
  python-pygit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 15:58:35 UTC (rev 106785)
+++ PKGBUILD2014-03-07 16:40:02 UTC (rev 106786)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pygit2
 pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.20.0
+pkgver=0.20.2
 pkgrel=1
 pkgdesc='Python bindings for libgit2'
 url=https://github.com/libgit2/pygit2;
@@ -12,7 +12,7 @@
 arch=(i686 x86_64)
 license=('GPL2')
 source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('3b8cba0ad69bcb2e1aa73d325dcdf53b')
+md5sums=('97631fd2b468fa91a2f6f771ce95f242')
 
 package_python-pygit2() {
   cd $srcdir/pygit2-$pkgver



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

2014-03-07 Thread Daniel Micay
Date: Friday, March 7, 2014 @ 17:41:06
  Author: thestinger
Revision: 106787

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 16:40:02 UTC (rev 106786)
+++ community-i686/PKGBUILD 2014-03-07 16:41:06 UTC (rev 106787)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgbase=python-pygit2
-pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Python bindings for libgit2'
-url=https://github.com/libgit2/pygit2;
-depends=(libgit2)
-makedepends=(python python2)
-arch=(i686 x86_64)
-license=('GPL2')
-source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('3b8cba0ad69bcb2e1aa73d325dcdf53b')
-
-package_python-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python)
-  replaces=(python-libgit2)
-  conflicts=(python-libgit2)
-  LANG=en_US.UTF8 python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python2)
-  replaces=(python2-libgit2)
-  conflicts=(python2-libgit2)
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-07 16:40:02 UTC (rev 106786)
+++ community-x86_64/PKGBUILD   2014-03-07 16:41:06 UTC (rev 106787)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgbase=python-pygit2
-pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Python bindings for libgit2'
-url=https://github.com/libgit2/pygit2;
-depends=(libgit2)
-makedepends=(python python2)
-arch=(i686 x86_64)
-license=('GPL2')
-source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('3b8cba0ad69bcb2e1aa73d325dcdf53b')
-
-package_python-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python)
-  replaces=(python-libgit2)
-  conflicts=(python-libgit2)
-  LANG=en_US.UTF8 python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-pygit2() {
-  cd $srcdir/pygit2-$pkgver
-  depends+=(python2)
-  replaces=(python2-libgit2)
-  conflicts=(python2-libgit2)
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

Copied: python-pygit2/repos/community-x86_64/PKGBUILD (from rev 106786, 
python-pygit2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-07 16:41:06 UTC (rev 106787)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+pkgbase=python-pygit2
+pkgname=(python-pygit2 python2-pygit2)
+pkgver=0.20.2
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+url=https://github.com/libgit2/pygit2;
+depends=(libgit2)
+makedepends=(python python2)
+arch=(i686 x86_64)
+license=('GPL2')
+source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
+md5sums=('97631fd2b468fa91a2f6f771ce95f242')
+
+package_python-pygit2() {
+  cd $srcdir/pygit2-$pkgver
+  depends+=(python)
+  replaces=(python-libgit2)
+  conflicts=(python-libgit2)
+  

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

2014-03-07 Thread Alexander Rødseth
Date: Friday, March 7, 2014 @ 17:51:27
  Author: arodseth
Revision: 106788

Only packaging godoc, vet and lint for x86_64. Suggestions for how to make it 
work for i686 as well are warmly welcome (try also with go-hg from AUR).

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 16:41:06 UTC (rev 106787)
+++ PKGBUILD2014-03-07 16:51:27 UTC (rev 106788)
@@ -51,12 +51,14 @@
   export GOARCH=$platform
   bash make.bash --no-clean
 
-  if [ $platform$CARCH == amd64x86_64 -o $platform$CARCH == 386i686 ]; then
+  if [ $platform$CARCH == amd64x86_64 ]; then
 # Many thanks to Daniel YC Lin
 ../bin/go get -d code.google.com/p/go.tools/cmd/godoc
 ../bin/go build -o $srcdir/godoc code.google.com/p/go.tools/cmd/godoc
 ../bin/go get -d code.google.com/p/go.tools/cmd/vet
 ../bin/go build -o ../pkg/tool/$platform/vet 
code.google.com/p/go.tools/cmd/vet
+../bin/go get -d code.google.com/p/go.tools/cmd/lint
+../bin/go build -o ../pkg/tool/$platform/lint 
code.google.com/p/go.tools/cmd/lint
   fi
 done
   done



[arch-commits] Commit in mate-applet-lockkeys/repos (8 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 17:52:11
  Author: flexiondotorg
Revision: 106790

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

Added:
  mate-applet-lockkeys/repos/community-i686/PKGBUILD
(from rev 106789, mate-applet-lockkeys/trunk/PKGBUILD)
  mate-applet-lockkeys/repos/community-i686/mate-applet-lockkeys.install
(from rev 106789, mate-applet-lockkeys/trunk/mate-applet-lockkeys.install)
  mate-applet-lockkeys/repos/community-x86_64/PKGBUILD
(from rev 106789, mate-applet-lockkeys/trunk/PKGBUILD)
  mate-applet-lockkeys/repos/community-x86_64/mate-applet-lockkeys.install
(from rev 106789, mate-applet-lockkeys/trunk/mate-applet-lockkeys.install)
Deleted:
  mate-applet-lockkeys/repos/community-i686/PKGBUILD
  mate-applet-lockkeys/repos/community-i686/mate-applet-lockkeys.install
  mate-applet-lockkeys/repos/community-x86_64/PKGBUILD
  mate-applet-lockkeys/repos/community-x86_64/mate-applet-lockkeys.install

---+
 /PKGBUILD |   58 
 /mate-applet-lockkeys.install |   24 +
 community-i686/PKGBUILD   |   29 
 community-i686/mate-applet-lockkeys.install   |   12 
 community-x86_64/PKGBUILD |   29 
 community-x86_64/mate-applet-lockkeys.install |   12 
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 16:51:49 UTC (rev 106789)
+++ community-i686/PKGBUILD 2014-03-07 16:52:11 UTC (rev 106790)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-applet-lockkeys
-pkgver=0.2.3
-pkgrel=1
-pkgdesc=A MATE panel applet that shows which of the CapsLock, NumLock and 
ScrollLock keys are on and which are off.
-url=http://www.zavedil.com/mate-lock-keys-applet/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'mate-panel')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
-source=(http://www.zavedil.com/wp-content/uploads/2013/12/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('84515b805609daf1998590ee5f1fcb6a')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
-}

Copied: mate-applet-lockkeys/repos/community-i686/PKGBUILD (from rev 106789, 
mate-applet-lockkeys/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 16:52:11 UTC (rev 106790)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-applet-lockkeys
+pkgver=0.2.3
+pkgrel=2
+pkgdesc=A MATE panel applet that shows which of the CapsLock, NumLock and 
ScrollLock keys are on and which are off.
+url=http://www.zavedil.com/mate-lock-keys-applet/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk2' 'mate-panel')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
+source=(http://www.zavedil.com/wp-content/uploads/2013/12/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('84515b805609daf1998590ee5f1fcb6a')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
+}

Deleted: community-i686/mate-applet-lockkeys.install
===
--- community-i686/mate-applet-lockkeys.install 2014-03-07 16:51:49 UTC (rev 
106789)
+++ community-i686/mate-applet-lockkeys.install 2014-03-07 16:52:11 UTC (rev 
106790)
@@ -1,12 +0,0 @@
-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: mate-applet-lockkeys/repos/community-i686/mate-applet-lockkeys.install 
(from rev 106789, mate-applet-lockkeys/trunk/mate-applet-lockkeys.install)
===
--- community-i686/mate-applet-lockkeys.install (rev 0)
+++ community-i686/mate-applet-lockkeys.install 2014-03-07 16:52:11 UTC (rev 
106790)
@@ -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
+}

Deleted: 

[arch-commits] Commit in mate-applet-lockkeys/trunk (PKGBUILD)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 17:51:49
  Author: flexiondotorg
Revision: 106789

upgpkg: mate-applet-lockkeys 0.2.3-2 - Rebuild for MATE 1.8

Modified:
  mate-applet-lockkeys/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 16:51:27 UTC (rev 106788)
+++ PKGBUILD2014-03-07 16:51:49 UTC (rev 106789)
@@ -3,13 +3,13 @@
 
 pkgname=mate-applet-lockkeys
 pkgver=0.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE panel applet that shows which of the CapsLock, NumLock and 
ScrollLock keys are on and which are off.
 url=http://www.zavedil.com/mate-lock-keys-applet/;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('gtk2' 'mate-panel')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
 
source=(http://www.zavedil.com/wp-content/uploads/2013/12/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('84515b805609daf1998590ee5f1fcb6a')
 install=${pkgname}.install



[arch-commits] Commit in (qt-at-api)

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 17:53:18
  Author: bpiotrowski
Revision: 106791

Remove misnamed directory.

Deleted:
  qt-at-api/



[arch-commits] Commit in mate-applet-softupd/repos (8 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 17:58:27
  Author: flexiondotorg
Revision: 106793

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

Added:
  mate-applet-softupd/repos/community-i686/PKGBUILD
(from rev 106792, mate-applet-softupd/trunk/PKGBUILD)
  mate-applet-softupd/repos/community-i686/mate-applet-softupd.install
(from rev 106792, mate-applet-softupd/trunk/mate-applet-softupd.install)
  mate-applet-softupd/repos/community-x86_64/PKGBUILD
(from rev 106792, mate-applet-softupd/trunk/PKGBUILD)
  mate-applet-softupd/repos/community-x86_64/mate-applet-softupd.install
(from rev 106792, mate-applet-softupd/trunk/mate-applet-softupd.install)
Deleted:
  mate-applet-softupd/repos/community-i686/PKGBUILD
  mate-applet-softupd/repos/community-i686/mate-applet-softupd.install
  mate-applet-softupd/repos/community-x86_64/PKGBUILD
  mate-applet-softupd/repos/community-x86_64/mate-applet-softupd.install

--+
 /PKGBUILD|   58 +
 /mate-applet-softupd.install |   22 +
 community-i686/PKGBUILD  |   29 
 community-i686/mate-applet-softupd.install   |   11 
 community-x86_64/PKGBUILD|   29 
 community-x86_64/mate-applet-softupd.install |   11 
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 16:58:09 UTC (rev 106792)
+++ community-i686/PKGBUILD 2014-03-07 16:58:27 UTC (rev 106793)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-applet-softupd
-pkgver=0.2.10
-pkgrel=2
-pkgdesc=A MATE panel applet to notify when software updates become available.
-url=http://www.zavedil.com/mate-software-updates-applet/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gnome-packagekit' 'gtk2' 'libnotify' 'mate-panel')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
-source=(http://www.zavedil.com/wp-content/uploads/2013/10/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('f15f61c05a6701d8f987179f61c7bc0f')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
-}

Copied: mate-applet-softupd/repos/community-i686/PKGBUILD (from rev 106792, 
mate-applet-softupd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 16:58:27 UTC (rev 106793)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-applet-softupd
+pkgver=0.2.10
+pkgrel=3
+pkgdesc=A MATE panel applet to notify when software updates become available.
+url=http://www.zavedil.com/mate-software-updates-applet/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnome-packagekit' 'gtk2' 'libnotify' 'mate-panel')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
+source=(http://www.zavedil.com/wp-content/uploads/2013/10/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('f15f61c05a6701d8f987179f61c7bc0f')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
+}

Deleted: community-i686/mate-applet-softupd.install
===
--- community-i686/mate-applet-softupd.install  2014-03-07 16:58:09 UTC (rev 
106792)
+++ community-i686/mate-applet-softupd.install  2014-03-07 16:58:27 UTC (rev 
106793)
@@ -1,11 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-applet-softupd/repos/community-i686/mate-applet-softupd.install 
(from rev 106792, mate-applet-softupd/trunk/mate-applet-softupd.install)
===
--- community-i686/mate-applet-softupd.install  (rev 0)
+++ community-i686/mate-applet-softupd.install  2014-03-07 16:58:27 UTC (rev 
106793)
@@ -0,0 +1,11 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-07 16:58:09 UTC (rev 

[arch-commits] Commit in mate-applet-softupd/trunk (PKGBUILD)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 17:58:09
  Author: flexiondotorg
Revision: 106792

upgpkg: mate-applet-softupd 0.2.10-3 - Rebuild for MATE 1.8

Modified:
  mate-applet-softupd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 16:53:18 UTC (rev 106791)
+++ PKGBUILD2014-03-07 16:58:09 UTC (rev 106792)
@@ -3,13 +3,13 @@
 
 pkgname=mate-applet-softupd
 pkgver=0.2.10
-pkgrel=2
+pkgrel=3
 pkgdesc=A MATE panel applet to notify when software updates become available.
 url=http://www.zavedil.com/mate-software-updates-applet/;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('gnome-packagekit' 'gtk2' 'libnotify' 'mate-panel')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
 
source=(http://www.zavedil.com/wp-content/uploads/2013/10/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('f15f61c05a6701d8f987179f61c7bc0f')
 install=${pkgname}.install



[arch-commits] Commit in mate-applet-streamer/trunk (PKGBUILD)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 18:02:56
  Author: flexiondotorg
Revision: 106794

upgpkg: mate-applet-streamer 0.0.5-2 - Rebuild for MATE 1.8

Modified:
  mate-applet-streamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 16:58:27 UTC (rev 106793)
+++ PKGBUILD2014-03-07 17:02:56 UTC (rev 106794)
@@ -3,13 +3,13 @@
 
 pkgname=mate-applet-streamer
 pkgver=0.0.5
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE panel applet to let you play your favourite online radio 
station with a single click.
 url=http://www.zavedil.com/online-radio-applet/;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('gst-plugins-base' 'gtk2' 'libnotify' 'mate-panel' 'sqlite')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
 
source=(http://www.zavedil.com/wp-content/uploads/2013/12/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('c974612d6ef8138c472511dbc6587013')
 install=${pkgname}.install



[arch-commits] Commit in mate-applet-streamer/repos (8 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 18:03:21
  Author: flexiondotorg
Revision: 106795

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

Added:
  mate-applet-streamer/repos/community-i686/PKGBUILD
(from rev 106794, mate-applet-streamer/trunk/PKGBUILD)
  mate-applet-streamer/repos/community-i686/mate-applet-streamer.install
(from rev 106794, mate-applet-streamer/trunk/mate-applet-streamer.install)
  mate-applet-streamer/repos/community-x86_64/PKGBUILD
(from rev 106794, mate-applet-streamer/trunk/PKGBUILD)
  mate-applet-streamer/repos/community-x86_64/mate-applet-streamer.install
(from rev 106794, mate-applet-streamer/trunk/mate-applet-streamer.install)
Deleted:
  mate-applet-streamer/repos/community-i686/PKGBUILD
  mate-applet-streamer/repos/community-i686/mate-applet-streamer.install
  mate-applet-streamer/repos/community-x86_64/PKGBUILD
  mate-applet-streamer/repos/community-x86_64/mate-applet-streamer.install

---+
 /PKGBUILD |   58 
 /mate-applet-streamer.install |   22 +
 community-i686/PKGBUILD   |   29 
 community-i686/mate-applet-streamer.install   |   11 
 community-x86_64/PKGBUILD |   29 
 community-x86_64/mate-applet-streamer.install |   11 
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 17:02:56 UTC (rev 106794)
+++ community-i686/PKGBUILD 2014-03-07 17:03:21 UTC (rev 106795)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-applet-streamer
-pkgver=0.0.5
-pkgrel=1
-pkgdesc=A MATE panel applet to let you play your favourite online radio 
station with a single click.
-url=http://www.zavedil.com/online-radio-applet/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gst-plugins-base' 'gtk2' 'libnotify' 'mate-panel' 'sqlite')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
-source=(http://www.zavedil.com/wp-content/uploads/2013/12/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('c974612d6ef8138c472511dbc6587013')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
-}

Copied: mate-applet-streamer/repos/community-i686/PKGBUILD (from rev 106794, 
mate-applet-streamer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 17:03:21 UTC (rev 106795)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-applet-streamer
+pkgver=0.0.5
+pkgrel=2
+pkgdesc=A MATE panel applet to let you play your favourite online radio 
station with a single click.
+url=http://www.zavedil.com/online-radio-applet/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gst-plugins-base' 'gtk2' 'libnotify' 'mate-panel' 'sqlite')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
+source=(http://www.zavedil.com/wp-content/uploads/2013/12/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('c974612d6ef8138c472511dbc6587013')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
+}

Deleted: community-i686/mate-applet-streamer.install
===
--- community-i686/mate-applet-streamer.install 2014-03-07 17:02:56 UTC (rev 
106794)
+++ community-i686/mate-applet-streamer.install 2014-03-07 17:03:21 UTC (rev 
106795)
@@ -1,11 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-applet-streamer/repos/community-i686/mate-applet-streamer.install 
(from rev 106794, mate-applet-streamer/trunk/mate-applet-streamer.install)
===
--- community-i686/mate-applet-streamer.install (rev 0)
+++ community-i686/mate-applet-streamer.install 2014-03-07 17:03:21 UTC (rev 
106795)
@@ -0,0 +1,11 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD

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

2014-03-07 Thread Anatol Pomozov
Date: Friday, March 7, 2014 @ 18:52:54
  Author: anatolik
Revision: 106796

upgpkg: mod_itk 2.4.7.r02-1

Modified:
  mod_itk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 17:03:21 UTC (rev 106795)
+++ PKGBUILD2014-03-07 17:52:54 UTC (rev 106796)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
 
-_version=2.4.7-01
+_version=2.4.7-02
 pkgname=mod_itk
 pkgver=${_version//-/.r}
 pkgrel=1
@@ -11,7 +11,7 @@
 license=(APACHE)
 depends=(apache)
 source=(http://mpm-itk.sesse.net/mpm-itk-$_version.tar.gz)
-sha256sums=('7cd2f6c08ff3872c472a88794161a6bbe9d7166eb3f6ffda4d1b5239f6d39004')
+sha256sums=('f12656326a1d3b92fefe63446032f0939ed9c803d4d9a1f89bae318eb3432e75')
 
 build() {
   cd mpm-itk-$_version



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

2014-03-07 Thread Anatol Pomozov
Date: Friday, March 7, 2014 @ 18:53:31
  Author: anatolik
Revision: 106797

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 17:52:54 UTC (rev 106796)
+++ community-i686/PKGBUILD 2014-03-07 17:53:31 UTC (rev 106797)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-_version=2.4.7-01
-pkgname=mod_itk
-pkgver=${_version//-/.r}
-pkgrel=1
-pkgdesc='Apache module that allows you to run each of your vhost under a 
separate uid and gid'
-arch=(i686 x86_64)
-url='http://mpm-itk.sesse.net/'
-license=(APACHE)
-depends=(apache)
-source=(http://mpm-itk.sesse.net/mpm-itk-$_version.tar.gz)
-sha256sums=('7cd2f6c08ff3872c472a88794161a6bbe9d7166eb3f6ffda4d1b5239f6d39004')
-
-build() {
-  cd mpm-itk-$_version
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd mpm-itk-$_version
-  install -D -m755 .libs/mpm_itk.so $pkgdir/usr/lib/httpd/modules/mpm_itk.so
-}

Copied: mod_itk/repos/community-i686/PKGBUILD (from rev 106796, 
mod_itk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 17:53:31 UTC (rev 106797)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+
+_version=2.4.7-02
+pkgname=mod_itk
+pkgver=${_version//-/.r}
+pkgrel=1
+pkgdesc='Apache module that allows you to run each of your vhost under a 
separate uid and gid'
+arch=(i686 x86_64)
+url='http://mpm-itk.sesse.net/'
+license=(APACHE)
+depends=(apache)
+source=(http://mpm-itk.sesse.net/mpm-itk-$_version.tar.gz)
+sha256sums=('f12656326a1d3b92fefe63446032f0939ed9c803d4d9a1f89bae318eb3432e75')
+
+build() {
+  cd mpm-itk-$_version
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd mpm-itk-$_version
+  install -D -m755 .libs/mpm_itk.so $pkgdir/usr/lib/httpd/modules/mpm_itk.so
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-07 17:52:54 UTC (rev 106796)
+++ community-x86_64/PKGBUILD   2014-03-07 17:53:31 UTC (rev 106797)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-_version=2.4.7-01
-pkgname=mod_itk
-pkgver=${_version//-/.r}
-pkgrel=1
-pkgdesc='Apache module that allows you to run each of your vhost under a 
separate uid and gid'
-arch=(i686 x86_64)
-url='http://mpm-itk.sesse.net/'
-license=(APACHE)
-depends=(apache)
-source=(http://mpm-itk.sesse.net/mpm-itk-$_version.tar.gz)
-sha256sums=('7cd2f6c08ff3872c472a88794161a6bbe9d7166eb3f6ffda4d1b5239f6d39004')
-
-build() {
-  cd mpm-itk-$_version
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd mpm-itk-$_version
-  install -D -m755 .libs/mpm_itk.so $pkgdir/usr/lib/httpd/modules/mpm_itk.so
-}

Copied: mod_itk/repos/community-x86_64/PKGBUILD (from rev 106796, 
mod_itk/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-07 17:53:31 UTC (rev 106797)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+
+_version=2.4.7-02
+pkgname=mod_itk
+pkgver=${_version//-/.r}
+pkgrel=1
+pkgdesc='Apache module that allows you to run each of your vhost under a 
separate uid and gid'
+arch=(i686 x86_64)
+url='http://mpm-itk.sesse.net/'
+license=(APACHE)
+depends=(apache)
+source=(http://mpm-itk.sesse.net/mpm-itk-$_version.tar.gz)
+sha256sums=('f12656326a1d3b92fefe63446032f0939ed9c803d4d9a1f89bae318eb3432e75')
+
+build() {
+  cd mpm-itk-$_version
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd mpm-itk-$_version
+  install -D -m755 .libs/mpm_itk.so $pkgdir/usr/lib/httpd/modules/mpm_itk.so
+}



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

2014-03-07 Thread Felix Yan
Date: Friday, March 7, 2014 @ 18:54:47
  Author: fyan
Revision: 207145

update 3.4 PKGBUILD, use --with-system-libmpdec and --without-ensurepip

Modified:
  python/trunk/PKGBUILD.3.4

--+
 PKGBUILD.3.4 |   24 +---
 1 file changed, 13 insertions(+), 11 deletions(-)

Modified: PKGBUILD.3.4
===
--- PKGBUILD.3.42014-03-07 17:07:29 UTC (rev 207144)
+++ PKGBUILD.3.42014-03-07 17:54:47 UTC (rev 207145)
@@ -12,14 +12,15 @@
 arch=('i686' 'x86_64')
 license=('custom')
 url=http://www.python.org/;
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'mpdecimal')
 makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
-optdepends=('tk: for tkinter' 'sqlite')
+optdepends=('tk: for tkinter'
+'python-setuptools'
+'python-pip'
+'sqlite')
 options=('!makeflags')
-# Should we provide setuptools  pip this way, or just remove them from python 
package and
-# keep them as seperated packages, for easier upgrades?
-provides=('python3' 'python-setuptools' 'python-pip')
-replaces=('python3' 'python-setuptools' 'python-pip')
+provides=('python3')
+replaces=('python3')
 source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
 sha1sums=('f03216f4b537c284afacb1e8308a52b9a62368e9')
 
@@ -29,17 +30,18 @@
   # FS#23997
   sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
 
-  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # Ensure that we are using the system copy of various libraries (expat, 
zlib, libffi, and libmpdec),
   # rather than copies shipped in the tarball
   rm -r Modules/expat
   rm -r Modules/zlib
   rm -r Modules/_ctypes/{darwin,libffi}*
-
+  rm -r Modules/_decimal/libmpdec
 }
 
 build() {
   cd ${srcdir}/Python-${pkgver}
 
+  # Disable bundled pip  setuptools
   ./configure --prefix=/usr \
   --enable-shared \
   --with-threads \
@@ -48,7 +50,9 @@
   --with-valgrind \
   --with-system-expat \
   --with-dbmliborder=gdbm:ndbm \
-  --with-system-ffi
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --without-ensurepip
 
   make
 }
@@ -68,8 +72,6 @@
   ln -sf python3-config${pkgdir}/usr/bin/python-config
   ln -sf idle3 ${pkgdir}/usr/bin/idle
   ln -sf pydoc3${pkgdir}/usr/bin/pydoc
-  ln -sf pip3  ${pkgdir}/usr/bin/pip
-  ln -sf easy_install-3.4  ${pkgdir}/usr/bin/easy_install
   ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
   ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python.1
 



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

2014-03-07 Thread Anatol Pomozov
Date: Friday, March 7, 2014 @ 19:18:36
  Author: anatolik
Revision: 207146

httpd binary is already installed by 'make install'

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 17:54:47 UTC (rev 207145)
+++ PKGBUILD2014-03-07 18:18:36 UTC (rev 207146)
@@ -73,7 +73,6 @@
 
   make DESTDIR=${pkgdir} install

-  install -D -m755 httpd ${pkgdir}/usr/bin/httpd
   install -D -m644 ${srcdir}/httpd.logrotate 
${pkgdir}/etc/logrotate.d/httpd
   install -D -m644 ${srcdir}/apache.tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/apache.conf
   install -D -m644 ${srcdir}/httpd.service 
${pkgdir}/usr/lib/systemd/system/httpd.service  



[arch-commits] Commit in (6 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 19:20:53
  Author: flexiondotorg
Revision: 106798

Added gnome-main-menu

Added:
  gnome-main-menu/
  gnome-main-menu/repos/
  gnome-main-menu/trunk/
  gnome-main-menu/trunk/PKGBUILD
  gnome-main-menu/trunk/gnome-main-menu.install
Modified:
  mate-accountsdialog/trunk/PKGBUILD

---+
 gnome-main-menu/trunk/PKGBUILD|   34 
 gnome-main-menu/trunk/gnome-main-menu.install |   13 +
 mate-accountsdialog/trunk/PKGBUILD|4 +-
 3 files changed, 49 insertions(+), 2 deletions(-)

Added: gnome-main-menu/trunk/PKGBUILD
===
--- gnome-main-menu/trunk/PKGBUILD  (rev 0)
+++ gnome-main-menu/trunk/PKGBUILD  2014-03-07 18:20:53 UTC (rev 106798)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=gnome-main-menu
+pkgver=1.7.0
+pkgrel=1
+pkgdesc=A mate-panel applet similar to the traditional main-menu, but with a 
few additions.
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
+makedepends=('mate-common' 'yelp-tools')
+options=('!emptydirs')
+source=(http://pub.mate-desktop.org/releases/1.7/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('ac6ce5dcd9433d798d9de3c311127a20084fc00c')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-caja-extension \
+--without-html-dir \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


Property changes on: gnome-main-menu/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-main-menu/trunk/gnome-main-menu.install
===
--- gnome-main-menu/trunk/gnome-main-menu.install   
(rev 0)
+++ gnome-main-menu/trunk/gnome-main-menu.install   2014-03-07 18:20:53 UTC 
(rev 106798)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas/
+#gtk-update-icon-cache -q -t -f /usr/share/icons/mate
+#update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Modified: mate-accountsdialog/trunk/PKGBUILD
===
--- mate-accountsdialog/trunk/PKGBUILD  2014-03-07 17:53:31 UTC (rev 106797)
+++ mate-accountsdialog/trunk/PKGBUILD  2014-03-07 18:20:53 UTC (rev 106798)
@@ -3,7 +3,7 @@
 
 pkgname=mate-accountsdialog
 pkgver=1.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc=An application to view and modify user accounts information for MATE.
 url=https://github.com/NiceandGently/mate-accountsdialog;
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('accountsservice' 'apg' 'dbus-glib' 'gtk2' 'iso-codes' 'mate-desktop'
  'mate-polkit' 'libunique')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
 options=('!emptydirs')
 
source=(https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
 sha1sums=('33704adbed045b60cbcd3e15ae83e3283765ef52')



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

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 19:24:00
  Author: flexiondotorg
Revision: 106799

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

Added:
  gnome-main-menu/repos/community-i686/
  gnome-main-menu/repos/community-i686/PKGBUILD
(from rev 106798, gnome-main-menu/trunk/PKGBUILD)
  gnome-main-menu/repos/community-i686/gnome-main-menu.install
(from rev 106798, gnome-main-menu/trunk/gnome-main-menu.install)
  gnome-main-menu/repos/community-x86_64/
  gnome-main-menu/repos/community-x86_64/PKGBUILD
(from rev 106798, gnome-main-menu/trunk/PKGBUILD)
  gnome-main-menu/repos/community-x86_64/gnome-main-menu.install
(from rev 106798, gnome-main-menu/trunk/gnome-main-menu.install)

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

Copied: gnome-main-menu/repos/community-i686/PKGBUILD (from rev 106798, 
gnome-main-menu/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 18:24:00 UTC (rev 106799)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=gnome-main-menu
+pkgver=1.7.0
+pkgrel=1
+pkgdesc=A mate-panel applet similar to the traditional main-menu, but with a 
few additions.
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
+makedepends=('mate-common' 'yelp-tools')
+options=('!emptydirs')
+source=(http://pub.mate-desktop.org/releases/1.7/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('ac6ce5dcd9433d798d9de3c311127a20084fc00c')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-caja-extension \
+--without-html-dir \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: gnome-main-menu/repos/community-i686/gnome-main-menu.install (from rev 
106798, gnome-main-menu/trunk/gnome-main-menu.install)
===
--- community-i686/gnome-main-menu.install  (rev 0)
+++ community-i686/gnome-main-menu.install  2014-03-07 18:24:00 UTC (rev 
106799)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas/
+#gtk-update-icon-cache -q -t -f /usr/share/icons/mate
+#update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-main-menu/repos/community-x86_64/PKGBUILD (from rev 106798, 
gnome-main-menu/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-07 18:24:00 UTC (rev 106799)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=gnome-main-menu
+pkgver=1.7.0
+pkgrel=1
+pkgdesc=A mate-panel applet similar to the traditional main-menu, but with a 
few additions.
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
+makedepends=('mate-common' 'yelp-tools')
+options=('!emptydirs')
+source=(http://pub.mate-desktop.org/releases/1.7/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('ac6ce5dcd9433d798d9de3c311127a20084fc00c')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-caja-extension \
+--without-html-dir \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: gnome-main-menu/repos/community-x86_64/gnome-main-menu.install (from 
rev 106798, gnome-main-menu/trunk/gnome-main-menu.install)
===
--- community-x86_64/gnome-main-menu.install(rev 0)
+++ community-x86_64/gnome-main-menu.install2014-03-07 18:24:00 UTC (rev 
106799)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas/
+#gtk-update-icon-cache -q -t -f /usr/share/icons/mate
+#update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2014-03-07 Thread Alexander Rødseth
Date: Friday, March 7, 2014 @ 20:50:59
  Author: arodseth
Revision: 106800

Install godoc if available

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 18:24:00 UTC (rev 106799)
+++ PKGBUILD2014-03-07 19:50:59 UTC (rev 106800)
@@ -88,7 +88,9 @@
 
   export GOROOT=$srcdir/$pkgname-$pkgver
 
-  install -Dm755 ../godoc $pkgdir/usr/bin/godoc
+  if [ -e ../godoc ]; then
+install -Dm755 ../godoc $pkgdir/usr/bin/godoc
+  fi
 
   install -Dm644 LICENSE \
 $pkgdir/usr/share/licenses/go/LICENSE



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

2014-03-07 Thread Andreas Radke
Date: Friday, March 7, 2014 @ 20:55:00
  Author: andyrtr
Revision: 207149

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

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

---+
 /LICENSE  |  146 
 /PKGBUILD |  122 
 extra-i686/LICENSE|   73 
 extra-i686/PKGBUILD   |   61 
 extra-x86_64/LICENSE  |   73 
 extra-x86_64/PKGBUILD |   61 
 6 files changed, 268 insertions(+), 268 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2014-03-07 19:54:36 UTC (rev 207148)
+++ extra-i686/LICENSE  2014-03-07 19:55:00 UTC (rev 207149)
@@ -1,73 +0,0 @@
-/***
-
-Copyright 2002-2008,2009 by Thomas E. Dickey
-
-All Rights Reserved
-
-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 ABOVE LISTED COPYRIGHT HOLDER(S) 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.
-
-Except as contained in this notice, the name(s) of the above copyright
-holders shall not be used in advertising or otherwise to promote the
-sale, use or other dealings in this Software without prior written
-authorization.
-
-Copyright 1987, 1988  The Open Group
-
-Permission to use, copy, modify, distribute, and sell this software and its
-documentation for any purpose is hereby granted without fee, provided that
-the above copyright notice appear in all copies and that both that
-copyright notice and this permission notice appear in supporting
-documentation.
-
-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
-OPEN GROUP 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.
-
-Except as contained in this notice, the name of The Open Group shall not be
-used in advertising or otherwise to promote the sale, use or other dealings
-in this Software without prior written authorization from The Open Group.
-
-Copyright 1987, 1988 by Digital Equipment Corporation, Maynard.
-
-All Rights Reserved
-
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
-provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in
-supporting documentation, and that the name of Digital not be used in
-advertising or publicity pertaining to distribution of the software
-without specific, written prior permission.
-
-DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
-ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
-DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
-ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
-WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
-ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
-SOFTWARE.
-
-**/

Copied: xterm/repos/extra-i686/LICENSE (from 

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

2014-03-07 Thread Andreas Radke
Date: Friday, March 7, 2014 @ 20:54:36
  Author: andyrtr
Revision: 207148

upgpkg: xterm 303-1

upstream update 303

Modified:
  xterm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 19:17:51 UTC (rev 207147)
+++ PKGBUILD2014-03-07 19:54:36 UTC (rev 207148)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck alexan...@archlinux.org
 
 pkgname=xterm
-pkgver=302
+pkgver=303
 pkgrel=1
 pkgdesc=X Terminal Emulator
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libxft' 'libxaw' 'ncurses' 'xorg-luit' 'xbitmaps' 'libutempter')
 source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver}.tgz{,.asc}
 LICENSE)
-md5sums=('494e2f3988d22fe7266410c862042250'
+md5sums=('48f6d49b2b6b6933d501d767cbed9254'
  'SKIP'
  '10ecc3f8ee91e3189863a172f68282d2')
 



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

2014-03-07 Thread Andreas Radke
Date: Friday, March 7, 2014 @ 21:03:34
  Author: andyrtr
Revision: 207152

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

Added:
  libevdev/repos/staging-i686/PKGBUILD
(from rev 207151, libevdev/trunk/PKGBUILD)
  libevdev/repos/staging-x86_64/PKGBUILD
(from rev 207151, libevdev/trunk/PKGBUILD)
Deleted:
  libevdev/repos/staging-i686/PKGBUILD
  libevdev/repos/staging-x86_64/PKGBUILD

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

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2014-03-07 20:03:21 UTC (rev 207151)
+++ staging-i686/PKGBUILD   2014-03-07 20:03:34 UTC (rev 207152)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=libevdev
-pkgver=1.0
-pkgrel=1
-pkgdesc=Wrapper library for evdev devices
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/libevdev/;
-license=(custom:X11)
-depends=('glibc')
-makedepends=('python')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('6e6d1e307eff03f1c939c9af532228b19030fc896a9257a8abfa6e9b7dc91803')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: libevdev/repos/staging-i686/PKGBUILD (from rev 207151, 
libevdev/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-03-07 20:03:34 UTC (rev 207152)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=libevdev
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=Wrapper library for evdev devices
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libevdev/;
+license=(custom:X11)
+depends=('glibc')
+makedepends=('python')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('a2b6f6a5f898099df816e3e30f53f4b23c2f05ab240737cbdc111874a0922913')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2014-03-07 20:03:21 UTC (rev 207151)
+++ staging-x86_64/PKGBUILD 2014-03-07 20:03:34 UTC (rev 207152)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=libevdev
-pkgver=1.0
-pkgrel=1
-pkgdesc=Wrapper library for evdev devices
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/libevdev/;
-license=(custom:X11)
-depends=('glibc')
-makedepends=('python')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('6e6d1e307eff03f1c939c9af532228b19030fc896a9257a8abfa6e9b7dc91803')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: libevdev/repos/staging-x86_64/PKGBUILD (from rev 207151, 
libevdev/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-03-07 20:03:34 UTC (rev 207152)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=libevdev
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=Wrapper library for evdev devices
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libevdev/;
+license=(custom:X11)
+depends=('glibc')
+makedepends=('python')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('a2b6f6a5f898099df816e3e30f53f4b23c2f05ab240737cbdc111874a0922913')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}



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

2014-03-07 Thread Andreas Radke
Date: Friday, March 7, 2014 @ 21:03:21
  Author: andyrtr
Revision: 207151

upgpkg: libevdev 1.0.1-1

upstream update 1.0.1

Modified:
  libevdev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 19:58:24 UTC (rev 207150)
+++ PKGBUILD2014-03-07 20:03:21 UTC (rev 207151)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=libevdev
-pkgver=1.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc=Wrapper library for evdev devices
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('python')
 source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('6e6d1e307eff03f1c939c9af532228b19030fc896a9257a8abfa6e9b7dc91803')
+sha256sums=('a2b6f6a5f898099df816e3e30f53f4b23c2f05ab240737cbdc111874a0922913')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in linux/trunk (1 file)

2014-03-07 Thread Thomas Bächler
Date: Friday, March 7, 2014 @ 22:16:05
  Author: thomas
Revision: 207153

Remove unneeded patch.

Deleted:
  linux/trunk/0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch

-+
 0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch |   82 
--
 1 file changed, 82 deletions(-)

Deleted: 0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch
===
--- 0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch 
2014-03-07 20:03:34 UTC (rev 207152)
+++ 0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch 
2014-03-07 21:16:05 UTC (rev 207153)
@@ -1,82 +0,0 @@
-From 2bd7c7b5f011b3d57e4f5625b561a6f3f2f34a81 Mon Sep 17 00:00:00 2001
-From: Trond Myklebust trond.mykleb...@primarydata.com
-Date: Sun, 16 Feb 2014 12:14:13 -0500
-Subject: [PATCH] SUNRPC: Ensure that gss_auth isn't freed before its upcall
- messages
-
-Fix a race in which the RPC client is shutting down while the
-gss daemon is processing a downcall. If the RPC client manages to
-shut down before the gss daemon is done, then the struct gss_auth
-used in gss_release_msg() may have already been freed.
-
-Link: 
http://lkml.kernel.org/r/1392494917.71728.yahoomail...@web140002.mail.bf1.yahoo.com
-Reported-by: John da_audioph...@yahoo.com
-Reported-by: Borislav Petkov b...@alien8.de
-Cc: sta...@vger.kernel.org # 3.12+
-Signed-off-by: Trond Myklebust trond.mykleb...@primarydata.com

- net/sunrpc/auth_gss/auth_gss.c | 13 +++--
- 1 file changed, 11 insertions(+), 2 deletions(-)
-
-diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c
-index 42fdfc6..a642fd616 100644
 a/net/sunrpc/auth_gss/auth_gss.c
-+++ b/net/sunrpc/auth_gss/auth_gss.c
-@@ -108,6 +108,7 @@ struct gss_auth {
- static DEFINE_SPINLOCK(pipe_version_lock);
- static struct rpc_wait_queue pipe_version_rpc_waitqueue;
- static DECLARE_WAIT_QUEUE_HEAD(pipe_version_waitqueue);
-+static void gss_put_auth(struct gss_auth *gss_auth);
- 
- static void gss_free_ctx(struct gss_cl_ctx *);
- static const struct rpc_pipe_ops gss_upcall_ops_v0;
-@@ -320,6 +321,7 @@ gss_release_msg(struct gss_upcall_msg *gss_msg)
-   if (gss_msg-ctx != NULL)
-   gss_put_ctx(gss_msg-ctx);
-   rpc_destroy_wait_queue(gss_msg-rpc_waitqueue);
-+  gss_put_auth(gss_msg-auth);
-   kfree(gss_msg);
- }
- 
-@@ -500,6 +502,7 @@ gss_alloc_msg(struct gss_auth *gss_auth,
-   if (err)
-   goto err_free_msg;
-   };
-+  kref_get(gss_auth-kref);
-   return gss_msg;
- err_free_msg:
-   kfree(gss_msg);
-@@ -1071,6 +1074,12 @@ gss_free_callback(struct kref *kref)
- }
- 
- static void
-+gss_put_auth(struct gss_auth *gss_auth)
-+{
-+  kref_put(gss_auth-kref, gss_free_callback);
-+}
-+
-+static void
- gss_destroy(struct rpc_auth *auth)
- {
-   struct gss_auth *gss_auth = container_of(auth,
-@@ -1091,7 +1100,7 @@ gss_destroy(struct rpc_auth *auth)
-   gss_auth-gss_pipe[1] = NULL;
-   rpcauth_destroy_credcache(auth);
- 
--  kref_put(gss_auth-kref, gss_free_callback);
-+  gss_put_auth(gss_auth);
- }
- 
- /*
-@@ -1262,7 +1271,7 @@ gss_destroy_nullcred(struct rpc_cred *cred)
-   call_rcu(cred-cr_rcu, gss_free_cred_callback);
-   if (ctx)
-   gss_put_ctx(ctx);
--  kref_put(gss_auth-kref, gss_free_callback);
-+  gss_put_auth(gss_auth);
- }
- 
- static void
--- 
-1.9.0
-



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

2014-03-07 Thread Thomas Bächler
Date: Friday, March 7, 2014 @ 22:55:07
  Author: thomas
Revision: 207154

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 207153, 
linux/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/testing-i686/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch
(from rev 207153, 
linux/trunk/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch)
  
linux/repos/testing-i686/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch
(from rev 207153, 
linux/trunk/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch)
  
linux/repos/testing-i686/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch
(from rev 207153, 
linux/trunk/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch)
  
linux/repos/testing-i686/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch
(from rev 207153, 
linux/trunk/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch)
  
linux/repos/testing-i686/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch
(from rev 207153, 
linux/trunk/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch)
  
linux/repos/testing-i686/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch
(from rev 207153, 
linux/trunk/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch)
  
linux/repos/testing-i686/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch
(from rev 207153, 
linux/trunk/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 207153, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 207153, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 207153, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 207153, linux/trunk/config.x86_64)
  linux/repos/testing-i686/criu-no-expert.patch
(from rev 207153, linux/trunk/criu-no-expert.patch)
  linux/repos/testing-i686/i8042-fix-aliases.patch
(from rev 207153, linux/trunk/i8042-fix-aliases.patch)
  linux/repos/testing-i686/linux.install
(from rev 207153, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 207153, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 207153, 
linux/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/testing-x86_64/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch
(from rev 207153, 
linux/trunk/0001-sunrpc-create-a-new-dummy-pipe-for-gssd-to-hold-open.patch)
  
linux/repos/testing-x86_64/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch
(from rev 207153, 
linux/trunk/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch)
  
linux/repos/testing-x86_64/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch
(from rev 207153, 
linux/trunk/0002-sunrpc-replace-sunrpc_net-gssd_running-flag-with-a-m.patch)
  
linux/repos/testing-x86_64/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch
(from rev 207153, 
linux/trunk/0003-nfs-check-if-gssd-is-running-before-attempting-to-us.patch)
  
linux/repos/testing-x86_64/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch
(from rev 207153, 
linux/trunk/0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch)
  
linux/repos/testing-x86_64/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch
(from rev 207153, 
linux/trunk/0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch)
  
linux/repos/testing-x86_64/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch
(from rev 207153, 
linux/trunk/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 207153, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 207153, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 207153, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 207153, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/criu-no-expert.patch
(from rev 207153, linux/trunk/criu-no-expert.patch)
  linux/repos/testing-x86_64/i8042-fix-aliases.patch
(from rev 207153, linux/trunk/i8042-fix-aliases.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 207153, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 207153, linux/trunk/linux.preset)

+
 testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch   
|   76 
 

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

2014-03-07 Thread Lukas Jirkovsky
Date: Friday, March 7, 2014 @ 23:03:34
  Author: stativ
Revision: 106801

upgpkg: cdrtools 3.01a23-1

update to 3.01a23

Modified:
  cdrtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 19:50:59 UTC (rev 106800)
+++ PKGBUILD2014-03-07 22:03:34 UTC (rev 106801)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=cdrtools
-pkgver=3.01a22
+pkgver=3.01a23
 pkgrel=1
 pkgdesc=Original cdrtools supporting CD, DVD and BluRay burning
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=(!makeflags)
 backup=('etc/default/cdrecord' 'etc/default/rscsi')
 source=(http://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-$pkgver.tar.bz2)
-md5sums=('df50a259694aa9a39c03f3faa9fad7bd')
+md5sums=('3943af2b661415486ec584d97497df31')
 
 build() {
   cd $srcdir/cdrtools-${pkgver%%a*}



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

2014-03-07 Thread Lukas Jirkovsky
Date: Friday, March 7, 2014 @ 23:03:41
  Author: stativ
Revision: 106802

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 22:03:34 UTC (rev 106801)
+++ community-i686/PKGBUILD 2014-03-07 22:03:41 UTC (rev 106802)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=cdrtools
-pkgver=3.01a22
-pkgrel=1
-pkgdesc=Original cdrtools supporting CD, DVD and BluRay burning
-arch=('i686' 'x86_64')
-url=http://cdrecord.berlios.de/private/cdrecord.html;
-license=('CDDL')
-depends=('acl' 'libcap')
-conflicts=('cdrkit')
-provides=('cdrkit')
-options=(!makeflags)
-backup=('etc/default/cdrecord' 'etc/default/rscsi')
-source=(http://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-$pkgver.tar.bz2)
-md5sums=('df50a259694aa9a39c03f3faa9fad7bd')
-
-build() {
-  cd $srcdir/cdrtools-${pkgver%%a*}
-  sed -i 's|/opt/schily|/usr|g' DEFAULTS/Defaults.linux
-  sed -i 's|DEFINSGRP=.*|DEFINSGRP=root|' DEFAULTS/Defaults.linux
-  # install rscsi to /usr/bin instead of /usr/sbin
-  sed -i 's|INSDIR=.*|INSDIR=bin|' rscsi/Makefile
-  
-  export GMAKE_NOWARN=true
-  make INS_BASE=/usr INS_RBASE=/
-}
-
-package() {
-  cd $srcdir/cdrtools-${pkgver%%a*}
-
-  export GMAKE_NOWARN=true
-  make INS_BASE=/usr INS_RBASE=/ DESTDIR=$pkgdir install
-  rm -rf $pkgdir/usr/include
-  rm -rf $pkgdir/usr/lib/{*.a,profiled}
-
-  # autoload 'sg' module needed by cdrecord
-  install -d -m755 $pkgdir/usr/lib/modules-load.d/
-  echo sg  $pkgdir/usr/lib/modules-load.d/cdrecord.conf
-
-  # create symlinks for cdrkit compatibility
-  cd $pkgdir/usr/bin
-  ln -s cdrecord wodim
-  ln -s readcd readom
-  ln -s mkisofs genisoimage
-  ln -s cdda2wav icedax
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cdrtools/repos/community-i686/PKGBUILD (from rev 106801, 
cdrtools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 22:03:41 UTC (rev 106802)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=cdrtools
+pkgver=3.01a23
+pkgrel=1
+pkgdesc=Original cdrtools supporting CD, DVD and BluRay burning
+arch=('i686' 'x86_64')
+url=http://cdrecord.berlios.de/private/cdrecord.html;
+license=('CDDL')
+depends=('acl' 'libcap')
+conflicts=('cdrkit')
+provides=('cdrkit')
+options=(!makeflags)
+backup=('etc/default/cdrecord' 'etc/default/rscsi')
+source=(http://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-$pkgver.tar.bz2)
+md5sums=('3943af2b661415486ec584d97497df31')
+
+build() {
+  cd $srcdir/cdrtools-${pkgver%%a*}
+  sed -i 's|/opt/schily|/usr|g' DEFAULTS/Defaults.linux
+  sed -i 's|DEFINSGRP=.*|DEFINSGRP=root|' DEFAULTS/Defaults.linux
+  # install rscsi to /usr/bin instead of /usr/sbin
+  sed -i 's|INSDIR=.*|INSDIR=bin|' rscsi/Makefile
+  
+  export GMAKE_NOWARN=true
+  make INS_BASE=/usr INS_RBASE=/
+}
+
+package() {
+  cd $srcdir/cdrtools-${pkgver%%a*}
+
+  export GMAKE_NOWARN=true
+  make INS_BASE=/usr INS_RBASE=/ DESTDIR=$pkgdir install
+  rm -rf $pkgdir/usr/include
+  rm -rf $pkgdir/usr/lib/{*.a,profiled}
+
+  # autoload 'sg' module needed by cdrecord
+  install -d -m755 $pkgdir/usr/lib/modules-load.d/
+  echo sg  $pkgdir/usr/lib/modules-load.d/cdrecord.conf
+
+  # create symlinks for cdrkit compatibility
+  cd $pkgdir/usr/bin
+  ln -s cdrecord wodim
+  ln -s readcd readom
+  ln -s mkisofs genisoimage
+  ln -s cdda2wav icedax
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-07 22:03:34 UTC (rev 106801)
+++ community-x86_64/PKGBUILD   2014-03-07 22:03:41 UTC (rev 106802)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=cdrtools
-pkgver=3.01a22
-pkgrel=1
-pkgdesc=Original cdrtools supporting CD, DVD and BluRay burning
-arch=('i686' 'x86_64')
-url=http://cdrecord.berlios.de/private/cdrecord.html;
-license=('CDDL')
-depends=('acl' 'libcap')
-conflicts=('cdrkit')
-provides=('cdrkit')
-options=(!makeflags)
-backup=('etc/default/cdrecord' 'etc/default/rscsi')
-source=(http://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-$pkgver.tar.bz2)
-md5sums=('df50a259694aa9a39c03f3faa9fad7bd')
-
-build() {
-  cd $srcdir/cdrtools-${pkgver%%a*}
-  

[arch-commits] Commit in readline/trunk (PKGBUILD readline-6.3-vi-last.patch)

2014-03-07 Thread Allan McRae
Date: Saturday, March 8, 2014 @ 03:19:14
  Author: allan
Revision: 207155

upgpkg: readline 6.3-2

fix vi mode (FS#39212)

Added:
  readline/trunk/readline-6.3-vi-last.patch
Modified:
  readline/trunk/PKGBUILD

+
 PKGBUILD   |   18 +-
 readline-6.3-vi-last.patch |   15 +++
 2 files changed, 28 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 21:55:07 UTC (rev 207154)
+++ PKGBUILD2014-03-08 02:19:14 UTC (rev 207155)
@@ -6,7 +6,7 @@
 _basever=6.3
 _patchlevel=000 #prepare for some patches
 pkgver=$_basever #.$_patchlevel
-pkgrel=1
+pkgrel=2
 pkgdesc=GNU readline library
 arch=('i686' 'x86_64')
 url=http://tiswww.case.edu/php/chet/readline/rltop.html;
@@ -16,7 +16,8 @@
 options=('!emptydirs')
 install=readline.install
 source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
-inputrc)
+inputrc
+readline-6.3-vi-last.patch)
 if [ $_patchlevel -gt 00 ]; then
 for (( p=1; p=$((10#${_patchlevel})); p++ )); do
 source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 %03d $p){,.sig})
@@ -24,10 +25,10 @@
 fi
 md5sums=('33c8fb279e981274f485fd91da77e94a'
  'SKIP'
- '58d54966c1191db45973cb3191ac621a')
+ '58d54966c1191db45973cb3191ac621a'
+ 'fcfe0a50c69f56f66ad04127a927862e')
 
-
-build() {
+preapre() {
   cd ${srcdir}/${pkgname}-$_basever
   for (( p=1; p=$((10#${_patchlevel})); p++ )); do
 msg applying patch readline${_basever//./}-$(printf %03d $p)
@@ -34,9 +35,16 @@
 patch -p0 -i $srcdir/readline${_basever//./}-$(printf %03d $p)
   done
 
+  # patch from upstream mailing list to fix vi mode
+  patch -p2 -i $srcdir/readline-6.3-vi-last.patch
+
   # Remove RPATH from shared objects (FS#14366)
   sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
 
+build() {
+  cd ${srcdir}/${pkgname}-$_basever
+
   # build with -fPIC for x86_64 (FS#15634)
   [[ $CARCH == x86_64 ]]  CFLAGS=$CFLAGS -fPIC
 

Added: readline-6.3-vi-last.patch
===
--- readline-6.3-vi-last.patch  (rev 0)
+++ readline-6.3-vi-last.patch  2014-03-08 02:19:14 UTC (rev 207155)
@@ -0,0 +1,15 @@
+*** ../bash-4.3/lib/readline/readline.c2013-10-28 14:58:06.0 
-0400
+--- lib/readline/readline.c2014-03-07 15:20:33.0 -0500
+***
+*** 965,969 
+if (rl_editing_mode == vi_mode  _rl_keymap == vi_movement_keymap 
+key != ANYOTHERKEY 
+!   rl_key_sequence_length == 1  /* XXX */
+_rl_vi_textmod_command (key))
+  _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
+--- 965,969 
+if (rl_editing_mode == vi_mode  _rl_keymap == vi_movement_keymap 
+key != ANYOTHERKEY 
+!   _rl_dispatching_keymap == vi_movement_keymap 
+_rl_vi_textmod_command (key))
+  _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);



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

2014-03-07 Thread Allan McRae
Date: Saturday, March 8, 2014 @ 03:20:50
  Author: allan
Revision: 207156

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

Added:
  readline/repos/testing-i686/
  readline/repos/testing-i686/PKGBUILD
(from rev 207155, readline/trunk/PKGBUILD)
  readline/repos/testing-i686/inputrc
(from rev 207155, readline/trunk/inputrc)
  readline/repos/testing-i686/readline-6.3-vi-last.patch
(from rev 207155, readline/trunk/readline-6.3-vi-last.patch)
  readline/repos/testing-i686/readline.install
(from rev 207155, readline/trunk/readline.install)
  readline/repos/testing-x86_64/
  readline/repos/testing-x86_64/PKGBUILD
(from rev 207155, readline/trunk/PKGBUILD)
  readline/repos/testing-x86_64/inputrc
(from rev 207155, readline/trunk/inputrc)
  readline/repos/testing-x86_64/readline-6.3-vi-last.patch
(from rev 207155, readline/trunk/readline-6.3-vi-last.patch)
  readline/repos/testing-x86_64/readline.install
(from rev 207155, readline/trunk/readline.install)

---+
 testing-i686/PKGBUILD |   60 
 testing-i686/inputrc  |   36 
 testing-i686/readline-6.3-vi-last.patch   |   15 +++
 testing-i686/readline.install |   17 +++
 testing-x86_64/PKGBUILD   |   60 
 testing-x86_64/inputrc|   36 
 testing-x86_64/readline-6.3-vi-last.patch |   15 +++
 testing-x86_64/readline.install   |   17 +++
 8 files changed, 256 insertions(+)

Copied: readline/repos/testing-i686/PKGBUILD (from rev 207155, 
readline/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-08 02:20:50 UTC (rev 207156)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=readline
+_basever=6.3
+_patchlevel=000 #prepare for some patches
+pkgver=$_basever #.$_patchlevel
+pkgrel=2
+pkgdesc=GNU readline library
+arch=('i686' 'x86_64')
+url=http://tiswww.case.edu/php/chet/readline/rltop.html;
+license=('GPL')
+depends=('glibc' 'ncurses')
+backup=('etc/inputrc')
+options=('!emptydirs')
+install=readline.install
+source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+inputrc
+readline-6.3-vi-last.patch)
+if [ $_patchlevel -gt 00 ]; then
+for (( p=1; p=$((10#${_patchlevel})); p++ )); do
+source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 %03d $p){,.sig})
+done
+fi
+md5sums=('33c8fb279e981274f485fd91da77e94a'
+ 'SKIP'
+ '58d54966c1191db45973cb3191ac621a'
+ 'fcfe0a50c69f56f66ad04127a927862e')
+
+preapre() {
+  cd ${srcdir}/${pkgname}-$_basever
+  for (( p=1; p=$((10#${_patchlevel})); p++ )); do
+msg applying patch readline${_basever//./}-$(printf %03d $p)
+patch -p0 -i $srcdir/readline${_basever//./}-$(printf %03d $p)
+  done
+
+  # patch from upstream mailing list to fix vi mode
+  patch -p2 -i $srcdir/readline-6.3-vi-last.patch
+
+  # Remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == x86_64 ]]  CFLAGS=$CFLAGS -fPIC
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-$_basever
+  make DESTDIR=${pkgdir} install
+  
+  install -Dm644 ${srcdir}/inputrc ${pkgdir}/etc/inputrc
+}

Copied: readline/repos/testing-i686/inputrc (from rev 207155, 
readline/trunk/inputrc)
===
--- testing-i686/inputrc(rev 0)
+++ testing-i686/inputrc2014-03-08 02:20:50 UTC (rev 207156)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+\e[1~: beginning-of-line
+\e[4~: end-of-line
+\e[5~: beginning-of-history
+\e[6~: end-of-history
+\e[7~: beginning-of-line
+\e[3~: delete-char
+\e[2~: quoted-insert
+\e[5C: forward-word
+\e[5D: backward-word
+\e\e[C: forward-word
+\e\e[D: backward-word
+\e[1;5C: forward-word
+\e[1;5D: backward-word
+
+# for rxvt
+\e[8~: end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+\eOH: beginning-of-line
+\eOF: end-of-line
+
+# for freebsd console
+\e[H: beginning-of-line
+\e[F: end-of-line
+$endif

Copied: readline/repos/testing-i686/readline-6.3-vi-last.patch (from rev 
207155, readline/trunk/readline-6.3-vi-last.patch)
===
--- testing-i686/readline-6.3-vi-last.patch 

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

2014-03-07 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 04:44:33
  Author: svenstaro
Revision: 207158

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

Added:
  nvidia-utils/repos/extra-i686/PKGBUILD
(from rev 207157, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/extra-x86_64/PKGBUILD
(from rev 207157, nvidia-utils/trunk/PKGBUILD)
Deleted:
  nvidia-utils/repos/extra-i686/PKGBUILD
  nvidia-utils/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  296 
 extra-i686/PKGBUILD   |  124 
 extra-x86_64/PKGBUILD |  124 
 3 files changed, 296 insertions(+), 248 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 03:44:07 UTC (rev 207157)
+++ extra-i686/PKGBUILD 2014-03-08 03:44:33 UTC (rev 207158)
@@ -1,124 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler tho...@archlinux.org
-# Contributor: James Rayner iphi...@gmail.com
-pkgbase=nvidia-utils
-pkgname=('nvidia-utils' 'nvidia-libgl' 'opencl-nvidia')
-pkgver=334.21
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-license=('custom')
-options=('!strip')
-source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha1sums=('6a20159c173367f58e804c38f945000ffc153d99'
-  '68c99c3f5f727a9b61a920dc9ac63f67658212e1')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-create_links() {
-# create soname links
-while read -d '' _lib; do
-_soname=$(dirname ${_lib})/$(LC_ALL=C readelf -d ${_lib} | sed 
-nr 's/.*Library soname: \[(.*)\].*/\1/p')
-[[ -e ${_soname} ]] || ln -s $(basename ${_lib}) ${_soname}
-[[ -e ${_soname/.[0-9]*/} ]] || ln -s $(basename ${_soname}) 
${_soname/.[0-9]*/}
-done  (find ${pkgdir} -type f -name '*.so*' -print0)
-}
-
-build() {
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-}
-
-package_opencl-nvidia() {
-pkgdesc=OpenCL implemention for NVIDIA
-depends=('libcl' 'zlib')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-cd ${srcdir}/${_pkg}
-
-# OpenCL
-install -D -m644 nvidia.icd ${pkgdir}/etc/OpenCL/vendors/nvidia.icd
-install -D -m755 libnvidia-compiler.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}
-install -D -m755 libnvidia-opencl.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver} 
-
-create_links
-
-mkdir -p ${pkgdir}/usr/share/licenses
-ln -s nvidia ${pkgdir}/usr/share/licenses/opencl-nvidia
-}
-
-package_nvidia-libgl() {
-pkgdesc=NVIDIA drivers libraries symlinks
-depends=('nvidia-utils')
-conflicts=('libgl')
-provides=('libgl')
-cd ${srcdir}/${_pkg}
-
-mkdir -p ${pkgdir}/usr/lib/xorg/modules/extensions
-ln -s /usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver} 
${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.${pkgver}
-ln -s libglx.so.${pkgver} 
${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.1
-ln -s libglx.so.${pkgver} 
${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so
-
-ln -s /usr/lib/nvidia/libGL.so.${pkgver} 
${pkgdir}/usr/lib/libGL.so.${pkgver}
-ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib/libGL.so.1
-ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib/libGL.so
-
-mkdir -p ${pkgdir}/usr/share/licenses
-ln -s nvidia ${pkgdir}/usr/share/licenses/nvidia-libgl
-}
-
-package_nvidia-utils() {
-pkgdesc=NVIDIA drivers utilities
-depends=('xorg-server')
-optdepends=('gtk2: nvidia-settings'
-'opencl-nvidia: OpenCL support')
-cd ${srcdir}/${_pkg}
-
-# X driver
-install -D -m755 nvidia_drv.so 
${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so
-# GLX extension module for X
-install -D -m755 libglx.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver}
-ln -s libglx.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so   # X doesn't find 
glx otherwise
-# OpenGL library
-install -D -m755 libGL.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/libGL.so.${pkgver}
-# OpenGL core library
-install -D -m755 libnvidia-glcore.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-glcore.so.${pkgver}
-# VDPAU
-install -D -m755 libvdpau_nvidia.so.${pkgver} 
${pkgdir}/usr/lib/vdpau/libvdpau_nvidia.so.${pkgver}
-# nvidia-tls library
-install -D -m755 tls/libnvidia-tls.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-tls.so.${pkgver}
-install -D -m755 libnvidia-cfg.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-cfg.so.${pkgver}
-
-install -D -m755 libnvidia-ml.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-ml.so.${pkgver}
-# CUDA
-install -D -m755 libcuda.so.${pkgver} 
${pkgdir}/usr/lib/libcuda.so.${pkgver}
-

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

2014-03-07 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 04:44:07
  Author: svenstaro
Revision: 207157

upgpkg: nvidia-utils 334.21-2

Separate out EGL/GLES libs

Modified:
  nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 02:20:50 UTC (rev 207156)
+++ PKGBUILD2014-03-08 03:44:07 UTC (rev 207157)
@@ -4,7 +4,7 @@
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'nvidia-libgl' 'opencl-nvidia')
 pkgver=334.21
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
 license=('custom')
@@ -64,6 +64,18 @@
 ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib/libGL.so.1
 ln -s libGL.so.${pkgver} ${pkgdir}/usr/lib/libGL.so
 
+ln -s /usr/lib/nvidia/libEGL.so.${pkgver} 
${pkgdir}/usr/lib/libEGL.so.${pkgver}
+ln -s libEGL.so.${pkgver} ${pkgdir}/usr/lib/libEGL.so.1
+ln -s libEGL.so.${pkgver} ${pkgdir}/usr/lib/libEGL.so
+
+ln -s /usr/lib/nvidia/libGLESv1_CM.so.${pkgver} 
${pkgdir}/usr/lib/libGLESv1_CM.so.${pkgver}
+ln -s libGLESv1_CM.so.${pkgver} ${pkgdir}/usr/lib/libGLESv1_CM.so.1
+ln -s libGLESv1_CM.so.${pkgver} ${pkgdir}/usr/lib/libGLESv1_CM.so
+
+ln -s /usr/lib/nvidia/libGLESv2.so.${pkgver} 
${pkgdir}/usr/lib/libGLESv2.so.${pkgver}
+ln -s libGLESv2.so.${pkgver} ${pkgdir}/usr/lib/libGLESv2.so.2
+ln -s libGLESv2.so.${pkgver} ${pkgdir}/usr/lib/libGLESv2.so
+
 mkdir -p ${pkgdir}/usr/share/licenses
 ln -s nvidia ${pkgdir}/usr/share/licenses/nvidia-libgl
 }
@@ -77,30 +89,41 @@
 
 # X driver
 install -D -m755 nvidia_drv.so 
${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so
+
 # GLX extension module for X
 install -D -m755 libglx.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver}
 ln -s libglx.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/xorg/modules/extensions/libglx.so   # X doesn't find 
glx otherwise
-# OpenGL library
+
+# OpenGL libraries
 install -D -m755 libGL.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/libGL.so.${pkgver}
+install -D -m755 libEGL.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/libEGL.so.${pkgver}
+install -D -m755 libGLESv1_CM.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/libGLES1_CM.so.${pkgver}
+install -D -m755 libGLESv2.so.${pkgver} 
${pkgdir}/usr/lib/nvidia/libGLES2.so.${pkgver}
+
 # OpenGL core library
 install -D -m755 libnvidia-glcore.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-glcore.so.${pkgver}
+
 # VDPAU
 install -D -m755 libvdpau_nvidia.so.${pkgver} 
${pkgdir}/usr/lib/vdpau/libvdpau_nvidia.so.${pkgver}
+
 # nvidia-tls library
 install -D -m755 tls/libnvidia-tls.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-tls.so.${pkgver}
 install -D -m755 libnvidia-cfg.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-cfg.so.${pkgver}
+install -D -m755 libnvidia-ml.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-ml.so.${pkgver}
 
-install -D -m755 libnvidia-ml.so.${pkgver} 
${pkgdir}/usr/lib/libnvidia-ml.so.${pkgver}
 # CUDA
 install -D -m755 libcuda.so.${pkgver} 
${pkgdir}/usr/lib/libcuda.so.${pkgver}
 install -D -m755 libnvcuvid.so.${pkgver} 
${pkgdir}/usr/lib/libnvcuvid.so.${pkgver}
 #install -D -m755 nvidia-cuda-proxy-server 
${pkgdir}/usr/bin/nvidia-cuda-proxy-server
 #install -D -m644 nvidia-cuda-proxy-control.1.gz 
${pkgdir}/usr/share/man/man1/nvidia-cuda-proxy-control.1.gz
+
 # DEBUG
 install -D -m755 nvidia-debugdump ${pkgdir}/usr/bin/nvidia-debugdump
+
 # nvidia-xconfig
 install -D -m755 nvidia-xconfig ${pkgdir}/usr/bin/nvidia-xconfig
 install -D -m644 nvidia-xconfig.1.gz 
${pkgdir}/usr/share/man/man1/nvidia-xconfig.1.gz
+
 # nvidia-settings
 install -D -m755 nvidia-settings ${pkgdir}/usr/bin/nvidia-settings
 install -D -m644 nvidia-settings.1.gz 
${pkgdir}/usr/share/man/man1/nvidia-settings.1.gz
@@ -107,13 +130,14 @@
 install -D -m644 nvidia-settings.desktop 
${pkgdir}/usr/share/applications/nvidia-settings.desktop
 install -D -m644 nvidia-settings.png 
${pkgdir}/usr/share/pixmaps/nvidia-settings.png
 sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
${pkgdir}/usr/share/applications/nvidia-settings.desktop
+
 # nvidia-bug-report
 install -D -m755 nvidia-bug-report.sh 
${pkgdir}/usr/bin/nvidia-bug-report.sh
+
 # nvidia-smi
 install -D -m755 nvidia-smi ${pkgdir}/usr/bin/nvidia-smi
 install -D -m644 nvidia-smi.1.gz 
${pkgdir}/usr/share/man/man1/nvidia-smi.1.gz
 
-
 install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/nvidia/LICENSE
 ln -s nvidia ${pkgdir}/usr/share/licenses/nvidia-utils
 install -D -m644 README.txt ${pkgdir}/usr/share/doc/nvidia/README



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

2014-03-07 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 05:43:23
  Author: svenstaro
Revision: 207159

upgpkg: sdl2_mixer 2.0.0-3

Fix FS#38428

Modified:
  sdl2_mixer/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-08 03:44:33 UTC (rev 207158)
+++ PKGBUILD2014-03-08 04:43:23 UTC (rev 207159)
@@ -3,7 +3,7 @@
 
 pkgname=sdl2_mixer
 pkgver=2.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc=A simple multi-channel audio mixer (Version 2)
 arch=('i686' 'x86_64')
 url=http://www.libsdl.org/projects/SDL_mixer;
@@ -14,6 +14,13 @@
 source=($url/release/SDL2_mixer-${pkgver}.tar.gz)
 md5sums=('65f6d80df073a1fb3bb537fbda031b50')
 
+prepare() {
+  cd ${srcdir}/SDL2_mixer-${pkgver}/
+
+  sed -i s|/etc/timidity|/etc/timidity++|g timidity/config.h
+  sed -i s|/etc/timidity++.cfg|/etc/timidity++/timidity.cfg|g 
timidity/config.h
+}
+
 build() {
   cd ${srcdir}/SDL2_mixer-${pkgver}/
 



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

2014-03-07 Thread Sven-Hendrik Haase
Date: Saturday, March 8, 2014 @ 05:43:32
  Author: svenstaro
Revision: 207160

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

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

---+
 /PKGBUILD |   72 
 extra-i686/PKGBUILD   |   29 ---
 extra-x86_64/PKGBUILD |   29 ---
 3 files changed, 72 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-08 04:43:23 UTC (rev 207159)
+++ extra-i686/PKGBUILD 2014-03-08 04:43:32 UTC (rev 207160)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-
-pkgname=sdl2_mixer
-pkgver=2.0.0
-pkgrel=2
-pkgdesc=A simple multi-channel audio mixer (Version 2)
-arch=('i686' 'x86_64')
-url=http://www.libsdl.org/projects/SDL_mixer;
-license=('MIT')
-depends=('sdl2' 'libvorbis' 'libmodplug' 'smpeg2' 'flac')
-makedepends=('fluidsynth')
-optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
-source=($url/release/SDL2_mixer-${pkgver}.tar.gz)
-md5sums=('65f6d80df073a1fb3bb537fbda031b50')
-
-build() {
-  cd ${srcdir}/SDL2_mixer-${pkgver}/
-
-  ./configure --disable-static --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/SDL2_mixer-${pkgver}/
-
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYING.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: sdl2_mixer/repos/extra-i686/PKGBUILD (from rev 207159, 
sdl2_mixer/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-08 04:43:32 UTC (rev 207160)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=sdl2_mixer
+pkgver=2.0.0
+pkgrel=3
+pkgdesc=A simple multi-channel audio mixer (Version 2)
+arch=('i686' 'x86_64')
+url=http://www.libsdl.org/projects/SDL_mixer;
+license=('MIT')
+depends=('sdl2' 'libvorbis' 'libmodplug' 'smpeg2' 'flac')
+makedepends=('fluidsynth')
+optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
+source=($url/release/SDL2_mixer-${pkgver}.tar.gz)
+md5sums=('65f6d80df073a1fb3bb537fbda031b50')
+
+prepare() {
+  cd ${srcdir}/SDL2_mixer-${pkgver}/
+
+  sed -i s|/etc/timidity|/etc/timidity++|g timidity/config.h
+  sed -i s|/etc/timidity++.cfg|/etc/timidity++/timidity.cfg|g 
timidity/config.h
+}
+
+build() {
+  cd ${srcdir}/SDL2_mixer-${pkgver}/
+
+  ./configure --disable-static --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/SDL2_mixer-${pkgver}/
+
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYING.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-03-08 04:43:23 UTC (rev 207159)
+++ extra-x86_64/PKGBUILD   2014-03-08 04:43:32 UTC (rev 207160)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-
-pkgname=sdl2_mixer
-pkgver=2.0.0
-pkgrel=2
-pkgdesc=A simple multi-channel audio mixer (Version 2)
-arch=('i686' 'x86_64')
-url=http://www.libsdl.org/projects/SDL_mixer;
-license=('MIT')
-depends=('sdl2' 'libvorbis' 'libmodplug' 'smpeg2' 'flac')
-makedepends=('fluidsynth')
-optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
-source=($url/release/SDL2_mixer-${pkgver}.tar.gz)
-md5sums=('65f6d80df073a1fb3bb537fbda031b50')
-
-build() {
-  cd ${srcdir}/SDL2_mixer-${pkgver}/
-
-  ./configure --disable-static --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/SDL2_mixer-${pkgver}/
-
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYING.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: sdl2_mixer/repos/extra-x86_64/PKGBUILD (from rev 207159, 
sdl2_mixer/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-03-08 04:43:32 UTC (rev 207160)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=sdl2_mixer
+pkgver=2.0.0
+pkgrel=3
+pkgdesc=A simple multi-channel audio mixer (Version 2)
+arch=('i686' 'x86_64')
+url=http://www.libsdl.org/projects/SDL_mixer;
+license=('MIT')
+depends=('sdl2' 'libvorbis' 'libmodplug' 'smpeg2' 'flac')
+makedepends=('fluidsynth')
+optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
+source=($url/release/SDL2_mixer-${pkgver}.tar.gz)
+md5sums=('65f6d80df073a1fb3bb537fbda031b50')
+
+prepare() {
+  cd ${srcdir}/SDL2_mixer-${pkgver}/
+
+  sed -i s|/etc/timidity|/etc/timidity++|g timidity/config.h
+  sed -i 

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

2014-03-07 Thread Felix Yan
Date: Saturday, March 8, 2014 @ 07:20:24
  Author: fyan
Revision: 207161

3.4: update dependencies

- list all libs needed under lib-dynload as optdepends

Modified:
  python/trunk/PKGBUILD.3.4

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

Modified: PKGBUILD.3.4
===
--- PKGBUILD.3.42014-03-08 04:43:32 UTC (rev 207160)
+++ PKGBUILD.3.42014-03-08 06:20:24 UTC (rev 207161)
@@ -12,12 +12,14 @@
 arch=('i686' 'x86_64')
 license=('custom')
 url=http://www.python.org/;
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'mpdecimal')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
 makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
-optdepends=('tk: for tkinter'
-'python-setuptools'
+optdepends=('python-setuptools'
 'python-pip'
-'sqlite')
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
 options=('!makeflags')
 provides=('python3')
 replaces=('python3')



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

2014-03-07 Thread Felix Yan
Date: Saturday, March 8, 2014 @ 07:23:12
  Author: fyan
Revision: 106803

upgpkg: cgminer 4.1.0-1

- new upstream release has an ants1 driver. need to make sure it does not break 
others.

Modified:
  cgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 22:03:41 UTC (rev 106802)
+++ PKGBUILD2014-03-08 06:23:12 UTC (rev 106803)
@@ -5,7 +5,7 @@
 # Contributor: David Manouchehri da...@davidmanouchehri.com
 
 pkgname=cgminer
-pkgver=4.0.1
+pkgver=4.1.0
 #_pkgver=3.6.6
 _pkgver=$pkgver
 pkgrel=1
@@ -58,6 +58,7 @@
 
   ./autogen.sh \
 --prefix=/usr \
+--enable-ants1 \
 --enable-avalon \
 --enable-avalon2 \
 --enable-bab \



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

2014-03-07 Thread Felix Yan
Date: Saturday, March 8, 2014 @ 07:24:18
  Author: fyan
Revision: 106804

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

Added:
  cgminer/repos/community-testing-i686/
  cgminer/repos/community-testing-i686/PKGBUILD
(from rev 106803, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-testing-i686/cgminer.conf.d
(from rev 106803, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-testing-i686/cgminer.service
(from rev 106803, cgminer/trunk/cgminer.service)
  cgminer/repos/community-testing-x86_64/
  cgminer/repos/community-testing-x86_64/PKGBUILD
(from rev 106803, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-testing-x86_64/cgminer.conf.d
(from rev 106803, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-testing-x86_64/cgminer.service
(from rev 106803, cgminer/trunk/cgminer.service)

--+
 community-testing-i686/PKGBUILD  |   98 +
 community-testing-i686/cgminer.conf.d|   11 +++
 community-testing-i686/cgminer.service   |8 ++
 community-testing-x86_64/PKGBUILD|   98 +
 community-testing-x86_64/cgminer.conf.d  |   11 +++
 community-testing-x86_64/cgminer.service |8 ++
 6 files changed, 234 insertions(+)

Copied: cgminer/repos/community-testing-i686/PKGBUILD (from rev 106803, 
cgminer/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-03-08 06:24:18 UTC (rev 106804)
@@ -0,0 +1,98 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: monson holymon...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: David Manouchehri da...@davidmanouchehri.com
+
+pkgname=cgminer
+pkgver=4.1.0
+#_pkgver=3.6.6
+_pkgver=$pkgver
+pkgrel=1
+pkgdesc=Multi-threaded multi-pool GPU, FPGA and ASIC miner for bitcoin
+url='http://forum.bitcoin.org/index.php?topic=28402.0'
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('curl' 'libusb' 'jansson')
+makedepends=('git')
+source=(git+https://github.com/ckolivas/${pkgname}.git#tag=v$_pkgver;
+$pkgname.conf.d
+$pkgname.service)
+backup=(etc/conf.d/$pkgname etc/$pkgname.conf)
+
+prepare() {
+  cd $pkgname
+  # We have latest jansson and libusb - just use them
+
+  sed -e 's|^AC_CONFIG_SUBDIRS.*compat/jansson-2\.5.*||' \
+  -e 
's|JANSSON_LIBS=compat/jansson-2\.5/src/\.libs/libjansson\.a|JANSSON_LIBS=-ljansson|'
 \
+  -e 's|compat/Makefile||' \
+  -i ./configure.ac
+
+  sed -e 's|^JANSSON_CPPFLAGS= .*||' \
+  -e 's|^USBUTILS_CPPFLAGS = .*|USBUTILS_CPPFLAGS = 
-I/usr/include/libusb-1.0|' \
+  -e 's|^SUBDIRS.*|SUBDIRS = lib ccan|' \
+  -i ./Makefile.am
+
+  #sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
+  #sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
+  #sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
+  #sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
+  #sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
+  #sed 's|compat/Makefile ||' -i ./configure
+
+  #sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
+  #sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
+  #sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
+
+  rm -r compat
+}
+
+build() {
+  cd $pkgname
+  
+  # Here you may want to use custom CFLAGS
+  #export CFLAGS=-O2 -march=native -mtune=native -msse2
+  
+  # ./configure \
+
+  ./autogen.sh \
+--prefix=/usr \
+--enable-ants1 \
+--enable-avalon \
+--enable-avalon2 \
+--enable-bab \
+--enable-bflsc \
+--enable-bitforce \
+--enable-bitfury \
+--enable-bitmine_A1 \
+--enable-cointerra \
+--enable-drillbit \
+--enable-hashfast \
+--enable-icarus \
+--enable-klondike \
+--enable-minion \
+--enable-modminer \
+--with-system-libusb
+# --enable-knc # Enable it only when you need to
+  
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/usr/share/$pkgname
+  install -m755 miner.php api-example.* $pkgdir/usr/share/$pkgname
+
+  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+  install -Dm644 $srcdir/$pkgname.conf.d $pkgdir/etc/conf.d/$pkgname
+  sed 's#/usr/local/bin#/usr/bin#g' example.conf  $pkgname.conf
+  install -Dm644 $pkgname.conf $pkgdir/etc/$pkgname.conf
+}
+
+sha512sums=('SKIP'
+
'99c38bc395848f9712ce172343d31f5c60f5d8ac1cfe2f48df8f3ec6c488fc275763a79c5ef36b99f32faa465b5a65284b38e8a63ef9b144075ee13971313b41'
+
'3317b60c6b1f14c47d8ee636113ef40a4023ab14054129de80a37947b381fd2b647a7053f4e1bb639efa225a514e862fa531908714c34040dda2d6221dde7f5f')


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

2014-03-07 Thread Massimiliano Torromeo
Date: Friday, March 7, 2014 @ 09:11:41
  Author: mtorromeo
Revision: 106746

upgpkg: python-rsa 3.1.4-1

Updated to 3.1.4

Modified:
  python-rsa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 03:11:59 UTC (rev 106745)
+++ PKGBUILD2014-03-07 08:11:41 UTC (rev 106746)
@@ -3,7 +3,7 @@
 
 pkgbase=python-rsa
 pkgname=(python-rsa python2-rsa)
-pkgver=3.1.3
+pkgver=3.1.4
 pkgrel=1
 _libname=rsa
 pkgdesc=Pure-Python RSA implementation
@@ -10,13 +10,13 @@
 arch=(any)
 url=http://stuvel.eu/rsa;
 license=('BSD')
-#source=(http://pypi.python.org/packages/source/r/$_libname/$_libname-$pkgver.tar.gz)
-source=(https://bitbucket.org/sybren/$pkgname/get/version-$pkgver.tar.bz2)
+source=(http://pypi.python.org/packages/source/r/$_libname/$_libname-$pkgver.tar.gz)
+#source=(https://bitbucket.org/sybren/$pkgname/get/version-$pkgver.tar.bz2)
 makedepends=(python-distribute python2-distribute)
 
 build() {
-   #cd $srcdir/$_libname-$pkgver
-   cd $srcdir/sybren-python-rsa-8f50f506b4a2
+   cd $srcdir/$_libname-$pkgver
+   #cd $srcdir/sybren-python-rsa-8f50f506b4a2
 
rm -rf ../buildpy3; mkdir ../buildpy3
python setup.py build -b ../buildpy3
@@ -28,8 +28,8 @@
 package_python-rsa() {
depends=(python-pyasn1)
 
-   #cd $srcdir/$_libname-$pkgver
-   cd $srcdir/sybren-python-rsa-8f50f506b4a2
+   cd $srcdir/$_libname-$pkgver
+   #cd $srcdir/sybren-python-rsa-8f50f506b4a2
rm -rf build; ln -s ../buildpy3 build
python setup.py install --skip-build -O1 --root=$pkgdir
install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
@@ -38,8 +38,8 @@
 package_python2-rsa() {
depends=(python2-pyasn1)
 
-   #cd $srcdir/$_libname-$pkgver
-   cd $srcdir/sybren-python-rsa-8f50f506b4a2
+   cd $srcdir/$_libname-$pkgver
+   #cd $srcdir/sybren-python-rsa-8f50f506b4a2
rm -rf build; ln -s ../buildpy2 build
python2 setup.py install --skip-build -O1 --root=$pkgdir
install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
@@ -47,4 +47,4 @@
find $pkgdir/usr/bin -type f | while read f; do mv $f $f2; done
 }
 
-sha256sums=('0a4a6f99b845b984101d1d959b7d1bf4e3c8dbdba8d1450eac6b76562c2ac4c3')
+sha256sums=('e2b0b05936c276b1edd2e1525553233b666df9e29b5c3ba223eed738277c82a0')



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

2014-03-07 Thread Massimiliano Torromeo
Date: Friday, March 7, 2014 @ 09:13:50
  Author: mtorromeo
Revision: 106747

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 08:11:41 UTC (rev 106746)
+++ PKGBUILD2014-03-07 08:13:50 UTC (rev 106747)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgbase=python-rsa
-pkgname=(python-rsa python2-rsa)
-pkgver=3.1.3
-pkgrel=1
-_libname=rsa
-pkgdesc=Pure-Python RSA implementation
-arch=(any)
-url=http://stuvel.eu/rsa;
-license=('BSD')
-#source=(http://pypi.python.org/packages/source/r/$_libname/$_libname-$pkgver.tar.gz)
-source=(https://bitbucket.org/sybren/$pkgname/get/version-$pkgver.tar.bz2)
-makedepends=(python-distribute python2-distribute)
-
-build() {
-   #cd $srcdir/$_libname-$pkgver
-   cd $srcdir/sybren-python-rsa-8f50f506b4a2
-
-   rm -rf ../buildpy3; mkdir ../buildpy3
-   python setup.py build -b ../buildpy3
-
-   rm -rf ../buildpy2; mkdir ../buildpy2
-   python2 setup.py build -b ../buildpy2
-}
-
-package_python-rsa() {
-   depends=(python-pyasn1)
-
-   #cd $srcdir/$_libname-$pkgver
-   cd $srcdir/sybren-python-rsa-8f50f506b4a2
-   rm -rf build; ln -s ../buildpy3 build
-   python setup.py install --skip-build -O1 --root=$pkgdir
-   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-rsa() {
-   depends=(python2-pyasn1)
-
-   #cd $srcdir/$_libname-$pkgver
-   cd $srcdir/sybren-python-rsa-8f50f506b4a2
-   rm -rf build; ln -s ../buildpy2 build
-   python2 setup.py install --skip-build -O1 --root=$pkgdir
-   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-   find $pkgdir/usr/bin -type f | while read f; do mv $f $f2; done
-}
-
-sha256sums=('0a4a6f99b845b984101d1d959b7d1bf4e3c8dbdba8d1450eac6b76562c2ac4c3')

Copied: python-rsa/repos/community-any/PKGBUILD (from rev 106746, 
python-rsa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 08:13:50 UTC (rev 106747)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-rsa
+pkgname=(python-rsa python2-rsa)
+pkgver=3.1.4
+pkgrel=1
+_libname=rsa
+pkgdesc=Pure-Python RSA implementation
+arch=(any)
+url=http://stuvel.eu/rsa;
+license=('BSD')
+source=(http://pypi.python.org/packages/source/r/$_libname/$_libname-$pkgver.tar.gz)
+#source=(https://bitbucket.org/sybren/$pkgname/get/version-$pkgver.tar.bz2)
+makedepends=(python-distribute python2-distribute)
+
+build() {
+   cd $srcdir/$_libname-$pkgver
+   #cd $srcdir/sybren-python-rsa-8f50f506b4a2
+
+   rm -rf ../buildpy3; mkdir ../buildpy3
+   python setup.py build -b ../buildpy3
+
+   rm -rf ../buildpy2; mkdir ../buildpy2
+   python2 setup.py build -b ../buildpy2
+}
+
+package_python-rsa() {
+   depends=(python-pyasn1)
+
+   cd $srcdir/$_libname-$pkgver
+   #cd $srcdir/sybren-python-rsa-8f50f506b4a2
+   rm -rf build; ln -s ../buildpy3 build
+   python setup.py install --skip-build -O1 --root=$pkgdir
+   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-rsa() {
+   depends=(python2-pyasn1)
+
+   cd $srcdir/$_libname-$pkgver
+   #cd $srcdir/sybren-python-rsa-8f50f506b4a2
+   rm -rf build; ln -s ../buildpy2 build
+   python2 setup.py install --skip-build -O1 --root=$pkgdir
+   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+   find $pkgdir/usr/bin -type f | while read f; do mv $f $f2; done
+}
+
+sha256sums=('e2b0b05936c276b1edd2e1525553233b666df9e29b5c3ba223eed738277c82a0')



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

2014-03-07 Thread Jelle van der Waa
Date: Friday, March 7, 2014 @ 09:31:10
  Author: jelle
Revision: 106748

upgpkg: calibre 1.27.0-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 08:13:50 UTC (rev 106747)
+++ PKGBUILD2014-03-07 08:31:10 UTC (rev 106748)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali larryh...@gmail.com
 
 pkgname=calibre
-pkgver=1.26.0
+pkgver=1.27.0
 pkgrel=1
 pkgdesc=Ebook management application
 arch=('i686' 'x86_64') 
@@ -25,7 +25,7 @@
 source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 'desktop_integration.patch'
 'calibre-mount-helper')
-md5sums=('530485d30087c569c604df1c7e2b3d3a'
+md5sums=('d30d39d8a63cb77c8fe04b99ef092dd9'
  'ece36dfd737fa4a346f0a0e59395e949'
  '675cd87d41342119827ef706055491e7')
 



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

2014-03-07 Thread Jelle van der Waa
Date: Friday, March 7, 2014 @ 09:31:23
  Author: jelle
Revision: 106749

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

Added:
  calibre/repos/community-i686/PKGBUILD
(from rev 106748, calibre/trunk/PKGBUILD)
  calibre/repos/community-i686/calibre-mount-helper
(from rev 106748, calibre/trunk/calibre-mount-helper)
  calibre/repos/community-i686/calibre.install
(from rev 106748, calibre/trunk/calibre.install)
  calibre/repos/community-i686/desktop_integration.patch
(from rev 106748, calibre/trunk/desktop_integration.patch)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 106748, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre-mount-helper
(from rev 106748, calibre/trunk/calibre-mount-helper)
  calibre/repos/community-x86_64/calibre.install
(from rev 106748, calibre/trunk/calibre.install)
  calibre/repos/community-x86_64/desktop_integration.patch
(from rev 106748, calibre/trunk/desktop_integration.patch)
Deleted:
  calibre/repos/community-i686/PKGBUILD
  calibre/repos/community-i686/calibre-mount-helper
  calibre/repos/community-i686/calibre.install
  calibre/repos/community-i686/desktop_integration.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre-mount-helper
  calibre/repos/community-x86_64/calibre.install
  calibre/repos/community-x86_64/desktop_integration.patch

+
 /PKGBUILD  |  178 +++
 /calibre-mount-helper  |   56 +++
 /calibre.install   |   24 +++
 /desktop_integration.patch |  202 +++
 community-i686/PKGBUILD|   89 ---
 community-i686/calibre-mount-helper|   28 ---
 community-i686/calibre.install |   12 -
 community-i686/desktop_integration.patch   |  101 -
 community-x86_64/PKGBUILD  |   89 ---
 community-x86_64/calibre-mount-helper  |   28 ---
 community-x86_64/calibre.install   |   12 -
 community-x86_64/desktop_integration.patch |  101 -
 12 files changed, 460 insertions(+), 460 deletions(-)

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


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

2014-03-07 Thread speps
Date: Friday, March 7, 2014 @ 09:56:06
  Author: speps
Revision: 106751

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 08:55:29 UTC (rev 106750)
+++ community-i686/PKGBUILD 2014-03-07 08:56:06 UTC (rev 106751)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: DonVla don...@users.sourceforge.net
-
-pkgname=caps
-pkgver=0.9.16
-pkgrel=1
-pkgdesc=The LADSPA C* Audio Plugin Suite
-arch=('i686' 'x86_64')
-url=http://quitte.de/dsp/caps.html;
-license=('GPL3')
-groups=('ladspa-plugins')
-depends=('ladspa')
-source=(http://quitte.de/dsp/caps_$pkgver.tar.bz2;)
-md5sums=('85e79596f22636b154b152efe54d05ce')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # use a minimum of optimization required to build
-  export _CFLAGS='-msse -mfpmath=sse'
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
- 
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=$pkgdir/usr install
-}

Copied: caps/repos/community-i686/PKGBUILD (from rev 106750, 
caps/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 08:56:06 UTC (rev 106751)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: DonVla don...@users.sourceforge.net
+
+pkgname=caps
+pkgver=0.9.21
+pkgrel=1
+pkgdesc=The LADSPA C* Audio Plugin Suite
+arch=('i686' 'x86_64')
+url=http://quitte.de/dsp/caps.html;
+license=('GPL3')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(http://quitte.de/dsp/caps_$pkgver.tar.bz2;)
+md5sums=('8d1fb8fa5d185a348bde14c88102ffc2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # use a minimum of optimization required to build
+  export _CFLAGS='-msse -mfpmath=sse'
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+ 
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=$pkgdir/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-07 08:55:29 UTC (rev 106750)
+++ community-x86_64/PKGBUILD   2014-03-07 08:56:06 UTC (rev 106751)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: DonVla don...@users.sourceforge.net
-
-pkgname=caps
-pkgver=0.9.16
-pkgrel=1
-pkgdesc=The LADSPA C* Audio Plugin Suite
-arch=('i686' 'x86_64')
-url=http://quitte.de/dsp/caps.html;
-license=('GPL3')
-groups=('ladspa-plugins')
-depends=('ladspa')
-source=(http://quitte.de/dsp/caps_$pkgver.tar.bz2;)
-md5sums=('85e79596f22636b154b152efe54d05ce')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # use a minimum of optimization required to build
-  export _CFLAGS='-msse -mfpmath=sse'
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
- 
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=$pkgdir/usr install
-}

Copied: caps/repos/community-x86_64/PKGBUILD (from rev 106750, 
caps/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-07 08:56:06 UTC (rev 106751)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: DonVla don...@users.sourceforge.net
+
+pkgname=caps
+pkgver=0.9.21
+pkgrel=1
+pkgdesc=The LADSPA C* Audio Plugin Suite
+arch=('i686' 'x86_64')
+url=http://quitte.de/dsp/caps.html;
+license=('GPL3')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(http://quitte.de/dsp/caps_$pkgver.tar.bz2;)
+md5sums=('8d1fb8fa5d185a348bde14c88102ffc2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # use a minimum of optimization required to build
+  export _CFLAGS='-msse -mfpmath=sse'
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+ 
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=$pkgdir/usr install
+}



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

2014-03-07 Thread speps
Date: Friday, March 7, 2014 @ 09:55:29
  Author: speps
Revision: 106750

upgpkg: caps 0.9.21-1

Modified:
  caps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 08:31:23 UTC (rev 106749)
+++ PKGBUILD2014-03-07 08:55:29 UTC (rev 106750)
@@ -3,7 +3,7 @@
 # Contributor: DonVla don...@users.sourceforge.net
 
 pkgname=caps
-pkgver=0.9.16
+pkgver=0.9.21
 pkgrel=1
 pkgdesc=The LADSPA C* Audio Plugin Suite
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 groups=('ladspa-plugins')
 depends=('ladspa')
 source=(http://quitte.de/dsp/caps_$pkgver.tar.bz2;)
-md5sums=('85e79596f22636b154b152efe54d05ce')
+md5sums=('8d1fb8fa5d185a348bde14c88102ffc2')
 
 prepare() {
   cd $pkgname-$pkgver



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

2014-03-07 Thread Andrea Scarpino
Date: Friday, March 7, 2014 @ 09:55:32
  Author: andrea
Revision: 207127

Fix segmentation fault

Modified:
  ncftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 04:54:01 UTC (rev 207126)
+++ PKGBUILD2014-03-07 08:55:32 UTC (rev 207127)
@@ -6,7 +6,7 @@
 
 pkgname=ncftp
 pkgver=3.2.5
-pkgrel=3
+pkgrel=4
 pkgdesc=A set of free application programs implementing FTP
 url=http://www.ncftp.com/;
 arch=('i686' 'x86_64')
@@ -24,6 +24,8 @@
 }
 
 build() {
+  unset CPPFLAGS
+
   cd ${pkgname}-${pkgver}
   CPP=/usr/bin/cpp ./configure --prefix=/usr \
 --sysconfdir=/etc



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 10:08:45
  Author: spupykin
Revision: 106752

upgpkg: minidlna 1.1.2-1

upd

Modified:
  minidlna/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 08:56:06 UTC (rev 106751)
+++ PKGBUILD2014-03-07 09:08:45 UTC (rev 106752)
@@ -6,8 +6,8 @@
 # Contributor: Kamil Kaminski k...@kkaminsk.com
 
 pkgname=minidlna
-pkgver=1.1.1
-pkgrel=2
+pkgver=1.1.2
+pkgrel=1
 pkgdesc=A DLNA/UPnP-AV Media server (aka ReadyDLNA)
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/minidlna/;
@@ -20,7 +20,7 @@
 
source=(http://downloads.sourceforge.net/project/minidlna/minidlna/$pkgver/minidlna-$pkgver.tar.gz
minidlna.service
minidlna.tmpfiles)
-md5sums=('65340ac3f8eb4aacc54c1be7b5fa'
+md5sums=('65cebffaf9b57bf30fbfcf2a3a3253e6'
  '7e3890ee50aa4dfa4d1754261e6cc965'
  '26de27b12d6a37c47d9714107d07aac9')
 



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 10:09:10
  Author: spupykin
Revision: 106753

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

Added:
  minidlna/repos/community-i686/PKGBUILD
(from rev 106752, minidlna/trunk/PKGBUILD)
  minidlna/repos/community-i686/changelog
(from rev 106752, minidlna/trunk/changelog)
  minidlna/repos/community-i686/minidlna.install
(from rev 106752, minidlna/trunk/minidlna.install)
  minidlna/repos/community-i686/minidlna.service
(from rev 106752, minidlna/trunk/minidlna.service)
  minidlna/repos/community-i686/minidlna.tmpfiles
(from rev 106752, minidlna/trunk/minidlna.tmpfiles)
  minidlna/repos/community-x86_64/PKGBUILD
(from rev 106752, minidlna/trunk/PKGBUILD)
  minidlna/repos/community-x86_64/changelog
(from rev 106752, minidlna/trunk/changelog)
  minidlna/repos/community-x86_64/minidlna.install
(from rev 106752, minidlna/trunk/minidlna.install)
  minidlna/repos/community-x86_64/minidlna.service
(from rev 106752, minidlna/trunk/minidlna.service)
  minidlna/repos/community-x86_64/minidlna.tmpfiles
(from rev 106752, minidlna/trunk/minidlna.tmpfiles)
Deleted:
  minidlna/repos/community-i686/PKGBUILD
  minidlna/repos/community-i686/changelog
  minidlna/repos/community-i686/minidlna.install
  minidlna/repos/community-i686/minidlna.service
  minidlna/repos/community-i686/minidlna.tmpfiles
  minidlna/repos/community-x86_64/PKGBUILD
  minidlna/repos/community-x86_64/changelog
  minidlna/repos/community-x86_64/minidlna.install
  minidlna/repos/community-x86_64/minidlna.service
  minidlna/repos/community-x86_64/minidlna.tmpfiles

+
 /PKGBUILD  |   82 +++
 /changelog |8 +++
 /minidlna.install  |   18 +++
 /minidlna.service  |   24 ++
 /minidlna.tmpfiles |   10 
 community-i686/PKGBUILD|   41 -
 community-i686/changelog   |4 -
 community-i686/minidlna.install|9 ---
 community-i686/minidlna.service|   12 -
 community-i686/minidlna.tmpfiles   |5 --
 community-x86_64/PKGBUILD  |   41 -
 community-x86_64/changelog |4 -
 community-x86_64/minidlna.install  |9 ---
 community-x86_64/minidlna.service  |   12 -
 community-x86_64/minidlna.tmpfiles |5 --
 15 files changed, 142 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 09:08:45 UTC (rev 106752)
+++ community-i686/PKGBUILD 2014-03-07 09:09:10 UTC (rev 106753)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:Biginoz  biginoz AT free point fr
-# Contributor: Ignacio Galmarino igalmar...@gmail.com
-# Contributor: Matthias Sobczyk matthias.sobc...@googlemail.com
-# Contributor: Kamil Kaminski k...@kkaminsk.com
-
-pkgname=minidlna
-pkgver=1.1.1
-pkgrel=2
-pkgdesc=A DLNA/UPnP-AV Media server (aka ReadyDLNA)
-arch=('i686' 'x86_64')
-url=http://sourceforge.net/projects/minidlna/;
-license=('GPL')
-depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite')
-backup=('etc/minidlna.conf'
-   'etc/conf.d/minidlna')
-install=minidlna.install
-changelog=changelog
-source=(http://downloads.sourceforge.net/project/minidlna/minidlna/$pkgver/minidlna-$pkgver.tar.gz
-   minidlna.service
-   minidlna.tmpfiles)
-md5sums=('65340ac3f8eb4aacc54c1be7b5fa'
- '7e3890ee50aa4dfa4d1754261e6cc965'
- '26de27b12d6a37c47d9714107d07aac9')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  DESTDIR=$pkgdir make install
-  install -Dm644 minidlna.conf ${pkgdir}/etc/minidlna.conf
-  install -Dm0644 $srcdir/minidlna.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/minidlna.conf
-  install -Dm0644 $srcdir/minidlna.service 
$pkgdir/usr/lib/systemd/system/minidlna.service
-  install -Dm644 $srcdir/$pkgname-$pkgver/minidlna.conf.5 
$pkgdir/usr/share/man/man5/minidlna.conf.5
-  install -Dm644 $srcdir/$pkgname-$pkgver/minidlnad.8 
$pkgdir/usr/share/man/man8/minidlnad.8
-}

Copied: minidlna/repos/community-i686/PKGBUILD (from rev 106752, 
minidlna/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 09:09:10 UTC (rev 106753)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:Biginoz  biginoz AT free point fr
+# Contributor: Ignacio Galmarino igalmar...@gmail.com
+# Contributor: Matthias Sobczyk matthias.sobc...@googlemail.com
+# Contributor: Kamil Kaminski k...@kkaminsk.com
+
+pkgname=minidlna
+pkgver=1.1.2
+pkgrel=1
+pkgdesc=A DLNA/UPnP-AV Media server (aka ReadyDLNA)

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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 10:09:14
  Author: spupykin
Revision: 106754

upgpkg: python2-tempita 0.5.2-1

upd

Modified:
  python2-tempita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 09:09:10 UTC (rev 106753)
+++ PKGBUILD2014-03-07 09:09:14 UTC (rev 106754)
@@ -5,8 +5,8 @@
 #Contributor: Frederik M.J.V. freqmod VED iskrembilen Dott kom
 
 pkgname=python2-tempita
-pkgver=0.5.1
-pkgrel=2
+pkgver=0.5.2
+pkgrel=1
 pkgdesc=A lightweight unicode templating language
 arch=('any')
 url=http://pythonpaste.org/tempita/;
@@ -15,8 +15,9 @@
 makedepends=('python2-distribute')
 
source=(http://pypi.python.org/packages/source/T/Tempita/Tempita-${pkgver}.tar.gz

$pkgname-license.txt::http://pythonpaste.org/tempita/_sources/license.txt)
-md5sums=('f75bdfeabd2f3755f1ff32d582a574a4'
+md5sums=('4c2f17bb9d481821c41b6fbee904cea1'
  'c66b85ddcd09296abff87601467724fd')
+
 prepare() {
   cd $srcdir/Tempita-${pkgver}
   sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 10:09:22
  Author: spupykin
Revision: 106755

archrelease: copy trunk to community-any

Added:
  python2-tempita/repos/community-any/PKGBUILD
(from rev 106754, python2-tempita/trunk/PKGBUILD)
Deleted:
  python2-tempita/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 09:09:14 UTC (rev 106754)
+++ PKGBUILD2014-03-07 09:09:22 UTC (rev 106755)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-#Maintainer: David Campbell davek...@archlinux.us
-#Contributor: Cilyan Olowen gak...@gmail.com
-#Contributor: Frederik M.J.V. freqmod VED iskrembilen Dott kom
-
-pkgname=python2-tempita
-pkgver=0.5.1
-pkgrel=2
-pkgdesc=A lightweight unicode templating language
-arch=('any')
-url=http://pythonpaste.org/tempita/;
-license=('custom:MIT')
-depends=('python2')
-makedepends=('python2-distribute')
-source=(http://pypi.python.org/packages/source/T/Tempita/Tempita-${pkgver}.tar.gz
-   
$pkgname-license.txt::http://pythonpaste.org/tempita/_sources/license.txt)
-md5sums=('f75bdfeabd2f3755f1ff32d582a574a4'
- 'c66b85ddcd09296abff87601467724fd')
-prepare() {
-  cd $srcdir/Tempita-${pkgver}
-  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
-   -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-   $(find . -name '*.py')
-
-}
-
-package() {
-  cd $srcdir/Tempita-${pkgver}
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 $srcdir/$pkgname-license.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
-}

Copied: python2-tempita/repos/community-any/PKGBUILD (from rev 106754, 
python2-tempita/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 09:09:22 UTC (rev 106755)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+#Maintainer: David Campbell davek...@archlinux.us
+#Contributor: Cilyan Olowen gak...@gmail.com
+#Contributor: Frederik M.J.V. freqmod VED iskrembilen Dott kom
+
+pkgname=python2-tempita
+pkgver=0.5.2
+pkgrel=1
+pkgdesc=A lightweight unicode templating language
+arch=('any')
+url=http://pythonpaste.org/tempita/;
+license=('custom:MIT')
+depends=('python2')
+makedepends=('python2-distribute')
+source=(http://pypi.python.org/packages/source/T/Tempita/Tempita-${pkgver}.tar.gz
+   
$pkgname-license.txt::http://pythonpaste.org/tempita/_sources/license.txt)
+md5sums=('4c2f17bb9d481821c41b6fbee904cea1'
+ 'c66b85ddcd09296abff87601467724fd')
+
+prepare() {
+  cd $srcdir/Tempita-${pkgver}
+  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+   -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+   $(find . -name '*.py')
+
+}
+
+package() {
+  cd $srcdir/Tempita-${pkgver}
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 $srcdir/$pkgname-license.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+}



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 10:14:18
  Author: spupykin
Revision: 106756

upgpkg: python2-ipaddr 2.1.11-1

upd

Modified:
  python2-ipaddr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 09:09:22 UTC (rev 106755)
+++ PKGBUILD2014-03-07 09:14:18 UTC (rev 106756)
@@ -3,8 +3,8 @@
 # Maintainer: Jonathan Liu net...@gmail.com
 
 pkgname='python2-ipaddr'
-pkgver=2.1.10
-pkgrel=3
+pkgver=2.1.11
+pkgrel=1
 pkgdesc=An IPv4/IPv6 manipulation library in Python
 arch=('any')
 url=http://code.google.com/p/ipaddr-py/;
@@ -11,7 +11,7 @@
 license=('APACHE')
 depends=('python2')
 makedepends=('python2-setuptools')
-source=(http://ipaddr-py.googlecode.com/files/ipaddr-${pkgver}.tar.gz;)
+source=(https://pypi.python.org/packages/source/i/ipaddr/ipaddr-${pkgver}.tar.gz;)
 md5sums=('f315ac829218e9735c5d772d59a3e0e7')
 
 check() {
@@ -18,6 +18,7 @@
   cd ${srcdir}/ipaddr-${pkgver}
   python2 ipaddr_test.py
 }
+md5sums=('f2c7852f95862715f92e7d089dc3f2cf')
 
 package() {
   cd ${srcdir}/ipaddr-${pkgver}



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 10:14:30
  Author: spupykin
Revision: 106757

archrelease: copy trunk to community-any

Added:
  python2-ipaddr/repos/community-any/PKGBUILD
(from rev 106756, python2-ipaddr/trunk/PKGBUILD)
Deleted:
  python2-ipaddr/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 09:14:18 UTC (rev 106756)
+++ PKGBUILD2014-03-07 09:14:30 UTC (rev 106757)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Jonathan Liu net...@gmail.com
-
-pkgname='python2-ipaddr'
-pkgver=2.1.10
-pkgrel=3
-pkgdesc=An IPv4/IPv6 manipulation library in Python
-arch=('any')
-url=http://code.google.com/p/ipaddr-py/;
-license=('APACHE')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=(http://ipaddr-py.googlecode.com/files/ipaddr-${pkgver}.tar.gz;)
-md5sums=('f315ac829218e9735c5d772d59a3e0e7')
-
-check() {
-  cd ${srcdir}/ipaddr-${pkgver}
-  python2 ipaddr_test.py
-}
-
-package() {
-  cd ${srcdir}/ipaddr-${pkgver}
-  python2 setup.py install --root=${pkgdir} -O1
-}

Copied: python2-ipaddr/repos/community-any/PKGBUILD (from rev 106756, 
python2-ipaddr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 09:14:30 UTC (rev 106757)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Jonathan Liu net...@gmail.com
+
+pkgname='python2-ipaddr'
+pkgver=2.1.11
+pkgrel=1
+pkgdesc=An IPv4/IPv6 manipulation library in Python
+arch=('any')
+url=http://code.google.com/p/ipaddr-py/;
+license=('APACHE')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(https://pypi.python.org/packages/source/i/ipaddr/ipaddr-${pkgver}.tar.gz;)
+md5sums=('f315ac829218e9735c5d772d59a3e0e7')
+
+check() {
+  cd ${srcdir}/ipaddr-${pkgver}
+  python2 ipaddr_test.py
+}
+md5sums=('f2c7852f95862715f92e7d089dc3f2cf')
+
+package() {
+  cd ${srcdir}/ipaddr-${pkgver}
+  python2 setup.py install --root=${pkgdir} -O1
+}



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

2014-03-07 Thread Thomas Bächler
Date: Friday, March 7, 2014 @ 10:14:44
  Author: thomas
Revision: 207128

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

Added:
  libnl/repos/core-i686/PKGBUILD
(from rev 207127, libnl/repos/testing-i686/PKGBUILD)
  libnl/repos/core-x86_64/PKGBUILD
(from rev 207127, libnl/repos/testing-x86_64/PKGBUILD)
Deleted:
  libnl/repos/core-i686/PKGBUILD
  libnl/repos/core-x86_64/PKGBUILD
  libnl/repos/testing-i686/
  libnl/repos/testing-x86_64/

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-03-07 08:55:32 UTC (rev 207127)
+++ core-i686/PKGBUILD  2014-03-07 09:14:44 UTC (rev 207128)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=libnl
-pkgver=3.2.23
-pkgrel=1
-pkgdesc=Library for applications dealing with netlink sockets
-arch=(i686 x86_64)
-url=http://www.infradead.org/~tgr/libnl/;
-license=(GPL)
-depends=(glibc)
-backup=(etc/libnl/classid etc/libnl/pktloc)
-source=($url/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('8cc2cda9aa8cbbad384b9bb1ba0f6777ed9bf65e1cc3170d8c2ba5b3ee12f2b3')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libnl/repos/core-i686/PKGBUILD (from rev 207127, 
libnl/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-03-07 09:14:44 UTC (rev 207128)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=libnl
+pkgver=3.2.24
+pkgrel=1
+pkgdesc=Library for applications dealing with netlink sockets
+arch=(i686 x86_64)
+url=http://www.infradead.org/~tgr/libnl/;
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+source=($url/files/$pkgname-$pkgver.tar.gz)
+sha256sums=('fb8d6e5dc8af5b85bc6d00a71582a68a01e6a3f7d1664d4a646e289a99dd6816')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-03-07 08:55:32 UTC (rev 207127)
+++ core-x86_64/PKGBUILD2014-03-07 09:14:44 UTC (rev 207128)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=libnl
-pkgver=3.2.23
-pkgrel=1
-pkgdesc=Library for applications dealing with netlink sockets
-arch=(i686 x86_64)
-url=http://www.infradead.org/~tgr/libnl/;
-license=(GPL)
-depends=(glibc)
-backup=(etc/libnl/classid etc/libnl/pktloc)
-source=($url/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('8cc2cda9aa8cbbad384b9bb1ba0f6777ed9bf65e1cc3170d8c2ba5b3ee12f2b3')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libnl/repos/core-x86_64/PKGBUILD (from rev 207127, 
libnl/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2014-03-07 09:14:44 UTC (rev 207128)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=libnl
+pkgver=3.2.24
+pkgrel=1
+pkgdesc=Library for applications dealing with netlink sockets
+arch=(i686 x86_64)
+url=http://www.infradead.org/~tgr/libnl/;
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+source=($url/files/$pkgname-$pkgver.tar.gz)
+sha256sums=('fb8d6e5dc8af5b85bc6d00a71582a68a01e6a3f7d1664d4a646e289a99dd6816')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-03-07 Thread Andrea Scarpino
Date: Friday, March 7, 2014 @ 10:21:17
  Author: andrea
Revision: 207129

upgpkg: ncftp 3.2.5-4

Fix segmentation fault

Modified:
  ncftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 09:14:44 UTC (rev 207128)
+++ PKGBUILD2014-03-07 09:21:17 UTC (rev 207129)
@@ -24,6 +24,7 @@
 }
 
 build() {
+  # FS#39211
   unset CPPFLAGS
 
   cd ${pkgname}-${pkgver}



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

2014-03-07 Thread Andrea Scarpino
Date: Friday, March 7, 2014 @ 10:21:28
  Author: andrea
Revision: 207130

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

Added:
  ncftp/repos/extra-i686/PKGBUILD
(from rev 207129, ncftp/trunk/PKGBUILD)
  ncftp/repos/extra-i686/fix-build.patch
(from rev 207129, ncftp/trunk/fix-build.patch)
  ncftp/repos/extra-x86_64/PKGBUILD
(from rev 207129, ncftp/trunk/PKGBUILD)
  ncftp/repos/extra-x86_64/fix-build.patch
(from rev 207129, ncftp/trunk/fix-build.patch)
Deleted:
  ncftp/repos/extra-i686/PKGBUILD
  ncftp/repos/extra-i686/fix-build.patch
  ncftp/repos/extra-x86_64/PKGBUILD
  ncftp/repos/extra-x86_64/fix-build.patch

--+
 /PKGBUILD|   88 +
 /fix-build.patch |   20 +
 extra-i686/PKGBUILD  |   41 ---
 extra-i686/fix-build.patch   |   10 
 extra-x86_64/PKGBUILD|   41 ---
 extra-x86_64/fix-build.patch |   10 
 6 files changed, 108 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-07 09:21:17 UTC (rev 207129)
+++ extra-i686/PKGBUILD 2014-03-07 09:21:28 UTC (rev 207130)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=ncftp
-pkgver=3.2.5
-pkgrel=3
-pkgdesc=A set of free application programs implementing FTP
-url=http://www.ncftp.com/;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('ncurses')
-makedepends=('inetutils')
-source=(ftp://ftp.ncftp.com/ncftp/$pkgname-$pkgver-src.tar.bz2;
-'fix-build.patch')
-md5sums=('b05c7a6d5269c04891f02f43d4312b30'
- 'f85fd4cc66b66952d67f864137f44029')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/fix-build.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  CPP=/usr/bin/cpp ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -d ${pkgdir}/usr/share
-  make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install
-
-  # Install license
-  install -Dm644 doc/LICENSE.txt \
-${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ncftp/repos/extra-i686/PKGBUILD (from rev 207129, ncftp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-07 09:21:28 UTC (rev 207130)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=ncftp
+pkgver=3.2.5
+pkgrel=4
+pkgdesc=A set of free application programs implementing FTP
+url=http://www.ncftp.com/;
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('ncurses')
+makedepends=('inetutils')
+source=(ftp://ftp.ncftp.com/ncftp/$pkgname-$pkgver-src.tar.bz2;
+'fix-build.patch')
+md5sums=('b05c7a6d5269c04891f02f43d4312b30'
+ 'f85fd4cc66b66952d67f864137f44029')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/fix-build.patch
+}
+
+build() {
+  # FS#39211
+  unset CPPFLAGS
+
+  cd ${pkgname}-${pkgver}
+  CPP=/usr/bin/cpp ./configure --prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d ${pkgdir}/usr/share
+  make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install
+
+  # Install license
+  install -Dm644 doc/LICENSE.txt \
+${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-i686/fix-build.patch
===
--- extra-i686/fix-build.patch  2014-03-07 09:21:17 UTC (rev 207129)
+++ extra-i686/fix-build.patch  2014-03-07 09:21:28 UTC (rev 207130)
@@ -1,10 +0,0 @@
 ncftp-3.2.5/ncftp/main.c~  2014-03-06 11:20:05.006777392 +
-+++ ncftp-3.2.5/ncftp/main.c   2014-03-06 11:20:25.739974714 +
-@@ -21,6 +21,7 @@
- #include log.h
- #include spool.h
- #include util.h
-+#include locale.h
- 
- int gStartupUrlParameterGiven = 0;
- int gIsTTY, gIsTTYr;

Copied: ncftp/repos/extra-i686/fix-build.patch (from rev 207129, 
ncftp/trunk/fix-build.patch)
===
--- extra-i686/fix-build.patch  (rev 0)
+++ extra-i686/fix-build.patch  2014-03-07 09:21:28 UTC (rev 207130)
@@ -0,0 +1,10 @@
+--- ncftp-3.2.5/ncftp/main.c~  2014-03-06 11:20:05.006777392 +
 ncftp-3.2.5/ncftp/main.c   2014-03-06 11:20:25.739974714 +
+@@ -21,6 +21,7 @@
+ #include log.h
+ #include spool.h
+ #include util.h
++#include locale.h
+ 
+ int gStartupUrlParameterGiven = 0;
+ int gIsTTY, gIsTTYr;

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-03-07 

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

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 10:43:49
  Author: flexiondotorg
Revision: 106758

upgpkg: mate-disk-utility 1.7.0-1 - New upstream release

Modified:
  mate-disk-utility/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 7 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 09:14:30 UTC (rev 106757)
+++ PKGBUILD2014-03-07 09:43:49 UTC (rev 106758)
@@ -2,18 +2,18 @@
 # Maintainer : Martin Wimpress c...@flexion.org
 
 pkgname=mate-disk-utility
-pkgver=1.6.2
-pkgrel=2
+pkgver=1.7.0
+pkgrel=1
 pkgdesc=Disk management application for MATE.
 url=https://github.com/NiceandGently/mate-disk-utility;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('avahi' 'dbus' 'gtk2' 'libatasmart' 'libgnome-keyring' 'libnotify'
- 'libunique' 'mate-file-manager' 'udisks')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+depends=('avahi' 'caja' 'dbus' 'gtk2' 'libatasmart' 'libsecret' 'libnotify'
+ 'libunique' 'udisks')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
 options=('!emptydirs')
 
source=(https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
-md5sums=('ff3b520a06c367124558cdd252f1956d')
+sha1sums=('c00e4af7dbe0a6c2ae51c761ae7a9daaf87ef061')
 install=${pkgname}.install
 
 prepare() {
@@ -27,9 +27,7 @@
 --prefix=/usr \
 --sysconfdir=/etc \
 --libexecdir=/usr/lib/${pkgname} \
---enable-gnome-keyring \
---disable-static \
---disable-scrollkeeper
+--disable-static
 make
 }
 



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

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 10:44:14
  Author: flexiondotorg
Revision: 106759

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

Added:
  mate-disk-utility/repos/community-i686/PKGBUILD
(from rev 106758, mate-disk-utility/trunk/PKGBUILD)
  mate-disk-utility/repos/community-i686/mate-disk-utility.install
(from rev 106758, mate-disk-utility/trunk/mate-disk-utility.install)
  mate-disk-utility/repos/community-x86_64/PKGBUILD
(from rev 106758, mate-disk-utility/trunk/PKGBUILD)
  mate-disk-utility/repos/community-x86_64/mate-disk-utility.install
(from rev 106758, mate-disk-utility/trunk/mate-disk-utility.install)
Deleted:
  mate-disk-utility/repos/community-i686/PKGBUILD
  mate-disk-utility/repos/community-i686/mate-disk-utility.install
  mate-disk-utility/repos/community-x86_64/PKGBUILD
  mate-disk-utility/repos/community-x86_64/mate-disk-utility.install

+
 /PKGBUILD  |   74 +++
 /mate-disk-utility.install |   24 
 community-i686/PKGBUILD|   39 --
 community-i686/mate-disk-utility.install   |   12 
 community-x86_64/PKGBUILD  |   39 --
 community-x86_64/mate-disk-utility.install |   12 
 6 files changed, 98 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-07 09:43:49 UTC (rev 106758)
+++ community-i686/PKGBUILD 2014-03-07 09:44:14 UTC (rev 106759)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-disk-utility
-pkgver=1.6.2
-pkgrel=2
-pkgdesc=Disk management application for MATE.
-url=https://github.com/NiceandGently/mate-disk-utility;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('avahi' 'dbus' 'gtk2' 'libatasmart' 'libgnome-keyring' 'libnotify'
- 'libunique' 'mate-file-manager' 'udisks')
-makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
-options=('!emptydirs')
-source=(https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
-md5sums=('ff3b520a06c367124558cdd252f1956d')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}/${pkgname}-${pkgver}
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${pkgname} \
---enable-gnome-keyring \
---disable-static \
---disable-scrollkeeper
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-disk-utility/repos/community-i686/PKGBUILD (from rev 106758, 
mate-disk-utility/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 09:44:14 UTC (rev 106759)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-disk-utility
+pkgver=1.7.0
+pkgrel=1
+pkgdesc=Disk management application for MATE.
+url=https://github.com/NiceandGently/mate-disk-utility;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('avahi' 'caja' 'dbus' 'gtk2' 'libatasmart' 'libsecret' 'libnotify'
+ 'libunique' 'udisks')
+makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools')
+options=('!emptydirs')
+source=(https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha1sums=('c00e4af7dbe0a6c2ae51c761ae7a9daaf87ef061')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${pkgname} \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-disk-utility.install
===
--- community-i686/mate-disk-utility.install2014-03-07 09:43:49 UTC (rev 
106758)
+++ community-i686/mate-disk-utility.install2014-03-07 09:44:14 UTC (rev 
106759)
@@ -1,12 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-disk-utility/repos/community-i686/mate-disk-utility.install (from 
rev 106758, mate-disk-utility/trunk/mate-disk-utility.install)
===
--- community-i686/mate-disk-utility.install(rev 0)
+++ community-i686/mate-disk-utility.install2014-03-07 09:44:14 UTC (rev 
106759)
@@ -0,0 +1,12 @@
+post_install() {
+gtk-update-icon-cache -q -t 

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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 11:49:59
  Author: bpiotrowski
Revision: 106761

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   73 +--
 phpmyadmin.install |6 ++--
 2 files changed, 34 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-07 10:49:53 UTC (rev 106760)
+++ PKGBUILD2014-03-07 10:49:59 UTC (rev 106761)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer:  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.1.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)
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-sha256sums=('d774ad005d0f03d2fc8c840cedb35571c24a7a265c1a4a50ecad67f3d531ddb2')
-
-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
-
-  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
-   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
-   Directory /usr/share/webapps/phpMyAdmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 106760, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-07 10:49:59 UTC (rev 106761)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:  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.1.9
+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)
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+sha256sums=('f7cc55460e0518cf8911a84a88699904a052dbd63ac1ce83e27467a449657c13')
+
+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
+}

Deleted: phpmyadmin.install
===
--- phpmyadmin.install  2014-03-07 10:49:53 UTC (rev 106760)
+++ phpmyadmin.install  2014-03-07 10:49:59 UTC (rev 106761)
@@ -1,3 +0,0 @@
-post_install() {
-echo Check http://wiki.archlinux.org/index.php/Phpmyadmin for details.
-}

Copied: phpmyadmin/repos/community-any/phpmyadmin.install (from rev 106760, 
phpmyadmin/trunk/phpmyadmin.install)
===
--- phpmyadmin.install  (rev 0)
+++ phpmyadmin.install  2014-03-07 10:49:59 UTC (rev 106761)
@@ -0,0 +1,3 @@
+post_install() {
+echo Check http://wiki.archlinux.org/index.php/Phpmyadmin for details.
+}



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 11:49:53
  Author: bpiotrowski
Revision: 106760

upgpkg: phpmyadmin 4.1.9-1

- new upstream release
- drop example configuration for Apache (FS#39213)

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 09:44:14 UTC (rev 106759)
+++ PKGBUILD2014-03-07 10:49:53 UTC (rev 106760)
@@ -6,7 +6,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=4.1.8
+pkgver=4.1.9
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-sha256sums=('d774ad005d0f03d2fc8c840cedb35571c24a7a265c1a4a50ecad67f3d531ddb2')
+sha256sums=('f7cc55460e0518cf8911a84a88699904a052dbd63ac1ce83e27467a449657c13')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
@@ -28,15 +28,4 @@
 
   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
-
-  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
-   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
-   Directory /usr/share/webapps/phpMyAdmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
 }



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 12:12:30
  Author: spupykin
Revision: 106762

Modified:
  phpldapadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 10:49:59 UTC (rev 106761)
+++ PKGBUILD2014-03-07 11:12:30 UTC (rev 106762)
@@ -38,8 +38,7 @@
Directory /usr/share/webapps/phpldapadmin
AllowOverride All
Options FollowSymlinks
-   Order allow,deny
-   Allow from all
+   Require all granted
php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
/Directory
 EOF



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

2014-03-07 Thread Sergej Pupykin
Date: Friday, March 7, 2014 @ 12:12:37
  Author: spupykin
Revision: 106763

Modified:
  phppgadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 11:12:30 UTC (rev 106762)
+++ PKGBUILD2014-03-07 11:12:37 UTC (rev 106763)
@@ -28,8 +28,7 @@
Directory /usr/share/webapps/phppgadmin
AllowOverride All
Options FollowSymlinks
-   Order allow,deny
-   Allow from all
+   Require all granted
/Directory
 EOF
 }



[arch-commits] Commit in (4 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 12:58:40
  Author: flexiondotorg
Revision: 106764

Added mate-themes-extras

Added:
  mate-themes-extras/
  mate-themes-extras/repos/
  mate-themes-extras/trunk/
  mate-themes-extras/trunk/PKGBUILD

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

Added: mate-themes-extras/trunk/PKGBUILD
===
--- mate-themes-extras/trunk/PKGBUILD   (rev 0)
+++ mate-themes-extras/trunk/PKGBUILD   2014-03-07 11:58:40 UTC (rev 106764)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_pkgname=
+pkgname=mate-themes-extras
+_pkgname=${pkgname}-5
+pkgver=1.7.11
+pkgrel=1
+pkgdesc=Collection of GTK2/3 desktop themes for MATE.
+url=https://github.com/NiceandGently/mate-themes-extras-5;
+arch=('any')
+license=('GPL')
+depends=('gtk2' 'gtk-engines' 'gtk-engine-murrine' 'mate-icon-theme')
+makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
+options=('!emptydirs')
+source=(https://github.com/NiceandGently/${_pkgname}/archive/v${pkgver}.tar.gz;)
+sha1sums=('e49b6115deddce46d99a61021c032416342b6bef')
+
+prepare() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-Blue-Submarine \
+--enable-Clearlooks-Phenix \
+--enable-Cologne \
+--enable-DeLorean-Dark \
+--disable-Faience \
+--disable-Faience-Ocre \
+--enable-Gnome-Cupertino \
+--enable-Gnome-Cupertino-Mint \
+--enable-Green-Submarine \
+--enable-GnomishBeige \
+--enable-Smoothly \
+--enable-Smoothly-Black \
+--enable-Zukitwo \
+--enable-Zukitwo-Dust \
+--enable-Zukitwo-Brave \
+--enable-Zukitwo-Human \
+--enable-Zukitwo-Illustrious \
+--enable-Zukitwo-Noble \
+--enable-Zukitwo-Wine \
+--enable-Zukitwo-Wise \
+--enable-Zukitwo-Colors
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


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


[arch-commits] Commit in mate-themes-extras/repos (2 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 13:00:34
  Author: flexiondotorg
Revision: 106765

archrelease: copy trunk to community-any

Added:
  mate-themes-extras/repos/community-any/
  mate-themes-extras/repos/community-any/PKGBUILD
(from rev 106764, mate-themes-extras/trunk/PKGBUILD)

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

Copied: mate-themes-extras/repos/community-any/PKGBUILD (from rev 106764, 
mate-themes-extras/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-03-07 12:00:34 UTC (rev 106765)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_pkgname=
+pkgname=mate-themes-extras
+_pkgname=${pkgname}-5
+pkgver=1.7.11
+pkgrel=1
+pkgdesc=Collection of GTK2/3 desktop themes for MATE.
+url=https://github.com/NiceandGently/mate-themes-extras-5;
+arch=('any')
+license=('GPL')
+depends=('gtk2' 'gtk-engines' 'gtk-engine-murrine' 'mate-icon-theme')
+makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
+options=('!emptydirs')
+source=(https://github.com/NiceandGently/${_pkgname}/archive/v${pkgver}.tar.gz;)
+sha1sums=('e49b6115deddce46d99a61021c032416342b6bef')
+
+prepare() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-Blue-Submarine \
+--enable-Clearlooks-Phenix \
+--enable-Cologne \
+--enable-DeLorean-Dark \
+--disable-Faience \
+--disable-Faience-Ocre \
+--enable-Gnome-Cupertino \
+--enable-Gnome-Cupertino-Mint \
+--enable-Green-Submarine \
+--enable-GnomishBeige \
+--enable-Smoothly \
+--enable-Smoothly-Black \
+--enable-Zukitwo \
+--enable-Zukitwo-Dust \
+--enable-Zukitwo-Brave \
+--enable-Zukitwo-Human \
+--enable-Zukitwo-Illustrious \
+--enable-Zukitwo-Noble \
+--enable-Zukitwo-Wine \
+--enable-Zukitwo-Wise \
+--enable-Zukitwo-Colors
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (5 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 13:02:00
  Author: flexiondotorg
Revision: 106766

Added qt-at-spi

Added:
  qt-at-spi/
  qt-at-spi/repos/
  qt-at-spi/trunk/
  qt-at-spi/trunk/PKGBUILD
  qt-at-spi/trunk/qt-accessibility.sh

-+
 PKGBUILD|   34 ++
 qt-accessibility.sh |1 +
 2 files changed, 35 insertions(+)

Added: qt-at-spi/trunk/PKGBUILD
===
--- qt-at-spi/trunk/PKGBUILD(rev 0)
+++ qt-at-spi/trunk/PKGBUILD2014-03-07 12:02:00 UTC (rev 106766)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=qt-at-spi
+pkgver=0.3.1
+pkgrel=2
+pkgdesc=A Qt plugin that bridges the QAccessible API’s to the AT-SPI 2 
protocol, giving blind and visually impaired users access to qt applications.
+arch=(i686 x86_64)
+url=http://projects.kde.org/qtatspi;
+license=('LGPL')
+depends=('at-spi2-core' 'qt4=4.8')
+options=('!libtool')
+source=(https://gitorious.org/$pkgname/$pkgname/archive-tarball/v$pkgver
+qt-accessibility.sh)
+md5sums=('cc749ef766f8a199b603a7d5fb723006'
+ 'f0c8551ed54f5d4e5daf7ddac9189aaa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgname
+   qmake-qt4
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgname
+   make -k check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgname
+   make INSTALL_ROOT=$pkgdir install
+   install -D -m755 $srcdir/qt-accessibility.sh 
$pkgdir/etc/profile.d/qt-accessibility.sh
+}


Property changes on: qt-at-spi/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: qt-at-spi/trunk/qt-accessibility.sh
===
--- qt-at-spi/trunk/qt-accessibility.sh (rev 0)
+++ qt-at-spi/trunk/qt-accessibility.sh 2014-03-07 12:02:00 UTC (rev 106766)
@@ -0,0 +1 @@
+export QT_ACCESSIBILITY=1


Property changes on: qt-at-spi/trunk/qt-accessibility.sh
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


[arch-commits] Commit in qt-at-spi/repos (6 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 13:04:16
  Author: flexiondotorg
Revision: 106767

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

Added:
  qt-at-spi/repos/community-i686/
  qt-at-spi/repos/community-i686/PKGBUILD
(from rev 106766, qt-at-spi/trunk/PKGBUILD)
  qt-at-spi/repos/community-i686/qt-accessibility.sh
(from rev 106766, qt-at-spi/trunk/qt-accessibility.sh)
  qt-at-spi/repos/community-x86_64/
  qt-at-spi/repos/community-x86_64/PKGBUILD
(from rev 106766, qt-at-spi/trunk/PKGBUILD)
  qt-at-spi/repos/community-x86_64/qt-accessibility.sh
(from rev 106766, qt-at-spi/trunk/qt-accessibility.sh)

--+
 community-i686/PKGBUILD  |   34 +
 community-i686/qt-accessibility.sh   |1 
 community-x86_64/PKGBUILD|   34 +
 community-x86_64/qt-accessibility.sh |1 
 4 files changed, 70 insertions(+)

Copied: qt-at-spi/repos/community-i686/PKGBUILD (from rev 106766, 
qt-at-spi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 12:04:16 UTC (rev 106767)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=qt-at-spi
+pkgver=0.3.1
+pkgrel=2
+pkgdesc=A Qt plugin that bridges the QAccessible API’s to the AT-SPI 2 
protocol, giving blind and visually impaired users access to qt applications.
+arch=(i686 x86_64)
+url=http://projects.kde.org/qtatspi;
+license=('LGPL')
+depends=('at-spi2-core' 'qt4=4.8')
+options=('!libtool')
+source=(https://gitorious.org/$pkgname/$pkgname/archive-tarball/v$pkgver
+qt-accessibility.sh)
+md5sums=('cc749ef766f8a199b603a7d5fb723006'
+ 'f0c8551ed54f5d4e5daf7ddac9189aaa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgname
+   qmake-qt4
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgname
+   make -k check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgname
+   make INSTALL_ROOT=$pkgdir install
+   install -D -m755 $srcdir/qt-accessibility.sh 
$pkgdir/etc/profile.d/qt-accessibility.sh
+}

Copied: qt-at-spi/repos/community-i686/qt-accessibility.sh (from rev 106766, 
qt-at-spi/trunk/qt-accessibility.sh)
===
--- community-i686/qt-accessibility.sh  (rev 0)
+++ community-i686/qt-accessibility.sh  2014-03-07 12:04:16 UTC (rev 106767)
@@ -0,0 +1 @@
+export QT_ACCESSIBILITY=1

Copied: qt-at-spi/repos/community-x86_64/PKGBUILD (from rev 106766, 
qt-at-spi/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-07 12:04:16 UTC (rev 106767)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=qt-at-spi
+pkgver=0.3.1
+pkgrel=2
+pkgdesc=A Qt plugin that bridges the QAccessible API’s to the AT-SPI 2 
protocol, giving blind and visually impaired users access to qt applications.
+arch=(i686 x86_64)
+url=http://projects.kde.org/qtatspi;
+license=('LGPL')
+depends=('at-spi2-core' 'qt4=4.8')
+options=('!libtool')
+source=(https://gitorious.org/$pkgname/$pkgname/archive-tarball/v$pkgver
+qt-accessibility.sh)
+md5sums=('cc749ef766f8a199b603a7d5fb723006'
+ 'f0c8551ed54f5d4e5daf7ddac9189aaa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgname
+   qmake-qt4
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgname
+   make -k check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgname
+   make INSTALL_ROOT=$pkgdir install
+   install -D -m755 $srcdir/qt-accessibility.sh 
$pkgdir/etc/profile.d/qt-accessibility.sh
+}

Copied: qt-at-spi/repos/community-x86_64/qt-accessibility.sh (from rev 106766, 
qt-at-spi/trunk/qt-accessibility.sh)
===
--- community-x86_64/qt-accessibility.sh(rev 0)
+++ community-x86_64/qt-accessibility.sh2014-03-07 12:04:16 UTC (rev 
106767)
@@ -0,0 +1 @@
+export QT_ACCESSIBILITY=1



[arch-commits] Commit in (4 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 13:32:46
  Author: flexiondotorg
Revision: 106768

Added java-atk-wrapper

Added:
  java-atk-wrapper/
  java-atk-wrapper/repos/
  java-atk-wrapper/trunk/
  java-atk-wrapper/trunk/PKGBUILD

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

Added: java-atk-wrapper/trunk/PKGBUILD
===
--- java-atk-wrapper/trunk/PKGBUILD (rev 0)
+++ java-atk-wrapper/trunk/PKGBUILD 2014-03-07 12:32:46 UTC (rev 106768)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Martin Wimpress c...@flexion.org
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=java-atk-wrapper
+pkgver=0.30.4
+pkgrel=3
+pkgdesc=ATK wrapper for screen reader access to Java Swing applications
+arch=(i686 x86_64)
+url=https://git.gnome.org/browse/java-atk-wrapper/;
+license=('LGPL')
+depends=('gconf' 'gtk2' 'java-runtime' 'xorg-xprop')
+makedepends=('java-environment')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.30/$pkgname-$pkgver.tar.bz2;)
+md5sums=('45b7aafdc4b9fd1c3dd0a39485df5dfa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}


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


[arch-commits] Commit in java-atk-wrapper/repos (4 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 13:34:59
  Author: flexiondotorg
Revision: 106769

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

Added:
  java-atk-wrapper/repos/community-i686/
  java-atk-wrapper/repos/community-i686/PKGBUILD
(from rev 106768, java-atk-wrapper/trunk/PKGBUILD)
  java-atk-wrapper/repos/community-x86_64/
  java-atk-wrapper/repos/community-x86_64/PKGBUILD
(from rev 106768, java-atk-wrapper/trunk/PKGBUILD)

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

Copied: java-atk-wrapper/repos/community-i686/PKGBUILD (from rev 106768, 
java-atk-wrapper/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-07 12:34:59 UTC (rev 106769)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Martin Wimpress c...@flexion.org
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=java-atk-wrapper
+pkgver=0.30.4
+pkgrel=3
+pkgdesc=ATK wrapper for screen reader access to Java Swing applications
+arch=(i686 x86_64)
+url=https://git.gnome.org/browse/java-atk-wrapper/;
+license=('LGPL')
+depends=('gconf' 'gtk2' 'java-runtime' 'xorg-xprop')
+makedepends=('java-environment')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.30/$pkgname-$pkgver.tar.bz2;)
+md5sums=('45b7aafdc4b9fd1c3dd0a39485df5dfa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}

Copied: java-atk-wrapper/repos/community-x86_64/PKGBUILD (from rev 106768, 
java-atk-wrapper/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-07 12:34:59 UTC (rev 106769)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Martin Wimpress c...@flexion.org
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=java-atk-wrapper
+pkgver=0.30.4
+pkgrel=3
+pkgdesc=ATK wrapper for screen reader access to Java Swing applications
+arch=(i686 x86_64)
+url=https://git.gnome.org/browse/java-atk-wrapper/;
+license=('LGPL')
+depends=('gconf' 'gtk2' 'java-runtime' 'xorg-xprop')
+makedepends=('java-environment')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.30/$pkgname-$pkgver.tar.bz2;)
+md5sums=('45b7aafdc4b9fd1c3dd0a39485df5dfa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in (5 files)

2014-03-07 Thread Martin Wimpress
Date: Friday, March 7, 2014 @ 14:43:25
  Author: flexiondotorg
Revision: 106770

Added mate-accountsdialog

Added:
  mate-accountsdialog/
  mate-accountsdialog/repos/
  mate-accountsdialog/trunk/
  mate-accountsdialog/trunk/PKGBUILD
  mate-accountsdialog/trunk/mate-accountsdialog.install

-+
 PKGBUILD|   35 +++
 mate-accountsdialog.install |   11 +++
 2 files changed, 46 insertions(+)

Added: mate-accountsdialog/trunk/PKGBUILD
===
--- mate-accountsdialog/trunk/PKGBUILD  (rev 0)
+++ mate-accountsdialog/trunk/PKGBUILD  2014-03-07 13:43:25 UTC (rev 106770)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-accountsdialog
+pkgver=1.6.0
+pkgrel=1
+pkgdesc=An application to view and modify user accounts information for MATE.
+url=https://github.com/NiceandGently/mate-accountsdialog;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('accountsservice' 'apg' 'dbus-glib' 'gtk2' 'iso-codes' 'mate-desktop'
+ 'mate-polkit' 'libunique')
+makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+options=('!emptydirs')
+source=(https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha1sums=('33704adbed045b60cbcd3e15ae83e3283765ef52')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-systemd
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


Property changes on: mate-accountsdialog/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: mate-accountsdialog/trunk/mate-accountsdialog.install
===
--- mate-accountsdialog/trunk/mate-accountsdialog.install   
(rev 0)
+++ mate-accountsdialog/trunk/mate-accountsdialog.install   2014-03-07 
13:43:25 UTC (rev 106770)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 14:50:49
  Author: bpiotrowski
Revision: 207131

upgpkg: linux-lts 3.10.33-1

new upstream release

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 09:21:28 UTC (rev 207130)
+++ PKGBUILD2014-03-07 13:50:49 UTC (rev 207131)
@@ -5,7 +5,7 @@
 pkgbase=linux-lts   # Build stock -lts kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.10
-pkgver=3.10.32
+pkgver=3.10.33
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -21,7 +21,7 @@
 'change-default-console-loglevel.patch'
 'criu-no-expert.patch')
 md5sums=('4f25cd5bec5f8d5a7d935b3f2ccb8481'
- 'f462ded4115e99d666e0b59b0f4b0f3d'
+ '2a453acf41c3f28122a7cabd3d4acbf5'
  '45368ef5c1d03d375c31dcecabc5f0dd'
  'bf297cf1c74b06552b1013a09a27692f'
  '232b52576a62c7a333e9fe7a1e1ca359'



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 14:51:09
  Author: bpiotrowski
Revision: 207132

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 207131, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 207131, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 207131, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 207131, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/criu-no-expert.patch
(from rev 207131, linux-lts/trunk/criu-no-expert.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 207131, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 207131, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 207131, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 207131, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 207131, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 207131, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/criu-no-expert.patch
(from rev 207131, linux-lts/trunk/criu-no-expert.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 207131, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 207131, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/PKGBUILD|  334 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6320 +
 testing-i686/config.x86_64   | 6121 
 testing-i686/criu-no-expert.patch|   22 
 testing-i686/linux-lts.install   |   31 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/PKGBUILD  |  334 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6320 +
 testing-x86_64/config.x86_64 | 6121 
 testing-x86_64/criu-no-expert.patch  |   22 
 testing-x86_64/linux-lts.install |   31 
 testing-x86_64/linux-lts.preset  |   14 
 14 files changed, 25708 insertions(+)

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


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

2014-03-07 Thread Tobias Powalowski
Date: Friday, March 7, 2014 @ 14:53:37
  Author: tpowa
Revision: 207133

bump to 3.13.6

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 13:51:09 UTC (rev 207132)
+++ PKGBUILD2014-03-07 13:53:37 UTC (rev 207133)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.13
-pkgver=3.13.5
+pkgver=3.13.6
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -26,12 +26,11 @@
 '0004-rpc_pipe-remove-the-clntXX-dir-if-creating-the-pipe-.patch'
 '0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch'
 '0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch'
-'0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch'
 '0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch'
 'i8042-fix-aliases.patch'
 )
 md5sums=('0ecbaf65c00374eb4a826c2f9f37606f'
- '114c391a592131f1c12544e063173a45'
+ 'a9b131a589a176b4c437b8ca4557b85e'
  'ba4468d313adfaf22368add7f58204aa'
  '035bb27dac306f5c028d96cad14bb249'
  'eb14dcfd80c00852ef81ded6e826826a'
@@ -43,7 +42,6 @@
  '10dbaf863e22b2437e68f9190d65c861'
  'd5907a721b97299f0685c583499f7820'
  'a724515b350b29c53f20e631c6cf9a14'
- '1ae4ec847f41fa1b6d488f956e94c893'
  'e6fa278c092ad83780e2dd0568e24ca6'
  '93dbf73af819b77f03453a9c6de2bb47')
 
@@ -82,10 +80,6 @@
   # 
http://git.linux-nfs.org/?p=trondmy/linux-nfs.git;a=commitdiff;h=23e66ba97127ff3b064d4c6c5138aa34eafc492f
   patch -p1 -i 
${srcdir}/0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch
 
-  # Fix FS#38921
-  # 
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9eb2ddb48ce3a7bd745c14a933112994647fa3cd
-  patch -p1 -i 
${srcdir}/0001-SUNRPC-Ensure-that-gss_auth-isn-t-freed-before-its-u.patch
-
   # Fix symbols: Revert 
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=83460ec8dcac14142e7860a01fa59c267ac4657c
   patch -Rp1 -i 
${srcdir}/0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch
 



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

2014-03-07 Thread Thomas Bächler
Date: Friday, March 7, 2014 @ 15:06:45
  Author: thomas
Revision: 207134

linux: Fix kmod warning regarding hci_vhci

Added:
  linux/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch
Modified:
  linux/trunk/PKGBUILD

-+
 0001-Bluetooth-allocate-static-minor-for-vhci.patch |   76 ++
 PKGBUILD|5 +
 2 files changed, 81 insertions(+)

Added: 0001-Bluetooth-allocate-static-minor-for-vhci.patch
===
--- 0001-Bluetooth-allocate-static-minor-for-vhci.patch 
(rev 0)
+++ 0001-Bluetooth-allocate-static-minor-for-vhci.patch 2014-03-07 14:06:45 UTC 
(rev 207134)
@@ -0,0 +1,76 @@
+From a62207820fb65f168c8a7f9c0abb71d736f3d7e0 Mon Sep 17 00:00:00 2001
+From: Lucas De Marchi lucas.demar...@intel.com
+Date: Tue, 18 Feb 2014 02:19:26 -0300
+Subject: [PATCH] Bluetooth: allocate static minor for vhci
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Commit bfacbb9 (Bluetooth: Use devname:vhci module alias for virtual HCI
+driver) added the module alias to hci_vhci module so it's possible to
+create the /dev/vhci node. However creating an alias without
+specifying the minor doesn't allow us to create the node ahead,
+triggerring module auto-load when it's first accessed.
+
+Starting with depmod from kmod 16 we started to warn if there's a
+devname alias without specifying the major and minor.
+
+Let's do the same done for uhid, kvm, fuse and others, specifying a
+fixed minor. In systems with systemd as the init the following will
+happen: on early boot systemd will call kmod static-nodes to read
+/lib/modules/$(uname -r)/modules.devname and then create the nodes. When
+first accessed these dead nodes will trigger the module loading.
+
+Signed-off-by: Lucas De Marchi lucas.demar...@intel.com
+Acked-by: Greg Kroah-Hartman gre...@linuxfoundation.org
+Signed-off-by: Marcel Holtmann mar...@holtmann.org
+---
+ Documentation/devices.txt| 1 +
+ drivers/bluetooth/hci_vhci.c | 3 ++-
+ include/linux/miscdevice.h   | 1 +
+ 3 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/Documentation/devices.txt b/Documentation/devices.txt
+index 80b7241..fce9398 100644
+--- a/Documentation/devices.txt
 b/Documentation/devices.txt
+@@ -353,6 +353,7 @@ Your cooperation is appreciated.
+   133 = /dev/exttrp   External device trap
+   134 = /dev/apm_bios Advanced Power Management BIOS
+   135 = /dev/rtc  Real Time Clock
++  137 = /dev/vhci Bluetooth virtual HCI driver
+   139 = /dev/openprom SPARC OpenBoot PROM
+   140 = /dev/relay8   Berkshire Products Octal relay card
+   141 = /dev/relay16  Berkshire Products ISO-16 relay card
+diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c
+index 7b16738..59095e6 100644
+--- a/drivers/bluetooth/hci_vhci.c
 b/drivers/bluetooth/hci_vhci.c
+@@ -352,7 +352,7 @@ static const struct file_operations vhci_fops = {
+ static struct miscdevice vhci_miscdev= {
+   .name   = vhci,
+   .fops   = vhci_fops,
+-  .minor  = MISC_DYNAMIC_MINOR,
++  .minor  = VHCI_MINOR,
+ };
+ 
+ static int __init vhci_init(void)
+@@ -378,3 +378,4 @@ MODULE_DESCRIPTION(Bluetooth virtual HCI driver ver  
VERSION);
+ MODULE_VERSION(VERSION);
+ MODULE_LICENSE(GPL);
+ MODULE_ALIAS(devname:vhci);
++MODULE_ALIAS_MISCDEV(VHCI_MINOR);
+diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h
+index f7eaf2d..e5db611 100644
+--- a/include/linux/miscdevice.h
 b/include/linux/miscdevice.h
+@@ -23,6 +23,7 @@
+ #define TEMP_MINOR131 /* Temperature Sensor */
+ #define RTC_MINOR 135
+ #define EFI_RTC_MINOR 136 /* EFI Time services */
++#define VHCI_MINOR137
+ #define SUN_OPENPROM_MINOR139
+ #define DMAPI_MINOR   140 /* DMAPI */
+ #define NVRAM_MINOR   144
+-- 
+1.9.0
+

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 13:53:37 UTC (rev 207133)
+++ PKGBUILD2014-03-07 14:06:45 UTC (rev 207134)
@@ -27,6 +27,7 @@
 '0005-sunrpc-add-an-info-file-for-the-dummy-gssd-pipe.patch'
 '0006-rpc_pipe-fix-cleanup-of-dummy-gssd-directory-when-no.patch'
 '0001-syscalls.h-use-gcc-alias-instead-of-assembler-aliase.patch'
+'0001-Bluetooth-allocate-static-minor-for-vhci.patch'
 'i8042-fix-aliases.patch'
 )
 md5sums=('0ecbaf65c00374eb4a826c2f9f37606f'
@@ -43,6 +44,7 @@
  'd5907a721b97299f0685c583499f7820'
  'a724515b350b29c53f20e631c6cf9a14'
  'e6fa278c092ad83780e2dd0568e24ca6'
+ '06f1751777e0772c18c3fa4fbae91aa5'
  '93dbf73af819b77f03453a9c6de2bb47')
 
 _kernelname=${pkgbase#linux}
@@ -86,6 +88,9 @@
   # Fix i8042 aliases
   

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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:10:50
  Author: bpiotrowski
Revision: 207135

upgpkg: nvidia-lts 334.21-3

rebuild against linux-lts 3.10.33

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-07 14:06:45 UTC (rev 207134)
+++ PKGBUILD2014-03-07 14:10:50 UTC (rev 207135)
@@ -4,7 +4,7 @@
 pkgname=nvidia-lts
 pkgver=334.21
 _extramodules=extramodules-3.10-lts
-pkgrel=2
+pkgrel=3
 pkgdesc=NVIDIA drivers for linux-lts
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;



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

2014-03-07 Thread Bartłomiej Piotrowski
Date: Friday, March 7, 2014 @ 15:10:58
  Author: bpiotrowski
Revision: 207136

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

Added:
  nvidia-lts/repos/testing-i686/
  nvidia-lts/repos/testing-i686/PKGBUILD
(from rev 207135, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-i686/nvidia-lts.install
(from rev 207135, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 207135, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install
(from rev 207135, nvidia-lts/trunk/nvidia-lts.install)

---+
 testing-i686/PKGBUILD |   48 
 testing-i686/nvidia-lts.install   |   15 +++
 testing-x86_64/PKGBUILD   |   48 
 testing-x86_64/nvidia-lts.install |   15 +++
 4 files changed, 126 insertions(+)

Copied: nvidia-lts/repos/testing-i686/PKGBUILD (from rev 207135, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-07 14:10:58 UTC (rev 207136)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=334.21
+_extramodules=extramodules-3.10-lts
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.26' nvidia-utils=$pkgver 'nvidia-libgl')
+makedepends=('linux-lts-headers=3.10.26')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('3b2736dd6ed7e24f71004bad0e55e32e'
+ 'f96b6708702830fe647a7d11832c514e')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+  cd ${_pkg}/kernel
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+
+  cd uvm
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+  install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
+  install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
+
${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia-uvm.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/*.ko
+  install -d -m755 ${pkgdir}/usr/lib/modprobe.d
+  echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+  echo blacklist nvidiafb  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+  install -D -m644 ${srcdir}/${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE
+}

Copied: nvidia-lts/repos/testing-i686/nvidia-lts.install (from rev 207135, 
nvidia-lts/trunk/nvidia-lts.install)
===
--- testing-i686/nvidia-lts.install (rev 0)
+++ testing-i686/nvidia-lts.install 2014-03-07 14:10:58 UTC (rev 207136)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 207135, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-07 14:10:58 UTC (rev 207136)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=334.21
+_extramodules=extramodules-3.10-lts
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.26' nvidia-utils=$pkgver 'nvidia-libgl')
+makedepends=('linux-lts-headers=3.10.26')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('3b2736dd6ed7e24f71004bad0e55e32e'
+ 'f96b6708702830fe647a7d11832c514e')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]