[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-04-27 Thread Tobias Powalowski
Date: Saturday, April 27, 2013 @ 13:23:29
  Author: tpowa
Revision: 89150

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

Added:
  open-vm-tools-modules/repos/community-testing-i686/
  open-vm-tools-modules/repos/community-testing-i686/PKGBUILD
(from rev 89149, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch
(from rev 89149, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-i686/modprobe.conf
(from rev 89149, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-i686/open-vm-tools-modules.install
(from rev 89149, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-testing-x86_64/
  open-vm-tools-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 89149, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-x86_64/linux-3.8.patch
(from rev 89149, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-x86_64/modprobe.conf
(from rev 89149, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-x86_64/open-vm-tools-modules.install
(from rev 89149, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-testing-i686/PKGBUILD|   60 +++
 community-testing-i686/linux-3.8.patch |   53 +
 community-testing-i686/modprobe.conf   |1 
 community-testing-i686/open-vm-tools-modules.install   |   23 +
 community-testing-x86_64/PKGBUILD  |   60 +++
 community-testing-x86_64/linux-3.8.patch   |   53 +
 community-testing-x86_64/modprobe.conf |1 
 community-testing-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 274 insertions(+)

Copied: open-vm-tools-modules/repos/community-testing-i686/PKGBUILD (from rev 
89149, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-04-27 11:23:29 UTC (rev 89150)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=11
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'procps' 'icu' 'uriparser' 'linux-headers')
+depends=('linux')
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.8.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'ff757686649404db0c2c9761eb293174')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  patch -Np1 -i "${srcdir}/linux-3.8.patch"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+  sed -i 's|putname(name);|__putname(name);|' 
modules/linux/vmblock/linux/control.c
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch 
(from rev 89149, open-vm-tools-modules/trunk/linux-3.8.patch)
===
--- community-testing-i686/linux-3.8.patch  (rev 0)
+++ community-testing-i686/linux-3.8.patch  2013-04-27 11:23:29 UTC (rev 
89150)
@@ -0,0 +1,53 @@
+diff -upr open-vm-tools-9.2.2-893683.orig/modules/linux/shared/compat_mm.h 
open-vm-tools-9.2.

[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-04-22 Thread Tobias Powalowski
Date: Monday, April 22, 2013 @ 11:27:20
  Author: tpowa
Revision: 88750

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

Added:
  open-vm-tools-modules/repos/community-testing-i686/
  open-vm-tools-modules/repos/community-testing-i686/PKGBUILD
(from rev 88749, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch
(from rev 88749, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-i686/modprobe.conf
(from rev 88749, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-i686/open-vm-tools-modules.install
(from rev 88749, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-testing-x86_64/
  open-vm-tools-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 88749, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-x86_64/linux-3.8.patch
(from rev 88749, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-x86_64/modprobe.conf
(from rev 88749, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-x86_64/open-vm-tools-modules.install
(from rev 88749, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-testing-i686/PKGBUILD|   60 +++
 community-testing-i686/linux-3.8.patch |   53 +
 community-testing-i686/modprobe.conf   |1 
 community-testing-i686/open-vm-tools-modules.install   |   23 +
 community-testing-x86_64/PKGBUILD  |   60 +++
 community-testing-x86_64/linux-3.8.patch   |   53 +
 community-testing-x86_64/modprobe.conf |1 
 community-testing-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 274 insertions(+)

Copied: open-vm-tools-modules/repos/community-testing-i686/PKGBUILD (from rev 
88749, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-04-22 09:27:20 UTC (rev 88750)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=10
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'procps' 'icu' 'uriparser' 'linux-headers')
+depends=('linux')
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.8.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'ff757686649404db0c2c9761eb293174')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  patch -Np1 -i "${srcdir}/linux-3.8.patch"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+  sed -i 's|putname(name);|__putname(name);|' 
modules/linux/vmblock/linux/control.c
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch 
(from rev 88749, open-vm-tools-modules/trunk/linux-3.8.patch)
===
--- community-testing-i686/linux-3.8.patch  (rev 0)
+++ community-testing-i686/linux-3.8.patch  2013-04-22 09:27:20 UTC (rev 
88750)
@@ -0,0 +1,53 @@
+diff -upr open-vm-tools-9.2.2-893683.orig/modules/linux/shared/compat_mm.h 
open-vm-tools-9.2.2-

[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-04-06 Thread Tobias Powalowski
Date: Saturday, April 6, 2013 @ 11:33:49
  Author: tpowa
Revision: 87758

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

Added:
  open-vm-tools-modules/repos/community-testing-i686/
  open-vm-tools-modules/repos/community-testing-i686/PKGBUILD
(from rev 87757, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch
(from rev 87757, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-i686/modprobe.conf
(from rev 87757, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-i686/open-vm-tools-modules.install
(from rev 87757, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-testing-x86_64/
  open-vm-tools-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 87757, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-x86_64/linux-3.8.patch
(from rev 87757, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-x86_64/modprobe.conf
(from rev 87757, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-x86_64/open-vm-tools-modules.install
(from rev 87757, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-testing-i686/PKGBUILD|   60 +++
 community-testing-i686/linux-3.8.patch |   53 +
 community-testing-i686/modprobe.conf   |1 
 community-testing-i686/open-vm-tools-modules.install   |   23 +
 community-testing-x86_64/PKGBUILD  |   60 +++
 community-testing-x86_64/linux-3.8.patch   |   53 +
 community-testing-x86_64/modprobe.conf |1 
 community-testing-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 274 insertions(+)

Copied: open-vm-tools-modules/repos/community-testing-i686/PKGBUILD (from rev 
87757, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-04-06 09:33:49 UTC (rev 87758)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=9
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'procps' 'icu' 'uriparser' 'linux-headers')
+depends=('linux')
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.8.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'ff757686649404db0c2c9761eb293174')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  patch -Np1 -i "${srcdir}/linux-3.8.patch"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+  sed -i 's|putname(name);|__putname(name);|' 
modules/linux/vmblock/linux/control.c
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch 
(from rev 87757, open-vm-tools-modules/trunk/linux-3.8.patch)
===
--- community-testing-i686/linux-3.8.patch  (rev 0)
+++ community-testing-i686/linux-3.8.patch  2013-04-06 09:33:49 UTC (rev 
87758)
@@ -0,0 +1,53 @@
+diff -upr open-vm-tools-9.2.2-893683.orig/modules/linux/shared/compat_mm.h 
open-vm-tools-9.2.2-

[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-03-30 Thread Evangelos Foutras
Date: Saturday, March 30, 2013 @ 12:15:06
  Author: foutrelis
Revision: 87369

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

Added:
  open-vm-tools-modules/repos/community-testing-i686/
  open-vm-tools-modules/repos/community-testing-i686/PKGBUILD
(from rev 87368, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch
(from rev 87368, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-i686/modprobe.conf
(from rev 87368, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-i686/open-vm-tools-modules.install
(from rev 87368, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-testing-x86_64/
  open-vm-tools-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 87368, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-x86_64/linux-3.8.patch
(from rev 87368, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-testing-x86_64/modprobe.conf
(from rev 87368, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-x86_64/open-vm-tools-modules.install
(from rev 87368, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-testing-i686/PKGBUILD|   60 +++
 community-testing-i686/linux-3.8.patch |   53 +
 community-testing-i686/modprobe.conf   |1 
 community-testing-i686/open-vm-tools-modules.install   |   23 +
 community-testing-x86_64/PKGBUILD  |   60 +++
 community-testing-x86_64/linux-3.8.patch   |   53 +
 community-testing-x86_64/modprobe.conf |1 
 community-testing-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 274 insertions(+)

Copied: open-vm-tools-modules/repos/community-testing-i686/PKGBUILD (from rev 
87368, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-03-30 11:15:06 UTC (rev 87369)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=8
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'procps' 'icu' 'uriparser' 'linux-headers')
+depends=('linux')
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.8.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'ff757686649404db0c2c9761eb293174')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  patch -Np1 -i "${srcdir}/linux-3.8.patch"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+  sed -i 's|putname(name);|__putname(name);|' 
modules/linux/vmblock/linux/control.c
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: open-vm-tools-modules/repos/community-testing-i686/linux-3.8.patch 
(from rev 87368, open-vm-tools-modules/trunk/linux-3.8.patch)
===
--- community-testing-i686/linux-3.8.patch  (rev 0)
+++ community-testing-i686/linux-3.8.patch  2013-03-30 11:15:06 UTC (rev 
87369)
@@ -0,0 +1,53 @@
+diff -upr open-vm-tools-9.2.2-893683.orig/modules/linux/shared/compat_mm.h 
open-vm-tools-9

[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-02-20 Thread Evangelos Foutras
Date: Thursday, February 21, 2013 @ 02:16:15
  Author: foutrelis
Revision: 84630

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

Added:
  open-vm-tools-modules/repos/community-staging-i686/
  open-vm-tools-modules/repos/community-staging-i686/PKGBUILD
(from rev 84629, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-staging-i686/linux-3.8.patch
(from rev 84629, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-staging-i686/modprobe.conf
(from rev 84629, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-staging-i686/open-vm-tools-modules.install
(from rev 84629, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-staging-x86_64/
  open-vm-tools-modules/repos/community-staging-x86_64/PKGBUILD
(from rev 84629, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-staging-x86_64/linux-3.8.patch
(from rev 84629, open-vm-tools-modules/trunk/linux-3.8.patch)
  open-vm-tools-modules/repos/community-staging-x86_64/modprobe.conf
(from rev 84629, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-staging-x86_64/open-vm-tools-modules.install
(from rev 84629, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-staging-i686/PKGBUILD|   60 +++
 community-staging-i686/linux-3.8.patch |   53 +
 community-staging-i686/modprobe.conf   |1 
 community-staging-i686/open-vm-tools-modules.install   |   23 +
 community-staging-x86_64/PKGBUILD  |   60 +++
 community-staging-x86_64/linux-3.8.patch   |   53 +
 community-staging-x86_64/modprobe.conf |1 
 community-staging-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 274 insertions(+)

Copied: open-vm-tools-modules/repos/community-staging-i686/PKGBUILD (from rev 
84629, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-02-21 01:16:15 UTC (rev 84630)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=6
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'icu' 'uriparser' 'linux-headers')
+depends=("linux")
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.8.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'ff757686649404db0c2c9761eb293174')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  patch -Np1 -i "${srcdir}/linux-3.8.patch"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+  sed -i 's|putname(name);|__putname(name);|' 
modules/linux/vmblock/linux/control.c
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: open-vm-tools-modules/repos/community-staging-i686/linux-3.8.patch 
(from rev 84629, open-vm-tools-modules/trunk/linux-3.8.patch)
===
--- community-staging-i686/linux-3.8.patch  (rev 0)
+++ community-staging-i686/linux-3.8.patch  2013-02-21 01:16:15 UTC (rev 
84630)
@@ -0,0 +1,53 @@
+diff -upr open-vm-tools-9.2.2-893683.orig/modules/linux/shared/compat_mm.h 
open-vm-tools-9.2.2-8

[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-02-05 Thread Evangelos Foutras
Date: Tuesday, February 5, 2013 @ 19:08:52
  Author: foutrelis
Revision: 83850

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

Added:
  open-vm-tools-modules/repos/community-testing-i686/
  open-vm-tools-modules/repos/community-testing-i686/PKGBUILD
(from rev 83849, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-i686/linux-3.6-build-fix.patch
(from rev 83849, open-vm-tools-modules/trunk/linux-3.6-build-fix.patch)
  open-vm-tools-modules/repos/community-testing-i686/modprobe.conf
(from rev 83849, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-i686/open-vm-tools-modules.install
(from rev 83849, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-testing-x86_64/
  open-vm-tools-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 83849, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-x86_64/linux-3.6-build-fix.patch
(from rev 83849, open-vm-tools-modules/trunk/linux-3.6-build-fix.patch)
  open-vm-tools-modules/repos/community-testing-x86_64/modprobe.conf
(from rev 83849, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-x86_64/open-vm-tools-modules.install
(from rev 83849, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-testing-i686/PKGBUILD|   58 +
 community-testing-i686/linux-3.6-build-fix.patch   |   63 +++
 community-testing-i686/modprobe.conf   |1 
 community-testing-i686/open-vm-tools-modules.install   |   23 +
 community-testing-x86_64/PKGBUILD  |   58 +
 community-testing-x86_64/linux-3.6-build-fix.patch |   63 +++
 community-testing-x86_64/modprobe.conf |1 
 community-testing-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 290 insertions(+)

Copied: open-vm-tools-modules/repos/community-testing-i686/PKGBUILD (from rev 
83849, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-02-05 18:08:52 UTC (rev 83850)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=4
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'icu' 'uriparser' 'linux-headers')
+depends=("linux")
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.6-build-fix.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'd9ffaf628837ea6a216b96dac69705e6')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+#  patch -p1 <$srcdir/linux-3.6-build-fix.patch
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: 
open-vm-tools-modules/repos/community-testing-i686/linux-3.6-build-fix.patch 
(from rev 83849, open-vm-tools-modules/trunk/linux-3.6-build-fix.patch)
===
--- community-testing-i686/linux-3.6-build-fix.patch
(rev 0)
+++ community-testing-i686/linux-3.6-build-fix.patch2013-02-05 18:08:52 UTC 
(rev 83850)
@@ -0,0 +1,63 @@
+diff -wbBur open-vm-tools-2012.05.21-724730.org/modules/linux/vmhgfs/inode.c 
open-vm-tools-201

[arch-commits] Commit in open-vm-tools-modules/repos (10 files)

2013-01-28 Thread Tobias Powalowski
Date: Monday, January 28, 2013 @ 14:41:47
  Author: tpowa
Revision: 83220

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

Added:
  open-vm-tools-modules/repos/community-testing-i686/
  open-vm-tools-modules/repos/community-testing-i686/PKGBUILD
(from rev 83219, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-i686/linux-3.6-build-fix.patch
(from rev 83219, open-vm-tools-modules/trunk/linux-3.6-build-fix.patch)
  open-vm-tools-modules/repos/community-testing-i686/modprobe.conf
(from rev 83219, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-i686/open-vm-tools-modules.install
(from rev 83219, open-vm-tools-modules/trunk/open-vm-tools-modules.install)
  open-vm-tools-modules/repos/community-testing-x86_64/
  open-vm-tools-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 83219, open-vm-tools-modules/trunk/PKGBUILD)
  open-vm-tools-modules/repos/community-testing-x86_64/linux-3.6-build-fix.patch
(from rev 83219, open-vm-tools-modules/trunk/linux-3.6-build-fix.patch)
  open-vm-tools-modules/repos/community-testing-x86_64/modprobe.conf
(from rev 83219, open-vm-tools-modules/trunk/modprobe.conf)
  
open-vm-tools-modules/repos/community-testing-x86_64/open-vm-tools-modules.install
(from rev 83219, open-vm-tools-modules/trunk/open-vm-tools-modules.install)

+
 community-testing-i686/PKGBUILD|   58 +
 community-testing-i686/linux-3.6-build-fix.patch   |   63 +++
 community-testing-i686/modprobe.conf   |1 
 community-testing-i686/open-vm-tools-modules.install   |   23 +
 community-testing-x86_64/PKGBUILD  |   58 +
 community-testing-x86_64/linux-3.6-build-fix.patch |   63 +++
 community-testing-x86_64/modprobe.conf |1 
 community-testing-x86_64/open-vm-tools-modules.install |   23 +
 8 files changed, 290 insertions(+)

Copied: open-vm-tools-modules/repos/community-testing-i686/PKGBUILD (from rev 
83219, open-vm-tools-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-01-28 13:41:47 UTC (rev 83220)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools-modules
+epoch=1
+pkgver=9.2.2
+_pkgsubver=893683
+pkgrel=3
+pkgdesc="kernel modules for the open source implementation of VMware Tools"
+arch=('i686' 'x86_64')
+url="http://open-vm-tools.sourceforge.net/";
+license=('GPL')
+makedepends=('libdnet' 'icu' 'uriparser' 'linux-headers')
+depends=("linux")
+install=$pkgname.install
+options=('!strip' '!makeflags')
+source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz";
+   "modprobe.conf"
+   "linux-3.6-build-fix.patch")
+md5sums=('7af505681d736d4c9ee6493b1166689f'
+ 'bc5518489077e91655489bd04b868584'
+ 'd9ffaf628837ea6a216b96dac69705e6')
+
+build() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+
+  sed -i 's|proc-3.2.8|procps|g' configure
+#  patch -p1 <$srcdir/linux-3.6-build-fix.patch
+
+  [ $NOEXTRACT -eq 1 ] || ./configure \
+  --prefix=/usr \
+  --without-x \
+  --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE
+
+  make -C modules modules
+}
+
+package() {
+  _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+  depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
+  KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.${_kernver}-ARCH/version)
+  msg "Kernel = $KERNEL_VERSION"
+
+  cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
+  mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/
+
+  find -type f -name '*.ko' \
+-exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" 
{} +
+
+  gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko
+
+  install -D -m 644 ${srcdir}/modprobe.conf 
${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf
+  sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" 
$startdir/$pkgname.install
+}

Copied: 
open-vm-tools-modules/repos/community-testing-i686/linux-3.6-build-fix.patch 
(from rev 83219, open-vm-tools-modules/trunk/linux-3.6-build-fix.patch)
===
--- community-testing-i686/linux-3.6-build-fix.patch
(rev 0)
+++ community-testing-i686/linux-3.6-build-fix.patch2013-01-28 13:41:47 UTC 
(rev 83220)
@@ -0,0 +1,63 @@
+diff -wbBur open-vm-tools-2012.05.21-724730.org/modules/linux/vmhgfs/inode.c 
open-vm-tools-2012.05.