[arch-commits] Commit in nvidia/trunk (3 files)

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:03:37
  Author: tpowa
Revision: 273564

upgpkg: nvidia 367.35-2

rebuild for 4.7 series

Added:
  nvidia/trunk/0001-linux-4.7-i686.patch
  nvidia/trunk/0001-linux-4.7-x86_64.patch
Modified:
  nvidia/trunk/PKGBUILD

-+
 0001-linux-4.7-i686.patch   |   46 ++
 0001-linux-4.7-x86_64.patch |   64 ++
 PKGBUILD|   16 +-
 3 files changed, 119 insertions(+), 7 deletions(-)

Added: 0001-linux-4.7-i686.patch
===
--- 0001-linux-4.7-i686.patch   (rev 0)
+++ 0001-linux-4.7-i686.patch   2016-08-10 07:03:37 UTC (rev 273564)
@@ -0,0 +1,46 @@
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c 
nvidia-367.35/nvidia-drm/nvidia-drm-fb.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c  2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-fb.c   2016-08-06 00:38:00.550651165 
+0200
+@@ -31,6 +31,7 @@
+ #include "nvidia-drm-gem.h"
+ 
+ #include 
++#include 
+ 
+ static void nvidia_framebuffer_destroy(struct drm_framebuffer *fb)
+ {
+@@ -114,7 +115,11 @@
+  * We don't support any planar format, pick up first buffer only.
+  */
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, cmd->handles[0]);
++#else
+ gem = drm_gem_object_lookup(dev, file, cmd->handles[0]);
++#endif
+ 
+ if (gem == NULL)
+ {
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 
nvidia-367.35/nvidia-drm/nvidia-drm-gem.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-gem.c  2016-08-06 00:37:47.237546102 
+0200
+@@ -27,6 +27,7 @@
+ #include "nvidia-drm-priv.h"
+ #include "nvidia-drm-ioctl.h"
+ #include "nvidia-drm-gem.h"
++#include 
+ 
+ static struct nvidia_drm_gem_object *nvidia_drm_gem_new
+ (
+@@ -408,7 +409,11 @@
+ 
+ mutex_lock(&dev->struct_mutex);
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, handle);
++#else
+ gem = drm_gem_object_lookup(dev, file, handle);
++#endif
+ 
+ if (gem == NULL)
+ {

Added: 0001-linux-4.7-x86_64.patch
===
--- 0001-linux-4.7-x86_64.patch (rev 0)
+++ 0001-linux-4.7-x86_64.patch 2016-08-10 07:03:37 UTC (rev 273564)
@@ -0,0 +1,64 @@
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c 
nvidia-367.35/nvidia-drm/nvidia-drm-fb.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c  2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-fb.c   2016-08-06 00:38:00.550651165 
+0200
+@@ -31,6 +31,7 @@
+ #include "nvidia-drm-gem.h"
+ 
+ #include 
++#include 
+ 
+ static void nvidia_framebuffer_destroy(struct drm_framebuffer *fb)
+ {
+@@ -114,7 +115,11 @@
+  * We don't support any planar format, pick up first buffer only.
+  */
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, cmd->handles[0]);
++#else
+ gem = drm_gem_object_lookup(dev, file, cmd->handles[0]);
++#endif
+ 
+ if (gem == NULL)
+ {
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 
nvidia-367.35/nvidia-drm/nvidia-drm-gem.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-gem.c  2016-08-06 00:37:47.237546102 
+0200
+@@ -27,6 +27,7 @@
+ #include "nvidia-drm-priv.h"
+ #include "nvidia-drm-ioctl.h"
+ #include "nvidia-drm-gem.h"
++#include 
+ 
+ static struct nvidia_drm_gem_object *nvidia_drm_gem_new
+ (
+@@ -408,7 +409,11 @@
+ 
+ mutex_lock(&dev->struct_mutex);
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, handle);
++#else
+ gem = drm_gem_object_lookup(dev, file, handle);
++#endif
+ 
+ if (gem == NULL)
+ {
+diff -u -r nvidia-367.35-orig/nvidia-uvm/uvm_linux.h 
nvidia-367.35/nvidia-uvm/uvm_linux.h
+--- nvidia-367.35-orig/nvidia-uvm/uvm_linux.h  2016-07-15 18:58:50.0 
+0200
 nvidia-367.35/nvidia-uvm/uvm_linux.h   2016-08-06 00:27:09.796678527 
+0200
+@@ -554,12 +554,13 @@
+ INIT_RADIX_TREE(tree, GFP_NOWAIT);
+ }
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,7,0)
+ static bool radix_tree_empty(struct radix_tree_root *tree)
+ {
+ void *dummy;
+ return radix_tree_gang_lookup(tree, &dummy, 0, 1) == 0;
+ }
+-
++#endif
+ 
+ #if !defined(NV_USLEEP_RANGE_PRESENT)
+ static void __sched usleep_range(unsigned long min, unsigned long max)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 00:00:19 UTC (rev 273563)
+++ PKGBUILD2016-08-10 07:03:37 UTC (rev 273564)
@@ -14,12 +14,14 @@
 makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.7' 'linux

[arch-commits] Commit in nvidia/trunk (linux-4.7.patch)

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:04:30
  Author: tpowa
Revision: 273565

upgpkg: nvidia 367.35-2

rebuild for 4.7 series

Deleted:
  nvidia/trunk/linux-4.7.patch

-+
 linux-4.7.patch |   64 --
 1 file changed, 64 deletions(-)

Deleted: linux-4.7.patch
===
--- linux-4.7.patch 2016-08-10 07:03:37 UTC (rev 273564)
+++ linux-4.7.patch 2016-08-10 07:04:30 UTC (rev 273565)
@@ -1,64 +0,0 @@
-diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c 
nvidia-367.35/nvidia-drm/nvidia-drm-fb.c
 nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c  2016-07-15 
18:58:50.0 +0200
-+++ nvidia-367.35/nvidia-drm/nvidia-drm-fb.c   2016-08-06 00:38:00.550651165 
+0200
-@@ -31,6 +31,7 @@
- #include "nvidia-drm-gem.h"
- 
- #include 
-+#include 
- 
- static void nvidia_framebuffer_destroy(struct drm_framebuffer *fb)
- {
-@@ -114,7 +115,11 @@
-  * We don't support any planar format, pick up first buffer only.
-  */
- 
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
-+gem = drm_gem_object_lookup(file, cmd->handles[0]);
-+#else
- gem = drm_gem_object_lookup(dev, file, cmd->handles[0]);
-+#endif
- 
- if (gem == NULL)
- {
-diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 
nvidia-367.35/nvidia-drm/nvidia-drm-gem.c
 nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 2016-07-15 
18:58:50.0 +0200
-+++ nvidia-367.35/nvidia-drm/nvidia-drm-gem.c  2016-08-06 00:37:47.237546102 
+0200
-@@ -27,6 +27,7 @@
- #include "nvidia-drm-priv.h"
- #include "nvidia-drm-ioctl.h"
- #include "nvidia-drm-gem.h"
-+#include 
- 
- static struct nvidia_drm_gem_object *nvidia_drm_gem_new
- (
-@@ -408,7 +409,11 @@
- 
- mutex_lock(&dev->struct_mutex);
- 
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
-+gem = drm_gem_object_lookup(file, handle);
-+#else
- gem = drm_gem_object_lookup(dev, file, handle);
-+#endif
- 
- if (gem == NULL)
- {
-diff -u -r nvidia-367.35-orig/nvidia-uvm/uvm_linux.h 
nvidia-367.35/nvidia-uvm/uvm_linux.h
 nvidia-367.35-orig/nvidia-uvm/uvm_linux.h  2016-07-15 18:58:50.0 
+0200
-+++ nvidia-367.35/nvidia-uvm/uvm_linux.h   2016-08-06 00:27:09.796678527 
+0200
-@@ -554,12 +554,13 @@
- INIT_RADIX_TREE(tree, GFP_NOWAIT);
- }
- 
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(4,7,0)
- static bool radix_tree_empty(struct radix_tree_root *tree)
- {
- void *dummy;
- return radix_tree_gang_lookup(tree, &dummy, 0, 1) == 0;
- }
--
-+#endif
- 
- #if !defined(NV_USLEEP_RANGE_PRESENT)
- static void __sched usleep_range(unsigned long min, unsigned long max)


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:04:41
  Author: tpowa
Revision: 273566

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

Added:
  nvidia/repos/testing-i686/
  nvidia/repos/testing-i686/0001-linux-4.7-i686.patch
(from rev 273565, nvidia/trunk/0001-linux-4.7-i686.patch)
  nvidia/repos/testing-i686/0001-linux-4.7-x86_64.patch
(from rev 273565, nvidia/trunk/0001-linux-4.7-x86_64.patch)
  nvidia/repos/testing-i686/PKGBUILD
(from rev 273565, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia.install
(from rev 273565, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/0001-linux-4.7-i686.patch
(from rev 273565, nvidia/trunk/0001-linux-4.7-i686.patch)
  nvidia/repos/testing-x86_64/0001-linux-4.7-x86_64.patch
(from rev 273565, nvidia/trunk/0001-linux-4.7-x86_64.patch)
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 273565, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 273565, nvidia/trunk/nvidia.install)

+
 testing-i686/0001-linux-4.7-i686.patch |   46 +
 testing-i686/0001-linux-4.7-x86_64.patch   |   64 +++
 testing-i686/PKGBUILD  |   89 +++
 testing-i686/nvidia.install|   13 +++
 testing-x86_64/0001-linux-4.7-i686.patch   |   46 +
 testing-x86_64/0001-linux-4.7-x86_64.patch |   64 +++
 testing-x86_64/PKGBUILD|   89 +++
 testing-x86_64/nvidia.install  |   13 +++
 8 files changed, 424 insertions(+)

Copied: nvidia/repos/testing-i686/0001-linux-4.7-i686.patch (from rev 273565, 
nvidia/trunk/0001-linux-4.7-i686.patch)
===
--- testing-i686/0001-linux-4.7-i686.patch  (rev 0)
+++ testing-i686/0001-linux-4.7-i686.patch  2016-08-10 07:04:41 UTC (rev 
273566)
@@ -0,0 +1,46 @@
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c 
nvidia-367.35/nvidia-drm/nvidia-drm-fb.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c  2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-fb.c   2016-08-06 00:38:00.550651165 
+0200
+@@ -31,6 +31,7 @@
+ #include "nvidia-drm-gem.h"
+ 
+ #include 
++#include 
+ 
+ static void nvidia_framebuffer_destroy(struct drm_framebuffer *fb)
+ {
+@@ -114,7 +115,11 @@
+  * We don't support any planar format, pick up first buffer only.
+  */
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, cmd->handles[0]);
++#else
+ gem = drm_gem_object_lookup(dev, file, cmd->handles[0]);
++#endif
+ 
+ if (gem == NULL)
+ {
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 
nvidia-367.35/nvidia-drm/nvidia-drm-gem.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-gem.c  2016-08-06 00:37:47.237546102 
+0200
+@@ -27,6 +27,7 @@
+ #include "nvidia-drm-priv.h"
+ #include "nvidia-drm-ioctl.h"
+ #include "nvidia-drm-gem.h"
++#include 
+ 
+ static struct nvidia_drm_gem_object *nvidia_drm_gem_new
+ (
+@@ -408,7 +409,11 @@
+ 
+ mutex_lock(&dev->struct_mutex);
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, handle);
++#else
+ gem = drm_gem_object_lookup(dev, file, handle);
++#endif
+ 
+ if (gem == NULL)
+ {

Copied: nvidia/repos/testing-i686/0001-linux-4.7-x86_64.patch (from rev 273565, 
nvidia/trunk/0001-linux-4.7-x86_64.patch)
===
--- testing-i686/0001-linux-4.7-x86_64.patch(rev 0)
+++ testing-i686/0001-linux-4.7-x86_64.patch2016-08-10 07:04:41 UTC (rev 
273566)
@@ -0,0 +1,64 @@
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c 
nvidia-367.35/nvidia-drm/nvidia-drm-fb.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-fb.c  2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-fb.c   2016-08-06 00:38:00.550651165 
+0200
+@@ -31,6 +31,7 @@
+ #include "nvidia-drm-gem.h"
+ 
+ #include 
++#include 
+ 
+ static void nvidia_framebuffer_destroy(struct drm_framebuffer *fb)
+ {
+@@ -114,7 +115,11 @@
+  * We don't support any planar format, pick up first buffer only.
+  */
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,7,0)
++gem = drm_gem_object_lookup(file, cmd->handles[0]);
++#else
+ gem = drm_gem_object_lookup(dev, file, cmd->handles[0]);
++#endif
+ 
+ if (gem == NULL)
+ {
+diff -u -r nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 
nvidia-367.35/nvidia-drm/nvidia-drm-gem.c
+--- nvidia-367.35-orig/nvidia-drm/nvidia-drm-gem.c 2016-07-15 
18:58:50.0 +0200
 nvidia-367.35/nvidia-drm/nvidia-drm-gem.c  2016-08-06 00:37:47.237546102 
+0200
+@@ -27,6 +27,7 @@
+ #include "nvidia-drm-priv.h"
+ #in

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:13:21
  Author: tpowa
Revision: 273568

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

Added:
  nvidia-340xx/repos/testing-i686/
  nvidia-340xx/repos/testing-i686/PKGBUILD
(from rev 273567, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-i686/nvidia-340xx.install
(from rev 273567, nvidia-340xx/trunk/nvidia-340xx.install)
  nvidia-340xx/repos/testing-x86_64/
  nvidia-340xx/repos/testing-x86_64/PKGBUILD
(from rev 273567, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-x86_64/nvidia-340xx.install
(from rev 273567, nvidia-340xx/trunk/nvidia-340xx.install)

-+
 testing-i686/PKGBUILD   |   71 ++
 testing-i686/nvidia-340xx.install   |   13 ++
 testing-x86_64/PKGBUILD |   71 ++
 testing-x86_64/nvidia-340xx.install |   13 ++
 4 files changed, 168 insertions(+)

Copied: nvidia-340xx/repos/testing-i686/PKGBUILD (from rev 273567, 
nvidia-340xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-10 07:13:21 UTC (rev 273568)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.96
+_extramodules=extramodules-4.7-ARCH
+pkgrel=14
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.7' 'linux-headers<4.8')
+conflicts=('nvidia')
+license=('custom')
+options=(!strip)
+source=('linux-4.6.patch')
+source_i686+=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
+source_x86_64+=("ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+md5sums=('1f2baa65fd351ae7a2fc3dfd71ffcbfe')
+md5sums_i686=('cb64b165b638671bcdc75bcf297b8d90')
+md5sums_x86_64=('7bdbcee13bade63227933d9217571882')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+patch -p1 --no-backup-if-mismatch -i ../linux-4.6.patch
+
+cp -a kernel kernel-dkms
+}
+
+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_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.7' 'linux<4.8' 'libgl' "nvidia-340xx-utils=${pkgver}")
+conflict+=('nvidia-340xx-dkms')
+install=nvidia-340xx.install
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+}

Copied: nvidia-340xx/repos/testing-i686/nvidia-340xx.install (from rev 273567, 
nvidia-340xx/trunk/nvidia-340xx.install)
===
--- testing-i686/nvidia-340xx.install   (rev 0)
+++ testing-i686/nvidia-340xx.install   2016-08-10 07:13:21 UTC (rev 273568)
@@ -0,0 +1,13 @@
+post_install() {
+EXTRAMODULES='extramodules-4.7-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: nvidia-340xx/repos/testing-x86_64/PKGBUILD (from rev 273567, 
nvidia-340xx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-10 07:13:

[arch-commits] Commit in nvidia-340xx/trunk (3 files)

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:13:12
  Author: tpowa
Revision: 273567

upgpkg: nvidia-340xx 340.96-14

rebuild for 4.7 series

Modified:
  nvidia-340xx/trunk/PKGBUILD
  nvidia-340xx/trunk/nvidia-340xx.install
Deleted:
  nvidia-340xx/trunk/linux-4.6.patch

--+
 PKGBUILD |8 +-
 linux-4.6.patch  |  150 -
 nvidia-340xx.install |2 
 3 files changed, 5 insertions(+), 155 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 07:04:41 UTC (rev 273566)
+++ PKGBUILD2016-08-10 07:13:12 UTC (rev 273567)
@@ -5,11 +5,11 @@
 pkgbase=nvidia-340xx
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.96
-_extramodules=extramodules-4.6-ARCH
-pkgrel=13
+_extramodules=extramodules-4.7-ARCH
+pkgrel=14
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.6' 'linux-headers<4.7')
+makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.7' 'linux-headers<4.8')
 conflicts=('nvidia')
 license=('custom')
 options=(!strip)
@@ -43,7 +43,7 @@
 
 package_nvidia-340xx() {
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
-depends=('linux>=4.6' 'linux<4.7' 'libgl' "nvidia-340xx-utils=${pkgver}")
+depends=('linux>=4.7' 'linux<4.8' 'libgl' "nvidia-340xx-utils=${pkgver}")
 conflict+=('nvidia-340xx-dkms')
 install=nvidia-340xx.install
 

Deleted: linux-4.6.patch
===
--- linux-4.6.patch 2016-08-10 07:04:41 UTC (rev 273566)
+++ linux-4.6.patch 2016-08-10 07:13:12 UTC (rev 273567)
@@ -1,150 +0,0 @@
 /dev/null
-+++ b/kernel/nv-mm.h
-@@ -0,0 +1,55 @@
-+/***
-+Copyright (c) 2016 NVIDIA Corporation
-+
-+Permission is hereby granted, free of charge, to any person obtaining a 
copy
-+of this software and associated documentation files (the "Software"), to
-+deal in the Software without restriction, including without limitation the
-+rights to use, copy, modify, merge, publish, distribute, sublicense, 
and/or
-+sell copies of the Software, and to permit persons to whom the Software is
-+furnished to do so, subject to the following conditions:
-+
-+The above copyright notice and this permission notice shall be
-+included in all copies or substantial portions of the Software.
-+
-+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-+DEALINGS IN THE SOFTWARE.
-+
-+***/
-+#ifndef __NV_MM_H__
-+#define __NV_MM_H__
-+
-+/*  get_user_pages_remote() was added by:
-+ *2016 Feb 12: 1e9877902dc7e11d2be038371c6fbf2dfcd469d7
-+ *
-+ *  The very next commit (cde70140fed8429acf7a14e2e2cbd3e329036653)
-+ *  deprecated the 8-argument version of get_user_pages for the
-+ *  non-remote case (calling get_user_pages with current and current->mm).
-+ *
-+ *  The guidelines are: call NV_GET_USER_PAGES_REMOTE if you need the 
8-argument
-+ *  version that uses something other than current and current->mm. Use
-+ *  NV_GET_USER_PAGES if you are refering to current and current->mm.
-+ *
-+*  Note that get_user_pages_remote() requires the caller to hold a reference 
on
-+*  the task_struct (if non-NULL) and the mm_struct. This will always be true
-+*  when using current and current->mm. If the kernel passes the driver a vma
-+*  via driver callback, the kernel holds a reference on vma->vm_mm over that
-+*  callback.
-+ */
-+
-+#if defined(NV_GET_USER_PAGES_REMOTE_PRESENT)
-+#define NV_GET_USER_PAGES   get_user_pages
-+#define NV_GET_USER_PAGES_REMOTEget_user_pages_remote
-+#else
-+#define NV_GET_USER_PAGES(start, nr_pages, write, force, pages, vmas) \
-+get_user_pages(current, current->mm, start, nr_pages, write, force, 
pages, vmas)
-+
-+#define NV_GET_USER_PAGES_REMOTEget_user_pages
-+#endif
-+
-+
-+#endif // __NV_MM_H__
 a/kernel/os-mlock.c
-+++ b/kernel/os-mlock.c
-@@ -13,6 +13,7 @@
- 
- #include "os-interface.h"
- #include "nv-linux.h"
-+#include "nv-mm.h"
- 
- RM_STATUS NV_API_CALL os_lock_user_pages(
- void   *address,
-@@ -45,7 +46,7 @@ RM_STATUS NV_API_CALL os_lock_user_pages(
- }
- 
- down_read(&mm->mmap_sem);
--ret = get_user_pages(current, mm, (unsigned long)address,
-+   

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:18:02
  Author: tpowa
Revision: 273569

upgpkg: nvidia-304xx 304.131-14

rebuild for 4.7 series

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 07:13:21 UTC (rev 273568)
+++ PKGBUILD2016-08-10 07:18:02 UTC (rev 273569)
@@ -5,11 +5,11 @@
 pkgbase=nvidia-304xx
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.131
-_extramodules=extramodules-4.6-ARCH
+_extramodules=extramodules-4.7-ARCH
 pkgrel=14
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.6' 'linux-headers<4.7')
+makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.7' 'linux-headers<4.8')
 conflicts=('nvidia')
 license=('custom')
 options=('!strip')
@@ -46,7 +46,7 @@
 
 package_nvidia-304xx() {
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
-depends=('linux>=4.6' 'linux<4.7' 'libgl' "nvidia-304xx-utils=${pkgver}")
+depends=('linux>=4.7' 'linux<4.8' 'libgl' "nvidia-304xx-utils=${pkgver}")
conflicts+=('nvidia-304xx-dkms')
 install=nvidia-304xx.install
 

Modified: nvidia-304xx.install
===
--- nvidia-304xx.install2016-08-10 07:13:21 UTC (rev 273568)
+++ nvidia-304xx.install2016-08-10 07:18:02 UTC (rev 273569)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.6-ARCH'
+EXTRAMODULES='extramodules-4.7-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 07:18:13
  Author: tpowa
Revision: 273570

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

Added:
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 273569, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/disable-mtrr.patch
(from rev 273569, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/testing-i686/linux-4.6.patch
(from rev 273569, nvidia-304xx/trunk/linux-4.6.patch)
  nvidia-304xx/repos/testing-i686/nvidia-304xx.install
(from rev 273569, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/testing-x86_64/
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 273569, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/disable-mtrr.patch
(from rev 273569, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/testing-x86_64/linux-4.6.patch
(from rev 273569, nvidia-304xx/trunk/linux-4.6.patch)
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install
(from rev 273569, nvidia-304xx/trunk/nvidia-304xx.install)

-+
 testing-i686/PKGBUILD   |   75 +
 testing-i686/disable-mtrr.patch |   24 +
 testing-i686/linux-4.6.patch|  144 ++
 testing-i686/nvidia-304xx.install   |   13 +++
 testing-x86_64/PKGBUILD |   75 +
 testing-x86_64/disable-mtrr.patch   |   24 +
 testing-x86_64/linux-4.6.patch  |  144 ++
 testing-x86_64/nvidia-304xx.install |   13 +++
 8 files changed, 512 insertions(+)

Copied: nvidia-304xx/repos/testing-i686/PKGBUILD (from rev 273569, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-10 07:18:13 UTC (rev 273570)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
+pkgver=304.131
+_extramodules=extramodules-4.7-ARCH
+pkgrel=14
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.7' 'linux-headers<4.8')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=('disable-mtrr.patch' 'linux-4.6.patch')
+source_i686+=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
+source_x86_64+=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+sha512sums=('54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774'
+
'a240e354fcc8ad69982206b4291dfe0fa3660b410d0ffa7903c4fcdb2397254293bfa3160874f89327cfca85d78385260072008091990bc6640ea047e55c53ab')
+sha512sums_i686=('3e67c40648554dc49472081eee88ae982c3b235b3346e4d9e7fb5ae33ec5f10ed088da804ac7d8bd1565995df3861f12b3560030cd3a19339a2d35768b0a943e')
+sha512sums_x86_64=('07e529e4e81c42b43861475029aa0f223f8f3d299be9ddfe820c583e26aae49223a9b0dfee6d66ab09c526554bb581e5f8cf755eda600cb9e0bdac7d5f4acb93')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+# FS#47092
+(cd kernel; patch -p1 --no-backup-if-mismatch -i 
"$srcdir"/disable-mtrr.patch)
+
+patch -p1 --no-backup-if-mismatch -i ../linux-4.6.patch
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-304xx() {
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+depends=('linux>=4.7' 'linux<4.8' 'libgl' "nvidia-304xx-utils=${pkgver}")
+   conflicts+=('nvidia-304xx-dkms')
+install=nvidia-304xx.install
+
+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}/${pkgname}.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.
+}
+
+package_nvidia-304xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 304xx legacy branch"
+depends=('dkms' "nvidia-304xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+   conflicts+=('

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

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 07:30:08
  Author: heftig
Revision: 273571

2016.8-1

Modified:
  ostree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 07:18:13 UTC (rev 273570)
+++ PKGBUILD2016-08-10 07:30:08 UTC (rev 273571)
@@ -3,7 +3,7 @@
 # Contributor: Mirco Tischler 
 
 pkgname=ostree
-pkgver=2016.7
+pkgver=2016.8
 pkgrel=1
 pkgdesc="Git for operating system binaries"
 url="https://ostree.readthedocs.org/en/latest/";


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

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 07:31:08
  Author: heftig
Revision: 273572

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-10 07:30:08 UTC (rev 273571)
+++ extra-i686/PKGBUILD 2016-08-10 07:31:08 UTC (rev 273572)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=2016.7
-pkgrel=1
-pkgdesc="Git for operating system binaries"
-url="https://ostree.readthedocs.org/en/latest/";
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2 libgsystem xz zlib libsoup gpgme libarchive fuse util-linux
- mkinitcpio)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
- python2)
-checkdepends=(parallel syslinux gjs)
-source=("git+https://github.com/ostreedev/ostree#tag=v$pkgver";
-"git+https://git.gnome.org/browse/libglnx";
-"git+https://github.com/mendsley/bsdiff";)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
-  git submodule update
-
-  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---with-mkinitcpio \
---with-builtin-grub2-mkconfig \
---disable-static \
---enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # GPG is broken in build chroots ATM
-  #make -k check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: ostree/repos/extra-i686/PKGBUILD (from rev 273571, 
ostree/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-08-10 07:31:08 UTC (rev 273572)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mirco Tischler 
+
+pkgname=ostree
+pkgver=2016.8
+pkgrel=1
+pkgdesc="Git for operating system binaries"
+url="https://ostree.readthedocs.org/en/latest/";
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glib2 libgsystem xz zlib libsoup gpgme libarchive fuse util-linux
+ mkinitcpio)
+makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
+ python2)
+checkdepends=(parallel syslinux gjs)
+source=("git+https://github.com/ostreedev/ostree#tag=v$pkgver";
+"git+https://git.gnome.org/browse/libglnx";
+"git+https://github.com/mendsley/bsdiff";)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
+  git submodule update
+
+  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-mkinitcpio \
+--with-builtin-grub2-mkconfig \
+--disable-static \
+--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # GPG is broken in build chroots ATM
+  #make -k check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-08-10 07:30:08 UTC (rev 273571)
+++ extra-x86_64/PKGBUILD   2016-08-10 07:31:08 UTC (rev 273572)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=2016.7
-pkgrel=1
-pkgdesc="Git for operating system binaries"
-url="https://ostree.readthedocs.org/en/latest/";
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2 libgsystem xz zlib libsoup gpgme libarchive fuse util-linux
- mkinitcpio)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
- python2)
-checkdepends=(parallel syslinux gjs)
-s

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 08:11:20
  Author: tpowa
Revision: 186293

upgpkg: acpi_call 1.1.0-48

rebuild against 4.7 series

Modified:
  acpi_call/trunk/PKGBUILD
  acpi_call/trunk/acpi_call.install

---+
 PKGBUILD  |8 
 acpi_call.install |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 06:48:34 UTC (rev 186292)
+++ PKGBUILD2016-08-10 08:11:20 UTC (rev 186293)
@@ -5,14 +5,14 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=47
-_extramodules=extramodules-4.6-ARCH
+pkgrel=48
+_extramodules=extramodules-4.7-ARCH
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')
 url='http://github.com/mkottman/acpi_call'
 license=('GPL')
-depends=('linux>=4.6' 'linux<4.7')
-makedepends=('linux-headers>=4.6' 'linux-headers<4.7')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
 install='acpi_call.install'
 
source=("$pkgname-$pkgver.tar.gz::http://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz";)
 sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')

Modified: acpi_call.install
===
--- acpi_call.install   2016-08-10 06:48:34 UTC (rev 186292)
+++ acpi_call.install   2016-08-10 08:11:20 UTC (rev 186293)
@@ -1,5 +1,5 @@
 post_install() {
-  _extramodules=extramodules-4.6-ARCH
+  _extramodules=extramodules-4.7-ARCH
   depmod $(cat /usr/lib/modules/${_extramodules}/version)
 }
 


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 08:11:30
  Author: tpowa
Revision: 186294

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

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

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

Copied: acpi_call/repos/community-testing-i686/PKGBUILD (from rev 186293, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-08-10 08:11:30 UTC (rev 186294)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=48
+_extramodules=extramodules-4.7-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='http://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
+install='acpi_call.install'
+source=("$pkgname-$pkgver.tar.gz::http://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz";)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
+  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/acpi_call
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-i686/acpi_call.install (from rev 
186293, acpi_call/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2016-08-10 08:11:30 UTC (rev 
186294)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-4.7-ARCH
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 186293, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-08-10 08:11:30 UTC (rev 186294)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=48
+_extramodules=extramodules-4.7-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='http://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
+install='acpi_call.install'
+source=("$pkgname-$pkgver.tar.gz::http://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz";)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
+  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 08:13:54
  Author: tpowa
Revision: 186296

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

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

---+
 community-testing-i686/PKGBUILD   |   45 
 community-testing-i686/bbswitch.install   |   12 +++
 community-testing-x86_64/PKGBUILD |   45 
 community-testing-x86_64/bbswitch.install |   12 +++
 4 files changed, 114 insertions(+)

Copied: bbswitch/repos/community-testing-i686/PKGBUILD (from rev 186295, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-08-10 08:13:54 UTC (rev 186296)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+_extramodules=extramodules-4.7-ARCH # Don't forget to update bbswitch.install
+pkgrel=50
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch";
+license=('GPL')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8' 'linux>=4.7' 'linux<4.8')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  depends=('linux>=4.6' 'linux<4.7')
+  install=bbswitch.install
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+
+  install -Dm644 Makefile bbswitch.c dkms/dkms.conf 
"${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+}

Copied: bbswitch/repos/community-testing-i686/bbswitch.install (from rev 
186295, bbswitch/trunk/bbswitch.install)
===
--- community-testing-i686/bbswitch.install (rev 0)
+++ community-testing-i686/bbswitch.install 2016-08-10 08:13:54 UTC (rev 
186296)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-4.7-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 186295, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-08-10 08:13:54 UTC (rev 186296)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+_extramodules=extramodules-4.7-ARCH # Don't forget to update bbswitch.install
+pkgrel=50
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch";
+license=('GPL')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8' 'linux>=4.7' 'linux<4.8')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  depends=('linux>=4.6' 'linux<4.7')
+  install=bbswitch.install
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+
+  install -Dm644 Makefile bbswitch.c dkms/

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 08:13:47
  Author: tpowa
Revision: 186295

upgpkg: bbswitch 0.8-50

rebuild against 4.7 series

Modified:
  bbswitch/trunk/PKGBUILD
  bbswitch/trunk/bbswitch.install

--+
 PKGBUILD |4 ++--
 bbswitch.install |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 08:11:30 UTC (rev 186294)
+++ PKGBUILD2016-08-10 08:13:47 UTC (rev 186295)
@@ -6,13 +6,13 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-_extramodules=extramodules-4.6-ARCH # Don't forget to update bbswitch.install
+_extramodules=extramodules-4.7-ARCH # Don't forget to update bbswitch.install
 pkgrel=50
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('i686' 'x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch";
 license=('GPL')
-makedepends=('linux-headers>=4.6' 'linux-headers<4.7' 'linux>=4.6' 'linux<4.7')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8' 'linux>=4.7' 'linux<4.8')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
 md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
 

Modified: bbswitch.install
===
--- bbswitch.install2016-08-10 08:11:30 UTC (rev 186294)
+++ bbswitch.install2016-08-10 08:13:47 UTC (rev 186295)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.6-ARCH'
+EXTRAMODULES='extramodules-4.7-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2016-08-10 Thread Guillaume Alaux
Date: Wednesday, August 10, 2016 @ 08:52:20
  Author: guillaume
Revision: 273573

Upstream release 1.2.8

Modified:
  tomcat-native/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 07:31:08 UTC (rev 273572)
+++ PKGBUILD2016-08-10 08:52:20 UTC (rev 273573)
@@ -2,8 +2,8 @@
 # Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
 
 pkgname=tomcat-native
-pkgver=1.1.33
-pkgrel=2
+pkgver=1.2.8
+pkgrel=1
 pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
 arch=('i686' 'x86_64')
 url='http://tomcat.apache.org/native-doc/'
@@ -12,10 +12,10 @@
 makedepends=('java-environment')
 options=('!emptydirs')
 
source=(https://archive.apache.org/dist/tomcat/tomcat-connectors/native/${pkgver}/source/${pkgname}-${pkgver}-src.tar.gz)
-sha256sums=('523dde7393c57307eedf4972ebbe19a9e9af6f7699e3b1ef6dabd7a11677866e')
+sha256sums=('408ece0b027c8967b3aa85533c5fca642827e235b1857d28df918a4eab861d30')
 
 build() {
-  cd "${srcdir}/tomcat-native-${pkgver}-src/jni/native"
+  cd "${srcdir}/tomcat-native-${pkgver}-src/native"
 
   ./configure \
 --prefix=/usr \
@@ -26,7 +26,7 @@
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}-src/jni/native"
+  cd "${srcdir}/${pkgname}-${pkgver}-src/native"
 
   make DESTDIR="${pkgdir}" install
 }


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

2016-08-10 Thread Guillaume Alaux
Date: Wednesday, August 10, 2016 @ 08:53:43
  Author: guillaume
Revision: 273574

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

Added:
  tomcat-native/repos/extra-i686/PKGBUILD
(from rev 273573, tomcat-native/trunk/PKGBUILD)
  tomcat-native/repos/extra-x86_64/PKGBUILD
(from rev 273573, tomcat-native/trunk/PKGBUILD)
Deleted:
  tomcat-native/repos/extra-i686/PKGBUILD
  tomcat-native/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-10 08:52:20 UTC (rev 273573)
+++ extra-i686/PKGBUILD 2016-08-10 08:53:43 UTC (rev 273574)
@@ -1,32 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-
-pkgname=tomcat-native
-pkgver=1.1.33
-pkgrel=2
-pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
-arch=('i686' 'x86_64')
-url='http://tomcat.apache.org/native-doc/'
-license=('APACHE')
-depends=('apr')
-makedepends=('java-environment')
-options=('!emptydirs')
-source=(https://archive.apache.org/dist/tomcat/tomcat-connectors/native/${pkgver}/source/${pkgname}-${pkgver}-src.tar.gz)
-sha256sums=('523dde7393c57307eedf4972ebbe19a9e9af6f7699e3b1ef6dabd7a11677866e')
-
-build() {
-  cd "${srcdir}/tomcat-native-${pkgver}-src/jni/native"
-
-  ./configure \
---prefix=/usr \
---with-java-home=/usr/lib/jvm/default \
---with-apr=/usr \
---with-ssl=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}-src/jni/native"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: tomcat-native/repos/extra-i686/PKGBUILD (from rev 273573, 
tomcat-native/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-08-10 08:53:43 UTC (rev 273574)
@@ -0,0 +1,32 @@
+# Maintainer: Guillaume ALAUX 
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+
+pkgname=tomcat-native
+pkgver=1.2.8
+pkgrel=1
+pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
+arch=('i686' 'x86_64')
+url='http://tomcat.apache.org/native-doc/'
+license=('APACHE')
+depends=('apr')
+makedepends=('java-environment')
+options=('!emptydirs')
+source=(https://archive.apache.org/dist/tomcat/tomcat-connectors/native/${pkgver}/source/${pkgname}-${pkgver}-src.tar.gz)
+sha256sums=('408ece0b027c8967b3aa85533c5fca642827e235b1857d28df918a4eab861d30')
+
+build() {
+  cd "${srcdir}/tomcat-native-${pkgver}-src/native"
+
+  ./configure \
+--prefix=/usr \
+--with-java-home=/usr/lib/jvm/default \
+--with-apr=/usr \
+--with-ssl=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}-src/native"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-08-10 08:52:20 UTC (rev 273573)
+++ extra-x86_64/PKGBUILD   2016-08-10 08:53:43 UTC (rev 273574)
@@ -1,32 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-
-pkgname=tomcat-native
-pkgver=1.1.33
-pkgrel=2
-pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
-arch=('i686' 'x86_64')
-url='http://tomcat.apache.org/native-doc/'
-license=('APACHE')
-depends=('apr')
-makedepends=('java-environment')
-options=('!emptydirs')
-source=(https://archive.apache.org/dist/tomcat/tomcat-connectors/native/${pkgver}/source/${pkgname}-${pkgver}-src.tar.gz)
-sha256sums=('523dde7393c57307eedf4972ebbe19a9e9af6f7699e3b1ef6dabd7a11677866e')
-
-build() {
-  cd "${srcdir}/tomcat-native-${pkgver}-src/jni/native"
-
-  ./configure \
---prefix=/usr \
---with-java-home=/usr/lib/jvm/default \
---with-apr=/usr \
---with-ssl=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}-src/jni/native"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: tomcat-native/repos/extra-x86_64/PKGBUILD (from rev 273573, 
tomcat-native/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-08-10 08:53:43 UTC (rev 273574)
@@ -0,0 +1,32 @@
+# Maintainer: Guillaume ALAUX 
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+
+pkgname=tomcat-native
+pkgver=1.2.8
+pkgrel=1
+pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
+arch=('i686' 'x86_64')
+url='http://tomcat.apache.org/native-doc/'
+license=('APACHE')
+depends=('apr')
+makedepends=('java-environment')
+options=('!emptydirs')
+source=(https://archive.

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

2016-08-10 Thread Jan de Groot
Date: Wednesday, August 10, 2016 @ 09:02:32
  Author: jgc
Revision: 273576

upgpkg: gsound 1.0.2-2

Add vala bindings, remove overlinking

Modified:
  gsound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:02:31 UTC (rev 273575)
+++ PKGBUILD2016-08-10 09:02:32 UTC (rev 273576)
@@ -3,14 +3,14 @@
 
 pkgname=gsound
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Small library for playing system sounds"
 url="https://wiki.gnome.org/Projects/GSound";
 license=('LGPL')
 arch=('i686' 'x86_64')
 depends=(glib2 libcanberra)
-makedepends=(gobject-introspection)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
+makedepends=(gobject-introspection vala)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
 sha256sums=('bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53')
 
 build() {
@@ -17,9 +17,7 @@
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --disable-static
 
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  #sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


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

2016-08-10 Thread Jan de Groot
Date: Wednesday, August 10, 2016 @ 09:02:38
  Author: jgc
Revision: 273577

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-10 09:02:32 UTC (rev 273576)
+++ extra-i686/PKGBUILD 2016-08-10 09:02:38 UTC (rev 273577)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 234201 2015-03-20 09:28:26Z jgc $
-# Maintainer: Jan de Groot 
-
-pkgname=gsound
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="Small library for playing system sounds"
-url="https://wiki.gnome.org/Projects/GSound";
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=(glib2 libcanberra)
-makedepends=(gobject-introspection)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  #sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gsound/repos/extra-i686/PKGBUILD (from rev 273576, 
gsound/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-08-10 09:02:38 UTC (rev 273577)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 234201 2015-03-20 09:28:26Z jgc $
+# Maintainer: Jan de Groot 
+
+pkgname=gsound
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Small library for playing system sounds"
+url="https://wiki.gnome.org/Projects/GSound";
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=(glib2 libcanberra)
+makedepends=(gobject-introspection vala)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-08-10 09:02:32 UTC (rev 273576)
+++ extra-x86_64/PKGBUILD   2016-08-10 09:02:38 UTC (rev 273577)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 234201 2015-03-20 09:28:26Z jgc $
-# Maintainer: Jan de Groot 
-
-pkgname=gsound
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="Small library for playing system sounds"
-url="https://wiki.gnome.org/Projects/GSound";
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=(glib2 libcanberra)
-makedepends=(gobject-introspection)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  #sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gsound/repos/extra-x86_64/PKGBUILD (from rev 273576, 
gsound/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-08-10 09:02:38 UTC (rev 273577)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 234201 2015-03-20 09:28:26Z jgc $
+# Maintainer: Jan de Groot 
+
+pkgname=gsound
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Small library for playing system sounds"
+url="https://wiki.gnome.org/Projects/GSound";
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=(glib2 libcanberra)
+makedepends=(gobject-introspection vala)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-08-10 Thread Guillaume Alaux
Date: Wednesday, August 10, 2016 @ 09:02:31
  Author: guillaume
Revision: 273575

Upstream release 4.5.3

Modified:
  antlr4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 08:53:43 UTC (rev 273574)
+++ PKGBUILD2016-08-10 09:02:31 UTC (rev 273575)
@@ -1,7 +1,7 @@
 # Maintainer: Guillaume ALAUX 
 pkgname=antlr4
 _shortname=${pkgname:0:-1}
-pkgver=4.5
+pkgver=4.5.3
 pkgrel=1
 pkgdesc='Parser generator for reading, processing, executing, or translating 
structured text or binary files'
 arch=('any')
@@ -14,7 +14,7 @@
 bin_antlr4
 bin_grun)
 noextract=("${_shortname}-${pkgver}-complete.jar")
-sha256sums=('4a4ebb20c3c09bf5700af78080afadec0879e425cba4695fd21a1084fc171f2c'
+sha256sums=('a32de739cfdf515774e696f91aa9697d2e7731e5cb5045ca8a4b657f8b1b4fb4'
 '0c76c37cb13f5bc59c40f4806274069b2404386854fcb4472ae1ee1a562b6ed8'
 '345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc'
 '119c85b2b6fd02538ae9a7fd53d5eab874ea56d8acc244ce174e174de21c333a')


[arch-commits] Commit in antlr4/repos/extra-any (6 files)

2016-08-10 Thread Guillaume Alaux
Date: Wednesday, August 10, 2016 @ 09:03:22
  Author: guillaume
Revision: 273578

archrelease: copy trunk to extra-any

Added:
  antlr4/repos/extra-any/PKGBUILD
(from rev 273577, antlr4/trunk/PKGBUILD)
  antlr4/repos/extra-any/bin_antlr4
(from rev 273577, antlr4/trunk/bin_antlr4)
  antlr4/repos/extra-any/bin_grun
(from rev 273577, antlr4/trunk/bin_grun)
Deleted:
  antlr4/repos/extra-any/PKGBUILD
  antlr4/repos/extra-any/bin_antlr4
  antlr4/repos/extra-any/bin_grun

+
 PKGBUILD   |   60 +--
 bin_antlr4 |4 +--
 bin_grun   |4 +--
 3 files changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 09:02:38 UTC (rev 273577)
+++ PKGBUILD2016-08-10 09:03:22 UTC (rev 273578)
@@ -1,30 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-pkgname=antlr4
-_shortname=${pkgname:0:-1}
-pkgver=4.5
-pkgrel=1
-pkgdesc='Parser generator for reading, processing, executing, or translating 
structured text or binary files'
-arch=('any')
-url='http://www.antlr.org/index.html'
-license=('BSD')
-depends=('java-environment>=6')
-provides=("antlr=${pkgver}")
-source=(http://www.antlr.org/download/${_shortname}-${pkgver}-complete.jar
-
https://raw.githubusercontent.com/${_shortname}/${pkgname}/master/LICENSE.txt
-bin_antlr4
-bin_grun)
-noextract=("${_shortname}-${pkgver}-complete.jar")
-sha256sums=('4a4ebb20c3c09bf5700af78080afadec0879e425cba4695fd21a1084fc171f2c'
-'0c76c37cb13f5bc59c40f4806274069b2404386854fcb4472ae1ee1a562b6ed8'
-'345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc'
-'119c85b2b6fd02538ae9a7fd53d5eab874ea56d8acc244ce174e174de21c333a')
-
-package() {
-  cd "${srcdir}"
-  install -D ${_shortname}-${pkgver}-complete.jar \
- "${pkgdir}"/usr/share/java/${_shortname}-${pkgver}-complete.jar
-  ln -s antlr-${pkgver}-complete.jar 
"${pkgdir}"/usr/share/java/antlr-complete.jar
-  install -D bin_antlr4 "${pkgdir}"/usr/bin/antlr4
-  install -D bin_grun   "${pkgdir}"/usr/bin/grun
-  install -D LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: antlr4/repos/extra-any/PKGBUILD (from rev 273577, antlr4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 09:03:22 UTC (rev 273578)
@@ -0,0 +1,30 @@
+# Maintainer: Guillaume ALAUX 
+pkgname=antlr4
+_shortname=${pkgname:0:-1}
+pkgver=4.5.3
+pkgrel=1
+pkgdesc='Parser generator for reading, processing, executing, or translating 
structured text or binary files'
+arch=('any')
+url='http://www.antlr.org/index.html'
+license=('BSD')
+depends=('java-environment>=6')
+provides=("antlr=${pkgver}")
+source=(http://www.antlr.org/download/${_shortname}-${pkgver}-complete.jar
+
https://raw.githubusercontent.com/${_shortname}/${pkgname}/master/LICENSE.txt
+bin_antlr4
+bin_grun)
+noextract=("${_shortname}-${pkgver}-complete.jar")
+sha256sums=('a32de739cfdf515774e696f91aa9697d2e7731e5cb5045ca8a4b657f8b1b4fb4'
+'0c76c37cb13f5bc59c40f4806274069b2404386854fcb4472ae1ee1a562b6ed8'
+'345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc'
+'119c85b2b6fd02538ae9a7fd53d5eab874ea56d8acc244ce174e174de21c333a')
+
+package() {
+  cd "${srcdir}"
+  install -D ${_shortname}-${pkgver}-complete.jar \
+ "${pkgdir}"/usr/share/java/${_shortname}-${pkgver}-complete.jar
+  ln -s antlr-${pkgver}-complete.jar 
"${pkgdir}"/usr/share/java/antlr-complete.jar
+  install -D bin_antlr4 "${pkgdir}"/usr/bin/antlr4
+  install -D bin_grun   "${pkgdir}"/usr/bin/grun
+  install -D LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}

Deleted: bin_antlr4
===
--- bin_antlr4  2016-08-10 09:02:38 UTC (rev 273577)
+++ bin_antlr4  2016-08-10 09:03:22 UTC (rev 273578)
@@ -1,2 +0,0 @@
-#!/bin/sh
-java -jar /usr/share/java/antlr-complete.jar "$@"

Copied: antlr4/repos/extra-any/bin_antlr4 (from rev 273577, 
antlr4/trunk/bin_antlr4)
===
--- bin_antlr4  (rev 0)
+++ bin_antlr4  2016-08-10 09:03:22 UTC (rev 273578)
@@ -0,0 +1,2 @@
+#!/bin/sh
+java -jar /usr/share/java/antlr-complete.jar "$@"

Deleted: bin_grun
===
--- bin_grun2016-08-10 09:02:38 UTC (rev 273577)
+++ bin_grun2016-08-10 09:03:22 UTC (rev 273578)
@@ -1,2 +0,0 @@
-#!/bin/sh
-java -cp .:/usr/share/java/antlr-complete.jar 
org.antlr.v4.runtime.misc.TestRig "$@"

Copied: antlr4/repos/extra-any/bin_grun (from rev 273577, antlr4/trunk/bin_grun)
===
--- bin_grun(rev 0)
+++ bin_grun2016-08-

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:07:54
  Author: tpowa
Revision: 186298

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

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

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

Copied: tp_smapi/repos/community-testing-i686/PKGBUILD (from rev 186297, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-08-10 09:07:54 UTC (rev 186298)
@@ -0,0 +1,53 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+_pkgname=tp-smapi
+pkgver=0.42
+_extramodules=extramodules-4.7-ARCH
+pkgrel=2
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
+install="${pkgname}.install"
+source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz";)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C "/usr/lib/modules/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/usr" \
+M="$srcdir/$pkgname-$_pkgname-$pkgver" modules_install
+
+  cd "${pkgdir}/usr/lib/modules"
+  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/usr/lib/modules/${_extramodules}|" \
+"${startdir}/${pkgname}.install"
+}

Copied: tp_smapi/repos/community-testing-i686/tp_smapi.install (from rev 
186297, tp_smapi/trunk/tp_smapi.install)
===
--- community-testing-i686/tp_smapi.install (rev 0)
+++ community-testing-i686/tp_smapi.install 2016-08-10 09:07:54 UTC (rev 
186298)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-4.7-ARCH
+
+post_install() {
+  depmod -v $(< "$extramodules/version") &>/dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 186297, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-08-10 09:07:54 UTC (rev 186298)
@@ -0,0 +1,53 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+_pkgname=tp-smapi
+pkgver=0.42
+_extramodules=extramodules-4.7-ARCH
+pkgrel=2
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
+install="${pkgname}.install"
+source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz";)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C "/usr/lib/modules/${_kernver}/build" \
+INSTALL_MOD_PATH="$

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:07:44
  Author: tpowa
Revision: 186297

upgpkg: tp_smapi 0.42-2

rebuild against 4.7 series

Modified:
  tp_smapi/trunk/PKGBUILD
  tp_smapi/trunk/tp_smapi.install

--+
 PKGBUILD |8 
 tp_smapi.install |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 08:13:54 UTC (rev 186296)
+++ PKGBUILD2016-08-10 09:07:44 UTC (rev 186297)
@@ -10,14 +10,14 @@
 pkgname=tp_smapi
 _pkgname=tp-smapi
 pkgver=0.42
-_extramodules=extramodules-4.6-ARCH
-pkgrel=1
+_extramodules=extramodules-4.7-ARCH
+pkgrel=2
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux>=4.6' 'linux<4.7')
-makedepends=('linux-headers>=4.6' 'linux-headers<4.7')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
 install="${pkgname}.install"
 source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz";)
 md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')

Modified: tp_smapi.install
===
--- tp_smapi.install2016-08-10 08:13:54 UTC (rev 186296)
+++ tp_smapi.install2016-08-10 09:07:44 UTC (rev 186297)
@@ -1,4 +1,4 @@
-extramodules=/usr/lib/modules/extramodules-4.6-ARCH
+extramodules=/usr/lib/modules/extramodules-4.7-ARCH
 
 post_install() {
   depmod -v $(< "$extramodules/version") &>/dev/null


[arch-commits] Commit in vhba-module/trunk (PKGBUILD vhba-module.install)

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:09:58
  Author: tpowa
Revision: 186299

upgpkg: vhba-module 20140928-32

rebuild against 4.7 series

Modified:
  vhba-module/trunk/PKGBUILD
  vhba-module/trunk/vhba-module.install

-+
 PKGBUILD|8 
 vhba-module.install |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:07:54 UTC (rev 186298)
+++ PKGBUILD2016-08-10 09:09:58 UTC (rev 186299)
@@ -5,14 +5,14 @@
 
 pkgname=vhba-module
 pkgver=20140928
-_extramodules=extramodules-4.6-ARCH
-pkgrel=31
+_extramodules=extramodules-4.7-ARCH
+pkgrel=32
 pkgdesc="Kernel module that emulates SCSI devices"
 arch=('i686' 'x86_64')
 url="http://cdemu.sourceforge.net/";
 license=('GPL')
-depends=('linux>=4.6' 'linux<4.7')
-makedepends=('linux-headers>=4.6' 'linux-headers<4.7')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
 options=(!makeflags)
 install=$pkgname.install
 source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2";

Modified: vhba-module.install
===
--- vhba-module.install 2016-08-10 09:07:54 UTC (rev 186298)
+++ vhba-module.install 2016-08-10 09:09:58 UTC (rev 186299)
@@ -1,4 +1,4 @@
-EXTRAMODULES=extramodules-4.6-ARCH
+EXTRAMODULES=extramodules-4.7-ARCH
 
 _updatemod() {
   echo "  > Updating module dependencies..."


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:10:07
  Author: tpowa
Revision: 186300

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

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

--+
 community-testing-i686/60-vhba.rules |1 
 community-testing-i686/PKGBUILD  |   44 +
 community-testing-i686/vhba-module.install   |   21 +++
 community-testing-x86_64/60-vhba.rules   |1 
 community-testing-x86_64/PKGBUILD|   44 +
 community-testing-x86_64/vhba-module.install |   21 +++
 6 files changed, 132 insertions(+)

Copied: vhba-module/repos/community-testing-i686/60-vhba.rules (from rev 
186299, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-i686/60-vhba.rules(rev 0)
+++ community-testing-i686/60-vhba.rules2016-08-10 09:10:07 UTC (rev 
186300)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-i686/PKGBUILD (from rev 186299, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-08-10 09:10:07 UTC (rev 186300)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=vhba-module
+pkgver=20140928
+_extramodules=extramodules-4.7-ARCH
+pkgrel=32
+pkgdesc="Kernel module that emulates SCSI devices"
+arch=('i686' 'x86_64')
+url="http://cdemu.sourceforge.net/";
+license=('GPL')
+depends=('linux>=4.7' 'linux<4.8')
+makedepends=('linux-headers>=4.7' 'linux-headers<4.8')
+options=(!makeflags)
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2";
+'60-vhba.rules')
+md5sums=('967007230bb028424216d9b35da422c0'
+ '4dc37dc348b5a2c83585829bde790dcc')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make KDIR=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
+  install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
+
+  cd $startdir
+  cp -f $install ${install}.pkg
+  true && install=${install}.pkg
+  sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-i686/vhba-module.install (from rev 
186299, vhba-module/trunk/vhba-module.install)
===
--- community-testing-i686/vhba-module.install  (rev 0)
+++ community-testing-i686/vhba-module.install  2016-08-10 09:10:07 UTC (rev 
186300)
@@ -0,0 +1,21 @@
+EXTRAMODULES=extramodules-4.7-ARCH
+
+_updatemod() {
+  echo "  > Updating module dependencies..."
+  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  getent group cdemu &>/dev/null || groupadd -r cdemu
+  _updatemod
+}
+
+post_upgrade() {
+  _updatemod
+}
+
+post_remove() {
+  _updatemod
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
186299, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2016-08-10 09:10:07 UTC (rev 
186300)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 186299, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-08-10 09:10:07 UTC (rev 186300)
@@ -0,0 +1,44 @@
+

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:21:15
  Author: tpowa
Revision: 186302

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

Added:
  virtualbox-modules-arch/repos/community-testing-i686/
  virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD
(from rev 186301, virtualbox-modules-arch/trunk/PKGBUILD)
  virtualbox-modules-arch/repos/community-testing-i686/build.sh
(from rev 186301, virtualbox-modules-arch/trunk/build.sh)
  
virtualbox-modules-arch/repos/community-testing-i686/virtualbox-modules-arch.install
(from rev 186301, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
  virtualbox-modules-arch/repos/community-testing-x86_64/
  virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 186301, virtualbox-modules-arch/trunk/PKGBUILD)
  virtualbox-modules-arch/repos/community-testing-x86_64/build.sh
(from rev 186301, virtualbox-modules-arch/trunk/build.sh)
  
virtualbox-modules-arch/repos/community-testing-x86_64/virtualbox-modules-arch.install
(from rev 186301, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)

--+
 community-testing-i686/PKGBUILD  |   72 +
 community-testing-i686/build.sh  |   61 +++
 community-testing-i686/virtualbox-modules-arch.install   |   23 
 community-testing-x86_64/PKGBUILD|   72 +
 community-testing-x86_64/build.sh|   61 +++
 community-testing-x86_64/virtualbox-modules-arch.install |   23 
 6 files changed, 312 insertions(+)

Copied: virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD (from rev 
186301, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-08-10 09:21:15 UTC (rev 186302)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.1.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux>=4.7' 'linux<4.8'
+ 'linux-headers>=4.7' 'linux-headers<4.8'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-4.7-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=('linux>=4.7' 'linux<4.8')
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+  install=virtualbox-modules-arch.install
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+
+  # compress earch modules individually
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+
+  # systemd module loading
+  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" >  \
+"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  license=('GPL')
+  depends=('linux>=4.7' 'linux<4.8')
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+  install=virtualbox-modules-arch.install
+
+  cd "/var/lib/dkms/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+
+  # compress earch modules individually
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+
+  # systemd module loading
+  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+  printf "vboxguest\nvboxsf\nvboxvideo\n" >  \
+"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:
+
+
+
+
+

Copied: virtualbox-modules-arch/repos/community-testing-i686/build.sh (from rev 
186301, virtualbox-modules-arch/trunk/build.sh)
===
--- community-testing-i686/build.sh (rev 0)
+++ community-testing-i686/build.sh 2016-08-10 09:21:15 UTC (rev 186302)
@@ -0,0 +1,61 @@
+#!/bin/bash
+# lazyness ca

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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:21:02
  Author: tpowa
Revision: 186301

upgpkg: virtualbox-modules-arch 5.1.2-1

rebuild against 4.7 series

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD
  virtualbox-modules-arch/trunk/virtualbox-modules-arch.install

-+
 PKGBUILD|   10 +-
 virtualbox-modules-arch.install |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:10:07 UTC (rev 186300)
+++ PKGBUILD2016-08-10 09:21:02 UTC (rev 186301)
@@ -9,18 +9,18 @@
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
-makedepends=('linux>=4.6' 'linux<4.7'
- 'linux-headers>=4.6' 'linux-headers<4.7'
+makedepends=('linux>=4.7' 'linux<4.8'
+ 'linux-headers>=4.7' 'linux-headers<4.8'
  "virtualbox-host-dkms>=$pkgver"
  "virtualbox-guest-dkms>=$pkgver")
 
 # remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.6-ARCH
+_extramodules=extramodules-4.7-ARCH
 
 package_virtualbox-host-modules-arch(){
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
   pkgdesc='Virtualbox host kernel modules for Arch Kernel'
-  depends=('linux>=4.6' 'linux<4.7')
+  depends=('linux>=4.7' 'linux<4.8')
   replaces=('virtualbox-modules' 'virtualbox-host-modules')
   conflicts=('virtualbox-modules' 'virtualbox-host-modules'
 'virtualbox-host-dkms')
@@ -44,7 +44,7 @@
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
   pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
   license=('GPL')
-  depends=('linux>=4.6' 'linux<4.7')
+  depends=('linux>=4.7' 'linux<4.8')
   replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
   conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
  'virtualbox-guest-dkms')

Modified: virtualbox-modules-arch.install
===
--- virtualbox-modules-arch.install 2016-08-10 09:10:07 UTC (rev 186300)
+++ virtualbox-modules-arch.install 2016-08-10 09:21:02 UTC (rev 186301)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-4.6-ARCH
+  EXTRAMODULES=extramodules-4.7-ARCH
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:25:03
  Author: tpowa
Revision: 273579

upgpkg: nvidia-304xx 304.131-15

rebuild for 4.7 series

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:03:22 UTC (rev 273578)
+++ PKGBUILD2016-08-10 09:25:03 UTC (rev 273579)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.131
 _extramodules=extramodules-4.7-ARCH
-pkgrel=14
+pkgrel=15
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
 makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.7' 'linux-headers<4.8')


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:25:15
  Author: tpowa
Revision: 273580

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

Added:
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 273579, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/disable-mtrr.patch
(from rev 273579, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/testing-i686/linux-4.6.patch
(from rev 273579, nvidia-304xx/trunk/linux-4.6.patch)
  nvidia-304xx/repos/testing-i686/nvidia-304xx.install
(from rev 273579, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 273579, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/disable-mtrr.patch
(from rev 273579, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/testing-x86_64/linux-4.6.patch
(from rev 273579, nvidia-304xx/trunk/linux-4.6.patch)
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install
(from rev 273579, nvidia-304xx/trunk/nvidia-304xx.install)
Deleted:
  nvidia-304xx/repos/testing-i686/PKGBUILD
  nvidia-304xx/repos/testing-i686/disable-mtrr.patch
  nvidia-304xx/repos/testing-i686/linux-4.6.patch
  nvidia-304xx/repos/testing-i686/nvidia-304xx.install
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
  nvidia-304xx/repos/testing-x86_64/disable-mtrr.patch
  nvidia-304xx/repos/testing-x86_64/linux-4.6.patch
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install

-+
 /PKGBUILD   |  150 +
 /disable-mtrr.patch |   48 +
 /linux-4.6.patch|  288 ++
 /nvidia-304xx.install   |   26 +++
 testing-i686/PKGBUILD   |   75 
 testing-i686/disable-mtrr.patch |   24 --
 testing-i686/linux-4.6.patch|  144 -
 testing-i686/nvidia-304xx.install   |   13 -
 testing-x86_64/PKGBUILD |   75 
 testing-x86_64/disable-mtrr.patch   |   24 --
 testing-x86_64/linux-4.6.patch  |  144 -
 testing-x86_64/nvidia-304xx.install |   13 -
 12 files changed, 512 insertions(+), 512 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-08-10 09:25:03 UTC (rev 273579)
+++ testing-i686/PKGBUILD   2016-08-10 09:25:15 UTC (rev 273580)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia-304xx
-pkgname=(nvidia-304xx nvidia-304xx-dkms)
-pkgver=304.131
-_extramodules=extramodules-4.7-ARCH
-pkgrel=14
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.7' 'linux-headers<4.8')
-conflicts=('nvidia')
-license=('custom')
-options=('!strip')
-source=('disable-mtrr.patch' 'linux-4.6.patch')
-source_i686+=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
-source_x86_64+=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
-sha512sums=('54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774'
-
'a240e354fcc8ad69982206b4291dfe0fa3660b410d0ffa7903c4fcdb2397254293bfa3160874f89327cfca85d78385260072008091990bc6640ea047e55c53ab')
-sha512sums_i686=('3e67c40648554dc49472081eee88ae982c3b235b3346e4d9e7fb5ae33ec5f10ed088da804ac7d8bd1565995df3861f12b3560030cd3a19339a2d35768b0a943e')
-sha512sums_x86_64=('07e529e4e81c42b43861475029aa0f223f8f3d299be9ddfe820c583e26aae49223a9b0dfee6d66ab09c526554bb581e5f8cf755eda600cb9e0bdac7d5f4acb93')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-# patches here
-
-# FS#47092
-(cd kernel; patch -p1 --no-backup-if-mismatch -i 
"$srcdir"/disable-mtrr.patch)
-
-patch -p1 --no-backup-if-mismatch -i ../linux-4.6.patch
-
-cp -a kernel kernel-dkms
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}/kernel"
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia-304xx() {
-pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
-depends=('linux>=4.7' 'linux<4.8' 'libgl' "nvidia-304xx-utils=${pkgver}")
-   conflicts+=('nvidia-304xx-dkms')
-install=nvidia-304xx.install
-
-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}/${pkgname}.install"
-gzip "${pkgdir}/

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

2016-08-10 Thread Guillaume Alaux
Date: Wednesday, August 10, 2016 @ 09:27:44
  Author: guillaume
Revision: 186303

Upstream release 0.13.12

Modified:
  sbt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:21:15 UTC (rev 186302)
+++ PKGBUILD2016-08-10 09:27:44 UTC (rev 186303)
@@ -5,7 +5,7 @@
 
 pkgname=sbt
 epoch=1
-pkgver=0.13.11
+pkgver=0.13.12
 pkgrel=1
 pkgdesc="A minimally intrusive build tool for Scala projects"
 arch=('any')
@@ -15,7 +15,7 @@
 IFS='.' read -a _pkgver <<< "${pkgver}"
 
source=(https://dl.bintray.com/${pkgname}/native-packages/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tgz
 
https://raw.githubusercontent.com/${pkgname}/${pkgname}/${_pkgver[0]}.${_pkgver[1]}/LICENSE)
-sha256sums=('a36a6fbf6dd70afd93fb8db16c40e8ac00798fdddfa0b4c678786dc15617afa6'
+sha256sums=('280230f9c3f42a4af5699e8425e08b6f47da72dfaa59e9b7ad0e6d6203df'
 '70b7b72694a56a3e922deaf5482273e7c33bab2c00c0c67fc0ccc5d33927ffed')
 
 package() {


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

2016-08-10 Thread Guillaume Alaux
Date: Wednesday, August 10, 2016 @ 09:28:26
  Author: guillaume
Revision: 186304

archrelease: copy trunk to community-any

Added:
  sbt/repos/community-any/PKGBUILD
(from rev 186303, sbt/trunk/PKGBUILD)
Deleted:
  sbt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 09:27:44 UTC (rev 186303)
+++ PKGBUILD2016-08-10 09:28:26 UTC (rev 186304)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX 
-# Contributor: Andrea Scarpino 
-# Contributor: Leif Warner 
-
-pkgname=sbt
-epoch=1
-pkgver=0.13.11
-pkgrel=1
-pkgdesc="A minimally intrusive build tool for Scala projects"
-arch=('any')
-url='http://www.scala-sbt.org/'
-license=('BSD')
-depends=('java-runtime-headless' 'sh')
-IFS='.' read -a _pkgver <<< "${pkgver}"
-source=(https://dl.bintray.com/${pkgname}/native-packages/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tgz
-
https://raw.githubusercontent.com/${pkgname}/${pkgname}/${_pkgver[0]}.${_pkgver[1]}/LICENSE)
-sha256sums=('a36a6fbf6dd70afd93fb8db16c40e8ac00798fdddfa0b4c678786dc15617afa6'
-'70b7b72694a56a3e922deaf5482273e7c33bab2c00c0c67fc0ccc5d33927ffed')
-
-package() {
-  install -d "${pkgdir}"/usr/share
-  cp -r "${srcdir}/${pkgname}" "${pkgdir}"/usr/share
-  rm "${pkgdir}/usr/share/${pkgname}/bin/sbt.bat"
-  rm "${pkgdir}/usr/share/${pkgname}/conf/sbtconfig.txt"
-  find "${pkgdir}/usr/share/${pkgname}" -type f ! -name sbt -exec chmod -x {} 
\;
-
-  install -d "${pkgdir}"/usr/bin
-  ln -s "/usr/share/${pkgname}/bin/sbt" "${pkgdir}"/usr/bin/sbt
-
-  install -d "${pkgdir}/etc/${pkgname}"
-  ln -s "/usr/share/${pkgname}/conf/sbtopts" "${pkgdir}/etc/${pkgname}/sbtopts"
-
-  install -D -m644 "${srcdir}"/LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: sbt/repos/community-any/PKGBUILD (from rev 186303, sbt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 09:28:26 UTC (rev 186304)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Guillaume ALAUX 
+# Contributor: Andrea Scarpino 
+# Contributor: Leif Warner 
+
+pkgname=sbt
+epoch=1
+pkgver=0.13.12
+pkgrel=1
+pkgdesc="A minimally intrusive build tool for Scala projects"
+arch=('any')
+url='http://www.scala-sbt.org/'
+license=('BSD')
+depends=('java-runtime-headless' 'sh')
+IFS='.' read -a _pkgver <<< "${pkgver}"
+source=(https://dl.bintray.com/${pkgname}/native-packages/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tgz
+
https://raw.githubusercontent.com/${pkgname}/${pkgname}/${_pkgver[0]}.${_pkgver[1]}/LICENSE)
+sha256sums=('280230f9c3f42a4af5699e8425e08b6f47da72dfaa59e9b7ad0e6d6203df'
+'70b7b72694a56a3e922deaf5482273e7c33bab2c00c0c67fc0ccc5d33927ffed')
+
+package() {
+  install -d "${pkgdir}"/usr/share
+  cp -r "${srcdir}/${pkgname}" "${pkgdir}"/usr/share
+  rm "${pkgdir}/usr/share/${pkgname}/bin/sbt.bat"
+  rm "${pkgdir}/usr/share/${pkgname}/conf/sbtconfig.txt"
+  find "${pkgdir}/usr/share/${pkgname}" -type f ! -name sbt -exec chmod -x {} 
\;
+
+  install -d "${pkgdir}"/usr/bin
+  ln -s "/usr/share/${pkgname}/bin/sbt" "${pkgdir}"/usr/bin/sbt
+
+  install -d "${pkgdir}/etc/${pkgname}"
+  ln -s "/usr/share/${pkgname}/conf/sbtopts" "${pkgdir}/etc/${pkgname}/sbtopts"
+
+  install -D -m644 "${srcdir}"/LICENSE 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2016-08-10 Thread Tobias Powalowski
Date: Wednesday, August 10, 2016 @ 09:32:06
  Author: tpowa
Revision: 186305

upgpkg: bbswitch 0.8-51

rebuild against 4.7 series

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:28:26 UTC (rev 186304)
+++ PKGBUILD2016-08-10 09:32:06 UTC (rev 186305)
@@ -7,7 +7,7 @@
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
 _extramodules=extramodules-4.7-ARCH # Don't forget to update bbswitch.install
-pkgrel=50
+pkgrel=51
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('i686' 'x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch";


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

2016-08-10 Thread Evgeniy Alekseev
Date: Wednesday, August 10, 2016 @ 10:35:05
  Author: arcanis
Revision: 186306

upgpkg: geogebra 5.0.266.0-1

Modified:
  geogebra/trunk/ChangeLog
  geogebra/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2016-08-10 09:32:06 UTC (rev 186305)
+++ ChangeLog   2016-08-10 10:35:05 UTC (rev 186306)
@@ -1,3 +1,6 @@
+5.0.266.0-1:
+upstream update
+
 5.0.260.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:32:06 UTC (rev 186305)
+++ PKGBUILD2016-08-10 10:35:05 UTC (rev 186306)
@@ -5,7 +5,7 @@
 # Contributor: moostik 
 
 pkgname=geogebra
-pkgver=5.0.260.0
+pkgver=5.0.266.0
 pkgrel=1
 pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
 arch=('any')
@@ -37,6 +37,6 @@
   install -Dm644 "${srcdir}/geogebra-logo.svg" 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/geogebra.svg"
 }
 
-md5sums=('f02d7df5640e3bbf384cacef69d84078'
+md5sums=('6c3c4a93034ab3c97c935f852d167de1'
  '863782da033f1a337e688b544afb7d07'
  'fc4a3140ceb50967598a620eb85219f4')


[arch-commits] Commit in geogebra/repos/community-any (6 files)

2016-08-10 Thread Evgeniy Alekseev
Date: Wednesday, August 10, 2016 @ 10:35:21
  Author: arcanis
Revision: 186307

archrelease: copy trunk to community-any

Added:
  geogebra/repos/community-any/ChangeLog
(from rev 186306, geogebra/trunk/ChangeLog)
  geogebra/repos/community-any/PKGBUILD
(from rev 186306, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-any/geogebra
(from rev 186306, geogebra/trunk/geogebra)
Deleted:
  geogebra/repos/community-any/ChangeLog
  geogebra/repos/community-any/PKGBUILD
  geogebra/repos/community-any/geogebra

---+
 ChangeLog |  125 ++--
 PKGBUILD  |   84 
 geogebra  |   14 +++---
 3 files changed, 113 insertions(+), 110 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2016-08-10 10:35:05 UTC (rev 186306)
+++ ChangeLog   2016-08-10 10:35:21 UTC (rev 186307)
@@ -1,61 +0,0 @@
-5.0.260.0-1:
-upstream update
-
-5.0.241.0-1:
-upstream update
-
-5.0.231.0-1:
-upstream update, move to pacman hooks
-
-5.0.230.0-1:
-upstream update
-
-5.0.205.0-1:
-upstream update
-
-5.0.202.0-1:
-upstream update
-
-5.0.190.0-1:
-upstream update
-
-5.0.185.0-1:
-upstream update
-
-5.0.180.0-1:
-upstream update
-
-5.0.170.0-1:
-upstream update
-
-5.0.168.0-1:
-upstream update
-
-5.0.166.0-1:
-upstream update
-
-5.0.164.0-1:
-upstream update
-
-5.0.161.0-1:
-upstream update
-
-5.0.158.0-1:
-upstream update
-
-5.0.150.0-1:
-upstream update
-
-5.0.149.0-1:
-upstream update
-
-5.0.146.0-1:
-upstream update
-
-5.0.143.0-1:
-upstream update
-
-5.0.129.0-1:
-upstream update
-put icon back
-

Copied: geogebra/repos/community-any/ChangeLog (from rev 186306, 
geogebra/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2016-08-10 10:35:21 UTC (rev 186307)
@@ -0,0 +1,64 @@
+5.0.266.0-1:
+upstream update
+
+5.0.260.0-1:
+upstream update
+
+5.0.241.0-1:
+upstream update
+
+5.0.231.0-1:
+upstream update, move to pacman hooks
+
+5.0.230.0-1:
+upstream update
+
+5.0.205.0-1:
+upstream update
+
+5.0.202.0-1:
+upstream update
+
+5.0.190.0-1:
+upstream update
+
+5.0.185.0-1:
+upstream update
+
+5.0.180.0-1:
+upstream update
+
+5.0.170.0-1:
+upstream update
+
+5.0.168.0-1:
+upstream update
+
+5.0.166.0-1:
+upstream update
+
+5.0.164.0-1:
+upstream update
+
+5.0.161.0-1:
+upstream update
+
+5.0.158.0-1:
+upstream update
+
+5.0.150.0-1:
+upstream update
+
+5.0.149.0-1:
+upstream update
+
+5.0.146.0-1:
+upstream update
+
+5.0.143.0-1:
+upstream update
+
+5.0.129.0-1:
+upstream update
+put icon back
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 10:35:05 UTC (rev 186306)
+++ PKGBUILD2016-08-10 10:35:21 UTC (rev 186307)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Felipe Hommen 
-# Contributor: moostik 
-
-pkgname=geogebra
-pkgver=5.0.260.0
-pkgrel=1
-pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
-arch=('any')
-url='http://www.geogebra.org/'
-license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
-depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
- 'shared-mime-info' 'xdg-utils')
-makedepends=('gendesk')
-source=("http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2";
-"http://static.geogebra.org/images/geogebra-logo.svg";
-"geogebra")
-changelog=ChangeLog
-
-prepare() {
-  gendesk -f -n --pkgname "${pkgname}" --pkgdesc "${pkgdesc}" \
-  --name="GeoGebra" \
-  --categories="Education;Science;Math" \
-  
--mimetypes="application/vnd.geogebra.file;application/vnd.geogebra.tool"
-}
-
-package() {
-  cd "GeoGebra-Linux-Portable-${pkgver}"
-
-  install -Dm755 "${srcdir}/geogebra" "${pkgdir}/usr/bin/geogebra"
-  install -dm755 "${pkgdir}/usr/share/geogebra"
-  install "geogebra/"* -t "${pkgdir}/usr/share/geogebra/"
-
-  install -Dm644 "${srcdir}/geogebra.desktop" 
"${pkgdir}/usr/share/applications/geogebra.desktop"
-  install -Dm644 "${srcdir}/geogebra-logo.svg" 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/geogebra.svg"
-}
-
-md5sums=('f02d7df5640e3bbf384cacef69d84078'
- '863782da033f1a337e688b544afb7d07'
- 'fc4a3140ceb50967598a620eb85219f4')

Copied: geogebra/repos/community-any/PKGBUILD (from rev 186306, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 10:35:21 UTC (rev 186307)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Felipe Hommen 
+# Contributor: moostik 
+
+pkgname=geogebra
+pkgver=5.0.266.0
+pkgrel=1
+pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
+arch=('any

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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 10:49:17
  Author: arojas
Revision: 186308

Fix source

Modified:
  gcompris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 10:35:21 UTC (rev 186307)
+++ PKGBUILD2016-08-10 10:49:17 UTC (rev 186308)
@@ -13,7 +13,7 @@
 optdepends=('gnucap: for computer simulation within the electricity activity'
 'tuxpaint: for the painting activity')
 makedepends=('texinfo' 'texi2html' 'intltool')
-source=(http://gcompris.net/download/$pkgname-$pkgver.tar.bz2)
+source=(http://gcompris.net/download/gtk/src/$pkgname-$pkgver.tar.bz2)
 sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
 
 prepare() {


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 10:49:53
  Author: arojas
Revision: 186309

Fix source

Modified:
  gcompris-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 10:49:17 UTC (rev 186308)
+++ PKGBUILD2016-08-10 10:49:53 UTC (rev 186309)
@@ -11,7 +11,7 @@
 license=('GPL3')
 makedepends=('texinfo' 'texi2html' 'intltool' 'pygtk' 'librsvg'
  'gstreamer0.10-base-plugins')
-source=(http://gcompris.net/download/gcompris-$pkgver.tar.bz2)
+source=(http://gcompris.net/download/gtk/src/gcompris-$pkgver.tar.bz2)
 sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
 
 build() {


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 10:50:01
  Author: arojas
Revision: 186310

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

Added:
  gcompris-data/repos/community-i686/
  gcompris-data/repos/community-i686/PKGBUILD
(from rev 186309, gcompris-data/trunk/PKGBUILD)
  gcompris-data/repos/community-x86_64/
  gcompris-data/repos/community-x86_64/PKGBUILD
(from rev 186309, gcompris-data/trunk/PKGBUILD)

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

Copied: gcompris-data/repos/community-i686/PKGBUILD (from rev 186309, 
gcompris-data/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 10:50:01 UTC (rev 186310)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Daniel Isenmann 
+
+pkgname=gcompris-data
+pkgver=15.10
+pkgrel=1
+pkgdesc="Data files for GCompris"
+arch=('any')
+url="http://gcompris.net/";
+license=('GPL3')
+makedepends=('texinfo' 'texi2html' 'intltool' 'pygtk' 'librsvg'
+ 'gstreamer0.10-base-plugins')
+source=(http://gcompris.net/download/gtk/src/gcompris-$pkgver.tar.bz2)
+sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
+
+build() {
+  cd "$srcdir/gcompris-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/gcompris-$pkgver"
+  make DESTDIR="$pkgdir" install-data
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gcompris-data/repos/community-x86_64/PKGBUILD (from rev 186309, 
gcompris-data/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-08-10 10:50:01 UTC (rev 186310)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Daniel Isenmann 
+
+pkgname=gcompris-data
+pkgver=15.10
+pkgrel=1
+pkgdesc="Data files for GCompris"
+arch=('any')
+url="http://gcompris.net/";
+license=('GPL3')
+makedepends=('texinfo' 'texi2html' 'intltool' 'pygtk' 'librsvg'
+ 'gstreamer0.10-base-plugins')
+source=(http://gcompris.net/download/gtk/src/gcompris-$pkgver.tar.bz2)
+sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
+
+build() {
+  cd "$srcdir/gcompris-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/gcompris-$pkgver"
+  make DESTDIR="$pkgdir" install-data
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 10:50:12
  Author: arojas
Revision: 186311

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 10:50:01 UTC (rev 186310)
+++ community-i686/PKGBUILD 2016-08-10 10:50:12 UTC (rev 186311)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Daniel Isenmann 
-
-pkgname=gcompris
-pkgver=15.10
-pkgrel=1
-pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
-arch=('i686' 'x86_64')
-url="http://gcompris.net/";
-license=('GPL3')
-depends=('pygtk' 'librsvg' 'gstreamer0.10-base-plugins')
-optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity')
-makedepends=('texinfo' 'texi2html' 'intltool')
-source=(http://gcompris.net/download/$pkgname-$pkgver.tar.bz2)
-sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  sed -i 's/"$GNUCHESS"/"gcompris-gnuchess"/' configure
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=("gcompris-data=$pkgver")
-
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install-exec
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris/repos/community-i686/PKGBUILD (from rev 186310, 
gcompris/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 10:50:12 UTC (rev 186311)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Daniel Isenmann 
+
+pkgname=gcompris
+pkgver=15.10
+pkgrel=1
+pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
+arch=('i686' 'x86_64')
+url="http://gcompris.net/";
+license=('GPL3')
+depends=('pygtk' 'librsvg' 'gstreamer0.10-base-plugins')
+optdepends=('gnucap: for computer simulation within the electricity activity'
+'tuxpaint: for the painting activity')
+makedepends=('texinfo' 'texi2html' 'intltool')
+source=(http://gcompris.net/download/gtk/src/$pkgname-$pkgver.tar.bz2)
+sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i 's/"$GNUCHESS"/"gcompris-gnuchess"/' configure
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends+=("gcompris-data=$pkgver")
+
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install-exec
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 10:50:01 UTC (rev 186310)
+++ community-x86_64/PKGBUILD   2016-08-10 10:50:12 UTC (rev 186311)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Daniel Isenmann 
-
-pkgname=gcompris
-pkgver=15.10
-pkgrel=1
-pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
-arch=('i686' 'x86_64')
-url="http://gcompris.net/";
-license=('GPL3')
-depends=('pygtk' 'librsvg' 'gstreamer0.10-base-plugins')
-optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity')
-makedepends=('texinfo' 'texi2html' 'intltool')
-source=(http://gcompris.net/download/$pkgname-$pkgver.tar.bz2)
-sha256sums=('6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  sed -i 's/"$GNUCHESS"/"gcompris-gnuchess"/' configure
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=("gcompris-data=$pkgver")
-
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install-exec
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris/repos/community-x86_64/PKGBUILD (from rev 186310, 
gcompris/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-08-10 10:50:12 UTC (rev 186311)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Daniel Isenmann 
+
+pkgname=gcompris
+pkgver=15.10
+pkgrel=1
+pkgdesc="Educational software suite comprising o

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

2016-08-10 Thread Evgeniy Alekseev
Date: Wednesday, August 10, 2016 @ 10:54:03
  Author: arcanis
Revision: 186312

upgpkg: jq 1.5-4

Modified:
  jq/trunk/ChangeLog
  jq/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |   13 ++---
 2 files changed, 13 insertions(+), 3 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2016-08-10 10:50:12 UTC (rev 186311)
+++ ChangeLog   2016-08-10 10:54:03 UTC (rev 186312)
@@ -1,3 +1,6 @@
+1.5-4:
+fix CVE-2015-8863 (FS#50330)
+
 1.5-2:
 add oniguruma for regexp support
 

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 10:50:12 UTC (rev 186311)
+++ PKGBUILD2016-08-10 10:54:03 UTC (rev 186312)
@@ -5,7 +5,7 @@
 
 pkgname=jq
 pkgver=1.5
-pkgrel=3
+pkgrel=4
 pkgdesc='Command-line JSON processor'
 arch=('i686' 'x86_64')
 url='http://stedolan.github.io/jq/'
@@ -12,10 +12,17 @@
 license=('MIT')
 depends=('glibc' 'oniguruma')
 makedepends=('autoconf' 'automake' 'bison' 'flex' 'python2')
-source=("https://github.com/stedolan/jq/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+source=("https://github.com/stedolan/jq/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz";
+
"cve-2015-8863.patch::https://github.com/stedolan/jq/commit/8eb1367ca44e772963e704a700ef72ae2e12babd.patch";)
 changelog=ChangeLog
-md5sums=('0933532b086bd8b6a41c1b162b1731f9')
+md5sums=('0933532b086bd8b6a41c1b162b1731f9'
+ '104f363774c8f312943db55a4dd59ac6')
 
+prepare() {
+cd "${pkgname}-${pkgver}"
+patch -p2 -i "${srcdir}/cve-2015-8863.patch"
+}
+
 build() {
 cd "${pkgname}-${pkgver}"
 ./configure --prefix=/usr


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

2016-08-10 Thread Evgeniy Alekseev
Date: Wednesday, August 10, 2016 @ 10:54:25
  Author: arcanis
Revision: 186313

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

Added:
  jq/repos/community-i686/ChangeLog
(from rev 186312, jq/trunk/ChangeLog)
  jq/repos/community-i686/PKGBUILD
(from rev 186312, jq/trunk/PKGBUILD)
  jq/repos/community-x86_64/ChangeLog
(from rev 186312, jq/trunk/ChangeLog)
  jq/repos/community-x86_64/PKGBUILD
(from rev 186312, jq/trunk/PKGBUILD)
Deleted:
  jq/repos/community-i686/ChangeLog
  jq/repos/community-i686/PKGBUILD
  jq/repos/community-x86_64/ChangeLog
  jq/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |   22 +
 /PKGBUILD  |   72 +++
 community-i686/ChangeLog   |8 
 community-i686/PKGBUILD|   29 -
 community-x86_64/ChangeLog |8 
 community-x86_64/PKGBUILD  |   29 -
 6 files changed, 94 insertions(+), 74 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2016-08-10 10:54:03 UTC (rev 186312)
+++ community-i686/ChangeLog2016-08-10 10:54:25 UTC (rev 186313)
@@ -1,8 +0,0 @@
-1.5-2:
-add oniguruma for regexp support
-
-1.5-1:
-upstream update
-
-1.4-1:
-move from AUR into [community]

Copied: jq/repos/community-i686/ChangeLog (from rev 186312, jq/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2016-08-10 10:54:25 UTC (rev 186313)
@@ -0,0 +1,11 @@
+1.5-4:
+fix CVE-2015-8863 (FS#50330)
+
+1.5-2:
+add oniguruma for regexp support
+
+1.5-1:
+upstream update
+
+1.4-1:
+move from AUR into [community]

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 10:54:03 UTC (rev 186312)
+++ community-i686/PKGBUILD 2016-08-10 10:54:25 UTC (rev 186313)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Alex Chamberlain 
-# Contributor: Kars Wang 
-
-pkgname=jq
-pkgver=1.5
-pkgrel=3
-pkgdesc='Command-line JSON processor'
-arch=('i686' 'x86_64')
-url='http://stedolan.github.io/jq/'
-license=('MIT')
-depends=('glibc' 'oniguruma')
-makedepends=('autoconf' 'automake' 'bison' 'flex' 'python2')
-source=("https://github.com/stedolan/jq/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-changelog=ChangeLog
-md5sums=('0933532b086bd8b6a41c1b162b1731f9')
-
-build() {
-cd "${pkgname}-${pkgver}"
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" prefix=/usr install
-install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: jq/repos/community-i686/PKGBUILD (from rev 186312, jq/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 10:54:25 UTC (rev 186313)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Alex Chamberlain 
+# Contributor: Kars Wang 
+
+pkgname=jq
+pkgver=1.5
+pkgrel=4
+pkgdesc='Command-line JSON processor'
+arch=('i686' 'x86_64')
+url='http://stedolan.github.io/jq/'
+license=('MIT')
+depends=('glibc' 'oniguruma')
+makedepends=('autoconf' 'automake' 'bison' 'flex' 'python2')
+source=("https://github.com/stedolan/jq/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz";
+
"cve-2015-8863.patch::https://github.com/stedolan/jq/commit/8eb1367ca44e772963e704a700ef72ae2e12babd.patch";)
+changelog=ChangeLog
+md5sums=('0933532b086bd8b6a41c1b162b1731f9'
+ '104f363774c8f312943db55a4dd59ac6')
+
+prepare() {
+cd "${pkgname}-${pkgver}"
+patch -p2 -i "${srcdir}/cve-2015-8863.patch"
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" prefix=/usr install
+install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: community-x86_64/ChangeLog
===
--- community-x86_64/ChangeLog  2016-08-10 10:54:03 UTC (rev 186312)
+++ community-x86_64/ChangeLog  2016-08-10 10:54:25 UTC (rev 186313)
@@ -1,8 +0,0 @@
-1.5-2:
-add oniguruma for regexp support
-
-1.5-1:
-upstream update
-
-1.4-1:
-move from AUR into [community]

Copied: jq/repos/community-x86_64/ChangeLog (from rev 186312, 
jq/trunk/ChangeLog)
===
--- community-x86_64/ChangeLog  (rev 0)
+++ community-x86_64/ChangeLog  2016-08-10 10:54:25 UTC (rev 186313)
@@ -0,0 +1,11 @@
+1.5-4:
+fix CVE-2015-8863 (FS#50330)
+
+1.5-2:
+add oniguruma for regexp support
+
+1.5-1:
+u

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

2016-08-10 Thread Maxime Gauduin
Date: Wednesday, August 10, 2016 @ 11:10:00
  Author: alucryd
Revision: 186315

archrelease: copy trunk to community-any

Added:
  puddletag/repos/community-any/PKGBUILD
(from rev 186314, puddletag/trunk/PKGBUILD)
  puddletag/repos/community-any/puddletag-mutagen1.34.patch
(from rev 186314, puddletag/trunk/puddletag-mutagen1.34.patch)
Deleted:
  puddletag/repos/community-any/PKGBUILD

-+
 PKGBUILD|   80 ++
 puddletag-mutagen1.34.patch |   24 
 2 files changed, 66 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 11:09:50 UTC (rev 186314)
+++ PKGBUILD2016-08-10 11:10:00 UTC (rev 186315)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Lucky 
-# Contributor: Farhad Shahbazi 
-
-pkgname=puddletag
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='A tag editor for GNU/Linux'
-url='http://puddletag.sourceforge.net'
-license=('GPL')
-arch=('any')
-depends=('chromaprint' 'mutagen' 'python2-configobj' 'python2-musicbrainz2'
- 'python2-pyparsing' 'python2-pyqt4')
-optdepends=('python2-pillow: FLAC cover art'
-'quodlibet: QuodLibet library support')
-source=("https://github.com/keithgg/puddletag/releases/download/${pkgver}/puddletag-${pkgver}.tar.gz";)
-sha256sums=('0e944800ac37a854418ebfead1ae2e9d9c218db99fcdfe31c1bdb2fb803dc6ac')
-
-prepare() {
-  cd puddletag-${pkgver}
-
-  sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
-}
-
-build() {
-  cd puddletag-${pkgver}
-
-  python2 setup.py config
-}
-
-package() {
-  cd puddletag-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-}
-
-# vim: ts=2 sw=2 et:

Copied: puddletag/repos/community-any/PKGBUILD (from rev 186314, 
puddletag/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 11:10:00 UTC (rev 186315)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Lucky 
+# Contributor: Farhad Shahbazi 
+
+pkgname=puddletag
+pkgver=1.1.1
+pkgrel=2
+pkgdesc='A tag editor for GNU/Linux'
+url='http://puddletag.sourceforge.net'
+license=('GPL')
+arch=('any')
+depends=('chromaprint' 'mutagen' 'python2-configobj' 'python2-musicbrainz2'
+ 'python2-pyparsing' 'python2-pyqt4')
+optdepends=('python2-pillow: FLAC cover art'
+'quodlibet: QuodLibet library support')
+source=("https://github.com/keithgg/puddletag/releases/download/${pkgver}/puddletag-${pkgver}.tar.gz";
+'puddletag-mutagen1.34.patch')
+sha256sums=('0e944800ac37a854418ebfead1ae2e9d9c218db99fcdfe31c1bdb2fb803dc6ac'
+'4259e63b1b7f38ba2a91434723bc582a82421f9550cc31afb23caa1468b1a8d5')
+
+prepare() {
+  cd puddletag-${pkgver}
+
+  patch -Np2 -i ../puddletag-mutagen1.34.patch
+
+  sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
+}
+
+build() {
+  cd puddletag-${pkgver}
+
+  python2 setup.py config
+}
+
+package() {
+  cd puddletag-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize='1'
+}
+
+# vim: ts=2 sw=2 et:

Copied: puddletag/repos/community-any/puddletag-mutagen1.34.patch (from rev 
186314, puddletag/trunk/puddletag-mutagen1.34.patch)
===
--- puddletag-mutagen1.34.patch (rev 0)
+++ puddletag-mutagen1.34.patch 2016-08-10 11:10:00 UTC (rev 186315)
@@ -0,0 +1,24 @@
+From 6fd73f9d3442c729a771d160430bd44fb003eb69 Mon Sep 17 00:00:00 2001
+From: b_b 
+Date: Wed, 27 Jul 2016 11:27:14 +0200
+Subject: [PATCH] Fix for BitPaddedInt import error
+
+This one fix an import error i get with latest python-mutagen 
1.34.999+1301~0c8997f-0~ppa0~trusty from 
https://launchpad.net/~lazka/+archive/ubuntu/dumpingplace
+---
+ source/puddlestuff/audioinfo/_compatid3.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/source/puddlestuff/audioinfo/_compatid3.py 
b/source/puddlestuff/audioinfo/_compatid3.py
+index 7d73e27..a7a599f 100644
+--- a/source/puddlestuff/audioinfo/_compatid3.py
 b/source/puddlestuff/audioinfo/_compatid3.py
+@@ -23,7 +23,8 @@
+ import mutagen
+ from mutagen._util import insert_bytes
+ from mutagen.id3 import ID3, Frame, Frames, Frames_2_2, TextFrame, TORY, \
+-TYER, TIME, APIC, IPLS, TDAT, BitPaddedInt, MakeID3v1
++TYER, TIME, APIC, IPLS, TDAT, MakeID3v1
++from mutagen.id3._util import BitPaddedInt
+ 
+ SEPARATOR = ' / '
+ 


[arch-commits] Commit in puddletag/trunk (PKGBUILD puddletag-mutagen1.34.patch)

2016-08-10 Thread Maxime Gauduin
Date: Wednesday, August 10, 2016 @ 11:09:50
  Author: alucryd
Revision: 186314

FS#50331: puddletag 1.1.1-2

Added:
  puddletag/trunk/puddletag-mutagen1.34.patch
Modified:
  puddletag/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 puddletag-mutagen1.34.patch |   24 
 2 files changed, 31 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 10:54:25 UTC (rev 186313)
+++ PKGBUILD2016-08-10 11:09:50 UTC (rev 186314)
@@ -5,7 +5,7 @@
 
 pkgname=puddletag
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A tag editor for GNU/Linux'
 url='http://puddletag.sourceforge.net'
 license=('GPL')
@@ -14,12 +14,16 @@
  'python2-pyparsing' 'python2-pyqt4')
 optdepends=('python2-pillow: FLAC cover art'
 'quodlibet: QuodLibet library support')
-source=("https://github.com/keithgg/puddletag/releases/download/${pkgver}/puddletag-${pkgver}.tar.gz";)
-sha256sums=('0e944800ac37a854418ebfead1ae2e9d9c218db99fcdfe31c1bdb2fb803dc6ac')
+source=("https://github.com/keithgg/puddletag/releases/download/${pkgver}/puddletag-${pkgver}.tar.gz";
+'puddletag-mutagen1.34.patch')
+sha256sums=('0e944800ac37a854418ebfead1ae2e9d9c218db99fcdfe31c1bdb2fb803dc6ac'
+'4259e63b1b7f38ba2a91434723bc582a82421f9550cc31afb23caa1468b1a8d5')
 
 prepare() {
   cd puddletag-${pkgver}
 
+  patch -Np2 -i ../puddletag-mutagen1.34.patch
+
   sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
 }
 

Added: puddletag-mutagen1.34.patch
===
--- puddletag-mutagen1.34.patch (rev 0)
+++ puddletag-mutagen1.34.patch 2016-08-10 11:09:50 UTC (rev 186314)
@@ -0,0 +1,24 @@
+From 6fd73f9d3442c729a771d160430bd44fb003eb69 Mon Sep 17 00:00:00 2001
+From: b_b 
+Date: Wed, 27 Jul 2016 11:27:14 +0200
+Subject: [PATCH] Fix for BitPaddedInt import error
+
+This one fix an import error i get with latest python-mutagen 
1.34.999+1301~0c8997f-0~ppa0~trusty from 
https://launchpad.net/~lazka/+archive/ubuntu/dumpingplace
+---
+ source/puddlestuff/audioinfo/_compatid3.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/source/puddlestuff/audioinfo/_compatid3.py 
b/source/puddlestuff/audioinfo/_compatid3.py
+index 7d73e27..a7a599f 100644
+--- a/source/puddlestuff/audioinfo/_compatid3.py
 b/source/puddlestuff/audioinfo/_compatid3.py
+@@ -23,7 +23,8 @@
+ import mutagen
+ from mutagen._util import insert_bytes
+ from mutagen.id3 import ID3, Frame, Frames, Frames_2_2, TextFrame, TORY, \
+-TYER, TIME, APIC, IPLS, TDAT, BitPaddedInt, MakeID3v1
++TYER, TIME, APIC, IPLS, TDAT, MakeID3v1
++from mutagen.id3._util import BitPaddedInt
+ 
+ SEPARATOR = ' / '
+ 


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

2016-08-10 Thread Maxime Gauduin
Date: Wednesday, August 10, 2016 @ 11:29:09
  Author: alucryd
Revision: 186316

upgpkg: higan 101-1

Modified:
  higan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 11:10:00 UTC (rev 186315)
+++ PKGBUILD2016-08-10 11:29:09 UTC (rev 186316)
@@ -2,7 +2,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=higan
-pkgver=100
+pkgver=101
 pkgrel=1
 pkgdesc='Nintendo multi-system emulator'
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 install='higan.install'
 source=("http://download.byuu.org/higan_v${pkgver}-source.7z";
 'higan-flags.patch')
-sha256sums=('375ff95adac3befff7ca6fc75cca692c033ba7eb136d42c2ca4b78b37b03e2de'
+sha256sums=('c82f2128eb8c6f4728e4c1e2579666f723b02b0666a786f0c19c8d05ae1b7913'
 '6ee3489a3cf3e8d09beaa5c1f809824593aa08b61dc9a8c9ddc12a09c89ae6cb')
 
 prepare() {


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

2016-08-10 Thread Maxime Gauduin
Date: Wednesday, August 10, 2016 @ 11:29:20
  Author: alucryd
Revision: 186317

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

Added:
  higan/repos/community-i686/PKGBUILD
(from rev 186316, higan/trunk/PKGBUILD)
  higan/repos/community-i686/higan-flags.patch
(from rev 186316, higan/trunk/higan-flags.patch)
  higan/repos/community-i686/higan.install
(from rev 186316, higan/trunk/higan.install)
  higan/repos/community-x86_64/PKGBUILD
(from rev 186316, higan/trunk/PKGBUILD)
  higan/repos/community-x86_64/higan-flags.patch
(from rev 186316, higan/trunk/higan-flags.patch)
  higan/repos/community-x86_64/higan.install
(from rev 186316, higan/trunk/higan.install)
Deleted:
  higan/repos/community-i686/PKGBUILD
  higan/repos/community-i686/higan-flags.patch
  higan/repos/community-i686/higan.install
  higan/repos/community-x86_64/PKGBUILD
  higan/repos/community-x86_64/higan-flags.patch
  higan/repos/community-x86_64/higan.install

+
 /PKGBUILD  |   96 +++
 /higan-flags.patch |   76 +++
 /higan.install |   24 
 community-i686/PKGBUILD|   48 -
 community-i686/higan-flags.patch   |   38 -
 community-i686/higan.install   |   12 
 community-x86_64/PKGBUILD  |   48 -
 community-x86_64/higan-flags.patch |   38 -
 community-x86_64/higan.install |   12 
 9 files changed, 196 insertions(+), 196 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 11:29:09 UTC (rev 186316)
+++ community-i686/PKGBUILD 2016-08-10 11:29:20 UTC (rev 186317)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-
-pkgname=higan
-pkgver=100
-pkgrel=1
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('alsa-lib' 'cairo' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk2'
- 'gtksourceview2' 'libao' 'libgl' 'libpulse' 'libx11' 'libxext' 'libxv'
- 'openal' 'pango' 'sdl'
- 'libudev.so')
-makedepends=('mesa')
-conflicts=('higan-gtk' 'higan-qt')
-replaces=('higan-gtk' 'higan-qt')
-install='higan.install'
-source=("http://download.byuu.org/higan_v${pkgver}-source.7z";
-'higan-flags.patch')
-sha256sums=('375ff95adac3befff7ca6fc75cca692c033ba7eb136d42c2ca4b78b37b03e2de'
-'6ee3489a3cf3e8d09beaa5c1f809824593aa08b61dc9a8c9ddc12a09c89ae6cb')
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  patch -Np1 -i ../higan-flags.patch
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make -C icarus
-  make -C higan
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,higan,pixmaps}}
-  install -m 755 icarus/out/icarus "${pkgdir}"/usr/bin/
-  install -m 755 higan/out/higan "${pkgdir}"/usr/bin/
-  install -m 644 higan/data/higan.desktop "${pkgdir}"/usr/share/applications/
-  install -m 644 higan/data/higan.png "${pkgdir}"/usr/share/pixmaps/
-  cp -dr --no-preserve='ownership' higan/systems/* higan/data/cheats.bml 
"${pkgdir}"/usr/share/higan/
-}
-
-# vim: ts=2 sw=2 et:

Copied: higan/repos/community-i686/PKGBUILD (from rev 186316, 
higan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 11:29:20 UTC (rev 186317)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=higan
+pkgver=101
+pkgrel=1
+pkgdesc='Nintendo multi-system emulator'
+arch=('i686' 'x86_64')
+url='http://byuu.org/'
+license=('GPL3')
+depends=('alsa-lib' 'cairo' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk2'
+ 'gtksourceview2' 'libao' 'libgl' 'libpulse' 'libx11' 'libxext' 'libxv'
+ 'openal' 'pango' 'sdl'
+ 'libudev.so')
+makedepends=('mesa')
+conflicts=('higan-gtk' 'higan-qt')
+replaces=('higan-gtk' 'higan-qt')
+install='higan.install'
+source=("http://download.byuu.org/higan_v${pkgver}-source.7z";
+'higan-flags.patch')
+sha256sums=('c82f2128eb8c6f4728e4c1e2579666f723b02b0666a786f0c19c8d05ae1b7913'
+'6ee3489a3cf3e8d09beaa5c1f809824593aa08b61dc9a8c9ddc12a09c89ae6cb')
+
+prepare() {
+  cd higan_v${pkgver}-source
+
+  patch -Np1 -i ../higan-flags.patch
+}
+
+build() {
+  cd higan_v${pkgver}-source
+
+  make -C icarus
+  make -C higan
+}
+
+package() {
+  cd higan_v${pkgver}-source
+
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,higan,pixmaps}}
+  install -m 755 icarus/out/icarus "${pkgdir}"/usr/bin/
+  install -m 755 higan/out/higan "${pkgdir}"/usr/bin/
+  install -m 644 higan/data/higan.desktop "${pkgdir}"/usr/share/applications/
+  install -m 644 higan/data/higan.png "${pkgdir}"/usr/share/pixmaps/
+  cp -dr --no-preserve='ownership' higan/sys

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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 12:36:54
  Author: arodseth
Revision: 186319

upgpkg: rust 1:1.10.0-2

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 12:36:20 UTC (rev 186318)
+++ PKGBUILD2016-08-10 12:36:54 UTC (rev 186319)
@@ -5,12 +5,13 @@
 pkgname=rust
 epoch=1
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 arch=('x86_64' 'i686')
 pkgdesc='Systems programming language focused on safety, speed and concurrency'
 url='http://www.rust-lang.org/'
 license=('MIT' 'Apache')
 makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
+depends=('gcc')
 source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
 sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
 'SKIP')


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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 12:38:25
  Author: arodseth
Revision: 186320

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

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

---+
 /PKGBUILD |   86 
 community-i686/PKGBUILD   |   42 -
 community-x86_64/PKGBUILD |   42 -
 3 files changed, 86 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 12:36:54 UTC (rev 186319)
+++ community-i686/PKGBUILD 2016-08-10 12:38:25 UTC (rev 186320)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-epoch=1
-pkgver=1.10.0
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
-'SKIP')
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make CFLAGS="$CFLAGS -fPIC -w"
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 186319, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 12:38:25 UTC (rev 186320)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+epoch=1
+pkgver=1.10.0
+pkgrel=2
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
+depends=('gcc')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
+'SKIP')
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make CFLAGS="$CFLAGS -fPIC -w"
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 12:36:54 UTC (rev 186319)
+++ community-x86_64/PKGBUILD   2016-08-10 12:38:25 UTC (rev 186320)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-epoch=1
-pkgver=1.10.0
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
-'SKIP')
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --re

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

2016-08-10 Thread Jonathan Steel
Date: Wednesday, August 10, 2016 @ 12:39:08
  Author: jsteel
Revision: 186321

upgpkg: python-botocore 1.4.44-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 12:38:25 UTC (rev 186320)
+++ PKGBUILD2016-08-10 12:39:08 UTC (rev 186321)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.4.43
+pkgver=1.4.44
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('13c9f23f0d2274230eab8dabb259f666')
+md5sums=('0546435f7a759bfb439f27dbb4149c55')
 
 build() {
   cd botocore-$pkgver


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

2016-08-10 Thread Jonathan Steel
Date: Wednesday, August 10, 2016 @ 12:39:40
  Author: jsteel
Revision: 186323

upgpkg: aws-cli 1.10.54-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 12:39:20 UTC (rev 186322)
+++ PKGBUILD2016-08-10 12:39:40 UTC (rev 186323)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.10.53
+pkgver=1.10.54
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('0c8f3d178a42824d9ced3d7070a7764f')
+md5sums=('a2a185f556ba5ea2bb1a2fe004c7aa58')
 
 build() {
   cd $pkgname-$pkgver


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

2016-08-10 Thread Jonathan Steel
Date: Wednesday, August 10, 2016 @ 12:39:47
  Author: jsteel
Revision: 186324

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 186323, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 12:39:40 UTC (rev 186323)
+++ PKGBUILD2016-08-10 12:39:47 UTC (rev 186324)
@@ -1,32 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.10.53
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli";
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('0c8f3d178a42824d9ced3d7070a7764f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 186323, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 12:39:47 UTC (rev 186324)
@@ -0,0 +1,32 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.10.54
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli";
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('a2a185f556ba5ea2bb1a2fe004c7aa58')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+}


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

2016-08-10 Thread Jonathan Steel
Date: Wednesday, August 10, 2016 @ 12:39:20
  Author: jsteel
Revision: 186322

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 12:39:08 UTC (rev 186321)
+++ PKGBUILD2016-08-10 12:39:20 UTC (rev 186322)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.4.43
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore";
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('13c9f23f0d2274230eab8dabb259f666')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 186321, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 12:39:20 UTC (rev 186322)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.4.44
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore";
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('0546435f7a759bfb439f27dbb4149c55')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 12:48:57
  Author: arodseth
Revision: 186325

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 12:39:47 UTC (rev 186324)
+++ community-i686/PKGBUILD 2016-08-10 12:48:57 UTC (rev 186325)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-epoch=1
-pkgver=1.10.0
-pkgrel=2
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
-depends=('gcc')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
-'SKIP')
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make CFLAGS="$CFLAGS -fPIC -w"
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 186324, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 12:48:57 UTC (rev 186325)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+epoch=1
+pkgver=1.10.0
+pkgrel=2
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
+depends=('gcc')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
+'SKIP')
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make CFLAGS="$CFLAGS -fPIC -w"
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 12:39:47 UTC (rev 186324)
+++ community-x86_64/PKGBUILD   2016-08-10 12:48:57 UTC (rev 186325)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-epoch=1
-pkgver=1.10.0
-pkgrel=2
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc')
-depends=('gcc')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
-'SKIP')
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configu

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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 13:36:07
  Author: arojas
Revision: 186326

Update to 0.25

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 12:48:57 UTC (rev 186325)
+++ PKGBUILD2016-08-10 13:36:07 UTC (rev 186326)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.24
+pkgver=0.25
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2";
 'COPYING.BSD')
-sha256sums=('d7acba4e36ed6478a4a27a8cc9359b45f2ecdbcb5f46e6a19e6fdd4252b3c24c'
+sha256sums=('b2669f4317c511895f33d5d11d14a5d9535340c6fb20effe4dd37ab6c152e057'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 13:37:10
  Author: arojas
Revision: 186327

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

Added:
  qt5ct/repos/community-i686/COPYING.BSD
(from rev 186326, qt5ct/trunk/COPYING.BSD)
  qt5ct/repos/community-i686/PKGBUILD
(from rev 186326, qt5ct/trunk/PKGBUILD)
  qt5ct/repos/community-x86_64/COPYING.BSD
(from rev 186326, qt5ct/trunk/COPYING.BSD)
  qt5ct/repos/community-x86_64/PKGBUILD
(from rev 186326, qt5ct/trunk/PKGBUILD)
Deleted:
  qt5ct/repos/community-i686/COPYING.BSD
  qt5ct/repos/community-i686/PKGBUILD
  qt5ct/repos/community-x86_64/COPYING.BSD
  qt5ct/repos/community-x86_64/PKGBUILD

--+
 /COPYING.BSD |   60 +++
 /PKGBUILD|   62 +
 community-i686/COPYING.BSD   |   30 ---
 community-i686/PKGBUILD  |   31 
 community-x86_64/COPYING.BSD |   30 ---
 community-x86_64/PKGBUILD|   31 
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/COPYING.BSD
===
--- community-i686/COPYING.BSD  2016-08-10 13:36:07 UTC (rev 186326)
+++ community-i686/COPYING.BSD  2016-08-10 13:37:10 UTC (rev 186327)
@@ -1,30 +0,0 @@
-Software License Agreement (BSD License)
-
-Copyright (c) 2015, Ilya Kotov
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without 
modification,
-are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this 
-  list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright notice, 
this
-  list of conditions and the following disclaimer in the documentation and/or
-  other materials provided with the distribution.
-
-* Neither the name of schillmania.com nor the names of its contributors may be
-  used to endorse or promote products derived from this software without
-  specific prior written permission from schillmania.com.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-

Copied: qt5ct/repos/community-i686/COPYING.BSD (from rev 186326, 
qt5ct/trunk/COPYING.BSD)
===
--- community-i686/COPYING.BSD  (rev 0)
+++ community-i686/COPYING.BSD  2016-08-10 13:37:10 UTC (rev 186327)
@@ -0,0 +1,30 @@
+Software License Agreement (BSD License)
+
+Copyright (c) 2015, Ilya Kotov
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this 
+  list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, 
this
+  list of conditions and the following disclaimer in the documentation and/or
+  other materials provided with the distribution.
+
+* Neither the name of schillmania.com nor the names of its contributors may be
+  used to endorse or promote products derived from this software without
+  specific prior written permission from schillmania.com.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD   

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

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 15:56:36
  Author: jlichtblau
Revision: 186329

archrelease: copy trunk to community-any

Added:
  offlineimap/repos/community-any/PKGBUILD
(from rev 186328, offlineimap/trunk/PKGBUILD)
  offlineimap/repos/community-any/offlineimap.changelog
(from rev 186328, offlineimap/trunk/offlineimap.changelog)
Deleted:
  offlineimap/repos/community-any/PKGBUILD
  offlineimap/repos/community-any/offlineimap.changelog

---+
 PKGBUILD  |   96 
 offlineimap.changelog |  185 
 2 files changed, 142 insertions(+), 139 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 15:56:20 UTC (rev 186328)
+++ PKGBUILD2016-08-10 15:56:36 UTC (rev 186329)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Callan Barrett 
-# Contributor: mucknert 
-
-pkgname=offlineimap
-pkgver=7.0.4
-pkgrel=1
-pkgdesc='Synchronizes emails between two repositories'
-arch=('any')
-url='http://offlineimap.org/'
-license=('GPL')
-depends=('python2-six')
-makedepends=('asciidoc')
-changelog=$pkgname.changelog
-source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
-sha256sums=('3f848027a5b9865061f9ff56bc8a0ee6d7370f53fe5bb5a76e3e9220fea63ebc')
-
-prepare() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  find . -type f -exec sed '1s,^#! \?/usr/bin/\(env 
\|\)python$,#!/usr/bin/python2,' -i {} \;
-}
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  python2 setup.py build
-
-  cd "${srcdir}"/${pkgname}-${pkgver}/docs
-  make man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm644 docs/offlineimap.1 
"${pkgdir}"/usr/share/man/man1/offlineimap.1
-  install -Dm644 docs/offlineimapui.7 
"${pkgdir}"/usr/share/man/man7/offlineimapui.7
-  install -Dm644 offlineimap.conf 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf
-  install -Dm644 offlineimap.conf.minimal 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf.minimal
-
-#systemd files
-  install -Dm644 contrib/systemd/mail.target 
"${pkgdir}"/usr/lib/systemd/user/mail.target
-  install -Dm644 contrib/systemd/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname.service
-  install -Dm644 contrib/systemd/$pkgname.timer 
"${pkgdir}"/usr/lib/systemd/user/$pkgname.timer
-  install -Dm644 contrib/systemd/$pkgname@.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname@.service
-  install -Dm644 contrib/systemd/$pkgname@.timer 
"${pkgdir}"/usr/lib/systemd/user/$pkgname@.timer
-}

Copied: offlineimap/repos/community-any/PKGBUILD (from rev 186328, 
offlineimap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 15:56:36 UTC (rev 186329)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Callan Barrett 
+# Contributor: mucknert 
+
+pkgname=offlineimap
+pkgver=7.0.5
+pkgrel=1
+pkgdesc='Synchronizes emails between two repositories'
+arch=('any')
+url='http://offlineimap.org/'
+license=('GPL')
+depends=('python2-six')
+makedepends=('asciidoc')
+changelog=$pkgname.changelog
+source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
+sha256sums=('76668c032d3e1c845addaf99b7f4dc61bbb2e06038a85322347d46d2233e9517')
+
+prepare() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  find . -type f -exec sed '1s,^#! \?/usr/bin/\(env 
\|\)python$,#!/usr/bin/python2,' -i {} \;
+}
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  python2 setup.py build
+
+  cd "${srcdir}"/${pkgname}-${pkgver}/docs
+  make man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 docs/offlineimap.1 
"${pkgdir}"/usr/share/man/man1/offlineimap.1
+  install -Dm644 docs/offlineimapui.7 
"${pkgdir}"/usr/share/man/man7/offlineimapui.7
+  install -Dm644 offlineimap.conf 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf
+  install -Dm644 offlineimap.conf.minimal 
"${pkgdir}"/usr/share/offlineimap/offlineimap.conf.minimal
+
+#systemd files
+  install -Dm644 contrib/systemd/mail.target 
"${pkgdir}"/usr/lib/systemd/user/mail.target
+  install -Dm644 contrib/systemd/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname.service
+  install -Dm644 contrib/systemd/$pkgname.timer 
"${pkgdir}"/usr/lib/systemd/user/$pkgname.timer
+  install -Dm644 contrib/systemd/$pkgname@.service 
"${pkgdir}"/usr/lib/systemd/user/$pkgname@.service
+  install -Dm644 contrib/systemd/$pkgname@.timer 
"${pkgdir}"/usr/lib/systemd/user/$pkgname@.timer
+}

Deleted: offlineimap.changelog
===
--- offlineimap.changelog   2016-08-10

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

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 15:56:20
  Author: jlichtblau
Revision: 186328

upgpkg: offlineimap 7.0.5-1 - new upstream release

Modified:
  offlineimap/trunk/PKGBUILD
  offlineimap/trunk/offlineimap.changelog

---+
 PKGBUILD  |4 ++--
 offlineimap.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 13:37:10 UTC (rev 186327)
+++ PKGBUILD2016-08-10 15:56:20 UTC (rev 186328)
@@ -5,7 +5,7 @@
 # Contributor: mucknert 
 
 pkgname=offlineimap
-pkgver=7.0.4
+pkgver=7.0.5
 pkgrel=1
 pkgdesc='Synchronizes emails between two repositories'
 arch=('any')
@@ -15,7 +15,7 @@
 makedepends=('asciidoc')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz)
-sha256sums=('3f848027a5b9865061f9ff56bc8a0ee6d7370f53fe5bb5a76e3e9220fea63ebc')
+sha256sums=('76668c032d3e1c845addaf99b7f4dc61bbb2e06038a85322347d46d2233e9517')
 
 prepare() {
   cd "${srcdir}"/${pkgname}-${pkgver}

Modified: offlineimap.changelog
===
--- offlineimap.changelog   2016-08-10 13:37:10 UTC (rev 186327)
+++ offlineimap.changelog   2016-08-10 15:56:20 UTC (rev 186328)
@@ -1,3 +1,6 @@
+2016-08-10 Jaroslav Lichtblau 
+   * offlineimap 7.0.5-1
+
 2016-08-03 Jaroslav Lichtblau 
* offlineimap 7.0.4-1
 


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:10:41
  Author: spupykin
Revision: 186330

Modified:
  arandr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 15:56:36 UTC (rev 186329)
+++ PKGBUILD2016-08-10 18:10:41 UTC (rev 186330)
@@ -11,7 +11,7 @@
 license=('GPL3')
 depends=('pygtk' 'xorg-xrandr')
 makedepends=('python2-docutils')
-source=(http://christian.amsuess.com/tools/$pkgname/files/${pkgname}_$pkgver.orig.tar.gz)
+source=(http://christian.amsuess.com/tools/$pkgname/files/${pkgname}-$pkgver.tar.gz)
 md5sums=('d53faecdc02292b648f554658d9bd99e')
 
 package() {


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:11:16
  Author: spupykin
Revision: 186331

upgpkg: python-xlib 0.17-1

upd

Modified:
  python-xlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:10:41 UTC (rev 186330)
+++ PKGBUILD2016-08-10 18:11:16 UTC (rev 186331)
@@ -5,7 +5,7 @@
 
 pkgname=('python-xlib' 'python2-xlib')
 pkgbase=python-xlib
-pkgver=0.16
+pkgver=0.17
 pkgrel=1
 pkgdesc="A fully functional X client library for Python programs"
 url="https://github.com/python-xlib/python-xlib";
@@ -12,8 +12,8 @@
 arch=('any')
 license=('GPL')
 makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/python-xlib/python-xlib/releases/download/$pkgver/python-xlib-$pkgver.tar.xz";)
-md5sums=('fc89ed1b66001d91362256136b631aed')
+source=("https://github.com/python-xlib/python-xlib/releases/download/$pkgver/python-xlib-$pkgver.tar.bz2";)
+md5sums=('8b392bac1e634f605aa4dac3128dab95')
 
 package_python2-xlib() {
   depends=('python2')


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:11:27
  Author: spupykin
Revision: 186332

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:11:16 UTC (rev 186331)
+++ PKGBUILD2016-08-10 18:11:27 UTC (rev 186332)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jeff Mickey 
-# Contributor: Pappa < jcberg @ gmail . com >
-
-pkgname=('python-xlib' 'python2-xlib')
-pkgbase=python-xlib
-pkgver=0.16
-pkgrel=1
-pkgdesc="A fully functional X client library for Python programs"
-url="https://github.com/python-xlib/python-xlib";
-arch=('any')
-license=('GPL')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/python-xlib/python-xlib/releases/download/$pkgver/python-xlib-$pkgver.tar.xz";)
-md5sums=('fc89ed1b66001d91362256136b631aed')
-
-package_python2-xlib() {
-  depends=('python2')
-
-  cd $srcdir/python-xlib-$pkgver
-  python2 setup.py install --root=$pkgdir
-}
-
-package_python-xlib() {
-  depends=('python')
-
-  cd $srcdir/python-xlib-$pkgver
-  python setup.py install --root=$pkgdir
-}

Copied: python-xlib/repos/community-any/PKGBUILD (from rev 186331, 
python-xlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:11:27 UTC (rev 186332)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jeff Mickey 
+# Contributor: Pappa < jcberg @ gmail . com >
+
+pkgname=('python-xlib' 'python2-xlib')
+pkgbase=python-xlib
+pkgver=0.17
+pkgrel=1
+pkgdesc="A fully functional X client library for Python programs"
+url="https://github.com/python-xlib/python-xlib";
+arch=('any')
+license=('GPL')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("https://github.com/python-xlib/python-xlib/releases/download/$pkgver/python-xlib-$pkgver.tar.bz2";)
+md5sums=('8b392bac1e634f605aa4dac3128dab95')
+
+package_python2-xlib() {
+  depends=('python2')
+
+  cd $srcdir/python-xlib-$pkgver
+  python2 setup.py install --root=$pkgdir
+}
+
+package_python-xlib() {
+  depends=('python')
+
+  cd $srcdir/python-xlib-$pkgver
+  python setup.py install --root=$pkgdir
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:23:10
  Author: spupykin
Revision: 186333

upgpkg: arandr 0.1.9-2

upd

Modified:
  arandr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:11:27 UTC (rev 186332)
+++ PKGBUILD2016-08-10 18:23:10 UTC (rev 186333)
@@ -4,7 +4,7 @@
 
 pkgname=arandr
 pkgver=0.1.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Provide a simple visual front end for XRandR 1.2."
 arch=('any')
 url="http://christian.amsuess.com/tools/arandr/";


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:23:20
  Author: spupykin
Revision: 186334

archrelease: copy trunk to community-any

Added:
  arandr/repos/community-any/PKGBUILD
(from rev 186333, arandr/trunk/PKGBUILD)
Deleted:
  arandr/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:23:10 UTC (rev 186333)
+++ PKGBUILD2016-08-10 18:23:20 UTC (rev 186334)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Clément DEMOULINS 
-
-pkgname=arandr
-pkgver=0.1.9
-pkgrel=1
-pkgdesc="Provide a simple visual front end for XRandR 1.2."
-arch=('any')
-url="http://christian.amsuess.com/tools/arandr/";
-license=('GPL3')
-depends=('pygtk' 'xorg-xrandr')
-makedepends=('python2-docutils')
-source=(http://christian.amsuess.com/tools/$pkgname/files/${pkgname}_$pkgver.orig.tar.gz)
-md5sums=('d53faecdc02292b648f554658d9bd99e')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  python2 setup.py install --prefix=/usr --root=$pkgdir
-}

Copied: arandr/repos/community-any/PKGBUILD (from rev 186333, 
arandr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:23:20 UTC (rev 186334)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Clément DEMOULINS 
+
+pkgname=arandr
+pkgver=0.1.9
+pkgrel=2
+pkgdesc="Provide a simple visual front end for XRandR 1.2."
+arch=('any')
+url="http://christian.amsuess.com/tools/arandr/";
+license=('GPL3')
+depends=('pygtk' 'xorg-xrandr')
+makedepends=('python2-docutils')
+source=(http://christian.amsuess.com/tools/$pkgname/files/${pkgname}-$pkgver.tar.gz)
+md5sums=('d53faecdc02292b648f554658d9bd99e')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:23:40
  Author: spupykin
Revision: 186337

upgpkg: gpsman 6.4.4.2-1

upd

Modified:
  gpsman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:23:37 UTC (rev 186336)
+++ PKGBUILD2016-08-10 18:23:40 UTC (rev 186337)
@@ -3,8 +3,8 @@
 # Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
 
 pkgname=gpsman
-pkgver=6.4.4
-pkgrel=2
+pkgver=6.4.4.2
+pkgrel=1
 pkgdesc="Graphical GPS data manager for preparing, inspecting and editing GPS 
data"
 arch=('any')
 url="http://gpsman.sourceforge.net/";
@@ -13,8 +13,8 @@
 makedepends=('gendesk')
 optdepends=('gpsmanshp: shapefile support')
 install=gpsman.install
-source=(http://downloads.sourceforge.net/project/gpsman/distrib/gpsman-$pkgver.tgz)
-md5sums=('6729d559d0be31f883bab23cd983daf1')
+source=(http://sourceforge.net/projects/gpsman/files/distrib/gpsman-$pkgver.tgz)
+md5sums=('0f3819caf6479d5cd529bf6dc8e04de3')
 
 package() {
   cd "$srcdir"


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:23:37
  Author: spupykin
Revision: 186336

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 18:23:23 UTC (rev 186335)
+++ community-i686/PKGBUILD 2016-08-10 18:23:37 UTC (rev 186336)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: ViNS 
-
-pkgname=dsniff
-pkgver=2.4b1
-pkgrel=24
-pkgdesc="Collection of tools for network auditing and penetration testing"
-url="http://www.monkey.org/~dugsong/dsniff/";
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids')
-source=("http://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz";
-
"http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-18.diff.gz";)
-md5sums=('2f761fa3475682a7512b0b43568ee7d6'
- 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
-
-prepare() {
-  cd $srcdir/$pkgname-2.4
-  patch -N < "${srcdir}"/dsniff_2.4b1+debian-18.diff
-  for i in *.dpatch; do
-patch -N < "$i"
-  done
-  sed -i 's|${CC-cc} -E|${CC-cc} -O2 -E|g' configure
-}
-
-build() {
-  cd $srcdir/$pkgname-2.4
-  LDFLAGS="-lresolv -lglib-2.0 -lgthread-2.0 $LDFLAGS" ./configure \
---prefix=/usr --sbindir=/usr/bin
-  make -j1
-}
-
-package() {
-  cd "$srcdir"/$pkgname-2.4
-  make install_prefix="$pkgdir" install
-  install -D -m0644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
-  install -d "$pkgdir"/usr/share
-  mv "$pkgdir"/usr/man "$pkgdir"/usr/share/
-}

Copied: dsniff/repos/community-i686/PKGBUILD (from rev 186335, 
dsniff/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 18:23:37 UTC (rev 186336)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: ViNS 
+
+pkgname=dsniff
+pkgver=2.4b1
+pkgrel=25
+pkgdesc="Collection of tools for network auditing and penetration testing"
+url="http://www.monkey.org/~dugsong/dsniff/";
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids')
+source=("https://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz";
+
"http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-22.1.debian.tar.gz";)
+md5sums=('2f761fa3475682a7512b0b43568ee7d6'
+ 'e80551b70dc3976d4c3319cca9eb')
+
+prepare() {
+  cd $srcdir/$pkgname-2.4
+  for i in $(cat ../debian/patches/series); do
+patch -N < "../debian/patches/$i"
+  done
+  sed -i 's|${CC-cc} -E|${CC-cc} -O2 -E|g' configure
+}
+
+build() {
+  cd $srcdir/$pkgname-2.4
+  LDFLAGS="-lresolv -lglib-2.0 -lgthread-2.0 $LDFLAGS" ./configure \
+--prefix=/usr --sbindir=/usr/bin
+  make -j1
+}
+
+package() {
+  cd "$srcdir"/$pkgname-2.4
+  make install_prefix="$pkgdir" install
+  install -D -m0644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
+  install -d "$pkgdir"/usr/share
+  mv "$pkgdir"/usr/man "$pkgdir"/usr/share/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 18:23:23 UTC (rev 186335)
+++ community-x86_64/PKGBUILD   2016-08-10 18:23:37 UTC (rev 186336)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: ViNS 
-
-pkgname=dsniff
-pkgver=2.4b1
-pkgrel=24
-pkgdesc="Collection of tools for network auditing and penetration testing"
-url="http://www.monkey.org/~dugsong/dsniff/";
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids')
-source=("http://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz";
-
"http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-18.diff.gz";)
-md5sums=('2f761fa3475682a7512b0b43568ee7d6'
- 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
-
-prepare() {
-  cd $srcdir/$pkgname-2.4
-  patch -N < "${srcdir}"/dsniff_2.4b1+debian-18.diff
-  for i in *.dpatch; do
-patch -N < "$i"
-  done
-  sed -i 's|${CC-cc} -E|${CC-cc} -O2 -E|g' configure
-}
-
-build() {
-  cd $srcdir/$pkgname-2.4
-  LDFLAGS="-lresolv -lglib-2.0 -lgthread-2.0 $LDFLAGS" ./configure \
---prefix=/usr --sbindir=/usr/bin
-  make -j1
-}
-
-package() {
-  cd "$srcdir"/$pkgname-2.4
-  make insta

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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:23:23
  Author: spupykin
Revision: 186335

upgpkg: dsniff 2.4b1-25

upd

Modified:
  dsniff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:23:20 UTC (rev 186334)
+++ PKGBUILD2016-08-10 18:23:23 UTC (rev 186335)
@@ -4,22 +4,21 @@
 
 pkgname=dsniff
 pkgver=2.4b1
-pkgrel=24
+pkgrel=25
 pkgdesc="Collection of tools for network auditing and penetration testing"
 url="http://www.monkey.org/~dugsong/dsniff/";
 arch=('i686' 'x86_64')
 license=('BSD')
 depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids')
-source=("http://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz";
-
"http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-18.diff.gz";)
+source=("https://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz";
+
"http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-22.1.debian.tar.gz";)
 md5sums=('2f761fa3475682a7512b0b43568ee7d6'
- 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
+ 'e80551b70dc3976d4c3319cca9eb')
 
 prepare() {
   cd $srcdir/$pkgname-2.4
-  patch -N < "${srcdir}"/dsniff_2.4b1+debian-18.diff
-  for i in *.dpatch; do
-patch -N < "$i"
+  for i in $(cat ../debian/patches/series); do
+patch -N < "../debian/patches/$i"
   done
   sed -i 's|${CC-cc} -E|${CC-cc} -O2 -E|g' configure
 }


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:23:48
  Author: spupykin
Revision: 186338

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   86 +++
 gpsman.install |   14 
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:23:40 UTC (rev 186337)
+++ PKGBUILD2016-08-10 18:23:48 UTC (rev 186338)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-
-pkgname=gpsman
-pkgver=6.4.4
-pkgrel=2
-pkgdesc="Graphical GPS data manager for preparing, inspecting and editing GPS 
data"
-arch=('any')
-url="http://gpsman.sourceforge.net/";
-license=('GPL')
-depends=('tcl' 'tk')
-makedepends=('gendesk')
-optdepends=('gpsmanshp: shapefile support')
-install=gpsman.install
-source=(http://downloads.sourceforge.net/project/gpsman/distrib/gpsman-$pkgver.tgz)
-md5sums=('6729d559d0be31f883bab23cd983daf1')
-
-package() {
-  cd "$srcdir"
-  gendesk $startdir/PKGBUILD
-
-  cd "${pkgname}-${pkgver}"
-  mkdir -p ${pkgdir}/usr/{bin,share/${pkgname}}
-
-  # set path to program files
-  sed -i "s|set SRCDIR gmsrc|set SRCDIR /usr/share/gpsman|g" ./gpsman.tcl
-  install -m755 gpsman.tcl ${pkgdir}/usr/bin/gpsman.tcl
-
-  # install a gpsman launcher
-  install -m755 util/gpsman.sh ${pkgdir}/usr/bin/gpsman
-
-  #install program files
-  cp -r gmsrc/* ${pkgdir}/usr/share/gpsman/
-  chmod 755 ${pkgdir}/usr/share/gpsman/*.tcl
-  chmod -R 755 ${pkgdir}/usr/share/gpsman/gmicons
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/${pkgname}.desktop \
-  ${pkgdir}/usr/share/applications/${pkgname}.desktop
-  install -Dm644 ${srcdir}/${pkgname}.png \
-  ${pkgdir}/usr/share/pixmaps/${pkgname}.png
-}

Copied: gpsman/repos/community-any/PKGBUILD (from rev 186337, 
gpsman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:23:48 UTC (rev 186338)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+
+pkgname=gpsman
+pkgver=6.4.4.2
+pkgrel=1
+pkgdesc="Graphical GPS data manager for preparing, inspecting and editing GPS 
data"
+arch=('any')
+url="http://gpsman.sourceforge.net/";
+license=('GPL')
+depends=('tcl' 'tk')
+makedepends=('gendesk')
+optdepends=('gpsmanshp: shapefile support')
+install=gpsman.install
+source=(http://sourceforge.net/projects/gpsman/files/distrib/gpsman-$pkgver.tgz)
+md5sums=('0f3819caf6479d5cd529bf6dc8e04de3')
+
+package() {
+  cd "$srcdir"
+  gendesk $startdir/PKGBUILD
+
+  cd "${pkgname}-${pkgver}"
+  mkdir -p ${pkgdir}/usr/{bin,share/${pkgname}}
+
+  # set path to program files
+  sed -i "s|set SRCDIR gmsrc|set SRCDIR /usr/share/gpsman|g" ./gpsman.tcl
+  install -m755 gpsman.tcl ${pkgdir}/usr/bin/gpsman.tcl
+
+  # install a gpsman launcher
+  install -m755 util/gpsman.sh ${pkgdir}/usr/bin/gpsman
+
+  #install program files
+  cp -r gmsrc/* ${pkgdir}/usr/share/gpsman/
+  chmod 755 ${pkgdir}/usr/share/gpsman/*.tcl
+  chmod -R 755 ${pkgdir}/usr/share/gpsman/gmicons
+
+  # install some freedesktop.org compatibility
+  install -Dm644 ${srcdir}/${pkgname}.desktop \
+  ${pkgdir}/usr/share/applications/${pkgname}.desktop
+  install -Dm644 ${srcdir}/${pkgname}.png \
+  ${pkgdir}/usr/share/pixmaps/${pkgname}.png
+}

Deleted: gpsman.install
===
--- gpsman.install  2016-08-10 18:23:40 UTC (rev 186337)
+++ gpsman.install  2016-08-10 18:23:48 UTC (rev 186338)
@@ -1,7 +0,0 @@
-post_install() {
-  echo
-  echo " : You should change the path to your gps serial device in"
-  echo " :   /usr/bin/gpsman"
-  echo
-  echo " : Config options are stored in /usr/share/gpsman/config.tcl"
-}

Copied: gpsman/repos/community-any/gpsman.install (from rev 186337, 
gpsman/trunk/gpsman.install)
===
--- gpsman.install  (rev 0)
+++ gpsman.install  2016-08-10 18:23:48 UTC (rev 186338)
@@ -0,0 +1,7 @@
+post_install() {
+  echo
+  echo " : You should change the path to your gps serial device in"
+  echo " :   /usr/bin/gpsman"
+  echo
+  echo " : Config options are stored in /usr/share/gpsman/config.tcl"
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:24:56
  Author: spupykin
Revision: 186339

upgpkg: gtk-engine-aurora 1.5.1-5

upd

Modified:
  gtk-engine-aurora/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:23:48 UTC (rev 186338)
+++ PKGBUILD2016-08-10 18:24:56 UTC (rev 186339)
@@ -5,7 +5,7 @@
 
 pkgname=gtk-engine-aurora
 pkgver=1.5.1
-pkgrel=4
+pkgrel=5
 pkgdesc="gtk-engine: latest member of the clearlooks family"
 arch=('i686' 'x86_64')
 
url="http://www.gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438";
@@ -13,7 +13,7 @@
 depends=('gtk2')
 makedepends=('pkgconfig')
 replaces=('gtk-aurora-engine')
-source=(http://www.gnome-look.org/CONTENT/content-files/56438-aurora-${pkgver}.tar.bz2)
+source=(https://dl.opendesktop.org/api/files/download/id/1460970469/56438-aurora-$pkgver.tar.bz2)
 md5sums=('5eeea57c5938306ad7ccfc7cd71d009d')
 
 build() {


[arch-commits] Commit in gtk-engine-aurora/repos (4 files)

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:25:10
  Author: spupykin
Revision: 186340

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

Added:
  gtk-engine-aurora/repos/community-i686/PKGBUILD
(from rev 186339, gtk-engine-aurora/trunk/PKGBUILD)
  gtk-engine-aurora/repos/community-x86_64/PKGBUILD
(from rev 186339, gtk-engine-aurora/trunk/PKGBUILD)
Deleted:
  gtk-engine-aurora/repos/community-i686/PKGBUILD
  gtk-engine-aurora/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 18:24:56 UTC (rev 186339)
+++ community-i686/PKGBUILD 2016-08-10 18:25:10 UTC (rev 186340)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Dmitry N. Shilov 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=gtk-engine-aurora
-pkgver=1.5.1
-pkgrel=4
-pkgdesc="gtk-engine: latest member of the clearlooks family"
-arch=('i686' 'x86_64')
-url="http://www.gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438";
-license=('GPL')
-depends=('gtk2')
-makedepends=('pkgconfig')
-replaces=('gtk-aurora-engine')
-source=(http://www.gnome-look.org/CONTENT/content-files/56438-aurora-${pkgver}.tar.bz2)
-md5sums=('5eeea57c5938306ad7ccfc7cd71d009d')
-
-build() {
-   cd ${srcdir}
-   tar xzf aurora-gtk-engine-1.5.tar.gz -C ${srcdir}
-   cd ${srcdir}/aurora-1.5
-   ./configure --prefix=/usr --enable-animation
-   make
-}
-
-package() {
-   cd ${srcdir}/aurora-1.5
-   make DESTDIR=${pkgdir} install
-   mkdir -p ${pkgdir}/usr/share/themes
-   tar xjf ../Aurora.tar.bz2 -C ${pkgdir}/usr/share/themes
-   chown -R root:root ${pkgdir}/usr/share/themes
-}

Copied: gtk-engine-aurora/repos/community-i686/PKGBUILD (from rev 186339, 
gtk-engine-aurora/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 18:25:10 UTC (rev 186340)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dmitry N. Shilov 
+# Maintainer: Daniel J Griffiths 
+
+pkgname=gtk-engine-aurora
+pkgver=1.5.1
+pkgrel=5
+pkgdesc="gtk-engine: latest member of the clearlooks family"
+arch=('i686' 'x86_64')
+url="http://www.gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438";
+license=('GPL')
+depends=('gtk2')
+makedepends=('pkgconfig')
+replaces=('gtk-aurora-engine')
+source=(https://dl.opendesktop.org/api/files/download/id/1460970469/56438-aurora-$pkgver.tar.bz2)
+md5sums=('5eeea57c5938306ad7ccfc7cd71d009d')
+
+build() {
+   cd ${srcdir}
+   tar xzf aurora-gtk-engine-1.5.tar.gz -C ${srcdir}
+   cd ${srcdir}/aurora-1.5
+   ./configure --prefix=/usr --enable-animation
+   make
+}
+
+package() {
+   cd ${srcdir}/aurora-1.5
+   make DESTDIR=${pkgdir} install
+   mkdir -p ${pkgdir}/usr/share/themes
+   tar xjf ../Aurora.tar.bz2 -C ${pkgdir}/usr/share/themes
+   chown -R root:root ${pkgdir}/usr/share/themes
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 18:24:56 UTC (rev 186339)
+++ community-x86_64/PKGBUILD   2016-08-10 18:25:10 UTC (rev 186340)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Dmitry N. Shilov 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=gtk-engine-aurora
-pkgver=1.5.1
-pkgrel=4
-pkgdesc="gtk-engine: latest member of the clearlooks family"
-arch=('i686' 'x86_64')
-url="http://www.gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438";
-license=('GPL')
-depends=('gtk2')
-makedepends=('pkgconfig')
-replaces=('gtk-aurora-engine')
-source=(http://www.gnome-look.org/CONTENT/content-files/56438-aurora-${pkgver}.tar.bz2)
-md5sums=('5eeea57c5938306ad7ccfc7cd71d009d')
-
-build() {
-   cd ${srcdir}
-   tar xzf aurora-gtk-engine-1.5.tar.gz -C ${srcdir}
-   cd ${srcdir}/aurora-1.5
-   ./configure --prefix=/usr --enable-animation
-   make
-}
-
-package() {
-   cd ${srcdir}/aurora-1.5
-   make DESTDIR=${pkgdir} install
-   mkdir -p ${pkgdir}/usr/share/themes
-   tar xjf ../Aurora.tar.bz2 -C ${pkgdir}/usr/share/themes
-   chown -R root:root ${pkgdir}/usr/share/themes
-}

Copied: gtk-engine-aurora/repos/community-x86_64/PKGBUILD (from rev 186339, 
gtk-engine-aurora/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-08-10 18:25:10 UTC (rev 186340)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor

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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:26:22
  Author: spupykin
Revision: 186341

upgpkg: hsolink 1.0.118-10

upd

Modified:
  hsolink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:25:10 UTC (rev 186340)
+++ PKGBUILD2016-08-10 18:26:22 UTC (rev 186341)
@@ -4,7 +4,7 @@
 
 pkgname=hsolink
 pkgver=1.0.118
-pkgrel=9
+pkgrel=10
 pkgdesc="HSO command line connection utility"
 arch=('i686' 'x86_64')
 url="http://www.pharscape.org/hsolinkcontrol.html";
@@ -11,9 +11,16 @@
 license=('GPL2')
 depends=('ozerocdoff' 'net-tools')
 install=hsolink.install
-source=("http://www.pharscape.org/downloads1.html/$pkgname-$pkgver.tar.gz";)
-md5sums=('8b5b179c487b7ad95112fe74dea7e302')
+source=("https://launchpad.net/ubuntu/+archive/primary/+files/hsolink_$pkgver.orig.tar.gz";
+   
"https://launchpad.net/ubuntu/+archive/primary/+files/hsolink_$pkgver-3.diff.gz";)
+md5sums=('8b5b179c487b7ad95112fe74dea7e302'
+ 'fe11286cdbb66f3323af5e1798e90ec3')
 
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p0 <$srcdir/hsolink_$pkgver-3.diff
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
   ./configure --prefix=/usr


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:26:35
  Author: spupykin
Revision: 186342

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

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

--+
 /PKGBUILD|   70 +
 /hsolink.install |6 +++
 community-i686/PKGBUILD  |   28 --
 community-i686/hsolink.install   |3 -
 community-x86_64/PKGBUILD|   28 --
 community-x86_64/hsolink.install |3 -
 6 files changed, 76 insertions(+), 62 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 18:26:22 UTC (rev 186341)
+++ community-i686/PKGBUILD 2016-08-10 18:26:35 UTC (rev 186342)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Geoffroy Carrier 
-
-pkgname=hsolink
-pkgver=1.0.118
-pkgrel=9
-pkgdesc="HSO command line connection utility"
-arch=('i686' 'x86_64')
-url="http://www.pharscape.org/hsolinkcontrol.html";
-license=('GPL2')
-depends=('ozerocdoff' 'net-tools')
-install=hsolink.install
-source=("http://www.pharscape.org/downloads1.html/$pkgname-$pkgver.tar.gz";)
-md5sums=('8b5b179c487b7ad95112fe74dea7e302')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  chgrp network "$pkgdir"/usr/bin/hsolinkcontrol
-  chmod ug+s "$pkgdir"/usr/bin/hsolinkcontrol
-}

Copied: hsolink/repos/community-i686/PKGBUILD (from rev 186341, 
hsolink/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 18:26:35 UTC (rev 186342)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Geoffroy Carrier 
+
+pkgname=hsolink
+pkgver=1.0.118
+pkgrel=10
+pkgdesc="HSO command line connection utility"
+arch=('i686' 'x86_64')
+url="http://www.pharscape.org/hsolinkcontrol.html";
+license=('GPL2')
+depends=('ozerocdoff' 'net-tools')
+install=hsolink.install
+source=("https://launchpad.net/ubuntu/+archive/primary/+files/hsolink_$pkgver.orig.tar.gz";
+   
"https://launchpad.net/ubuntu/+archive/primary/+files/hsolink_$pkgver-3.diff.gz";)
+md5sums=('8b5b179c487b7ad95112fe74dea7e302'
+ 'fe11286cdbb66f3323af5e1798e90ec3')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p0 <$srcdir/hsolink_$pkgver-3.diff
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  chgrp network "$pkgdir"/usr/bin/hsolinkcontrol
+  chmod ug+s "$pkgdir"/usr/bin/hsolinkcontrol
+}

Deleted: community-i686/hsolink.install
===
--- community-i686/hsolink.install  2016-08-10 18:26:22 UTC (rev 186341)
+++ community-i686/hsolink.install  2016-08-10 18:26:35 UTC (rev 186342)
@@ -1,3 +0,0 @@
-post_install() {
-   echo "To use hsolinkcontrol, please add yourself to the 'network' 
group."
-}

Copied: hsolink/repos/community-i686/hsolink.install (from rev 186341, 
hsolink/trunk/hsolink.install)
===
--- community-i686/hsolink.install  (rev 0)
+++ community-i686/hsolink.install  2016-08-10 18:26:35 UTC (rev 186342)
@@ -0,0 +1,3 @@
+post_install() {
+   echo "To use hsolinkcontrol, please add yourself to the 'network' 
group."
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 18:26:22 UTC (rev 186341)
+++ community-x86_64/PKGBUILD   2016-08-10 18:26:35 UTC (rev 186342)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Geoffroy Carrier 
-
-pkgname=hsolink
-pkgver=1.0.118
-pkgrel=9
-pkgdesc="HSO command line connection utility"
-arch=('i686' 'x86_64')
-url="http://www.pharscape.org/hsolinkcontrol.html";
-license=('GPL2')
-depends=('ozerocdoff' 'net-tools')
-install=hsolink.install
-source=("http://www.pharscape.org/downloads1.html/$pkgname-$pkgver.tar.gz";)
-md5sums=('8b5b179c487b7ad95112fe74dea7e302')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  c

[arch-commits] Commit in perl-cpan-perl-releases/repos/community-any (2 files)

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:42
  Author: spupykin
Revision: 186346

archrelease: copy trunk to community-any

Added:
  perl-cpan-perl-releases/repos/community-any/PKGBUILD
(from rev 186345, perl-cpan-perl-releases/trunk/PKGBUILD)
Deleted:
  perl-cpan-perl-releases/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:42:33 UTC (rev 186345)
+++ PKGBUILD2016-08-10 18:42:42 UTC (rev 186346)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: 
-
-pkgname=perl-cpan-perl-releases
-pkgver=2.58
-pkgrel=1
-pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
-arch=('any')
-url="https://metacpan.org/release/CPAN-Perl-Releases";
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz";)
-md5sums=('92b48064be4727e40f72be5a7ac0c880')
-
-build() {
-  cd CPAN-Perl-Releases-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd CPAN-Perl-Releases-$pkgver
-  make test
-}
-
-package() {
-  cd CPAN-Perl-Releases-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-cpan-perl-releases/repos/community-any/PKGBUILD (from rev 186345, 
perl-cpan-perl-releases/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:42:42 UTC (rev 186346)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: 
+
+pkgname=perl-cpan-perl-releases
+pkgver=2.88
+pkgrel=1
+pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
+arch=('any')
+url="https://metacpan.org/release/CPAN-Perl-Releases";
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz";)
+md5sums=('890ab9c5af681aa62c8989e13133c724')
+
+build() {
+  cd CPAN-Perl-Releases-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd CPAN-Perl-Releases-$pkgver
+  make test
+}
+
+package() {
+  cd CPAN-Perl-Releases-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:30
  Author: spupykin
Revision: 186344

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

Added:
  lomoco/repos/community-i686/PKGBUILD
(from rev 186343, lomoco/trunk/PKGBUILD)
  lomoco/repos/community-i686/lomoco.sh
(from rev 186343, lomoco/trunk/lomoco.sh)
  lomoco/repos/community-i686/lomoco_mouse.conf
(from rev 186343, lomoco/trunk/lomoco_mouse.conf)
  lomoco/repos/community-x86_64/PKGBUILD
(from rev 186343, lomoco/trunk/PKGBUILD)
  lomoco/repos/community-x86_64/lomoco.sh
(from rev 186343, lomoco/trunk/lomoco.sh)
  lomoco/repos/community-x86_64/lomoco_mouse.conf
(from rev 186343, lomoco/trunk/lomoco_mouse.conf)
Deleted:
  lomoco/repos/community-i686/PKGBUILD
  lomoco/repos/community-i686/lomoco.sh
  lomoco/repos/community-i686/lomoco_mouse.conf
  lomoco/repos/community-x86_64/PKGBUILD
  lomoco/repos/community-x86_64/lomoco.sh
  lomoco/repos/community-x86_64/lomoco_mouse.conf

+
 /PKGBUILD  |  104 +++
 /lomoco.sh |   42 ++
 /lomoco_mouse.conf |   10 +++
 community-i686/PKGBUILD|   50 
 community-i686/lomoco.sh   |   21 ---
 community-i686/lomoco_mouse.conf   |5 -
 community-x86_64/PKGBUILD  |   50 
 community-x86_64/lomoco.sh |   21 ---
 community-x86_64/lomoco_mouse.conf |5 -
 9 files changed, 156 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 18:42:14 UTC (rev 186343)
+++ community-i686/PKGBUILD 2016-08-10 18:42:30 UTC (rev 186344)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Jeff Mickey 
-# Contributor: Shadowhand 
-
-pkgname=lomoco
-pkgver=1.0
-pkgrel=9
-url="http://www.lomoco.org/";
-pkgdesc="Logitech USB mouse configuration program"
-license=('GPL')
-depends=('libusb-compat')
-replaces=('lmctl')
-arch=('i686' 'x86_64')
-backup=(etc/udev/lomoco_mouse.conf)
-source=(http://www.lomoco.org/${pkgname}-${pkgver}.tar.gz
-   "lomoco_mx518.patch::https://bugs.archlinux.org/task/28180?getfile=8163";
-   
"lomoco_mxair.patch::https://bugs.archlinux.org/task/36657?getfile=10920";
-   lomoco_mouse.conf
-   lomoco.sh)
-md5sums=('f5197d0a3ee81229c3eecc1e03f7b08d'
- '87aeccb99413faf9e49453215c3d0b8a'
- 'd0390dfcadae6e54a4af3e6227d24201'
- '182b10a7e4a1828a93c1d55ef7f81b97'
- 'bc92f661641265b33b27895ef24028fd')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 <$srcdir/lomoco_mx518.patch
-  patch -p0 <$srcdir/lomoco_mxair.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./autogen.sh --prefix=/usr --mandir=/usr/share/man
-  make
-  make udev-rules
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Fix and install udev rules and helpers
-  sed -i 's|/etc/sysconfig/logitech_mouse|/etc/udev/lomoco_mouse.conf|g' 
udev/udev.lomoco
-  sed -i 's|RUN="lomoco"|RUN+="lomoco.sh"|g' udev/lomoco.rules
-  sed -i 's|SYSFS|ATTR|' udev/lomoco.rules
-  install -D -m 644 udev/lomoco.rules 
${pkgdir}/usr/lib/udev/rules.d/80-lomoco.rules
-  install -D -m 755 ../lomoco.sh ${pkgdir}/usr/lib/udev/lomoco.sh
-  install -D -m 644 ../lomoco_mouse.conf ${pkgdir}/etc/udev/lomoco_mouse.conf
-}

Copied: lomoco/repos/community-i686/PKGBUILD (from rev 186343, 
lomoco/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 18:42:30 UTC (rev 186344)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jeff Mickey 
+# Contributor: Shadowhand 
+
+pkgname=lomoco
+pkgver=1.0
+pkgrel=10
+url="http://www.lomoco.org/";
+pkgdesc="Logitech USB mouse configuration program"
+license=('GPL')
+depends=('libusb-compat')
+replaces=('lmctl')
+arch=('i686' 'x86_64')
+backup=(etc/udev/lomoco_mouse.conf)
+source=(http://http.debian.net/debian/pool/main/l/lomoco/lomoco_$pkgver.0.orig.tar.gz
+   
http://http.debian.net/debian/pool/main/l/lomoco/lomoco_$pkgver.0-1.debian.tar.gz
+   
"lomoco_mxair.patch::https://bugs.archlinux.org/task/36657?getfile=10920";
+   lomoco_mouse.conf
+   lomoco.sh)
+md5sums=('f5197d0a3ee81229c3eecc1e03f7b08d'
+ 'b616b29dfe183b74f43072c22a470b8b'
+ 'd0390dfcadae6e54a4af3e6227d24201'
+ '182b10a7e4a1828a93c1d55ef7f81b97'
+ 'bc92f661641265b33b27895ef24028fd')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  for i in $(cat ../debian/patches/series); do
+patch -p1 <../debian/patches/$i
+  done
+  patch -p0 <$srcdir/lomoco_mxair.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./autogen.sh --prefix=/usr --mandir=/usr/share/man
+  make
+  make udev-rules
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make

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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:45
  Author: spupykin
Revision: 186347

upgpkg: perl-namespace-clean 0.27-1

upd

Modified:
  perl-namespace-clean/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:42:42 UTC (rev 186346)
+++ PKGBUILD2016-08-10 18:42:45 UTC (rev 186347)
@@ -5,7 +5,7 @@
 
 _cpanname="namespace-clean"
 pkgname="perl-$_cpanname"
-pkgver=0.26
+pkgver=0.27
 pkgrel=1
 pkgdesc="Keep imports and functions out of your namespace"
 arch=("any")
@@ -28,6 +28,7 @@
MODULEBUILDRC=/dev/null
 }
 sha1sums=('c16ff66b1b4c7e8a507a8c4e4d809d60040e9d33')
+sha1sums=('4aa49b40cbcc7f1ee587dc3d5ec337f77c78fc4b')
 
 build() {
prepareEnvironment


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:33
  Author: spupykin
Revision: 186345

upgpkg: perl-cpan-perl-releases 2.88-1

upd

Modified:
  perl-cpan-perl-releases/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:42:30 UTC (rev 186344)
+++ PKGBUILD2016-08-10 18:42:33 UTC (rev 186345)
@@ -2,7 +2,7 @@
 # Maintainer: 
 
 pkgname=perl-cpan-perl-releases
-pkgver=2.58
+pkgver=2.88
 pkgrel=1
 pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz";)
-md5sums=('92b48064be4727e40f72be5a7ac0c880')
+md5sums=('890ab9c5af681aa62c8989e13133c724')
 
 build() {
   cd CPAN-Perl-Releases-$pkgver


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:56
  Author: spupykin
Revision: 186349

upgpkg: perl-sgmls 1.1-1

upd

Modified:
  perl-sgmls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:42:53 UTC (rev 186348)
+++ PKGBUILD2016-08-10 18:42:56 UTC (rev 186349)
@@ -2,9 +2,10 @@
 # Maintainer: Sergej Pupykin 
 # Contributor: Sergej Pupykin 
 
+_cpanname=SGMLSpm
 pkgname=perl-sgmls
-pkgver=1.03ii
-pkgrel=5
+pkgver=1.1
+pkgrel=1
 pkgdesc="A Post-Processor for SGMLS and NSGMLS"
 arch=('any')
 url="http://search.cpan.org/dist/SGMLSpm";
@@ -11,30 +12,37 @@
 license=('GPL' 'PerlArtistic')
 depends=('perl')
 options=('!emptydirs' 'docs')
-source=(http://www.cpan.org/authors/id/D/DM/DMEGG/SGMLSpm-$pkgver.tar.gz)
-md5sums=('5bcb197fd42e67d51c739b1414d514a7')
+source=(http://search.cpan.org/CPAN/authors/id/R/RA/RAAB/SGMLSpm-$pkgver.tar.gz)
+md5sums=('746c74ae969992cedb1a2879b4168090')
 
 prepare() {
-  cd  $srcdir/SGMLSpm
-  patch Makefile <  find \${HTMLDIR} -type l -exec rm -f {} \;
-EOF
+   cd "$srcdir/$_cpanname-$pkgver"
+   find . -type f -exec chmod 0644 {} \;
 }
 
-package() {
-  cd  $srcdir/SGMLSpm
+prepareEnvironment() {
+   cd "$srcdir/$_cpanname-$pkgver"
+   export \
+   PERL_MM_USE_DEFAULT=1 \
+   PERL_AUTOINSTALL=--skipdeps \
+   PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+   PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+   MODULEBUILDRC=/dev/null
+}
 
-  mkdir -p \
-$pkgdir/usr/bin \
-$pkgdir/usr/lib/perl5/vendor_perl/SGMLS \
-$pkgdir/usr/share/doc/perl-sgmls
+build() {
+   prepareEnvironment
+   /usr/bin/perl Makefile.PL
+   make
+}
 
-  make install install_html \
-BINDIR=$pkgdir/usr/bin \
-PERL5DIR=$pkgdir/usr/lib/perl5/vendor_perl \
-HTMLDIR=$pkgdir/usr/share/doc/perl-sgmls
+check() {
+   prepareEnvironment
+   make test
+}
 
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
+package() {
+   prepareEnvironment
+   make install
+   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
 }


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:43:05
  Author: spupykin
Revision: 186350

archrelease: copy trunk to community-any

Added:
  perl-sgmls/repos/community-any/PKGBUILD
(from rev 186349, perl-sgmls/trunk/PKGBUILD)
Deleted:
  perl-sgmls/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 +
 1 file changed, 48 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:42:56 UTC (rev 186349)
+++ PKGBUILD2016-08-10 18:43:05 UTC (rev 186350)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-sgmls
-pkgver=1.03ii
-pkgrel=5
-pkgdesc="A Post-Processor for SGMLS and NSGMLS"
-arch=('any')
-url="http://search.cpan.org/dist/SGMLSpm";
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs' 'docs')
-source=(http://www.cpan.org/authors/id/D/DM/DMEGG/SGMLSpm-$pkgver.tar.gz)
-md5sums=('5bcb197fd42e67d51c739b1414d514a7')
-
-prepare() {
-  cd  $srcdir/SGMLSpm
-  patch Makefile <  find \${HTMLDIR} -type l -exec rm -f {} \;
-EOF
-}
-
-package() {
-  cd  $srcdir/SGMLSpm
-
-  mkdir -p \
-$pkgdir/usr/bin \
-$pkgdir/usr/lib/perl5/vendor_perl/SGMLS \
-$pkgdir/usr/share/doc/perl-sgmls
-
-  make install install_html \
-BINDIR=$pkgdir/usr/bin \
-PERL5DIR=$pkgdir/usr/lib/perl5/vendor_perl \
-HTMLDIR=$pkgdir/usr/share/doc/perl-sgmls
-
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-sgmls/repos/community-any/PKGBUILD (from rev 186349, 
perl-sgmls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:43:05 UTC (rev 186350)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+_cpanname=SGMLSpm
+pkgname=perl-sgmls
+pkgver=1.1
+pkgrel=1
+pkgdesc="A Post-Processor for SGMLS and NSGMLS"
+arch=('any')
+url="http://search.cpan.org/dist/SGMLSpm";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs' 'docs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RA/RAAB/SGMLSpm-$pkgver.tar.gz)
+md5sums=('746c74ae969992cedb1a2879b4168090')
+
+prepare() {
+   cd "$srcdir/$_cpanname-$pkgver"
+   find . -type f -exec chmod 0644 {} \;
+}
+
+prepareEnvironment() {
+   cd "$srcdir/$_cpanname-$pkgver"
+   export \
+   PERL_MM_USE_DEFAULT=1 \
+   PERL_AUTOINSTALL=--skipdeps \
+   PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+   PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+   MODULEBUILDRC=/dev/null
+}
+
+build() {
+   prepareEnvironment
+   /usr/bin/perl Makefile.PL
+   make
+}
+
+check() {
+   prepareEnvironment
+   make test
+}
+
+package() {
+   prepareEnvironment
+   make install
+   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:14
  Author: spupykin
Revision: 186343

upgpkg: lomoco 1.0-10

upd

Modified:
  lomoco/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:26:35 UTC (rev 186342)
+++ PKGBUILD2016-08-10 18:42:14 UTC (rev 186343)
@@ -4,7 +4,7 @@
 
 pkgname=lomoco
 pkgver=1.0
-pkgrel=9
+pkgrel=10
 url="http://www.lomoco.org/";
 pkgdesc="Logitech USB mouse configuration program"
 license=('GPL')
@@ -12,13 +12,13 @@
 replaces=('lmctl')
 arch=('i686' 'x86_64')
 backup=(etc/udev/lomoco_mouse.conf)
-source=(http://www.lomoco.org/${pkgname}-${pkgver}.tar.gz
-   "lomoco_mx518.patch::https://bugs.archlinux.org/task/28180?getfile=8163";
+source=(http://http.debian.net/debian/pool/main/l/lomoco/lomoco_$pkgver.0.orig.tar.gz
+   
http://http.debian.net/debian/pool/main/l/lomoco/lomoco_$pkgver.0-1.debian.tar.gz

"lomoco_mxair.patch::https://bugs.archlinux.org/task/36657?getfile=10920";
lomoco_mouse.conf
lomoco.sh)
 md5sums=('f5197d0a3ee81229c3eecc1e03f7b08d'
- '87aeccb99413faf9e49453215c3d0b8a'
+ 'b616b29dfe183b74f43072c22a470b8b'
  'd0390dfcadae6e54a4af3e6227d24201'
  '182b10a7e4a1828a93c1d55ef7f81b97'
  'bc92f661641265b33b27895ef24028fd')
@@ -25,7 +25,9 @@
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 <$srcdir/lomoco_mx518.patch
+  for i in $(cat ../debian/patches/series); do
+patch -p1 <../debian/patches/$i
+  done
   patch -p0 <$srcdir/lomoco_mxair.patch
 }
 


[arch-commits] Commit in perl-namespace-clean/repos/community-any (PKGBUILD PKGBUILD)

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:42:53
  Author: spupykin
Revision: 186348

archrelease: copy trunk to community-any

Added:
  perl-namespace-clean/repos/community-any/PKGBUILD
(from rev 186347, perl-namespace-clean/trunk/PKGBUILD)
Deleted:
  perl-namespace-clean/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:42:45 UTC (rev 186347)
+++ PKGBUILD2016-08-10 18:42:53 UTC (rev 186348)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Maxwell Pray a.k.a. Synthead 
-# Contributor: Justin Davis 
-
-_cpanname="namespace-clean"
-pkgname="perl-$_cpanname"
-pkgver=0.26
-pkgrel=1
-pkgdesc="Keep imports and functions out of your namespace"
-arch=("any")
-license=("PerlArtistic" "GPL")
-options=("!emptydirs")
-depends=("perl>=5.5.0" "perl-b-hooks-endofscope>=0.12" 
"perl-package-stash>=0.23")
-url="http://search.cpan.org/dist/$_cpanname";
-source=("http://search.cpan.org/CPAN/authors/id/R/RI/RIBASUSHI/$_cpanname-$pkgver.tar.gz";)
-sha1sums=('a76713df74b2b865ffed31603e1a1fae544c3026')
-
-# Function to change to the working directory and set
-# environment variables to override undesired options.
-prepareEnvironment() {
-   cd "$srcdir/$_cpanname-$pkgver"
-   export \
-   PERL_MM_USE_DEFAULT=1 \
-   PERL_AUTOINSTALL=--skipdeps \
-   PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-   PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-   MODULEBUILDRC=/dev/null
-}
-sha1sums=('c16ff66b1b4c7e8a507a8c4e4d809d60040e9d33')
-
-build() {
-   prepareEnvironment
-   /usr/bin/perl Makefile.PL
-   make
-}
-
-check() {
-   prepareEnvironment
-   make test
-}
-
-package() {
-   prepareEnvironment
-   make install
-
-   # Remove "perllocal.pod" and ".packlist".
-   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-namespace-clean/repos/community-any/PKGBUILD (from rev 186347, 
perl-namespace-clean/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:42:53 UTC (rev 186348)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+_cpanname="namespace-clean"
+pkgname="perl-$_cpanname"
+pkgver=0.27
+pkgrel=1
+pkgdesc="Keep imports and functions out of your namespace"
+arch=("any")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl>=5.5.0" "perl-b-hooks-endofscope>=0.12" 
"perl-package-stash>=0.23")
+url="http://search.cpan.org/dist/$_cpanname";
+source=("http://search.cpan.org/CPAN/authors/id/R/RI/RIBASUSHI/$_cpanname-$pkgver.tar.gz";)
+sha1sums=('a76713df74b2b865ffed31603e1a1fae544c3026')
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+   cd "$srcdir/$_cpanname-$pkgver"
+   export \
+   PERL_MM_USE_DEFAULT=1 \
+   PERL_AUTOINSTALL=--skipdeps \
+   PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+   PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+   MODULEBUILDRC=/dev/null
+}
+sha1sums=('c16ff66b1b4c7e8a507a8c4e4d809d60040e9d33')
+sha1sums=('4aa49b40cbcc7f1ee587dc3d5ec337f77c78fc4b')
+
+build() {
+   prepareEnvironment
+   /usr/bin/perl Makefile.PL
+   make
+}
+
+check() {
+   prepareEnvironment
+   make test
+}
+
+package() {
+   prepareEnvironment
+   make install
+
+   # Remove "perllocal.pod" and ".packlist".
+   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:46:31
  Author: spupykin
Revision: 186352

archrelease: copy trunk to community-any

Added:
  websvn/repos/community-any/PKGBUILD
(from rev 186351, websvn/trunk/PKGBUILD)
Deleted:
  websvn/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-10 18:46:22 UTC (rev 186351)
+++ PKGBUILD2016-08-10 18:46:31 UTC (rev 186352)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=websvn
-pkgver=2.3.3
-_xpkgpath=1380/49056
-pkgrel=5
-pkgdesc="subversion web interface"
-arch=(any)
-url="http://www.websvn.info";
-license=('GPL')
-depends=()
-backup=(srv/http/websvn/.htaccess)
-source=(http://websvn.tigris.org/files/documents/${_xpkgpath}/websvn-$pkgver.tar.gz
-   http://arch.p5n.pp.ru/~sergej/dl/pear4websvn.tar.xz
-   
https://sources.debian.net/data/main/w/websvn/2.3.3-1.2+deb8u1/debian/patches/30_CVE-2016-2511.patch)
-md5sums=('bc1821caf77a3225aa810e8f19400ea6'
- '03690912e6e4acf9d97fc0cc889a7ed7'
- '08f6ffdfd9e5ad1d0f87dfc5b11b0b40')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  rm -rf lib/pear
-  cp -a $srcdir/pear lib/pear
-  patch -p1 -i $srcdir/30_CVE-2016-2511.patch
-}
-
-package() {
-  local _instdir=$pkgdir/srv/http
-  mkdir -p ${_instdir}
-  cp -ra $srcdir/websvn-$pkgver ${_instdir}/websvn
-  echo "deny from all" >${_instdir}/websvn/.htaccess
-}

Copied: websvn/repos/community-any/PKGBUILD (from rev 186351, 
websvn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-10 18:46:31 UTC (rev 186352)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=websvn
+pkgver=2.3.3
+_xpkgpath=1380/49056
+pkgrel=6
+pkgdesc="subversion web interface"
+arch=(any)
+url="http://www.websvn.info";
+license=('GPL')
+depends=()
+backup=(srv/http/websvn/.htaccess)
+source=(http://websvn.tigris.org/files/documents/${_xpkgpath}/websvn-$pkgver.tar.gz
+   http://arch.p5n.pp.ru/~sergej/dl/pear4websvn.tar.xz
+   
https://sources.debian.net/data/main/w/websvn/2.3.3-1.2+deb8u2/debian/patches/30_CVE-2016-2511.patch)
+md5sums=('bc1821caf77a3225aa810e8f19400ea6'
+ '03690912e6e4acf9d97fc0cc889a7ed7'
+ '08f6ffdfd9e5ad1d0f87dfc5b11b0b40')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  rm -rf lib/pear
+  cp -a $srcdir/pear lib/pear
+  patch -p1 -i $srcdir/30_CVE-2016-2511.patch
+}
+
+package() {
+  local _instdir=$pkgdir/srv/http
+  mkdir -p ${_instdir}
+  cp -ra $srcdir/websvn-$pkgver ${_instdir}/websvn
+  echo "deny from all" >${_instdir}/websvn/.htaccess
+}


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

2016-08-10 Thread Sergej Pupykin
Date: Wednesday, August 10, 2016 @ 18:46:22
  Author: spupykin
Revision: 186351

upgpkg: websvn 2.3.3-6

upd

Modified:
  websvn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:43:05 UTC (rev 186350)
+++ PKGBUILD2016-08-10 18:46:22 UTC (rev 186351)
@@ -4,7 +4,7 @@
 pkgname=websvn
 pkgver=2.3.3
 _xpkgpath=1380/49056
-pkgrel=5
+pkgrel=6
 pkgdesc="subversion web interface"
 arch=(any)
 url="http://www.websvn.info";
@@ -13,7 +13,7 @@
 backup=(srv/http/websvn/.htaccess)
 
source=(http://websvn.tigris.org/files/documents/${_xpkgpath}/websvn-$pkgver.tar.gz
http://arch.p5n.pp.ru/~sergej/dl/pear4websvn.tar.xz
-   
https://sources.debian.net/data/main/w/websvn/2.3.3-1.2+deb8u1/debian/patches/30_CVE-2016-2511.patch)
+   
https://sources.debian.net/data/main/w/websvn/2.3.3-1.2+deb8u2/debian/patches/30_CVE-2016-2511.patch)
 md5sums=('bc1821caf77a3225aa810e8f19400ea6'
  '03690912e6e4acf9d97fc0cc889a7ed7'
  '08f6ffdfd9e5ad1d0f87dfc5b11b0b40')


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

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 19:39:00
  Author: jlichtblau
Revision: 186353

upgpkg: syncthing 0.14.4-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 18:46:31 UTC (rev 186352)
+++ PKGBUILD2016-08-10 19:39:00 UTC (rev 186353)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.3
+pkgver=0.14.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://syncthing.net/";
@@ -19,7 +19,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('eac0c5457e266c5681e1002a764d75e1a4cbacc7a92c089ee83241c632df878e'
+sha256sums=('3b6d32d61955fa3060624315a6e7d3d89b056207444bd9cc2b9b908a215f244a'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'


[arch-commits] Commit in syncthing/repos (24 files)

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 19:39:41
  Author: jlichtblau
Revision: 186354

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

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 186353, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing-relaysrv.install
(from rev 186353, syncthing/trunk/syncthing-relaysrv.install)
  syncthing/repos/community-i686/syncthing-relaysrv.service
(from rev 186353, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
(from rev 186353, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
(from rev 186353, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-i686/syncthing.install
(from rev 186353, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 186353, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.install
(from rev 186353, syncthing/trunk/syncthing-relaysrv.install)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 186353, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 186353, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 186353, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 186353, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing-relaysrv.install
  syncthing/repos/community-i686/syncthing-relaysrv.service
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-i686/syncthing.install
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.install
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

--+
 /PKGBUILD|  182 +
 /syncthing-relaysrv.install  |8 +
 /syncthing-relaysrv.service  |   34 
 /syncthing-relaysrv.sysusers |4 
 /syncthing-relaysrv.tmpfiles |2 
 /syncthing.install   |   24 +++
 community-i686/PKGBUILD  |   91 
 community-i686/syncthing-relaysrv.install|4 
 community-i686/syncthing-relaysrv.service|   17 --
 community-i686/syncthing-relaysrv.sysusers   |2 
 community-i686/syncthing-relaysrv.tmpfiles   |1 
 community-i686/syncthing.install |   12 -
 community-x86_64/PKGBUILD|   91 
 community-x86_64/syncthing-relaysrv.install  |4 
 community-x86_64/syncthing-relaysrv.service  |   17 --
 community-x86_64/syncthing-relaysrv.sysusers |2 
 community-x86_64/syncthing-relaysrv.tmpfiles |1 
 community-x86_64/syncthing.install   |   12 -
 18 files changed, 254 insertions(+), 254 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 19:39:00 UTC (rev 186353)
+++ community-i686/PKGBUILD 2016-08-10 19:39:41 UTC (rev 186354)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://syncthing.net/";
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('eac0c5457e266c5681e1002a764d75e1a4cbacc7a92c089ee83241c632df878e'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build

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

2016-08-10 Thread Christian Hesse
Date: Wednesday, August 10, 2016 @ 19:44:33
  Author: eworm
Revision: 273581

upgpkg: lvm2 2.02.163-1

new upstream release

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 09:25:15 UTC (rev 273580)
+++ PKGBUILD2016-08-10 19:44:33 UTC (rev 273581)
@@ -4,7 +4,7 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.162
+pkgver=2.02.163
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://sourceware.org/lvm2/";
@@ -17,7 +17,7 @@
 sd-lvm2_install
 11-dm-initramfs.rules
 01-lvm2-make-sockets-static.patch)
-sha1sums=('116fcf7f1c08ab003a2d98d37adb4b5bd71f1640'
+sha1sums=('9d83d229033ba2526108602916484dcf9dadd21e'
   'SKIP'
   '5aedf7b606f6b4bd7a27126854a371e59009eb8c'
   '81fc438356216abdaead0742555e1719e6ff3127'


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

2016-08-10 Thread Christian Hesse
Date: Wednesday, August 10, 2016 @ 19:44:46
  Author: eworm
Revision: 273582

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

Added:
  lvm2/repos/testing-i686/
  lvm2/repos/testing-i686/01-lvm2-make-sockets-static.patch
(from rev 273581, lvm2/trunk/01-lvm2-make-sockets-static.patch)
  lvm2/repos/testing-i686/11-dm-initramfs.rules
(from rev 273581, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-i686/PKGBUILD
(from rev 273581, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-i686/lvm2.install
(from rev 273581, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-i686/lvm2_hook
(from rev 273581, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-i686/lvm2_install
(from rev 273581, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-i686/sd-lvm2_install
(from rev 273581, lvm2/trunk/sd-lvm2_install)
  lvm2/repos/testing-x86_64/
  lvm2/repos/testing-x86_64/01-lvm2-make-sockets-static.patch
(from rev 273581, lvm2/trunk/01-lvm2-make-sockets-static.patch)
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 273581, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 273581, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2.install
(from rev 273581, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-x86_64/lvm2_hook
(from rev 273581, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 273581, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-x86_64/sd-lvm2_install
(from rev 273581, lvm2/trunk/sd-lvm2_install)

--+
 testing-i686/01-lvm2-make-sockets-static.patch   |   20 
 testing-i686/11-dm-initramfs.rules   |3 
 testing-i686/PKGBUILD|  104 +
 testing-i686/lvm2.install|   25 +
 testing-i686/lvm2_hook   |   25 +
 testing-i686/lvm2_install|   41 
 testing-i686/sd-lvm2_install |   44 
 testing-x86_64/01-lvm2-make-sockets-static.patch |   20 
 testing-x86_64/11-dm-initramfs.rules |3 
 testing-x86_64/PKGBUILD  |  104 +
 testing-x86_64/lvm2.install  |   25 +
 testing-x86_64/lvm2_hook |   25 +
 testing-x86_64/lvm2_install  |   41 
 testing-x86_64/sd-lvm2_install   |   44 
 14 files changed, 524 insertions(+)

Copied: lvm2/repos/testing-i686/01-lvm2-make-sockets-static.patch (from rev 
273581, lvm2/trunk/01-lvm2-make-sockets-static.patch)
===
--- testing-i686/01-lvm2-make-sockets-static.patch  
(rev 0)
+++ testing-i686/01-lvm2-make-sockets-static.patch  2016-08-10 19:44:46 UTC 
(rev 273582)
@@ -0,0 +1,20 @@
+diff -Nur LVM2.2.02.106.orig/scripts/dm_event_systemd_red_hat.socket.in 
LVM2.2.02.106/scripts/dm_event_systemd_red_hat.socket.in
+--- LVM2.2.02.106.orig/scripts/dm_event_systemd_red_hat.socket.in  
2014-04-10 17:38:46.0 +0200
 LVM2.2.02.106/scripts/dm_event_systemd_red_hat.socket.in   2014-04-26 
14:21:10.097269315 +0200
+@@ -8,6 +8,3 @@
+ ListenFIFO=@DEFAULT_DM_RUN_DIR@/dmeventd-client
+ SocketMode=0600
+ RemoveOnStop=true
+-
+-[Install]
+-WantedBy=sockets.target
+diff -Nur LVM2.2.02.106.orig/scripts/lvm2_lvmetad_systemd_red_hat.socket.in 
LVM2.2.02.106/scripts/lvm2_lvmetad_systemd_red_hat.socket.in
+--- LVM2.2.02.106.orig/scripts/lvm2_lvmetad_systemd_red_hat.socket.in  
2014-04-10 17:38:46.0 +0200
 LVM2.2.02.106/scripts/lvm2_lvmetad_systemd_red_hat.socket.in   
2014-04-26 14:21:15.287156152 +0200
+@@ -7,6 +7,3 @@
+ ListenStream=@DEFAULT_RUN_DIR@/lvmetad.socket
+ SocketMode=0600
+ RemoveOnStop=true
+-
+-[Install]
+-WantedBy=sysinit.target

Copied: lvm2/repos/testing-i686/11-dm-initramfs.rules (from rev 273581, 
lvm2/trunk/11-dm-initramfs.rules)
===
--- testing-i686/11-dm-initramfs.rules  (rev 0)
+++ testing-i686/11-dm-initramfs.rules  2016-08-10 19:44:46 UTC (rev 273582)
@@ -0,0 +1,3 @@
+# needed with new udev/mkinitcpio and as implemented in dracut:
+# 

+SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", 
OPTIONS="db_persist"

Copied: lvm2/repos/testing-i686/PKGBUILD (from rev 273581, lvm2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-10 19:44:46 UTC (rev 273582)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Thomas Bächler 
+
+pkgbase=lvm2
+pkgname=('lvm2' 'device-mapper')
+pkgver=2.02.163
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http:

[arch-commits] Commit in (cjc)

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 19:46:31
  Author: jlichtblau
Revision: 186356

cjc is a dead project
removed from [community]

Deleted:
  cjc/


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

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 20:01:04
  Author: jlichtblau
Revision: 186357

proj - missing extra data source file removed

Modified:
  proj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 19:46:31 UTC (rev 186356)
+++ PKGBUILD2016-08-10 20:01:04 UTC (rev 186357)
@@ -13,19 +13,16 @@
 license=('MIT')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/OSGeo/proj.4/archive/$pkgver.tar.gz
-http://download.osgeo.org/proj/proj-datumgrid-1.5.tar.gz
-
chenyx06a.zip::http://www.swisstopo.admin.ch/internet/swisstopo/en/home/products/software/products/chenyx06.parsys.00011.downloadList.70576.DownloadFile.tmp/chenyx06ntv2.zip)
+http://download.osgeo.org/proj/proj-datumgrid-1.5.tar.gz)
 sha256sums=('9a40de36183d23a395cf51ba7a465e1e6c982b6e4553b31310c42012d188be6b'
-'6047362ec2cdf67a34acce36bb739df9834e10f4be93b7b51ae7d8b2be084d5e'
-'f61290a32815622bfe182af475c76b0b4c282de66121fdddce2f6201e8bca2e0')
+'6047362ec2cdf67a34acce36bb739df9834e10f4be93b7b51ae7d8b2be084d5e')
 
 prepare() {
   bsdtar -xzvf "${srcdir}"/proj-datumgrid-1.5.tar.gz -C 
"${srcdir}"/proj.4-$pkgver/nad
-  bsdtar -xzvf "${srcdir}"/chenyx06a.zip -C "${srcdir}"/proj.4-$pkgver/nad 
CHENYX06a.gsb
 }
 
 build(){
-  cd "${srcdir}"/proj.4-$pkgver
+  cd "${srcdir}"/$pkgname.4-$pkgver
 
   ./configure --prefix=/usr
   make
@@ -32,9 +29,9 @@
 }
 
 package() {
-  cd "${srcdir}"/proj.4-$pkgver
+  cd "${srcdir}"/$pkgname.4-$pkgver
 
   make DESTDIR="${pkgdir}" install
 
-  install -D COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
 }


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

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 20:33:39
  Author: jlichtblau
Revision: 186358

upgpkg: ginac 1.7.0-1 - new upstream release

Modified:
  ginac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 20:01:04 UTC (rev 186357)
+++ PKGBUILD2016-08-10 20:33:39 UTC (rev 186358)
@@ -5,7 +5,7 @@
 # Contributor: Thomas Baechler 
 
 pkgname=ginac
-pkgver=1.6.7
+pkgver=1.7.0
 pkgrel=1
 pkgdesc="C++ library for symbolic calculations"
 arch=('i686' 'x86_64')
@@ -14,12 +14,12 @@
 depends=('cln')
 makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
 source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2)
-sha256sums=('cea5971b552372017ea654c025adb44d5f1b3e3ce0a739da2fe95189572b85db')
+sha256sums=('ac9aa202b8b9683175a40b7a4d55f28616225291a4e2cbfe71378e0d02c944bd')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver
 
-  ./configure --prefix=/usr --disable-static
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ginac --disable-static
   make
 }
 


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

2016-08-10 Thread Jaroslav Lichtblau
Date: Wednesday, August 10, 2016 @ 20:34:00
  Author: jlichtblau
Revision: 186359

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 20:33:39 UTC (rev 186358)
+++ community-i686/PKGBUILD 2016-08-10 20:34:00 UTC (rev 186359)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Thomas Baechler 
-
-pkgname=ginac
-pkgver=1.6.7
-pkgrel=1
-pkgdesc="C++ library for symbolic calculations"
-arch=('i686' 'x86_64')
-url='http://www.ginac.de/'
-license=('GPL')
-depends=('cln')
-makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
-source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2)
-sha256sums=('cea5971b552372017ea654c025adb44d5f1b3e3ce0a739da2fe95189572b85db')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make check
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ginac/repos/community-i686/PKGBUILD (from rev 186358, 
ginac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 20:34:00 UTC (rev 186359)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Thomas Baechler 
+
+pkgname=ginac
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="C++ library for symbolic calculations"
+arch=('i686' 'x86_64')
+url='http://www.ginac.de/'
+license=('GPL')
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
+source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2)
+sha256sums=('ac9aa202b8b9683175a40b7a4d55f28616225291a4e2cbfe71378e0d02c944bd')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ginac --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 20:33:39 UTC (rev 186358)
+++ community-x86_64/PKGBUILD   2016-08-10 20:34:00 UTC (rev 186359)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Thomas Baechler 
-
-pkgname=ginac
-pkgver=1.6.7
-pkgrel=1
-pkgdesc="C++ library for symbolic calculations"
-arch=('i686' 'x86_64')
-url='http://www.ginac.de/'
-license=('GPL')
-depends=('cln')
-makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
-source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2)
-sha256sums=('cea5971b552372017ea654c025adb44d5f1b3e3ce0a739da2fe95189572b85db')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make check
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ginac/repos/community-x86_64/PKGBUILD (from rev 186358, 
ginac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-08-10 20:34:00 UTC (rev 186359)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Thomas Baechler 
+
+pkgname=ginac
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="C++ library for symbolic calculations"
+arch=('i686' 'x86_64')
+url='http://www.ginac.de/'
+license=('GPL')
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
+source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2)
+sha256sums=('ac9aa202b8b9683175a40b7a4d55f28616225291a4e2cbfe71378e0d02c944bd')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ginac --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd 

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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 21:29:03
  Author: arodseth
Revision: 186360

upgpkg: erlang 19.0.3-1

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 20:34:00 UTC (rev 186359)
+++ PKGBUILD2016-08-10 21:29:03 UTC (rev 186360)
@@ -8,7 +8,7 @@
 
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
-pkgver=19.0.2
+pkgver=19.0.3
 pkgrel=1
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'


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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 21:29:25
  Author: arodseth
Revision: 186361

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

Added:
  erlang/repos/community-i686/PKGBUILD
(from rev 186360, erlang/trunk/PKGBUILD)
  erlang/repos/community-i686/epmd.conf
(from rev 186360, erlang/trunk/epmd.conf)
  erlang/repos/community-i686/epmd.service
(from rev 186360, erlang/trunk/epmd.service)
  erlang/repos/community-i686/epmd.socket
(from rev 186360, erlang/trunk/epmd.socket)
  erlang/repos/community-x86_64/PKGBUILD
(from rev 186360, erlang/trunk/PKGBUILD)
  erlang/repos/community-x86_64/epmd.conf
(from rev 186360, erlang/trunk/epmd.conf)
  erlang/repos/community-x86_64/epmd.service
(from rev 186360, erlang/trunk/epmd.service)
  erlang/repos/community-x86_64/epmd.socket
(from rev 186360, erlang/trunk/epmd.socket)
Deleted:
  erlang/repos/community-i686/PKGBUILD
  erlang/repos/community-i686/epmd.conf
  erlang/repos/community-i686/epmd.service
  erlang/repos/community-i686/epmd.socket
  erlang/repos/community-x86_64/PKGBUILD
  erlang/repos/community-x86_64/epmd.conf
  erlang/repos/community-x86_64/epmd.service
  erlang/repos/community-x86_64/epmd.socket

---+
 /PKGBUILD |  186 
 /epmd.conf|6 +
 /epmd.service |   22 
 /epmd.socket  |   18 +++
 community-i686/PKGBUILD   |   93 
 community-i686/epmd.conf  |3 
 community-i686/epmd.service   |   11 --
 community-i686/epmd.socket|9 -
 community-x86_64/PKGBUILD |   93 
 community-x86_64/epmd.conf|3 
 community-x86_64/epmd.service |   11 --
 community-x86_64/epmd.socket  |9 -
 12 files changed, 232 insertions(+), 232 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 21:29:03 UTC (rev 186360)
+++ community-i686/PKGBUILD 2016-08-10 21:29:25 UTC (rev 186361)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=('erlang' 'erlang-unixodbc')
-pkgver=19.0.2
-pkgrel=1
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('Apache')
-makedepends=('perl' 'mesa' 'lksctp-tools' 'unixodbc' 'wxgtk' 'glu' 'git'
- 'libxslt' 'fop' 'java-environment')
-options=('staticlibs')
-source=("git://github.com/erlang/otp.git#tag=OTP-$pkgver"
-"http://www.erlang.org/download/otp_doc_man_${pkgver%.*}.tar.gz";
-'epmd.service'
-'epmd.socket'
-'epmd.conf')
-sha256sums=('SKIP'
-'c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
-
-prepare() {
-  cd otp
-  ./otp_build setup
-}
-
-build() {
-  cd otp
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=('ncurses' 'glu' 'wxgtk' 'openssl')
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=('erlang-nox')
-  conflicts=('erlang-nox')
-
-  make -C otp DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm0644 "$srcdir/otp/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-
-  # Move over files that will be packaged as erlang-unixodbc
-  mkdir "$srcdir/unixodbc"
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=('unixodbc' 'erlang-nox')
-
-  # Get the files that should be packaged as erlang-unixodbc
-  mkdir -p "$pkgdir/usr/lib/erlang/"{lib,man/man3}
-  mv "$srcdir/unixodbc/"* "$pkgdir/usr/lib/erlang/lib/"
-  mv "$srcdir/odbc.3.gz" "$pkgdir/usr/lib/erlang/man/man3/"
-
-  # License

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

2016-08-10 Thread Levente Polyak
Date: Wednesday, August 10, 2016 @ 21:39:26
  Author: anthraxx
Revision: 186362

upgpkg: smplayer 16.8.0-1

Modified:
  smplayer/trunk/PKGBUILD

--+
 PKGBUILD |   30 ++
 1 file changed, 14 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 21:29:25 UTC (rev 186361)
+++ PKGBUILD2016-08-10 21:39:26 UTC (rev 186362)
@@ -1,5 +1,4 @@
-# $Id$
-# Maintainer:
+# Maintainer: Levente Polyak 
 # Contributor: Ionut Biru 
 # Contributor: Allan McRae 
 # Contributor: Alessio 'mOLOk' Bolognino 
@@ -6,27 +5,24 @@
 # Contributor: shamrok 
 
 pkgname=smplayer
-pkgver=16.6.0
+pkgver=16.8.0
 pkgrel=1
-pkgdesc="A complete front-end for MPlayer"
+pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
+url='http://smplayer.sourceforge.net/'
 arch=('i686' 'x86_64')
-url="http://smplayer.sourceforge.net/";
 license=('GPL')
-depends=('qt5-script' 'mplayer' 'hicolor-icon-theme')
+depends=('qt5-script' 'mpv' 'hicolor-icon-theme')
 makedepends=('qt5-tools')
 optdepends=('smplayer-themes: icon themes collection'
 'smplayer-skins: skin themes collection'
 'smtube: browse and play youtube videos'
-'mpv: for using mpv instead of mplayer')
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('61d6fc855d13b33eccb3f5d2a1472220')
+'youtube-dl: youtube videos and streaming'
+'mplayer: alternative multimedia engine')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha512sums=('0609fd6147502f43e4e2f8f5df6854f0aaab9b165663882254a0b5e8e3d8b0f15ad6ababd13869eb829f265dde9062827cb738ed4cc79e488321f90c50de9980')
 
-prepare() {
-  cd $pkgname-$pkgver
-}
-
 build() {
-  cd $pkgname-$pkgver
+  cd ${pkgname}-${pkgver}
   make PREFIX=/usr \
 DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
 QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
@@ -33,7 +29,9 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd ${pkgname}-${pkgver}
   make DOC_PATH=/usr/share/doc/smplayer \
-DESTDIR="$pkgdir" PREFIX="/usr" install
+DESTDIR="${pkgdir}" PREFIX=/usr install
 }
+
+# vim: ts=2 sw=2 et:


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

2016-08-10 Thread Levente Polyak
Date: Wednesday, August 10, 2016 @ 21:39:41
  Author: anthraxx
Revision: 186363

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 21:39:26 UTC (rev 186362)
+++ community-i686/PKGBUILD 2016-08-10 21:39:41 UTC (rev 186363)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: Alessio 'mOLOk' Bolognino 
-# Contributor: shamrok 
-
-pkgname=smplayer
-pkgver=16.6.0
-pkgrel=1
-pkgdesc="A complete front-end for MPlayer"
-arch=('i686' 'x86_64')
-url="http://smplayer.sourceforge.net/";
-license=('GPL')
-depends=('qt5-script' 'mplayer' 'hicolor-icon-theme')
-makedepends=('qt5-tools')
-optdepends=('smplayer-themes: icon themes collection'
-'smplayer-skins: skin themes collection'
-'smtube: browse and play youtube videos'
-'mpv: for using mpv instead of mplayer')
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('61d6fc855d13b33eccb3f5d2a1472220')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr \
-DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
-QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DOC_PATH=/usr/share/doc/smplayer \
-DESTDIR="$pkgdir" PREFIX="/usr" install
-}

Copied: smplayer/repos/community-i686/PKGBUILD (from rev 186362, 
smplayer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 21:39:41 UTC (rev 186363)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: Alessio 'mOLOk' Bolognino 
+# Contributor: shamrok 
+
+pkgname=smplayer
+pkgver=16.8.0
+pkgrel=1
+pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
+url='http://smplayer.sourceforge.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt5-script' 'mpv' 'hicolor-icon-theme')
+makedepends=('qt5-tools')
+optdepends=('smplayer-themes: icon themes collection'
+'smplayer-skins: skin themes collection'
+'smtube: browse and play youtube videos'
+'youtube-dl: youtube videos and streaming'
+'mplayer: alternative multimedia engine')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha512sums=('0609fd6147502f43e4e2f8f5df6854f0aaab9b165663882254a0b5e8e3d8b0f15ad6ababd13869eb829f265dde9062827cb738ed4cc79e488321f90c50de9980')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr \
+DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
+QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DOC_PATH=/usr/share/doc/smplayer \
+DESTDIR="${pkgdir}" PREFIX=/usr install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-08-10 21:39:26 UTC (rev 186362)
+++ community-x86_64/PKGBUILD   2016-08-10 21:39:41 UTC (rev 186363)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: Alessio 'mOLOk' Bolognino 
-# Contributor: shamrok 
-
-pkgname=smplayer
-pkgver=16.6.0
-pkgrel=1
-pkgdesc="A complete front-end for MPlayer"
-arch=('i686' 'x86_64')
-url="http://smplayer.sourceforge.net/";
-license=('GPL')
-depends=('qt5-script' 'mplayer' 'hicolor-icon-theme')
-makedepends=('qt5-tools')
-optdepends=('smplayer-themes: icon themes collection'
-'smplayer-skins: skin themes collection'
-'smtube: browse and play youtube videos'
-'mpv: for using mpv instead of mplayer')
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('61d6fc855d13b33eccb3f5d2a1472220')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr \
-DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
-QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DOC_PATH=/usr/share/doc/smplayer \
-DESTDIR="$pkgdir" PREFIX="/usr" install
-}

Copied: smplayer/repos/community-x86_64/PKGBUILD (from re

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

2016-08-10 Thread Levente Polyak
Date: Wednesday, August 10, 2016 @ 21:43:29
  Author: anthraxx
Revision: 186364

upgpkg: synergy 1.8.2-1

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

+
 PKGBUILD   |   21 +
 fix-incompetence.patch |   23 ---
 2 files changed, 9 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 21:39:41 UTC (rev 186363)
+++ PKGBUILD2016-08-10 21:43:29 UTC (rev 186364)
@@ -11,32 +11,27 @@
 # installed version of that library. They change around paths every
 # update and just generally don't seem to care much.
 pkgname=synergy
-pkgver=1.7.6
-pkgrel=2
-pkgdesc="Share a single mouse and keyboard between multiple computers"
-url="http://synergy-foss.org";
+pkgver=1.8.2
+pkgrel=1
+pkgdesc='Share a single mouse and keyboard between multiple computers'
+url='http://synergy-foss.org'
 arch=('i686' 'x86_64')
 license=('GPL2')
 depends=('gcc-libs' 'libxtst' 'libxinerama' 'libxkbcommon-x11' 'avahi' 'curl')
 makedepends=('libxt' 'cmake' 'qt5-base' 'unzip')
-optdepends=(
-  'qt5-base: gui support'
-  'openssl: encryption support'
-)
+optdepends=('qt5-base: gui support'
+'openssl: encryption support')
 
source=(synergy-${pkgver}.tar.gz::https://github.com/symless/synergy/archive/v${pkgver}-stable.tar.gz
 synergys.socket
 synergys.service
-fix-incompetence.patch
 wrapper)
-sha512sums=('025305fc1aca425b27c1d4f16dd0c6ee7798c048e234c8a27272b81b03c0c1cb35fab6639707c1b55d58e7676fe2abf058b6f93e994ae5b256034c32c6fe806a'
+sha512sums=('48d7e18e92f239feddc7afd31b5614c2c27b7dc1cb30e58aa168095771a85d87c9c621daaef6ee0126381bcdcfa515d484545d763d0b1c5e6c181e0e5175639c'
 
'f9c124533dfd01b5036b7f4b06f7f86f69165e88b9146ff17798377119eb9f1a4666f3b2ee9840bc436558d715cdbfe2fdfd7624348fae64871f785a1a62'
 
'9663a11b915e10e60317e732a4d1191e8f8ff19176994c27dd20aa445daab7565bd624e5575c9c639d144293879fbe8376834a076723f778fd322ebd1c9f2029'
-
'd598f05614d0db894781e85ecab9a1196da3df6967e3bd44f5b8246c7cba76859734cf953edddf0addf6464f62f88b99da52fb5674e8db4a58bf971d078da83a'
 
'a2e126ad3ac53fb855a331134982f86ef81ffc75b73e73b242e6f854fe7e2daec160fac2161acdc7020cd7f57ae0a8826ac7a249ad10b03db614ada0062b3e93')
 
 prepare() {
   cd synergy-${pkgver}-stable
-  patch -p1 < "${srcdir}/fix-incompetence.patch"
   (cd ext
 unzip gmock-1.6.0.zip -d gmock-1.6.0
 unzip gtest-1.6.0.zip -d gtest-1.6.0
@@ -47,6 +42,8 @@
   cd synergy-${pkgver}-stable
 
   cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  # unittests don't pass with optimization (segfault on nullptr)
+  sed 's|\-O2|\-O0|g' -i 
src/test/unittests/CMakeFiles/unittests.dir/{flags.make,link.txt}
   make
 
   (cd src/gui

Deleted: fix-incompetence.patch
===
--- fix-incompetence.patch  2016-08-10 21:39:41 UTC (rev 186363)
+++ fix-incompetence.patch  2016-08-10 21:43:29 UTC (rev 186364)
@@ -1,23 +0,0 @@
-From 5080bf0c679711f60ca14eb5979d92f181749bb7 Mon Sep 17 00:00:00 2001
-From: Manuel Frischknecht 
-Date: Mon, 20 Jul 2015 17:55:02 +0200
-Subject: [PATCH] Fixed a missing include that breaks the build on linux
-

- src/gui/src/CommandProcess.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/gui/src/CommandProcess.h b/src/gui/src/CommandProcess.h
-index 62e89bf..f279dff 100644
 a/src/gui/src/CommandProcess.h
-+++ b/src/gui/src/CommandProcess.h
-@@ -18,6 +18,7 @@
- #ifndef COMMANDTHREAD_H
- #define COMMANDTHREAD_H
- 
-+#include 
- #include 
- 
- class CommandProcess : public QObject
--- 
-2.4.2


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

2016-08-10 Thread Levente Polyak
Date: Wednesday, August 10, 2016 @ 21:43:48
  Author: anthraxx
Revision: 186365

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

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

-+
 /PKGBUILD   |  204 ++
 /synergys.service   |   20 ++
 /synergys.socket|   18 ++
 /wrapper|8 +
 community-i686/PKGBUILD |  105 ---
 community-i686/fix-incompetence.patch   |   23 ---
 community-i686/synergys.service |   10 -
 community-i686/synergys.socket  |9 -
 community-i686/wrapper  |4 
 community-x86_64/PKGBUILD   |  105 ---
 community-x86_64/fix-incompetence.patch |   23 ---
 community-x86_64/synergys.service   |   10 -
 community-x86_64/synergys.socket|9 -
 community-x86_64/wrapper|4 
 14 files changed, 250 insertions(+), 302 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 21:43:29 UTC (rev 186364)
+++ community-i686/PKGBUILD 2016-08-10 21:43:48 UTC (rev 186365)
@@ -1,105 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jelle van der Waa 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Dale Blount 
-# Contributor: Michael Düll 
-
-# I would just like to take a minute here and state that synergy is
-# some of the worst packaged software ever. They BUNDLE a fucking
-# zip for cryptopp and do not provide an option to use a system-
-# installed version of that library. They change around paths every
-# update and just generally don't seem to care much.
-pkgname=synergy
-pkgver=1.7.6
-pkgrel=2
-pkgdesc="Share a single mouse and keyboard between multiple computers"
-url="http://synergy-foss.org";
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'libxtst' 'libxinerama' 'libxkbcommon-x11' 'avahi' 'curl')
-makedepends=('libxt' 'cmake' 'qt5-base' 'unzip')
-optdepends=(
-  'qt5-base: gui support'
-  'openssl: encryption support'
-)
-source=(synergy-${pkgver}.tar.gz::https://github.com/symless/synergy/archive/v${pkgver}-stable.tar.gz
-synergys.socket
-synergys.service
-fix-incompetence.patch
-wrapper)
-sha512sums=('025305fc1aca425b27c1d4f16dd0c6ee7798c048e234c8a27272b81b03c0c1cb35fab6639707c1b55d58e7676fe2abf058b6f93e994ae5b256034c32c6fe806a'
-
'f9c124533dfd01b5036b7f4b06f7f86f69165e88b9146ff17798377119eb9f1a4666f3b2ee9840bc436558d715cdbfe2fdfd7624348fae64871f785a1a62'
-
'9663a11b915e10e60317e732a4d1191e8f8ff19176994c27dd20aa445daab7565bd624e5575c9c639d144293879fbe8376834a076723f778fd322ebd1c9f2029'
-
'd598f05614d0db894781e85ecab9a1196da3df6967e3bd44f5b8246c7cba76859734cf953edddf0addf6464f62f88b99da52fb5674e8db4a58bf971d078da83a'
-
'a2e126ad3ac53fb855a331134982f86ef81ffc75b73e73b242e6f854fe7e2daec160fac2161acdc7020cd7f57ae0a8826ac7a249ad10b03db614ada0062b3e93')
-
-prepare() {
-  cd synergy-${pkgver}-stable
-  patch -p1 < "${srcdir}/fix-incompetence.patch"
-  (cd ext
-unzip gmock-1.6.0.zip -d gmock-1.6.0
-unzip gtest-1.6.0.zip -d gtest-1.6.0
-  )
-}
-
-build() {
-  cd synergy-${pkgver}-stable
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-
-  (cd src/gui
-qmake
-make
-  )
-}
-
-check() {
-  cd synergy-${pkgver}-stable
-  ./bin/unittests
-}
-
-package() {
-  cd synergy-${pkgver}-stable
-
-  # install binary
-  install -Dm 755 bin/synergy "${pkgdir}/usr/lib/synergy/synergy"
-  install -Dm 755 bin/synergyc "${pkgdir}/usr/lib/synergy/synergyc"
-  install -Dm 755 bin/synergyd "${pkgdir}/us

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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 21:58:50
  Author: arodseth
Revision: 186367

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

Added:
  hwinfo/repos/community-i686/PKGBUILD
(from rev 186366, hwinfo/trunk/PKGBUILD)
  hwinfo/repos/community-i686/custom_ioctl.patch
(from rev 186366, hwinfo/trunk/custom_ioctl.patch)
  hwinfo/repos/community-x86_64/PKGBUILD
(from rev 186366, hwinfo/trunk/PKGBUILD)
  hwinfo/repos/community-x86_64/custom_ioctl.patch
(from rev 186366, hwinfo/trunk/custom_ioctl.patch)
Deleted:
  hwinfo/repos/community-i686/PKGBUILD
  hwinfo/repos/community-i686/custom_ioctl.patch
  hwinfo/repos/community-x86_64/PKGBUILD
  hwinfo/repos/community-x86_64/custom_ioctl.patch

-+
 /PKGBUILD   |   84 ++
 /custom_ioctl.patch |   32 
 community-i686/PKGBUILD |   45 --
 community-i686/custom_ioctl.patch   |   16 --
 community-x86_64/PKGBUILD   |   45 --
 community-x86_64/custom_ioctl.patch |   16 --
 6 files changed, 116 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 21:58:36 UTC (rev 186366)
+++ community-i686/PKGBUILD 2016-08-10 21:58:50 UTC (rev 186367)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Kaiting Chen 
-# Contributor: Gergely Imreh 
-# Contributor: champus, madeye, ranguvar and ninja_pt
-
-pkgname=hwinfo
-pkgver=21.23_1.2
-_fn="$pkgname-${pkgver/_/-}.src.rpm"
-pkgrel=1
-pkgdesc='Hardware detection tool from openSUSE'
-arch=('x86_64' 'i686')
-url='http://download.opensuse.org/source/factory/repo/oss/suse/src/'
-license=('GPL2')
-depends=('libx86emu' 'bash' 'perl')
-makedepends=('sysfsutils' 'rpmextract' 'flex' 'git')
-options=('!emptydirs')
-source=("http://download.opensuse.org/source/factory/repo/oss/suse/src/$_fn";
-'custom_ioctl.patch')
-sha256sums=('361ca284d1912f3d1aecdf22737db1c949addb1e48d0f3f3fc3376e95fb7b8ac'
-'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
-
-prepare() {
-  # Wish upstream could just provide a normal $pkgname-$pkgver.tar.gz...
-  rpmextract.sh "$_fn"
-  tar Jxf "${_fn%-*.*}.tar.xz"
-
-  # Patching
-  cd "${_fn%-*.*}"
-  patch -p0 -i ../custom_ioctl.patch
-}
-
-build() {
-  make -C "${_fn%-*.*}" -j1 \
-CFLAGS+="-fPIC -I$srcdir/${_fn%-*.*}/src/hd" \
-LIBDIR=/usr/lib
-}
-
-package() {
-  make -C "${_fn%-*.*}" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
-  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
-}
-
-# getver: -u 4 https://tracker.debian.org/pkg/hwinfo
-# vim:set ts=2 sw=2 et:

Copied: hwinfo/repos/community-i686/PKGBUILD (from rev 186366, 
hwinfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 21:58:50 UTC (rev 186367)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Kaiting Chen 
+# Contributor: Gergely Imreh 
+# Contributor: champus, madeye, ranguvar and ninja_pt
+
+pkgname=hwinfo
+pkgver=21.30
+pkgrel=1
+pkgdesc='Hardware detection tool from openSUSE'
+arch=('x86_64' 'i686')
+url='https://github.com/openSUSE/hwinfo'
+license=('GPL2')
+depends=('libx86emu' 'bash' 'perl')
+makedepends=('sysfsutils' 'flex' 'git')
+options=('!emptydirs')
+source=("https://github.com/openSUSE/$pkgname/archive/$pkgver.tar.gz";
+'custom_ioctl.patch')
+sha256sums=('67e60ccb03d6c007ca1ad3754ae09511d211856d61e4a739516764d006de5824'
+'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
+
+prepare() {
+  # Patching
+  cd "$pkgname-$pkgver"
+  patch -p0 -i ../custom_ioctl.patch
+  echo 'touch changelog' > git2log
+}
+
+build() {
+  make -C "$pkgname-$pkgver" -j1 \
+HWINFO_VERSION="$pkgver" \
+CFLAGS+="-fPIC -I$srcdir/$pkgname-$pkgver/src/hd" \
+LIBDIR=/usr/lib
+}
+
+package() {
+  make -C "$pkgname-$pkgver" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
+  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
+}
+
+# getver: https://github.com/openSUSE/hwinfo/releases
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/custom_ioctl.patch
===
--- community-i686/custom_ioctl.patch   2016-08-10 21:58:36 UTC (rev 186366)
+++ community-i686/custom_ioctl.patch   2016-08-10 21:58:50 UTC (rev 186367)
@@ -1,16 +0,0 @@
 src/hd/kbd.c.old   2010-03-15 23:37:52.0 +0800
-+++ src/hd/kbd.c   2010-03-22 10:50:58.0 +0800
-@@ -146,11 +146,13 @@
-   }
- 
-   if(!dev && (fd = open(DEV_CONSOLE, O_RDWR | O_NONBLOCK | O_NOCTTY)) >= 0) {
-+/* Removing since TIOCGDEV is not supported by the mainline kernel
- if(ioctl(fd, TIOCGDEV, &u) != -1) {
-   tty_major = (u >> 8) & 0xfff;
-   tty_minor = (u & 0xff) | ((u 

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

2016-08-10 Thread Alexander Rødseth
Date: Wednesday, August 10, 2016 @ 21:58:36
  Author: arodseth
Revision: 186366

upgpkg: hwinfo 21.30-1

Modified:
  hwinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 21:43:48 UTC (rev 186365)
+++ PKGBUILD2016-08-10 21:58:36 UTC (rev 186366)
@@ -5,41 +5,38 @@
 # Contributor: champus, madeye, ranguvar and ninja_pt
 
 pkgname=hwinfo
-pkgver=21.23_1.2
-_fn="$pkgname-${pkgver/_/-}.src.rpm"
+pkgver=21.30
 pkgrel=1
 pkgdesc='Hardware detection tool from openSUSE'
 arch=('x86_64' 'i686')
-url='http://download.opensuse.org/source/factory/repo/oss/suse/src/'
+url='https://github.com/openSUSE/hwinfo'
 license=('GPL2')
 depends=('libx86emu' 'bash' 'perl')
-makedepends=('sysfsutils' 'rpmextract' 'flex' 'git')
+makedepends=('sysfsutils' 'flex' 'git')
 options=('!emptydirs')
-source=("http://download.opensuse.org/source/factory/repo/oss/suse/src/$_fn";
+source=("https://github.com/openSUSE/$pkgname/archive/$pkgver.tar.gz";
 'custom_ioctl.patch')
-sha256sums=('361ca284d1912f3d1aecdf22737db1c949addb1e48d0f3f3fc3376e95fb7b8ac'
+sha256sums=('67e60ccb03d6c007ca1ad3754ae09511d211856d61e4a739516764d006de5824'
 '6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
 
 prepare() {
-  # Wish upstream could just provide a normal $pkgname-$pkgver.tar.gz...
-  rpmextract.sh "$_fn"
-  tar Jxf "${_fn%-*.*}.tar.xz"
-
   # Patching
-  cd "${_fn%-*.*}"
+  cd "$pkgname-$pkgver"
   patch -p0 -i ../custom_ioctl.patch
+  echo 'touch changelog' > git2log
 }
 
 build() {
-  make -C "${_fn%-*.*}" -j1 \
-CFLAGS+="-fPIC -I$srcdir/${_fn%-*.*}/src/hd" \
+  make -C "$pkgname-$pkgver" -j1 \
+HWINFO_VERSION="$pkgver" \
+CFLAGS+="-fPIC -I$srcdir/$pkgname-$pkgver/src/hd" \
 LIBDIR=/usr/lib
 }
 
 package() {
-  make -C "${_fn%-*.*}" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
+  make -C "$pkgname-$pkgver" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
   mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
 }
 
-# getver: -u 4 https://tracker.debian.org/pkg/hwinfo
+# getver: https://github.com/openSUSE/hwinfo/releases
 # vim:set ts=2 sw=2 et:


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 22:07:57
  Author: arojas
Revision: 186368

Update to 0.9.8

Modified:
  appstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 21:58:50 UTC (rev 186367)
+++ PKGBUILD2016-08-10 22:07:57 UTC (rev 186368)
@@ -5,7 +5,7 @@
 
 pkgbase=appstream
 pkgname=(appstream appstream-qt)
-pkgver=0.9.7
+pkgver=0.9.8
 pkgrel=1
 pkgdesc="Provides a standard for creating app stores across distributions"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 depends=(xapian-core polkit libyaml libxml2 protobuf)
 makedepends=(cmake xmlto intltool gobject-introspection python2 docbook-xsl 
qt5-base)
 
source=("http://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz";
 update-appstream-index.hook)
-sha256sums=('edb7df26b5e118b481742b339a792844bd6a1d5ed4a57320e06a6b504603038e'
+sha256sums=('dae708054526ce665952cfe019c615bee761bbd08fc2a22675aaea77ef8d90ce'
 '4f65f9f7facc3e37074dc6532390b075377116d939ce3173654349c39d755e76')
 
 prepare() {


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 22:08:30
  Author: arojas
Revision: 186369

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

Added:
  appstream/repos/community-i686/PKGBUILD
(from rev 186368, appstream/trunk/PKGBUILD)
  appstream/repos/community-i686/update-appstream-index.hook
(from rev 186368, appstream/trunk/update-appstream-index.hook)
  appstream/repos/community-x86_64/PKGBUILD
(from rev 186368, appstream/trunk/PKGBUILD)
  appstream/repos/community-x86_64/update-appstream-index.hook
(from rev 186368, appstream/trunk/update-appstream-index.hook)
Deleted:
  appstream/repos/community-i686/PKGBUILD
  appstream/repos/community-i686/update-appstream-index.hook
  appstream/repos/community-x86_64/PKGBUILD
  appstream/repos/community-x86_64/update-appstream-index.hook

--+
 /PKGBUILD|  102 +
 /update-appstream-index.hook |   22 +
 community-i686/PKGBUILD  |   51 
 community-i686/update-appstream-index.hook   |   11 --
 community-x86_64/PKGBUILD|   51 
 community-x86_64/update-appstream-index.hook |   11 --
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-10 22:07:57 UTC (rev 186368)
+++ community-i686/PKGBUILD 2016-08-10 22:08:30 UTC (rev 186369)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Jameson Pugh 
-# Contributor: Tim Jester-Pfadt gmx.de>
-
-pkgbase=appstream
-pkgname=(appstream appstream-qt)
-pkgver=0.9.7
-pkgrel=1
-pkgdesc="Provides a standard for creating app stores across distributions"
-arch=(i686 x86_64)
-url="http://distributions.freedesktop.org/wiki/AppStream";
-license=(GPL)
-depends=(xapian-core polkit libyaml libxml2 protobuf)
-makedepends=(cmake xmlto intltool gobject-introspection python2 docbook-xsl 
qt5-base)
-source=("http://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz";
 update-appstream-index.hook)
-sha256sums=('edb7df26b5e118b481742b339a792844bd6a1d5ed4a57320e06a6b504603038e'
-'4f65f9f7facc3e37074dc6532390b075377116d939ce3173654349c39d755e76')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../AppStream-$pkgver \
-   -DQT=ON \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package_appstream() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-  
-# provided by -qt subpackage
-  rm -r "$pkgdir"/usr/{include/AppstreamQt,lib/cmake,lib/libAppstreamQt.*}
-
-  install -Dm644 "$srcdir"/update-appstream-index.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-appstream-index.hook
-}
-
-package_appstream-qt() {
-  pkgdesc='Qt5 interface for AppStream'
-  depends=(appstream qt5-base)
-
-  cd build/qt
-  make DESTDIR="$pkgdir" install
-}

Copied: appstream/repos/community-i686/PKGBUILD (from rev 186368, 
appstream/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-10 22:08:30 UTC (rev 186369)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Jameson Pugh 
+# Contributor: Tim Jester-Pfadt gmx.de>
+
+pkgbase=appstream
+pkgname=(appstream appstream-qt)
+pkgver=0.9.8
+pkgrel=1
+pkgdesc="Provides a standard for creating app stores across distributions"
+arch=(i686 x86_64)
+url="http://distributions.freedesktop.org/wiki/AppStream";
+license=(GPL)
+depends=(xapian-core polkit libyaml libxml2 protobuf)
+makedepends=(cmake xmlto intltool gobject-introspection python2 docbook-xsl 
qt5-base)
+source=("http://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz";
 update-appstream-index.hook)
+sha256sums=('dae708054526ce665952cfe019c615bee761bbd08fc2a22675aaea77ef8d90ce'
+'4f65f9f7facc3e37074dc6532390b075377116d939ce3173654349c39d755e76')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../AppStream-$pkgver \
+   -DQT=ON \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package_appstream() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+  
+# provided by -qt subpackage
+  rm -r "$pkgdir"/usr/{include/AppstreamQt,lib/cmake,lib/libAppstreamQt.*}
+
+  install -Dm644 "$srcdir"/update-appstream-index.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-appstream-index.hook
+}
+
+package_appstream-qt() {
+  pkgdesc='Qt5 interface for AppStream'
+  depends=(appstream qt5-base)
+
+  cd build/qt
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/update-appstream-index.hook
===
--- community-i686/update-appstream-index.hook  2016-08-10 22:07:57 UTC (rev 
186368)
+++ community-i686/update-appstream-index.

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

2016-08-10 Thread Christian Hesse
Date: Wednesday, August 10, 2016 @ 22:33:42
  Author: eworm
Revision: 186370

drop subversion from makedepends

Modified:
  ctemplate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 22:08:30 UTC (rev 186369)
+++ PKGBUILD2016-08-10 22:33:42 UTC (rev 186370)
@@ -12,7 +12,7 @@
 arch=('i686' 'x86_64')
 url='https://github.com/olafvdspek/ctemplate'
 license=('BSD')
-makedepends=('subversion' 'python2')
+makedepends=('python2')
 depends=('gcc-libs' 'perl')
 
source=("https://github.com/OlafvdSpek/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz";)
 sha256sums=('99e5cb6d3f8407d5b1ffef96b1d59ce3981cda3492814e5ef820684ebb782556')


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

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 22:54:48
  Author: heftig
Revision: 273583

2016.8-2: Remove libgsystem dep

Modified:
  ostree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 19:44:46 UTC (rev 273582)
+++ PKGBUILD2016-08-10 22:54:48 UTC (rev 273583)
@@ -4,13 +4,12 @@
 
 pkgname=ostree
 pkgver=2016.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Git for operating system binaries"
 url="https://ostree.readthedocs.org/en/latest/";
 arch=(i686 x86_64)
 license=(GPL)
-depends=(glib2 libgsystem xz zlib libsoup gpgme libarchive fuse util-linux
- mkinitcpio)
+depends=(glib2 xz zlib libsoup gpgme libarchive fuse util-linux mkinitcpio)
 makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
  python2)
 checkdepends=(parallel syslinux gjs)


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

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 22:59:01
  Author: heftig
Revision: 273584

0.8+3+g68cd5af-1

Modified:
  libasyncns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 22:54:48 UTC (rev 273583)
+++ PKGBUILD2016-08-10 22:59:01 UTC (rev 273584)
@@ -6,23 +6,36 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=libasyncns
-pkgver=0.8
-pkgrel=5
+pkgver=0.8+3+g68cd5af
+pkgrel=1
 pkgdesc="A C library for executing name service queries asynchronously"
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
 url="http://0pointer.de/lennart/projects/libasyncns";
-license=('LGPL')
-depends=('glibc')
-source=("$url/$pkgname-$pkgver.tar.gz")
-md5sums=('1f553d6ce1ad255bc83b3d8e9384f515')
+license=(LGPL)
+depends=(glibc)
+makedepends=(git lynx)
+_commit=68cd5aff1467638c086f1bedcc750e34917168e4
+source=("git://git.0pointer.de/libasyncns.git#commit=$_commit")
+md5sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./bootstrap.sh
+}
+
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --disable-lynx
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in libasyncns/trunk (ChangeLog)

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 22:59:34
  Author: heftig
Revision: 273585

Remove ChangeLog

Deleted:
  libasyncns/trunk/ChangeLog

---+
 ChangeLog |   13 -
 1 file changed, 13 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2016-08-10 22:59:01 UTC (rev 273584)
+++ ChangeLog   2016-08-10 22:59:34 UTC (rev 273585)
@@ -1,13 +0,0 @@
-2010-02-10  Corrado Primier  
-
-   * Version bump: 0.8
-
-2009-01-17  Corrado Primier  
-
-   * Version bump: 0.7
-
-   * PKGBUILD: moved to $srcdir/$pkgdir syntax
-
-2007-06-20  Georg Grabler  
-   
-   * Updated to 0.3


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

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 23:04:17
  Author: heftig
Revision: 186371

0.8+3+g68cd5af-1

Modified:
  lib32-libasyncns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 22:33:42 UTC (rev 186370)
+++ PKGBUILD2016-08-10 23:04:17 UTC (rev 186371)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: Jan "heftig" Steffens 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Corrado Primier 
 # Contributor: Eric Belanger 
 # Contributor: William Rea 
@@ -7,33 +7,42 @@
 
 _pkgbasename=libasyncns
 pkgname=lib32-$_pkgbasename
-pkgver=0.8
-pkgrel=7
-pkgdesc="A C library for Linux/Unix for executing name service queries 
asynchronously (32-bit)"
+pkgver=0.8+3+g68cd5af
+pkgrel=1
+pkgdesc="A C library for executing name service queries asynchronously"
 arch=(x86_64)
 url="http://0pointer.de/lennart/projects/libasyncns";
-license=('LGPL')
-options=('!libtool')
-depends=('lib32-glibc' $_pkgbasename)
-makedepends=('gcc-multilib')
-source=(http://0pointer.de/lennart/projects/libasyncns/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('1f553d6ce1ad255bc83b3d8e9384f515')
+license=(LGPL)
+depends=(lib32-glibc $_pkgbasename)
+makedepends=(gcc-multilib git lynx)
+_commit=68cd5aff1467638c086f1bedcc750e34917168e4
+source=("git://git.0pointer.de/libasyncns.git#commit=$_commit")
+md5sums=('SKIP')
 
-build() {
-  cd ${srcdir}/libasyncns-${pkgver}
+pkgver() {
+  cd $_pkgbasename
+  git describe | sed 's/^v//;s/-/+/g'
+}
 
-  export CC="gcc -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+prepare() {
+  cd $_pkgbasename
 
   # Fix libdir
   sed -i '/^libdir=/s:/lib:/lib32:' *.pc.in
 
-  ./configure --prefix=/usr --disable-lynx --libdir=/usr/lib32
+  NOCONFIGURE=1 ./bootstrap.sh
+}
+
+build() {
+  cd $_pkgbasename
+  export CC="gcc -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd ${srcdir}/libasyncns-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -rf "${pkgdir}"/usr/{include,share}
+  cd $_pkgbasename
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir"/usr/{include,share}
 }


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

2016-08-10 Thread Jan Steffens
Date: Wednesday, August 10, 2016 @ 23:06:52
  Author: heftig
Revision: 273586

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

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

---+
 /PKGBUILD |  128 
 extra-i686/PKGBUILD   |   65 
 extra-x86_64/PKGBUILD |   65 
 3 files changed, 128 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-10 22:59:34 UTC (rev 273585)
+++ extra-i686/PKGBUILD 2016-08-10 23:06:52 UTC (rev 273586)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=2016.8
-pkgrel=1
-pkgdesc="Git for operating system binaries"
-url="https://ostree.readthedocs.org/en/latest/";
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2 libgsystem xz zlib libsoup gpgme libarchive fuse util-linux
- mkinitcpio)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
- python2)
-checkdepends=(parallel syslinux gjs)
-source=("git+https://github.com/ostreedev/ostree#tag=v$pkgver";
-"git+https://git.gnome.org/browse/libglnx";
-"git+https://github.com/mendsley/bsdiff";)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
-  git submodule update
-
-  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---with-mkinitcpio \
---with-builtin-grub2-mkconfig \
---disable-static \
---enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # GPG is broken in build chroots ATM
-  #make -k check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: ostree/repos/extra-i686/PKGBUILD (from rev 273585, 
ostree/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-08-10 23:06:52 UTC (rev 273586)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mirco Tischler 
+
+pkgname=ostree
+pkgver=2016.8
+pkgrel=2
+pkgdesc="Git for operating system binaries"
+url="https://ostree.readthedocs.org/en/latest/";
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glib2 xz zlib libsoup gpgme libarchive fuse util-linux mkinitcpio)
+makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
+ python2)
+checkdepends=(parallel syslinux gjs)
+source=("git+https://github.com/ostreedev/ostree#tag=v$pkgver";
+"git+https://git.gnome.org/browse/libglnx";
+"git+https://github.com/mendsley/bsdiff";)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
+  git submodule update
+
+  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-mkinitcpio \
+--with-builtin-grub2-mkconfig \
+--disable-static \
+--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # GPG is broken in build chroots ATM
+  #make -k check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-08-10 22:59:34 UTC (rev 273585)
+++ extra-x86_64/PKGBUILD   2016-08-10 23:06:52 UTC (rev 273586)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=2016.8
-pkgrel=1
-pkgdesc="Git for operating system binaries"
-url="https://ostree.readthedocs.org/en/latest/";
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2 libgsystem xz zlib libsoup gpgme libarchive fuse util-linux
- mkinitcpio)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
- python2)
-checkdepends=(parallel syslinux gjs)
-source=("git+https://g

  1   2   >