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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:55:15
  Author: tpowa
Revision: 113858

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

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

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

Copied: virtualbox-modules/repos/community-testing-i686/PKGBUILD (from rev 
113857, virtualbox-modules/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:55:15 UTC (rev 113858)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Sébastien Luttringer
+
+pkgbase=virtualbox-modules
+pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
+pkgver=4.3.12
+pkgrel=6
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux>=3.15' 'linux<3.16'
+ 'linux-headers>=3.15' 'linux-headers<3.16'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-3.15-ARCH
+
+build() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  # dkms need modification to be run as user
+  cp -r /var/lib/dkms .
+  echo "dkms_tree='$srcdir/dkms'" > dkms.conf
+  # build host modules
+  msg2 'Host modules'
+  dkms --dkmsframework dkms.conf build "vboxhost/$pkgver" -k "$_kernver"
+  # build guest modules
+  msg2 'Guest modules'
+  dkms --dkmsframework dkms.conf build "vboxguest/$pkgver" -k "$_kernver"
+}
+
+package_virtualbox-host-modules(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Host kernel modules for VirtualBox'
+  depends=('linux>=3.15' 'linux<3.16')
+  replaces=('virtualbox-modules')
+  conflicts=('virtualbox-modules')
+  install=virtualbox-host-modules.install
+
+  cd "dkms/vboxhost/$pkgver/$_kernver/$CARCH/module"
+  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}
+
+package_virtualbox-guest-modules(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Guest kernel modules for VirtualBox'
+  license=('GPL')
+  depends=('linux>=3.15' 'linux<3.16')
+  replaces=('virtualbox-archlinux-modules')
+  conflicts=('virtualbox-archlinux-modules')
+  install=virtualbox-guest-modules.install
+
+  cd "dkms/vboxguest/$pkgver/$_kernver/$CARCH/module"
+  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=()

Copied: virtualbox-modules/repos/community-testing-i686/build.sh (from rev 
113857, virtualbox-modules/trunk/build.sh)
===
--- community-testing-i686/build.sh (rev 0)
+++ community-testing-i686/build.sh 2014-07-01 06:55:15 UTC (rev 113858)
@@ -0,0 +1,60 @@
+#!/bin/bash
+# lazyness can be enhanced everyday
+
+

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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:55:07
  Author: tpowa
Revision: 113857

upgpkg: virtualbox-modules 4.3.12-6

rebuild against 3.15.3

Modified:
  virtualbox-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:53:09 UTC (rev 113856)
+++ PKGBUILD2014-07-01 06:55:07 UTC (rev 113857)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules
 pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
 pkgver=4.3.12
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:53:02
  Author: tpowa
Revision: 113855

upgpkg: vhba-module 20140629-2

rebuild against 3.15.3

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:52:08 UTC (rev 113854)
+++ PKGBUILD2014-07-01 06:53:02 UTC (rev 113855)
@@ -6,7 +6,7 @@
 pkgname=vhba-module
 pkgver=20140629
 _extramodules=extramodules-3.15-ARCH
-pkgrel=1
+pkgrel=2
 pkgdesc="Kernel module that emulates SCSI devices"
 arch=('i686' 'x86_64')
 url="http://cdemu.sourceforge.net/";



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:53:09
  Author: tpowa
Revision: 113856

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 113855, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-i686/PKGBUILD
(from rev 113855, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-i686/vhba-module.install
(from rev 113855, 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 113855, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 113855, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/vhba-module.install
(from rev 113855, vhba-module/trunk/vhba-module.install)

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

Copied: vhba-module/repos/community-testing-i686/60-vhba.rules (from rev 
113855, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-i686/60-vhba.rules(rev 0)
+++ community-testing-i686/60-vhba.rules2014-07-01 06:53:09 UTC (rev 
113856)
@@ -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 113855, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:53:09 UTC (rev 113856)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=vhba-module
+pkgver=20140629
+_extramodules=extramodules-3.15-ARCH
+pkgrel=2
+pkgdesc="Kernel module that emulates SCSI devices"
+arch=('i686' 'x86_64')
+url="http://cdemu.sourceforge.net/";
+license=('GPL')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+options=(!makeflags)
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2";
+'60-vhba.rules')
+md5sums=('6b307a80df9c163768cc7ecb3ccebb71'
+ '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 
113855, vhba-module/trunk/vhba-module.install)
===
--- community-testing-i686/vhba-module.install  (rev 0)
+++ community-testing-i686/vhba-module.install  2014-07-01 06:53:09 UTC (rev 
113856)
@@ -0,0 +1,22 @@
+EXTRAMODULES=
+
+_updatemod() {
+  echo "  > Updating module dependencies..."
+  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_upgrade() {
+  getent group cdemu &>/dev/null || groupadd -r cdemu
+  _updatemod
+}
+
+post_remove() {
+  _updatemod
+  groupdel cdemu
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
113855, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2014-07-01 06:53:09 UTC (rev 
113856)
@@ -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 113855, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-01 06:53:09 UTC (rev 113856)
@@ -0,0 +1,44 @@
+

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

2014-06-30 Thread Ike Devolder
Date: Tuesday, July 1, 2014 @ 08:51:17
  Author: idevolder
Revision: 113849

libnfs :: 1.9.4

Modified:
  libnfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:50:40 UTC (rev 113848)
+++ PKGBUILD2014-07-01 06:51:17 UTC (rev 113849)
@@ -2,8 +2,8 @@
 # Maintainer: BlackIkeEagle 
 
 pkgname=libnfs
-pkgver=1.9.3
-pkgrel=2
+pkgver=1.9.4
+pkgrel=1
 pkgdesc="client library for accessing NFS shares"
 arch=('i686' 'x86_64')
 url="https://github.com/sahlberg/libnfs";
@@ -11,14 +11,12 @@
 depends=('glibc')
 source=(
"https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
-   '0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch'
 )
 
-prepare() {
-  cd "$pkgname-$pkgname-$pkgver"
+#prepare() {
+  #cd "$pkgname-$pkgname-$pkgver"
 
-  patch -p1 -i 
"$srcdir/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch"
-}
+#}
 
 build() {
cd "$pkgname-$pkgname-$pkgver"
@@ -33,7 +31,4 @@
make DESTDIR="$pkgdir" install
 }
 
-sha256sums=(
-   '9d1c988065b373ea25e195aedff4c33ca949fee41c61bdb38a26908bb618315a'
-   '4a84a304a8364b89b90ef6bc43c9190e2ff600fd64fd15e6ecc20ab14eed78a5'
-)
+sha256sums=('57502aa1904c402965df40ad17ce4b71d1d98f7c2a2b31a6d6f208fa6f787d49')



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:51:44
  Author: tpowa
Revision: 113851

upgpkg: tp_smapi 0.41-50

rebuild against 3.15.3

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:51:32 UTC (rev 113850)
+++ PKGBUILD2014-07-01 06:51:44 UTC (rev 113851)
@@ -10,7 +10,7 @@
 
 pkgname=tp_smapi
 pkgver=0.41
-pkgrel=49
+pkgrel=50
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:51:50
  Author: tpowa
Revision: 113853

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 113851, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-i686/tp_smapi.install
(from rev 113851, tp_smapi/trunk/tp_smapi.install)
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 113852, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install
(from rev 113852, tp_smapi/trunk/tp_smapi.install)

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

Copied: tp_smapi/repos/community-testing-i686/PKGBUILD (from rev 113851, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:51:50 UTC (rev 113853)
@@ -0,0 +1,59 @@
+# $Id$
+# 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
+pkgver=0.41
+pkgrel=50
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || 
true)
+  _kernver=$(< "${_extramodules}/version")
+
+  sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \
+ -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || 
true)
+  _kernver=$(< "${_extramodules}/version")
+
+  make -C "${_extramodules%/*}/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/${_extramodules%%/lib/*}" \
+M="${srcdir}/${pkgname}-${pkgver}" modules_install
+
+  cd "${pkgdir}/${_extramodules%/*}"
+  mv "${_kernver}/extra" "${_extramodules##*/}"
+  rmdir "${_kernver}"
+
+  # compress kernel modules
+  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
+
+  # load module on startup
+  echo tp_smapi > "${srcdir}/${pkgname}.conf"
+  install -Dm644 "${srcdir}/${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf"
+
+  # update kernel version in install file
+  sed -ri "s#^(extramodules=).*\$#\1${_extramodules}#" 
"${startdir}/${pkgname}.install"
+}

Copied: tp_smapi/repos/community-testing-i686/tp_smapi.install (from rev 
113851, tp_smapi/trunk/tp_smapi.install)
===
--- community-testing-i686/tp_smapi.install (rev 0)
+++ community-testing-i686/tp_smapi.install 2014-07-01 06:51:50 UTC (rev 
113853)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-3.15-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 113852, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-01 06:51:50 UTC (rev 113853)
@@ -0,0 +1,59 @@
+# $Id$
+# 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
+pkgver=0.41
+pkgrel=50
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f "/usr/lib

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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:51:32
  Author: fyan
Revision: 113850

archrelease: copy trunk to community-any

Added:
  ibus-googlepinyin/repos/community-any/PKGBUILD
(from rev 113848, ibus-googlepinyin/trunk/PKGBUILD)
Deleted:
  ibus-googlepinyin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 06:51:17 UTC (rev 113849)
+++ PKGBUILD2014-07-01 06:51:32 UTC (rev 113850)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Author: Jiahua Huang 
-# Contributor: Yangtse 
-
-pkgname=ibus-googlepinyin
-pkgver=0.1.2
-pkgrel=3
-pkgdesc="IBus Wrapper for libgooglepinyin"
-arch=('any')
-url="http://code.google.com/p/libgooglepinyin";
-license=('APACHE')
-optdepends=(
-'opencc: for simplified chinese translation to tranditional chinese'
-)
-depends=('libgooglepinyin' 'ibus' 'iso-codes')
-makedepends=('cmake')
-source=("http://libgooglepinyin.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
-
-build() {
-  cd "$srcdir"
-
-  msg "Starting make..."
-
-  rm -rf "$srcdir/build"
-  cp -rf "$srcdir/$pkgname" "$srcdir/build"
-  cd "$srcdir/build"
-
-  find . -type f -name '*.py' | xargs sed -i 
's|/usr/bin/python|/usr/bin/python2|g'
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-}
-
-package() {
-  cd "$srcdir/build"
-  make DESTDIR="$pkgdir" install
-}
-
-md5sums=('f9af459849c29934e8d59fc7f23a9318')

Copied: ibus-googlepinyin/repos/community-any/PKGBUILD (from rev 113848, 
ibus-googlepinyin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 06:51:32 UTC (rev 113850)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Author: Jiahua Huang 
+# Contributor: Yangtse 
+
+pkgname=ibus-googlepinyin
+pkgver=0.1.2
+pkgrel=4
+pkgdesc="IBus Wrapper for libgooglepinyin"
+arch=('any')
+url="http://code.google.com/p/libgooglepinyin";
+license=('APACHE')
+optdepends=('opencc: for simplified chinese translation to tranditional 
chinese')
+depends=('libgooglepinyin' 'ibus' 'iso-codes')
+makedepends=('cmake')
+source=("http://libgooglepinyin.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
+
+build() {
+  rm -rf build
+  mkdir -p build
+  cd build
+
+  find ../$pkgname -type f -name '*.py' | xargs sed -i 
's|/usr/bin/python|/usr/bin/python2|g'
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../$pkgname
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+md5sums=('f9af459849c29934e8d59fc7f23a9318')



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

2014-06-30 Thread Ike Devolder
Date: Tuesday, July 1, 2014 @ 08:52:08
  Author: idevolder
Revision: 113854

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

Added:
  libnfs/repos/community-i686/PKGBUILD
(from rev 113853, libnfs/trunk/PKGBUILD)
  libnfs/repos/community-x86_64/PKGBUILD
(from rev 113853, libnfs/trunk/PKGBUILD)
Deleted:
  
libnfs/repos/community-i686/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
  libnfs/repos/community-i686/PKGBUILD
  
libnfs/repos/community-x86_64/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
  libnfs/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  
|   68 ++
 community-i686/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch   
|   29 
 community-i686/PKGBUILD
|   39 -
 community-x86_64/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch 
|   29 
 community-x86_64/PKGBUILD  
|   39 -
 5 files changed, 68 insertions(+), 136 deletions(-)

Deleted: 
community-i686/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
===
--- 
community-i686/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
2014-07-01 06:51:50 UTC (rev 113853)
+++ 
community-i686/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
2014-07-01 06:52:08 UTC (rev 113854)
@@ -1,29 +0,0 @@
-From d5f7880641c979b986f6c4d7b6502bd7e768a9ea Mon Sep 17 00:00:00 2001
-From: Arne Redlich 
-Date: Sun, 9 Mar 2014 21:55:42 +0100
-Subject: [PATCH] nfs_normalize_path: don't strip trailing slash from "/"
-
-Otherwise end up with a null string which is not permitted (RFC 1813, 3.2;
-the code checks for it right after the now fixed nullification of "/").
-
-Signed-off-by: Arne Redlich 

- lib/libnfs.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/libnfs.c b/lib/libnfs.c
-index a237f60..9053ab1 100644
 a/lib/libnfs.c
-+++ b/lib/libnfs.c
-@@ -994,7 +994,7 @@ static int nfs_normalize_path(struct nfs_context *nfs, 
char *path)
- 
-   /* /$ -> \0 */
-   len = strlen(path);
--  if (len >= 1) {
-+  if (len > 1) {
-   if (path[len - 1] == '/') {
-   path[len - 1] = '\0';
-   len--;
--- 
-2.0.0
-

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:51:50 UTC (rev 113853)
+++ community-i686/PKGBUILD 2014-07-01 06:52:08 UTC (rev 113854)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle 
-
-pkgname=libnfs
-pkgver=1.9.3
-pkgrel=2
-pkgdesc="client library for accessing NFS shares"
-arch=('i686' 'x86_64')
-url="https://github.com/sahlberg/libnfs";
-license=('GPL')
-depends=('glibc')
-source=(
-   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
-   '0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch'
-)
-
-prepare() {
-  cd "$pkgname-$pkgname-$pkgver"
-
-  patch -p1 -i 
"$srcdir/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch"
-}
-
-build() {
-   cd "$pkgname-$pkgname-$pkgver"
-
-   autoreconf -vif
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-sha256sums=(
-   '9d1c988065b373ea25e195aedff4c33ca949fee41c61bdb38a26908bb618315a'
-   '4a84a304a8364b89b90ef6bc43c9190e2ff600fd64fd15e6ecc20ab14eed78a5'
-)

Copied: libnfs/repos/community-i686/PKGBUILD (from rev 113853, 
libnfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:52:08 UTC (rev 113854)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libnfs
+pkgver=1.9.4
+pkgrel=1
+pkgdesc="client library for accessing NFS shares"
+arch=('i686' 'x86_64')
+url="https://github.com/sahlberg/libnfs";
+license=('GPL')
+depends=('glibc')
+source=(
+   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
+)
+
+#prepare() {
+  #cd "$pkgname-$pkgname-$pkgver"
+
+#}
+
+build() {
+   cd "$pkgname-$pkgname-$pkgver"
+
+   autoreconf -vif
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+
+sha256sums=('57502aa1904c402965df40ad17ce4b71d1d98f7c2a2b31a6d6f208fa6f787d49')

Deleted: 
community-x86_64/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
===
--- 
community-x86_64/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch  
2014-07-01 06:51:50 UTC (re

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

2014-06-30 Thread Ike Devolder
Date: Tuesday, July 1, 2014 @ 08:51:46
  Author: idevolder
Revision: 113852

libnfs :: drop applied patch

Deleted:
  libnfs/trunk/0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch

---+
 0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch |   29 --
 1 file changed, 29 deletions(-)

Deleted: 0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch
===
--- 0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch   
2014-07-01 06:51:44 UTC (rev 113851)
+++ 0001-nfs_normalize_path-don-t-strip-trailing-slash-from.patch   
2014-07-01 06:51:46 UTC (rev 113852)
@@ -1,29 +0,0 @@
-From d5f7880641c979b986f6c4d7b6502bd7e768a9ea Mon Sep 17 00:00:00 2001
-From: Arne Redlich 
-Date: Sun, 9 Mar 2014 21:55:42 +0100
-Subject: [PATCH] nfs_normalize_path: don't strip trailing slash from "/"
-
-Otherwise end up with a null string which is not permitted (RFC 1813, 3.2;
-the code checks for it right after the now fixed nullification of "/").
-
-Signed-off-by: Arne Redlich 

- lib/libnfs.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/libnfs.c b/lib/libnfs.c
-index a237f60..9053ab1 100644
 a/lib/libnfs.c
-+++ b/lib/libnfs.c
-@@ -994,7 +994,7 @@ static int nfs_normalize_path(struct nfs_context *nfs, 
char *path)
- 
-   /* /$ -> \0 */
-   len = strlen(path);
--  if (len >= 1) {
-+  if (len > 1) {
-   if (path[len - 1] == '/') {
-   path[len - 1] = '\0';
-   len--;
--- 
-2.0.0
-



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:50:40
  Author: fyan
Revision: 113848

upgpkg: ibus-googlepinyin 0.1.2-4

mtree rebuild

Modified:
  ibus-googlepinyin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:49:46 UTC (rev 113847)
+++ PKGBUILD2014-07-01 06:50:40 UTC (rev 113848)
@@ -5,33 +5,27 @@
 
 pkgname=ibus-googlepinyin
 pkgver=0.1.2
-pkgrel=3
+pkgrel=4
 pkgdesc="IBus Wrapper for libgooglepinyin"
 arch=('any')
 url="http://code.google.com/p/libgooglepinyin";
 license=('APACHE')
-optdepends=(
-'opencc: for simplified chinese translation to tranditional chinese'
-)
+optdepends=('opencc: for simplified chinese translation to tranditional 
chinese')
 depends=('libgooglepinyin' 'ibus' 'iso-codes')
 makedepends=('cmake')
 
source=("http://libgooglepinyin.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
 
 build() {
-  cd "$srcdir"
+  rm -rf build
+  mkdir -p build
+  cd build
 
-  msg "Starting make..."
-
-  rm -rf "$srcdir/build"
-  cp -rf "$srcdir/$pkgname" "$srcdir/build"
-  cd "$srcdir/build"
-
-  find . -type f -name '*.py' | xargs sed -i 
's|/usr/bin/python|/usr/bin/python2|g'
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  find ../$pkgname -type f -name '*.py' | xargs sed -i 
's|/usr/bin/python|/usr/bin/python2|g'
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../$pkgname
 }
 
 package() {
-  cd "$srcdir/build"
+  cd build
   make DESTDIR="$pkgdir" install
 }
 



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:49:46
  Author: fyan
Revision: 113847

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

Added:
  ibus-m17n/repos/community-i686/PKGBUILD
(from rev 113846, ibus-m17n/trunk/PKGBUILD)
  ibus-m17n/repos/community-x86_64/PKGBUILD
(from rev 113846, ibus-m17n/trunk/PKGBUILD)
Deleted:
  ibus-m17n/repos/community-i686/PKGBUILD
  ibus-m17n/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:48:17 UTC (rev 113846)
+++ community-i686/PKGBUILD 2014-07-01 06:49:46 UTC (rev 113847)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Lonfucius 
-# Contributor: Jesse Jaara 
-
-pkgname=ibus-m17n
-pkgver=1.3.4
-pkgrel=3
-pkgdesc='M17N engine for IBus'
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/ibus/'
-license=('LGPL')
-depends=('python2-pyenchant' 'ibus' 'm17n-db' 'm17n-lib')
-source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('068de56caa87c002adeae0de9e908f47e3f9fde9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure  \
---prefix=/usr \
---libexecdir=/usr/lib/ibus
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ibus-m17n/repos/community-i686/PKGBUILD (from rev 113846, 
ibus-m17n/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:49:46 UTC (rev 113847)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Lonfucius 
+# Contributor: Jesse Jaara 
+
+pkgname=ibus-m17n
+pkgver=1.3.4
+pkgrel=4
+pkgdesc='M17N engine for IBus'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/ibus/'
+license=('LGPL')
+depends=('python2-pyenchant' 'ibus' 'm17n-db' 'm17n-lib')
+source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('068de56caa87c002adeae0de9e908f47e3f9fde9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure  \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 06:48:17 UTC (rev 113846)
+++ community-x86_64/PKGBUILD   2014-07-01 06:49:46 UTC (rev 113847)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Lonfucius 
-# Contributor: Jesse Jaara 
-
-pkgname=ibus-m17n
-pkgver=1.3.4
-pkgrel=3
-pkgdesc='M17N engine for IBus'
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/ibus/'
-license=('LGPL')
-depends=('python2-pyenchant' 'ibus' 'm17n-db' 'm17n-lib')
-source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('068de56caa87c002adeae0de9e908f47e3f9fde9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure  \
---prefix=/usr \
---libexecdir=/usr/lib/ibus
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ibus-m17n/repos/community-x86_64/PKGBUILD (from rev 113846, 
ibus-m17n/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-01 06:49:46 UTC (rev 113847)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Lonfucius 
+# Contributor: Jesse Jaara 
+
+pkgname=ibus-m17n
+pkgver=1.3.4
+pkgrel=4
+pkgdesc='M17N engine for IBus'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/ibus/'
+license=('LGPL')
+depends=('python2-pyenchant' 'ibus' 'm17n-db' 'm17n-lib')
+source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('068de56caa87c002adeae0de9e908f47e3f9fde9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure  \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:48:17
  Author: fyan
Revision: 113846

upgpkg: ibus-m17n 1.3.4-4

mtree rebuild

Modified:
  ibus-m17n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:47:51 UTC (rev 113845)
+++ PKGBUILD2014-07-01 06:48:17 UTC (rev 113846)
@@ -6,7 +6,7 @@
 
 pkgname=ibus-m17n
 pkgver=1.3.4
-pkgrel=3
+pkgrel=4
 pkgdesc='M17N engine for IBus'
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/ibus/'



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:47:51
  Author: tpowa
Revision: 113845

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

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

+
 community-testing-i686/PKGBUILD|   60 +++
 community-testing-i686/rt3562sta.install   |   16 +++
 community-testing-x86_64/PKGBUILD  |   60 +++
 community-testing-x86_64/rt3562sta.install |   16 +++
 4 files changed, 152 insertions(+)

Copied: rt3562sta/repos/community-testing-i686/PKGBUILD (from rev 113844, 
rt3562sta/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:47:51 UTC (rev 113845)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Based on SUSE spec 
https://build.opensuse.org/package/files?package=rt3562sta&project=driver%3Awireless
+
+pkgname=rt3562sta
+pkgver=2.4.1.1_r1
+_patchrel=${pkgver/*_r/}
+pkgrel=6
+pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module"
+arch=(i686 x86_64)
+url="http://www.mediatek.com/en/Products/support.php?sn=501";
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/mtorromeo/rt3562sta-linux/archive/r${_patchrel}.tar.gz)
+
+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/rt3562sta-linux-r$_patchrel"
+
+   # clean up this mess of mixing RT2860STA with RT3562STA
+   # in documentation files
+   mv RT2860STA.dat RT3562STA.dat
+   mv RT2860STACard.dat RT3562STACard.dat
+   sed -i 's/2860/3562/g' *STA* iwpriv_usage.txt
+
+   # as we change the default name of the interface from raX to wlanX, 
change respective references in documentation, too
+   sed -i 's|ra0|wlan0|g' *.txt README* *.dat
+   sed -i 's|ra1|wlan1|g' *.txt README* *.dat
+   sed -i 's|ra2|wlan2|g' *.txt README* *.dat
+
+   export EXTRA_CFLAGS="-DVERSION=$pkgver"
+
+   # this Makefile is far too strict...
+   echo "LINUX_SRC = /usr/lib/modules/$KERNEL_RELEASE/build" >> Makefile
+
+   make
+}
+
+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/rt3562sta-linux-r$_patchrel"
+
+   install -Dm 0640 RT3562STA.dat 
"$pkgdir/etc/Wireless/RT3562STA/RT3562STA.dat"
+   install -Dm 0644 os/linux/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko"
+   install -dm 0755 "$pkgdir/usr/share/doc/$pkgname"
+   install -m 0644 iwpriv_usage.txt README* RT3562STA* 
sta_ate_iwpriv_usage.txt "$pkgdir/usr/share/doc/$pkgname"
+
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} \;
+   sed -i "s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH|" 
"$startdir/$pkgname.install"
+}
+
+sha256sums=('6fd6306b6fb3886bbf9d284a28cc065a4cdfea18a03708e99aa4c7a038bcf02f')

Copied: rt3562sta/repos/community-testing-i686/rt3562sta.install (from rev 
113844, rt3562sta/trunk/rt3562sta.install)
===
--- community-testing-i686/rt3562sta.install(rev 0)
+++ community-testing-i686/rt3562sta.install2014-07-01 06:47:51 UTC (rev 
113845)
@@ -0,0 +1,16 @@
+rebuild_module_dependencies() {
+   EXTRAMODULES='extramodules-3.15-ARCH'
+   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+   rebuild_module_dependencies
+}
+
+post_upgrade() {
+   rebuild_module_dependencies
+}
+
+post_remove() {
+   rebuild_module_dependencies
+}

Copied: rt3562sta/repos/community-testing-x86_64/PKGBUILD (from rev 113844, 
rt3562sta/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-01 06:47:51 UTC (rev 113845)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Based on SUSE spec 
https://build.opensuse.org/package/files?package=rt3562sta&proj

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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:47:45
  Author: tpowa
Revision: 113844

upgpkg: rt3562sta 2.4.1.1_r1-6

rebuild against 3.15.3

Modified:
  rt3562sta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:46:04 UTC (rev 113843)
+++ PKGBUILD2014-07-01 06:47:45 UTC (rev 113844)
@@ -5,7 +5,7 @@
 pkgname=rt3562sta
 pkgver=2.4.1.1_r1
 _patchrel=${pkgver/*_r/}
-pkgrel=5
+pkgrel=6
 pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module"
 arch=(i686 x86_64)
 url="http://www.mediatek.com/en/Products/support.php?sn=501";



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:45:58
  Author: tpowa
Revision: 113842

upgpkg: r8168 8.038.00-7

rebuild against 3.15.3

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:43:13 UTC (rev 113841)
+++ PKGBUILD2014-07-01 06:45:58 UTC (rev 113842)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.038.00
-pkgrel=6
+pkgrel=7
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw";
 license=("GPL")



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:46:04
  Author: tpowa
Revision: 113843

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

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

+
 community-testing-i686/PKGBUILD|   58 +++
 community-testing-i686/r8168.install   |   17 +
 community-testing-x86_64/PKGBUILD  |   58 +++
 community-testing-x86_64/r8168.install |   17 +
 4 files changed, 150 insertions(+)

Copied: r8168/repos/community-testing-i686/PKGBUILD (from rev 113842, 
r8168/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:46:04 UTC (rev 113843)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.038.00
+pkgrel=7
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=("https://dl.dropboxusercontent.com/u/362439/archlinux/r8168-$pkgver.tar.bz2";)
+install=$pkgname.install
+
+prepare(){
+   cd "$pkgname-$pkgver"
+
+   # Fix build with Linux 3.15
+   # https://code.google.com/p/r8168/issues/detail?id=19
+   if grep -q PREPARE_DELAYED_WORK src/r8168_n.c; then
+   sed -i 's/PREPARE_DELAYED_WORK/INIT_DELAYED_WORK/' src/r8168_n.c
+   else
+   error 'PREPARE_DELAYED_WORK fix for Linux 3.15 is no longer 
needed.'
+   return 1
+   fi
+}
+
+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 "$pkgname-$pkgver"
+
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
+   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   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 "$pkgname-$pkgver"
+   install -Dm644 src/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko"
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+
+   sed -i "s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH|" 
"$startdir/$pkgname.install"
+}
+
+sha256sums=('1384bdf4d33b219f937bf1a600c72b22962baf7796e562b08e4da3c000f49072')

Copied: r8168/repos/community-testing-i686/r8168.install (from rev 113842, 
r8168/trunk/r8168.install)
===
--- community-testing-i686/r8168.install(rev 0)
+++ community-testing-i686/r8168.install2014-07-01 06:46:04 UTC (rev 
113843)
@@ -0,0 +1,17 @@
+rebuild_module_dependencies() {
+   EXTRAMODULES='extramodules-3.15-ARCH'
+   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  rebuild_module_dependencies
+   echo '>>> The module r8168 conflicts with r8169. You can blacklist it 
with:'
+   echo '>>>  `echo "blacklist r8169" > 
/etc/modprobe.d/r8169_blacklist.conf`'
+}
+post_upgrade() {
+   rebuild_module_dependencies
+}
+
+post_remove() {
+   rebuild_module_dependencies
+}

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 113842, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-01 06:46:04 UTC (rev 113843)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.038.00
+pkgrel=7
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=("htt

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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:43:13
  Author: fyan
Revision: 113841

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

Added:
  fcitx-ui-light/repos/community-i686/PKGBUILD
(from rev 113840, fcitx-ui-light/trunk/PKGBUILD)
  fcitx-ui-light/repos/community-x86_64/PKGBUILD
(from rev 113840, fcitx-ui-light/trunk/PKGBUILD)
Deleted:
  fcitx-ui-light/repos/community-i686/PKGBUILD
  fcitx-ui-light/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 2014-07-01 06:41:50 UTC (rev 113840)
+++ community-i686/PKGBUILD 2014-07-01 06:43:13 UTC (rev 113841)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Author: CSSlayer 
-# Contributor: Yangtse  
-
-pkgname=fcitx-ui-light
-pkgver=0.1.3
-pkgrel=2
-pkgdesc="Light weight xlib and xft based ui for fcitx."
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/fcitx";
-license=('GPL2')
-depends=('fcitx>=4.1.0' 'libxpm')
-makedepends=('cmake' 'intltool')
-source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
-
-build(){
-cd "$srcdir/${pkgname}-${pkgver}"
-
-rm -rf build
-mkdir build
-cd build
-
-cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
-make
-}
-
-package ()
-{
-cd "$srcdir/${pkgname}-${pkgver}/build"
-make DESTDIR="${pkgdir}" install
-}
-md5sums=('633e8b018da9c8f09f99567b5479cf18')

Copied: fcitx-ui-light/repos/community-i686/PKGBUILD (from rev 113840, 
fcitx-ui-light/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:43:13 UTC (rev 113841)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Author: CSSlayer 
+# Contributor: Yangtse  
+
+pkgname=fcitx-ui-light
+pkgver=0.1.3
+pkgrel=3
+pkgdesc="Light weight xlib and xft based ui for fcitx."
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fcitx";
+license=('GPL2')
+depends=('fcitx>=4.1.0' 'libxpm')
+makedepends=('cmake' 'intltool')
+source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
+
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
+  make
+}
+
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}
+
+md5sums=('633e8b018da9c8f09f99567b5479cf18')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 06:41:50 UTC (rev 113840)
+++ community-x86_64/PKGBUILD   2014-07-01 06:43:13 UTC (rev 113841)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Author: CSSlayer 
-# Contributor: Yangtse  
-
-pkgname=fcitx-ui-light
-pkgver=0.1.3
-pkgrel=2
-pkgdesc="Light weight xlib and xft based ui for fcitx."
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/fcitx";
-license=('GPL2')
-depends=('fcitx>=4.1.0' 'libxpm')
-makedepends=('cmake' 'intltool')
-source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
-
-build(){
-cd "$srcdir/${pkgname}-${pkgver}"
-
-rm -rf build
-mkdir build
-cd build
-
-cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
-make
-}
-
-package ()
-{
-cd "$srcdir/${pkgname}-${pkgver}/build"
-make DESTDIR="${pkgdir}" install
-}
-md5sums=('633e8b018da9c8f09f99567b5479cf18')

Copied: fcitx-ui-light/repos/community-x86_64/PKGBUILD (from rev 113840, 
fcitx-ui-light/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-01 06:43:13 UTC (rev 113841)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Author: CSSlayer 
+# Contributor: Yangtse  
+
+pkgname=fcitx-ui-light
+pkgver=0.1.3
+pkgrel=3
+pkgdesc="Light weight xlib and xft based ui for fcitx."
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fcitx";
+license=('GPL2')
+depends=('fcitx>=4.1.0' 'libxpm')
+makedepends=('cmake' 'intltool')
+source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
+
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
+  make
+}
+
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}
+
+md5sums=('633e8b018da9c8f09f99567b5479cf18')



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:41:50
  Author: fyan
Revision: 113840

upgpkg: fcitx-ui-light 0.1.3-3

mtree rebuild

Modified:
  fcitx-ui-light/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:41:09 UTC (rev 113839)
+++ PKGBUILD2014-07-01 06:41:50 UTC (rev 113840)
@@ -5,7 +5,7 @@
 
 pkgname=fcitx-ui-light
 pkgver=0.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Light weight xlib and xft based ui for fcitx."
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/fcitx";
@@ -14,20 +14,20 @@
 makedepends=('cmake' 'intltool')
 source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2";)
 
-build(){
-cd "$srcdir/${pkgname}-${pkgver}"
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
 
-rm -rf build
-mkdir build
-cd build
-
-cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
-make
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
+  make
 }
 
-package ()
-{
-cd "$srcdir/${pkgname}-${pkgver}/build"
-make DESTDIR="${pkgdir}" install
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
 }
+
 md5sums=('633e8b018da9c8f09f99567b5479cf18')



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:41:09
  Author: fyan
Revision: 113839

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

Added:
  gtkhotkey/repos/community-i686/PKGBUILD
(from rev 113837, gtkhotkey/trunk/PKGBUILD)
  gtkhotkey/repos/community-x86_64/PKGBUILD
(from rev 113838, gtkhotkey/trunk/PKGBUILD)
Deleted:
  gtkhotkey/repos/community-i686/PKGBUILD
  gtkhotkey/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 2014-07-01 06:40:19 UTC (rev 113838)
+++ community-i686/PKGBUILD 2014-07-01 06:41:09 UTC (rev 113839)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: kiefer 
-# Contributor: Alessio Sergi 
-# Contributor: Gaute Hope 
-# Contributor: Marcos Heredia 
- 
-pkgname=gtkhotkey
-pkgver=0.2.1
-pkgrel=8
-pkgdesc="Platform independent hotkey handling for Gtk+ applications"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/gtkhotkey";
-license=('LGPL3')
-depends=('gtk2')
-makedepends=('intltool')
-source=("http://launchpad.net/$pkgname/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz";)
-md5sums=('bfdc73e68e9adbe0d506d31a25862914')
- 
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
- 
-  # doc path fix
-  sed -i '/gtkhotkeydocdir/s/\${prefix}/\${datadir}/g' Makefile.{am,in}
- 
-  # glib2 fix
-  sed -i 's|glib/gquark\.h|glib.h|' src/gtk-hotkey-error.h
-  sed -i 's|glib/gtypes\.h|glib.h|' src/x11/tomboykeybinder.h
- 
-  ./configure --prefix=/usr \
-  --disable-static
-  make
-}
- 
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
- 
-  make DESTDIR="$pkgdir/" install
-}

Copied: gtkhotkey/repos/community-i686/PKGBUILD (from rev 113837, 
gtkhotkey/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:41:09 UTC (rev 113839)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: kiefer 
+# Contributor: Alessio Sergi 
+# Contributor: Gaute Hope 
+# Contributor: Marcos Heredia 
+ 
+pkgname=gtkhotkey
+pkgver=0.2.1
+pkgrel=9
+pkgdesc="Platform independent hotkey handling for Gtk+ applications"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/gtkhotkey";
+license=('LGPL3')
+depends=('gtk2')
+makedepends=('intltool')
+source=("http://launchpad.net/$pkgname/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz";)
+md5sums=('bfdc73e68e9adbe0d506d31a25862914')
+ 
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+ 
+  # doc path fix
+  sed -i '/gtkhotkeydocdir/s/\${prefix}/\${datadir}/g' Makefile.{am,in}
+ 
+  # glib2 fix
+  sed -i 's|glib/gquark\.h|glib.h|' src/gtk-hotkey-error.h
+  sed -i 's|glib/gtypes\.h|glib.h|' src/x11/tomboykeybinder.h
+ 
+  ./configure --prefix=/usr \
+  --disable-static
+  make
+}
+ 
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+ 
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 06:40:19 UTC (rev 113838)
+++ community-x86_64/PKGBUILD   2014-07-01 06:41:09 UTC (rev 113839)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: kiefer 
-# Contributor: Alessio Sergi 
-# Contributor: Gaute Hope 
-# Contributor: Marcos Heredia 
- 
-pkgname=gtkhotkey
-pkgver=0.2.1
-pkgrel=8
-pkgdesc="Platform independent hotkey handling for Gtk+ applications"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/gtkhotkey";
-license=('LGPL3')
-depends=('gtk2')
-makedepends=('intltool')
-source=("http://launchpad.net/$pkgname/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz";)
-md5sums=('bfdc73e68e9adbe0d506d31a25862914')
- 
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
- 
-  # doc path fix
-  sed -i '/gtkhotkeydocdir/s/\${prefix}/\${datadir}/g' Makefile.{am,in}
- 
-  # glib2 fix
-  sed -i 's|glib/gquark\.h|glib.h|' src/gtk-hotkey-error.h
-  sed -i 's|glib/gtypes\.h|glib.h|' src/x11/tomboykeybinder.h
- 
-  ./configure --prefix=/usr \
-  --disable-static
-  make
-}
- 
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
- 
-  make DESTDIR="$pkgdir/" install
-}

Copied: gtkhotkey/repos/community-x86_64/PKGBUILD (from rev 113838, 
gtkhotkey/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-01 06:41:09 UTC (rev 113839)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: kiefer 
+# Contributor: Alessio Sergi 
+# Contributor: Gaute Hope 
+# Contributor: Marcos Heredia 
+ 
+pkgname=gtkhotkey
+pkgver=0.2.1
+pkgrel=9
+pkgdesc="Platform independent hotkey 

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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:40:14
  Author: tpowa
Revision: 113837

upgpkg: bbswitch 0.8-12

rebuild against 3.15.3

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:39:41 UTC (rev 113836)
+++ PKGBUILD2014-07-01 06:40:14 UTC (rev 113837)
@@ -6,7 +6,7 @@
 pkgname=bbswitch
 pkgver=0.8
 _extramodules=extramodules-3.15-ARCH # Don't forget to update bbswitch.install
-pkgrel=11
+pkgrel=12
 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 bbswitch/repos (6 files)

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:40:19
  Author: tpowa
Revision: 113838

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 113837, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-i686/bbswitch.install
(from rev 113837, bbswitch/trunk/bbswitch.install)
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 113837, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-x86_64/bbswitch.install
(from rev 113837, bbswitch/trunk/bbswitch.install)

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

Copied: bbswitch/repos/community-testing-i686/PKGBUILD (from rev 113837, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:40:19 UTC (rev 113838)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch
+pkgver=0.8
+_extramodules=extramodules-3.15-ARCH # Don't forget to update bbswitch.install
+pkgrel=12
+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')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+install=bbswitch.install
+source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Copied: bbswitch/repos/community-testing-i686/bbswitch.install (from rev 
113837, bbswitch/trunk/bbswitch.install)
===
--- community-testing-i686/bbswitch.install (rev 0)
+++ community-testing-i686/bbswitch.install 2014-07-01 06:40:19 UTC (rev 
113838)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.15-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 113837, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-01 06:40:19 UTC (rev 113838)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch
+pkgver=0.8
+_extramodules=extramodules-3.15-ARCH # Don't forget to update bbswitch.install
+pkgrel=12
+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')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+install=bbswitch.install
+source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Copied: bbswitch/repos/community-testing-x86_64/bbswitch.install (from rev 
113837, bbswitch/trunk/bbswitch.install)
===
--- community-testing-x86_64/bbswitch.install   (rev 0)
+++ community-testing-x86_64/bbswitch.install   2014-07-01 06:40:19 UTC (rev 
113838)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.15-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:39:41
  Author: fyan
Revision: 113836

upgpkg: gtkhotkey 0.2.1-9

mtree rebuild

Modified:
  gtkhotkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:38:26 UTC (rev 113835)
+++ PKGBUILD2014-07-01 06:39:41 UTC (rev 113836)
@@ -7,7 +7,7 @@
  
 pkgname=gtkhotkey
 pkgver=0.2.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Platform independent hotkey handling for Gtk+ applications"
 arch=('i686' 'x86_64')
 url="https://launchpad.net/gtkhotkey";



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:38:18
  Author: tpowa
Revision: 113834

upgpkg: acpi_call 1.1.0-8

rebuild against 3.15.3

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:36:43 UTC (rev 113833)
+++ PKGBUILD2014-07-01 06:38:18 UTC (rev 113834)
@@ -5,7 +5,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=7
+pkgrel=8
 _extramodules=extramodules-3.15-ARCH
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 08:38:26
  Author: tpowa
Revision: 113835

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 113834, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-i686/acpi_call.install
(from rev 113834, acpi_call/trunk/acpi_call.install)
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 113834, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-x86_64/acpi_call.install
(from rev 113834, acpi_call/trunk/acpi_call.install)

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

Copied: acpi_call/repos/community-testing-i686/PKGBUILD (from rev 113834, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-07-01 06:38:26 UTC (rev 113835)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=8
+_extramodules=extramodules-3.15-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/${pkgname}";
+license=('GPL')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+install="${pkgname}.install"
+source=("${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname}.ko
+  echo ${pkgname} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-i686/acpi_call.install (from rev 
113834, acpi_call/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2014-07-01 06:38:26 UTC (rev 
113835)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-3.15-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 113834, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-07-01 06:38:26 UTC (rev 113835)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=8
+_extramodules=extramodules-3.15-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/${pkgname}";
+license=('GPL')
+depends=('linux>=3.15' 'linux<3.16')
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+install="${pkgname}.install"
+source=("${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname}.ko
+  echo ${pkgname} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-x86_64/acpi_call.install (from rev 
113834, acpi_call/trunk/acpi_call.install)
===

[arch-commits] Commit in djview4/repos/community-x86_64 (4 files)

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:36:17
  Author: bisson
Revision: 113832

archrelease: copy trunk to community-x86_64

Added:
  djview4/repos/community-x86_64/PKGBUILD
(from rev 113831, djview4/trunk/PKGBUILD)
  djview4/repos/community-x86_64/install
(from rev 113831, djview4/trunk/install)
Deleted:
  djview4/repos/community-x86_64/PKGBUILD
  djview4/repos/community-x86_64/install

--+
 PKGBUILD |   74 ++---
 install  |   24 +--
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 06:36:07 UTC (rev 113831)
+++ PKGBUILD2014-07-01 06:36:17 UTC (rev 113832)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Paulo Matias 
-# Contributor: Leslie P. Polzer 
-# Contributor: erm67 
-# Contributor: Daniel J Griffiths
-# Maintainer: Gaetan Bisson 
-
-pkgname=djview4
-pkgver=4.9
-pkgrel=2
-pkgdesc='Portable DjVu viewer and browser plugin'
-url='http://djvu.sourceforge.net/djview4.html'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('qt4' 'djvulibre')
-source=("http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz";)
-sha1sums=('07f97e32919bfb34ff2d59b928c47ffbc96dcfc5')
-
-install=install
-
-build() {
-   cd ${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
-   make
-}
-
-package() {
-   cd ${pkgname}-${pkgver}
-   make DESTDIR="${pkgdir}" install-djview install-nsdejavu
-
-   cd desktopfiles
-   install -Dm644 hi32-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/32x32/apps/djvulibre-djview4.png
-   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/64x64/apps/djvulibre-djview4.png
-   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/pixmaps/djvulibre-djview4.png
-   install -Dm644 djvulibre-djview4.desktop 
"${pkgdir}"/usr/share/applications/djvulibre-djview4.desktop
-}

Copied: djview4/repos/community-x86_64/PKGBUILD (from rev 113831, 
djview4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 06:36:17 UTC (rev 113832)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Contributor: Leslie P. Polzer 
+# Contributor: erm67 
+# Contributor: Daniel J Griffiths
+# Maintainer: Gaetan Bisson 
+
+pkgname=djview4
+pkgver=4.9
+pkgrel=3
+pkgdesc='Portable DjVu viewer and browser plugin'
+url='http://djvu.sourceforge.net/djview4.html'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qt4' 'djvulibre')
+source=("http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz";)
+sha1sums=('07f97e32919bfb34ff2d59b928c47ffbc96dcfc5')
+
+install=install
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   make DESTDIR="${pkgdir}" install-djview install-nsdejavu
+
+   cd desktopfiles
+   install -Dm644 hi32-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/32x32/apps/djvulibre-djview4.png
+   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/64x64/apps/djvulibre-djview4.png
+   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/pixmaps/djvulibre-djview4.png
+   install -Dm644 djvulibre-djview4.desktop 
"${pkgdir}"/usr/share/applications/djvulibre-djview4.desktop
+}

Deleted: install
===
--- install 2014-07-01 06:36:07 UTC (rev 113831)
+++ install 2014-07-01 06:36:17 UTC (rev 113832)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null || true
-   update-desktop-database -q || true
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: djview4/repos/community-x86_64/install (from rev 113831, 
djview4/trunk/install)
===
--- install (rev 0)
+++ install 2014-07-01 06:36:17 UTC (rev 113832)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null || true
+   update-desktop-database -q || true
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:36:43
  Author: bisson
Revision: 113833

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

Added:
  djview4/repos/community-i686/PKGBUILD
(from rev 113832, djview4/trunk/PKGBUILD)
  djview4/repos/community-i686/install
(from rev 113832, djview4/trunk/install)
  djview4/repos/community-x86_64/PKGBUILD
(from rev 113832, djview4/trunk/PKGBUILD)
  djview4/repos/community-x86_64/install
(from rev 113832, djview4/trunk/install)
Deleted:
  djview4/repos/community-i686/PKGBUILD
  djview4/repos/community-i686/install
  djview4/repos/community-x86_64/PKGBUILD
  djview4/repos/community-x86_64/install

---+
 /PKGBUILD |   74 
 /install  |   24 ++
 community-i686/PKGBUILD   |   37 --
 community-i686/install|   12 ---
 community-x86_64/PKGBUILD |   37 --
 community-x86_64/install  |   12 ---
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:36:17 UTC (rev 113832)
+++ community-i686/PKGBUILD 2014-07-01 06:36:43 UTC (rev 113833)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Paulo Matias 
-# Contributor: Leslie P. Polzer 
-# Contributor: erm67 
-# Contributor: Daniel J Griffiths
-# Maintainer: Gaetan Bisson 
-
-pkgname=djview4
-pkgver=4.9
-pkgrel=2
-pkgdesc='Portable DjVu viewer and browser plugin'
-url='http://djvu.sourceforge.net/djview4.html'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('qt4' 'djvulibre')
-source=("http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz";)
-sha1sums=('07f97e32919bfb34ff2d59b928c47ffbc96dcfc5')
-
-install=install
-
-build() {
-   cd ${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
-   make
-}
-
-package() {
-   cd ${pkgname}-${pkgver}
-   make DESTDIR="${pkgdir}" install-djview install-nsdejavu
-
-   cd desktopfiles
-   install -Dm644 hi32-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/32x32/apps/djvulibre-djview4.png
-   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/64x64/apps/djvulibre-djview4.png
-   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/pixmaps/djvulibre-djview4.png
-   install -Dm644 djvulibre-djview4.desktop 
"${pkgdir}"/usr/share/applications/djvulibre-djview4.desktop
-}

Copied: djview4/repos/community-i686/PKGBUILD (from rev 113832, 
djview4/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:36:43 UTC (rev 113833)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Contributor: Leslie P. Polzer 
+# Contributor: erm67 
+# Contributor: Daniel J Griffiths
+# Maintainer: Gaetan Bisson 
+
+pkgname=djview4
+pkgver=4.9
+pkgrel=3
+pkgdesc='Portable DjVu viewer and browser plugin'
+url='http://djvu.sourceforge.net/djview4.html'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qt4' 'djvulibre')
+source=("http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz";)
+sha1sums=('07f97e32919bfb34ff2d59b928c47ffbc96dcfc5')
+
+install=install
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   make DESTDIR="${pkgdir}" install-djview install-nsdejavu
+
+   cd desktopfiles
+   install -Dm644 hi32-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/32x32/apps/djvulibre-djview4.png
+   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/icons/hicolor/64x64/apps/djvulibre-djview4.png
+   install -Dm644 hi64-djview4.png 
"${pkgdir}"/usr/share/pixmaps/djvulibre-djview4.png
+   install -Dm644 djvulibre-djview4.desktop 
"${pkgdir}"/usr/share/applications/djvulibre-djview4.desktop
+}

Deleted: community-i686/install
===
--- community-i686/install  2014-07-01 06:36:17 UTC (rev 113832)
+++ community-i686/install  2014-07-01 06:36:43 UTC (rev 113833)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null || true
-   update-desktop-database -q || true
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: djview4/repos/community-i686/install (from rev 113832, 
djview4/trunk/install)
===
--- community-i686/install  (rev 0)
+++ community-i686/install  2014-07-01 06:36:43 UTC (rev 113833)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null || true
+   update

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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:36:07
  Author: bisson
Revision: 113831

rebuild for mtree support

Modified:
  djview4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:34:40 UTC (rev 113830)
+++ PKGBUILD2014-07-01 06:36:07 UTC (rev 113831)
@@ -7,7 +7,7 @@
 
 pkgname=djview4
 pkgver=4.9
-pkgrel=2
+pkgrel=3
 pkgdesc='Portable DjVu viewer and browser plugin'
 url='http://djvu.sourceforge.net/djview4.html'
 license=('GPL')



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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:34:25
  Author: bisson
Revision: 113829

rebuild for mtree support

Modified:
  dnstracer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:34:20 UTC (rev 113828)
+++ PKGBUILD2014-07-01 06:34:25 UTC (rev 113829)
@@ -3,7 +3,7 @@
 
 pkgname=dnstracer
 pkgver=1.9
-pkgrel=4
+pkgrel=5
 pkgdesc='Determines where a given DNS server gets its information from, and 
follows the chain of DNS servers'
 url='http://www.mavetju.org/unix/dnstracer.php'
 license=('custom:BSD')



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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:34:20
  Author: bisson
Revision: 113828

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

Added:
  liboping/repos/community-i686/PKGBUILD
(from rev 113827, liboping/trunk/PKGBUILD)
  liboping/repos/community-i686/install
(from rev 113827, liboping/trunk/install)
  liboping/repos/community-x86_64/PKGBUILD
(from rev 113827, liboping/trunk/PKGBUILD)
  liboping/repos/community-x86_64/install
(from rev 113827, liboping/trunk/install)
Deleted:
  liboping/repos/community-i686/PKGBUILD
  liboping/repos/community-i686/install
  liboping/repos/community-x86_64/PKGBUILD
  liboping/repos/community-x86_64/install

---+
 /PKGBUILD |   68 
 /install  |   16 ++
 community-i686/PKGBUILD   |   34 --
 community-i686/install|8 -
 community-x86_64/PKGBUILD |   34 --
 community-x86_64/install  |8 -
 6 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:34:05 UTC (rev 113827)
+++ community-i686/PKGBUILD 2014-07-01 06:34:20 UTC (rev 113828)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-
-pkgname=liboping
-pkgver=1.6.2
-pkgrel=1
-pkgdesc='C library to generate ICMP echo requests, better known as "ping 
packets"'
-url='http://verplant.org/liboping/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libcap')
-makedepends=('ncurses')
-optdepends=('perl: perl bindings'
-'ncurses: noping CLI tool')
-source=("${url}files/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('1b3203e5f13b35a6f7ff163c26e4f42284a625fa30d3bdbfdafb6cccb1f33803')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   # setting capabilities/setuid is futile in fakeroot
-   # (we do that in the install script)
-   sed -i 's/ install-exec-hook//g' src/Makefile.in
-
-   ./configure --prefix=/usr --enable-static=no
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: liboping/repos/community-i686/PKGBUILD (from rev 113827, 
liboping/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:34:20 UTC (rev 113828)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+
+pkgname=liboping
+pkgver=1.6.2
+pkgrel=2
+pkgdesc='C library to generate ICMP echo requests, better known as "ping 
packets"'
+url='http://verplant.org/liboping/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcap')
+makedepends=('ncurses')
+optdepends=('perl: perl bindings'
+'ncurses: noping CLI tool')
+source=("${url}files/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('1b3203e5f13b35a6f7ff163c26e4f42284a625fa30d3bdbfdafb6cccb1f33803')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # setting capabilities/setuid is futile in fakeroot
+   # (we do that in the install script)
+   sed -i 's/ install-exec-hook//g' src/Makefile.in
+
+   ./configure --prefix=/usr --with-perl-bindings='INSTALLDIRS=vendor'
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/install
===
--- community-i686/install  2014-07-01 06:34:05 UTC (rev 113827)
+++ community-i686/install  2014-07-01 06:34:20 UTC (rev 113828)
@@ -1,8 +0,0 @@
-post_upgrade() {
-   setcap cap_net_raw=ep usr/bin/oping
-   setcap cap_net_raw=ep usr/bin/noping
-}
-
-post_install() {
-   post_upgrade
-}

Copied: liboping/repos/community-i686/install (from rev 113827, 
liboping/trunk/install)
===
--- community-i686/install  (rev 0)
+++ community-i686/install  2014-07-01 06:34:20 UTC (rev 113828)
@@ -0,0 +1,8 @@
+post_upgrade() {
+   setcap cap_net_raw=ep usr/bin/oping
+   setcap cap_net_raw=ep usr/bin/noping
+}
+
+post_install() {
+   post_upgrade
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 06:34:05 UTC (rev 113827)
+++ community-x86_64/PKGBUILD   2014-07-01 06:34:20 UTC (rev 113828)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-
-pkgname=liboping
-pkgver=1.6.2
-pkgrel=1
-pkgdesc='C library to generate ICMP echo requests, better known as "ping 
packets"'
-url='http://verplant.org/liboping/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libcap')
-makedepends=('ncurses')
-optdepends=('perl: perl bindings'
-'ncurses: noping CLI tool')
-source=("${url

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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:34:40
  Author: bisson
Revision: 113830

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:34:25 UTC (rev 113829)
+++ community-i686/PKGBUILD 2014-07-01 06:34:40 UTC (rev 113830)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-
-pkgname=dnstracer
-pkgver=1.9
-pkgrel=4
-pkgdesc='Determines where a given DNS server gets its information from, and 
follows the chain of DNS servers'
-url='http://www.mavetju.org/unix/dnstracer.php'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-source=("http://www.mavetju.org/download/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('b8c60b281c0eb309acd1b1551c51cccb951685c7')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/dnstracer/LICENSE
-}

Copied: dnstracer/repos/community-i686/PKGBUILD (from rev 113829, 
dnstracer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:34:40 UTC (rev 113830)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+
+pkgname=dnstracer
+pkgver=1.9
+pkgrel=5
+pkgdesc='Determines where a given DNS server gets its information from, and 
follows the chain of DNS servers'
+url='http://www.mavetju.org/unix/dnstracer.php'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+source=("http://www.mavetju.org/download/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('b8c60b281c0eb309acd1b1551c51cccb951685c7')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/dnstracer/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 06:34:25 UTC (rev 113829)
+++ community-x86_64/PKGBUILD   2014-07-01 06:34:40 UTC (rev 113830)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-
-pkgname=dnstracer
-pkgver=1.9
-pkgrel=4
-pkgdesc='Determines where a given DNS server gets its information from, and 
follows the chain of DNS servers'
-url='http://www.mavetju.org/unix/dnstracer.php'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-source=("http://www.mavetju.org/download/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('b8c60b281c0eb309acd1b1551c51cccb951685c7')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/dnstracer/LICENSE
-}

Copied: dnstracer/repos/community-x86_64/PKGBUILD (from rev 113829, 
dnstracer/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-01 06:34:40 UTC (rev 113830)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+
+pkgname=dnstracer
+pkgver=1.9
+pkgrel=5
+pkgdesc='Determines where a given DNS server gets its information from, and 
follows the chain of DNS servers'
+url='http://www.mavetju.org/unix/dnstracer.php'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+source=("http://www.mavetju.org/download/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('b8c60b281c0eb309acd1b1551c51cccb951685c7')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/dnstracer/LICENSE
+}



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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:34:05
  Author: bisson
Revision: 113827

rebuild for mtree support

Modified:
  liboping/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:13:15 UTC (rev 113826)
+++ PKGBUILD2014-07-01 06:34:05 UTC (rev 113827)
@@ -3,7 +3,7 @@
 
 pkgname=liboping
 pkgver=1.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc='C library to generate ICMP echo requests, better known as "ping 
packets"'
 url='http://verplant.org/liboping/'
 arch=('i686' 'x86_64')



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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:24:23
  Author: bisson
Revision: 215946

upstream update

Modified:
  dcraw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:17:03 UTC (rev 215945)
+++ PKGBUILD2014-07-01 06:24:23 UTC (rev 215946)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=dcraw
-pkgver=9.20
+pkgver=9.22
 pkgrel=1
 pkgdesc='Decodes any raw image from any digital camera'
 url='http://www.cybercom.net/~dcoffin/dcraw/'
@@ -12,7 +12,7 @@
 license=('custom')
 depends=('lcms2' 'jasper')
 
source=("http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('9b8ca82eaaf6582ffa0f2602e8ca705c722ea87e')
+sha1sums=('aa012da4c7c295146cee22c3e3869b069e55d164')
 
 build() {
cd "${srcdir}/${pkgname}"



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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:24:38
  Author: bisson
Revision: 215947

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-01 06:24:23 UTC (rev 215946)
+++ extra-i686/PKGBUILD 2014-07-01 06:24:38 UTC (rev 215947)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: tobias 
-# Contributor: Tobias Kieslich 
-
-pkgname=dcraw
-pkgver=9.20
-pkgrel=1
-pkgdesc='Decodes any raw image from any digital camera'
-url='http://www.cybercom.net/~dcoffin/dcraw/'
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('lcms2' 'jasper')
-source=("http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('9b8ca82eaaf6582ffa0f2602e8ca705c722ea87e')
-
-build() {
-   cd "${srcdir}/${pkgname}"
-   gcc ${CFLAGS} ${LDFLAGS} \
-   -o dcraw dcraw.c \
-   -lm -ljasper -ljpeg -llcms2 \
-   -DLOCALEDIR=\"/usr/share/locale/\"
-}
-
-package() {
-   cd "${srcdir}/${pkgname}"
-
-   install -Dm755 dcraw "${pkgdir}"/usr/bin/dcraw
-   install -Dm644 dcraw.1 "${pkgdir}"/usr/share/man/man1/dcraw.1
-   
-   for i in dcraw_*.1; do j=${i#dcraw_}; k=${j%.1}
-   install -Dm644 $i "${pkgdir}"/usr/share/man/$k/man1/dcraw.1
-   done
-
-   for i in dcraw_*.po; do j=${i#dcraw_}; k=${j%.po}
-   install -d "${pkgdir}"/usr/share/locale/$k/LC_MESSAGES
-   msgfmt -o "${pkgdir}"/usr/share/locale/$k/LC_MESSAGES/dcraw.mo 
$i
-   done
-
-   install -d "${pkgdir}"/usr/share/licenses/${pkgname}
-   head -25 dcraw.c > "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
-}

Copied: dcraw/repos/extra-i686/PKGBUILD (from rev 215946, dcraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-01 06:24:38 UTC (rev 215947)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: tobias 
+# Contributor: Tobias Kieslich 
+
+pkgname=dcraw
+pkgver=9.22
+pkgrel=1
+pkgdesc='Decodes any raw image from any digital camera'
+url='http://www.cybercom.net/~dcoffin/dcraw/'
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('lcms2' 'jasper')
+source=("http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('aa012da4c7c295146cee22c3e3869b069e55d164')
+
+build() {
+   cd "${srcdir}/${pkgname}"
+   gcc ${CFLAGS} ${LDFLAGS} \
+   -o dcraw dcraw.c \
+   -lm -ljasper -ljpeg -llcms2 \
+   -DLOCALEDIR=\"/usr/share/locale/\"
+}
+
+package() {
+   cd "${srcdir}/${pkgname}"
+
+   install -Dm755 dcraw "${pkgdir}"/usr/bin/dcraw
+   install -Dm644 dcraw.1 "${pkgdir}"/usr/share/man/man1/dcraw.1
+   
+   for i in dcraw_*.1; do j=${i#dcraw_}; k=${j%.1}
+   install -Dm644 $i "${pkgdir}"/usr/share/man/$k/man1/dcraw.1
+   done
+
+   for i in dcraw_*.po; do j=${i#dcraw_}; k=${j%.po}
+   install -d "${pkgdir}"/usr/share/locale/$k/LC_MESSAGES
+   msgfmt -o "${pkgdir}"/usr/share/locale/$k/LC_MESSAGES/dcraw.mo 
$i
+   done
+
+   install -d "${pkgdir}"/usr/share/licenses/${pkgname}
+   head -25 dcraw.c > "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-07-01 06:24:23 UTC (rev 215946)
+++ extra-x86_64/PKGBUILD   2014-07-01 06:24:38 UTC (rev 215947)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: tobias 
-# Contributor: Tobias Kieslich 
-
-pkgname=dcraw
-pkgver=9.20
-pkgrel=1
-pkgdesc='Decodes any raw image from any digital camera'
-url='http://www.cybercom.net/~dcoffin/dcraw/'
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('lcms2' 'jasper')
-source=("http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('9b8ca82eaaf6582ffa0f2602e8ca705c722ea87e')
-
-build() {
-   cd "${srcdir}/${pkgname}"
-   gcc ${CFLAGS} ${LDFLAGS} \
-   -o dcraw dcraw.c \
-   -lm -ljasper -ljpeg -llcms2 \
-   -DLOCALEDIR=\"/usr/share/locale/\"
-}
-
-package() {
-   cd "${srcdir}/${pkgname}"
-
-   install -Dm755 dcraw "${pkgdir}"/usr/bin/dcraw
-   install -Dm644 dcraw.1 "${pkgdir}"/usr/share/ma

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

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:17:03
  Author: bisson
Revision: 215945

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

Added:
  gnupg/repos/testing-i686/PKGBUILD
(from rev 215944, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 215944, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 215944, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 215944, gnupg/trunk/install)
Deleted:
  gnupg/repos/testing-i686/PKGBUILD
  gnupg/repos/testing-i686/filter.patch
  gnupg/repos/testing-i686/install
  gnupg/repos/testing-i686/protect-tool-env.patch
  gnupg/repos/testing-x86_64/PKGBUILD
  gnupg/repos/testing-x86_64/filter.patch
  gnupg/repos/testing-x86_64/install
  gnupg/repos/testing-x86_64/protect-tool-env.patch

---+
 /PKGBUILD |  110 +++
 /install  |   40 
 testing-i686/PKGBUILD |   64 -
 testing-i686/filter.patch |  153 
 testing-i686/install  |   20 
 testing-i686/protect-tool-env.patch   |   28 -
 testing-x86_64/PKGBUILD   |   64 -
 testing-x86_64/filter.patch   |  153 
 testing-x86_64/install|   20 
 testing-x86_64/protect-tool-env.patch |   28 -
 10 files changed, 150 insertions(+), 530 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-07-01 06:16:40 UTC (rev 215944)
+++ testing-i686/PKGBUILD   2014-07-01 06:17:03 UTC (rev 215945)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Powalowski 
-# Contributor: Andreas Radke 
-# Contributor: Judd Vinet 
-
-pkgname=gnupg
-pkgver=2.0.24
-pkgrel=2
-pkgdesc='Complete and free implementation of the OpenPGP standard'
-url='http://www.gnupg.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-optdepends=('curl: gpg2keys_curl'
-'libldap: gpg2keys_ldap'
-'libusb-compat: scdaemon')
-makedepends=('curl' 'libldap' 'libusb-compat')
-depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
-'protect-tool-env.patch'
-'filter.patch')
-sha1sums=('010e027d5f622778cadc4c124013fe515ed705cf' 'SKIP'
-  '2ec97ba55ae47ff0d63bc813b8c64cb79cef11db'
-  'e99aa2b725342aee188d706b42d392efb2389cf4')
-
-install=install
-
-conflicts=('gnupg2')
-provides=("gnupg2=${pkgver}")
-replaces=('gnupg2')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../protect-tool-env.patch # FS#31900
-   patch -p1 -i ../filter.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/gnupg \
-   --enable-maintainer-mode \
-   --enable-symcryptrun \
-   --enable-gpgtar \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
-   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
-   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
-   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
-}

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 215944, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-01 06:17:03 UTC (rev 215945)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.0.25
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('curl: gpg2keys_curl'
+'libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('curl' 'libldap' 'libusb-compat')
+depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('890d77d89f2d187382f95e83e386f2f7ba789436' 'SKIP')
+
+install=install
+
+conflicts=('gnupg2')
+provides=("gnupg2=${pkgver}")
+replaces=('gnupg2')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   

[arch-commits] Commit in gnupg/trunk (PKGBUILD filter.patch protect-tool-env.patch)

2014-06-30 Thread Gaetan Bisson
Date: Tuesday, July 1, 2014 @ 08:16:40
  Author: bisson
Revision: 215944

upstream update

Modified:
  gnupg/trunk/PKGBUILD
Deleted:
  gnupg/trunk/filter.patch
  gnupg/trunk/protect-tool-env.patch

+
 PKGBUILD   |   18 +
 filter.patch   |  153 ---
 protect-tool-env.patch |   28 
 3 files changed, 4 insertions(+), 195 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 05:55:49 UTC (rev 215943)
+++ PKGBUILD2014-07-01 06:16:40 UTC (rev 215944)
@@ -5,8 +5,8 @@
 # Contributor: Judd Vinet 
 
 pkgname=gnupg
-pkgver=2.0.24
-pkgrel=2
+pkgver=2.0.25
+pkgrel=1
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='http://www.gnupg.org/'
 license=('GPL')
@@ -16,12 +16,8 @@
 'libusb-compat: scdaemon')
 makedepends=('curl' 'libldap' 'libusb-compat')
 depends=('bzip2' 'libksba' 'libgcrypt' 'pth' 'libassuan' 'readline' 'pinentry' 
'dirmngr')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
-'protect-tool-env.patch'
-'filter.patch')
-sha1sums=('010e027d5f622778cadc4c124013fe515ed705cf' 'SKIP'
-  '2ec97ba55ae47ff0d63bc813b8c64cb79cef11db'
-  'e99aa2b725342aee188d706b42d392efb2389cf4')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('890d77d89f2d187382f95e83e386f2f7ba789436' 'SKIP')
 
 install=install
 
@@ -29,12 +25,6 @@
 provides=("gnupg2=${pkgver}")
 replaces=('gnupg2')
 
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../protect-tool-env.patch # FS#31900
-   patch -p1 -i ../filter.patch
-}
-
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \

Deleted: filter.patch
===
--- filter.patch2014-07-01 05:55:49 UTC (rev 215943)
+++ filter.patch2014-07-01 06:16:40 UTC (rev 215944)
@@ -1,153 +0,0 @@
-Hi,
-
-please give the batch below a try.  It works for me but before I do
-another release, I would like a second test.
-
-
-Shalom-Salam,
-
-   Werner
-
-From 044847a0e2013a2833605c1a9f80cfa6ef353309 Mon Sep 17 00:00:00 2001
-From: Werner Koch 
-Date: Wed, 25 Jun 2014 14:33:34 +0200
-Subject: [PATCH] gpg: Make screening of keyserver result work with multi-key
- commands.
-
-* g10/keyserver.c (ks_retrieval_filter_arg_s): new.
-(keyserver_retrieval_filter): Use new struct and check all
-descriptions.
-(keyserver_spawn): Pass filter arg suing the new struct.
---
-
-This is a fix for commit 5e933008.
-
-The old code did only work for a single key.  It failed as soon as
-several keys are specified ("gpg --refresh-keys" or "gpg --recv-key A
-B C").

- g10/keyserver.c | 68 ++---
- 1 file changed, 45 insertions(+), 23 deletions(-)
-
-diff --git a/g10/keyserver.c b/g10/keyserver.c
-index 83a4b95..aa41536 100644
 a/g10/keyserver.c
-+++ b/g10/keyserver.c
-@@ -982,13 +982,25 @@ direct_uri_map(const char *scheme,unsigned int is_direct)
- #define KEYSERVER_ARGS_NOKEEP " -o \"%o\" \"%i\""
- 
- 
-+/* Structure to convey the arg to keyserver_retrieval_filter.  */
-+struct ks_retrieval_filter_arg_s
-+{
-+  KEYDB_SEARCH_DESC *desc;
-+  int ndesc;
-+};
-+
-+
- /* Check whether a key matches the search description.  The filter
-returns 0 if the key shall be imported.  Note that this kind of
-filter is not related to the iobuf filters. */
- static int
--keyserver_retrieval_filter (PKT_public_key *pk, PKT_secret_key *sk, void *arg)
-+keyserver_retrieval_filter (PKT_public_key *pk, PKT_secret_key *sk,
-+void *opaque)
- {
--  KEYDB_SEARCH_DESC *desc = arg;
-+  struct ks_retrieval_filter_arg_s *arg = opaque;
-+  KEYDB_SEARCH_DESC *desc = arg->desc;
-+  int ndesc = arg->ndesc;
-+  int n;
-   u32 keyid[2];
-   byte fpr[MAX_FINGERPRINT_LEN];
-   size_t fpr_len = 0;
-@@ -997,32 +1009,40 @@ keyserver_retrieval_filter (PKT_public_key *pk, 
PKT_secret_key *sk, void *arg)
-   if (sk)
- return G10ERR_GENERAL;
- 
-+  if (!ndesc)
-+return 0; /* Okay if no description given.  */
-+
-   fingerprint_from_pk (pk, fpr, &fpr_len);
-   keyid_from_pk (pk, keyid);
- 
-   /* Compare requested and returned fingerprints if available. */
--  if (desc->mode == KEYDB_SEARCH_MODE_FPR20)
--{
--  if (fpr_len != 20 || memcmp (fpr, desc->u.fpr, 20))
--return G10ERR_GENERAL;
--}
--  else if (desc->mode == KEYDB_SEARCH_MODE_FPR16)
--{
--  if (fpr_len != 16 || memcmp (fpr, desc->u.fpr, 16))
--return G10ERR_GENERAL;
--}
--  else if (desc->mode == KEYDB_SEARCH_MODE_LONG_KID)
--{
--  if (keyid[0] != desc->u.kid[0] || keyid[1] != desc->u.kid[1])
--return G10ERR_GENERAL;
--}
--  else if (desc->mode == KEYDB_SEARCH_MODE_SHORT_KID)
-+  for (n = 0; n < ndesc; n++)
- {
--

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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:13:15
  Author: fyan
Revision: 113826

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

Added:
  fcitx-googlepinyin/repos/community-i686/PKGBUILD
(from rev 113825, fcitx-googlepinyin/trunk/PKGBUILD)
  fcitx-googlepinyin/repos/community-i686/fcitx-googlepinyin.install
(from rev 113825, fcitx-googlepinyin/trunk/fcitx-googlepinyin.install)
  fcitx-googlepinyin/repos/community-x86_64/PKGBUILD
(from rev 113825, fcitx-googlepinyin/trunk/PKGBUILD)
  fcitx-googlepinyin/repos/community-x86_64/fcitx-googlepinyin.install
(from rev 113825, fcitx-googlepinyin/trunk/fcitx-googlepinyin.install)
Deleted:
  fcitx-googlepinyin/repos/community-i686/PKGBUILD
  fcitx-googlepinyin/repos/community-i686/fcitx-googlepinyin.install
  fcitx-googlepinyin/repos/community-x86_64/PKGBUILD
  fcitx-googlepinyin/repos/community-x86_64/fcitx-googlepinyin.install

-+
 /PKGBUILD   |   62 ++
 /fcitx-googlepinyin.install |   22 +
 community-i686/PKGBUILD |   31 -
 community-i686/fcitx-googlepinyin.install   |   11 
 community-x86_64/PKGBUILD   |   31 -
 community-x86_64/fcitx-googlepinyin.install |   11 
 6 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:11:54 UTC (rev 113825)
+++ community-i686/PKGBUILD 2014-07-01 06:13:15 UTC (rev 113826)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=fcitx-googlepinyin
-pkgver=0.1.6
-pkgrel=3
-pkgdesc="Fcitx Wrapper for googlepinyin"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/fcitx";
-license=('GPL')
-depends=('fcitx>=4.2.0' 'libgooglepinyin>=0.1.2')
-makedepends=('cmake' 'intltool')
-source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";)
-install=fcitx-googlepinyin.install
-md5sums=('7ee33bbb66d29536819b0d2f73b69713')
-
-build() {
-  cd "$srcdir/${pkgname}-${pkgver}"
-
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
-  make
-}
-
-package() {
-  cd "$srcdir/${pkgname}-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-}

Copied: fcitx-googlepinyin/repos/community-i686/PKGBUILD (from rev 113825, 
fcitx-googlepinyin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:13:15 UTC (rev 113826)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=fcitx-googlepinyin
+pkgver=0.1.6
+pkgrel=4
+pkgdesc="Fcitx Wrapper for googlepinyin"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fcitx";
+license=('GPL')
+depends=('fcitx>=4.2.0' 'libgooglepinyin>=0.1.2')
+makedepends=('cmake' 'intltool')
+source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";)
+install=fcitx-googlepinyin.install
+md5sums=('7ee33bbb66d29536819b0d2f73b69713')
+
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
+  make
+}
+
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/fcitx-googlepinyin.install
===
--- community-i686/fcitx-googlepinyin.install   2014-07-01 06:11:54 UTC (rev 
113825)
+++ community-i686/fcitx-googlepinyin.install   2014-07-01 06:13:15 UTC (rev 
113826)
@@ -1,11 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: fcitx-googlepinyin/repos/community-i686/fcitx-googlepinyin.install 
(from rev 113825, fcitx-googlepinyin/trunk/fcitx-googlepinyin.install)
===
--- community-i686/fcitx-googlepinyin.install   (rev 0)
+++ community-i686/fcitx-googlepinyin.install   2014-07-01 06:13:15 UTC (rev 
113826)
@@ -0,0 +1,11 @@
+post_install() {
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 06:11:54 UTC (rev 113825)
+++ community-x86_64/PKGBUILD   2014-07-01 06:13:15 UTC (rev 113826)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=fcitx-googlepinyin
-pkgver=0.1.6
-pkgrel=3
-pkgdesc="Fcitx Wrapper for googlepinyin"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/fcitx";
-license=('GPL')
-depends=('fcitx>=4.2.0' 'libgooglepinyin>=0.1.2')
-makedepends

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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:11:54
  Author: fyan
Revision: 113825

upgpkg: fcitx-googlepinyin 0.1.6-4

mtree rebuild

Modified:
  fcitx-googlepinyin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:11:34 UTC (rev 113824)
+++ PKGBUILD2014-07-01 06:11:54 UTC (rev 113825)
@@ -3,7 +3,7 @@
 
 pkgname=fcitx-googlepinyin
 pkgver=0.1.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Fcitx Wrapper for googlepinyin"
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/fcitx";



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:11:34
  Author: fyan
Revision: 113824

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

Added:
  fcitx-fbterm/repos/community-i686/PKGBUILD
(from rev 113823, fcitx-fbterm/trunk/PKGBUILD)
  fcitx-fbterm/repos/community-i686/fcitx-fbterm.install
(from rev 113823, fcitx-fbterm/trunk/fcitx-fbterm.install)
  fcitx-fbterm/repos/community-x86_64/PKGBUILD
(from rev 113823, fcitx-fbterm/trunk/PKGBUILD)
  fcitx-fbterm/repos/community-x86_64/fcitx-fbterm.install
(from rev 113823, fcitx-fbterm/trunk/fcitx-fbterm.install)
Deleted:
  fcitx-fbterm/repos/community-i686/PKGBUILD
  fcitx-fbterm/repos/community-i686/fcitx-fbterm.install
  fcitx-fbterm/repos/community-x86_64/PKGBUILD
  fcitx-fbterm/repos/community-x86_64/fcitx-fbterm.install

---+
 /PKGBUILD |   68 
 /fcitx-fbterm.install |   32 +++
 community-i686/PKGBUILD   |   34 
 community-i686/fcitx-fbterm.install   |   16 ---
 community-x86_64/PKGBUILD |   34 
 community-x86_64/fcitx-fbterm.install |   16 ---
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 06:10:11 UTC (rev 113823)
+++ community-i686/PKGBUILD 2014-07-01 06:11:34 UTC (rev 113824)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Author: CSSlayer 
-# Contributor: Yangtse  
-
-pkgname=fcitx-fbterm
-pkgver=0.2.0
-pkgrel=2
-pkgdesc="Fbterm support for Fcitx."
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/fcitx";
-license=('GPL2')
-depends=('fcitx>=4.1.0' 'fbterm')
-makedepends=('cmake' 'intltool')
-source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";)
-install=fcitx-fbterm.install
-
-build(){
-cd "$srcdir/${pkgname}-${pkgver}"
-
-rm -rf build
-mkdir build
-cd build
-
-cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
-make
-}
-
-package ()
-{
-cd "$srcdir/${pkgname}-${pkgver}/build"
-make DESTDIR="${pkgdir}" install
-}
-md5sums=('a7eb80fde3e0d1cab27e230c912849da')

Copied: fcitx-fbterm/repos/community-i686/PKGBUILD (from rev 113823, 
fcitx-fbterm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 06:11:34 UTC (rev 113824)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Author: CSSlayer 
+# Contributor: Yangtse  
+
+pkgname=fcitx-fbterm
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Fbterm support for Fcitx."
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fcitx";
+license=('GPL2')
+depends=('fcitx>=4.1.0' 'fbterm')
+makedepends=('cmake' 'intltool')
+source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";)
+install=fcitx-fbterm.install
+
+build(){
+cd "$srcdir/${pkgname}-${pkgver}"
+
+rm -rf build
+mkdir build
+cd build
+
+cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
+make
+}
+
+package ()
+{
+cd "$srcdir/${pkgname}-${pkgver}/build"
+make DESTDIR="${pkgdir}" install
+}
+md5sums=('a7eb80fde3e0d1cab27e230c912849da')

Deleted: community-i686/fcitx-fbterm.install
===
--- community-i686/fcitx-fbterm.install 2014-07-01 06:10:11 UTC (rev 113823)
+++ community-i686/fcitx-fbterm.install 2014-07-01 06:11:34 UTC (rev 113824)
@@ -1,16 +0,0 @@
-post_install() {
-   echo "$ sudo setcap 'cap_sys_tty_config+ep' /usr/bin/fbterm"
-   echo "or"
-   echo "$ sudo chmod u+s /usr/bin/fbterm"
-
-   echo "Do above once,Then launch fbterm with fcitx"
-   echo "$ fcitx-fbterm-helper -l"
-}
-post_upgrade() {
-echo "$ sudo setcap 'cap_sys_tty_config+ep' /usr/bin/fbterm"
-   echo "or"
-   echo "$ sudo chmod u+s /usr/bin/fbterm"
-
-   echo "Do above once,Then launch fbterm with fcitx"
-   echo "$ fcitx-fbterm-helper -l"
-}

Copied: fcitx-fbterm/repos/community-i686/fcitx-fbterm.install (from rev 
113823, fcitx-fbterm/trunk/fcitx-fbterm.install)
===
--- community-i686/fcitx-fbterm.install (rev 0)
+++ community-i686/fcitx-fbterm.install 2014-07-01 06:11:34 UTC (rev 113824)
@@ -0,0 +1,16 @@
+post_install() {
+   echo "$ sudo setcap 'cap_sys_tty_config+ep' /usr/bin/fbterm"
+   echo "or"
+   echo "$ sudo chmod u+s /usr/bin/fbterm"
+
+   echo "Do above once,Then launch fbterm with fcitx"
+   echo "$ fcitx-fbterm-helper -l"
+}
+post_upgrade() {
+echo "$ sudo setcap 'cap_sys_tty_config+ep' /usr/bin/fbterm"
+   echo "or"
+   echo "$ sudo chmod u+s /usr/bin/fbterm"
+
+   echo "Do above once,Then launch fbterm with fcitx"
+ 

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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 08:10:11
  Author: fyan
Revision: 113823

upgpkg: fcitx-fbterm 0.2.0-3

mtree rebuild

Modified:
  fcitx-fbterm/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 00:55:53 UTC (rev 113822)
+++ PKGBUILD2014-07-01 06:10:11 UTC (rev 113823)
@@ -5,7 +5,7 @@
 
 pkgname=fcitx-fbterm
 pkgver=0.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Fbterm support for Fcitx."
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/fcitx";


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


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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:55:49
  Author: tpowa
Revision: 215943

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

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

---+
 /PKGBUILD |  106 
 /nvidia.install   |   30 +++
 testing-i686/PKGBUILD |   53 
 testing-i686/nvidia.install   |   15 -
 testing-x86_64/PKGBUILD   |   53 
 testing-x86_64/nvidia.install |   15 -
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-07-01 05:55:36 UTC (rev 215942)
+++ testing-i686/PKGBUILD   2014-07-01 05:55:49 UTC (rev 215943)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgname=nvidia-304xx
-pkgver=304.121
-_extramodules=extramodules-3.15-ARCH
-pkgrel=6
-pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-depends=('linux>=3.15' 'linux<3.16' 'nvidia-304xx-libgl' 
"nvidia-304xx-utils=${pkgver}")
-makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
-conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ "$CARCH" = "i686" ]; then
-_arch='x86'
-_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
-
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('b8c950f0a30a6e1f503630fbd0ca8ab9')
-elif [ "$CARCH" = "x86_64" ]; then
-_arch='x86_64'
-   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
-
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('41e6d2b6325e5b0ae9889cfbd6bec696')
-fi
-
-prepare() {
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-cd "${pkg}"
-# patches here
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}/kernel"
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package() {
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/nvidia.install"
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-
-# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
-}

Copied: nvidia-304xx/repos/testing-i686/PKGBUILD (from rev 215941, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-01 05:55:49 UTC (rev 215943)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.121
+_extramodules=extramodules-3.15-ARCH
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.15' 'linux<3.16' 'nvidia-304xx-libgl' 
"nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('b8c950f0a30a6e1f503630fbd0ca8ab9')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('41e6d2b6325e5b0ae9889cfbd6bec696')
+fi
+
+prepare() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${pkg}"
+# patches here
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr

[arch-commits] Commit in lirc/repos (28 files)

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:55:36
  Author: tpowa
Revision: 215942

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

Added:
  lirc/repos/testing-i686/
  lirc/repos/testing-i686/PKGBUILD
(from rev 215941, lirc/trunk/PKGBUILD)
  lirc/repos/testing-i686/irexec.service
(from rev 215941, lirc/trunk/irexec.service)
  lirc/repos/testing-i686/kernel-2.6.39.patch
(from rev 215941, lirc/trunk/kernel-2.6.39.patch)
  lirc/repos/testing-i686/linux-3.8.patch
(from rev 215941, lirc/trunk/linux-3.8.patch)
  lirc/repos/testing-i686/lirc-utils.install
(from rev 215941, lirc/trunk/lirc-utils.install)
  lirc/repos/testing-i686/lirc.install
(from rev 215941, lirc/trunk/lirc.install)
  lirc/repos/testing-i686/lirc.logrotate
(from rev 215941, lirc/trunk/lirc.logrotate)
  lirc/repos/testing-i686/lirc.service
(from rev 215941, lirc/trunk/lirc.service)
  lirc/repos/testing-i686/lirc.tmpfiles
(from rev 215941, lirc/trunk/lirc.tmpfiles)
  lirc/repos/testing-i686/lirc_atiusb-kfifo.patch
(from rev 215941, lirc/trunk/lirc_atiusb-kfifo.patch)
  lirc/repos/testing-i686/lirc_wpc8769l.patch
(from rev 215941, lirc/trunk/lirc_wpc8769l.patch)
  lirc/repos/testing-i686/lircd-handle-large-config.patch
(from rev 215941, lirc/trunk/lircd-handle-large-config.patch)
  lirc/repos/testing-i686/lircm.service
(from rev 215941, lirc/trunk/lircm.service)
  lirc/repos/testing-x86_64/
  lirc/repos/testing-x86_64/PKGBUILD
(from rev 215941, lirc/trunk/PKGBUILD)
  lirc/repos/testing-x86_64/irexec.service
(from rev 215941, lirc/trunk/irexec.service)
  lirc/repos/testing-x86_64/kernel-2.6.39.patch
(from rev 215941, lirc/trunk/kernel-2.6.39.patch)
  lirc/repos/testing-x86_64/linux-3.8.patch
(from rev 215941, lirc/trunk/linux-3.8.patch)
  lirc/repos/testing-x86_64/lirc-utils.install
(from rev 215941, lirc/trunk/lirc-utils.install)
  lirc/repos/testing-x86_64/lirc.install
(from rev 215941, lirc/trunk/lirc.install)
  lirc/repos/testing-x86_64/lirc.logrotate
(from rev 215941, lirc/trunk/lirc.logrotate)
  lirc/repos/testing-x86_64/lirc.service
(from rev 215941, lirc/trunk/lirc.service)
  lirc/repos/testing-x86_64/lirc.tmpfiles
(from rev 215941, lirc/trunk/lirc.tmpfiles)
  lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch
(from rev 215941, lirc/trunk/lirc_atiusb-kfifo.patch)
  lirc/repos/testing-x86_64/lirc_wpc8769l.patch
(from rev 215941, lirc/trunk/lirc_wpc8769l.patch)
  lirc/repos/testing-x86_64/lircd-handle-large-config.patch
(from rev 215941, lirc/trunk/lircd-handle-large-config.patch)
  lirc/repos/testing-x86_64/lircm.service
(from rev 215941, lirc/trunk/lircm.service)

+
 testing-i686/PKGBUILD  |  121 +++
 testing-i686/irexec.service|   11 ++
 testing-i686/kernel-2.6.39.patch   |   54 ++
 testing-i686/linux-3.8.patch   |   80 +++
 testing-i686/lirc-utils.install|7 +
 testing-i686/lirc.install  |   16 +++
 testing-i686/lirc.logrotate|5 
 testing-i686/lirc.service  |   12 ++
 testing-i686/lirc.tmpfiles |1 
 testing-i686/lirc_atiusb-kfifo.patch   |   31 +
 testing-i686/lirc_wpc8769l.patch   |   88 
 testing-i686/lircd-handle-large-config.patch   |   39 +++
 testing-i686/lircm.service |   12 ++
 testing-x86_64/PKGBUILD|  121 +++
 testing-x86_64/irexec.service  |   11 ++
 testing-x86_64/kernel-2.6.39.patch |   54 ++
 testing-x86_64/linux-3.8.patch |   80 +++
 testing-x86_64/lirc-utils.install  |7 +
 testing-x86_64/lirc.install|   16 +++
 testing-x86_64/lirc.logrotate  |5 
 testing-x86_64/lirc.service|   12 ++
 testing-x86_64/lirc.tmpfiles   |1 
 testing-x86_64/lirc_atiusb-kfifo.patch |   31 +
 testing-x86_64/lirc_wpc8769l.patch |   88 
 testing-x86_64/lircd-handle-large-config.patch |   39 +++
 testing-x86_64/lircm.service   |   12 ++
 26 files changed, 954 insertions(+)

Copied: lirc/repos/testing-i686/PKGBUILD (from rev 215941, lirc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-01 05:55:36 UTC (rev 215942)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Paul Mattal 
+
+pkgbase=lirc
+pkgname=('lirc' 'lirc-utils')
+pkgver=0.9.0
+pkgrel=74
+epoch=1
+_extramodules=extramodules-3.15-ARCH
+arch=('i686' 'x86_64')
+url="http://www.lirc.org/";
+license=('GPL')
+### NOTICE don't forget to bump version in depends in package_lirc
+makedepend

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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:54:34
  Author: tpowa
Revision: 215941

upgpkg: lirc 1:0.9.0-74

rebuild against 3.15.3

Modified:
  lirc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 05:53:37 UTC (rev 215940)
+++ PKGBUILD2014-07-01 05:54:34 UTC (rev 215941)
@@ -4,7 +4,7 @@
 pkgbase=lirc
 pkgname=('lirc' 'lirc-utils')
 pkgver=0.9.0
-pkgrel=73
+pkgrel=74
 epoch=1
 _extramodules=extramodules-3.15-ARCH
 arch=('i686' 'x86_64')



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 07:53:37
  Author: fyan
Revision: 215940

archrelease: copy trunk to extra-any

Added:
  mm-common/repos/extra-any/PKGBUILD
(from rev 215939, mm-common/trunk/PKGBUILD)
Deleted:
  mm-common/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 05:53:20 UTC (rev 215939)
+++ PKGBUILD2014-07-01 05:53:37 UTC (rev 215940)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=mm-common
-pkgver=0.9.6
-pkgrel=1
-pkgdesc="Common build files of the C++ bindings"
-arch=('any')
-url="http://gtkmm.org";
-depends=('sh')
-license=('GPL2')
-source=(http://download.gnome.org/sources/mm-common/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7c37158a1f37604705a9b9305d3b335fb8256f5de701c8801269dde4e2ce7dde')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mm-common/repos/extra-any/PKGBUILD (from rev 215939, 
mm-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 05:53:37 UTC (rev 215940)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=mm-common
+pkgver=0.9.6
+pkgrel=2
+pkgdesc="Common build files of the C++ bindings"
+arch=('any')
+url="http://gtkmm.org";
+depends=('sh')
+license=('GPL2')
+source=(http://download.gnome.org/sources/mm-common/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7c37158a1f37604705a9b9305d3b335fb8256f5de701c8801269dde4e2ce7dde')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:53:20
  Author: tpowa
Revision: 215939

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

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

---+
 testing-i686/PKGBUILD |   53 
 testing-i686/nvidia.install   |   15 +++
 testing-x86_64/PKGBUILD   |   53 
 testing-x86_64/nvidia.install |   15 +++
 4 files changed, 136 insertions(+)

Copied: nvidia-304xx/repos/testing-i686/PKGBUILD (from rev 215938, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-01 05:53:20 UTC (rev 215939)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.121
+_extramodules=extramodules-3.15-ARCH
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.15' 'linux<3.16' 'nvidia-304xx-libgl' 
"nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('b8c950f0a30a6e1f503630fbd0ca8ab9')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('41e6d2b6325e5b0ae9889cfbd6bec696')
+fi
+
+prepare() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${pkg}"
+# patches here
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/nvidia.install"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+
+# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
+}

Copied: nvidia-304xx/repos/testing-i686/nvidia.install (from rev 215938, 
nvidia-304xx/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ testing-i686/nvidia.install 2014-07-01 05:53:20 UTC (rev 215939)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.13-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.13-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.13-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx/repos/testing-x86_64/PKGBUILD (from rev 215938, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-07-01 05:53:20 UTC (rev 215939)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.121
+_extramodules=extramodules-3.15-ARCH
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.15' 'linux<3.16' 'nvidia-304xx-libgl' 
"nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('b8c950f0a30a6e1f503630fbd0ca8ab9')
+elif [ "$CARCH" = "x86_64" ]; the

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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 07:52:43
  Author: fyan
Revision: 215937

upgpkg: mm-common 0.9.6-2

mtree rebuild

Modified:
  mm-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 05:52:04 UTC (rev 215936)
+++ PKGBUILD2014-07-01 05:52:43 UTC (rev 215937)
@@ -3,7 +3,7 @@
 
 pkgname=mm-common
 pkgver=0.9.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Common build files of the C++ bindings"
 arch=('any')
 url="http://gtkmm.org";



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:53:02
  Author: tpowa
Revision: 215938

upgpkg: nvidia-304xx 304.121-6

rebuild against 3.15.3

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 05:52:43 UTC (rev 215937)
+++ PKGBUILD2014-07-01 05:53:02 UTC (rev 215938)
@@ -5,7 +5,7 @@
 pkgname=nvidia-304xx
 pkgver=304.121
 _extramodules=extramodules-3.15-ARCH
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:52:04
  Author: tpowa
Revision: 215936

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

Added:
  nvidia/repos/testing-i686/
  nvidia/repos/testing-i686/PKGBUILD
(from rev 215935, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia-3.14.patch
(from rev 215935, nvidia/trunk/nvidia-3.14.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 215935, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 215935, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia-3.14.patch
(from rev 215935, nvidia/trunk/nvidia-3.14.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 215935, nvidia/trunk/nvidia.install)

--+
 testing-i686/PKGBUILD|   49 +
 testing-i686/nvidia-3.14.patch   |   12 +
 testing-i686/nvidia.install  |   18 +
 testing-x86_64/PKGBUILD  |   49 +
 testing-x86_64/nvidia-3.14.patch |   12 +
 testing-x86_64/nvidia.install|   18 +
 6 files changed, 158 insertions(+)

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 215935, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-07-01 05:52:04 UTC (rev 215936)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia
+pkgver=337.25
+_extramodules=extramodules-3.15-ARCH
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.15' 'linux<3.16' "nvidia-libgl" "nvidia-utils=${pkgver}")
+makedepends=('linux-headers>=3.15' 'linux-headers<3.16')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";
+
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+md5sums=('2a217632ced8952e21000a51065f85b8'
+ '66e19d6d621c9e70fbd5374dd8b44341')
+
+[[ "$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
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/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"
+sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/nvidia.install"
+}

Copied: nvidia/repos/testing-i686/nvidia-3.14.patch (from rev 215935, 
nvidia/trunk/nvidia-3.14.patch)
===
--- testing-i686/nvidia-3.14.patch  (rev 0)
+++ testing-i686/nvidia-3.14.patch  2014-07-01 05:52:04 UTC (rev 215936)
@@ -0,0 +1,12 @@
+--- a/kernel/nv-linux.h 2014-01-09 04:49:25.0 +0200
 b/kernel/nv-linux.h 2014-02-05 16:46:55.552408568 +0200
+@@ -273,8 +273,7 @@
+ #endif
+ 
+ #if !defined(NV_VMWARE) && defined(CONFIG_ACPI)
+-#include 
+-#include 
++#include 
+ #if defined(NV_ACPI_DEVICE_OPS_HAS_MATCH) || defined(ACPI_VIDEO_HID)
+ #define NV_LINUX_ACPI_EVENTS_SUPPORTED 1
+ #endif

Copied: nvidia/repos/testing-i686/nvidia.install (from rev 215935, 
nvidia/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ testing-i686/nvidia.install 2014-07-01 05:52:04 UTC (rev 215936)
@@ -0,0 +1,18 @@
+post_install() {
+EXTRAMODULES='extramodules-3.14-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.14-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+if  [ "$(vercmp $2 310.19-2)" -lt 0 ]; then
+echo 'If your card is from the 7xxx series or earlier, install 
nvidia-304xx'
+fi
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.14-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 215935, 
nvidia/trunk/P

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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:51:45
  Author: tpowa
Revision: 215935

upgpkg: nvidia 337.25-4

rebuild against 3.15.3

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 05:46:47 UTC (rev 215934)
+++ PKGBUILD2014-07-01 05:51:45 UTC (rev 215935)
@@ -4,7 +4,7 @@
 pkgname=nvidia
 pkgver=337.25
 _extramodules=extramodules-3.15-ARCH
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";



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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:46:47
  Author: tpowa
Revision: 215934

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/0012-fix-saa7134.patch
(from rev 215933, linux/trunk/0012-fix-saa7134.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 215933, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 215933, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 215933, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 215933, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 215933, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 215933, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/0012-fix-saa7134.patch
(from rev 215933, linux/trunk/0012-fix-saa7134.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 215933, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 215933, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 215933, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 215933, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 215933, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 215933, linux/trunk/linux.preset)

--+
 testing-i686/0012-fix-saa7134.patch  |   37 
 testing-i686/PKGBUILD|  291 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6770 +
 testing-i686/config.x86_64   | 6544 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/0012-fix-saa7134.patch|   37 
 testing-x86_64/PKGBUILD  |  291 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6770 +
 testing-x86_64/config.x86_64 | 6544 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 14 files changed, 27410 insertions(+)

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


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

2014-06-30 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 07:46:28
  Author: tpowa
Revision: 215933

upgpkg: linux 3.15.3-1

bump to lastest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 04:35:40 UTC (rev 215932)
+++ PKGBUILD2014-07-01 05:46:28 UTC (rev 215933)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.15
-pkgver=3.15.2
+pkgver=3.15.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -19,15 +19,13 @@
 # standard config files for mkinitcpio ramdisk
 'linux.preset'
 'change-default-console-loglevel.patch'
-'0012-fix-saa7134.patch'
 )
 sha256sums=('c3927e87be4040fa8aca1b58663dc0776aaf00485604ff88a623be2f3fb07794'
-'47d902c0f6cb5833a45ba45132197b14e4c85c6bc17883cbdcff60f5c46f3f02'
+'82ee661b91246c77d0ef3d9d6d8dcc191d3490cad17cd295a95169059735f295'
 'ec593326ac4dad420b0b45a472ba3d6be2ce66b9b4d7cccf1453d02d5eb01b19'
 'cf10550fe511c534ec7f820f12c3345086b1ef64ac7f3b8b0d8d49bc3ea1f166'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
-'faced4eb4c47c4eb1a9ee8a5bf8a7c4b49d6b4d78efbe426e410730e6267d182'
-'79359454c9d8446eb55add2b1cdbf8332bd67dafb01fefb5b1ca090225f64d18')
+'faced4eb4c47c4eb1a9ee8a5bf8a7c4b49d6b4d78efbe426e410730e6267d182')
 
 _kernelname=${pkgbase#linux}
 
@@ -45,11 +43,6 @@
   # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
   patch -p1 -i "${srcdir}/change-default-console-loglevel.patch"
 
-  # fix saa7134 video
-  # https://bugs.archlinux.org/task/39904
-  # https://bugzilla.kernel.org/show_bug.cgi?id=73361
-  patch -Np1 -i "${srcdir}/0012-fix-saa7134.patch"
-
   if [ "${CARCH}" = "x86_64" ]; then
 cat "${srcdir}/config.x86_64" > ./.config
   else



[arch-commits] Commit in dbus-sharp-glib/repos/extra-any (PKGBUILD PKGBUILD)

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 06:35:40
  Author: fyan
Revision: 215932

archrelease: copy trunk to extra-any

Added:
  dbus-sharp-glib/repos/extra-any/PKGBUILD
(from rev 215931, dbus-sharp-glib/trunk/PKGBUILD)
Deleted:
  dbus-sharp-glib/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 04:34:51 UTC (rev 215931)
+++ PKGBUILD2014-07-01 04:35:40 UTC (rev 215932)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: Alessio Biancalana 
-
-pkgname=dbus-sharp-glib
-pkgver=0.5.0
-pkgrel=4
-pkgdesc="C# GLib implementation of D-Bus"
-arch=('any')
-url="http://github.com/mono/dbus-sharp/";
-license=('custom')
-depends=('dbus-sharp>=0.7')
-makedepends=('pkgconfig')
-options=(!makeflags)
-source=(https://github.com/downloads/mono/dbus-sharp/$pkgname-$pkgver.tar.gz)
-md5sums=('2284293316eb3a89f0f78798b8a24418')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  export MONO_SHARED_DIR="${srcdir}/.wabi"
-  mkdir -p "${MONO_SHARED_DIR}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package(){
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: dbus-sharp-glib/repos/extra-any/PKGBUILD (from rev 215931, 
dbus-sharp-glib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 04:35:40 UTC (rev 215932)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: Alessio Biancalana 
+
+pkgname=dbus-sharp-glib
+pkgver=0.5.0
+pkgrel=5
+pkgdesc="C# GLib implementation of D-Bus"
+arch=('any')
+url="http://github.com/mono/dbus-sharp/";
+license=('custom')
+depends=('dbus-sharp>=0.7')
+makedepends=('pkgconfig')
+options=(!makeflags)
+source=(https://github.com/downloads/mono/dbus-sharp/$pkgname-$pkgver.tar.gz)
+md5sums=('2284293316eb3a89f0f78798b8a24418')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  export MONO_SHARED_DIR="${srcdir}/.wabi"
+  mkdir -p "${MONO_SHARED_DIR}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package(){
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 06:34:39
  Author: fyan
Revision: 215930

archrelease: copy trunk to extra-any

Added:
  dbus-sharp/repos/extra-any/PKGBUILD
(from rev 215929, dbus-sharp/trunk/PKGBUILD)
Deleted:
  dbus-sharp/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 04:33:52 UTC (rev 215929)
+++ PKGBUILD2014-07-01 04:34:39 UTC (rev 215930)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: Alessio Biancalana 
-
-pkgname=dbus-sharp
-pkgver=0.7.0
-pkgrel=4
-pkgdesc="C# implementation of D-Bus"
-arch=('any')
-url="http://github.com/mono/dbus-sharp/";
-license=('custom')
-depends=('mono')
-options=(!makeflags)
-source=(https://github.com/downloads/mono/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('1964fc341dcbaeda859c53cee295d042')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  export MONO_SHARED_DIR="$srcdir/.wabi"
-  mkdir -p "$MONO_SHARED_DIR"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package(){
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: dbus-sharp/repos/extra-any/PKGBUILD (from rev 215929, 
dbus-sharp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 04:34:39 UTC (rev 215930)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: Alessio Biancalana 
+
+pkgname=dbus-sharp
+pkgver=0.7.0
+pkgrel=5
+pkgdesc="C# implementation of D-Bus"
+arch=('any')
+url="http://github.com/mono/dbus-sharp/";
+license=('custom')
+depends=('mono')
+options=(!makeflags)
+source=(https://github.com/downloads/mono/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('1964fc341dcbaeda859c53cee295d042')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  export MONO_SHARED_DIR="$srcdir/.wabi"
+  mkdir -p "$MONO_SHARED_DIR"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package(){
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 06:34:51
  Author: fyan
Revision: 215931

upgpkg: dbus-sharp-glib 0.5.0-5

mtree rebuild

Modified:
  dbus-sharp-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 04:34:39 UTC (rev 215930)
+++ PKGBUILD2014-07-01 04:34:51 UTC (rev 215931)
@@ -4,7 +4,7 @@
 
 pkgname=dbus-sharp-glib
 pkgver=0.5.0
-pkgrel=4
+pkgrel=5
 pkgdesc="C# GLib implementation of D-Bus"
 arch=('any')
 url="http://github.com/mono/dbus-sharp/";



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 06:33:52
  Author: fyan
Revision: 215929

upgpkg: dbus-sharp 0.7.0-5

mtree rebuild

Modified:
  dbus-sharp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 01:38:25 UTC (rev 215928)
+++ PKGBUILD2014-07-01 04:33:52 UTC (rev 215929)
@@ -4,7 +4,7 @@
 
 pkgname=dbus-sharp
 pkgver=0.7.0
-pkgrel=4
+pkgrel=5
 pkgdesc="C# implementation of D-Bus"
 arch=('any')
 url="http://github.com/mono/dbus-sharp/";



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

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 03:38:25
  Author: eric
Revision: 215928

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-01 01:36:09 UTC (rev 215927)
+++ extra-i686/PKGBUILD 2014-07-01 01:38:25 UTC (rev 215928)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=beep
-pkgver=1.3
-pkgrel=2
-pkgdesc="Advanced PC speaker beeping program"
-arch=('i686' 'x86_64')
-url="http://www.johnath.com/beep";
-license=('GPL2')
-depends=('glibc')
-source=(http://www.johnath.com/beep/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('8cba283e507dc9e401da011a9c92a2e24ea2bf70')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i "s:-Wall:${CFLAGS}:" Makefile
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  install -D -m755 beep "${pkgdir}/usr/bin/beep"
-  install -D -m644 beep.1.gz "${pkgdir}/usr/share/man/man1/beep.1.gz"
-}

Copied: beep/repos/extra-i686/PKGBUILD (from rev 215927, beep/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-01 01:38:25 UTC (rev 215928)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=beep
+pkgver=1.3
+pkgrel=3
+pkgdesc="Advanced PC speaker beeping program"
+arch=('i686' 'x86_64')
+url="http://www.johnath.com/beep";
+license=('GPL2')
+depends=('glibc')
+source=(http://www.johnath.com/beep/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('8cba283e507dc9e401da011a9c92a2e24ea2bf70')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "s:-Wall:${CFLAGS}:" Makefile
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -D -m755 beep "${pkgdir}/usr/bin/beep"
+  install -D -m644 beep.1.gz "${pkgdir}/usr/share/man/man1/beep.1.gz"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-07-01 01:36:09 UTC (rev 215927)
+++ extra-x86_64/PKGBUILD   2014-07-01 01:38:25 UTC (rev 215928)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=beep
-pkgver=1.3
-pkgrel=2
-pkgdesc="Advanced PC speaker beeping program"
-arch=('i686' 'x86_64')
-url="http://www.johnath.com/beep";
-license=('GPL2')
-depends=('glibc')
-source=(http://www.johnath.com/beep/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('8cba283e507dc9e401da011a9c92a2e24ea2bf70')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i "s:-Wall:${CFLAGS}:" Makefile
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  install -D -m755 beep "${pkgdir}/usr/bin/beep"
-  install -D -m644 beep.1.gz "${pkgdir}/usr/share/man/man1/beep.1.gz"
-}

Copied: beep/repos/extra-x86_64/PKGBUILD (from rev 215927, beep/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-01 01:38:25 UTC (rev 215928)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=beep
+pkgver=1.3
+pkgrel=3
+pkgdesc="Advanced PC speaker beeping program"
+arch=('i686' 'x86_64')
+url="http://www.johnath.com/beep";
+license=('GPL2')
+depends=('glibc')
+source=(http://www.johnath.com/beep/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('8cba283e507dc9e401da011a9c92a2e24ea2bf70')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "s:-Wall:${CFLAGS}:" Makefile
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -D -m755 beep "${pkgdir}/usr/bin/beep"
+  install -D -m644 beep.1.gz "${pkgdir}/usr/share/man/man1/beep.1.gz"
+}



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

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 03:36:09
  Author: eric
Revision: 215927

upgpkg: beep 1.3-3

Rebuild to add mtree file

Modified:
  beep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 00:50:58 UTC (rev 215926)
+++ PKGBUILD2014-07-01 01:36:09 UTC (rev 215927)
@@ -3,7 +3,7 @@
 
 pkgname=beep
 pkgver=1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Advanced PC speaker beeping program"
 arch=('i686' 'x86_64')
 url="http://www.johnath.com/beep";
@@ -12,14 +12,18 @@
 source=(http://www.johnath.com/beep/${pkgname}-${pkgver}.tar.gz)
 sha1sums=('8cba283e507dc9e401da011a9c92a2e24ea2bf70')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "s:-Wall:${CFLAGS}:" Makefile
+}
+
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i "s:-Wall:${CFLAGS}:" Makefile
+  cd ${pkgname}-${pkgver}
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   install -D -m755 beep "${pkgdir}/usr/bin/beep"
   install -D -m644 beep.1.gz "${pkgdir}/usr/share/man/man1/beep.1.gz"
 }



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

2014-06-30 Thread Daniel Wallace
Date: Tuesday, July 1, 2014 @ 02:55:25
  Author: dwallace
Revision: 113821

upgpkg: udiskie 1.0.2-2

upgpkg: udiskie 1.0.2-2 fix depends

Modified:
  udiskie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 20:26:05 UTC (rev 113820)
+++ PKGBUILD2014-07-01 00:55:25 UTC (rev 113821)
@@ -3,17 +3,17 @@
 # Contributor: Byron Clark 
 pkgname=udiskie
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Removable disk automounter using udisks"
 arch=('any')
 url="https://pypi.python.org/pypi/udiskie";
 license=('MIT')
-depends=('udisks' 'python-dbus' 'python-gobject' 'python-setuptools' 
'python-yaml' 'python-docopt')
+depends=('udisks' 'python-gobject' 'python-setuptools' 'python-yaml' 
'python-docopt')
 makedepends=('asciidoc')
 optdepends=('zenity: for luks decryption'
 'pygtk: for tray icon')
 options=(!emptydirs)
-optdepends=('udisks2: experimenatl use on the command line with -2')
+optdepends=('udisks2: experimental use on the command line with -2')
 
source=("https://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz";)
 md5sums=('f9e701e649515694242393077e7c5b66')
 



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

2014-06-30 Thread Daniel Wallace
Date: Tuesday, July 1, 2014 @ 02:55:53
  Author: dwallace
Revision: 113822

archrelease: copy trunk to community-any

Added:
  udiskie/repos/community-any/PKGBUILD
(from rev 113821, udiskie/trunk/PKGBUILD)
Deleted:
  udiskie/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 00:55:25 UTC (rev 113821)
+++ PKGBUILD2014-07-01 00:55:53 UTC (rev 113822)
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
-# Maintainer: Daniel Wallace 
-# Contributor: Byron Clark 
-pkgname=udiskie
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="Removable disk automounter using udisks"
-arch=('any')
-url="https://pypi.python.org/pypi/udiskie";
-license=('MIT')
-depends=('udisks' 'python-dbus' 'python-gobject' 'python-setuptools' 
'python-yaml' 'python-docopt')
-makedepends=('asciidoc')
-optdepends=('zenity: for luks decryption'
-'pygtk: for tray icon')
-options=(!emptydirs)
-optdepends=('udisks2: experimenatl use on the command line with -2')
-source=("https://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f9e701e649515694242393077e7c5b66')
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  make -C doc
-  install -m 0644 -D "doc/${pkgname}.8" 
"$pkgdir/usr/share/man/man8/${pkgname}.8"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-}
-
-# vim:set ts=2 sw=2 et:

Copied: udiskie/repos/community-any/PKGBUILD (from rev 113821, 
udiskie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 00:55:53 UTC (rev 113822)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
+# Maintainer: Daniel Wallace 
+# Contributor: Byron Clark 
+pkgname=udiskie
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Removable disk automounter using udisks"
+arch=('any')
+url="https://pypi.python.org/pypi/udiskie";
+license=('MIT')
+depends=('udisks' 'python-gobject' 'python-setuptools' 'python-yaml' 
'python-docopt')
+makedepends=('asciidoc')
+optdepends=('zenity: for luks decryption'
+'pygtk: for tray icon')
+options=(!emptydirs)
+optdepends=('udisks2: experimental use on the command line with -2')
+source=("https://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f9e701e649515694242393077e7c5b66')
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  make -C doc
+  install -m 0644 -D "doc/${pkgname}.8" 
"$pkgdir/usr/share/man/man8/${pkgname}.8"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 02:50:58
  Author: fyan
Revision: 215926

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

Added:
  aspell-ru/repos/extra-i686/PKGBUILD
(from rev 215925, aspell-ru/trunk/PKGBUILD)
  aspell-ru/repos/extra-x86_64/PKGBUILD
(from rev 215925, aspell-ru/trunk/PKGBUILD)
Deleted:
  aspell-ru/repos/extra-i686/PKGBUILD
  aspell-ru/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-01 00:49:50 UTC (rev 215925)
+++ extra-i686/PKGBUILD 2014-07-01 00:50:58 UTC (rev 215926)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Simo Leone 
-# Contributor: Rouslan Solomakhin 
-
-pkgname=aspell-ru
-pkgver=0.99f7
-pkgrel=5
-pkgdesc="Russian dictionary for aspell"
-arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443
-url="http://aspell.net/";
-license=('custom')
-depends=('aspell')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-$pkgver-1.tar.bz2)
-md5sums=('c4c98eaa5e77ad3adccbc5c96cb57cb3')
-
-build() {
-  cd $srcdir/aspell6-ru-$pkgver-1
-  ./configure
-  make
-}
-
-package() {
-  cd $srcdir/aspell6-ru-$pkgver-1
-  make DESTDIR=$pkgdir install
-
-  install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: aspell-ru/repos/extra-i686/PKGBUILD (from rev 215925, 
aspell-ru/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-01 00:50:58 UTC (rev 215926)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone 
+# Contributor: Rouslan Solomakhin 
+
+pkgname=aspell-ru
+pkgver=0.99f7
+pkgrel=6
+pkgdesc="Russian dictionary for aspell"
+arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443
+url="http://aspell.net/";
+license=('custom')
+depends=('aspell')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-$pkgver-1.tar.bz2)
+md5sums=('c4c98eaa5e77ad3adccbc5c96cb57cb3')
+
+build() {
+  cd $srcdir/aspell6-ru-$pkgver-1
+  ./configure
+  make
+}
+
+package() {
+  cd $srcdir/aspell6-ru-$pkgver-1
+  make DESTDIR=$pkgdir install
+
+  install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-07-01 00:49:50 UTC (rev 215925)
+++ extra-x86_64/PKGBUILD   2014-07-01 00:50:58 UTC (rev 215926)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Simo Leone 
-# Contributor: Rouslan Solomakhin 
-
-pkgname=aspell-ru
-pkgver=0.99f7
-pkgrel=5
-pkgdesc="Russian dictionary for aspell"
-arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443
-url="http://aspell.net/";
-license=('custom')
-depends=('aspell')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-$pkgver-1.tar.bz2)
-md5sums=('c4c98eaa5e77ad3adccbc5c96cb57cb3')
-
-build() {
-  cd $srcdir/aspell6-ru-$pkgver-1
-  ./configure
-  make
-}
-
-package() {
-  cd $srcdir/aspell6-ru-$pkgver-1
-  make DESTDIR=$pkgdir install
-
-  install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: aspell-ru/repos/extra-x86_64/PKGBUILD (from rev 215925, 
aspell-ru/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-01 00:50:58 UTC (rev 215926)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone 
+# Contributor: Rouslan Solomakhin 
+
+pkgname=aspell-ru
+pkgver=0.99f7
+pkgrel=6
+pkgdesc="Russian dictionary for aspell"
+arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443
+url="http://aspell.net/";
+license=('custom')
+depends=('aspell')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-$pkgver-1.tar.bz2)
+md5sums=('c4c98eaa5e77ad3adccbc5c96cb57cb3')
+
+build() {
+  cd $srcdir/aspell6-ru-$pkgver-1
+  ./configure
+  make
+}
+
+package() {
+  cd $srcdir/aspell6-ru-$pkgver-1
+  make DESTDIR=$pkgdir install
+
+  install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 02:49:50
  Author: fyan
Revision: 215925

upgpkg: aspell-ru 0.99f7-6

mtree rebuild

Modified:
  aspell-ru/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 00:40:25 UTC (rev 215924)
+++ PKGBUILD2014-07-01 00:49:50 UTC (rev 215925)
@@ -5,7 +5,7 @@
 
 pkgname=aspell-ru
 pkgver=0.99f7
-pkgrel=5
+pkgrel=6
 pkgdesc="Russian dictionary for aspell"
 arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443
 url="http://aspell.net/";



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 02:40:25
  Author: fyan
Revision: 215924

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

Added:
  aspell-hu/repos/extra-i686/PKGBUILD
(from rev 215923, aspell-hu/trunk/PKGBUILD)
  aspell-hu/repos/extra-x86_64/PKGBUILD
(from rev 215923, aspell-hu/trunk/PKGBUILD)
Deleted:
  aspell-hu/repos/extra-i686/PKGBUILD
  aspell-hu/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-01 00:39:17 UTC (rev 215923)
+++ extra-i686/PKGBUILD 2014-07-01 00:40:25 UTC (rev 215924)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: György Balló 
-
-pkgname=aspell-hu
-pkgver=0.99.4.2
-pkgrel=3
-pkgdesc="Hungarian spellcheck dictionary for aspell"
-arch=('i686' 'x86_64')
-url="http://aspell.net/";
-license=('GPL')
-depends=('aspell')
-source=("ftp://ftp.gnu.org/gnu/aspell/dict/hu/aspell6-hu-${pkgver}-0.tar.bz2";)
-md5sums=('4f4e1e98019a89d0ebf43ec59ae68254')
-
-build() {
-  cd "${srcdir}/aspell6-hu-${pkgver}-0"
-
-  ./configure
-  make
-}
-
-package() {
-  cd "${srcdir}/aspell6-hu-${pkgver}-0"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: aspell-hu/repos/extra-i686/PKGBUILD (from rev 215923, 
aspell-hu/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-01 00:40:25 UTC (rev 215924)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:
+# Contributor: György Balló 
+
+pkgname=aspell-hu
+pkgver=0.99.4.2
+pkgrel=4
+pkgdesc="Hungarian spellcheck dictionary for aspell"
+arch=('i686' 'x86_64')
+url="http://aspell.net/";
+license=('GPL')
+depends=('aspell')
+source=("ftp://ftp.gnu.org/gnu/aspell/dict/hu/aspell6-hu-${pkgver}-0.tar.bz2";)
+md5sums=('4f4e1e98019a89d0ebf43ec59ae68254')
+
+build() {
+  cd "${srcdir}/aspell6-hu-${pkgver}-0"
+
+  ./configure
+  make
+}
+
+package() {
+  cd "${srcdir}/aspell6-hu-${pkgver}-0"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-07-01 00:39:17 UTC (rev 215923)
+++ extra-x86_64/PKGBUILD   2014-07-01 00:40:25 UTC (rev 215924)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: György Balló 
-
-pkgname=aspell-hu
-pkgver=0.99.4.2
-pkgrel=3
-pkgdesc="Hungarian spellcheck dictionary for aspell"
-arch=('i686' 'x86_64')
-url="http://aspell.net/";
-license=('GPL')
-depends=('aspell')
-source=("ftp://ftp.gnu.org/gnu/aspell/dict/hu/aspell6-hu-${pkgver}-0.tar.bz2";)
-md5sums=('4f4e1e98019a89d0ebf43ec59ae68254')
-
-build() {
-  cd "${srcdir}/aspell6-hu-${pkgver}-0"
-
-  ./configure
-  make
-}
-
-package() {
-  cd "${srcdir}/aspell6-hu-${pkgver}-0"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: aspell-hu/repos/extra-x86_64/PKGBUILD (from rev 215923, 
aspell-hu/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-01 00:40:25 UTC (rev 215924)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:
+# Contributor: György Balló 
+
+pkgname=aspell-hu
+pkgver=0.99.4.2
+pkgrel=4
+pkgdesc="Hungarian spellcheck dictionary for aspell"
+arch=('i686' 'x86_64')
+url="http://aspell.net/";
+license=('GPL')
+depends=('aspell')
+source=("ftp://ftp.gnu.org/gnu/aspell/dict/hu/aspell6-hu-${pkgver}-0.tar.bz2";)
+md5sums=('4f4e1e98019a89d0ebf43ec59ae68254')
+
+build() {
+  cd "${srcdir}/aspell6-hu-${pkgver}-0"
+
+  ./configure
+  make
+}
+
+package() {
+  cd "${srcdir}/aspell6-hu-${pkgver}-0"
+
+  make DESTDIR="${pkgdir}" install
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 02:39:17
  Author: fyan
Revision: 215923

upgpkg: aspell-hu 0.99.4.2-4

mtree rebuild

Modified:
  aspell-hu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 00:39:01 UTC (rev 215922)
+++ PKGBUILD2014-07-01 00:39:17 UTC (rev 215923)
@@ -4,7 +4,7 @@
 
 pkgname=aspell-hu
 pkgver=0.99.4.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Hungarian spellcheck dictionary for aspell"
 arch=('i686' 'x86_64')
 url="http://aspell.net/";



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 02:39:01
  Author: fyan
Revision: 215922

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

Added:
  aspell-fr/repos/extra-i686/PKGBUILD
(from rev 215921, aspell-fr/trunk/PKGBUILD)
  aspell-fr/repos/extra-x86_64/PKGBUILD
(from rev 215921, aspell-fr/trunk/PKGBUILD)
Deleted:
  aspell-fr/repos/extra-i686/PKGBUILD
  aspell-fr/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-01 00:37:53 UTC (rev 215921)
+++ extra-i686/PKGBUILD 2014-07-01 00:39:01 UTC (rev 215922)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Simo Leone 
-# Contributor: Eric Johnson 
-
-pkgname=aspell-fr
-pkgver=0.50.3
-pkgrel=6
-pkgdesc="French dictionary for aspell"
-arch=('i686' 'x86_64')
-url="http://aspell.net/";
-license=('GPL')
-depends=('aspell')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/fr/$pkgname-0.50-3.tar.bz2)
-md5sums=('53a2d05c4e8f7fabd3cefe24db977be7')
-
-build() {
-  cd $srcdir/$pkgname-0.50-3
-  ./configure
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-0.50-3
-  make DESTDIR=$pkgdir install
-}

Copied: aspell-fr/repos/extra-i686/PKGBUILD (from rev 215921, 
aspell-fr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-01 00:39:01 UTC (rev 215922)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone 
+# Contributor: Eric Johnson 
+
+pkgname=aspell-fr
+pkgver=0.50.3
+pkgrel=7
+pkgdesc="French dictionary for aspell"
+arch=('i686' 'x86_64')
+url="http://aspell.net/";
+license=('GPL')
+depends=('aspell')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/fr/$pkgname-0.50-3.tar.bz2)
+md5sums=('53a2d05c4e8f7fabd3cefe24db977be7')
+
+build() {
+  cd $srcdir/$pkgname-0.50-3
+  ./configure
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-0.50-3
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-07-01 00:37:53 UTC (rev 215921)
+++ extra-x86_64/PKGBUILD   2014-07-01 00:39:01 UTC (rev 215922)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Simo Leone 
-# Contributor: Eric Johnson 
-
-pkgname=aspell-fr
-pkgver=0.50.3
-pkgrel=6
-pkgdesc="French dictionary for aspell"
-arch=('i686' 'x86_64')
-url="http://aspell.net/";
-license=('GPL')
-depends=('aspell')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/fr/$pkgname-0.50-3.tar.bz2)
-md5sums=('53a2d05c4e8f7fabd3cefe24db977be7')
-
-build() {
-  cd $srcdir/$pkgname-0.50-3
-  ./configure
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-0.50-3
-  make DESTDIR=$pkgdir install
-}

Copied: aspell-fr/repos/extra-x86_64/PKGBUILD (from rev 215921, 
aspell-fr/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-01 00:39:01 UTC (rev 215922)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Simo Leone 
+# Contributor: Eric Johnson 
+
+pkgname=aspell-fr
+pkgver=0.50.3
+pkgrel=7
+pkgdesc="French dictionary for aspell"
+arch=('i686' 'x86_64')
+url="http://aspell.net/";
+license=('GPL')
+depends=('aspell')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/fr/$pkgname-0.50-3.tar.bz2)
+md5sums=('53a2d05c4e8f7fabd3cefe24db977be7')
+
+build() {
+  cd $srcdir/$pkgname-0.50-3
+  ./configure
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-0.50-3
+  make DESTDIR=$pkgdir install
+}



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

2014-06-30 Thread Felix Yan
Date: Tuesday, July 1, 2014 @ 02:37:53
  Author: fyan
Revision: 215921

upgpkg: aspell-fr 0.50.3-7

mtree rebuild

Modified:
  aspell-fr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 00:15:10 UTC (rev 215920)
+++ PKGBUILD2014-07-01 00:37:53 UTC (rev 215921)
@@ -5,7 +5,7 @@
 
 pkgname=aspell-fr
 pkgver=0.50.3
-pkgrel=6
+pkgrel=7
 pkgdesc="French dictionary for aspell"
 arch=('i686' 'x86_64')
 url="http://aspell.net/";



[arch-commits] Commit in ttf-cheapskate/repos/extra-any (4 files)

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 02:15:10
  Author: eric
Revision: 215920

archrelease: copy trunk to extra-any

Added:
  ttf-cheapskate/repos/extra-any/PKGBUILD
(from rev 215919, ttf-cheapskate/trunk/PKGBUILD)
  ttf-cheapskate/repos/extra-any/ttf.install
(from rev 215919, ttf-cheapskate/trunk/ttf.install)
Deleted:
  ttf-cheapskate/repos/extra-any/PKGBUILD
  ttf-cheapskate/repos/extra-any/ttf.install

-+
 PKGBUILD|   46 +++---
 ttf.install |   30 +++---
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 00:13:54 UTC (rev 215919)
+++ PKGBUILD2014-07-01 00:15:10 UTC (rev 215920)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=ttf-cheapskate
-pkgver=2.0
-pkgrel=8
-pkgdesc="TTFonts collection from dustimo.com"
-arch=('any')
-url="http://dustismo.com/";
-license=('GPL')
-depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 
'fontconfig')
-install=ttf.install
-source=(ftp://ftp.archlinux.org/other/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
-md5sums=('cb130e89d7cf0723550ccb432de3d0ef')
-
-package() {
-  cd "${srcdir}/ttf-dustin-20030517"
-  for file in *.zip; do
-bsdtar -xf $file
-  done
-  install -d "${pkgdir}/usr/share/fonts/TTF"
-  install -m644 *.ttf "${pkgdir}/usr/share/fonts/TTF/"
-}

Copied: ttf-cheapskate/repos/extra-any/PKGBUILD (from rev 215919, 
ttf-cheapskate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 00:15:10 UTC (rev 215920)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=ttf-cheapskate
+pkgver=2.0
+pkgrel=9
+pkgdesc="TTFonts collection from dustimo.com"
+arch=('any')
+url="http://dustismo.com/";
+license=('GPL')
+depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 
'fontconfig')
+install=ttf.install
+source=(ftp://ftp.archlinux.org/other/packages/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
+sha1sums=('66fe8772adf3e3390706c2a34380e380d5533677')
+
+package() {
+  cd ttf-dustin-20030517
+  for file in *.zip; do
+bsdtar -xf $file
+  done
+  install -d "${pkgdir}/usr/share/fonts/TTF"
+  install -m644 *.ttf "${pkgdir}/usr/share/fonts/TTF/"
+}

Deleted: ttf.install
===
--- ttf.install 2014-07-01 00:13:54 UTC (rev 215919)
+++ ttf.install 2014-07-01 00:15:10 UTC (rev 215920)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache -f > /dev/null
-  mkfontscale usr/share/fonts/TTF
-  mkfontdir usr/share/fonts/TTF
-  echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: ttf-cheapskate/repos/extra-any/ttf.install (from rev 215919, 
ttf-cheapskate/trunk/ttf.install)
===
--- ttf.install (rev 0)
+++ ttf.install 2014-07-01 00:15:10 UTC (rev 215920)
@@ -0,0 +1,15 @@
+post_install() {
+  echo -n "Updating font cache... "
+  fc-cache -f > /dev/null
+  mkfontscale usr/share/fonts/TTF
+  mkfontdir usr/share/fonts/TTF
+  echo "done."
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



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

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 02:13:54
  Author: eric
Revision: 215919

upgpkg: ttf-cheapskate 2.0-9

Rebuild to add mtree file

Modified:
  ttf-cheapskate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 00:03:58 UTC (rev 215918)
+++ PKGBUILD2014-07-01 00:13:54 UTC (rev 215919)
@@ -3,7 +3,7 @@
 
 pkgname=ttf-cheapskate
 pkgver=2.0
-pkgrel=8
+pkgrel=9
 pkgdesc="TTFonts collection from dustimo.com"
 arch=('any')
 url="http://dustismo.com/";
@@ -10,11 +10,11 @@
 license=('GPL')
 depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 
'fontconfig')
 install=ttf.install
-source=(ftp://ftp.archlinux.org/other/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
-md5sums=('cb130e89d7cf0723550ccb432de3d0ef')
+source=(ftp://ftp.archlinux.org/other/packages/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
+sha1sums=('66fe8772adf3e3390706c2a34380e380d5533677')
 
 package() {
-  cd "${srcdir}/ttf-dustin-20030517"
+  cd ttf-dustin-20030517
   for file in *.zip; do
 bsdtar -xf $file
   done



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

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 02:03:58
  Author: eric
Revision: 215918

archrelease: copy trunk to extra-any

Added:
  intltool/repos/extra-any/PKGBUILD
(from rev 215917, intltool/trunk/PKGBUILD)
Deleted:
  intltool/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-01 00:02:19 UTC (rev 215917)
+++ PKGBUILD2014-07-01 00:03:58 UTC (rev 215918)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=intltool
-pkgver=0.50.2
-pkgrel=1
-pkgdesc="The internationalization tool collection"
-arch=('any')
-url="https://edge.launchpad.net/intltool";
-license=('GPL')
-depends=('perl-xml-parser')
-source=(http://edge.launchpad.net/intltool/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha1sums=('7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad'
-  '85c71e9651df41fc330c5f171fdfe1bf11e44f65')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 doc/I18N-HOWTO 
"${pkgdir}/usr/share/doc/${pkgname}/I18N-HOWTO"
-}

Copied: intltool/repos/extra-any/PKGBUILD (from rev 215917, 
intltool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-01 00:03:58 UTC (rev 215918)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=intltool
+pkgver=0.50.2
+pkgrel=2
+pkgdesc="The internationalization tool collection"
+arch=('any')
+url="https://edge.launchpad.net/intltool";
+license=('GPL')
+depends=('perl-xml-parser')
+source=(http://launchpad.net/intltool/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha1sums=('7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad'
+  '85c71e9651df41fc330c5f171fdfe1bf11e44f65')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 doc/I18N-HOWTO 
"${pkgdir}/usr/share/doc/${pkgname}/I18N-HOWTO"
+}



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

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 02:02:19
  Author: eric
Revision: 215917

upgpkg: intltool 0.50.2-2

Rebuild to add mtree file, Fix source url

Modified:
  intltool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 23:55:24 UTC (rev 215916)
+++ PKGBUILD2014-07-01 00:02:19 UTC (rev 215917)
@@ -3,29 +3,29 @@
 
 pkgname=intltool
 pkgver=0.50.2
-pkgrel=1
+pkgrel=2
 pkgdesc="The internationalization tool collection"
 arch=('any')
 url="https://edge.launchpad.net/intltool";
 license=('GPL')
 depends=('perl-xml-parser')
-source=(http://edge.launchpad.net/intltool/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
+source=(http://launchpad.net/intltool/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.asc})
 sha1sums=('7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad'
   '85c71e9651df41fc330c5f171fdfe1bf11e44f65')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -D -m644 doc/I18N-HOWTO 
"${pkgdir}/usr/share/doc/${pkgname}/I18N-HOWTO"
 }



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

2014-06-30 Thread Thomas Dziedzic
Date: Tuesday, July 1, 2014 @ 01:55:24
  Author: td123
Revision: 215916

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

Added:
  cabal-install/repos/testing-i686/
  cabal-install/repos/testing-i686/PKGBUILD
(from rev 215915, cabal-install/trunk/PKGBUILD)
  cabal-install/repos/testing-x86_64/
  cabal-install/repos/testing-x86_64/PKGBUILD
(from rev 215915, cabal-install/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: cabal-install/repos/testing-i686/PKGBUILD (from rev 215915, 
cabal-install/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-06-30 23:55:24 UTC (rev 215916)
@@ -0,0 +1,39 @@
+# Maintainer: Thomas Dziedzic 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=1.20.0.3
+pkgrel=1
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="http://hackage.haskell.org/package/cabal-install";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('gmp' 'zlib')
+source=("http://hackage.haskell.org/packages/archive/cabal-install/${pkgver}/cabal-install-${pkgver}.tar.gz";)
+md5sums=('e1b382f8b4eae3762622cefc6d91d5f3')
+
+build() {
+  mkdir ${srcdir}/build
+  export PREFIX="${srcdir}/build"
+
+  cd cabal-install-${pkgver}
+
+  sh bootstrap.sh --user
+}
+
+package() {
+  install -D -m755 ${srcdir}/build/bin/cabal ${pkgdir}/usr/bin/cabal
+
+  cd cabal-install-${pkgver}
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 LICENSE \
+${pkgdir}/usr/share/licenses/${pkgname}
+
+  # add bash completion
+  install -d ${pkgdir}/usr/share/bash-completion/completions
+  install -m644 bash-completion/cabal \
+${pkgdir}/usr/share/bash-completion/completions
+}

Copied: cabal-install/repos/testing-x86_64/PKGBUILD (from rev 215915, 
cabal-install/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-06-30 23:55:24 UTC (rev 215916)
@@ -0,0 +1,39 @@
+# Maintainer: Thomas Dziedzic 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=1.20.0.3
+pkgrel=1
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="http://hackage.haskell.org/package/cabal-install";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('gmp' 'zlib')
+source=("http://hackage.haskell.org/packages/archive/cabal-install/${pkgver}/cabal-install-${pkgver}.tar.gz";)
+md5sums=('e1b382f8b4eae3762622cefc6d91d5f3')
+
+build() {
+  mkdir ${srcdir}/build
+  export PREFIX="${srcdir}/build"
+
+  cd cabal-install-${pkgver}
+
+  sh bootstrap.sh --user
+}
+
+package() {
+  install -D -m755 ${srcdir}/build/bin/cabal ${pkgdir}/usr/bin/cabal
+
+  cd cabal-install-${pkgver}
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 LICENSE \
+${pkgdir}/usr/share/licenses/${pkgname}
+
+  # add bash completion
+  install -d ${pkgdir}/usr/share/bash-completion/completions
+  install -m644 bash-completion/cabal \
+${pkgdir}/usr/share/bash-completion/completions
+}



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

2014-06-30 Thread Thomas Dziedzic
Date: Tuesday, July 1, 2014 @ 01:54:49
  Author: td123
Revision: 215915

upgpkg: cabal-install 1.20.0.3-1

bump

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 23:18:57 UTC (rev 215914)
+++ PKGBUILD2014-06-30 23:54:49 UTC (rev 215915)
@@ -3,7 +3,7 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=cabal-install
-pkgver=1.20.0.2
+pkgver=1.20.0.3
 pkgrel=1
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="http://hackage.haskell.org/package/cabal-install";
@@ -12,7 +12,7 @@
 makedepends=('ghc')
 depends=('gmp' 'zlib')
 
source=("http://hackage.haskell.org/packages/archive/cabal-install/${pkgver}/cabal-install-${pkgver}.tar.gz";)
-md5sums=('bda72a81c22bde668244fb3a50a81f7f')
+md5sums=('e1b382f8b4eae3762622cefc6d91d5f3')
 
 build() {
   mkdir ${srcdir}/build



[arch-commits] Commit in artwiz-fonts/repos/extra-any (4 files)

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 01:18:57
  Author: eric
Revision: 215914

archrelease: copy trunk to extra-any

Added:
  artwiz-fonts/repos/extra-any/PKGBUILD
(from rev 215913, artwiz-fonts/trunk/PKGBUILD)
  artwiz-fonts/repos/extra-any/artwiz-fonts.install
(from rev 215913, artwiz-fonts/trunk/artwiz-fonts.install)
Deleted:
  artwiz-fonts/repos/extra-any/PKGBUILD
  artwiz-fonts/repos/extra-any/artwiz-fonts.install

--+
 PKGBUILD |   53 -
 artwiz-fonts.install |   30 +--
 2 files changed, 41 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-30 23:17:41 UTC (rev 215913)
+++ PKGBUILD2014-06-30 23:18:57 UTC (rev 215914)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=artwiz-fonts
-pkgver=1.3
-pkgrel=7
-pkgdesc="This is set of (improved) artwiz fonts"
-arch=('any')
-url="http://artwizaleczapka.sourceforge.net/";
-license=('GPL2')
-depends=('xorg-fonts-encodings' 'xorg-font-utils' 'fontconfig')
-install=artwiz-fonts.install
-source=(http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-en-${pkgver}.tar.bz2
-   
http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-de-${pkgver}.tar.bz2
-   
http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-se-${pkgver}.tar.bz2)
-md5sums=('6c6c704f2f08f9d6308d366423dfa90e'
- 'c5a9d0ad3d1b99809c77d84139949993'
- 'dfc861c4f54e73eea3fd82d60be26dbc')
-
-package() {
-  cd "${srcdir}"
-  install -d "${pkgdir}/usr/share/fonts/artwiz-fonts"
-  for lang in en de se; do
- install -p -m 0644 artwiz-aleczapka-$lang-${pkgver}/*.pcf 
"${pkgdir}/usr/share/fonts/artwiz-fonts"
- cat artwiz-aleczapka-$lang-${pkgver}/fonts.alias >> 
"${pkgdir}/usr/share/fonts/artwiz-fonts/fonts.alias"
-  done
-}

Copied: artwiz-fonts/repos/extra-any/PKGBUILD (from rev 215913, 
artwiz-fonts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-30 23:18:57 UTC (rev 215914)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=artwiz-fonts
+pkgver=1.3
+pkgrel=8
+pkgdesc="This is set of (improved) artwiz fonts"
+arch=('any')
+url="http://artwizaleczapka.sourceforge.net/";
+license=('GPL2')
+depends=('xorg-fonts-encodings' 'xorg-font-utils' 'fontconfig')
+install=artwiz-fonts.install
+source=(http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-en-${pkgver}.tar.bz2
+   
http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-de-${pkgver}.tar.bz2
+   
http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-se-${pkgver}.tar.bz2)
+sha1sums=('81e711b5f00816c57e205c9e60f69237c709679d'
+  'ab866d5c248642065c80acfb76c6e3d779c59599'
+  '6bc44a55c97963218164dd256212f7f824a0c1df')
+
+package() {
+  install -d "${pkgdir}/usr/share/fonts/artwiz-fonts"
+  for lang in en de se; do
+ install -p -m 0644 artwiz-aleczapka-$lang-${pkgver}/*.pcf 
"${pkgdir}/usr/share/fonts/artwiz-fonts"
+ cat artwiz-aleczapka-$lang-${pkgver}/fonts.alias >> 
"${pkgdir}/usr/share/fonts/artwiz-fonts/fonts.alias"
+  done
+}

Deleted: artwiz-fonts.install
===
--- artwiz-fonts.install2014-06-30 23:17:41 UTC (rev 215913)
+++ artwiz-fonts.install2014-06-30 23:18:57 UTC (rev 215914)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache usr/share/fonts/artwiz-fonts
-  mkfontscale usr/share/fonts/artwiz-fonts
-  mkfontdir usr/share/fonts/artwiz-fonts
-  echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: artwiz-fonts/repos/extra-any/artwiz-fonts.install (from rev 215913, 
artwiz-fonts/trunk/artwiz-fonts.install)
===
--- artwiz-fonts.install(rev 0)
+++ artwiz-fonts.install2014-06-30 23:18:57 UTC (rev 215914)
@@ -0,0 +1,15 @@
+post_install() {
+  echo -n "Updating font cache... "
+  fc-cache usr/share/fonts/artwiz-fonts
+  mkfontscale usr/share/fonts/artwiz-fonts
+  mkfontdir usr/share/fonts/artwiz-fonts
+  echo "done."
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



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

2014-06-30 Thread Eric Bélanger
Date: Tuesday, July 1, 2014 @ 01:17:41
  Author: eric
Revision: 215913

upgpkg: artwiz-fonts 1.3-8

Rebuild to add mtree file

Modified:
  artwiz-fonts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 21:31:58 UTC (rev 215912)
+++ PKGBUILD2014-06-30 23:17:41 UTC (rev 215913)
@@ -3,7 +3,7 @@
 
 pkgname=artwiz-fonts
 pkgver=1.3
-pkgrel=7
+pkgrel=8
 pkgdesc="This is set of (improved) artwiz fonts"
 arch=('any')
 url="http://artwizaleczapka.sourceforge.net/";
@@ -13,12 +13,11 @@
 
source=(http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-en-${pkgver}.tar.bz2

http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-de-${pkgver}.tar.bz2

http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-se-${pkgver}.tar.bz2)
-md5sums=('6c6c704f2f08f9d6308d366423dfa90e'
- 'c5a9d0ad3d1b99809c77d84139949993'
- 'dfc861c4f54e73eea3fd82d60be26dbc')
+sha1sums=('81e711b5f00816c57e205c9e60f69237c709679d'
+  'ab866d5c248642065c80acfb76c6e3d779c59599'
+  '6bc44a55c97963218164dd256212f7f824a0c1df')
 
 package() {
-  cd "${srcdir}"
   install -d "${pkgdir}/usr/share/fonts/artwiz-fonts"
   for lang in en de se; do
  install -p -m 0644 artwiz-aleczapka-$lang-${pkgver}/*.pcf 
"${pkgdir}/usr/share/fonts/artwiz-fonts"



[arch-commits] Commit in archlinux-themes-slim/repos/extra-any (PKGBUILD PKGBUILD)

2014-06-30 Thread Eric Bélanger
Date: Monday, June 30, 2014 @ 23:31:58
  Author: eric
Revision: 215912

archrelease: copy trunk to extra-any

Added:
  archlinux-themes-slim/repos/extra-any/PKGBUILD
(from rev 215911, archlinux-themes-slim/trunk/PKGBUILD)
Deleted:
  archlinux-themes-slim/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-30 21:31:06 UTC (rev 215911)
+++ PKGBUILD2014-06-30 21:31:58 UTC (rev 215912)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Thayer Williams 
-# Contributor: Thayer Williams 
-
-pkgname=archlinux-themes-slim
-pkgver=1.2
-pkgrel=3
-pkgdesc="Arch Linux branded themes for the SLiM login manager"
-arch=('any')
-url="http://www.archlinux.org/";
-license=('CCPL:cc-by-sa')
-optdepends=('slim: login manager providing theme support')
-source=("ftp://ftp.archlinux.org/other/artwork/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('f9b7c231ec26c93fc89ecadfa2d0e250')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  mkdir -p $pkgdir/usr/share/slim/themes
-  cp -a archlinux-*/ $pkgdir/usr/share/slim/themes
-}

Copied: archlinux-themes-slim/repos/extra-any/PKGBUILD (from rev 215911, 
archlinux-themes-slim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-30 21:31:58 UTC (rev 215912)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Contributor: Thayer Williams 
+
+pkgname=archlinux-themes-slim
+pkgver=1.2
+pkgrel=4
+pkgdesc="Arch Linux branded themes for the SLiM login manager"
+arch=('any')
+url="http://www.archlinux.org/";
+license=('CCPL:cc-by-sa')
+optdepends=('slim: login manager providing theme support')
+source=(ftp://ftp.archlinux.org/other/packages/artwork/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f9b7c231ec26c93fc89ecadfa2d0e250')
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d "${pkgdir}/usr/share/slim/themes"
+  cp -a archlinux-*/ "${pkgdir}/usr/share/slim/themes"
+}



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

2014-06-30 Thread Dan McGee
Date: Monday, June 30, 2014 @ 23:31:06
  Author: dan
Revision: 215911

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

Added:
  pgbouncer/repos/extra-i686/PKGBUILD
(from rev 215910, pgbouncer/trunk/PKGBUILD)
  pgbouncer/repos/extra-i686/pgbouncer.ini
(from rev 215910, pgbouncer/trunk/pgbouncer.ini)
  pgbouncer/repos/extra-i686/pgbouncer.install
(from rev 215910, pgbouncer/trunk/pgbouncer.install)
  pgbouncer/repos/extra-i686/pgbouncer.logrotate
(from rev 215910, pgbouncer/trunk/pgbouncer.logrotate)
  pgbouncer/repos/extra-i686/pgbouncer.service
(from rev 215910, pgbouncer/trunk/pgbouncer.service)
  pgbouncer/repos/extra-i686/pgbouncer.tmpfiles.conf
(from rev 215910, pgbouncer/trunk/pgbouncer.tmpfiles.conf)
  pgbouncer/repos/extra-x86_64/PKGBUILD
(from rev 215910, pgbouncer/trunk/PKGBUILD)
  pgbouncer/repos/extra-x86_64/pgbouncer.ini
(from rev 215910, pgbouncer/trunk/pgbouncer.ini)
  pgbouncer/repos/extra-x86_64/pgbouncer.install
(from rev 215910, pgbouncer/trunk/pgbouncer.install)
  pgbouncer/repos/extra-x86_64/pgbouncer.logrotate
(from rev 215910, pgbouncer/trunk/pgbouncer.logrotate)
  pgbouncer/repos/extra-x86_64/pgbouncer.service
(from rev 215910, pgbouncer/trunk/pgbouncer.service)
  pgbouncer/repos/extra-x86_64/pgbouncer.tmpfiles.conf
(from rev 215910, pgbouncer/trunk/pgbouncer.tmpfiles.conf)
Deleted:
  pgbouncer/repos/extra-i686/PKGBUILD
  pgbouncer/repos/extra-i686/pgbouncer.ini
  pgbouncer/repos/extra-i686/pgbouncer.install
  pgbouncer/repos/extra-i686/pgbouncer.logrotate
  pgbouncer/repos/extra-i686/pgbouncer.service
  pgbouncer/repos/extra-i686/pgbouncer.tmpfiles.conf
  pgbouncer/repos/extra-x86_64/PKGBUILD
  pgbouncer/repos/extra-x86_64/pgbouncer.ini
  pgbouncer/repos/extra-x86_64/pgbouncer.install
  pgbouncer/repos/extra-x86_64/pgbouncer.logrotate
  pgbouncer/repos/extra-x86_64/pgbouncer.service
  pgbouncer/repos/extra-x86_64/pgbouncer.tmpfiles.conf

--+
 /PKGBUILD|   84 ++
 /pgbouncer.ini   |  104 +
 /pgbouncer.install   |   50 +++
 /pgbouncer.logrotate |   16 +
 /pgbouncer.service   |   22 ++
 /pgbouncer.tmpfiles.conf |2 
 extra-i686/PKGBUILD  |   42 -
 extra-i686/pgbouncer.ini |   52 
 extra-i686/pgbouncer.install |   25 ---
 extra-i686/pgbouncer.logrotate   |8 --
 extra-i686/pgbouncer.service |   11 ---
 extra-i686/pgbouncer.tmpfiles.conf   |1 
 extra-x86_64/PKGBUILD|   42 -
 extra-x86_64/pgbouncer.ini   |   52 
 extra-x86_64/pgbouncer.install   |   25 ---
 extra-x86_64/pgbouncer.logrotate |8 --
 extra-x86_64/pgbouncer.service   |   11 ---
 extra-x86_64/pgbouncer.tmpfiles.conf |1 
 18 files changed, 278 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-30 21:30:48 UTC (rev 215910)
+++ extra-i686/PKGBUILD 2014-06-30 21:31:06 UTC (rev 215911)
@@ -1,42 +0,0 @@
-# Maintainer: Dan McGee 
-
-pkgname=pgbouncer
-pkgver=1.5.4
-pkgrel=5
-pkgdesc="A lightweight connection pooler for PostgreSQL"
-arch=('i686' 'x86_64')
-url="http://pgfoundry.org/projects/pgbouncer";
-license=('BSD')
-depends=('libevent>=2.0' 'postgresql')
-makedepends=('asciidoc' 'xmlto')
-backup=('etc/pgbouncer/pgbouncer.ini' 'etc/logrotate.d/pgbouncer')
-install=$pkgname.install
-source=("http://ftp.postgresql.org/pub/projects/pgFoundry/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";
-pgbouncer.ini
-pgbouncer.logrotate
-pgbouncer.service
-pgbouncer.tmpfiles.conf)
-md5sums=('9ffaf2e6232e18e676651429813732df'
- '810813b9ef8891be382be9ffdd425edc'
- '6c65fe91821591bde0b5bcf70f23e959'
- 'eede238f5ff3709dbfeef6dad3fbefc7'
- '472659f4c5de2b59a420f5ca42327ec1')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  install -D -m644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -D -m644 ../pgbouncer.ini "$pkgdir/etc/pgbouncer/pgbouncer.ini"
-  install -D -m644 ../pgbouncer.logrotate "$pkgdir/etc/logrotate.d/pgbouncer"
-  install -D -m644 ../pgbouncer.service 
"$pkgdir/usr/lib/systemd/system/pgbouncer.service"
-  install -D -m644 ../pgbouncer.tmpfiles.conf 
"$pkgdir/usr/lib/tmpfiles.d/pgbouncer.conf"
-  mkdir -p "$pkgdir/var/log/pgbouncer"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pgbouncer/repos/extra-i686/PKGBUILD (from rev 215910, 
pgbouncer/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+

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

2014-06-30 Thread Dan McGee
Date: Monday, June 30, 2014 @ 23:30:48
  Author: dan
Revision: 215910

upgpkg: pgbouncer 1.5.4-6

Modified:
  pgbouncer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 21:29:59 UTC (rev 215909)
+++ PKGBUILD2014-06-30 21:30:48 UTC (rev 215910)
@@ -2,7 +2,7 @@
 
 pkgname=pgbouncer
 pkgver=1.5.4
-pkgrel=5
+pkgrel=6
 pkgdesc="A lightweight connection pooler for PostgreSQL"
 arch=('i686' 'x86_64')
 url="http://pgfoundry.org/projects/pgbouncer";



[arch-commits] Commit in archlinux-themes-slim/trunk (PKGBUILD)

2014-06-30 Thread Eric Bélanger
Date: Monday, June 30, 2014 @ 23:29:59
  Author: eric
Revision: 215909

upgpkg: archlinux-themes-slim 1.2-4

Rebuild to add mtree file

Modified:
  archlinux-themes-slim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 20:13:42 UTC (rev 215908)
+++ PKGBUILD2014-06-30 21:29:59 UTC (rev 215909)
@@ -1,20 +1,20 @@
 # $Id$
-# Maintainer: Thayer Williams 
+# Maintainer: Eric Bélanger 
 # Contributor: Thayer Williams 
 
 pkgname=archlinux-themes-slim
 pkgver=1.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Arch Linux branded themes for the SLiM login manager"
 arch=('any')
 url="http://www.archlinux.org/";
 license=('CCPL:cc-by-sa')
 optdepends=('slim: login manager providing theme support')
-source=("ftp://ftp.archlinux.org/other/artwork/${pkgname}-${pkgver}.tar.gz";)
+source=(ftp://ftp.archlinux.org/other/packages/artwork/${pkgname}-${pkgver}.tar.gz)
 md5sums=('f9b7c231ec26c93fc89ecadfa2d0e250')
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-  mkdir -p $pkgdir/usr/share/slim/themes
-  cp -a archlinux-*/ $pkgdir/usr/share/slim/themes
+  cd ${pkgname}-${pkgver}
+  install -d "${pkgdir}/usr/share/slim/themes"
+  cp -a archlinux-*/ "${pkgdir}/usr/share/slim/themes"
 }



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

2014-06-30 Thread Daniel Wallace
Date: Monday, June 30, 2014 @ 22:25:23
  Author: dwallace
Revision: 113819

upgpkg: notmuch 0.18.1-1

upgpkg: notmuch 0.18.1-1

Added:
  notmuch/trunk/notmuch.install
Modified:
  notmuch/trunk/PKGBUILD

-+
 PKGBUILD|   25 +
 notmuch.install |   21 +
 2 files changed, 38 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:54:25 UTC (rev 113818)
+++ PKGBUILD2014-06-30 20:25:23 UTC (rev 113819)
@@ -6,15 +6,15 @@
 
 pkgbase=notmuch
 pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
-pkgver=0.18
+pkgver=0.18.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://notmuchmail.org/";
 license=('GPL3')
-makedepends=('python2' 'python' 'emacs' 'gnupg' 'ruby' 'pkgconfig' 
'xapian-core' 'gmime' 'talloc')
+makedepends=('python2' 'python' 'python-sphinx' 'emacs' 'gnupg' 'ruby' 
'pkgconfig' 'xapian-core' 'gmime' 'talloc')
 options=(!distcc !makeflags)
 source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('f28f11af1acfb6d9adde2eec600bc27a')
+md5sums=('12150aefea58ed0922b48c9494f17ddd')
 
 prepare(){
 #cp -dpr --no-preserve=ownership "$srcdir/$pkgname-$pkgver" 
"$srcdir/$pkgname-runtime-$pkgver"
@@ -55,8 +55,9 @@
 pkgdesc="Runtime for notmuch and notmuch-mutt"
 depends=('xapian-core' 'gmime' 'talloc')
 cd "$srcdir/${pkgbase}-$pkgver"
-make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install
+make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 WITH_EMACS=0 install
install -Dm755 notmuch $pkgdir/usr/bin/notmuch
+rm -rf $pkgdir/usr/share
 }
 
 
@@ -63,8 +64,8 @@
 package_notmuch-vim(){
pkgdesc="Vim plugins for notmuch"
depends=('notmuch-runtime')
-mkdir -p "$pkgdir"/usr/share/vim/vimfiles/{plugin,syntax}
-make -C "$srcdir/$pkgbase-$pkgver/vim" 
prefix="$pkgdir/usr/share/vim/vimfiles" install
+install=notmuch.install
+make -C "$srcdir/$pkgbase-$pkgver/vim" DESTDIR="$pkgdir" 
prefix="/usr/share/vim/vimfiles" install
 }
 
 
@@ -78,8 +79,15 @@
 'gnupg: for email encryption')
 
 cd "$srcdir/${pkgname}-$pkgver"
+
+# Install emacs parts
+make DESTDIR="$pkgdir/" install-emacs
+
+# Install manpages
+make DESTDIR="$pkgdir" prefix="/usr" install-man
+
 # Install ruby bindings
-sed -i -e 's,/site_ruby,,g' bindings/ruby/Makefile
+sed -i 's:INSTALL = .*[^D]$:& -D:' bindings/ruby/Makefile
 make -C bindings/ruby exec_prefix=$pkgdir/usr prefix=/usr install
 
 # Install notmuch-deliver
@@ -91,6 +99,7 @@
 
 cd "$srcdir/${pkgname}-${pkgver}/bindings/python"
python setup.py install --prefix=/usr --root="$pkgdir"
+
 }
 
 package_notmuch-mutt(){
@@ -102,4 +111,4 @@
 install -Dm644 "contrib/$pkgname/${pkgname}.1" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
 
-#vim: set filetype=PKGBUILD sw=4 ts=4 et
+#vim: filetype=PKGBUILD sw=4 ts=4 et

Added: notmuch.install
===
--- notmuch.install (rev 0)
+++ notmuch.install 2014-06-30 20:25:23 UTC (rev 113819)
@@ -0,0 +1,21 @@
+update_tags() {
+echo -n "Updating vim help tags... "
+/usr/bin/vim --noplugins -u NONE -U NONE \
+--cmd ":helptags /usr/share/vim/vimfiles/doc" \
+--cmd ":q" > /dev/null 2>&1
+echo "done."
+}
+
+post_install() {
+update_tags
+echo
+echo '-> To run type "vim -c NotMuch"'
+}
+
+post_upgrade() {
+update_tags
+}
+
+post_remove() {
+update_tags
+}



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

2014-06-30 Thread Daniel Wallace
Date: Monday, June 30, 2014 @ 22:26:05
  Author: dwallace
Revision: 113820

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

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

--+
 /PKGBUILD|  228 +
 community-i686/PKGBUILD  |  105 -
 community-i686/notmuch.install   |   21 +++
 community-x86_64/PKGBUILD|  105 -
 community-x86_64/notmuch.install |   21 +++
 5 files changed, 270 insertions(+), 210 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-30 20:25:23 UTC (rev 113819)
+++ community-i686/PKGBUILD 2014-06-30 20:26:05 UTC (rev 113820)
@@ -1,105 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace 
-# Contributor: fauno 
-# Contributor: Olivier Ramonat 
-# Contributor: Richard Murri 
-
-pkgbase=notmuch
-pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
-pkgver=0.18
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://notmuchmail.org/";
-license=('GPL3')
-makedepends=('python2' 'python' 'emacs' 'gnupg' 'ruby' 'pkgconfig' 
'xapian-core' 'gmime' 'talloc')
-options=(!distcc !makeflags)
-source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('f28f11af1acfb6d9adde2eec600bc27a')
-
-prepare(){
-#cp -dpr --no-preserve=ownership "$srcdir/$pkgname-$pkgver" 
"$srcdir/$pkgname-runtime-$pkgver"
-cp -dpr --no-preserve=ownership 
"$srcdir/${pkgname}-$pkgver"/bindings/python{,2}
-
-find "$srcdir/${pkgname}-${pkgver}/bindings/python" -name '*.py' -exec sed 
-i -e '1s,python$,python3,' {} +
-find "$srcdir/${pkgname}-${pkgver}/bindings/python2" -name '*.py' -exec 
sed -i -e '1s,python$,python2,' {} +
-}
-build() {
-cd "$srcdir/${pkgname}-$pkgver"
-
-./configure --prefix=/usr --sysconfdir=/etc \
-   --includedir=/usr/include \
-   --without-zsh-completion
-
-make 
-( pushd "contrib/$pkgbase-deliver"
-export CPPFLAGS="-I ../../lib"
-./autogen.sh
-./configure --prefix=/usr --sysconfdir=/etc \
-   --includedir=/usr/include \
-LDFLAGS="-L$srcdir/$pkgname-$pkgver/lib" \
-CPPFLAGS="-I$srcdir/$pkgname-$pkgver/lib"
-make)
-make -C "contrib/${pkgbase}-mutt" "${pkgname}-mutt.1"
-
-cd bindings/ruby
-ruby extconf.rb --vendor
-
-   cd "$srcdir/${pkgname}-${pkgver}/bindings/python"
-   python setup.py build
-
-   cd "$srcdir/${pkgname}-${pkgver}/bindings/python2"
-   python2 setup.py build
-}
-
-package_notmuch-runtime(){
-pkgdesc="Runtime for notmuch and notmuch-mutt"
-depends=('xapian-core' 'gmime' 'talloc')
-cd "$srcdir/${pkgbase}-$pkgver"
-make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install
-   install -Dm755 notmuch $pkgdir/usr/bin/notmuch
-}
-
-
-package_notmuch-vim(){
-   pkgdesc="Vim plugins for notmuch"
-   depends=('notmuch-runtime')
-mkdir -p "$pkgdir"/usr/share/vim/vimfiles/{plugin,syntax}
-make -C "$srcdir/$pkgbase-$pkgver/vim" 
prefix="$pkgdir/usr/share/vim/vimfiles" install
-}
-
-
-package_notmuch(){
-pkgdesc="Notmuch is not much of an email program"
-depends=('notmuch-runtime')
-optdepends=('emacs: for using the emacs interface'
-'vim: for using the vim interface'
-'python2: for using the python2 bindings'
-'ruby: for using the ruby bindings'
-'gnupg: for email encryption')
-
-cd "$srcdir/${pkgname}-$pkgver"
-# Install ruby bindings
-sed -i -e 's,/site_ruby,,g' bindings/ruby/Makefile
-make -C bindings/ruby exec_prefix=$pkgdir/usr prefix=/usr install
-
-# Install notmuch-deliver
-make -C "contrib/${pkgbase}-deliver" DESTDIR="$pkgdir" install
-
-# Install python bindings
-cd "$srcdir/${pkgname}-${pkgver}/bindings/python2"
-   python2 setup.py install --prefix=/usr --root="$pkgdir"
-
-cd "$srcdir/${pkgname}-${pkgver}/bindings/python"
-   python setup.py install --prefix=/usr --root="$pkgdir"
-}
-
-package_notmuch-mutt(){
-pkgdesc="The mail indexer"
-depends=('notmuch-runtime' 'perl-mailtools' 'perl-mail-box' 
'perl-term-readline-gnu' 'perl-string-shellquote' 'perl-file-which')
-cd "$srcdir/$pkgbase-$pkgver"
-
-install -Dm755 "contrib/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
-install -Dm644 "contrib/$pkgname/${pkgname}.1" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-#vim: set filetype=PKGBUILD sw=4 ts=4 et

Cop

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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:54:25
  Author: heftig
Revision: 113818

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

Added:
  rubinius/repos/community-i686/PKGBUILD
(from rev 113817, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-i686/dirs.patch
(from rev 113817, rubinius/trunk/dirs.patch)
  rubinius/repos/community-i686/gemrc
(from rev 113817, rubinius/trunk/gemrc)
  rubinius/repos/community-x86_64/PKGBUILD
(from rev 113817, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
(from rev 113817, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
(from rev 113817, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-i686/PKGBUILD
  rubinius/repos/community-i686/dirs.patch
  rubinius/repos/community-i686/gemrc
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

-+
 /PKGBUILD   |  176 ++
 /dirs.patch |   42 ++
 /gemrc  |   10 ++
 community-i686/PKGBUILD |   88 -
 community-i686/dirs.patch   |   21 -
 community-i686/gemrc|5 -
 community-x86_64/PKGBUILD   |   88 -
 community-x86_64/dirs.patch |   21 -
 community-x86_64/gemrc  |5 -
 9 files changed, 228 insertions(+), 228 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-30 19:49:05 UTC (rev 113817)
+++ community-i686/PKGBUILD 2014-06-30 19:54:25 UTC (rev 113818)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=2.2.9
-pkgrel=2
-pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
-arch=(i686 x86_64)
-url="http://rubini.us";
-license=(custom)
-depends=(llvm-libs libffi openssl libyaml)
-makedepends=(llvm rubinius-ruby)
-options=(!emptydirs)
-source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
-sha256sums=('7b01a7f2508167e73b5273b4e55e6616fc7fd975e79c84c4d2e3ef83d849d2ce'
-'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
-
-prepare() {
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8"
-  cd $pkgbase-$pkgver
-
-  patch -Np1 -i ../dirs.patch
-
-  mkdir -p "$GEM_HOME"
-  gem install --no-user-install -N vendor/cache/bundler-*.gem
-
-  "$GEM_HOME/bin/bundle" install --local
-}
-
-build() {
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8"
-  cd $pkgbase-$pkgver
-
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---includedir=/usr/include/rubinius \
---appdir=/usr/lib/rubinius \
---gemsdir=/usr/lib/rubinius/gems \
---preserve-prefix \
---llvm-shared \
---without-rpath \
---bin-link bundle --bin-link bundler
-  rake build
-}
-
-check() {
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8"
-  cd $pkgbase-$pkgver
-
-  rake vm:test || :
-}
-
-package_rubinius() {
-  optdepends=('ruby-docs: Ruby documentation')
-
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8"
-  cd $pkgbase-$pkgver
-
-  DESTDIR="$pkgdir" rake install
-
-  mkdir -p "$pkgdir/usr/share/ri"
-  ln -s 2.1.0 "$pkgdir/usr/share/ri/2.1"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/rubinius/LICENSE"
-
-### Split rubinius-ruby
-  mkdir -p "$srcdir/ruby/usr/bin"
-  for _f in "$pkgdir"/usr/bin/*; do
-[[ $_f == */rbx ]] && continue
-mv $_f "$srcdir/ruby/usr/bin"
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc="Ruby compat for Rubinius"
-  depends=("rubinius=$pkgver-$pkgrel")
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* "$pkgdir"
-  install -Dm644 gemrc "$pkgdir/etc/gemrc"
-  install -d "$pkgdir/usr/share/licenses/rubinius-ruby"
-  ln -s ../rubinius/LICENSE "$pkgdir/usr/share/licenses/rubinius-ruby/LICENSE"
-}

Copied: rubinius/repos/community-i686/PKGBUILD (from rev 113817, 
rubinius/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-06-30 19:54:25 UTC (rev 113818)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=2.2.10
+pkgrel=1
+pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
+arch=(i686 x86_64)
+url="http://rubini.us";
+license=(custom)
+depends=(llvm-libs libffi openssl libyaml)
+makedepends=(llvm rubinius-ruby)
+options=(!emptydirs)
+source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch)
+sha256sums=('2a3e6b71f27073b8d83b9592b05523af70bc147ddcd0673bffae55b4167c9d81'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d885

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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:51:39
  Author: andyrtr
Revision: 215907

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-30 19:51:26 UTC (rev 215906)
+++ extra-i686/PKGBUILD 2014-06-30 19:51:39 UTC (rev 215907)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxcomposite
-pkgver=0.4.4
-pkgrel=1
-pkgdesc="X11 Composite extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('libxfixes' 'compositeproto')
-makedepends=('xorg-util-macros')
-source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2")
-sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178')
-
-build() {
-  cd "${srcdir}/libXcomposite-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXcomposite-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxcomposite/repos/extra-i686/PKGBUILD (from rev 215906, 
libxcomposite/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-30 19:51:39 UTC (rev 215907)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxcomposite
+pkgver=0.4.4
+pkgrel=2
+pkgdesc="X11 Composite extension library"
+arch=('i686' 'x86_64')
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('libxfixes' 'compositeproto')
+makedepends=('xorg-util-macros')
+source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2")
+sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178')
+
+build() {
+  cd libXcomposite-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXcomposite-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-06-30 19:51:26 UTC (rev 215906)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:51:39 UTC (rev 215907)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxcomposite
-pkgver=0.4.4
-pkgrel=1
-pkgdesc="X11 Composite extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('libxfixes' 'compositeproto')
-makedepends=('xorg-util-macros')
-source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2")
-sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178')
-
-build() {
-  cd "${srcdir}/libXcomposite-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXcomposite-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libxcomposite/repos/extra-x86_64/PKGBUILD (from rev 215906, 
libxcomposite/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:51:39 UTC (rev 215907)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxcomposite
+pkgver=0.4.4
+pkgrel=2
+pkgdesc="X11 Composite extension library"
+arch=('i686' 'x86_64')
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('libxfixes' 'compositeproto')
+makedepends=('xorg-util-macros')
+source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2")
+sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178')
+
+build() {
+  cd libXcomposite-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXcomposite-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:51:26
  Author: andyrtr
Revision: 215906

upgpkg: libxcomposite 0.4.4-2

mtree rebuild

Modified:
  libxcomposite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:47:32 UTC (rev 215905)
+++ PKGBUILD2014-06-30 19:51:26 UTC (rev 215906)
@@ -3,7 +3,7 @@
 
 pkgname=libxcomposite
 pkgver=0.4.4
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Composite extension library"
 arch=('i686' 'x86_64')
 url="http://xorg.freedesktop.org/";
@@ -14,13 +14,13 @@
 sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178')
 
 build() {
-  cd "${srcdir}/libXcomposite-${pkgver}"
+  cd libXcomposite-${pkgver}
   ./configure --prefix=/usr --sysconfdir=/etc --disable-static
   make
 }
 
 package() {
-  cd "${srcdir}/libXcomposite-${pkgver}"
+  cd libXcomposite-${pkgver}
   make DESTDIR="${pkgdir}" install
 
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"



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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:49:05
  Author: heftig
Revision: 113817

2.2.10

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 18:41:34 UTC (rev 113816)
+++ PKGBUILD2014-06-30 19:49:05 UTC (rev 113817)
@@ -3,8 +3,8 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=2.2.9
-pkgrel=2
+pkgver=2.2.10
+pkgrel=1
 pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
 arch=(i686 x86_64)
 url="http://rubini.us";
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('7b01a7f2508167e73b5273b4e55e6616fc7fd975e79c84c4d2e3ef83d849d2ce'
+sha256sums=('2a3e6b71f27073b8d83b9592b05523af70bc147ddcd0673bffae55b4167c9d81'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
 



[arch-commits] Commit in (libtextcat)

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:47:32
  Author: andyrtr
Revision: 215905

drop pkg

Deleted:
  libtextcat/



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:46:19
  Author: andyrtr
Revision: 215902

libtextcat isn't required anymore

Modified:
  libreoffice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:42:26 UTC (rev 215901)
+++ PKGBUILD2014-06-30 19:46:19 UTC (rev 215902)
@@ -34,7 +34,7 @@
  "curl>=7.20.0" "hunspell>=1.2.8" "python>=3.4"
 'libxaw' "neon>=0.28.6" 'pango' 'nspr' 'libjpeg' 
'libxrandr'
 'libgl' 'dbus-glib' 'libxslt' 'librsvg' 'redland' 'icu'
-'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
'graphite'
+'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'graphite'
 'lcms2' 'poppler>=0.24.0'
 'hicolor-icon-theme' 'desktop-file-utils' 
'shared-mime-info'
 'gtk2' 'orbit2' 'translate-toolkit' 'xdg-utils' 
#'telepathy-glib'



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:42:26
  Author: andyrtr
Revision: 215901

archrelease: copy trunk to extra-any

Added:
  kbproto/repos/extra-any/PKGBUILD
(from rev 215900, kbproto/trunk/PKGBUILD)
Deleted:
  kbproto/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-30 19:42:18 UTC (rev 215900)
+++ PKGBUILD2014-06-30 19:42:26 UTC (rev 215901)
@@ -1,24 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=kbproto
-pkgver=1.0.6
-pkgrel=1
-pkgdesc="X11 XKB extension wire protocol"
-arch=('any')
-url="http://xorg.freedesktop.org/";
-license=('custom')
-source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('a2cc82357c22a1f4d6243017982c32703c95575c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: kbproto/repos/extra-any/PKGBUILD (from rev 215900, 
kbproto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-30 19:42:26 UTC (rev 215901)
@@ -0,0 +1,24 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=kbproto
+pkgver=1.0.6
+pkgrel=2
+pkgdesc="X11 XKB extension wire protocol"
+arch=('any')
+url="http://xorg.freedesktop.org/";
+license=('custom')
+source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('a2cc82357c22a1f4d6243017982c32703c95575c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:42:18
  Author: andyrtr
Revision: 215900

upgpkg: kbproto 1.0.6-2

mtree rebuild

Modified:
  kbproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:39:35 UTC (rev 215899)
+++ PKGBUILD2014-06-30 19:42:18 UTC (rev 215900)
@@ -3,7 +3,7 @@
 
 pkgname=kbproto
 pkgver=1.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 XKB extension wire protocol"
 arch=('any')
 url="http://xorg.freedesktop.org/";
@@ -12,13 +12,13 @@
 sha1sums=('a2cc82357c22a1f4d6243017982c32703c95575c')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
 }



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:39:28
  Author: andyrtr
Revision: 215898

upgpkg: hyphen-de 20060120-3

mtree rebuild

Modified:
  hyphen-de/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:35:59 UTC (rev 215897)
+++ PKGBUILD2014-06-30 19:39:28 UTC (rev 215898)
@@ -3,7 +3,7 @@
 
 pkgname=hyphen-de
 pkgver=20060120
-pkgrel=2
+pkgrel=3
 pkgdesc="German hyphenation rules"
 arch=(any)
 url="http://www.openoffice.org/lingucomponent/";



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:39:35
  Author: andyrtr
Revision: 215899

archrelease: copy trunk to extra-any

Added:
  hyphen-de/repos/extra-any/PKGBUILD
(from rev 215898, hyphen-de/trunk/PKGBUILD)
Deleted:
  hyphen-de/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  106 ++---
 1 file changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-30 19:39:28 UTC (rev 215898)
+++ PKGBUILD2014-06-30 19:39:35 UTC (rev 215899)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=hyphen-de
-pkgver=20060120
-pkgrel=2
-pkgdesc="German hyphenation rules"
-arch=(any)
-url="http://www.openoffice.org/lingucomponent/";
-license=('LGPL')
-optdepends=('hyphen: offers hyphenation library functions')
-source=(#http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_DE.zip
-
#http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_CH.zip
-# mirror from ApacheOpenOffice - see: 
http://www.openoffice.org/distribution/mirrors/master.html
-
http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice/contrib/dictionaries/hyph_de_DE.zip
-
http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice/contrib/dictionaries/hyph_de_CH.zip)
-md5sums=('20e5b706ee3201aa2741dabca824cd8b'
- '7b8567cc0ee1623dded40f2cba366e91')
-
-build() {
-  /bin/true
-}
-
-package() {
-  cd "$srcdir"
-  install -dm755 ${pkgdir}/usr/share/hyphen
-  cp -p hyph_de_??.* $pkgdir/usr/share/hyphen
-
-  pushd $pkgdir/usr/share/hyphen/
-  de_DE_aliases="de_AT de_BE de_LU"
-  for lang in $de_DE_aliases; do
-ln -s hyph_de_DE.dic hyph_$lang.dic
-  done
-  de_CH_aliases="de_LI"
-  for lang in $de_CH_aliases; do
-ln -s hyph_de_CH.dic hyph_$lang.dic
-  done
-
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hyphen/*; do
-  ln -sv /usr/share/hyphen/$(basename $file) .
-done
-  popd
-  
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  cp -p README_hyph_de_DE.txt $pkgdir/usr/share/doc/$pkgname
-  cp -p README_hyph_de_CH.txt $pkgdir/usr/share/doc/$pkgname
-}

Copied: hyphen-de/repos/extra-any/PKGBUILD (from rev 215898, 
hyphen-de/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-30 19:39:35 UTC (rev 215899)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=hyphen-de
+pkgver=20060120
+pkgrel=3
+pkgdesc="German hyphenation rules"
+arch=(any)
+url="http://www.openoffice.org/lingucomponent/";
+license=('LGPL')
+optdepends=('hyphen: offers hyphenation library functions')
+source=(#http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_DE.zip
+
#http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_CH.zip
+# mirror from ApacheOpenOffice - see: 
http://www.openoffice.org/distribution/mirrors/master.html
+
http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice/contrib/dictionaries/hyph_de_DE.zip
+
http://sunsite.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice/contrib/dictionaries/hyph_de_CH.zip)
+md5sums=('20e5b706ee3201aa2741dabca824cd8b'
+ '7b8567cc0ee1623dded40f2cba366e91')
+
+build() {
+  /bin/true
+}
+
+package() {
+  cd "$srcdir"
+  install -dm755 ${pkgdir}/usr/share/hyphen
+  cp -p hyph_de_??.* $pkgdir/usr/share/hyphen
+
+  pushd $pkgdir/usr/share/hyphen/
+  de_DE_aliases="de_AT de_BE de_LU"
+  for lang in $de_DE_aliases; do
+ln -s hyph_de_DE.dic hyph_$lang.dic
+  done
+  de_CH_aliases="de_LI"
+  for lang in $de_CH_aliases; do
+ln -s hyph_de_CH.dic hyph_$lang.dic
+  done
+
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hyphen/*; do
+  ln -sv /usr/share/hyphen/$(basename $file) .
+done
+  popd
+  
+  # docs
+  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
+  cp -p README_hyph_de_DE.txt $pkgdir/usr/share/doc/$pkgname
+  cp -p README_hyph_de_CH.txt $pkgdir/usr/share/doc/$pkgname
+}



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:35:59
  Author: andyrtr
Revision: 215897

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-30 19:35:51 UTC (rev 215896)
+++ PKGBUILD2014-06-30 19:35:59 UTC (rev 215897)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=hunspell-en
-pkgver=7.1
-pkgrel=2
-pkgdesc="English hunspell dictionaries"
-arch=(any)
-#url="http://en-gb.pyxidium.co.uk/";
-url="http://wordlist.sourceforge.net/";
-license=('LGPL' 'custom:scowl')
-optdepends=('hunspell: the spell checking libraries and apps')
-source=(http://downloads.sourceforge.net/wordlist/hunspell-en_US-$pkgver-0.zip
-   http://downloads.sourceforge.net/wordlist/hunspell-en_CA-$pkgver-0.zip
-   http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip)
-md5sums=('8eb485db0a722eb29a5eca517a22e367'
- '1921a5011d0f34e17d2e3f050d62a2c8'
- '218909136738f4564b81ecd145ade6ee')
-
-build() {
- /bin/true
-}
-
-package() {
-  cd "$srcdir"
-  install -dm755 ${pkgdir}/usr/share/hunspell
-  install -m644 en_*.dic en_*.aff $pkgdir/usr/share/hunspell
-
-  pushd $pkgdir/usr/share/hunspell/
-  en_GB_aliases="en_AG en_AU en_BS en_BW en_BZ en_DK en_GH en_HK en_IE en_IN 
en_JM en_NA en_NG en_NZ en_SG en_TT en_ZA en_ZW"
-  for lang in $en_GB_aliases; do
-   ln -s en_GB.aff $lang.aff
-   ln -s en_GB.dic $lang.dic
-  done
-  en_US_aliases="en_PH"
-  for lang in $en_US_aliases; do
-   ln -s en_US.aff $lang.aff
-   ln -s en_US.dic $lang.dic
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hunspell/*; do
-  ln -sv /usr/share/hunspell/$(basename $file) .
-done
-  popd
-  
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  install -m644 README_en_??.txt $pkgdir/usr/share/doc/$pkgname
-
-  # licenses
-  install -D -m644 README_en_US.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_US
-  install -D -m644 README_en_CA.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_CA
-  install -D -m644 README_en_GB.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_GB
-}

Copied: hunspell-en/repos/extra-any/PKGBUILD (from rev 215896, 
hunspell-en/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-30 19:35:59 UTC (rev 215897)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=hunspell-en
+pkgver=7.1
+pkgrel=3
+pkgdesc="English hunspell dictionaries"
+arch=(any)
+#url="http://en-gb.pyxidium.co.uk/";
+url="http://wordlist.sourceforge.net/";
+license=('LGPL' 'custom:scowl')
+optdepends=('hunspell: the spell checking libraries and apps')
+source=(http://downloads.sourceforge.net/wordlist/hunspell-en_US-$pkgver-0.zip
+   http://downloads.sourceforge.net/wordlist/hunspell-en_CA-$pkgver-0.zip
+   http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip)
+md5sums=('8eb485db0a722eb29a5eca517a22e367'
+ '1921a5011d0f34e17d2e3f050d62a2c8'
+ '218909136738f4564b81ecd145ade6ee')
+
+build() {
+ /bin/true
+}
+
+package() {
+  cd "$srcdir"
+  install -dm755 ${pkgdir}/usr/share/hunspell
+  install -m644 en_*.dic en_*.aff $pkgdir/usr/share/hunspell
+
+  pushd $pkgdir/usr/share/hunspell/
+  en_GB_aliases="en_AG en_AU en_BS en_BW en_BZ en_DK en_GH en_HK en_IE en_IN 
en_JM en_NA en_NG en_NZ en_SG en_TT en_ZA en_ZW"
+  for lang in $en_GB_aliases; do
+   ln -s en_GB.aff $lang.aff
+   ln -s en_GB.dic $lang.dic
+  done
+  en_US_aliases="en_PH"
+  for lang in $en_US_aliases; do
+   ln -s en_US.aff $lang.aff
+   ln -s en_US.dic $lang.dic
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hunspell/*; do
+  ln -sv /usr/share/hunspell/$(basename $file) .
+done
+  popd
+  
+  # docs
+  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
+  install -m644 README_en_??.txt $pkgdir/usr/share/doc/$pkgname
+
+  # licenses
+  install -D -m644 README_en_US.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_US
+  install -D -m644 README_en_CA.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_CA
+  install -D -m644 README_en_GB.txt 
$pkgdir/usr/share/licenses/$pkgname/Copyright_en_GB
+}



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:35:51
  Author: andyrtr
Revision: 215896

upgpkg: hunspell-en 7.1-3

mtree rebuild

Modified:
  hunspell-en/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:28:46 UTC (rev 215895)
+++ PKGBUILD2014-06-30 19:35:51 UTC (rev 215896)
@@ -3,7 +3,7 @@
 
 pkgname=hunspell-en
 pkgver=7.1
-pkgrel=2
+pkgrel=3
 pkgdesc="English hunspell dictionaries"
 arch=(any)
 #url="http://en-gb.pyxidium.co.uk/";



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:28:46
  Author: andyrtr
Revision: 215895

archrelease: copy trunk to extra-any

Added:
  dri2proto/repos/extra-any/PKGBUILD
(from rev 215894, dri2proto/trunk/PKGBUILD)
Deleted:
  dri2proto/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-30 19:28:38 UTC (rev 215894)
+++ PKGBUILD2014-06-30 19:28:46 UTC (rev 215895)
@@ -1,26 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Jan de Groot 
-
-pkgname=dri2proto
-pkgver=2.8
-pkgrel=1
-pkgdesc="X11 DRI protocol"
-arch=(any)
-license=('custom')
-url="http://xorg.freedesktop.org/";
-makedepends=('xorg-util-macros')
-source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f9b55476def44fc7c459b2537d17dbc731e36ed5d416af7ca0b1e2e676f8aa04')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: dri2proto/repos/extra-any/PKGBUILD (from rev 215894, 
dri2proto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-30 19:28:46 UTC (rev 215895)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=dri2proto
+pkgver=2.8
+pkgrel=2
+pkgdesc="X11 DRI protocol"
+arch=(any)
+license=('custom')
+url="http://xorg.freedesktop.org/";
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f9b55476def44fc7c459b2537d17dbc731e36ed5d416af7ca0b1e2e676f8aa04')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:28:38
  Author: andyrtr
Revision: 215894

upgpkg: dri2proto 2.8-2

mtree rebuild

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

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:24:42 UTC (rev 215893)
+++ PKGBUILD2014-06-30 19:28:38 UTC (rev 215894)
@@ -1,9 +1,10 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# $Id$
+# Maintainer: Andreas Radke 
 # Maintainer: Jan de Groot 
 
 pkgname=dri2proto
 pkgver=2.8
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 DRI protocol"
 arch=(any)
 license=('custom')
@@ -13,13 +14,13 @@
 sha256sums=('f9b55476def44fc7c459b2537d17dbc731e36ed5d416af7ca0b1e2e676f8aa04')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
   install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"


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


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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:24:42
  Author: andyrtr
Revision: 215893

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-30 19:24:26 UTC (rev 215892)
+++ extra-i686/PKGBUILD 2014-06-30 19:24:42 UTC (rev 215893)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Dan Serban (dserban01 => gmail)
-
-pkgname=datefudge
-pkgver=1.17
-pkgrel=1
-pkgdesc="A program (and preload library) to fake system date"
-arch=('i686' 'x86_64')
-url="http://packages.qa.debian.org/d/datefudge.html";
-license=('GPL2')
-depends=('sh')
-source=(http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.gz)
-md5sums=('d306e183ea3fdbde088ebd523f6387c5')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  #./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: datefudge/repos/extra-i686/PKGBUILD (from rev 215892, 
datefudge/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-30 19:24:42 UTC (rev 215893)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Dan Serban (dserban01 => gmail)
+
+pkgname=datefudge
+pkgver=1.20
+pkgrel=1
+pkgdesc="A program (and preload library) to fake system date"
+arch=('i686' 'x86_64')
+url="http://packages.qa.debian.org/d/datefudge.html";
+license=('GPL2')
+depends=('sh')
+source=(http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.gz)
+md5sums=('033990e39ab7b29321fc3a0e3bbb165a')
+
+build() {
+  cd $pkgname-$pkgver
+  #./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-06-30 19:24:26 UTC (rev 215892)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:24:42 UTC (rev 215893)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Dan Serban (dserban01 => gmail)
-
-pkgname=datefudge
-pkgver=1.17
-pkgrel=1
-pkgdesc="A program (and preload library) to fake system date"
-arch=('i686' 'x86_64')
-url="http://packages.qa.debian.org/d/datefudge.html";
-license=('GPL2')
-depends=('sh')
-source=(http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.gz)
-md5sums=('d306e183ea3fdbde088ebd523f6387c5')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  #./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: datefudge/repos/extra-x86_64/PKGBUILD (from rev 215892, 
datefudge/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:24:42 UTC (rev 215893)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Dan Serban (dserban01 => gmail)
+
+pkgname=datefudge
+pkgver=1.20
+pkgrel=1
+pkgdesc="A program (and preload library) to fake system date"
+arch=('i686' 'x86_64')
+url="http://packages.qa.debian.org/d/datefudge.html";
+license=('GPL2')
+depends=('sh')
+source=(http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.gz)
+md5sums=('033990e39ab7b29321fc3a0e3bbb165a')
+
+build() {
+  cd $pkgname-$pkgver
+  #./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}



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

2014-06-30 Thread Andreas Radke
Date: Monday, June 30, 2014 @ 21:24:26
  Author: andyrtr
Revision: 215892

upgpkg: datefudge 1.20-1

upstream update 1.20

Modified:
  datefudge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:18:37 UTC (rev 215891)
+++ PKGBUILD2014-06-30 19:24:26 UTC (rev 215892)
@@ -3,7 +3,7 @@
 # Contributor: Dan Serban (dserban01 => gmail)
 
 pkgname=datefudge
-pkgver=1.17
+pkgver=1.20
 pkgrel=1
 pkgdesc="A program (and preload library) to fake system date"
 arch=('i686' 'x86_64')
@@ -11,20 +11,20 @@
 license=('GPL2')
 depends=('sh')
 
source=(http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.gz)
-md5sums=('d306e183ea3fdbde088ebd523f6387c5')
+md5sums=('033990e39ab7b29321fc3a0e3bbb165a')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   #./configure --prefix=/usr
   make
 }
 
 check() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   make test
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir/" install
 }



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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:18:37
  Author: heftig
Revision: 215891

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

Added:
  telepathy-farstream/repos/extra-i686/PKGBUILD
(from rev 215890, telepathy-farstream/trunk/PKGBUILD)
  telepathy-farstream/repos/extra-x86_64/PKGBUILD
(from rev 215890, telepathy-farstream/trunk/PKGBUILD)
Deleted:
  telepathy-farstream/repos/extra-i686/PKGBUILD
  telepathy-farstream/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-30 19:16:50 UTC (rev 215890)
+++ extra-i686/PKGBUILD 2014-06-30 19:18:37 UTC (rev 215891)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=telepathy-farstream
-pkgver=0.6.0
-pkgrel=1
-pkgdesc="A telepathy-backend to use stream engine."
-arch=(i686 x86_64)
-url="http://telepathy.freedesktop.org";
-license=('LGPL2.1')
-depends=('telepathy-glib' 'farstream')
-makedepends=('dbus-glib' 'gobject-introspection')
-conflicts=('telepathy-farsight')
-replaces=('telepathy-farsight')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('d154350f9f1e3bdba87617c0668481a5')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-farstream/repos/extra-i686/PKGBUILD (from rev 215890, 
telepathy-farstream/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-30 19:18:37 UTC (rev 215891)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=telepathy-farstream
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A telepathy-backend to use stream engine."
+arch=(i686 x86_64)
+url="http://telepathy.freedesktop.org";
+license=('LGPL2.1')
+depends=('telepathy-glib' 'farstream')
+makedepends=('dbus-glib' 'gobject-introspection')
+conflicts=('telepathy-farsight')
+replaces=('telepathy-farsight')
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('53e3a69bdee7b301e2fdd2f2d254e385')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/telepathy \
+--disable-static
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-06-30 19:16:50 UTC (rev 215890)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:18:37 UTC (rev 215891)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=telepathy-farstream
-pkgver=0.6.0
-pkgrel=1
-pkgdesc="A telepathy-backend to use stream engine."
-arch=(i686 x86_64)
-url="http://telepathy.freedesktop.org";
-license=('LGPL2.1')
-depends=('telepathy-glib' 'farstream')
-makedepends=('dbus-glib' 'gobject-introspection')
-conflicts=('telepathy-farsight')
-replaces=('telepathy-farsight')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('d154350f9f1e3bdba87617c0668481a5')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-farstream/repos/extra-x86_64/PKGBUILD (from rev 215890, 
telepathy-farstream/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:18:37 UTC (rev 215891)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=telepathy-farstream
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A telepathy-backend to use stream engine."
+arch=(i686 x86_64)
+url="http://telepathy.freedesktop.org";
+license=('LGPL2.1')
+depends=('telepathy-glib' 'farstream')
+makedepends=('dbus-glib' 'gobject-introspection')
+conflicts=('telepathy-farsight')
+replaces=('telepathy-farsight')
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('53e3a69bdee7b301e2fdd2f2d254e385')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/telepathy \
+--disable-static
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2

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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:16:50
  Author: heftig
Revision: 215890

mtree

Modified:
  telepathy-farstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:16:38 UTC (rev 215889)
+++ PKGBUILD2014-06-30 19:16:50 UTC (rev 215890)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=telepathy-farstream
-pkgver=0.6.0
+pkgver=0.6.1
 pkgrel=1
 pkgdesc="A telepathy-backend to use stream engine."
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 conflicts=('telepathy-farsight')
 replaces=('telepathy-farsight')
 
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('d154350f9f1e3bdba87617c0668481a5')
+md5sums=('53e3a69bdee7b301e2fdd2f2d254e385')
 
 build() {
   cd "$pkgname-$pkgver"



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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:16:38
  Author: heftig
Revision: 215889

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

Added:
  sdl_sound/repos/extra-i686/PKGBUILD
(from rev 215888, sdl_sound/trunk/PKGBUILD)
  sdl_sound/repos/extra-i686/flac.patch
(from rev 215888, sdl_sound/trunk/flac.patch)
  sdl_sound/repos/extra-x86_64/PKGBUILD
(from rev 215888, sdl_sound/trunk/PKGBUILD)
  sdl_sound/repos/extra-x86_64/flac.patch
(from rev 215888, sdl_sound/trunk/flac.patch)
Deleted:
  sdl_sound/repos/extra-i686/PKGBUILD
  sdl_sound/repos/extra-i686/flac.patch
  sdl_sound/repos/extra-x86_64/PKGBUILD
  sdl_sound/repos/extra-x86_64/flac.patch

-+
 /PKGBUILD   |   64 +++
 /flac.patch |  252 ++
 extra-i686/PKGBUILD |   32 -
 extra-i686/flac.patch   |  126 ---
 extra-x86_64/PKGBUILD   |   32 -
 extra-x86_64/flac.patch |  126 ---
 6 files changed, 316 insertions(+), 316 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-30 19:15:42 UTC (rev 215888)
+++ extra-i686/PKGBUILD 2014-06-30 19:16:38 UTC (rev 215889)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Tom Newsom 
-
-pkgname=sdl_sound
-pkgver=1.0.3
-pkgrel=4
-pkgdesc="A library to decode several popular sound file formats, such as .WAV 
and .MP3"
-arch=('i686' 'x86_64')
-url="http://icculus.org/SDL_sound/";
-license=('LGPL')
-depends=('sdl' 'libmikmod' 'libvorbis' 'flac' 'speex' 'smpeg')
-source=(http://icculus.org/SDL_sound/downloads/SDL_sound-$pkgver.tar.gz 
-flac.patch)
-md5sums=('aa09cd52df85d29bee87a664424c94b5'
- '302aa9dc94cc71dd3339ca3177d36e1c')
-
-build() {
-  cd ${srcdir}/SDL_sound-${pkgver}
-
-  CFLAGS="$CFLAGS -I/usr/include/smpeg" \
-  CXXFLAGS="$CXXFLAGS -I/usr/include/smpeg" \
-  ./configure --prefix=/usr --disable-static
-
-  make
-}
-
-package() {
-  cd ${srcdir}/SDL_sound-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: sdl_sound/repos/extra-i686/PKGBUILD (from rev 215888, 
sdl_sound/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-30 19:16:38 UTC (rev 215889)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Tom Newsom 
+
+pkgname=sdl_sound
+pkgver=1.0.3
+pkgrel=5
+pkgdesc="A library to decode several popular sound file formats, such as .WAV 
and .MP3"
+arch=('i686' 'x86_64')
+url="http://icculus.org/SDL_sound/";
+license=('LGPL')
+depends=('sdl' 'libmikmod' 'libvorbis' 'flac' 'speex' 'smpeg')
+source=(http://icculus.org/SDL_sound/downloads/SDL_sound-$pkgver.tar.gz 
+flac.patch)
+md5sums=('aa09cd52df85d29bee87a664424c94b5'
+ '302aa9dc94cc71dd3339ca3177d36e1c')
+
+build() {
+  cd ${srcdir}/SDL_sound-${pkgver}
+
+  CFLAGS="$CFLAGS -I/usr/include/smpeg" \
+  CXXFLAGS="$CXXFLAGS -I/usr/include/smpeg" \
+  ./configure --prefix=/usr --disable-static
+
+  make
+}
+
+package() {
+  cd ${srcdir}/SDL_sound-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: extra-i686/flac.patch
===
--- extra-i686/flac.patch   2014-06-30 19:15:42 UTC (rev 215888)
+++ extra-i686/flac.patch   2014-06-30 19:16:38 UTC (rev 215889)
@@ -1,126 +0,0 @@
-diff -u -r SDL_sound-1.0.1/configure.in SDL_sound-1.0.1-flac/configure.in
 SDL_sound-1.0.1/configure.in   2003-10-12 20:49:54.0 +0200
-+++ SDL_sound-1.0.1-flac/configure.in  2006-12-11 20:43:46.546583251 +0100
-@@ -155,9 +155,12 @@
- dnl  FLAC developers tend to break their API with every release, so we're
- dnl  checking for the latest-and-greatest here so we don't have to support
- dnl  obsolete versions.
-+dnl Starting with FLAC 1.1.3:
-+dnl   libFLAC supports Ogg FLAC (no more libOggFLAC) so we also need -logg
-+dnl   the libFLAC .so version is also #defined in FLAC/export.h
- 
- dnl Hooray for shitty autoconf bugs!
--x="C__seekable_stream_decoder_process_single"
-+x="C__stream_decoder_process_single"
- flcsym="FLA$x"
- dnl Check for libFLAC
- AC_ARG_ENABLE(flac,
-@@ -167,7 +170,7 @@
-   AC_CHECK_HEADER(FLAC/stream_decoder.h, have_flac_hdr=yes)
-   AC_CHECK_LIB(FLAC, $flcsym, have_flac_lib=yes)
-   if test x$have_flac_hdr = xyes -a x$have_flac_lib = xyes; then
--LIBS="$LIBS -lFLAC"
-+LIBS="$LIBS -lFLAC -logg"
- AC_DEFINE(SOUND_SUPPORTS_FLAC)
-   fi
- fi
-diff -u -r SDL_sound-1.0.1/decoders/flac.c SDL_sound-1.0.1-flac/decoders/flac.c
 SDL_sound-1.0.1/decoders/flac.c2003-03-10 23:44:14.0 +0100
-+++ SDL_sound-1.0.1-flac/decoders/flac.c   2006-12-11 20:43:57.880097062 
+0100
-@@ -44,6 +44,16 @@
- #define __SDL_SOUND_INTERNAL__
- #include "SDL_sound_internal.h"
- 
-+#include 
-+
-+/* FLAC 1.1.3 has FLAC_API_V

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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:15:42
  Author: heftig
Revision: 215888

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-30 19:14:41 UTC (rev 215887)
+++ extra-i686/PKGBUILD 2014-06-30 19:15:42 UTC (rev 215888)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: dorphell 
-# Contributor: Tom Newsom 
-
-pkgname=sdl_net
-pkgver=1.2.8
-pkgrel=1
-pkgdesc="A small sample cross-platform networking library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://www.libsdl.org/projects/SDL_net/";
-depends=('sdl')
-source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-$pkgver.tar.gz)
-md5sums=('20e64e61d65662db66c379034f11f718')
-
-build() {
-  cd "$srcdir/SDL_net-$pkgver"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "$srcdir/SDL_net-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sdl_net/repos/extra-i686/PKGBUILD (from rev 215887, 
sdl_net/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-30 19:15:42 UTC (rev 215888)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+
+pkgname=sdl_net
+pkgver=1.2.8
+pkgrel=2
+pkgdesc="A small sample cross-platform networking library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.libsdl.org/projects/SDL_net/";
+depends=('sdl')
+source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-$pkgver.tar.gz)
+md5sums=('20e64e61d65662db66c379034f11f718')
+
+build() {
+  cd "$srcdir/SDL_net-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "$srcdir/SDL_net-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-06-30 19:14:41 UTC (rev 215887)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:15:42 UTC (rev 215888)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: dorphell 
-# Contributor: Tom Newsom 
-
-pkgname=sdl_net
-pkgver=1.2.8
-pkgrel=1
-pkgdesc="A small sample cross-platform networking library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://www.libsdl.org/projects/SDL_net/";
-depends=('sdl')
-source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-$pkgver.tar.gz)
-md5sums=('20e64e61d65662db66c379034f11f718')
-
-build() {
-  cd "$srcdir/SDL_net-$pkgver"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "$srcdir/SDL_net-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sdl_net/repos/extra-x86_64/PKGBUILD (from rev 215887, 
sdl_net/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-06-30 19:15:42 UTC (rev 215888)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+
+pkgname=sdl_net
+pkgver=1.2.8
+pkgrel=2
+pkgdesc="A small sample cross-platform networking library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.libsdl.org/projects/SDL_net/";
+depends=('sdl')
+source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-$pkgver.tar.gz)
+md5sums=('20e64e61d65662db66c379034f11f718')
+
+build() {
+  cd "$srcdir/SDL_net-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "$srcdir/SDL_net-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2014-06-30 Thread Jan Steffens
Date: Monday, June 30, 2014 @ 21:14:41
  Author: heftig
Revision: 215887

mtree

Modified:
  sdl_sound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-30 19:14:11 UTC (rev 215886)
+++ PKGBUILD2014-06-30 19:14:41 UTC (rev 215887)
@@ -4,7 +4,7 @@
 
 pkgname=sdl_sound
 pkgver=1.0.3
-pkgrel=4
+pkgrel=5
 pkgdesc="A library to decode several popular sound file formats, such as .WAV 
and .MP3"
 arch=('i686' 'x86_64')
 url="http://icculus.org/SDL_sound/";



  1   2   3   4   >