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

2013-12-16 Thread Gaetan Bisson
Date: Tuesday, December 17, 2013 @ 07:53:56
  Author: bisson
Revision: 102648

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

Added:
  collectd/repos/community-staging-i686/
  collectd/repos/community-staging-i686/PKGBUILD
(from rev 102647, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-i686/libperl.patch
(from rev 102647, collectd/trunk/libperl.patch)
  collectd/repos/community-staging-i686/service
(from rev 102647, collectd/trunk/service)
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 102647, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/libperl.patch
(from rev 102647, collectd/trunk/libperl.patch)
  collectd/repos/community-staging-x86_64/service
(from rev 102647, collectd/trunk/service)

+
 community-staging-i686/PKGBUILD|   74 +++
 community-staging-i686/libperl.patch   |   29 
 community-staging-i686/service |   13 +
 community-staging-x86_64/PKGBUILD  |   74 +++
 community-staging-x86_64/libperl.patch |   29 
 community-staging-x86_64/service   |   13 +
 6 files changed, 232 insertions(+)

Copied: collectd/repos/community-staging-i686/PKGBUILD (from rev 102647, 
collectd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 06:53:56 UTC (rev 102648)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.4.0
+pkgrel=2
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='http://collectd.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'libmariadbclient: mysql plugin'
+'iproute2: netlink plugin'
+'net-snmp: snmp plugin'
+'libnotify: notify_desktop plugin'
+'liboping: ping plugin'
+'libpcap: dns plugin'
+'perl: perl plugin'
+'postgresql-libs: postgresql plugin'
+'python2: python plugin'
+'rrdtool: rrdtool and rrdcached plugins'
+'lm_sensors: lm_sensors and sensors plugins'
+'libvirt: libvirt plugin'
+'libxml2: ascent and libvirt plugins'
+'xmms: xmms plugin'
+'yajl: curl_json plugin')
+
+makedepends=('curl' 'libdbi' 'libesmtp' 'libgcrypt' 'libmemcached'
+ 'libmariadbclient' 'iproute2' 'net-snmp' 'libnotify' 'liboping'
+ 'libpcap' 'postgresql-libs' 'python2' 'rrdtool' 'lm_sensors'
+ 'libvirt' 'libxml2' 'xmms' 'yajl')
+
+depends=('libltdl' 'iptables')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'libperl.patch'
+'service')
+sha1sums=('c2bc3ca3c62cfba4499c4eb14066a4c78301cc2c'
+  '5364ea1330bc56c3b7cfb6d7f19a627c0053279e'
+  '04f676d0b76c34df0bbf94629813e035b1febe04')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/-Werror//g' -i *.in */*.in */*/*.in
+   patch -p1 -i ../libperl.patch
+   autoconf
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python2
+   make all
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rmdir "${pkgdir}/var/run" # FS#30201
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
+   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
+}

Copied: collectd/repos/community-staging-i686/libperl.patch (from rev 102647, 
collectd/trunk/libperl.patch)
===
--- community-staging-i686/libperl.patch(rev 0)
+++ community-staging-i686/libperl.patch2013-12-17 06:53:56 UTC (rev 
102648)
@@ -0,0 +1,29 @@
+diff -Naur old/configure.in new/configure.in
+--- old/configure.in   2013-08-18 22:24:25.049973054 +1200
 new/configure.in   2013-08-23 15:58:24.552240546 +1200
+@@ -3101,11 +3101,13 @@
+ then
+   SAVE_CFLAGS="$CFLAGS"
+   SAVE_LDFLAGS="$LDFLAGS"
++  SAVE_LIBS="$LIBS"
+ dnl ARCHFLAGS="" -> disable multi -arch on OSX (see 
Config_heavy.pl:fetch_string)
+   PERL_CFLAGS=`ARCHFLAGS="" $perl_interpreter -MExtUtils::Embed -e cc

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

2013-12-16 Thread Gaetan Bisson
Date: Tuesday, December 17, 2013 @ 07:53:25
  Author: bisson
Revision: 102647

rebuild for libgcrypt-1.6.0

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 06:15:22 UTC (rev 102646)
+++ PKGBUILD2013-12-17 06:53:25 UTC (rev 102647)
@@ -4,7 +4,7 @@
 
 pkgname=collectd
 pkgver=5.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='http://collectd.org/'
 arch=('i686' 'x86_64')



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

2013-12-16 Thread Gaetan Bisson
Date: Tuesday, December 17, 2013 @ 07:37:41
  Author: bisson
Revision: 201629

rebuild for libgcrypt-1.6.0

Modified:
  libotr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 06:14:40 UTC (rev 201628)
+++ PKGBUILD2013-12-17 06:37:41 UTC (rev 201629)
@@ -5,7 +5,7 @@
 
 pkgname=libotr
 pkgver=4.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Off-the-Record Messaging Library and Toolkit'
 url='http://www.cypherpunks.ca/otr/'
 license=('GPL' 'LGPL')



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

2013-12-16 Thread Gaetan Bisson
Date: Tuesday, December 17, 2013 @ 07:38:09
  Author: bisson
Revision: 201630

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

Added:
  libotr/repos/staging-i686/
  libotr/repos/staging-i686/PKGBUILD
(from rev 201629, libotr/trunk/PKGBUILD)
  libotr/repos/staging-x86_64/
  libotr/repos/staging-x86_64/PKGBUILD
(from rev 201629, libotr/trunk/PKGBUILD)

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

Copied: libotr/repos/staging-i686/PKGBUILD (from rev 201629, 
libotr/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 06:38:09 UTC (rev 201630)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Pierre Schmitz 
+# Contributor: Bug 
+
+pkgname=libotr
+pkgver=4.0.0
+pkgrel=2
+pkgdesc='Off-the-Record Messaging Library and Toolkit'
+url='http://www.cypherpunks.ca/otr/'
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+depends=('libgcrypt')
+source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('8865e9011b8674290837afcf7caf90c492ae09cc')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: libotr/repos/staging-x86_64/PKGBUILD (from rev 201629, 
libotr/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 06:38:09 UTC (rev 201630)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Pierre Schmitz 
+# Contributor: Bug 
+
+pkgname=libotr
+pkgver=4.0.0
+pkgrel=2
+pkgdesc='Off-the-Record Messaging Library and Toolkit'
+url='http://www.cypherpunks.ca/otr/'
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+depends=('libgcrypt')
+source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('8865e9011b8674290837afcf7caf90c492ae09cc')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in lib32-nvidia-304xx-utils/repos (2 files)

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 06:56:04
  Author: eric
Revision: 102645

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-nvidia-304xx-utils/repos/multilib-staging-x86_64/
  lib32-nvidia-304xx-utils/repos/multilib-staging-x86_64/PKGBUILD
(from rev 102644, lib32-nvidia-304xx-utils/trunk/PKGBUILD)

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

Copied: lib32-nvidia-304xx-utils/repos/multilib-staging-x86_64/PKGBUILD (from 
rev 102644, lib32-nvidia-304xx-utils/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2013-12-17 05:56:04 UTC (rev 102645)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: noone currently
+# Contributor: Jason Graham 
+# Contributor: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-304xx-utils
+pkgname=lib32-$_pkgbasename
+pkgver=304.117
+pkgrel=1
+pkgdesc="NVIDIA drivers utilities and libraries. (32-bit)"
+arch=('x86_64')
+url="http://www.nvidia.com/";
+depends=('lib32-libxvmc' 'lib32-zlib' 'lib32-gcc-libs' 'nvidia-304xx-utils')
+conflicts=('lib32-mesa-libgl' 'lib32-catalyst-utils' 'lib32-nvidia-utils')
+provides=('lib32-libgl')
+license=('custom')
+options=('!strip')
+
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('023eb03da304a1842fc503c81e3c5694')
+
+build() {
+cd "${srcdir}"
+sh ${_pkg}.run --extract-only
+}
+
+package() {
+cd "${srcdir}/${_pkg}"
+
+# OpenGL library
+install -D -m755 libGL.so.${pkgver} 
"${pkgdir}/usr/lib32/libGL.so.${pkgver}"
+# OpenGL core library
+install -D -m755 libnvidia-glcore.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+# XvMC
+install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib32/libXvMCNVIDIA.a"
+install -D -m755 libXvMCNVIDIA.so.${pkgver} 
"${pkgdir}/usr/lib32/libXvMCNVIDIA.so.${pkgver}"
+# VDPAU
+install -D -m755 libvdpau_nvidia.so.${pkgver} 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+# CUDA
+install -D -m755 libcuda.so.${pkgver} 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
+install -D -m755 libnvcuvid.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
+# nvidia-tls library
+install -D -m755 tls/libnvidia-tls.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+# OpenCL
+install -D -m755 libnvidia-compiler.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
+install -D -m755 libOpenCL.so.1.0.0 
"${pkgdir}/usr/lib32/libOpenCL.so.1.0.0"
+
+install -D -m755 libnvidia-cfg.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}"
+install -D -m755 libnvidia-ml.so.${pkgver} 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*'); do
+_soname="$(dirname ${_lib})/$(LC_ALL=C readelf -d "$_lib" | sed -nr 
's/.*Library soname: \[(.*)\].*/\1/p')"
+if [ ! -e "${_soname}" ]; then
+ln -s "$(basename ${_lib})" "${_soname}"
+ln -s "$(basename ${_soname})" "${_soname/.[0-9]*/}"
+fi
+done
+
+rm -rf "${pkgdir}"/usr/{include,share,bin}
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+



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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 06:55:33
  Author: eric
Revision: 102644

upgpkg: lib32-nvidia-304xx-utils 304.117-1

Upstream update

Modified:
  lib32-nvidia-304xx-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 04:17:08 UTC (rev 102643)
+++ PKGBUILD2013-12-17 05:55:33 UTC (rev 102644)
@@ -6,8 +6,8 @@
 
 _pkgbasename=nvidia-304xx-utils
 pkgname=lib32-$_pkgbasename
-pkgver=304.116
-pkgrel=2
+pkgver=304.117
+pkgrel=1
 pkgdesc="NVIDIA drivers utilities and libraries. (32-bit)"
 arch=('x86_64')
 url="http://www.nvidia.com/";
@@ -20,7 +20,7 @@
 _arch='x86'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+md5sums=('023eb03da304a1842fc503c81e3c5694')
 
 build() {
 cd "${srcdir}"



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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 06:32:24
  Author: eric
Revision: 201625

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

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

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

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

Copied: nvidia-304xx-lts/repos/staging-i686/nvidia-304xx-lts.install (from rev 
201624, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
===
--- staging-i686/nvidia-304xx-lts.install   (rev 0)
+++ staging-i686/nvidia-304xx-lts.install   2013-12-17 05:32:24 UTC (rev 
201625)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx-lts/repos/staging-x86_64/PKGBUILD (from rev 201624, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 05:32:24 UTC (rev 201625)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=nvidia-304xx-lts
+pkgver=304.117
+_extramodules=extramodules-3.10-lts
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=3.10.24' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=3.10.24')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('023eb03

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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 06:31:25
  Author: eric
Revision: 201624

upgpkg: nvidia-304xx-lts 304.117-1

Upstream update

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 05:16:25 UTC (rev 201623)
+++ PKGBUILD2013-12-17 05:31:25 UTC (rev 201624)
@@ -2,14 +2,14 @@
 # Maintainer: Andreas Radke 
 
 pkgname=nvidia-304xx-lts
-pkgver=304.116
+pkgver=304.117
 _extramodules=extramodules-3.10-lts
-pkgrel=2
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-depends=('linux-lts>=3.10.22' "nvidia-304xx-utils=${pkgver}")
-makedepends=('linux-lts-headers>=3.10.22')
+depends=('linux-lts>=3.10.24' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=3.10.24')
 conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
 provides=('nvidia-304xx')
 license=('custom')
@@ -20,12 +20,12 @@
 _arch='x86'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+md5sums=('023eb03da304a1842fc503c81e3c5694')
 elif [ "$CARCH" = "x86_64" ]; then
 _arch='x86_64'
_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('8b89d14e717ce7dd78c4d38cab930d1e')
+md5sums=('8ee9f672028971c6d36118894d0e2c59')
 fi
 
 build() {



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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 06:15:39
  Author: eric
Revision: 201622

upgpkg: nvidia-304xx 304.117-1

Upstream update

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 04:51:14 UTC (rev 201621)
+++ PKGBUILD2013-12-17 05:15:39 UTC (rev 201622)
@@ -2,9 +2,9 @@
 # Maintainer : Thomas Baechler 
 
 pkgname=nvidia-304xx
-pkgver=304.116
+pkgver=304.117
 _extramodules=extramodules-3.12-ARCH
-pkgrel=3
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
@@ -19,12 +19,12 @@
 _arch='x86'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+md5sums=('023eb03da304a1842fc503c81e3c5694')
 elif [ "$CARCH" = "x86_64" ]; then
 _arch='x86_64'
_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('8b89d14e717ce7dd78c4d38cab930d1e')
+md5sums=('8ee9f672028971c6d36118894d0e2c59')
 fi
 
 



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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 06:16:25
  Author: eric
Revision: 201623

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

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

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

Copied: nvidia-304xx/repos/staging-i686/PKGBUILD (from rev 201622, 
nvidia-304xx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 05:16:25 UTC (rev 201623)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.117
+_extramodules=extramodules-3.12-ARCH
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.12' 'linux<3.13' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.12' 'linux-headers<3.13')
+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=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('023eb03da304a1842fc503c81e3c5694')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('8ee9f672028971c6d36118894d0e2c59')
+fi
+
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.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/staging-i686/nvidia.install (from rev 201622, 
nvidia-304xx/trunk/nvidia.install)
===
--- staging-i686/nvidia.install (rev 0)
+++ staging-i686/nvidia.install 2013-12-17 05:16:25 UTC (rev 201623)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx/repos/staging-x86_64/PKGBUILD (from rev 201622, 
nvidia-304xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 05:16:25 UTC (rev 201623)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.117
+_extramodules=extramodules-3.12-ARCH
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.12' 'linux<3.13' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.12' 'linux-headers<3.13')
+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=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('023eb03da304a1842fc503c81e3c5694')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_p

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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 05:51:14
  Author: eric
Revision: 201621

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

Added:
  nvidia-304xx-utils/repos/staging-i686/
  nvidia-304xx-utils/repos/staging-i686/PKGBUILD
(from rev 201620, nvidia-304xx-utils/trunk/PKGBUILD)
  nvidia-304xx-utils/repos/staging-x86_64/
  nvidia-304xx-utils/repos/staging-x86_64/PKGBUILD
(from rev 201620, nvidia-304xx-utils/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  115 ++
 staging-x86_64/PKGBUILD |  115 ++
 2 files changed, 230 insertions(+)

Copied: nvidia-304xx-utils/repos/staging-i686/PKGBUILD (from rev 201620, 
nvidia-304xx-utils/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 04:51:14 UTC (rev 201621)
@@ -0,0 +1,115 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgbase=nvidia-304xx-utils
+pkgname=('nvidia-304xx-utils' 'opencl-nvidia-304xx')
+pkgver=304.117
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+license=('custom')
+makedepends=('libcl' 'libxvmc' 'xorg-server' 'zlib')
+options=('!strip')
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('023eb03da304a1842fc503c81e3c5694')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('8ee9f672028971c6d36118894d0e2c59')
+fi
+
+create_links() {
+# create soname links
+while read -d '' _lib; do
+_soname="$(dirname "${_lib}")/$(LC_ALL=C readelf -d "${_lib}" | sed 
-nr 's/.*Library soname: \[(.*)\].*/\1/p')"
+[[ -e "${_soname}" ]] || ln -s "$(basename "${_lib}")" "${_soname}"
+[[ -e "${_soname/.[0-9]*/}" ]] || ln -s "$(basename "${_soname}")" 
"${_soname/.[0-9]*/}"
+done < <(find "${pkgdir}" -type f -name '*.so*' -print0)
+}
+
+build() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+}
+
+package_opencl-nvidia-304xx() {
+pkgdesc="OpenCL implemention for NVIDIA, 304xx legacy branch"
+depends=('libcl' 'zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-nvidia')
+conflicts=('opencl-nvidia')
+ 
+cd "${srcdir}/${_pkg}"
+
+# OpenCL
+install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}" 
+
+create_links
+
+install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/opencl-nvidia-304xx/LICENSE"
+}
+
+package_nvidia-304xx-utils() {
+pkgdesc="NVIDIA drivers utilities and libraries, 304xx legacy branch"
+depends=('xorg-server' 'libxvmc')
+optdepends=('gtk2: nvidia-settings'
+'pkg-config: nvidia-xconfig'
+'opencl-nvidia-304xx: OpenCL support')
+conflicts=('libgl' 'nvidia-utils')
+provides=('libgl' 'nvidia-utils')
+cd "${srcdir}/${_pkg}"
+
+# X driver
+install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
+# GLX extension module for X
+install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.${pkgver}"
+ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so"  # X doesn't find glx 
otherwise
+# OpenGL library
+install -D -m755 "libGL.so.${pkgver}" 
"${pkgdir}/usr/lib/libGL.so.${pkgver}"
+# OpenGL core library
+install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-glcore.so.${pkgver}"
+# XvMC
+#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib/libXvMCNVIDIA.a"
+install -D -m755 "libXvMCNVIDIA.so.${pkgver}" 
"${pkgdir}/usr/lib/libXvMCNVIDIA.so.${pkgver}"
+# VDPAU
+install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/vdpau/libvdpau_nvidia.so.${pkgver}"
+# nvidia-tls library
+install -D -m755 "tls/libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-tls.so.${pkgver}"
+install -D -m755 "libnvidia-cfg.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-cfg.so.${pkgver}"
+
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-ml.so.${pkgver}"
+# CUDA
+install -D -m755 "libcuda.so.${pkgver}" 
"${pkgdir}/usr/lib/libcuda.so.${pkgver}"
+install -D -m755 "libnvcuvid.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvcuvid.so.${pkgver}"
+
+# nvidia-xconfig
+install -D -m755 nvidia-xconfig "${pkgdir}/usr/bin/nvidia-xconfig"
+install -D -m644 nvidia-xconfig.1.gz 

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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 05:50:06
  Author: eric
Revision: 201620

upgpkg: nvidia-304xx-utils 304.117-1

Upstream update

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 02:11:33 UTC (rev 201619)
+++ PKGBUILD2013-12-17 04:50:06 UTC (rev 201620)
@@ -3,8 +3,8 @@
 
 pkgbase=nvidia-304xx-utils
 pkgname=('nvidia-304xx-utils' 'opencl-nvidia-304xx')
-pkgver=304.116
-pkgrel=2
+pkgver=304.117
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
 license=('custom')
@@ -15,12 +15,12 @@
 _arch='x86'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+md5sums=('023eb03da304a1842fc503c81e3c5694')
 elif [ "$CARCH" = "x86_64" ]; then
 _arch='x86_64'
 _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
 
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('8b89d14e717ce7dd78c4d38cab930d1e')
+md5sums=('8ee9f672028971c6d36118894d0e2c59')
 fi
 
 create_links() {



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

2013-12-16 Thread Sven-Hendrik Haase
Date: Tuesday, December 17, 2013 @ 05:17:08
  Author: svenstaro
Revision: 102643

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

Added:
  cegui/repos/community-i686/PKGBUILD
(from rev 102642, cegui/trunk/PKGBUILD)
  cegui/repos/community-i686/freetype.patch
(from rev 102642, cegui/trunk/freetype.patch)
  cegui/repos/community-x86_64/PKGBUILD
(from rev 102642, cegui/trunk/PKGBUILD)
  cegui/repos/community-x86_64/freetype.patch
(from rev 102642, cegui/trunk/freetype.patch)
Deleted:
  cegui/repos/community-i686/PKGBUILD
  cegui/repos/community-x86_64/PKGBUILD

-+
 /PKGBUILD   |   98 ++
 community-i686/PKGBUILD |   48 --
 community-i686/freetype.patch   |   14 +
 community-x86_64/PKGBUILD   |   48 --
 community-x86_64/freetype.patch |   14 +
 5 files changed, 126 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 04:17:00 UTC (rev 102642)
+++ community-i686/PKGBUILD 2013-12-17 04:17:08 UTC (rev 102643)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Juergen Hoetzel  
-# Contributor: William Rea , 
-# Contributor: Bjorn Lindeijer 
-
-pkgname=cegui
-pkgver=0.8.2
-pkgrel=6
-pkgdesc="A free library providing windowing and widgets for graphics 
APIs/engines"
-arch=('i686' 'x86_64')
-url="http://crayzedsgui.sourceforge.net";
-license=("MIT")
-depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly' 'glfw')
-makedepends=('cmake' 'python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz' 
'irrlicht' 'glm' 'mesa' 'mercurial' 'tolua++')
-optdepends=("python2: python bindings"
-"ogre: ogre module"
-"gtk2: gtk2 module"
-"irrlicht: irrlicht module")
-source=("hg+ssh://h...@bitbucket.org/cegui/cegui#branch=v0-8")
-md5sums=('SKIP')
-
-build() {
-  cd "$srcdir/cegui"
-
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCEGUI_LIB_INSTALL_DIR=lib \
-  -DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
-  -DCEGUI_BUILD_PYTHON_MODULES=OFF # currently broken :(
-
-  make
-  make html
-}
-
-package() {
-  cd "$srcdir/cegui"
- 
-  cd build
-
-  make DESTDIR="${pkgdir}" install
-
-  cd ..
-  install -Dm644 doc/COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: cegui/repos/community-i686/PKGBUILD (from rev 102642, 
cegui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 04:17:08 UTC (rev 102643)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Juergen Hoetzel  
+# Contributor: William Rea , 
+# Contributor: Bjorn Lindeijer 
+
+pkgname=cegui
+pkgver=0.8.3
+pkgrel=1
+pkgdesc="A free library providing windowing and widgets for graphics 
APIs/engines"
+arch=('i686' 'x86_64')
+url="http://crayzedsgui.sourceforge.net";
+license=("MIT")
+depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly' 'glfw')
+makedepends=('cmake' 'python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz' 
'irrlicht' 'glm' 'mesa' 'mercurial' 'tolua++')
+optdepends=("python2: python bindings"
+"ogre: ogre module"
+"gtk2: gtk2 module"
+"irrlicht: irrlicht module")
+source=("hg+ssh://h...@bitbucket.org/cegui/cegui#tag=v0-8-3"
+"freetype.patch")
+md5sums=('SKIP'
+ '4c5f81f109f36718045bb4ba5ba25602')
+
+build() {
+  cd "$srcdir/cegui"
+
+  patch -Np1 < "$srcdir/freetype.patch"
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCEGUI_LIB_INSTALL_DIR=lib \
+  -DCEGUI_BUILD_PYTHON_MODULES=OFF # currently broken :(
+  # -PYTHON_EXECUTABLE=/usr/bin/python2
+
+  make
+  make html
+}
+
+package() {
+  cd "$srcdir/cegui"/build
+ 
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ../doc/COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: cegui/repos/community-i686/freetype.patch (from rev 102642, 
cegui/trunk/freetype.patch)
===
--- community-i686/freetype.patch   (rev 0)
+++ community-i686/freetype.patch   2013-12-17 04:17:08 UTC (rev 102643)
@@ -0,0 +1,14 @@
+diff -r 319182022f9f cmake/FindFreetype.cmake
+--- a/cmake/FindFreetype.cmake Sat Dec 07 09:00:48 2013 +
 b/cmake/FindFreetype.cmake Tue Dec 17 05:02:30 2013 +0100
+@@ -3,8 +3,8 @@
+ 

+ include(FindPackageHandleStandardArgs)
+ 
+-find_path(FREETYPE_H_PATH_ft2build NAMES ft2build.h)
+-find_path(FREETYPE_H_PATH_ftconfig NAM

[arch-commits] Commit in cegui/trunk (PKGBUILD freetype.patch)

2013-12-16 Thread Sven-Hendrik Haase
Date: Tuesday, December 17, 2013 @ 05:17:00
  Author: svenstaro
Revision: 102642

upgpkg: cegui 0.8.3-1

upstream release 0.8.3

Added:
  cegui/trunk/freetype.patch
Modified:
  cegui/trunk/PKGBUILD

+
 PKGBUILD   |   19 ++-
 freetype.patch |   14 ++
 2 files changed, 24 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 01:18:22 UTC (rev 102641)
+++ PKGBUILD2013-12-17 04:17:00 UTC (rev 102642)
@@ -5,8 +5,8 @@
 # Contributor: Bjorn Lindeijer 
 
 pkgname=cegui
-pkgver=0.8.2
-pkgrel=6
+pkgver=0.8.3
+pkgrel=1
 pkgdesc="A free library providing windowing and widgets for graphics 
APIs/engines"
 arch=('i686' 'x86_64')
 url="http://crayzedsgui.sourceforge.net";
@@ -17,12 +17,16 @@
 "ogre: ogre module"
 "gtk2: gtk2 module"
 "irrlicht: irrlicht module")
-source=("hg+ssh://h...@bitbucket.org/cegui/cegui#branch=v0-8")
-md5sums=('SKIP')
+source=("hg+ssh://h...@bitbucket.org/cegui/cegui#tag=v0-8-3"
+"freetype.patch")
+md5sums=('SKIP'
+ '4c5f81f109f36718045bb4ba5ba25602')
 
 build() {
   cd "$srcdir/cegui"
 
+  patch -Np1 < "$srcdir/freetype.patch"
+
   [[ -d build ]] && rm -r build
   mkdir build && cd build
 
@@ -37,12 +41,9 @@
 }
 
 package() {
-  cd "$srcdir/cegui"
+  cd "$srcdir/cegui"/build
  
-  cd build
-
   make DESTDIR="${pkgdir}" install
 
-  cd ..
-  install -Dm644 doc/COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 ../doc/COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
 }

Added: freetype.patch
===
--- freetype.patch  (rev 0)
+++ freetype.patch  2013-12-17 04:17:00 UTC (rev 102642)
@@ -0,0 +1,14 @@
+diff -r 319182022f9f cmake/FindFreetype.cmake
+--- a/cmake/FindFreetype.cmake Sat Dec 07 09:00:48 2013 +
 b/cmake/FindFreetype.cmake Tue Dec 17 05:02:30 2013 +0100
+@@ -3,8 +3,8 @@
+ 

+ include(FindPackageHandleStandardArgs)
+ 
+-find_path(FREETYPE_H_PATH_ft2build NAMES ft2build.h)
+-find_path(FREETYPE_H_PATH_ftconfig NAMES freetype/config/ftconfig.h 
PATH_SUFFIXES freetype2)
++find_path(FREETYPE_H_PATH_ft2build NAMES ft2build.h PATH_SUFFIXES freetype2)
++find_path(FREETYPE_H_PATH_ftconfig NAMES config/ftconfig.h PATH_SUFFIXES 
freetype2)
+ find_library(FREETYPE_LIB NAMES freetype2 freetype libfreetype PATH_SUFFIXES 
dynamic)
+ find_library(FREETYPE_LIB_DBG NAMES freetype_d libfreetype_d PATH_SUFFIXES 
dynamic)
+ mark_as_advanced(FREETYPE_H_PATH_ft2build FREETYPE_H_PATH_ftconfig 
FREETYPE_LIB FREETYPE_LIB_DBG)



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

2013-12-16 Thread Allan McRae
Date: Tuesday, December 17, 2013 @ 03:11:33
  Author: allan
Revision: 201619

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

Added:
  coreutils/repos/testing-i686/
  coreutils/repos/testing-i686/PKGBUILD
(from rev 201618, coreutils/trunk/PKGBUILD)
  coreutils/repos/testing-i686/coreutils.install
(from rev 201618, coreutils/trunk/coreutils.install)
  coreutils/repos/testing-x86_64/
  coreutils/repos/testing-x86_64/PKGBUILD
(from rev 201618, coreutils/trunk/PKGBUILD)
  coreutils/repos/testing-x86_64/coreutils.install
(from rev 201618, coreutils/trunk/coreutils.install)

--+
 testing-i686/PKGBUILD|   34 ++
 testing-i686/coreutils.install   |   17 +
 testing-x86_64/PKGBUILD  |   34 ++
 testing-x86_64/coreutils.install |   17 +
 4 files changed, 102 insertions(+)

Copied: coreutils/repos/testing-i686/PKGBUILD (from rev 201618, 
coreutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-17 02:11:33 UTC (rev 201619)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=coreutils
+pkgver=8.22
+pkgrel=2
+pkgdesc="The basic file, shell and text manipulation utilities of the GNU 
operating system"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/coreutils";
+groups=('base')
+depends=('glibc' 'pam' 'acl' 'gmp' 'libcap' 'openssl')
+install=${pkgname}.install
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('8fb0ae2267aa6e728958adc38f8163a2'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --with-openssl \
+  --enable-no-install-program=groups,hostname,kill,uptime
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make RUN_EXPENSIVE_TESTS=yes check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: coreutils/repos/testing-i686/coreutils.install (from rev 201618, 
coreutils/trunk/coreutils.install)
===
--- testing-i686/coreutils.install  (rev 0)
+++ testing-i686/coreutils.install  2013-12-17 02:11:33 UTC (rev 201619)
@@ -0,0 +1,17 @@
+infodir=usr/share/info
+file=coreutils.info
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [[ -x usr/bin/install-info ]] || return 0
+  install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+}
+

Copied: coreutils/repos/testing-x86_64/PKGBUILD (from rev 201618, 
coreutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-17 02:11:33 UTC (rev 201619)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=coreutils
+pkgver=8.22
+pkgrel=2
+pkgdesc="The basic file, shell and text manipulation utilities of the GNU 
operating system"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/coreutils";
+groups=('base')
+depends=('glibc' 'pam' 'acl' 'gmp' 'libcap' 'openssl')
+install=${pkgname}.install
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('8fb0ae2267aa6e728958adc38f8163a2'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --with-openssl \
+  --enable-no-install-program=groups,hostname,kill,uptime
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make RUN_EXPENSIVE_TESTS=yes check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: coreutils/repos/testing-x86_64/coreutils.install (from rev 201618, 
coreutils/trunk/coreutils.install)
===
--- testing-x86_64/coreutils.install(rev 0)
+++ testing-x86_64/coreutils.install2013-12-17 02:11:33 UTC (rev 201619)
@@ -0,0 +1,17 @@
+infodir=usr/share/info
+file=coreutils.info
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [[ -x usr/bin/install-info ]] || return 0
+  install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+}
+



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

2013-12-16 Thread Allan McRae
Date: Tuesday, December 17, 2013 @ 03:10:36
  Author: allan
Revision: 201618

upgpkg: coreutils 8.22-2

link to openssl for crypto speed improvements

Modified:
  coreutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:32:25 UTC (rev 201617)
+++ PKGBUILD2013-12-17 02:10:36 UTC (rev 201618)
@@ -4,13 +4,13 @@
 
 pkgname=coreutils
 pkgver=8.22
-pkgrel=1
+pkgrel=2
 pkgdesc="The basic file, shell and text manipulation utilities of the GNU 
operating system"
 arch=('i686' 'x86_64')
 license=('GPL3')
 url="http://www.gnu.org/software/coreutils";
 groups=('base')
-depends=('glibc' 'pam' 'acl' 'gmp' 'libcap')
+depends=('glibc' 'pam' 'acl' 'gmp' 'libcap' 'openssl')
 install=${pkgname}.install
 source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
 md5sums=('8fb0ae2267aa6e728958adc38f8163a2'
@@ -18,7 +18,7 @@
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --libexecdir=/usr/lib \
+  ./configure --prefix=/usr --libexecdir=/usr/lib --with-openssl \
   --enable-no-install-program=groups,hostname,kill,uptime
   make
 }



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

2013-12-16 Thread Kyle Keen
Date: Tuesday, December 17, 2013 @ 02:17:48
  Author: kkeen
Revision: 102640

upgpkg: python-pyzmq 14.0.1-1

Modified:
  python-pyzmq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 01:13:09 UTC (rev 102639)
+++ PKGBUILD2013-12-17 01:17:48 UTC (rev 102640)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen 
 pkgbase=python-pyzmq
 pkgname=(python2-pyzmq python-pyzmq)
-pkgver=14.0.0
+pkgver=14.0.1
 pkgrel=1
 pkgdesc="Python bindings for zeromq, written in Cython"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 makedepends=(python python2 zeromq)
 #source=(https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz)
 source=(https://pypi.python.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz)
-md5sums=('ce62ce9807b0b5da0076eaa9cf6cc24e')
+md5sums=('c35fa03e58d48e6f3df2ab2c2dfa1413')
 
 build() {
   cd "$srcdir"



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

2013-12-16 Thread Kyle Keen
Date: Tuesday, December 17, 2013 @ 02:18:22
  Author: kkeen
Revision: 102641

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 01:17:48 UTC (rev 102640)
+++ community-i686/PKGBUILD 2013-12-17 01:18:22 UTC (rev 102641)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-pkgbase=python-pyzmq
-pkgname=(python2-pyzmq python-pyzmq)
-pkgver=14.0.0
-pkgrel=1
-pkgdesc="Python bindings for zeromq, written in Cython"
-arch=(i686 x86_64)
-url="http://www.zeromq.org/bindings:python";
-license=('LGPL')
-depends=(zeromq python)
-makedepends=(python python2 zeromq)
-#source=(https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz)
-source=(https://pypi.python.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz)
-md5sums=('ce62ce9807b0b5da0076eaa9cf6cc24e')
-
-build() {
-  cd "$srcdir"
-  cp -a pyzmq-${pkgver} py2zmq-${pkgver}
-  cd "$srcdir/pyzmq-$pkgver"
-  # py3 errors added in 2.2.0.1 
-  sed -i 's|except socket.error, e:|except socket.error as e:|' 
zmq/eventloop/ioloop.py
-  sed -i 's|except gevent.Timeout, t:|except gevent.Timeout as t:|' 
zmq/green/core.py
-  cd "$srcdir/py2zmq-$pkgver"
-  sed -i 's|^#!/usr/bin/env python$|&2|' $(find ./ -name '*.py')
-}
-
-package_python2-pyzmq() {
-  pkgdesc="Python2 bindings for zeromq, written in Cython"
-  depends=(zeromq python2)
-  cd "$srcdir/py2zmq-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=0
-}
-
-package_python-pyzmq() {
-  pkgdesc="Python3 bindings for zeromq, written in Cython"
-  depends=(zeromq python)
-  cd "$srcdir/pyzmq-$pkgver"
-  python3 setup.py install --root="$pkgdir" --optimize=0
-}
-
-check()
-{
-  cd "$srcdir/pyzmq-$pkgver"
-  python3 setup.py build_ext --inplace
-  python3 setup.py test
-  cd "$srcdir/py2zmq-$pkgver"
-  python2 setup.py build_ext --inplace
-  python2 setup.py test
-}

Copied: python-pyzmq/repos/community-i686/PKGBUILD (from rev 102640, 
python-pyzmq/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 01:18:22 UTC (rev 102641)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgbase=python-pyzmq
+pkgname=(python2-pyzmq python-pyzmq)
+pkgver=14.0.1
+pkgrel=1
+pkgdesc="Python bindings for zeromq, written in Cython"
+arch=(i686 x86_64)
+url="http://www.zeromq.org/bindings:python";
+license=('LGPL')
+depends=(zeromq python)
+makedepends=(python python2 zeromq)
+#source=(https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz)
+source=(https://pypi.python.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz)
+md5sums=('c35fa03e58d48e6f3df2ab2c2dfa1413')
+
+build() {
+  cd "$srcdir"
+  cp -a pyzmq-${pkgver} py2zmq-${pkgver}
+  cd "$srcdir/pyzmq-$pkgver"
+  # py3 errors added in 2.2.0.1 
+  sed -i 's|except socket.error, e:|except socket.error as e:|' 
zmq/eventloop/ioloop.py
+  sed -i 's|except gevent.Timeout, t:|except gevent.Timeout as t:|' 
zmq/green/core.py
+  cd "$srcdir/py2zmq-$pkgver"
+  sed -i 's|^#!/usr/bin/env python$|&2|' $(find ./ -name '*.py')
+}
+
+package_python2-pyzmq() {
+  pkgdesc="Python2 bindings for zeromq, written in Cython"
+  depends=(zeromq python2)
+  cd "$srcdir/py2zmq-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=0
+}
+
+package_python-pyzmq() {
+  pkgdesc="Python3 bindings for zeromq, written in Cython"
+  depends=(zeromq python)
+  cd "$srcdir/pyzmq-$pkgver"
+  python3 setup.py install --root="$pkgdir" --optimize=0
+}
+
+check()
+{
+  cd "$srcdir/pyzmq-$pkgver"
+  python3 setup.py build_ext --inplace
+  python3 setup.py test
+  cd "$srcdir/py2zmq-$pkgver"
+  python2 setup.py build_ext --inplace
+  python2 setup.py test
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-17 01:17:48 UTC (rev 102640)
+++ community-x86_64/PKGBUILD   2013-12-17 01:18:22 UTC (rev 102641)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-pkgbase=python-pyzmq
-pkgname=(python2-pyzmq python-pyzmq)
-pkgver=14.0.0
-pkgrel=1
-pkgdesc="Python bindings for zeromq, written in Cython"
-arch=(i686 x86_64)
-url="http://www.zeromq.org/bindings:python";
-license=('LGPL')
-depends=(zeromq python)
-makedepends=(python python2 zeromq)
-#sourc

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

2013-12-16 Thread Kyle Keen
Date: Tuesday, December 17, 2013 @ 02:13:09
  Author: kkeen
Revision: 102639

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

Added:
  zeromq/repos/community-i686/PKGBUILD
(from rev 102638, zeromq/trunk/PKGBUILD)
  zeromq/repos/community-x86_64/PKGBUILD
(from rev 102638, zeromq/trunk/PKGBUILD)
Deleted:
  zeromq/repos/community-i686/LIBZMQ-569.patch
  zeromq/repos/community-i686/PKGBUILD
  zeromq/repos/community-x86_64/LIBZMQ-569.patch
  zeromq/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   62 
 community-i686/LIBZMQ-569.patch   |   30 -
 community-i686/PKGBUILD   |   38 --
 community-x86_64/LIBZMQ-569.patch |   30 -
 community-x86_64/PKGBUILD |   38 --
 5 files changed, 62 insertions(+), 136 deletions(-)

Deleted: community-i686/LIBZMQ-569.patch
===
--- community-i686/LIBZMQ-569.patch 2013-12-17 01:12:46 UTC (rev 102638)
+++ community-i686/LIBZMQ-569.patch 2013-12-17 01:13:09 UTC (rev 102639)
@@ -1,30 +0,0 @@
-From 7ecab54ac3b7a6103c46892990217acafb039eed Mon Sep 17 00:00:00 2001
-From: Martin Hurton 
-Date: Fri, 21 Jun 2013 16:23:38 +0200
-Subject: [PATCH] Load identity message to decoder at start
-

- src/stream_engine.cpp | 7 +++
- 1 file changed, 7 insertions(+)
-
-diff --git a/src/stream_engine.cpp b/src/stream_engine.cpp
-index 0d87581..2c07889 100644
 a/src/stream_engine.cpp
-+++ b/src/stream_engine.cpp
-@@ -480,6 +480,13 @@ bool zmq::stream_engine_t::handshake ()
- //  header data away.
- const size_t header_size = options.identity_size + 1 >= 255 ? 10 : 2;
- unsigned char tmp [10], *bufferp = tmp;
-+
-+//  Prepare the identity message and load it into encoder.
-+//  Then consume bytes we have already sent to the peer.
-+const int rc = tx_msg.init_size (options.identity_size);
-+zmq_assert (rc == 0);
-+memcpy (tx_msg.data (), options.identity, options.identity_size);
-+encoder->load_msg (&tx_msg);
- size_t buffer_size = encoder->encode (&bufferp, header_size);
- zmq_assert (buffer_size == header_size);
- 
--- 
-1.8.4
-

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 01:12:46 UTC (rev 102638)
+++ community-i686/PKGBUILD 2013-12-17 01:13:09 UTC (rev 102639)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-pkgname=zeromq
-pkgver=4.0.1
-pkgrel=5
-pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, 
ZMQ."
-arch=('i686' 'x86_64')
-url="http://www.zeromq.org";
-license=('LGPL')
-depends=('gcc-libs' 'util-linux' 'libsodium')
-makedepends=('python2')
-options=('staticlibs')
-source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
-https://raw.github.com/zeromq/cppzmq/master/zmq.hpp
-LIBZMQ-569.patch)
-md5sums=('e738c310d135e20fa48c5b348da18e22'
- '388ddb07fdd88b040769e8f4c9b397fa'
- '2ef4f92027ec2b88e8eec86b2cccf2e4')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -p1 -i "$srcdir/LIBZMQ-569.patch"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure prefix=/usr --with-pgm --with-libsodium
-  sed -i 's/python$/&2/' 
foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
-}
-
-

Copied: zeromq/repos/community-i686/PKGBUILD (from rev 102638, 
zeromq/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 01:13:09 UTC (rev 102639)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=zeromq
+pkgver=4.0.3
+pkgrel=1
+pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, 
ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org";
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium')
+makedepends=('python2')
+options=('staticlibs')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+https://raw.github.com/zeromq/cppzmq/master/zmq.hpp)
+md5sums=('8348341a0ea577ff311630da0d624d45'
+ '388ddb07fdd88b040769e8f4c9b397fa')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium
+  sed -i 's/python$/&2/' 
foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+
+

Deleted: community-x86_64/LIBZMQ-569.patch
===

[arch-commits] Commit in zeromq/trunk (LIBZMQ-569.patch PKGBUILD)

2013-12-16 Thread Kyle Keen
Date: Tuesday, December 17, 2013 @ 02:12:46
  Author: kkeen
Revision: 102638

upgpkg: zeromq 4.0.3-1

Modified:
  zeromq/trunk/PKGBUILD
Deleted:
  zeromq/trunk/LIBZMQ-569.patch

--+
 LIBZMQ-569.patch |   30 --
 PKGBUILD |   17 +
 2 files changed, 5 insertions(+), 42 deletions(-)

Deleted: LIBZMQ-569.patch
===
--- LIBZMQ-569.patch2013-12-16 23:22:00 UTC (rev 102637)
+++ LIBZMQ-569.patch2013-12-17 01:12:46 UTC (rev 102638)
@@ -1,30 +0,0 @@
-From 7ecab54ac3b7a6103c46892990217acafb039eed Mon Sep 17 00:00:00 2001
-From: Martin Hurton 
-Date: Fri, 21 Jun 2013 16:23:38 +0200
-Subject: [PATCH] Load identity message to decoder at start
-

- src/stream_engine.cpp | 7 +++
- 1 file changed, 7 insertions(+)
-
-diff --git a/src/stream_engine.cpp b/src/stream_engine.cpp
-index 0d87581..2c07889 100644
 a/src/stream_engine.cpp
-+++ b/src/stream_engine.cpp
-@@ -480,6 +480,13 @@ bool zmq::stream_engine_t::handshake ()
- //  header data away.
- const size_t header_size = options.identity_size + 1 >= 255 ? 10 : 2;
- unsigned char tmp [10], *bufferp = tmp;
-+
-+//  Prepare the identity message and load it into encoder.
-+//  Then consume bytes we have already sent to the peer.
-+const int rc = tx_msg.init_size (options.identity_size);
-+zmq_assert (rc == 0);
-+memcpy (tx_msg.data (), options.identity, options.identity_size);
-+encoder->load_msg (&tx_msg);
- size_t buffer_size = encoder->encode (&bufferp, header_size);
- zmq_assert (buffer_size == header_size);
- 
--- 
-1.8.4
-

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:22:00 UTC (rev 102637)
+++ PKGBUILD2013-12-17 01:12:46 UTC (rev 102638)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Kyle Keen 
 pkgname=zeromq
-pkgver=4.0.1
-pkgrel=5
+pkgver=4.0.3
+pkgrel=1
 pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, 
ZMQ."
 arch=('i686' 'x86_64')
 url="http://www.zeromq.org";
@@ -11,17 +11,10 @@
 makedepends=('python2')
 options=('staticlibs')
 source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
-https://raw.github.com/zeromq/cppzmq/master/zmq.hpp
-LIBZMQ-569.patch)
-md5sums=('e738c310d135e20fa48c5b348da18e22'
- '388ddb07fdd88b040769e8f4c9b397fa'
- '2ef4f92027ec2b88e8eec86b2cccf2e4')
+https://raw.github.com/zeromq/cppzmq/master/zmq.hpp)
+md5sums=('8348341a0ea577ff311630da0d624d45'
+ '388ddb07fdd88b040769e8f4c9b397fa')
 
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -p1 -i "$srcdir/LIBZMQ-569.patch"
-}
-
 build() {
   cd "$srcdir/$pkgname-$pkgver"
   ./configure prefix=/usr --with-pgm --with-libsodium



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:32:10
  Author: thomas
Revision: 201616

upgpkg: crda 1.1.3-3: rebuild for libgcrypt 1.6.0

Modified:
  crda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:29:10 UTC (rev 201615)
+++ PKGBUILD2013-12-16 23:32:10 UTC (rev 201616)
@@ -3,12 +3,12 @@
 
 pkgname=crda
 pkgver=1.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Central Regulatory Domain Agent for wireless networks"
 arch=(i686 x86_64)
 url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
 license=('custom')
-depends=('wireless-regdb' 'libnl' 'libgcrypt' 'systemd-tools' 'iw')
+depends=('wireless-regdb' 'libnl' 'libgcrypt' 'systemd' 'iw')
 makedepends=('python2-m2crypto')
 install=crda.install
 source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:32:25
  Author: thomas
Revision: 201617

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

Added:
  crda/repos/staging-i686/
  crda/repos/staging-i686/PKGBUILD
(from rev 201616, crda/trunk/PKGBUILD)
  crda/repos/staging-i686/crda.install
(from rev 201616, crda/trunk/crda.install)
  crda/repos/staging-i686/libnl32.patch
(from rev 201616, crda/trunk/libnl32.patch)
  crda/repos/staging-i686/set-wireless-regdom
(from rev 201616, crda/trunk/set-wireless-regdom)
  crda/repos/staging-x86_64/
  crda/repos/staging-x86_64/PKGBUILD
(from rev 201616, crda/trunk/PKGBUILD)
  crda/repos/staging-x86_64/crda.install
(from rev 201616, crda/trunk/crda.install)
  crda/repos/staging-x86_64/libnl32.patch
(from rev 201616, crda/trunk/libnl32.patch)
  crda/repos/staging-x86_64/set-wireless-regdom
(from rev 201616, crda/trunk/set-wireless-regdom)

+
 staging-i686/PKGBUILD  |   37 +++
 staging-i686/crda.install  |5 
 staging-i686/libnl32.patch |   12 +++
 staging-i686/set-wireless-regdom   |5 
 staging-x86_64/PKGBUILD|   37 +++
 staging-x86_64/crda.install|5 
 staging-x86_64/libnl32.patch   |   12 +++
 staging-x86_64/set-wireless-regdom |5 
 8 files changed, 118 insertions(+)

Copied: crda/repos/staging-i686/PKGBUILD (from rev 201616, crda/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 23:32:25 UTC (rev 201617)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=crda
+pkgver=1.1.3
+pkgrel=3
+pkgdesc="Central Regulatory Domain Agent for wireless networks"
+arch=(i686 x86_64)
+url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
+license=('custom')
+depends=('wireless-regdb' 'libnl' 'libgcrypt' 'systemd' 'iw')
+makedepends=('python2-m2crypto')
+install=crda.install
+source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2
+set-wireless-regdom)
+md5sums=('29579185e06a75675507527243d28e5c'
+ '65c93f2ff2eb1b29d9e9fa102ae2dd45')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  sed 's|^#!/usr/bin/env python|#!/usr/bin/python2|' -i utils/key2pub.py
+  make crda regdbdump
+}
+
+package() {
+  # Install crda, regdbdump and udev rules
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" UDEV_RULE_DIR=/usr/lib/udev/rules.d/ 
SBINDIR=/usr/bin/ install
+  # Adjust paths in udev rule file
+  sed 's|/sbin/crda|/usr/bin/crda|' -i 
"${pkgdir}"/usr/lib/udev/rules.d/85-regulatory.rules
+  # This rule automatically sets the regulatory domain when cfg80211 is loaded
+  echo 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", 
RUN+="/usr/bin/set-wireless-regdom"' >> 
"${pkgdir}"/usr/lib/udev/rules.d/85-regulatory.rules
+
+  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}"/usr/share/licenses/crda/LICENSE
+  
+  install -D -m755 "${srcdir}"/set-wireless-regdom 
"${pkgdir}"/usr/bin/set-wireless-regdom
+}

Copied: crda/repos/staging-i686/crda.install (from rev 201616, 
crda/trunk/crda.install)
===
--- staging-i686/crda.install   (rev 0)
+++ staging-i686/crda.install   2013-12-16 23:32:25 UTC (rev 201617)
@@ -0,0 +1,5 @@
+## arg 1:  the new package version
+post_install() {
+  echo "Uncomment the right regulatory domain in /etc/conf.d/wireless-regdom."
+  echo "It will automatically be set on boot."
+}

Copied: crda/repos/staging-i686/libnl32.patch (from rev 201616, 
crda/trunk/libnl32.patch)
===
--- staging-i686/libnl32.patch  (rev 0)
+++ staging-i686/libnl32.patch  2013-12-16 23:32:25 UTC (rev 201617)
@@ -0,0 +1,12 @@
+diff -u -r crda-1.1.2/Makefile crda-1.1.2-libnl32/Makefile
+--- crda-1.1.2/Makefile2011-08-10 01:36:19.0 +0200
 crda-1.1.2-libnl32/Makefile2012-02-09 18:53:33.376430180 +0100
+@@ -51,7 +51,7 @@
+ 
+ ifeq ($(NL3FOUND),Y)
+ CFLAGS += -DCONFIG_LIBNL30
+-NLLIBS += -lnl-genl
++NLLIBS += $(shell pkg-config --libs libnl-genl-3.0)
+ NLLIBNAME = libnl-3.0
+ else
+   ifeq ($(NL2FOUND),Y)

Copied: crda/repos/staging-i686/set-wireless-regdom (from rev 201616, 
crda/trunk/set-wireless-regdom)
===
--- staging-i686/set-wireless-regdom(rev 0)
+++ staging-i686/set-wireless-regdom2013-12-16 23:32:25 UTC (rev 201617)
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+unset WIRELESS_REGDOM
+. /etc/conf.d/wireless-regdom
+[ -n "${WIRELESS_REGDOM}" ] && iw reg set ${WIRELESS_REGDOM}

Copied: crda/repos/staging-x86_64/PKGBUILD (from rev 201616, 
crda/tr

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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:29:10
  Author: thomas
Revision: 201615

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

Added:
  systemd/repos/staging-i686/
  
systemd/repos/staging-i686/0001-fix-lingering-references-to-var-lib-backlight-random.patch
(from rev 201614, 
systemd/trunk/0001-fix-lingering-references-to-var-lib-backlight-random.patch)
  
systemd/repos/staging-i686/0001-fstab-generator-When-parsing-the-root-cmdline-option.patch
(from rev 201614, 
systemd/trunk/0001-fstab-generator-When-parsing-the-root-cmdline-option.patch)
  
systemd/repos/staging-i686/0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch
(from rev 201614, 
systemd/trunk/0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch)
  
systemd/repos/staging-i686/0001-mount-check-for-NULL-before-reading-pm-what.patch
(from rev 201614, 
systemd/trunk/0001-mount-check-for-NULL-before-reading-pm-what.patch)
  
systemd/repos/staging-i686/0001-shared-util-fix-off-by-one-error-in-tag_to_udev_node.patch
(from rev 201614, 
systemd/trunk/0001-shared-util-fix-off-by-one-error-in-tag_to_udev_node.patch)
  
systemd/repos/staging-i686/0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch
(from rev 201614, 
systemd/trunk/0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch)
  
systemd/repos/staging-i686/0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch
(from rev 201614, 
systemd/trunk/0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch)
  
systemd/repos/staging-i686/0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch
(from rev 201614, 
systemd/trunk/0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch)
  systemd/repos/staging-i686/0005-mount-service-drop-FsckPassNo-support.patch
(from rev 201614, 
systemd/trunk/0005-mount-service-drop-FsckPassNo-support.patch)
  systemd/repos/staging-i686/0006-efi-boot-generator-hookup-to-fsck.patch
(from rev 201614, 
systemd/trunk/0006-efi-boot-generator-hookup-to-fsck.patch)
  
systemd/repos/staging-i686/0007-fsck-root-only-run-when-requested-in-fstab.patch
(from rev 201614, 
systemd/trunk/0007-fsck-root-only-run-when-requested-in-fstab.patch)
  systemd/repos/staging-i686/PKGBUILD
(from rev 201614, systemd/trunk/PKGBUILD)
  systemd/repos/staging-i686/initcpio-hook-udev
(from rev 201614, systemd/trunk/initcpio-hook-udev)
  systemd/repos/staging-i686/initcpio-install-systemd
(from rev 201614, systemd/trunk/initcpio-install-systemd)
  systemd/repos/staging-i686/initcpio-install-udev
(from rev 201614, systemd/trunk/initcpio-install-udev)
  systemd/repos/staging-i686/systemd.install
(from rev 201614, systemd/trunk/systemd.install)
  systemd/repos/staging-x86_64/
  
systemd/repos/staging-x86_64/0001-fix-lingering-references-to-var-lib-backlight-random.patch
(from rev 201614, 
systemd/trunk/0001-fix-lingering-references-to-var-lib-backlight-random.patch)
  
systemd/repos/staging-x86_64/0001-fstab-generator-When-parsing-the-root-cmdline-option.patch
(from rev 201614, 
systemd/trunk/0001-fstab-generator-When-parsing-the-root-cmdline-option.patch)
  
systemd/repos/staging-x86_64/0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch
(from rev 201614, 
systemd/trunk/0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch)
  
systemd/repos/staging-x86_64/0001-mount-check-for-NULL-before-reading-pm-what.patch
(from rev 201614, 
systemd/trunk/0001-mount-check-for-NULL-before-reading-pm-what.patch)
  
systemd/repos/staging-x86_64/0001-shared-util-fix-off-by-one-error-in-tag_to_udev_node.patch
(from rev 201614, 
systemd/trunk/0001-shared-util-fix-off-by-one-error-in-tag_to_udev_node.patch)
  
systemd/repos/staging-x86_64/0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch
(from rev 201614, 
systemd/trunk/0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch)
  
systemd/repos/staging-x86_64/0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch
(from rev 201614, 
systemd/trunk/0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch)
  
systemd/repos/staging-x86_64/0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch
(from rev 201614, 
systemd/trunk/0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch)
  systemd/repos/staging-x86_64/0005-mount-service-drop-FsckPassNo-support.patch
(from rev 201614, 
systemd/trunk/0005-mount-service-drop-FsckPassNo-support.patch)
  systemd/repos/staging-x86_64/0006-efi-boot-generator-hookup-to-fsck.patch
(from rev 201614, 
systemd/trunk/0006-efi-boot-generator-hookup-to-fsck.patch)
  
systemd/repos/staging-x86_64/0007-fsck-root-only-run-when-requested-in-fstab.patch
(from rev 201614, 
systemd/trunk/0007-fsck-root-only-run-when-requested-in-fstab.patch)
  systemd/repos/staging-x86_64/PKGBUILD
(from rev 201614, systemd/trunk/PKGBUILD)
  systemd/repos/staging-x86_64/initcpio-hook-udev
(from rev 201614, systemd/trunk/init

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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:28:27
  Author: thomas
Revision: 201614

upgpkg: systemd 208-4: rebuild for libgcrypt 1.6.0

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:23:35 UTC (rev 201613)
+++ PKGBUILD2013-12-16 23:28:27 UTC (rev 201614)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'systemd-sysvcompat')
 pkgver=208
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url="http://www.freedesktop.org/wiki/Software/systemd";
 makedepends=('acl' 'cryptsetup' 'dbus-core' 'docbook-xsl' 
'gobject-introspection' 'gperf'



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:23:35
  Author: thomas
Revision: 201613

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

Added:
  cryptsetup/repos/staging-i686/
  cryptsetup/repos/staging-i686/PKGBUILD
(from rev 201612, cryptsetup/trunk/PKGBUILD)
  cryptsetup/repos/staging-i686/encrypt_hook
(from rev 201612, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/staging-i686/encrypt_install
(from rev 201612, cryptsetup/trunk/encrypt_install)
  cryptsetup/repos/staging-i686/sd-encrypt
(from rev 201612, cryptsetup/trunk/sd-encrypt)
  cryptsetup/repos/staging-x86_64/
  cryptsetup/repos/staging-x86_64/PKGBUILD
(from rev 201612, cryptsetup/trunk/PKGBUILD)
  cryptsetup/repos/staging-x86_64/encrypt_hook
(from rev 201612, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/staging-x86_64/encrypt_install
(from rev 201612, cryptsetup/trunk/encrypt_install)
  cryptsetup/repos/staging-x86_64/sd-encrypt
(from rev 201612, cryptsetup/trunk/sd-encrypt)

+
 staging-i686/PKGBUILD  |   41 +++
 staging-i686/encrypt_hook  |  139 +++
 staging-i686/encrypt_install   |   44 
 staging-i686/sd-encrypt|   42 +++
 staging-x86_64/PKGBUILD|   41 +++
 staging-x86_64/encrypt_hook|  139 +++
 staging-x86_64/encrypt_install |   44 
 staging-x86_64/sd-encrypt  |   42 +++
 8 files changed, 532 insertions(+)

Copied: cryptsetup/repos/staging-i686/PKGBUILD (from rev 201612, 
cryptsetup/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 23:23:35 UTC (rev 201613)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+pkgname=cryptsetup
+pkgver=1.6.3
+pkgrel=2
+pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
+arch=(i686 x86_64)
+license=('GPL')
+url="http://code.google.com/p/cryptsetup/";
+groups=('base')
+depends=('device-mapper' 'libgcrypt' 'popt' 'util-linux')
+options=('!emptydirs')
+source=(http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
+http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2.asc
+encrypt_hook
+encrypt_install
+sd-encrypt)
+md5sums=('a7aeb549a543eeac433eadfb6bc67837'
+ 'SKIP'
+ 'c279d86d6dc18322c054d2272ebb9e90'
+ '21c45f9cab3e0b5165f68358884fbd0f'
+ '6cf7e170ecd13e42fe829209628fdb4d')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver}
+  ./configure --prefix=/usr --disable-static --enable-cryptsetup-reencrypt
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # install hook
+  install -D -m644 "${srcdir}"/encrypt_hook 
"${pkgdir}"/usr/lib/initcpio/hooks/encrypt
+  install -D -m644 "${srcdir}"/encrypt_install 
"${pkgdir}"/usr/lib/initcpio/install/encrypt
+  install -D -m644 "${srcdir}"/sd-encrypt 
"${pkgdir}"/usr/lib/initcpio/install/sd-encrypt
+
+  # usrmove
+  cd "$pkgdir"/usr
+  mv sbin bin
+}

Copied: cryptsetup/repos/staging-i686/encrypt_hook (from rev 201612, 
cryptsetup/trunk/encrypt_hook)
===
--- staging-i686/encrypt_hook   (rev 0)
+++ staging-i686/encrypt_hook   2013-12-16 23:23:35 UTC (rev 201613)
@@ -0,0 +1,139 @@
+#!/usr/bin/ash
+
+run_hook() {
+modprobe -a -q dm-crypt >/dev/null 2>&1
+[ "${quiet}" = "y" ] && CSQUIET=">/dev/null"
+
+# Get keyfile if specified
+ckeyfile="/crypto_keyfile.bin"
+if [ -n "$cryptkey" ]; then
+IFS=: read ckdev ckarg1 ckarg2 &1
+umount /ckey
+;;
+*)
+# Read raw data from the block device
+# ckarg1 is numeric: ckarg1=offset, ckarg2=length
+dd if="$resolved" of="$ckeyfile" bs=1 skip="$ckarg1" 
count="$ckarg2" >/dev/null 2>&1
+;;
+esac
+fi
+[ ! -f ${ckeyfile} ] && echo "Keyfile could not be opened. Reverting 
to passphrase."
+fi
+
+if [ -n "${cryptdevice}" ]; then
+DEPRECATED_CRYPT=0
+IFS=: read cryptdev cryptname cryptoptions <&2
+;;
+esac
+done
+
+if resolved=$(resolve_device "${cryptdev}" ${rootdelay}); then
+if cryptsetup isLuks ${resolved} >/dev/null 2>&1; then
+[ ${DEPRECATED_CRYPT} -eq 1 ] && warn_deprecated
+dopassphrase=1
+# If keyfile exists, try to use that
+if [ -f ${ckeyfile} ]; then
+if eval cryptsetup --key-file ${ckeyfile} open --type luks 
${resolved} ${cryptname} ${cryptargs} ${CSQUIET}; then
+dopassphrase=0
+else
+echo "Invalid keyfile. Reverti

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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:23:21
  Author: thomas
Revision: 201612

upgpkg: cryptsetup 1.6.3-2: rebuild for libgcrypt 1.6.0

Modified:
  cryptsetup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:16:21 UTC (rev 201611)
+++ PKGBUILD2013-12-16 23:23:21 UTC (rev 201612)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Bächler 
 pkgname=cryptsetup
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
 arch=(i686 x86_64)
 license=('GPL')



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:22:00
  Author: thomas
Revision: 102637

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

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

+
 community-staging-i686/PKGBUILD|   36 +++
 community-staging-i686/libmicrohttpd.install   |   20 
 community-staging-x86_64/PKGBUILD  |   36 +++
 community-staging-x86_64/libmicrohttpd.install |   20 
 4 files changed, 112 insertions(+)

Copied: libmicrohttpd/repos/community-staging-i686/PKGBUILD (from rev 102636, 
libmicrohttpd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-16 23:22:00 UTC (rev 102637)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.32
+pkgrel=2
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/";
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('29dcc1c201c36044be2c3f816c64a5bb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/plibc/plibc.h \
+   ${pkgdir}/usr/include/$pkgname/plibc.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
+}

Copied: libmicrohttpd/repos/community-staging-i686/libmicrohttpd.install (from 
rev 102636, libmicrohttpd/trunk/libmicrohttpd.install)
===
--- community-staging-i686/libmicrohttpd.install
(rev 0)
+++ community-staging-i686/libmicrohttpd.install2013-12-16 23:22:00 UTC 
(rev 102637)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(libmicrohttpd.info libmicrohttpd-tutorial.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Copied: libmicrohttpd/repos/community-staging-x86_64/PKGBUILD (from rev 102636, 
libmicrohttpd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-16 23:22:00 UTC (rev 102637)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.32
+pkgrel=2
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/";
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('29dcc1c201c36044be2c3f816c64a5bb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/includ

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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:20:57
  Author: thomas
Revision: 102635

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

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

--+
 staging-i686/PKGBUILD|   36 +
 staging-i686/libmicrohttpd.install   |   20 ++
 staging-x86_64/PKGBUILD  |   36 +
 staging-x86_64/libmicrohttpd.install |   20 ++
 4 files changed, 112 insertions(+)

Copied: libmicrohttpd/repos/staging-i686/PKGBUILD (from rev 102634, 
libmicrohttpd/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 23:20:57 UTC (rev 102635)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.32
+pkgrel=2
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/";
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('29dcc1c201c36044be2c3f816c64a5bb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/plibc/plibc.h \
+   ${pkgdir}/usr/include/$pkgname/plibc.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
+}

Copied: libmicrohttpd/repos/staging-i686/libmicrohttpd.install (from rev 
102634, libmicrohttpd/trunk/libmicrohttpd.install)
===
--- staging-i686/libmicrohttpd.install  (rev 0)
+++ staging-i686/libmicrohttpd.install  2013-12-16 23:20:57 UTC (rev 102635)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(libmicrohttpd.info libmicrohttpd-tutorial.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Copied: libmicrohttpd/repos/staging-x86_64/PKGBUILD (from rev 102634, 
libmicrohttpd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-16 23:20:57 UTC (rev 102635)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Norberto Lopes 
+# Contributor: Kao Dome 
+# Contributor: Dmitrij D. Czarkoff 
+# Contributor: Mathias Rohnstock 
+
+pkgname=libmicrohttpd
+pkgver=0.9.32
+pkgrel=2
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/";
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('29dcc1c201c36044be2c3f816c64a5bb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/plibc/plibc.h \
+   ${pkgdir}/usr/include/$pkgname/plibc.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   $pkgdir/usr/lib/pkgconfig

[arch-commits] Commit in libmicrohttpd/repos (staging-i686 staging-x86_64)

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:21:25
  Author: thomas
Revision: 102636

Oops, wrong repo

Deleted:
  libmicrohttpd/repos/staging-i686/
  libmicrohttpd/repos/staging-x86_64/



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:20:48
  Author: thomas
Revision: 102634

upgpkg: libmicrohttpd 0.9.32-2: rebuild for libgcrypt 1.6.0

Modified:
  libmicrohttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:16:00 UTC (rev 102633)
+++ PKGBUILD2013-12-16 23:20:48 UTC (rev 102634)
@@ -7,7 +7,7 @@
 
 pkgname=libmicrohttpd
 pkgver=0.9.32
-pkgrel=1
+pkgrel=2
 pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/libmicrohttpd/";



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:16:21
  Author: thomas
Revision: 201611

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

Added:
  libxslt/repos/staging-i686/
  libxslt/repos/staging-i686/CVE-2011-1202.patch
(from rev 201610, libxslt/trunk/CVE-2011-1202.patch)
  libxslt/repos/staging-i686/PKGBUILD
(from rev 201610, libxslt/trunk/PKGBUILD)
  libxslt/repos/staging-x86_64/
  libxslt/repos/staging-x86_64/CVE-2011-1202.patch
(from rev 201610, libxslt/trunk/CVE-2011-1202.patch)
  libxslt/repos/staging-x86_64/PKGBUILD
(from rev 201610, libxslt/trunk/PKGBUILD)

+
 staging-i686/CVE-2011-1202.patch   |   56 +++
 staging-i686/PKGBUILD  |   38 +++
 staging-x86_64/CVE-2011-1202.patch |   56 +++
 staging-x86_64/PKGBUILD|   38 +++
 4 files changed, 188 insertions(+)

Copied: libxslt/repos/staging-i686/CVE-2011-1202.patch (from rev 201610, 
libxslt/trunk/CVE-2011-1202.patch)
===
--- staging-i686/CVE-2011-1202.patch(rev 0)
+++ staging-i686/CVE-2011-1202.patch2013-12-16 23:16:21 UTC (rev 201611)
@@ -0,0 +1,56 @@
+From ecb6bcb8d1b7e44842edde3929f412d46b40c89f Mon Sep 17 00:00:00 2001
+From: Daniel Veillard 
+Date: Tue, 22 Feb 2011 02:14:23 +
+Subject: Fix generate-id() to not expose object addresses
+
+As pointed out by Chris Evans  it's better
+security wise to not expose object addresses directly, use a diff
+w.r.t. the document root own address to avoid this
+* libxslt/functions.c: fix IDs generation code
+---
+diff --git a/libxslt/functions.c b/libxslt/functions.c
+index 4720c7a..de962f4 100644
+--- a/libxslt/functions.c
 b/libxslt/functions.c
+@@ -654,8 +654,9 @@ xsltFormatNumberFunction(xmlXPathParserContextPtr ctxt, 
int nargs)
+ void
+ xsltGenerateIdFunction(xmlXPathParserContextPtr ctxt, int nargs){
+ xmlNodePtr cur = NULL;
+-unsigned long val;
+-xmlChar str[20];
++long val;
++xmlChar str[30];
++xmlDocPtr doc;
+ 
+ if (nargs == 0) {
+   cur = ctxt->context->node;
+@@ -694,9 +695,24 @@ xsltGenerateIdFunction(xmlXPathParserContextPtr ctxt, int 
nargs){
+  * Okay this is ugly but should work, use the NodePtr address
+  * to forge the ID
+  */
+-val = (unsigned long)((char *)cur - (char *)0);
+-val /= sizeof(xmlNode);
+-sprintf((char *)str, "id%ld", val);
++if (cur->type != XML_NAMESPACE_DECL)
++doc = cur->doc;
++else {
++xmlNsPtr ns = (xmlNsPtr) cur;
++
++if (ns->context != NULL)
++doc = ns->context;
++else
++doc = ctxt->context->doc;
++
++}
++
++val = (long)((char *)cur - (char *)doc);
++if (val >= 0) {
++  sprintf((char *)str, "idp%ld", val);
++} else {
++  sprintf((char *)str, "idm%ld", -val);
++}
+ valuePush(ctxt, xmlXPathNewString(str));
+ }
+ 
+--
+cgit v0.9.0.2

Copied: libxslt/repos/staging-i686/PKGBUILD (from rev 201610, 
libxslt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 23:16:21 UTC (rev 201611)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=libxslt
+pkgver=1.1.28
+pkgrel=3
+pkgdesc="XML stylesheet transformation library"
+arch=('i686' 'x86_64')
+url="http://xmlsoft.org/XSLT/";
+license=('custom')
+depends=('libxml2' 'libgcrypt')
+makedepends=('python2')
+checkdepends=('docbook-xml')
+source=(ftp://xmlsoft.org/libxslt/${pkgname}-${pkgver}.tar.gz)
+md5sums=('9667bf6f9310b957254fdcf6596600b7')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
+  ./configure --prefix=/usr --with-python=/usr/bin/python2
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -f "${pkgdir}"/usr/lib/python*/site-packages/*.a
+}

Copied: libxslt/repos/staging-x86_64/CVE-2011-1202.patch (from rev 201610, 
libxslt/trunk/CVE-2011-1202.patch)
===
--- staging-x86_64/CVE-2011-1202.patch  (rev 0)
+++ staging-x86_64/CVE-2011-1202.patch  2013-12-16 23:16:21 UTC (rev 201611)
@@ -0,0 +1,56 @@
+From ecb6bcb8d1b7e44842edde3929f412d46b40c89f Mon Sep 17 00:00:00 2001
+From: Daniel Veillard 
+Date: Tue, 22 Feb 2011 02:14:23 +
+Subject: Fix generate-id() to not expose object addresses
+
+As pointed out by Chris Evans  it's better
+security wise to not expos

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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:16:12
  Author: thomas
Revision: 201610

upgpkg: libxslt 1.1.28-3: rebuild for libgcrypt 1.6.0

Modified:
  libxslt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:14:54 UTC (rev 201609)
+++ PKGBUILD2013-12-16 23:16:12 UTC (rev 201610)
@@ -4,7 +4,7 @@
 
 pkgname=libxslt
 pkgver=1.1.28
-pkgrel=2
+pkgrel=3
 pkgdesc="XML stylesheet transformation library"
 arch=('i686' 'x86_64')
 url="http://xmlsoft.org/XSLT/";



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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 00:16:00
  Author: eric
Revision: 102633

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 102632, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 23:14:45 UTC (rev 102632)
+++ PKGBUILD2013-12-16 23:16:00 UTC (rev 102633)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2013.12.11.2
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/";
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('04a29b9bd69f74fa276546fe997e89bf123aa222'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
-"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 102632, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 23:16:00 UTC (rev 102633)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2013.12.16.7
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/";
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('eb6ac0c7106036c2c2530ae29a610c2354dc'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2013-12-16 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 00:14:45
  Author: eric
Revision: 102632

upgpkg: youtube-dl 2013.12.16.7-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 22:19:33 UTC (rev 102631)
+++ PKGBUILD2013-12-16 23:14:45 UTC (rev 102632)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2013.12.11.2
+pkgver=2013.12.16.7
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('ffmpeg: for video post-processing')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('04a29b9bd69f74fa276546fe997e89bf123aa222'
+sha1sums=('eb6ac0c7106036c2c2530ae29a610c2354dc'
   'SKIP')
 
 prepare() {



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:08:59
  Author: thomas
Revision: 201607

upgpkg: gnupg 2.0.22-2: rebuild for libgcrypt 1.6.0

Modified:
  gnupg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 23:01:55 UTC (rev 201606)
+++ PKGBUILD2013-12-16 23:08:59 UTC (rev 201607)
@@ -6,7 +6,7 @@
 
 pkgname=gnupg
 pkgver=2.0.22
-pkgrel=1
+pkgrel=2
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='http://www.gnupg.org/'
 license=('GPL')



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

2013-12-16 Thread Thomas Bächler
Date: Tuesday, December 17, 2013 @ 00:09:11
  Author: thomas
Revision: 201608

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

Added:
  gnupg/repos/staging-i686/
  gnupg/repos/staging-i686/PKGBUILD
(from rev 201607, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-i686/install
(from rev 201607, gnupg/trunk/install)
  gnupg/repos/staging-i686/protect-tool-env.patch
(from rev 201607, gnupg/trunk/protect-tool-env.patch)
  gnupg/repos/staging-x86_64/
  gnupg/repos/staging-x86_64/PKGBUILD
(from rev 201607, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-x86_64/install
(from rev 201607, gnupg/trunk/install)
  gnupg/repos/staging-x86_64/protect-tool-env.patch
(from rev 201607, gnupg/trunk/protect-tool-env.patch)

---+
 staging-i686/PKGBUILD |   61 
 staging-i686/install  |   20 ++
 staging-i686/protect-tool-env.patch   |   28 ++
 staging-x86_64/PKGBUILD   |   61 
 staging-x86_64/install|   20 ++
 staging-x86_64/protect-tool-env.patch |   28 ++
 6 files changed, 218 insertions(+)

Copied: gnupg/repos/staging-i686/PKGBUILD (from rev 201607, 
gnupg/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 23:09:11 UTC (rev 201608)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.0.22
+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')
+sha1sums=('9ba9ee288e9bf813e0f1e25cbe06b58d3072d8b8' 'SKIP'
+  '2ec97ba55ae47ff0d63bc813b8c64cb79cef11db')
+
+install=install
+
+conflicts=('gnupg2')
+provides=("gnupg2=${pkgver}")
+replaces=('gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../protect-tool-env.patch # FS#31900
+}
+
+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/staging-i686/install (from rev 201607, gnupg/trunk/install)
===
--- staging-i686/install(rev 0)
+++ staging-i686/install2013-12-16 23:09:11 UTC (rev 201608)
@@ -0,0 +1,20 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+  done
+}

Copied: gnupg/repos/staging-i686/protect-tool-env.patch (from rev 201607, 
gnupg/trunk/protect-tool-env.patch)
===
--- staging-i686/protect-tool-env.patch (rev 0)
+++ staging-i686/protect-tool-env.patch 2013-12-16 23:09:11 UTC (rev 201608)
@@ -0,0 +1,28 @@
+diff -Naur old/agent/protect-tool.c new/agent/protect-tool.c
+--- old/agent/protect-tool.c   2012-12-08 13:53:17.067611957 +1100
 new/agent/protect-tool.c   2012-12-08 13:53:28.247633012 +1100
+@@ -102,6 +102,7 @@
+ static int opt_status_msg;
+ static const char *opt_p12_charset;
+ static const char *opt_agent_program; 
++static session_env_t opt_session_env;
+ 
+ static char *get_passphrase (int promptno);
+ static void release_passphrase (char *pw);
+@@ -1040,6 +1041,7 @@
+ 
+   opt_homedir = default_homedir ();
+ 
++  opt_session_env = session_env_new ();
+ 
+   pa

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

2013-12-16 Thread Andreas Radke
Date: Tuesday, December 17, 2013 @ 00:01:55
  Author: andyrtr
Revision: 201606

add comment how to rebuild after a .so bump

Modified:
  libgcrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 22:53:22 UTC (rev 201605)
+++ PKGBUILD2013-12-16 23:01:55 UTC (rev 201606)
@@ -1,6 +1,10 @@
 # $Id$
 # Maintainer: Andreas Radke 
 
+# after a .so bump first rebuild dirmngr
+# with sudo testing-x86_64-build -- -I libgcrypt-1.6.0-1-x86_64.pkg.tar.xz
+# then cp /usr/lib/libgcrypt.so.11 
/var/lib/archbuild/staging-x86_64/root/usr/lib/ and do staging-x86_64-build
+
 pkgname=libgcrypt
 pkgver=1.6.0
 pkgrel=1



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

2013-12-16 Thread Andreas Radke
Date: Monday, December 16, 2013 @ 23:53:08
  Author: andyrtr
Revision: 201604

upgpkg: dirmngr 1.1.1-2

libcrypgt rebuild

Modified:
  dirmngr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 22:42:05 UTC (rev 201603)
+++ PKGBUILD2013-12-16 22:53:08 UTC (rev 201604)
@@ -3,7 +3,7 @@
 
 pkgname=dirmngr
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A daemon to handle CRL and certificate requests"
 arch=('i686' 'x86_64')
 license=('GPL')



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

2013-12-16 Thread Andreas Radke
Date: Monday, December 16, 2013 @ 23:53:22
  Author: andyrtr
Revision: 201605

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

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

+
 staging-i686/PKGBUILD  |   30 ++
 staging-i686/dirmngr.install   |   20 
 staging-x86_64/PKGBUILD|   30 ++
 staging-x86_64/dirmngr.install |   20 
 4 files changed, 100 insertions(+)

Copied: dirmngr/repos/staging-i686/PKGBUILD (from rev 201604, 
dirmngr/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 22:53:22 UTC (rev 201605)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=dirmngr
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="A daemon to handle CRL and certificate requests"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="ftp://ftp.gnupg.org/gcrypt/dirmngr";
+depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
+install=dirmngr.install
+md5sums=('f5a40e93bcf07a94522579bfd58a2c96')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # FIX for https://bugzilla.redhat.com/565131
+  # not sure how best to turn this into something more upstreamable
+  # patch configure to try this combo first? -- Rex
+  # https://bugs.archlinux.org/task/28606
+  export LDAPLIBS="-lldap -llber"
+  ./configure --prefix=/usr  --libexecdir=/usr/lib
+  make 
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: dirmngr/repos/staging-i686/dirmngr.install (from rev 201604, 
dirmngr/trunk/dirmngr.install)
===
--- staging-i686/dirmngr.install(rev 0)
+++ staging-i686/dirmngr.install2013-12-16 22:53:22 UTC (rev 201605)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(dirmngr.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Copied: dirmngr/repos/staging-x86_64/PKGBUILD (from rev 201604, 
dirmngr/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-16 22:53:22 UTC (rev 201605)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=dirmngr
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="A daemon to handle CRL and certificate requests"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="ftp://ftp.gnupg.org/gcrypt/dirmngr";
+depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
+install=dirmngr.install
+md5sums=('f5a40e93bcf07a94522579bfd58a2c96')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # FIX for https://bugzilla.redhat.com/565131
+  # not sure how best to turn this into something more upstreamable
+  # patch configure to try this combo first? -- Rex
+  # https://bugs.archlinux.org/task/28606
+  export LDAPLIBS="-lldap -llber"
+  ./configure --prefix=/usr  --libexecdir=/usr/lib
+  make 
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: dirmngr/repos/staging-x86_64/dirmngr.install (from rev 201604, 
dirmngr/trunk/dirmngr.install)
===
--- staging-x86_64/dirmngr.install  (rev 0)
+++ staging-x86_64/dirmngr.install  2013-12-16 22:53:22 UTC (rev 201605)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(dirmngr.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}



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

2013-12-16 Thread Thomas Bächler
Date: Monday, December 16, 2013 @ 23:42:05
  Author: thomas
Revision: 201603

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

Added:
  cryptsetup/repos/testing-i686/
  cryptsetup/repos/testing-i686/PKGBUILD
(from rev 201602, cryptsetup/trunk/PKGBUILD)
  cryptsetup/repos/testing-i686/encrypt_hook
(from rev 201602, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/testing-i686/encrypt_install
(from rev 201602, cryptsetup/trunk/encrypt_install)
  cryptsetup/repos/testing-i686/sd-encrypt
(from rev 201602, cryptsetup/trunk/sd-encrypt)
  cryptsetup/repos/testing-x86_64/
  cryptsetup/repos/testing-x86_64/PKGBUILD
(from rev 201602, cryptsetup/trunk/PKGBUILD)
  cryptsetup/repos/testing-x86_64/encrypt_hook
(from rev 201602, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/testing-x86_64/encrypt_install
(from rev 201602, cryptsetup/trunk/encrypt_install)
  cryptsetup/repos/testing-x86_64/sd-encrypt
(from rev 201602, cryptsetup/trunk/sd-encrypt)

+
 testing-i686/PKGBUILD  |   41 +++
 testing-i686/encrypt_hook  |  139 +++
 testing-i686/encrypt_install   |   44 
 testing-i686/sd-encrypt|   42 +++
 testing-x86_64/PKGBUILD|   41 +++
 testing-x86_64/encrypt_hook|  139 +++
 testing-x86_64/encrypt_install |   44 
 testing-x86_64/sd-encrypt  |   42 +++
 8 files changed, 532 insertions(+)

Copied: cryptsetup/repos/testing-i686/PKGBUILD (from rev 201602, 
cryptsetup/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-16 22:42:05 UTC (rev 201603)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+pkgname=cryptsetup
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
+arch=(i686 x86_64)
+license=('GPL')
+url="http://code.google.com/p/cryptsetup/";
+groups=('base')
+depends=('device-mapper' 'libgcrypt' 'popt' 'util-linux')
+options=('!emptydirs')
+source=(http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
+http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2.asc
+encrypt_hook
+encrypt_install
+sd-encrypt)
+md5sums=('a7aeb549a543eeac433eadfb6bc67837'
+ 'SKIP'
+ 'c279d86d6dc18322c054d2272ebb9e90'
+ '21c45f9cab3e0b5165f68358884fbd0f'
+ '6cf7e170ecd13e42fe829209628fdb4d')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver}
+  ./configure --prefix=/usr --disable-static --enable-cryptsetup-reencrypt
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # install hook
+  install -D -m644 "${srcdir}"/encrypt_hook 
"${pkgdir}"/usr/lib/initcpio/hooks/encrypt
+  install -D -m644 "${srcdir}"/encrypt_install 
"${pkgdir}"/usr/lib/initcpio/install/encrypt
+  install -D -m644 "${srcdir}"/sd-encrypt 
"${pkgdir}"/usr/lib/initcpio/install/sd-encrypt
+
+  # usrmove
+  cd "$pkgdir"/usr
+  mv sbin bin
+}

Copied: cryptsetup/repos/testing-i686/encrypt_hook (from rev 201602, 
cryptsetup/trunk/encrypt_hook)
===
--- testing-i686/encrypt_hook   (rev 0)
+++ testing-i686/encrypt_hook   2013-12-16 22:42:05 UTC (rev 201603)
@@ -0,0 +1,139 @@
+#!/usr/bin/ash
+
+run_hook() {
+modprobe -a -q dm-crypt >/dev/null 2>&1
+[ "${quiet}" = "y" ] && CSQUIET=">/dev/null"
+
+# Get keyfile if specified
+ckeyfile="/crypto_keyfile.bin"
+if [ -n "$cryptkey" ]; then
+IFS=: read ckdev ckarg1 ckarg2 &1
+umount /ckey
+;;
+*)
+# Read raw data from the block device
+# ckarg1 is numeric: ckarg1=offset, ckarg2=length
+dd if="$resolved" of="$ckeyfile" bs=1 skip="$ckarg1" 
count="$ckarg2" >/dev/null 2>&1
+;;
+esac
+fi
+[ ! -f ${ckeyfile} ] && echo "Keyfile could not be opened. Reverting 
to passphrase."
+fi
+
+if [ -n "${cryptdevice}" ]; then
+DEPRECATED_CRYPT=0
+IFS=: read cryptdev cryptname cryptoptions <&2
+;;
+esac
+done
+
+if resolved=$(resolve_device "${cryptdev}" ${rootdelay}); then
+if cryptsetup isLuks ${resolved} >/dev/null 2>&1; then
+[ ${DEPRECATED_CRYPT} -eq 1 ] && warn_deprecated
+dopassphrase=1
+# If keyfile exists, try to use that
+if [ -f ${ckeyfile} ]; then
+if eval cryptsetup --key-file ${ckeyfile} open --type luks 
${resolved} ${cryptname} ${cryptargs} ${CSQUIET}; then
+dopassphrase=0
+else
+echo "Invalid keyfile. Revertin

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

2013-12-16 Thread Thomas Bächler
Date: Monday, December 16, 2013 @ 23:41:47
  Author: thomas
Revision: 201602

upgpkg: cryptsetup 1.6.3-1

Modified:
  cryptsetup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 22:30:58 UTC (rev 201601)
+++ PKGBUILD2013-12-16 22:41:47 UTC (rev 201602)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=cryptsetup
-pkgver=1.6.2
-pkgrel=2
+pkgver=1.6.3
+pkgrel=1
 pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
 arch=(i686 x86_64)
 license=('GPL')
@@ -15,7 +15,7 @@
 encrypt_hook
 encrypt_install
 sd-encrypt)
-md5sums=('cd834da49fbe92dd66df02cc5c61280f'
+md5sums=('a7aeb549a543eeac433eadfb6bc67837'
  'SKIP'
  'c279d86d6dc18322c054d2272ebb9e90'
  '21c45f9cab3e0b5165f68358884fbd0f'



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

2013-12-16 Thread Andreas Radke
Date: Monday, December 16, 2013 @ 23:30:44
  Author: andyrtr
Revision: 201600

upgpkg: libgcrypt 1.6.0-1

upstream update 1.6.0

Modified:
  libgcrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 17:59:31 UTC (rev 201599)
+++ PKGBUILD2013-12-16 22:30:44 UTC (rev 201600)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=libgcrypt
-pkgver=1.5.3
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="General purpose cryptographic library based on the code from GnuPG"
 arch=(i686 x86_64)
@@ -11,13 +11,11 @@
 depends=('libgpg-error>=1.10-2')
 options=('!emptydirs')
 install=$pkgname.install
-source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgcrypt/${pkgname}-${pkgver}.tar.bz2
-)
-sha1sums=('2c6553cc17f2a1616d512d6870fe95edf6b0e26e')
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('43283c0b41c41e3d3bc13c2d8f937dfe2aaa1a77')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \
--disable-static \
--disable-padlock-support
@@ -25,11 +23,11 @@
 }
 
 check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make check
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }



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

2013-12-16 Thread Andreas Radke
Date: Monday, December 16, 2013 @ 23:30:58
  Author: andyrtr
Revision: 201601

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

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

--+
 staging-i686/PKGBUILD|   33 +
 staging-i686/libgcrypt.install   |   20 
 staging-x86_64/PKGBUILD  |   33 +
 staging-x86_64/libgcrypt.install |   20 
 4 files changed, 106 insertions(+)

Copied: libgcrypt/repos/staging-i686/PKGBUILD (from rev 201600, 
libgcrypt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-16 22:30:58 UTC (rev 201601)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=libgcrypt
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="General purpose cryptographic library based on the code from GnuPG"
+arch=(i686 x86_64)
+url="http://www.gnupg.org";
+license=('LGPL')
+depends=('libgpg-error>=1.10-2')
+options=('!emptydirs')
+install=$pkgname.install
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('43283c0b41c41e3d3bc13c2d8f937dfe2aaa1a77')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-padlock-support
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: libgcrypt/repos/staging-i686/libgcrypt.install (from rev 201600, 
libgcrypt/trunk/libgcrypt.install)
===
--- staging-i686/libgcrypt.install  (rev 0)
+++ staging-i686/libgcrypt.install  2013-12-16 22:30:58 UTC (rev 201601)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(gcrypt.info.gz gcrypt.info-1.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}

Copied: libgcrypt/repos/staging-x86_64/PKGBUILD (from rev 201600, 
libgcrypt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-16 22:30:58 UTC (rev 201601)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=libgcrypt
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="General purpose cryptographic library based on the code from GnuPG"
+arch=(i686 x86_64)
+url="http://www.gnupg.org";
+license=('LGPL')
+depends=('libgpg-error>=1.10-2')
+options=('!emptydirs')
+install=$pkgname.install
+source=(ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('43283c0b41c41e3d3bc13c2d8f937dfe2aaa1a77')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-padlock-support
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: libgcrypt/repos/staging-x86_64/libgcrypt.install (from rev 201600, 
libgcrypt/trunk/libgcrypt.install)
===
--- staging-x86_64/libgcrypt.install(rev 0)
+++ staging-x86_64/libgcrypt.install2013-12-16 22:30:58 UTC (rev 201601)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(gcrypt.info.gz gcrypt.info-1.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 23:19:33
  Author: arodseth
Revision: 102631

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 22:19:27 UTC (rev 102630)
+++ PKGBUILD2013-12-16 22:19:33 UTC (rev 102631)
@@ -1,38 +0,0 @@
-# Contributor: Felix Kaiser 
-
-pkgbase=python-mock
-pkgname=(python2-mock python-mock)
-pkgver=1.0.1
-pkgrel=1
-pkgdesc="A Python Mocking and Patching Library for Testing"
-url='http://www.voidspace.org.uk/python/mock/'
-makedepends=('python2' 'python')
-license=('BSD')
-arch=('any')
-source=("http://pypi.python.org/packages/source/m/mock/mock-$pkgver.tar.gz";)
-md5sums=('c3971991738caa55ec7c356bbc154ee2')
-
-build() {
-  cd "$srcdir"
-  cp -rf "mock-$pkgver" "mock2-$pkgver"
-
-  cd "$srcdir/mock-$pkgver"
-  python3 setup.py build
-
-  cd "$srcdir/mock2-$pkgver"
-  python2 setup.py build
-}
-
-package_python-mock() {
-depends=('python')
-  cd "$srcdir/mock-$pkgver"
-  python3 setup.py install --optimize=1 --root="$pkgdir"
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-mock() {
-depends=('python2')
-  cd "$srcdir/mock2-$pkgver"
-  python2 setup.py install --optimize=1 --root="$pkgdir"
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-mock/repos/community-any/PKGBUILD (from rev 102630, 
python-mock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 22:19:33 UTC (rev 102631)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: jelle van der Waa 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-mock
+pkgname=(python2-mock python-mock)
+pkgver=1.0.1
+pkgrel=2
+pkgdesc='Mocking and Patching Library for Testing'
+url='http://www.voidspace.org.uk/python/mock/'
+makedepends=('python2' 'python')
+license=('BSD')
+arch=('any')
+source=("http://pypi.python.org/packages/source/m/mock/mock-$pkgver.tar.gz";)
+md5sums=('c3971991738caa55ec7c356bbc154ee2')
+
+build() {
+  cd "$srcdir"
+  cp -rf "mock-$pkgver" "mock2-$pkgver"
+
+  cd "$srcdir/mock-$pkgver"
+  python3 setup.py build
+
+  cd "$srcdir/mock2-$pkgver"
+  python2 setup.py build
+}
+
+package_python-mock() {
+depends=('python')
+  cd "$srcdir/mock-$pkgver"
+  python3 setup.py install --optimize=1 --root="$pkgdir"
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-mock() {
+depends=('python2')
+  cd "$srcdir/mock2-$pkgver"
+  python2 setup.py install --optimize=1 --root="$pkgdir"
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 23:19:27
  Author: arodseth
Revision: 102630

upgpkg: python-mock 1.0.1-2

Modified:
  python-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 22:05:45 UTC (rev 102629)
+++ PKGBUILD2013-12-16 22:19:27 UTC (rev 102630)
@@ -5,8 +5,8 @@
 pkgbase=python-mock
 pkgname=(python2-mock python-mock)
 pkgver=1.0.1
-pkgrel=1
-pkgdesc="A Python Mocking and Patching Library for Testing"
+pkgrel=2
+pkgdesc='Mocking and Patching Library for Testing'
 url='http://www.voidspace.org.uk/python/mock/'
 makedepends=('python2' 'python')
 license=('BSD')



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 23:05:45
  Author: arodseth
Revision: 102629

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

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

--+
 /PKGBUILD|   56 +
 /talkfilters.install |   42 
 community-i686/PKGBUILD  |   25 --
 community-i686/talkfilters.install   |   21 
 community-x86_64/PKGBUILD|   25 --
 community-x86_64/talkfilters.install |   21 
 6 files changed, 98 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 22:05:36 UTC (rev 102628)
+++ community-i686/PKGBUILD 2013-12-16 22:05:45 UTC (rev 102629)
@@ -1,25 +0,0 @@
-# Maintainer: ConnorBehan 
-
-pkgname=talkfilters
-pkgver=2.3.8
-pkgrel=2
-pkgdesc="Filters to translate text into dialects that GNU finds funny"
-arch=(i686 x86_64)
-url="http://www.hyperrealm.com/main.php?s=talkfilters";
-depends=('glibc')
-license=('custom:Public Domain')
-install=$pkgname.install
-source=(http://www.hyperrealm.com/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make prefix="$pkgdir"/usr install
-}
-
-md5sums=('c11c6863a1c246a8d49a80a1168b54c8')

Copied: talkfilters/repos/community-i686/PKGBUILD (from rev 102628, 
talkfilters/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 22:05:45 UTC (rev 102629)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: ConnorBehan 
+# Contributor: Alexander Rødseth 
+
+pkgname=talkfilters
+pkgver=2.3.8
+pkgrel=3
+pkgdesc='Filters to translate text into dialects that GNU finds funny'
+arch=('x86_64' 'i686')
+url='http://www.hyperrealm.com/main.php?s=talkfilters'
+depends=('glibc')
+license=('GPL2')
+install="$pkgname.install"
+source=("http://www.hyperrealm.com/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha256sums=('4681e71170af06c6bffcd4e454eff67224cde06f0d678d26dc72da45f02ecca6')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" prefix="$pkgdir/usr" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/talkfilters.install
===
--- community-i686/talkfilters.install  2013-12-16 22:05:36 UTC (rev 102628)
+++ community-i686/talkfilters.install  2013-12-16 22:05:45 UTC (rev 102629)
@@ -1,21 +0,0 @@
-infodir=usr/share/info
-filelist=(talkfilters.info)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
-usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-

Copied: talkfilters/repos/community-i686/talkfilters.install (from rev 102628, 
talkfilters/trunk/talkfilters.install)
===
--- community-i686/talkfilters.install  (rev 0)
+++ community-i686/talkfilters.install  2013-12-16 22:05:45 UTC (rev 102629)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(talkfilters.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-16 22:05:36 UTC (rev 102628)
+++ community-x86_64/PKGBUILD   2013-12-16 22:05:45 UTC (rev 102629)
@@ -1,25 +0,0 @@
-# Maintainer: ConnorBehan 
-
-pkgname=talkfilters
-pkgver=2.3.8
-pkgrel

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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 23:05:36
  Author: arodseth
Revision: 102628

upgpkg: talkfilters 2.3.8-3

Modified:
  talkfilters/trunk/PKGBUILD

--+
 PKGBUILD |   25 ++---
 1 file changed, 14 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 21:55:26 UTC (rev 102627)
+++ PKGBUILD2013-12-16 22:05:36 UTC (rev 102628)
@@ -1,25 +1,28 @@
+# $Id$
 # Maintainer: ConnorBehan 
+# Contributor: Alexander Rødseth 
 
 pkgname=talkfilters
 pkgver=2.3.8
-pkgrel=2
-pkgdesc="Filters to translate text into dialects that GNU finds funny"
-arch=(i686 x86_64)
-url="http://www.hyperrealm.com/main.php?s=talkfilters";
+pkgrel=3
+pkgdesc='Filters to translate text into dialects that GNU finds funny'
+arch=('x86_64' 'i686')
+url='http://www.hyperrealm.com/main.php?s=talkfilters'
 depends=('glibc')
-license=('custom:Public Domain')
-install=$pkgname.install
-source=(http://www.hyperrealm.com/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+license=('GPL2')
+install="$pkgname.install"
+source=("http://www.hyperrealm.com/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha256sums=('4681e71170af06c6bffcd4e454eff67224cde06f0d678d26dc72da45f02ecca6')
 
 build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
+  cd "$pkgname-$pkgver"
+
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make prefix="$pkgdir"/usr install
+  make -C "$pkgname-$pkgver" prefix="$pkgdir/usr" install
 }
 
-md5sums=('c11c6863a1c246a8d49a80a1168b54c8')
+# vim:set ts=2 sw=2 et:



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 22:55:26
  Author: arodseth
Revision: 102627

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

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

---+
 /PKGBUILD |  140 
 community-i686/PKGBUILD   |   58 
 community-i686/epmd.conf  |3 
 community-i686/epmd.service   |   11 +++
 community-i686/epmd.socket|9 ++
 community-x86_64/PKGBUILD |   58 
 community-x86_64/epmd.conf|3 
 community-x86_64/epmd.service |   11 +++
 community-x86_64/epmd.socket  |9 ++
 9 files changed, 186 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 21:55:05 UTC (rev 102626)
+++ community-i686/PKGBUILD 2013-12-16 21:55:26 UTC (rev 102627)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgname=erlang-nox
-pkgver=R16B03
-pkgrel=1
-pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('custom')
-depends=('ncurses' 'openssl')
-makedepends=('perl' 'lksctp-tools' 'unixodbc')
-conflicts=('erlang')
-optdepends=('erlang-unixodbc: database support'
-'java-environment: for Java support'
-'lksctp-tools: for SCTP support')
-options=('staticlibs')
-source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
-"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";)
-sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
-'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452')
-
-build() {
-  cd "otp_src_${pkgver/_1/}"
-
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package() {
-  cd "otp_src_${pkgver/_1/}"
-
-  make DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp_src_${pkgver/_1/}/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang"
-
-  # License
-  install -Dm0644 "$srcdir/otp_src_${pkgver/_1/}/EPLICENCE" \
-"$pkgdir/usr/share/licenses/$pkgname/EPLICENCE"
-
-  # Remove files that are packaged as erlang-unixodbc
-  rm -r "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: erlang-nox/repos/community-i686/PKGBUILD (from rev 102626, 
erlang-nox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 21:55:26 UTC (rev 102627)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang-nox
+pkgver=R16B03
+pkgrel=2
+pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
+arch=('x86_64' 'i686')
+url='http://www.erlang.org/'
+license=('custom')
+depends=('ncurses' 'openssl')
+makedepends=('perl' 'lksctp-tools' 'unixodbc')
+conflicts=('erlang')
+optdepends=('erlang-unixodbc: database support'
+'java-environment: for Java support'
+'lksctp-tools: for SCTP support')
+options=('staticlibs')
+source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
+"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";
+'epmd.service'
+'epmd.socket'
+'epmd.conf')
+sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
+'a2038d32e7c940d5d04f73

[arch-commits] Commit in plan9port/trunk (PKGBUILD plan9.install plan9.sh)

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 22:54:30
  Author: arodseth
Revision: 102624

upgpkg: plan9port 20131024-2

Modified:
  plan9port/trunk/PKGBUILD
  plan9port/trunk/plan9.install
  plan9port/trunk/plan9.sh

---+
 PKGBUILD  |   26 ++
 plan9.install |8 
 plan9.sh  |2 +-
 3 files changed, 15 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 20:12:56 UTC (rev 102623)
+++ PKGBUILD2013-12-16 21:54:30 UTC (rev 102624)
@@ -6,7 +6,7 @@
 
 pkgname=plan9port
 pkgver=20131024
-pkgrel=1
+pkgrel=2
 pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
 arch=('x86_64' 'i686')
 url='http://swtch.com/plan9port/'
@@ -19,20 +19,22 @@
 source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz";
 'plan9.sh')
 sha256sums=('5cba7856bdb35a96a923120e61d320d424fee1a6f09b7af3e87eb7814a747d4f'
-'3d899c30f289c20eecedf9961d61c0c9dfe4c0dc9b1a7642aca25e0534883cf2')
+'c216efa3455ba0b22b1723ae62e4c1e21b3a776a760d8fcedb902ff994b701c1')
 
 package() {
   cd "$pkgname"
 
-  d=/usr/local
+  # TODO: Find a way to install in a better directory than /usr/local/plan9
 
+  d=usr/local
+
   ./INSTALL -b
   install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
-  install -d "$pkgdir$d"
+  install -d "$pkgdir/$d"
   install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r "$srcdir/$pkgname" "$pkgdir/$d/"
-  cd "$pkgdir$d/$pkgname"
-  ./INSTALL -c -r "$pkgdir$d/$pkgname"
+  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
+  cd "$pkgdir/$d/plan9"
+  ./INSTALL -c -r "$pkgdir/$d/plan9"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 
   # Clean up
@@ -43,10 +45,10 @@
 LICENSE
 
   # Fix hardcoded paths
-  for f in `grep -H -r "$pkgdir$d/$pkgname" | cut -d: -f1`; do
-echo -n "\t$f"
-[ -e "$f" ] && sed -i "s:$pkgdir$d/$pkgname:$d/$pkgname:" "$f" || true
-  done
+  #for f in `grep -H -r "$pkgdir$d/$pkgname" | cut -d: -f1`; do
+  #  echo -n "\t$f"
+  #  [ -e "$f" ] && sed -i "s:$pkgdir$d/$pkgname:$d/$pkgname:" "$f" || true
+  #done
 
   # Fix python scripts
   find "$pkgdir" -name '*.py' -print0 |xargs -0 \
@@ -60,7 +62,7 @@
   done
 
   # Decompress the plan9 man pages
-  for i in `find $pkgdir$d/plan9/man -type f`; do
+  for i in `find $pkgdir/$d/plan9/man -type f`; do
 if [ ${i##*.} = "gz" ]; then
   gunzip "$i"
 fi

Modified: plan9.install
===
--- plan9.install   2013-12-16 20:12:56 UTC (rev 102623)
+++ plan9.install   2013-12-16 21:54:30 UTC (rev 102624)
@@ -6,11 +6,3 @@
   echo "==> Run '9 man 1 intro | less' to begin"
   source /etc/profile.d/plan9.sh
 }
-
-post_upgrade() {
-  post_install
-}
-
-pre_upgrade() {
-  post_remove
-}

Modified: plan9.sh
===
--- plan9.sh2013-12-16 20:12:56 UTC (rev 102623)
+++ plan9.sh2013-12-16 21:54:30 UTC (rev 102624)
@@ -1,2 +1,2 @@
-export PLAN9=/usr/local/plan9port
+export PLAN9=/usr/local/plan9
 export PATH=$PATH:$PLAN9/bin



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 22:55:05
  Author: arodseth
Revision: 102626

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 21:54:40 UTC (rev 102625)
+++ community-i686/PKGBUILD 2013-12-16 21:55:05 UTC (rev 102626)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Maintainer: Alexander Rødseth 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=('erlang' 'erlang-unixodbc')
-pkgver=R16B03
-pkgrel=1
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('custom')
-makedepends=('perl' 'mesa' 'lksctp-tools' 'unixodbc' 'wxgtk' 'wxgtk2.9')
-options=('staticlibs')
-source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
-"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";
-'epmd.service'
-'epmd.socket'
-'epmd.conf')
-sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
-'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
-
-build() {
-  cd "otp_src_${pkgver/_1/}"
-
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=('ncurses' 'glu' 'wxgtk' 'wxgtk2.9' 'openssl')
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=('erlang-nox')
-  conflicts=('erlang-nox')
-
-  cd "otp_src_${pkgver/_1/}"
-
-  make DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp_src_${pkgver/_1/}/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm0644 "$srcdir/otp_src_${pkgver/_1/}/EPLICENCE" \
-"$pkgdir/usr/share/licenses/$pkgname/EPLICENCE"
-
-  # Move over files that will be packaged as erlang-unixodbc
-  mkdir "$srcdir/unixodbc"
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/etc/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/etc/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=('unixodbc' 'erlang-nox')
-
-  # Get the files that should be packaged as erlang-unixodbc
-  mkdir -p "$pkgdir/usr/lib/erlang/"{lib,man/man3}
-  mv "$srcdir/unixodbc/"* "$pkgdir/usr/lib/erlang/lib/"
-  mv "$srcdir/odbc

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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 22:54:40
  Author: arodseth
Revision: 102625

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

Added:
  plan9port/repos/community-i686/PKGBUILD
(from rev 102624, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-i686/plan9.install
(from rev 102624, plan9port/trunk/plan9.install)
  plan9port/repos/community-i686/plan9.sh
(from rev 102624, plan9port/trunk/plan9.sh)
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 102624, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/plan9.install
(from rev 102624, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 102624, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-i686/PKGBUILD
  plan9port/repos/community-i686/plan9.install
  plan9port/repos/community-i686/plan9.sh
  plan9port/repos/community-x86_64/PKGBUILD
  plan9port/repos/community-x86_64/plan9.install
  plan9port/repos/community-x86_64/plan9.sh

+
 /PKGBUILD  |  144 +++
 /plan9.install |   16 
 /plan9.sh  |4 +
 community-i686/PKGBUILD|   70 --
 community-i686/plan9.install   |   16 
 community-i686/plan9.sh|2 
 community-x86_64/PKGBUILD  |   70 --
 community-x86_64/plan9.install |   16 
 community-x86_64/plan9.sh  |2 
 9 files changed, 164 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 21:54:30 UTC (rev 102624)
+++ community-i686/PKGBUILD 2013-12-16 21:54:40 UTC (rev 102625)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: phrakture 
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon 
-
-pkgname=plan9port
-pkgver=20131024
-pkgrel=1
-pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman' 'staticlibs')
-source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz";
-'plan9.sh')
-sha256sums=('5cba7856bdb35a96a923120e61d320d424fee1a6f09b7af3e87eb7814a747d4f'
-'3d899c30f289c20eecedf9961d61c0c9dfe4c0dc9b1a7642aca25e0534883cf2')
-
-package() {
-  cd "$pkgname"
-
-  d=/usr/local
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
-  install -d "$pkgdir$d"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r "$srcdir/$pkgname" "$pkgdir/$d/"
-  cd "$pkgdir$d/$pkgname"
-  ./INSTALL -c -r "$pkgdir$d/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -print0 |xargs -0 rm -f
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-LICENSE
-
-  # Fix hardcoded paths
-  for f in `grep -H -r "$pkgdir$d/$pkgname" | cut -d: -f1`; do
-echo -n "\t$f"
-[ -e "$f" ] && sed -i "s:$pkgdir$d/$pkgname:$d/$pkgname:" "$f" || true
-  done
-
-  # Fix python scripts
-  find "$pkgdir" -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-
-  # Package text files
-  for i in CHANGES CONTRIBUTORS README TODO; do
-install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
-rm -f $i
-  done
-
-  # Decompress the plan9 man pages
-  for i in `find $pkgdir$d/plan9/man -type f`; do
-if [ ${i##*.} = "gz" ]; then
-  gunzip "$i"
-fi
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: plan9port/repos/community-i686/PKGBUILD (from rev 102624, 
plan9port/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 21:54:40 UTC (rev 102625)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: phrakture 
+# Contributor: Fazlul Shahriar
+# Contributor: Chris Brannon 
+
+pkgname=plan9port
+pkgver=20131024
+pkgrel=2
+pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
+arch=('x86_64' 'i686')
+url='http://swtch.com/plan9port/'
+license=('custom')
+depends=('xorg-server' 'libxt' 'libxext' 'fuse')
+optdepends=('python2: for the codereview script')
+provides=('plan9')
+install='plan9.install'
+options=('!zipman' 'staticlibs')
+source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz";
+'plan9.sh')
+sha256sums=('5cba7856bdb35a96a923120e61d320d424fee1a6f09b7af3e87eb7814a747d4f'
+'c216efa3455ba0b22b1723ae62e4c1e21b3a776a760d8fcedb902ff994b701c1')
+
+package() {
+  cd "$pkgname"
+
+  # TODO: 

[arch-commits] Commit in (pidgin-talkfilters)

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 21:12:56
  Author: arodseth
Revision: 102623

purple-plugin-pack in [extra] is the replacement and upstream are gone

Downloads and project pages for pidgin-talkfilters are gone.
purple-plugin-pack is the replacement.
https://bitbucket.org/rekkanoryo/purple-plugin-pack/downloads

Deleted:
  pidgin-talkfilters/



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 21:01:24
  Author: arodseth
Revision: 102622

Fix for FS#38109

Added:
  erlang-nox/trunk/epmd.conf
  erlang-nox/trunk/epmd.service
  erlang-nox/trunk/epmd.socket
Modified:
  erlang-nox/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 epmd.conf|3 +++
 epmd.service |   11 +++
 epmd.socket  |9 +
 4 files changed, 38 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 20:00:39 UTC (rev 102621)
+++ PKGBUILD2013-12-16 20:01:24 UTC (rev 102622)
@@ -8,7 +8,7 @@
 
 pkgname=erlang-nox
 pkgver=R16B03
-pkgrel=1
+pkgrel=2
 pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
@@ -21,9 +21,15 @@
 'lksctp-tools: for SCTP support')
 options=('staticlibs')
 source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
-"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";)
+"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";
+'epmd.service'
+'epmd.socket'
+'epmd.conf')
 sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
-'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452')
+'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452'
+'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
+'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
+'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
 
 build() {
   cd "otp_src_${pkgver/_1/}"
@@ -53,6 +59,12 @@
 
   # Remove files that are packaged as erlang-unixodbc
   rm -r "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
+
+  # epmd service, socket and conf
+  cd "$srcdir"
+  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
+  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
+  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
 }
 
 # vim:set ts=2 sw=2 et:

Added: epmd.conf
===
--- epmd.conf   (rev 0)
+++ epmd.conf   2013-12-16 20:01:24 UTC (rev 102622)
@@ -0,0 +1,3 @@
+#ERL_EPMD_ADDRESS=
+#ERL_EPMD_PORT=4369
+#ERL_EPMD_RELAXED_COMMAND_CHECK=

Added: epmd.service
===
--- epmd.service(rev 0)
+++ epmd.service2013-12-16 20:01:24 UTC (rev 102622)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Erlang Port Mapper Daemon
+
+[Service]
+EnvironmentFile=/etc/conf.d/epmd
+ExecStart=/usr/bin/epmd -daemon $EPMD_OPTS
+ExecStop=/usr/bin/epmd -kill
+Type=forking
+
+[Install]
+WantedBy=multi-user.target

Added: epmd.socket
===
--- epmd.socket (rev 0)
+++ epmd.socket 2013-12-16 20:01:24 UTC (rev 102622)
@@ -0,0 +1,9 @@
+[Unit]
+Conflicts=epmd.service
+
+[Socket]
+ListenStream=4369
+Accept=no
+
+[Install]
+WantedBy=sockets.target



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 21:00:39
  Author: arodseth
Revision: 102621

Fix for FS#38109

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 19:50:12 UTC (rev 102620)
+++ PKGBUILD2013-12-16 20:00:39 UTC (rev 102621)
@@ -9,7 +9,7 @@
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
 pkgver=R16B03
-pkgrel=1
+pkgrel=2
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
 license=('custom')
@@ -67,8 +67,8 @@
 
   # epmd service, socket and conf
   cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/etc/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/etc/systemd/system/epmd.socket"
+  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
+  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
   install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
 }
 



[arch-commits] Commit in mari0/trunk (PKGBUILD mari0.sh)

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 20:49:56
  Author: svenstaro
Revision: 102619

upgpkg: mari0 1.6-2

Depend on love08

Modified:
  mari0/trunk/PKGBUILD
  mari0/trunk/mari0.sh

--+
 PKGBUILD |6 +++---
 mari0.sh |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 19:47:58 UTC (rev 102618)
+++ PKGBUILD2013-12-16 19:49:56 UTC (rev 102619)
@@ -3,17 +3,17 @@
 
 pkgname=mari0
 pkgver=1.6
-pkgrel=1
+pkgrel=2
 pkgdesc="The Mario game with Portal gun mechanics"
 arch=('any')
 url="http://stabyourself.net/mari0/";
 license=('CCPL')
-depends=('love>=0.8')
+depends=('love08')
 _gamepkg="${pkgname}-linux.zip"
 source=(${pkgname}.sh
 ${pkgname}.desktop
 http://stabyourself.net/dl.php?file=$pkgname-1006/$pkgname-linux.zip)
-sha1sums=('165e2aa9234f3857cc971738ebf6c05ec5bed207'
+sha1sums=('3bafbd4fbcb59f139a5b25c5355908d4ab6d5e2d'
   'af4875330c5961476db4696e2453f7c0c2bea9ea'
   'c5db253e22a54b97d51923b462877c3a3b8dfbe0')
 

Modified: mari0.sh
===
--- mari0.sh2013-12-16 19:47:58 UTC (rev 102618)
+++ mari0.sh2013-12-16 19:49:56 UTC (rev 102619)
@@ -1,2 +1,2 @@
 #!/bin/bash
-love /usr/share/mari0/mari0.love
+love08 /usr/share/mari0/mari0.love



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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 20:50:12
  Author: svenstaro
Revision: 102620

archrelease: copy trunk to community-any

Added:
  mari0/repos/community-any/PKGBUILD
(from rev 102619, mari0/trunk/PKGBUILD)
  mari0/repos/community-any/mari0.desktop
(from rev 102619, mari0/trunk/mari0.desktop)
  mari0/repos/community-any/mari0.sh
(from rev 102619, mari0/trunk/mari0.sh)
Deleted:
  mari0/repos/community-any/PKGBUILD
  mari0/repos/community-any/mari0.desktop
  mari0/repos/community-any/mari0.sh

---+
 PKGBUILD  |   60 
 mari0.desktop |   22 ++--
 mari0.sh  |4 +--
 3 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 19:49:56 UTC (rev 102619)
+++ PKGBUILD2013-12-16 19:50:12 UTC (rev 102620)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: andy123 < ajs [at] online [dot] de >
-
-pkgname=mari0
-pkgver=1.6
-pkgrel=1
-pkgdesc="The Mario game with Portal gun mechanics"
-arch=('any')
-url="http://stabyourself.net/mari0/";
-license=('CCPL')
-depends=('love>=0.8')
-_gamepkg="${pkgname}-linux.zip"
-source=(${pkgname}.sh
-${pkgname}.desktop
-http://stabyourself.net/dl.php?file=$pkgname-1006/$pkgname-linux.zip)
-sha1sums=('165e2aa9234f3857cc971738ebf6c05ec5bed207'
-  'af4875330c5961476db4696e2453f7c0c2bea9ea'
-  'c5db253e22a54b97d51923b462877c3a3b8dfbe0')
-
-package() {
-   # Install Data
-   install -D -m755 "${srcdir}/${pkgname}_${pkgver}.love" 
"${pkgdir}/usr/share/${pkgname}/${pkgname}.love"
-   install -D -m644 "${srcdir}/README" 
"$pkgdir/usr/share/${pkgname}/README"
-
-   # Install Launcher
-   install -D -m755 "${srcdir}/${pkgname}.sh" 
"${pkgdir}/usr/bin/${pkgname}"
-
-   # Install Desktop
-   install -D -m644 "${srcdir}/${pkgname}.desktop" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-}

Copied: mari0/repos/community-any/PKGBUILD (from rev 102619, 
mari0/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 19:50:12 UTC (rev 102620)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: andy123 < ajs [at] online [dot] de >
+
+pkgname=mari0
+pkgver=1.6
+pkgrel=2
+pkgdesc="The Mario game with Portal gun mechanics"
+arch=('any')
+url="http://stabyourself.net/mari0/";
+license=('CCPL')
+depends=('love08')
+_gamepkg="${pkgname}-linux.zip"
+source=(${pkgname}.sh
+${pkgname}.desktop
+http://stabyourself.net/dl.php?file=$pkgname-1006/$pkgname-linux.zip)
+sha1sums=('3bafbd4fbcb59f139a5b25c5355908d4ab6d5e2d'
+  'af4875330c5961476db4696e2453f7c0c2bea9ea'
+  'c5db253e22a54b97d51923b462877c3a3b8dfbe0')
+
+package() {
+   # Install Data
+   install -D -m755 "${srcdir}/${pkgname}_${pkgver}.love" 
"${pkgdir}/usr/share/${pkgname}/${pkgname}.love"
+   install -D -m644 "${srcdir}/README" 
"$pkgdir/usr/share/${pkgname}/README"
+
+   # Install Launcher
+   install -D -m755 "${srcdir}/${pkgname}.sh" 
"${pkgdir}/usr/bin/${pkgname}"
+
+   # Install Desktop
+   install -D -m644 "${srcdir}/${pkgname}.desktop" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+}

Deleted: mari0.desktop
===
--- mari0.desktop   2013-12-16 19:49:56 UTC (rev 102619)
+++ mari0.desktop   2013-12-16 19:50:12 UTC (rev 102620)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Version=1.6
-Type=Application
-Icon=gnome-mime-application-x-love-game
-Exec=mari0
-Terminal=false
-StartupNotify=false
-Name=Mari0
-GenericName=Arcade Game
-Comment=The Mario game with Portal gun mechanics
-Categories=Game;ArcadeGame;

Copied: mari0/repos/community-any/mari0.desktop (from rev 102619, 
mari0/trunk/mari0.desktop)
===
--- mari0.desktop   (rev 0)
+++ mari0.desktop   2013-12-16 19:50:12 UTC (rev 102620)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.6
+Type=Application
+Icon=gnome-mime-application-x-love-game
+Exec=mari0
+Terminal=false
+StartupNotify=false
+Name=Mari0
+GenericName=Arcade Game
+Comment=The Mario game with Portal gun mechanics
+Categories=Game;ArcadeGame;

Deleted: mari0.sh
===
--- mari0.sh2013-12-16 19:49:56 UTC (rev 102619)
+++ mari0.sh2013-12-16 19:50:12 UTC (rev 102620)
@@ -1,2 +0,0 @@
-#!/bin/bash
-love /usr/share/mari0/mari0.love

Copied: mari0/repos/community-any/mari0.sh (from rev 102619, 
mari0/trunk/mari0.sh)
===
--- mari0.sh(rev 0)
+++ mari0.sh2013-12-16 19:50:12 UTC (rev 102620)
@@ -0,0 +1,2 @@
+#!/bin/bash
+love08 /usr/share/mari0/mari0.love



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 20:47:58
  Author: arodseth
Revision: 102618

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 19:47:45 UTC (rev 102617)
+++ community-i686/PKGBUILD 2013-12-16 19:47:58 UTC (rev 102618)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
-# Maintainer: Alexander Rødseth 
-# Contributor: Christian Neukirchen 
-# Contributor: Thomas Weißschuh 
-
-pkgname=mosh
-pkgver=1.2.4
-pkgrel=1
-pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
-arch=('x86_64' 'i686')
-url='http://mosh.mit.edu/'
-license=('GPL3')
-depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
-source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz";)
-sha256sums=('e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46')
-optdepends=('ufw-extras')
-options=('!emptydirs')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "conf/bash_completion.d/$pkgname" \
-"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mosh/repos/community-i686/PKGBUILD (from rev 102617, 
mosh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 19:47:58 UTC (rev 102618)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
+# Maintainer: Alexander Rødseth 
+# Contributor: Christian Neukirchen 
+# Contributor: Thomas Weißschuh 
+
+pkgname=mosh
+pkgver=1.2.4
+pkgrel=2
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=('x86_64' 'i686')
+url='http://mosh.mit.edu/'
+license=('GPL3')
+depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
+source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz";)
+sha256sums=('e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46')
+options=('!emptydirs')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname-$pkgver/conf/bash_completion.d/$pkgname" \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-16 19:47:45 UTC (rev 102617)
+++ community-x86_64/PKGBUILD   2013-12-16 19:47:58 UTC (rev 102618)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
-# Maintainer: Alexander Rødseth 
-# Contributor: Christian Neukirchen 
-# Contributor: Thomas Weißschuh 
-
-pkgname=mosh
-pkgver=1.2.4
-pkgrel=1
-pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
-arch=('x86_64' 'i686')
-url='http://mosh.mit.edu/'
-license=('GPL3')
-depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
-source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz";)
-sha256sums=('e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46')
-optdepends=('ufw-extras')
-options=('!emptydirs')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "conf/bash_completion.d/$pkgname" \
-"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mosh/repos/community-x86_64/PKGBUILD (from rev 102617, 
mosh/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-16 19:47:58 UTC (rev 102618)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
+# Maintainer: Alexander Rødseth 
+# Contributor: Christian Neukirchen 
+# Contributor: Thomas Weißschuh 
+
+pkgname=mosh
+pkgver=1.2.4
+pkgrel=2
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=('x86_64' 'i686')
+url='http://mosh.mit.edu/'
+license

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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 20:47:45
  Author: svenstaro
Revision: 102617

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

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

---+
 /PKGBUILD |   60 
 /love.install |   26 +
 community-i686/PKGBUILD   |   30 
 community-i686/love.install   |   13 
 community-x86_64/PKGBUILD |   30 
 community-x86_64/love.install |   13 
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 19:47:29 UTC (rev 102616)
+++ community-i686/PKGBUILD 2013-12-16 19:47:45 UTC (rev 102617)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Linus Sjögren 
-# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
-pkgname=love
-pkgver=0.9.0
-pkgrel=1
-pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
-arch=(i686 x86_64)
-url="http://love2d.org/";
-license=('zlib')
-depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
-install=love.install
-source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
-md5sums=('6591752af4e33f521d616d9b048aa894')
-
-build() {
-  cd "$srcdir"/love-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/love-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: love/repos/community-i686/PKGBUILD (from rev 102616, 
love/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 19:47:45 UTC (rev 102617)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Linus Sjögren 
+# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
+pkgname=love
+pkgver=0.9.0
+pkgrel=2
+pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
+arch=(i686 x86_64)
+url="http://love2d.org/";
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
+install=love.install
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
+md5sums=('6591752af4e33f521d616d9b048aa894')
+
+build() {
+  cd "$srcdir"/love-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/love-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/love.install
===
--- community-i686/love.install 2013-12-16 19:47:29 UTC (rev 102616)
+++ community-i686/love.install 2013-12-16 19:47:45 UTC (rev 102617)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_remove() {
-  post_install 
-}
-
-post_upgrade() {
-  post_install
-}

Copied: love/repos/community-i686/love.install (from rev 102616, 
love/trunk/love.install)
===
--- community-i686/love.install (rev 0)
+++ community-i686/love.install 2013-12-16 19:47:45 UTC (rev 102617)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_remove() {
+  post_install 
+}
+
+post_upgrade() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-16 19:47:29 UTC (rev 102616)
+++ community-x86_64/PKGBUILD   2013-12-16 19:47:45 UTC (rev 102617)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Linus Sjögren 
-# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
-pkgname=lo

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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 20:47:29
  Author: svenstaro
Revision: 102616

upgpkg: love 0.9.0-2

Fix FS#38163

Modified:
  love/trunk/PKGBUILD
  love/trunk/love.install

--+
 PKGBUILD |2 +-
 love.install |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 19:28:33 UTC (rev 102615)
+++ PKGBUILD2013-12-16 19:47:29 UTC (rev 102616)
@@ -3,7 +3,7 @@
 # Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
 pkgname=love
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
 arch=(i686 x86_64)
 url="http://love2d.org/";

Modified: love.install
===
--- love.install2013-12-16 19:28:33 UTC (rev 102615)
+++ love.install2013-12-16 19:47:29 UTC (rev 102616)
@@ -1,6 +1,6 @@
 post_install() {
   update-desktop-database -q
-  update-mime-database usr/share/mime
+  update-mime-database usr/share/mime &> /dev/null
   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 20:28:33
  Author: arodseth
Revision: 102615

Removing optdep

Modified:
  mosh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 19:08:34 UTC (rev 102614)
+++ PKGBUILD2013-12-16 19:28:33 UTC (rev 102615)
@@ -5,7 +5,7 @@
 
 pkgname=mosh
 pkgver=1.2.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
 arch=('x86_64' 'i686')
 url='http://mosh.mit.edu/'
@@ -13,11 +13,10 @@
 depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
 source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz";)
 sha256sums=('e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46')
-optdepends=('ufw-extras')
 options=('!emptydirs')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
 
   ./autogen.sh
   ./configure --prefix=/usr
@@ -25,10 +24,8 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "conf/bash_completion.d/$pkgname" \
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname-$pkgver/conf/bash_completion.d/$pkgname" \
 "$pkgdir/usr/share/bash-completion/completions/$pkgname"
 }
 



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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 20:08:34
  Author: svenstaro
Revision: 102614

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

Added:
  love08/repos/community-i686/
  love08/repos/community-i686/PKGBUILD
(from rev 102613, love08/trunk/PKGBUILD)
  love08/repos/community-x86_64/
  love08/repos/community-x86_64/PKGBUILD
(from rev 102613, love08/trunk/PKGBUILD)

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

Copied: love08/repos/community-i686/PKGBUILD (from rev 102613, 
love08/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 19:08:34 UTC (rev 102614)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Linus Sjögren 
+# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
+pkgname=love08
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
+arch=(i686 x86_64)
+url="http://love2d.org/";
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 
'libgl' 'glu')
+makedepends=('mesa')
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
+md5sums=('9db9c32585fc7c7da3eba7e438783099')
+
+build() {
+  cd "$srcdir"/love-$pkgver
+  sed -i "s|freetype/|freetype2/|g" 
src/modules/font/freetype/{TrueTypeRasterizer.h,Font.h}
+  ./configure --program-suffix=08 --prefix=/usr --with-luajit
+  make
+}
+
+package() {
+  cd "$srcdir"/love-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: love08/repos/community-x86_64/PKGBUILD (from rev 102613, 
love08/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-16 19:08:34 UTC (rev 102614)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Linus Sjögren 
+# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
+pkgname=love08
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
+arch=(i686 x86_64)
+url="http://love2d.org/";
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 
'libgl' 'glu')
+makedepends=('mesa')
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
+md5sums=('9db9c32585fc7c7da3eba7e438783099')
+
+build() {
+  cd "$srcdir"/love-$pkgver
+  sed -i "s|freetype/|freetype2/|g" 
src/modules/font/freetype/{TrueTypeRasterizer.h,Font.h}
+  ./configure --program-suffix=08 --prefix=/usr --with-luajit
+  make
+}
+
+package() {
+  cd "$srcdir"/love-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 20:08:20
  Author: svenstaro
Revision: 102613

upgpkg: love08 0.8.0-1

Pushing love08

Modified:
  love08/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 18:31:48 UTC (rev 102612)
+++ PKGBUILD2013-12-16 19:08:20 UTC (rev 102613)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Linus Sjögren 
 # Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
-pkgname=love
+pkgname=love08
 pkgver=0.8.0
 pkgrel=1
 pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
@@ -8,14 +8,15 @@
 arch=(i686 x86_64)
 url="http://love2d.org/";
 license=('zlib')
-depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils')
-install=love.install
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 
'libgl' 'glu')
+makedepends=('mesa')
 
source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
 md5sums=('9db9c32585fc7c7da3eba7e438783099')
 
 build() {
   cd "$srcdir"/love-$pkgver
-  ./configure --prefix=/usr --with-luajit
+  sed -i "s|freetype/|freetype2/|g" 
src/modules/font/freetype/{TrueTypeRasterizer.h,Font.h}
+  ./configure --program-suffix=08 --prefix=/usr --with-luajit
   make
 }
 
@@ -24,7 +25,7 @@
 
   make DESTDIR="$pkgdir" install
 
-  install -Dm0644 "$srcdir/license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-12-16 Thread Sébastien Luttringer
Date: Monday, December 16, 2013 @ 19:31:48
  Author: seblu
Revision: 102612

db-move: moved opensmtpd from [community-testing] to [community] (i686, x86_64)

Added:
  opensmtpd/repos/community-i686/PKGBUILD
(from rev 102611, opensmtpd/repos/community-testing-i686/PKGBUILD)
  opensmtpd/repos/community-i686/opensmtpd.install
(from rev 102611, opensmtpd/repos/community-testing-i686/opensmtpd.install)
  opensmtpd/repos/community-i686/smtpd.service
(from rev 102611, opensmtpd/repos/community-testing-i686/smtpd.service)
  opensmtpd/repos/community-i686/smtpd.socket
(from rev 102611, opensmtpd/repos/community-testing-i686/smtpd.socket)
  opensmtpd/repos/community-x86_64/PKGBUILD
(from rev 102611, opensmtpd/repos/community-testing-x86_64/PKGBUILD)
  opensmtpd/repos/community-x86_64/opensmtpd.install
(from rev 102611, 
opensmtpd/repos/community-testing-x86_64/opensmtpd.install)
  opensmtpd/repos/community-x86_64/smtpd.service
(from rev 102611, opensmtpd/repos/community-testing-x86_64/smtpd.service)
  opensmtpd/repos/community-x86_64/smtpd.socket
(from rev 102611, opensmtpd/repos/community-testing-x86_64/smtpd.socket)
Deleted:
  opensmtpd/repos/community-i686/PKGBUILD
  opensmtpd/repos/community-i686/opensmtpd.install
  opensmtpd/repos/community-i686/smtpd.service
  opensmtpd/repos/community-i686/smtpd.socket
  opensmtpd/repos/community-testing-i686/
  opensmtpd/repos/community-testing-x86_64/
  opensmtpd/repos/community-x86_64/PKGBUILD
  opensmtpd/repos/community-x86_64/opensmtpd.install
  opensmtpd/repos/community-x86_64/smtpd.service
  opensmtpd/repos/community-x86_64/smtpd.socket

+
 /PKGBUILD  |  122 +++
 /opensmtpd.install |   70 
 /smtpd.service |   20 +
 /smtpd.socket  |   16 
 community-i686/PKGBUILD|   58 
 community-i686/opensmtpd.install   |   35 --
 community-i686/smtpd.service   |   10 --
 community-i686/smtpd.socket|8 --
 community-x86_64/PKGBUILD  |   58 
 community-x86_64/opensmtpd.install |   35 --
 community-x86_64/smtpd.service |   10 --
 community-x86_64/smtpd.socket  |8 --
 12 files changed, 228 insertions(+), 222 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 18:13:16 UTC (rev 102611)
+++ community-i686/PKGBUILD 2013-12-16 18:31:48 UTC (rev 102612)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=opensmtpd
-pkgver=5.4.1p1
-pkgrel=1
-pkgdesc='Free implementation of the server-side SMTP protocol'
-arch=('i686' 'x86_64')
-url='http://www.opensmtpd.org/'
-license=('custom')
-depends=('libevent')
-provides=('smtp-server' 'smtp-forwarder')
-conflicts=('smtp-server' 'smtp-forwarder')
-backup=('etc/smtpd/smtpd.conf' 'etc/smtpd/aliases')
-options=('emptydirs')
-install=opensmtpd.install
-source=("http://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz";
-'smtpd.service'
-'smtpd.socket')
-md5sums=('74551342985b78eb687995f7953d1790'
- 'a278f272d97a9fe5a8aac784a7c98d67'
- 'c2c01e9ca78df3f65efe40a7c0e17ee0')
-
-prepare() {
-  sed -ri 's,/etc/mail,/etc/smtpd,g' $pkgname-$pkgver/smtpd/smtpd.conf
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/smtpd \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/smtpd \
---with-maildir=/var/spool/mail \
---with-privsep-path=/var/empty \
---with-sock-dir=/run \
---with-privsep-user=smtpd \
---with-queue-user=smtpq \
---with-pam
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-  # license
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  # working directory
-  cd "$pkgdir"
-  # install systemd units
-  install -Dm644 "$srcdir/smtpd.service" usr/lib/systemd/system/smtpd.service
-  install -Dm644 "$srcdir/smtpd.socket" usr/lib/systemd/system/smtpd.socket
-  # empty aliases file (used by default config)
-  install -Dm644 /dev/null etc/smtpd/aliases
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opensmtpd/repos/community-i686/PKGBUILD (from rev 102611, 
opensmtpd/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 18:31:48 UTC (rev 102612)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=opensmtpd
+pkgver=5.4.1p1
+pkgrel=2
+pkgdesc='Free implementation of the server-side SMTP protocol'
+arch=('i686' 'x86_64')
+url='http://www.opensmtpd.org/'
+license=('custom')
+depends=('libevent' 'openssl')
+provides=('smtp-server' 'smtp-forwarder')
+conflicts=('smtp-server' 'smtp-forwarder')
+backup=('etc/smt

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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 19:13:16
  Author: svenstaro
Revision: 102611

Add love08 for fucking mari0

Added:
  love08/
  love08/repos/
  love08/trunk/
  love08/trunk/PKGBUILD

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

Added: love08/trunk/PKGBUILD
===
--- love08/trunk/PKGBUILD   (rev 0)
+++ love08/trunk/PKGBUILD   2013-12-16 18:13:16 UTC (rev 102611)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Linus Sjögren 
+# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
+pkgname=love
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
+arch=(i686 x86_64)
+url="http://love2d.org/";
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils')
+install=love.install
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
+md5sums=('9db9c32585fc7c7da3eba7e438783099')
+
+build() {
+  cd "$srcdir"/love-$pkgver
+  ./configure --prefix=/usr --with-luajit
+  make
+}
+
+package() {
+  cd "$srcdir"/love-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 "$srcdir/license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 18:59:31
  Author: tpowa
Revision: 201599

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

Added:
  gummiboot/repos/testing-i686/
  gummiboot/repos/testing-i686/PKGBUILD
(from rev 201598, gummiboot/trunk/PKGBUILD)
  gummiboot/repos/testing-i686/arch.conf
(from rev 201598, gummiboot/trunk/arch.conf)
  gummiboot/repos/testing-i686/gummiboot.install
(from rev 201598, gummiboot/trunk/gummiboot.install)
  gummiboot/repos/testing-i686/loader.conf
(from rev 201598, gummiboot/trunk/loader.conf)
  gummiboot/repos/testing-x86_64/
  gummiboot/repos/testing-x86_64/PKGBUILD
(from rev 201598, gummiboot/trunk/PKGBUILD)
  gummiboot/repos/testing-x86_64/arch.conf
(from rev 201598, gummiboot/trunk/arch.conf)
  gummiboot/repos/testing-x86_64/gummiboot.install
(from rev 201598, gummiboot/trunk/gummiboot.install)
  gummiboot/repos/testing-x86_64/loader.conf
(from rev 201598, gummiboot/trunk/loader.conf)

--+
 testing-i686/PKGBUILD|   45 +
 testing-i686/arch.conf   |7 +
 testing-i686/gummiboot.install   |   13 ++
 testing-i686/loader.conf |2 +
 testing-x86_64/PKGBUILD  |   45 +
 testing-x86_64/arch.conf |7 +
 testing-x86_64/gummiboot.install |   13 ++
 testing-x86_64/loader.conf   |2 +
 8 files changed, 134 insertions(+)

Copied: gummiboot/repos/testing-i686/PKGBUILD (from rev 201598, 
gummiboot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-16 17:59:31 UTC (rev 201599)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
+# Contributor:  Mantas Mikulėnas 
+
+pkgname="gummiboot"
+pkgver="40"
+pkgrel="1"
+pkgdesc="Simple text-mode UEFI Boot Manager"
+url="http://freedesktop.org/wiki/Software/gummiboot";
+arch=('x86_64' 'i686')
+license=('LGPL2.1')
+makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
+depends=('util-linux')
+conflicts=('gummiboot-efi')
+provides=('gummiboot-efi')
+replaces=('gummiboot-efi')
+options=('!strip' '!makeflags')
+source=("git://anongit.freedesktop.org/${pkgname}#tag=${pkgver}"
+'loader.conf'
+'arch.conf')
+install="gummiboot.install"
+md5sums=('SKIP'
+ '6ea803e5179d623716e3be0b636de658'
+ '82bda9612e3a361a74cf8de2a0134b15')
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   ./autogen.sh
+   ./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib 
--libexecdir=/usr/lib --libdir=/usr/lib
+   
+   make
+}
+
+package() {
+   ## Install gummiboot example configuration files (can go away with 
systemd's kernel-install)
+   install -D -m0644 "${srcdir}/loader.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/loader.conf"
+   install -D -m0644 "${srcdir}/arch.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf"
+
+   cd ${srcdir}/${pkgname}
+
+   make DESTDIR="${pkgdir}" install
+}

Copied: gummiboot/repos/testing-i686/arch.conf (from rev 201598, 
gummiboot/trunk/arch.conf)
===
--- testing-i686/arch.conf  (rev 0)
+++ testing-i686/arch.conf  2013-12-16 17:59:31 UTC (rev 201599)
@@ -0,0 +1,7 @@
+## This is just an exmaple config file.
+## Please edit the paths and kernel parameters according to your system.
+
+title   Arch Linux
+linux   /vmlinuz-linux
+initrd  /initramfs-linux.img
+options root=PARTUUID= rootfstype= add_efi_memmap

Copied: gummiboot/repos/testing-i686/gummiboot.install (from rev 201598, 
gummiboot/trunk/gummiboot.install)
===
--- testing-i686/gummiboot.install  (rev 0)
+++ testing-i686/gummiboot.install  2013-12-16 17:59:31 UTC (rev 201599)
@@ -0,0 +1,13 @@
+post_install() {
+   mkdir -p /boot/EFI/gummiboot
+   /usr/bin/gummiboot update
+   echo ":: Run '/usr/bin/gummiboot install' to make gummiboot your 
default bootloader"
+}
+
+post_upgrade() {
+   /usr/bin/gummiboot update
+}
+
+pre_remove() {
+   /usr/bin/gummiboot remove
+}

Copied: gummiboot/repos/testing-i686/loader.conf (from rev 201598, 
gummiboot/trunk/loader.conf)
===
--- testing-i686/loader.conf(rev 0)
+++ testing-i686/loader.conf2013-12-16 17:59:31 UTC (rev 201599)
@@ -0,0 +1,2 @@
+timeout 10
+default arch

Copied: gummiboot/repos/testing-x86_64/PKGBUILD (from rev 201598, 
gummiboot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)

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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 18:59:14
  Author: tpowa
Revision: 201598

upgpkg: gummiboot 40-1

bump to latest version

Modified:
  gummiboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 16:01:50 UTC (rev 201597)
+++ PKGBUILD2013-12-16 17:59:14 UTC (rev 201598)
@@ -5,7 +5,7 @@
 # Contributor:  Mantas Mikulėnas 
 
 pkgname="gummiboot"
-pkgver="39"
+pkgver="40"
 pkgrel="1"
 pkgdesc="Simple text-mode UEFI Boot Manager"
 url="http://freedesktop.org/wiki/Software/gummiboot";
@@ -21,6 +21,9 @@
 'loader.conf'
 'arch.conf')
 install="gummiboot.install"
+md5sums=('SKIP'
+ '6ea803e5179d623716e3be0b636de658'
+ '82bda9612e3a361a74cf8de2a0134b15')
 
 build() {
cd ${srcdir}/${pkgname}
@@ -40,6 +43,3 @@
 
make DESTDIR="${pkgdir}" install
 }
-md5sums=('SKIP'
- '6ea803e5179d623716e3be0b636de658'
- '82bda9612e3a361a74cf8de2a0134b15')



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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 17:47:38
  Author: svenstaro
Revision: 102610

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

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

---+
 /PKGBUILD |   60 
 /love.install |   26 +
 community-i686/PKGBUILD   |   51 --
 community-i686/love.install   |   13 
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/love.install |   13 
 6 files changed, 86 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 16:47:29 UTC (rev 102609)
+++ community-i686/PKGBUILD 2013-12-16 16:47:38 UTC (rev 102610)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Linus Sjögren 
-# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
-pkgname=love
-pkgver=0.8.0
-pkgrel=2
-pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
-arch=(i686 x86_64)
-url="http://love2d.org/";
-license=('zlib')
-depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils')
-install=love.install
-source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";
-"https://bitbucket.org/rude/love/raw/$pkgver/license.txt";
-"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/app.svg";
-"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/game.svg";
-
"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/love.desktop";
-"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/love.xml";)
-md5sums=('9db9c32585fc7c7da3eba7e438783099'
- 'a4890908149d91bc042b30d00c121c58'
- 'a1e19f91420cc519a683af360f5b1120'
- '16f2ecc899c9ffc8b7b7c807f8967861'
- '971bec1bffe4f424972eef2a26d27bec'
- 'b4f00fb1cb80057a0a371a994100d418')
-
-build() {
-  cd "$srcdir"/love-$pkgver
-  #./platform/unix/automagic
-  ./configure --prefix=/usr --with-luajit #LDFLAGS="$LDFLAGS 
-Wl,--no-as-needed"
-  make
-}
-
-package() {
-  cd "$srcdir"/love-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  mkdir -p "$pkgdir/usr/share/icons/hicolor/scalable/mimetypes"
-  mkdir -p "$pkgdir/usr/share/icons/hicolor/scalable/apps"
-  mkdir -p "$pkgdir/usr/share/applications"
-  mkdir -p "$pkgdir/usr/share/mime/packages"
-
-  install -Dm0644 "$srcdir/license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm0644 "$srcdir/app.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/love.svg"
-   install -Dm0644 "$srcdir/game.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/mimetypes/gnome-mime-application-x-love-game.svg"
-  install -Dm0644 "$srcdir/love.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm0644 "$srcdir/love.xml" "$pkgdir/usr/share/mime/packages/love.xml"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: love/repos/community-i686/PKGBUILD (from rev 102609, 
love/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 16:47:38 UTC (rev 102610)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Linus Sjögren 
+# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
+pkgname=love
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
+arch=(i686 x86_64)
+url="http://love2d.org/";
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
+install=love.install
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
+md5sums=('6591752af4e33f521d616d9b048aa894')
+
+build() {
+  cd "$srcdir"/love-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/love-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/love.ins

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

2013-12-16 Thread Sven-Hendrik Haase
Date: Monday, December 16, 2013 @ 17:47:29
  Author: svenstaro
Revision: 102609

upgpkg: love 0.9.0-1

upstream release 0.9.0

Modified:
  love/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 15:11:19 UTC (rev 102608)
+++ PKGBUILD2013-12-16 16:47:29 UTC (rev 102609)
@@ -2,31 +2,20 @@
 # Contributor: Linus Sjögren 
 # Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
 pkgname=love
-pkgver=0.8.0
-pkgrel=2
+pkgver=0.9.0
+pkgrel=1
 pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
 arch=(i686 x86_64)
 url="http://love2d.org/";
 license=('zlib')
-depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
 install=love.install
-source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";
-"https://bitbucket.org/rude/love/raw/$pkgver/license.txt";
-"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/app.svg";
-"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/game.svg";
-
"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/love.desktop";
-"https://bitbucket.org/rude/love/raw/$pkgver/platform/unix/love.xml";)
-md5sums=('9db9c32585fc7c7da3eba7e438783099'
- 'a4890908149d91bc042b30d00c121c58'
- 'a1e19f91420cc519a683af360f5b1120'
- '16f2ecc899c9ffc8b7b7c807f8967861'
- '971bec1bffe4f424972eef2a26d27bec'
- 'b4f00fb1cb80057a0a371a994100d418')
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz";)
+md5sums=('6591752af4e33f521d616d9b048aa894')
 
 build() {
   cd "$srcdir"/love-$pkgver
-  #./platform/unix/automagic
-  ./configure --prefix=/usr --with-luajit #LDFLAGS="$LDFLAGS 
-Wl,--no-as-needed"
+  ./configure --prefix=/usr
   make
 }
 
@@ -35,17 +24,7 @@
 
   make DESTDIR="$pkgdir" install
 
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  mkdir -p "$pkgdir/usr/share/icons/hicolor/scalable/mimetypes"
-  mkdir -p "$pkgdir/usr/share/icons/hicolor/scalable/apps"
-  mkdir -p "$pkgdir/usr/share/applications"
-  mkdir -p "$pkgdir/usr/share/mime/packages"
-
-  install -Dm0644 "$srcdir/license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm0644 "$srcdir/app.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/love.svg"
-   install -Dm0644 "$srcdir/game.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/mimetypes/gnome-mime-application-x-love-game.svg"
-  install -Dm0644 "$srcdir/love.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm0644 "$srcdir/love.xml" "$pkgdir/usr/share/mime/packages/love.xml"
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 # vim:set ts=2 sw=2 et:



[arch-commits] Commit in linux-lts/trunk (config config.x86_64)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 17:01:50
  Author: tpowa
Revision: 201597

remove CONFIG_FIRMWARE_IN_KERNL

Modified:
  linux-lts/trunk/config
  linux-lts/trunk/config.x86_64

---+
 config|2 +-
 config.x86_64 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: config
===
--- config  2013-12-16 15:00:13 UTC (rev 201596)
+++ config  2013-12-16 16:01:50 UTC (rev 201597)
@@ -1428,7 +1428,7 @@
 CONFIG_STANDALONE=y
 CONFIG_PREVENT_FIRMWARE_BUILD=y
 CONFIG_FW_LOADER=y
-CONFIG_FIRMWARE_IN_KERNEL=y
+# CONFIG_FIRMWARE_IN_KERNEL is not set
 CONFIG_EXTRA_FIRMWARE=""
 # CONFIG_FW_LOADER_USER_HELPER is not set
 # CONFIG_DEBUG_DRIVER is not set

Modified: config.x86_64
===
--- config.x86_64   2013-12-16 15:00:13 UTC (rev 201596)
+++ config.x86_64   2013-12-16 16:01:50 UTC (rev 201597)
@@ -1399,7 +1399,7 @@
 CONFIG_STANDALONE=y
 CONFIG_PREVENT_FIRMWARE_BUILD=y
 CONFIG_FW_LOADER=y
-CONFIG_FIRMWARE_IN_KERNEL=y
+# CONFIG_FIRMWARE_IN_KERNEL is not set
 CONFIG_EXTRA_FIRMWARE=""
 # CONFIG_FW_LOADER_USER_HELPER is not set
 # CONFIG_DEBUG_DRIVER is not set



[arch-commits] Commit in jenkins/repos (7 files)

2013-12-16 Thread Felix Yan
Date: Monday, December 16, 2013 @ 16:11:19
  Author: fyan
Revision: 102608

archrelease: copy trunk to community-testing-any

Added:
  jenkins/repos/community-testing-any/
  jenkins/repos/community-testing-any/LICENSE
(from rev 102607, jenkins/trunk/LICENSE)
  jenkins/repos/community-testing-any/PKGBUILD
(from rev 102607, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-testing-any/jenkins.conf
(from rev 102607, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-testing-any/jenkins.install
(from rev 102607, jenkins/trunk/jenkins.install)
  jenkins/repos/community-testing-any/jenkins.service
(from rev 102607, jenkins/trunk/jenkins.service)
  jenkins/repos/community-testing-any/jenkins.tmpfiles.d
(from rev 102607, jenkins/trunk/jenkins.tmpfiles.d)

+
 LICENSE|   23 
 PKGBUILD   |   42 +
 jenkins.conf   |   13 +++
 jenkins.install|   57 +++
 jenkins.service|   24 +
 jenkins.tmpfiles.d |2 +
 6 files changed, 161 insertions(+)

Copied: jenkins/repos/community-testing-any/LICENSE (from rev 102607, 
jenkins/trunk/LICENSE)
===
--- community-testing-any/LICENSE   (rev 0)
+++ community-testing-any/LICENSE   2013-12-16 15:11:19 UTC (rev 102608)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Copied: jenkins/repos/community-testing-any/PKGBUILD (from rev 102607, 
jenkins/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-12-16 15:11:19 UTC (rev 102608)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $
+# Maintainer: Felix Yan 
+# Contributor: Alexander Rødseth 
+# Contributor: Marcel Huber 
+# Contributor: Illarion Kovalchuk 
+
+pkgname=jenkins
+pkgver=1.544
+pkgrel=1
+pkgdesc='Extendable continuous integration server (latest)'
+arch=('any')
+url='https://jenkins-ci.org/changelog-stable#stable'
+license=('MIT')
+depends=('java-runtime' 'ttf-dejavu' 'libcups')
+provides=('jenkins-ci')
+conflicts=('jenkins-ci')
+replaces=('jenkins-ci')
+backup=('etc/conf.d/jenkins')
+install='jenkins.install'
+noextract=('jenkins.war')
+source=("http://mirrors.jenkins-ci.org/war/$pkgver/jenkins.war";
+'jenkins.conf'
+'jenkins.service'
+'jenkins.tmpfiles.d'
+'LICENSE')
+
+package() {
+  install -Dm444 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm444 jenkins.war "$pkgdir/usr/share/java/jenkins/jenkins.war"
+  install -Dm644 jenkins.service \
+"$pkgdir/usr/lib/systemd/system/jenkins.service"
+  install -Dm644 jenkins.tmpfiles.d "$pkgdir/usr/lib/tmpfiles.d/jenkins.conf"
+  install -Dm644 jenkins.conf "$pkgdir/etc/conf.d/jenkins"
+}
+
+# vim:set ts=2 sw=2 et:
+
+sha256sums=('a841635f07cd145fc9396abfc41c8810ec0d86b3846b05b9c85b7048ac1648fa'
+'13b6e06de1dedff96bdb8e43f6830bbd954dc58df9d4ed5583693d2a6f8427f4'
+'23b748ae4c418bd1b98e33dd6bb55ad0d578803aecd26176998b759689b82e73'
+'0ccff16308b01b02f2699ea64a73b8dce1e1990ee1c656aa8d6119dee510262e'
+'d9f107920982cb61d807e349b4eaf190b2d593047e55d3f3ad286c7afe06cf55')

Copied: jenkins/repos/community-testing-any/jenkins.conf (from rev 102607, 
jenkins/trunk/jenkins.conf)
===
--- community-testing-any/jenkins.conf  (rev 0)
+++ community-testing-any/jenkins.conf  2013-12-16 15:11:19 UTC (rev 102608)
@@ -0,0 +1,13 @@
+JAVA=/usr/bin/java
+JAVA_ARGS=-Xmx512m
+JAVA_OPTS=
+JENKINS_USER=jenkins
+JENKINS_HOME=/var/lib/jenkin

[arch-commits] Commit in linux/trunk (config config.x86_64)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 16:00:13
  Author: tpowa
Revision: 201596

remove CONFIG_FIRMWARE_IN_KERNEL

Modified:
  linux/trunk/config
  linux/trunk/config.x86_64

---+
 config|2 +-
 config.x86_64 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: config
===
--- config  2013-12-16 11:52:46 UTC (rev 201595)
+++ config  2013-12-16 15:00:13 UTC (rev 201596)
@@ -1455,7 +1455,7 @@
 CONFIG_STANDALONE=y
 CONFIG_PREVENT_FIRMWARE_BUILD=y
 CONFIG_FW_LOADER=y
-CONFIG_FIRMWARE_IN_KERNEL=y
+# CONFIG_FIRMWARE_IN_KERNEL is not set
 CONFIG_EXTRA_FIRMWARE=""
 CONFIG_FW_LOADER_USER_HELPER=y
 # CONFIG_DEBUG_DRIVER is not set

Modified: config.x86_64
===
--- config.x86_64   2013-12-16 11:52:46 UTC (rev 201595)
+++ config.x86_64   2013-12-16 15:00:13 UTC (rev 201596)
@@ -1428,7 +1428,7 @@
 CONFIG_STANDALONE=y
 CONFIG_PREVENT_FIRMWARE_BUILD=y
 CONFIG_FW_LOADER=y
-CONFIG_FIRMWARE_IN_KERNEL=y
+# CONFIG_FIRMWARE_IN_KERNEL is not set
 CONFIG_EXTRA_FIRMWARE=""
 CONFIG_FW_LOADER_USER_HELPER=y
 # CONFIG_DEBUG_DRIVER is not set



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

2013-12-16 Thread Felix Yan
Date: Monday, December 16, 2013 @ 15:43:59
  Author: fyan
Revision: 102607

rename jenkins-ci to jenkins

Added:
  jenkins/
Modified:
  jenkins/trunk/PKGBUILD
Deleted:
  jenkins-ci/

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

Modified: jenkins/trunk/PKGBUILD
===
--- jenkins-ci/trunk/PKGBUILD   2013-12-16 14:01:19 UTC (rev 102606)
+++ jenkins/trunk/PKGBUILD  2013-12-16 14:43:59 UTC (rev 102607)
@@ -1,35 +1,31 @@
 # $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $
-# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: Alexander Rødseth 
 # Contributor: Marcel Huber 
 # Contributor: Illarion Kovalchuk 
 
-pkgname=jenkins-ci
-pkgver=1.532.1
+pkgname=jenkins
+pkgver=1.544
 pkgrel=1
-pkgdesc='Extendable continuous integration server (stable/LTS)'
+pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
 url='https://jenkins-ci.org/changelog-stable#stable'
 license=('MIT')
 depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins')
-conflicts=('jenkins')
-replaces=('jenkins')
+provides=('jenkins-ci')
+conflicts=('jenkins-ci')
+replaces=('jenkins-ci')
 backup=('etc/conf.d/jenkins')
 install='jenkins.install'
 noextract=('jenkins.war')
-source=("http://mirrors.jenkins-ci.org/war-stable/latest/jenkins.war";
+source=("http://mirrors.jenkins-ci.org/war/$pkgver/jenkins.war";
 'jenkins.conf'
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha256sums=('624bb5711aec69fa7e5524ec526fddd82099845acdb825c4a28232c4f6caf514'
-'13b6e06de1dedff96bdb8e43f6830bbd954dc58df9d4ed5583693d2a6f8427f4'
-'23b748ae4c418bd1b98e33dd6bb55ad0d578803aecd26176998b759689b82e73'
-'0ccff16308b01b02f2699ea64a73b8dce1e1990ee1c656aa8d6119dee510262e'
-'d9f107920982cb61d807e349b4eaf190b2d593047e55d3f3ad286c7afe06cf55')
 
 package() {
-  install -Dm444 LICENSE "$pkgdir/usr/share/licenses/jenkins-ci/LICENSE"
+  install -Dm444 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
   install -Dm444 jenkins.war "$pkgdir/usr/share/java/jenkins/jenkins.war"
   install -Dm644 jenkins.service \
 "$pkgdir/usr/lib/systemd/system/jenkins.service"
@@ -38,3 +34,9 @@
 }
 
 # vim:set ts=2 sw=2 et:
+
+sha256sums=('a841635f07cd145fc9396abfc41c8810ec0d86b3846b05b9c85b7048ac1648fa'
+'13b6e06de1dedff96bdb8e43f6830bbd954dc58df9d4ed5583693d2a6f8427f4'
+'23b748ae4c418bd1b98e33dd6bb55ad0d578803aecd26176998b759689b82e73'
+'0ccff16308b01b02f2699ea64a73b8dce1e1990ee1c656aa8d6119dee510262e'
+'d9f107920982cb61d807e349b4eaf190b2d593047e55d3f3ad286c7afe06cf55')



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 15:01:05
  Author: arodseth
Revision: 102605

upgpkg: erlang-nox R16B03-1

Modified:
  erlang-nox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 13:59:26 UTC (rev 102604)
+++ PKGBUILD2013-12-16 14:01:05 UTC (rev 102605)
@@ -7,8 +7,8 @@
 # Contributor: Ricardo Catalinas Jiménez 
 
 pkgname=erlang-nox
-pkgver=R16B02
-pkgrel=2
+pkgver=R16B03
+pkgrel=1
 pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
@@ -22,8 +22,8 @@
 options=('staticlibs')
 source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
 "http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";)
-sha256sums=('6ab8ad1df8185345554a4b80e10fd8be06c4f2b71b69dcfb8528352787b32f85'
-'b79ceb0383415088b5f040f2f3705632b425cb3f29c3955ef2219556abec5789')
+sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
+'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452')
 
 build() {
   cd "otp_src_${pkgver/_1/}"



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 15:01:19
  Author: arodseth
Revision: 102606

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

Added:
  erlang-nox/repos/community-i686/PKGBUILD
(from rev 102605, erlang-nox/trunk/PKGBUILD)
  erlang-nox/repos/community-x86_64/PKGBUILD
(from rev 102605, erlang-nox/trunk/PKGBUILD)
Deleted:
  erlang-nox/repos/community-i686/PKGBUILD
  erlang-nox/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 14:01:05 UTC (rev 102605)
+++ community-i686/PKGBUILD 2013-12-16 14:01:19 UTC (rev 102606)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgname=erlang-nox
-pkgver=R16B02
-pkgrel=2
-pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('custom')
-depends=('ncurses' 'openssl')
-makedepends=('perl' 'lksctp-tools' 'unixodbc')
-conflicts=('erlang')
-optdepends=('erlang-unixodbc: database support'
-'java-environment: for Java support'
-'lksctp-tools: for SCTP support')
-options=('staticlibs')
-source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
-"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";)
-sha256sums=('6ab8ad1df8185345554a4b80e10fd8be06c4f2b71b69dcfb8528352787b32f85'
-'b79ceb0383415088b5f040f2f3705632b425cb3f29c3955ef2219556abec5789')
-
-build() {
-  cd "otp_src_${pkgver/_1/}"
-
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package() {
-  cd "otp_src_${pkgver/_1/}"
-
-  make DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp_src_${pkgver/_1/}/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang"
-
-  # License
-  install -Dm0644 "$srcdir/otp_src_${pkgver/_1/}/EPLICENCE" \
-"$pkgdir/usr/share/licenses/$pkgname/EPLICENCE"
-
-  # Remove files that are packaged as erlang-unixodbc
-  rm -r "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: erlang-nox/repos/community-i686/PKGBUILD (from rev 102605, 
erlang-nox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 14:01:19 UTC (rev 102606)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang-nox
+pkgver=R16B03
+pkgrel=1
+pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
+arch=('x86_64' 'i686')
+url='http://www.erlang.org/'
+license=('custom')
+depends=('ncurses' 'openssl')
+makedepends=('perl' 'lksctp-tools' 'unixodbc')
+conflicts=('erlang')
+optdepends=('erlang-unixodbc: database support'
+'java-environment: for Java support'
+'lksctp-tools: for SCTP support')
+options=('staticlibs')
+source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
+"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";)
+sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
+'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452')
+
+build() {
+  cd "otp_src_${pkgver/_1/}"
+
+  ./configure --prefix=/usr --enable-smp-support --with-odbc
+  make
+}
+
+package() {
+  cd "otp_src_${pkgver/_1/}"
+
+  make DESTDIR="$pkgdir" install
+
+  # Documentation
+  install -d "$pkgdir/usr/share/doc/erlang"
+  install -m0644 "$srcdir/otp_src_${pkgver/_1/}/README.md" \
+"$srcdir"/{README,COPYRIGHT} \
+"$pkgdir/usr/share/doc/erlang"
+
+  # Compressed man pages
+  for page in "$srcdir/man/man?/*"; do gzip $page; done
+  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang"
+
+  # License
+  install -Dm0644 "$srcdir/otp_src_${pkgver/_1/}/EPLICENCE" \
+"$pkgdir/usr/share/licenses/$pkgname/EPLICENCE"
+
+  # Remove files that are packaged as erlang-unixodbc
+  rm -r "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
==

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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 14:59:26
  Author: arodseth
Revision: 102604

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 13:52:31 UTC (rev 102603)
+++ PKGBUILD2013-12-16 13:59:26 UTC (rev 102604)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Angel Velasquez  
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=python-pyro
-pkgname=("$pkgbase" 'python2-pyro')
-pkgver=4.22
-pkgrel=1
-pkgdesc='Distributed object middleware for Python (RPC)'
-url='http://pypi.python.org/pypi/Pyro4/'
-arch=('any')
-license=('MIT')
-depends=('python' 'python2')
-source=("http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz";)
-sha256sums=('d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d')
-
-package_python-pyro() {
-  depends=('python')
-  cd "Pyro4-$pkgver"
-  python setup.py install --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pyro() {
-  depends=('python2')
-  cd "Pyro4-$pkgver"
-  python2 setup.py install --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyro/repos/community-any/PKGBUILD (from rev 102603, 
python-pyro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 13:59:26 UTC (rev 102604)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Angel Velasquez  
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-pyro
+pkgname=("$pkgbase" 'python2-pyro')
+pkgver=4.22
+pkgrel=1
+pkgdesc='Distributed object middleware for Python (RPC)'
+url='http://pypi.python.org/pypi/Pyro4/'
+arch=('any')
+license=('MIT')
+depends=('python' 'python2')
+source=("http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz";)
+sha256sums=('d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d')
+
+package_python-pyro() {
+  depends=('python')
+  cd "Pyro4-$pkgver"
+  python setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-pyro() {
+  depends=('python2')
+  cd "Pyro4-$pkgver"
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 14:52:25
  Author: arodseth
Revision: 102602

upgpkg: python-pyro 4.22-1

Modified:
  python-pyro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 12:58:58 UTC (rev 102601)
+++ PKGBUILD2013-12-16 13:52:25 UTC (rev 102602)
@@ -5,7 +5,7 @@
 
 pkgbase=python-pyro
 pkgname=("$pkgbase" 'python2-pyro')
-pkgver=4.18
+pkgver=4.22
 pkgrel=1
 pkgdesc='Distributed object middleware for Python (RPC)'
 url='http://pypi.python.org/pypi/Pyro4/'
@@ -13,11 +13,11 @@
 license=('MIT')
 depends=('python' 'python2')
 source=("http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz";)
-sha256sums=('52d7f6e10c44475052ac8b6828ed6f8b728a1c5d7e674b441eb0e930029ea4cd')
+sha256sums=('d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d')
 
 package_python-pyro() {
   depends=('python')
-  cd "$srcdir/Pyro4-$pkgver"
+  cd "Pyro4-$pkgver"
   python setup.py install --root="$pkgdir"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
@@ -24,7 +24,7 @@
 
 package_python2-pyro() {
   depends=('python2')
-  cd "$srcdir/Pyro4-$pkgver"
+  cd "Pyro4-$pkgver"
   python2 setup.py install --root="$pkgdir"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 14:52:31
  Author: arodseth
Revision: 102603

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 13:52:25 UTC (rev 102602)
+++ PKGBUILD2013-12-16 13:52:31 UTC (rev 102603)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Angel Velasquez  
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=python-pyro
-pkgname=("$pkgbase" 'python2-pyro')
-pkgver=4.18
-pkgrel=1
-pkgdesc='Distributed object middleware for Python (RPC)'
-url='http://pypi.python.org/pypi/Pyro4/'
-arch=('any')
-license=('MIT')
-depends=('python' 'python2')
-source=("http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz";)
-sha256sums=('52d7f6e10c44475052ac8b6828ed6f8b728a1c5d7e674b441eb0e930029ea4cd')
-
-package_python-pyro() {
-  depends=('python')
-  cd "$srcdir/Pyro4-$pkgver"
-  python setup.py install --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pyro() {
-  depends=('python2')
-  cd "$srcdir/Pyro4-$pkgver"
-  python2 setup.py install --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyro/repos/community-any/PKGBUILD (from rev 102602, 
python-pyro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 13:52:31 UTC (rev 102603)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Angel Velasquez  
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-pyro
+pkgname=("$pkgbase" 'python2-pyro')
+pkgver=4.22
+pkgrel=1
+pkgdesc='Distributed object middleware for Python (RPC)'
+url='http://pypi.python.org/pypi/Pyro4/'
+arch=('any')
+license=('MIT')
+depends=('python' 'python2')
+source=("http://pypi.python.org/packages/source/P/Pyro4/Pyro4-$pkgver.tar.gz";)
+sha256sums=('d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d')
+
+package_python-pyro() {
+  depends=('python')
+  cd "Pyro4-$pkgver"
+  python setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-pyro() {
+  depends=('python2')
+  cd "Pyro4-$pkgver"
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 13:58:58
  Author: arodseth
Revision: 102601

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 12:58:45 UTC (rev 102600)
+++ community-i686/PKGBUILD 2013-12-16 12:58:58 UTC (rev 102601)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Maintainer: Alexander Rødseth 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=('erlang' 'erlang-unixodbc')
-pkgver=R16B02
-pkgrel=2
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('custom')
-makedepends=('perl' 'mesa' 'lksctp-tools' 'unixodbc' 'wxgtk' 'wxgtk2.9')
-options=('staticlibs')
-source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz";
-"http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz";
-'epmd.service'
-'epmd.socket'
-'epmd.conf')
-sha256sums=('6ab8ad1df8185345554a4b80e10fd8be06c4f2b71b69dcfb8528352787b32f85'
-'b79ceb0383415088b5f040f2f3705632b425cb3f29c3955ef2219556abec5789'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
-
-build() {
-  cd "otp_src_${pkgver/_1/}"
-
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=('ncurses' 'glu' 'wxgtk' 'wxgtk2.9' 'openssl')
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=('erlang-nox')
-  conflicts=('erlang-nox')
-
-  cd "otp_src_${pkgver/_1/}"
-
-  make DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp_src_${pkgver/_1/}/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm0644 "$srcdir/otp_src_${pkgver/_1/}/EPLICENCE" \
-"$pkgdir/usr/share/licenses/$pkgname/EPLICENCE"
-
-  # Move over files that will be packaged as erlang-unixodbc
-  mkdir "$srcdir/unixodbc"
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/etc/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/etc/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=('unixodbc' 'erlang-nox')
-
-  # Get the files that should be packaged as erlang-unixodbc
-  mkdir -p "$pkgdir/usr/lib/erlang/"{lib,man/man3}
-  mv "$srcdir/unixodbc/"* "$pkgdir/usr/lib/erlang/lib/"
-  mv "$srcdir/odbc

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

2013-12-16 Thread Alexander Rødseth
Date: Monday, December 16, 2013 @ 13:58:45
  Author: arodseth
Revision: 102600

upgpkg: erlang R16B03-1

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 10:55:48 UTC (rev 102599)
+++ PKGBUILD2013-12-16 12:58:45 UTC (rev 102600)
@@ -8,8 +8,8 @@
 
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
-pkgver=R16B02
-pkgrel=2
+pkgver=R16B03
+pkgrel=1
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
 license=('custom')
@@ -20,8 +20,8 @@
 'epmd.service'
 'epmd.socket'
 'epmd.conf')
-sha256sums=('6ab8ad1df8185345554a4b80e10fd8be06c4f2b71b69dcfb8528352787b32f85'
-'b79ceb0383415088b5f040f2f3705632b425cb3f29c3955ef2219556abec5789'
+sha256sums=('6133b3410681a5c934e54c76eee1825f96dead8d6a12c31a64f6e160daf0bb06'
+'a2038d32e7c940d5d04f7338406e11b723cac0d26e82d7834596105eea492452'
 'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
 '998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
 '78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')



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

2013-12-16 Thread Massimiliano Torromeo
Date: Monday, December 16, 2013 @ 11:55:48
  Author: mtorromeo
Revision: 102599

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

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

+
 /PKGBUILD  |   68 
 /linux-3.10.patch  |  118 +++
 /r8168-lts.install |   34 ++
 community-i686/PKGBUILD|   41 
 community-i686/linux-3.10.patch|   59 -
 community-i686/r8168-lts.install   |   17 -
 community-x86_64/PKGBUILD  |   41 
 community-x86_64/linux-3.10.patch  |   59 -
 community-x86_64/r8168-lts.install |   17 -
 9 files changed, 220 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 10:52:18 UTC (rev 102598)
+++ community-i686/PKGBUILD 2013-12-16 10:55:48 UTC (rev 102599)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=r8168-lts
-_pkgname=r8168
-pkgver=8.036.00
-pkgrel=8
-pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
-url="http://www.realtek.com.tw";
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('glibc' "linux-lts>=3.10" "linux-lts<3.11")
-makedepends=("linux-lts-headers>=3.10" "linux-lts-headers<3.11")
-source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2
-linux-3.10.patch)
-install=$pkgname.install
-
-_extramodules=extramodules-3.10-lts
-
-prepare() {
-   cd "$_pkgname-$pkgver"
-patch -p0 -i ../linux-3.10.patch
-}
-
-build() {
-   cd "$_pkgname-$pkgver"
-   local _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-   make -C /usr/lib/modules/$_kernver/build \
-   SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \
-   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
-   modules
-}
-
-package() {
-   cd "$_pkgname-$pkgver"
-   install -Dm644 src/$_pkgname.ko 
"$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko"
-   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-}
-
-sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
-'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')

Copied: r8168-lts/repos/community-i686/PKGBUILD (from rev 102598, 
r8168-lts/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 10:55:48 UTC (rev 102599)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.037.00
+pkgrel=1
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' "linux-lts>=3.10" "linux-lts<3.11")
+makedepends=("linux-lts-headers>=3.10" "linux-lts-headers<3.11")
+source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2)
+install=$pkgname.install
+
+_extramodules=extramodules-3.10-lts
+
+build() {
+   cd "$_pkgname-$pkgver"
+   local _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+   make -C /usr/lib/modules/$_kernver/build \
+   SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   cd "$_pkgname-$pkgver"
+   install -Dm644 src/$_pkgname.ko 
"$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko"
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}
+
+sha256sums=('06aa1c6a58a878450798100eb5f9c3d87763c5f41e99b7d5f3b2fe78646d02b0')

Deleted: community-i686/linux-3.10.patch
===
--- community-i686/linux-3.10.patch 2013-12-16 10:52:18 UTC (rev 102598)
+++ community-i686/linux-3.10.patch 2013-12-16 10:55:48 UTC (rev 10259

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

2013-12-16 Thread Massimiliano Torromeo
Date: Monday, December 16, 2013 @ 11:52:18
  Author: mtorromeo
Revision: 102598

upgpkg: r8168-lts 8.037.00-1

Updated r8168-lts to 8.037.00

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 08:57:00 UTC (rev 102597)
+++ PKGBUILD2013-12-16 10:52:18 UTC (rev 102598)
@@ -3,8 +3,8 @@
 
 pkgname=r8168-lts
 _pkgname=r8168
-pkgver=8.036.00
-pkgrel=8
+pkgver=8.037.00
+pkgrel=1
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw";
 license=("GPL")
@@ -11,17 +11,11 @@
 arch=('i686' 'x86_64')
 depends=('glibc' "linux-lts>=3.10" "linux-lts<3.11")
 makedepends=("linux-lts-headers>=3.10" "linux-lts-headers<3.11")
-source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2
-linux-3.10.patch)
+source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2)
 install=$pkgname.install
 
 _extramodules=extramodules-3.10-lts
 
-prepare() {
-   cd "$_pkgname-$pkgver"
-patch -p0 -i ../linux-3.10.patch
-}
-
 build() {
cd "$_pkgname-$pkgver"
local _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
@@ -37,5 +31,4 @@
find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
 }
 
-sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
-'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')
+sha256sums=('06aa1c6a58a878450798100eb5f9c3d87763c5f41e99b7d5f3b2fe78646d02b0')



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

2013-12-16 Thread Jelle van der Waa
Date: Monday, December 16, 2013 @ 09:57:00
  Author: jelle
Revision: 102597

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

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

+
 /PKGBUILD  |  184 +
 /calibre-mount-helper  |   56 ++
 /calibre.install   |   24 ++
 /desktop_integration.patch |  234 +++
 community-i686/PKGBUILD|   92 --
 community-i686/calibre-mount-helper|   28 ---
 community-i686/calibre.install |   12 -
 community-i686/desktop_integration.patch   |  117 -
 community-x86_64/PKGBUILD  |   92 --
 community-x86_64/calibre-mount-helper  |   28 ---
 community-x86_64/calibre.install   |   12 -
 community-x86_64/desktop_integration.patch |  117 -
 12 files changed, 498 insertions(+), 498 deletions(-)

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


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

2013-12-16 Thread Jelle van der Waa
Date: Monday, December 16, 2013 @ 09:56:46
  Author: jelle
Revision: 102596

upgpkg: calibre 1.15.0-1

Modified:
  calibre/trunk/PKGBUILD
  calibre/trunk/desktop_integration.patch

---+
 PKGBUILD  |6 +++---
 desktop_integration.patch |   24 
 2 files changed, 15 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 08:40:54 UTC (rev 102595)
+++ PKGBUILD2013-12-16 08:56:46 UTC (rev 102596)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=calibre
-pkgver=1.14.0
+pkgver=1.15.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('i686' 'x86_64') 
@@ -87,6 +87,6 @@
   # Compiling optimized bytecode FS33392
   python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
 }
-md5sums=('1191a9313fb3dd9d4d47dfb5a3e52690'
- '971802d53fd0480c930735174ec25311'
+md5sums=('ee72ec13e501b51f22916ea94d26c610'
+ 'b46ad0d81c20a888f10dd3c03571d365'
  '675cd87d41342119827ef706055491e7')

Modified: desktop_integration.patch
===
--- desktop_integration.patch   2013-12-16 08:40:54 UTC (rev 102595)
+++ desktop_integration.patch   2013-12-16 08:56:46 UTC (rev 102596)
@@ -1,6 +1,6 @@
 diff -aur calibre/src/calibre/linux.py calibre.new/src/calibre/linux.py
 calibre/src/calibre/linux.py   2013-12-06 05:13:34.0 +0100
-+++ calibre.new/src/calibre/linux.py   2013-12-08 20:30:59.097240827 +0100
+--- calibre/src/calibre/linux.py   2013-12-13 03:47:23.0 +0100
 calibre.new/src/calibre/linux.py   2013-12-13 11:24:15.165257058 +0100
 @@ -451,18 +451,6 @@
  self.setup_completion()
  if islinux or isbsd:
@@ -29,7 +29,7 @@
  if not os.path.exists(os.path.dirname(f)):
  os.makedirs(os.path.dirname(f))
  if zsh.dest:
-@@ -657,48 +645,28 @@
+@@ -657,51 +645,32 @@
  
  with TemporaryDirectory() as tdir, CurrentDir(tdir), \
  PreserveMIMEDefaults():
@@ -57,14 +57,15 @@
 -render_img('viewer.png', 'calibre-viewer.png')
 -cc('xdg-icon-resource install --size 128 calibre-viewer.png 
calibre-viewer', shell=True)
 -self.icon_resources.append(('apps', 'calibre-viewer', '128'))
--render_img('tweak.png', 'calibre-ebook-tweak.png')
--cc('xdg-icon-resource install --size 128 
calibre-ebook-tweak.png calibre-ebook-tweak', shell=True)
--self.icon_resources.append(('apps', 'calibre-ebook-tweak', 
'128'))
+-render_img('tweak.png', 'calibre-ebook-edit.png')
+-cc('xdg-icon-resource install --size 128 
calibre-ebook-edit.png calibre-ebook-edit', shell=True)
+-self.icon_resources.append(('apps', 'calibre-ebook-edit', 
'128'))
 +dir = os.path.join(self.opts.staging_sharedir,'../pixmaps')
 +os.mkdir(dir)
 +render_img('mimetypes/lrf.png', 
os.path.join(dir,'calibre-lrf.png'))
 +render_img('lt.png', os.path.join(dir, 'calibre-gui.png'))
 +render_img('viewer.png', os.path.join(dir, 
'calibre-viewer.png'))
++render_img('edit.png', os.path.join(dir, 
'calibre-ebook-tweak.png'))
  
  mimetypes = set([])
  for x in all_input_formats():
@@ -87,18 +88,17 @@
 +f = open(os.path.join(dir, 'calibre-ebook-viewer.desktop'), 
'wb')
  f.write(EVIEWER)
  write_mimetypes(f)
- f = open('calibre-ebook-tweak.desktop', 'wb')
-@@ -706,22 +674,15 @@
+-f = open('calibre-ebook-edit.desktop', 'wb')
++f = open(os.path.join(dir, 'calibre-ebook-edit.desktop'), 
'wb')
+ f.write(ETWEAK)
  mt = [guess_type('a.' + x.lower())[0] for x in SUPPORTED]
  f.write('MimeType=%s;\n'%';'.join(mt))
- f.close()
--f = open('calibre-gui.desktop', 'wb')
-+f = open(os.path.join(dir, 'calibre-gui.desktop'), 'wb')
+@@ -710,18 +679,11 @@
  f.write(GUI)
  write_mimetypes(f)
  f.close()
 -des = ('calibre-gui.desktop', 'calibre-lrfviewer.desktop',
--'calibre-ebook-viewer.desktop', 
'calibre-ebook-tweak.desktop')
+-'calibre-ebook-viewer.desktop', 
'calibre-ebook-edit.desktop')
 -for x in des:
 -cmd = ['xdg-desktop-menu', 'install', '--noupdate', 
'./'+x]
 -cc(' '.join(cmd), shell=True)



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

2013-12-16 Thread Maxime Gauduin
Date: Monday, December 16, 2013 @ 09:40:54
  Author: alucryd
Revision: 102595

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

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

+
 /PKGBUILD  |   74 +++
 /geary.install |   34 +
 community-i686/PKGBUILD|   37 ---
 community-i686/geary.install   |   17 
 community-x86_64/PKGBUILD  |   37 ---
 community-x86_64/geary.install |   17 
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-16 08:40:40 UTC (rev 102594)
+++ community-i686/PKGBUILD 2013-12-16 08:40:54 UTC (rev 102595)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor : sebikul 
-# Contributor : Massimiliano Torromeo 
-
-pkgname=geary
-pkgver=0.4.3
-pkgrel=1
-pkgdesc='A lightweight email client for the GNOME desktop'
-arch=('i686' 'x86_64')
-url='http://www.yorba.org/projects/geary/'
-license=('GPL3')
-depends=('desktop-file-utils' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'libunique3' 'webkitgtk3')
-makedepends=('cmake' 'gobject-introspection' 'intltool' 'vala')
-install="${pkgname}.install"
-source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('58a4021bea6be813a1381597f23b646335c9e15c3a7d818c302752a7e07e37a0')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build && cd build
-
-  cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' 
-D{DESKTOP_UPDATE,GSETTINGS_COMPILE{,_IN_PLACE},ICON_UPDATE}='OFF'
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-i686/PKGBUILD (from rev 102594, 
geary/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-16 08:40:54 UTC (rev 102595)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor : sebikul 
+# Contributor : Massimiliano Torromeo 
+
+pkgname=geary
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='A lightweight email client for the GNOME desktop'
+arch=('i686' 'x86_64')
+url='http://www.yorba.org/projects/geary/'
+license=('GPL3')
+depends=('desktop-file-utils' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'webkitgtk')
+makedepends=('cmake' 'gobject-introspection' 'intltool' 'vala')
+install="${pkgname}.install"
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('7f3f442b2b7349e339b380de474d94e9a8ad625d16277277ea500747c3b7a5af')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' 
-D{DESKTOP_UPDATE,GSETTINGS_COMPILE{,_IN_PLACE},ICON_UPDATE}='OFF'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/geary.install
===
--- community-i686/geary.install2013-12-16 08:40:40 UTC (rev 102594)
+++ community-i686/geary.install2013-12-16 08:40:54 UTC (rev 102595)
@@ -1,17 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade()
-{
-  post_install
-}
-
-post_remove()
-{
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-i686/geary.install (from rev 102594, 
geary/trunk/geary.install)
===
--- community-i686/geary.install(rev 0)
+++ community-i686/geary.install2013-12-16 08:40:54 UTC (rev 102595)
@@ -0,0 +1,17 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade()
+{
+  post_install
+}
+
+post_remove()
+{
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===

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

2013-12-16 Thread Maxime Gauduin
Date: Monday, December 16, 2013 @ 09:40:40
  Author: alucryd
Revision: 102594

upgpkg: geary 0.5.0-1

Modified:
  geary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 06:27:25 UTC (rev 102593)
+++ PKGBUILD2013-12-16 08:40:40 UTC (rev 102594)
@@ -4,17 +4,17 @@
 # Contributor : Massimiliano Torromeo 
 
 pkgname=geary
-pkgver=0.4.3
+pkgver=0.5.0
 pkgrel=1
 pkgdesc='A lightweight email client for the GNOME desktop'
 arch=('i686' 'x86_64')
 url='http://www.yorba.org/projects/geary/'
 license=('GPL3')
-depends=('desktop-file-utils' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'libunique3' 'webkitgtk3')
+depends=('desktop-file-utils' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'webkitgtk')
 makedepends=('cmake' 'gobject-introspection' 'intltool' 'vala')
 install="${pkgname}.install"
 
source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('58a4021bea6be813a1381597f23b646335c9e15c3a7d818c302752a7e07e37a0')
+sha256sums=('7f3f442b2b7349e339b380de474d94e9a8ad625d16277277ea500747c3b7a5af')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in nfs-utils/repos (46 files)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:30:46
  Author: tpowa
Revision: 201594

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

Added:
  nfs-utils/repos/testing-i686/
  nfs-utils/repos/testing-i686/PKGBUILD
(from rev 201593, nfs-utils/trunk/PKGBUILD)
  nfs-utils/repos/testing-i686/blkmapd.service
(from rev 201593, nfs-utils/trunk/blkmapd.service)
  nfs-utils/repos/testing-i686/exports
(from rev 201593, nfs-utils/trunk/exports)
  nfs-utils/repos/testing-i686/id_resolver.conf
(from rev 201593, nfs-utils/trunk/id_resolver.conf)
  nfs-utils/repos/testing-i686/idmapd.conf
(from rev 201593, nfs-utils/trunk/idmapd.conf)
  nfs-utils/repos/testing-i686/nfs-client.target
(from rev 201593, nfs-utils/trunk/nfs-client.target)
  nfs-utils/repos/testing-i686/nfs-common.conf
(from rev 201593, nfs-utils/trunk/nfs-common.conf)
  nfs-utils/repos/testing-i686/nfs-server.conf
(from rev 201593, nfs-utils/trunk/nfs-server.conf)
  nfs-utils/repos/testing-i686/nfs-server.target
(from rev 201593, nfs-utils/trunk/nfs-server.target)
  nfs-utils/repos/testing-i686/nfs-utils-1.1.4-mtab-sym.patch
(from rev 201593, nfs-utils/trunk/nfs-utils-1.1.4-mtab-sym.patch)
  nfs-utils/repos/testing-i686/nfs-utils-1.1.4-no-exec.patch
(from rev 201593, nfs-utils/trunk/nfs-utils-1.1.4-no-exec.patch)
  nfs-utils/repos/testing-i686/nfs-utils.conf
(from rev 201593, nfs-utils/trunk/nfs-utils.conf)
  nfs-utils/repos/testing-i686/nfs-utils.install
(from rev 201593, nfs-utils/trunk/nfs-utils.install)
  nfs-utils/repos/testing-i686/nfsd.service
(from rev 201593, nfs-utils/trunk/nfsd.service)
  nfs-utils/repos/testing-i686/proc-fs-nfsd.mount
(from rev 201593, nfs-utils/trunk/proc-fs-nfsd.mount)
  nfs-utils/repos/testing-i686/rpc-gssd.service
(from rev 201593, nfs-utils/trunk/rpc-gssd.service)
  nfs-utils/repos/testing-i686/rpc-idmapd.service
(from rev 201593, nfs-utils/trunk/rpc-idmapd.service)
  nfs-utils/repos/testing-i686/rpc-mountd.service
(from rev 201593, nfs-utils/trunk/rpc-mountd.service)
  nfs-utils/repos/testing-i686/rpc-statd.service
(from rev 201593, nfs-utils/trunk/rpc-statd.service)
  nfs-utils/repos/testing-i686/rpc-svcgssd.service
(from rev 201593, nfs-utils/trunk/rpc-svcgssd.service)
  nfs-utils/repos/testing-i686/start-statd.patch
(from rev 201593, nfs-utils/trunk/start-statd.patch)
  nfs-utils/repos/testing-i686/var-lib-nfs-rpc_pipefs.mount
(from rev 201593, nfs-utils/trunk/var-lib-nfs-rpc_pipefs.mount)
  nfs-utils/repos/testing-x86_64/
  nfs-utils/repos/testing-x86_64/PKGBUILD
(from rev 201593, nfs-utils/trunk/PKGBUILD)
  nfs-utils/repos/testing-x86_64/blkmapd.service
(from rev 201593, nfs-utils/trunk/blkmapd.service)
  nfs-utils/repos/testing-x86_64/exports
(from rev 201593, nfs-utils/trunk/exports)
  nfs-utils/repos/testing-x86_64/id_resolver.conf
(from rev 201593, nfs-utils/trunk/id_resolver.conf)
  nfs-utils/repos/testing-x86_64/idmapd.conf
(from rev 201593, nfs-utils/trunk/idmapd.conf)
  nfs-utils/repos/testing-x86_64/nfs-client.target
(from rev 201593, nfs-utils/trunk/nfs-client.target)
  nfs-utils/repos/testing-x86_64/nfs-common.conf
(from rev 201593, nfs-utils/trunk/nfs-common.conf)
  nfs-utils/repos/testing-x86_64/nfs-server.conf
(from rev 201593, nfs-utils/trunk/nfs-server.conf)
  nfs-utils/repos/testing-x86_64/nfs-server.target
(from rev 201593, nfs-utils/trunk/nfs-server.target)
  nfs-utils/repos/testing-x86_64/nfs-utils-1.1.4-mtab-sym.patch
(from rev 201593, nfs-utils/trunk/nfs-utils-1.1.4-mtab-sym.patch)
  nfs-utils/repos/testing-x86_64/nfs-utils-1.1.4-no-exec.patch
(from rev 201593, nfs-utils/trunk/nfs-utils-1.1.4-no-exec.patch)
  nfs-utils/repos/testing-x86_64/nfs-utils.conf
(from rev 201593, nfs-utils/trunk/nfs-utils.conf)
  nfs-utils/repos/testing-x86_64/nfs-utils.install
(from rev 201593, nfs-utils/trunk/nfs-utils.install)
  nfs-utils/repos/testing-x86_64/nfsd.service
(from rev 201593, nfs-utils/trunk/nfsd.service)
  nfs-utils/repos/testing-x86_64/proc-fs-nfsd.mount
(from rev 201593, nfs-utils/trunk/proc-fs-nfsd.mount)
  nfs-utils/repos/testing-x86_64/rpc-gssd.service
(from rev 201593, nfs-utils/trunk/rpc-gssd.service)
  nfs-utils/repos/testing-x86_64/rpc-idmapd.service
(from rev 201593, nfs-utils/trunk/rpc-idmapd.service)
  nfs-utils/repos/testing-x86_64/rpc-mountd.service
(from rev 201593, nfs-utils/trunk/rpc-mountd.service)
  nfs-utils/repos/testing-x86_64/rpc-statd.service
(from rev 201593, nfs-utils/trunk/rpc-statd.service)
  nfs-utils/repos/testing-x86_64/rpc-svcgssd.service
(from rev 201593, nfs-utils/trunk/rpc-svcgssd.service)
  nfs-utils/repos/testing-x86_64/start-statd.patch
(from rev 201593, nfs-utils/trunk/start-statd.patch)
  nfs-utils/repos/testing-x86_64/var-lib-nfs-rpc_pipefs.mount
(from rev 201593, nfs-utils/trunk/var-lib-nfs-rpc_pipefs.mount)

---+
 testing-i686/PKGBUILD

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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:30:03
  Author: tpowa
Revision: 201593

upgpkg: nfs-utils 1.2.9-2

add #38130 improvements

Deleted:
  nfs-utils/trunk/nfs

-+
 nfs |   40 
 1 file changed, 40 deletions(-)

Deleted: nfs
===
--- nfs 2013-12-16 08:24:08 UTC (rev 201592)
+++ nfs 2013-12-16 08:30:03 UTC (rev 201593)
@@ -1,40 +0,0 @@
-#
-# Optinal options passed to rquotad
-RPCRQUOTADOPTS=""
-#
-# Optional arguments passed to in-kernel lockd
-#LOCKDARG=
-# TCP port rpc.lockd should listen on.
-#LOCKD_TCPPORT=32803
-# UDP port rpc.lockd should listen on.
-#LOCKD_UDPPORT=32769
-#
-# Optional arguments passed to rpc.nfsd. See rpc.nfsd(8)
-RPCNFSDARGS=""
-# Number of nfs server processes to be started.
-# The default is 8. 
-RPCNFSDCOUNT=8
-# Set V4 grace period in seconds
-#NFSD_V4_GRACE=90
-#
-# Optional arguments passed to rpc.mountd. See rpc.mountd(8)
-RPCMOUNTDOPTS=""
-#
-# Optional arguments passed to rpc.statd. See rpc.statd(8)
-STATDARG=""
-#
-# Optional arguments passed to rpc.idmapd. See rpc.idmapd(8)
-RPCIDMAPDARGS=""
-#
-# Optional arguments passed to rpc.gssd. See rpc.gssd(8)
-RPCGSSDARGS=""
-#
-# Optional arguments passed to rpc.svcgssd. See rpc.svcgssd(8)
-RPCSVCGSSDARGS=""
-#
-# To enable RDMA support on the server by setting this to
-# the port the server should listen on
-#RDMA_PORT=20049 
-#
-# Optional arguments passed to blkmapd. See blkmapd(8)
-BLKMAPDARGS=""



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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:24:08
  Author: tpowa
Revision: 201592

upgpkg: nfs-utils 1.2.9-2

add #38130 improvements

Added:
  nfs-utils/trunk/nfs-client.target
  nfs-utils/trunk/nfs-server.target
Modified:
  nfs-utils/trunk/PKGBUILD
  nfs-utils/trunk/id_resolver.conf

---+
 PKGBUILD  |   29 ++---
 id_resolver.conf  |3 ++-
 nfs-client.target |8 
 nfs-server.target |   10 ++
 4 files changed, 34 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 08:17:39 UTC (rev 201591)
+++ PKGBUILD2013-12-16 08:24:08 UTC (rev 201592)
@@ -7,7 +7,7 @@
 
 pkgname=nfs-utils
 pkgver=1.2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Support programs for Network File Systems"
 arch=('i686' 'x86_64')
 url='http://nfs.sourceforge.net'
@@ -38,26 +38,26 @@
 start-statd.patch)
 install=nfs-utils.install
 optdepends=('sqlite: for nfsdcltrack usage')
-
 md5sums=('18869d16db3f49c053f8c68eba3fe2e0'
  'f73f197a16b02c3e248488ec35c4cf43'
  '9cef69bc686cc5dcac23fbb51450747d'
- 'ff585faf410a62c4333a027c50b56bae'
+ 'e6ad3c7a59c7e4c24965a0e7da35026c'
  'eb4f4027fab6fc1201f1ca04f5954c76'
- 'f5e7bba09a46c5c5d7007cac6eff9df5'
  '7674106eaaa4c149bccd4f05fe3604e9'
  '4f4827dfc93008dfadd0a530ad0872b2'
- '6aeb4a80b2a5162f5951438474ea22f3'
- 'ff95ad9275ef774e0a2ea8adfe55ee66'
- '2e991f0e440b4809e22b6c7689544fc0'
- '42d0088add3beab0284be1379391382b'
- '60d82e2d2d19d21ceb72665e54bf913e'
- '3bcc9901478f4f9ea0a03b67171c13e3'
- '1cd65909fa0983047f3f06a3ab352401'
- '8f1b5282795895c9b8ce8430d20cdda6'
- '8f03e708b230619ffc2a799a48bffb53'
+ '4c704d8e7e7e8dce3050319b9db88d2b'
+ '656ac433c4443eba6b47744a53a3c7d9'
+ '295ec0c9c049e146992561650fec9d52'
+ 'ace4d56493e2c4822dda165db8263da6'
+ '35479f98600d594071ed21bf553a38da'
+ '01a1dd533382630ccecc9b882c47aa2f'
+ 'f48da2fb07b1d5f016d63c16b0979ebb'
+ '972eb80ff8c94c647b977a8a3cdd985f'
+ 'a13e9f388cd939d68fa6ada205eb4e25'
+ '1ee3eea917131f04bb08f2f858be7724'
+ '2e4a567cd3d4bf0feab0e380c46c3e50'
  '8ac484023d786766d287ccbe878ae4ba'
- 'bed57f7c3911af695ec7b469248c104a'
+ 'a43aabf0b8d02406b1babc3a206d952a'
  'f8bb29c2ca1ce178e6371091a3e1090d')
 
 prepare() {
@@ -103,4 +103,3 @@
   mkdir -m 555 "$pkgdir"/var/lib/nfs/rpc_pipefs
   mkdir "$pkgdir"/var/lib/nfs/v4recovery
 }
-

Modified: id_resolver.conf
===
--- id_resolver.conf2013-12-16 08:17:39 UTC (rev 201591)
+++ id_resolver.conf2013-12-16 08:24:08 UTC (rev 201592)
@@ -1 +1,2 @@
-create id_resolver * * /usr/bin/nfsidmap %k %d
\ No newline at end of file
+create id_resolver * * /usr/bin/nfsidmap %k %d
+

Added: nfs-client.target
===
--- nfs-client.target   (rev 0)
+++ nfs-client.target   2013-12-16 08:24:08 UTC (rev 201592)
@@ -0,0 +1,8 @@
+[Unit]
+Description=NFS Client Daemons
+Before=remote-fs-pre.target
+Wants=rpc-statd.service
+Wants=rpc-gssd.service
+
+[Install]
+WantedBy=multi-user.target

Added: nfs-server.target
===
--- nfs-server.target   (rev 0)
+++ nfs-server.target   2013-12-16 08:24:08 UTC (rev 201592)
@@ -0,0 +1,10 @@
+[Unit]
+Description=NFS File Server Daemons
+Wants=rpc-mountd.service
+Wants=rpc-idmapd.service
+Wants=rpc-rquotad.service
+Wants=rpc-statd.service
+Wants=rpc-svcgssd.service
+
+[Install]
+WantedBy=multi-user.target



[arch-commits] Commit in nfs-utils/trunk (exports)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:17:03
  Author: tpowa
Revision: 201590

stop-using-deprecated-gss-syntax-in-exports

Modified:
  nfs-utils/trunk/exports

-+
 exports |   15 ++-
 1 file changed, 6 insertions(+), 9 deletions(-)

Modified: exports
===
--- exports 2013-12-16 08:16:45 UTC (rev 201589)
+++ exports 2013-12-16 08:17:03 UTC (rev 201590)
@@ -1,15 +1,12 @@
-# /etc/exports
+# /etc/exports - exports(5) - directories exported to NFS clients
 #
-# List of directories exported to NFS clients.  See exports(5).
-# Use exportfs -arv to reread.
-#
 # Example for NFSv2 and NFSv3:
-#  /srv/home   hostname1(rw,sync) hostname2(ro,sync)
-#
+#  /srv/homehostname1(rw,sync) hostname2(ro,sync)
 # Example for NFSv4:
-#  /srv/nfs4  hostname1(rw,sync,fsid=0)
+#  /srv/nfs4   hostname1(rw,sync,fsid=0)
 #  /srv/nfs4/home   hostname1(rw,sync,nohide)
 # Using Kerberos and integrity checking:
-#  /srv/nfs4gss/krb5i(rw,sync,fsid=0,crossmnt)
-#  /srv/nfs4/home   gss/krb5i(rw,sync,nohide)
+#  /srv/nfs4*(rw,sync,sec=krb5i,fsid=0)
+#  /srv/nfs4/home   *(rw,sync,sec=krb5i,nohide)
 #
+# Use `exportfs -arv` to reload.



[arch-commits] Commit in nfs-utils/trunk (7 files)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:17:39
  Author: tpowa
Revision: 201591

add-nfs-server-client-.target-s-for-easier-usage

Modified:
  nfs-utils/trunk/PKGBUILD
  nfs-utils/trunk/nfsd.service
  nfs-utils/trunk/rpc-gssd.service
  nfs-utils/trunk/rpc-idmapd.service
  nfs-utils/trunk/rpc-mountd.service
  nfs-utils/trunk/rpc-statd.service
  nfs-utils/trunk/rpc-svcgssd.service

-+
 PKGBUILD|4 +++-
 nfsd.service|2 ++
 rpc-gssd.service|3 ++-
 rpc-idmapd.service  |3 ++-
 rpc-mountd.service  |2 ++
 rpc-statd.service   |3 ++-
 rpc-svcgssd.service |2 ++
 7 files changed, 15 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 08:17:03 UTC (rev 201590)
+++ PKGBUILD2013-12-16 08:17:39 UTC (rev 201591)
@@ -30,6 +30,8 @@
nfsd.service
var-lib-nfs-rpc_pipefs.mount
proc-fs-nfsd.mount
+   nfs-client.target
+   nfs-server.target
blkmapd.service
nfs-utils.conf
 id_resolver.conf
@@ -94,7 +96,7 @@
   install -D -m 644 idmapd.conf  "$pkgdir"/etc/idmapd.conf
   install -D -m 644 id_resolver.conf 
"$pkgdir"/etc/request-key.d/id_resolver.conf
   install -D -m 644 nfs-utils.conf   
"$pkgdir"/usr/lib/modules-load.d/nfs-utils.conf
-  for i in *.service *.mount; do
+  for i in *.service *.mount *.target; do
 install -D -m 644 $i "$pkgdir"/usr/lib/systemd/system/$i
   done
   mkdir "$pkgdir"/etc/exports.d

Modified: nfsd.service
===
--- nfsd.service2013-12-16 08:17:03 UTC (rev 201590)
+++ nfsd.service2013-12-16 08:17:39 UTC (rev 201591)
@@ -3,6 +3,8 @@
 Documentation=man:rpc.nfsd(8)
 After=rpcbind.service
 Requires=rpcbind.service
+Before=nfs-server.target
+PartOf=nfs-server.target
 
 [Service]
 Type=oneshot

Modified: rpc-gssd.service
===
--- rpc-gssd.service2013-12-16 08:17:03 UTC (rev 201590)
+++ rpc-gssd.service2013-12-16 08:17:39 UTC (rev 201591)
@@ -4,7 +4,8 @@
 After=rpcbind.service
 Requires=rpcbind.service
 RequiresMountsFor=/var/lib/nfs/rpc_pipefs
-Before=remote-fs-pre.target
+Before=nfs-client.target remote-fs-pre.target
+PartOf=nfs-client.target
 
 [Service]
 Type=forking

Modified: rpc-idmapd.service
===
--- rpc-idmapd.service  2013-12-16 08:17:03 UTC (rev 201590)
+++ rpc-idmapd.service  2013-12-16 08:17:39 UTC (rev 201591)
@@ -3,7 +3,8 @@
 Documentation=man:rpc.idmapd(8) man:idmapd.conf(5)
 After=nfsd.service
 RequiresMountsFor=/var/lib/nfs/rpc_pipefs
-Before=remote-fs-pre.target
+Before=nfs-server.target
+PartOf=nfs-server.target
 
 [Service]
 Type=forking

Modified: rpc-mountd.service
===
--- rpc-mountd.service  2013-12-16 08:17:03 UTC (rev 201590)
+++ rpc-mountd.service  2013-12-16 08:17:39 UTC (rev 201591)
@@ -3,6 +3,8 @@
 Documentation=man:rpc.mountd(8)
 After=rpcbind.service nfsd.service
 Requires=rpcbind.service nfsd.service
+Before=nfs-server.target
+PartOf=nfs-server.target
 
 [Service]
 Type=forking

Modified: rpc-statd.service
===
--- rpc-statd.service   2013-12-16 08:17:03 UTC (rev 201590)
+++ rpc-statd.service   2013-12-16 08:17:39 UTC (rev 201591)
@@ -3,7 +3,8 @@
 Documentation=man:rpc.statd(8)
 After=rpcbind.service
 Requires=rpcbind.service
-Before=remote-fs-pre.target
+Before=nfs-server.target
+PartOf=nfs-server.target
 
 [Service]
 Type=forking

Modified: rpc-svcgssd.service
===
--- rpc-svcgssd.service 2013-12-16 08:17:03 UTC (rev 201590)
+++ rpc-svcgssd.service 2013-12-16 08:17:39 UTC (rev 201591)
@@ -3,6 +3,8 @@
 Documentation=man:rpc.svcgssd(8)
 After=rpcbind.service
 Requires=rpcbind.service
+Before=nfs-server.target
+PartOf=nfs-server.target
 
 [Service]
 Type=forking



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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:16:45
  Author: tpowa
Revision: 201589

make-PKGBUILD-nicer

Modified:
  nfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 08:16:25 UTC (rev 201588)
+++ PKGBUILD2013-12-16 08:16:45 UTC (rev 201589)
@@ -82,28 +82,23 @@
 
 package() {
   cd $srcdir/${pkgname}-${pkgver}
-  # fix make install
-  make DESTDIR=$pkgdir install
 
-  # support python2 (FS#25120)
+  make DESTDIR="$pkgdir" install
   sed -i '1s/python$/python2/' "$pkgdir"/usr/bin/{nfsiostat,mountstats}
+  install -D -m 644 utils/mount/nfsmount.conf "$pkgdir"/etc/nfsmount.conf
 
-  # Configuration
-  install -D -m 644 ../exports "$pkgdir/"etc/exports
-  install -D -m 644 ../idmapd.conf "$pkgdir/"etc/idmapd.conf
-  install -D -m 644 ../nfs-common.conf "$pkgdir/"etc/conf.d/nfs-common.conf
-  install -D -m 644 ../nfs-server.conf "$pkgdir/"etc/conf.d/nfs-server.conf
-  install -D -m 644 utils/mount/nfsmount.conf "$pkgdir/"etc/nfsmount.conf
-  # keyutils id_resolver #35463
-  install -D -m 644 ../id_resolver.conf 
"$pkgdir/"etc/request-key.d/id_resolver.conf
-  # systemd files
-  for i in ${srcdir}/*.{service,mount}; do
-install -D -m 644 $i "$pkgdir/usr/lib/systemd/system/${i##*/}"
+  cd ..
+  install -D -m 644 nfs-common.conf  "$pkgdir"/etc/conf.d/nfs-common.conf
+  install -D -m 644 nfs-server.conf  "$pkgdir"/etc/conf.d/nfs-server.conf
+  install -D -m 644 exports  "$pkgdir"/etc/exports
+  install -D -m 644 idmapd.conf  "$pkgdir"/etc/idmapd.conf
+  install -D -m 644 id_resolver.conf 
"$pkgdir"/etc/request-key.d/id_resolver.conf
+  install -D -m 644 nfs-utils.conf   
"$pkgdir"/usr/lib/modules-load.d/nfs-utils.conf
+  for i in *.service *.mount; do
+install -D -m 644 $i "$pkgdir"/usr/lib/systemd/system/$i
   done
-  install -D -m 644 ../nfs-utils.conf 
"$pkgdir/"usr/lib/modules-load.d/nfs-utils.conf
-  # directories
-  mkdir "$pkgdir/"etc/exports.d
-  mkdir -m 555 "$pkgdir/"var/lib/nfs/rpc_pipefs
-  mkdir "$pkgdir/"var/lib/nfs/v4recovery
+  mkdir "$pkgdir"/etc/exports.d
+  mkdir -m 555 "$pkgdir"/var/lib/nfs/rpc_pipefs
+  mkdir "$pkgdir"/var/lib/nfs/v4recovery
 }
 



[arch-commits] Commit in nfs-utils/trunk (nfsd.service)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:15:57
  Author: tpowa
Revision: 201587

nfsd.service-add-ExecReload

Modified:
  nfs-utils/trunk/nfsd.service

--+
 nfsd.service |1 +
 1 file changed, 1 insertion(+)

Modified: nfsd.service
===
--- nfsd.service2013-12-16 08:15:35 UTC (rev 201586)
+++ nfsd.service2013-12-16 08:15:57 UTC (rev 201587)
@@ -9,6 +9,7 @@
 EnvironmentFile=/etc/conf.d/nfs-server.conf
 ExecStart=/usr/bin/rpc.nfsd $NFSD_OPTS $NFSD_COUNT
 ExecStartPost=/usr/bin/exportfs -a
+ExecReload=/usr/bin/exportfs -a -r
 ExecStop=/usr/bin/rpc.nfsd 0
 ExecStopPost=/usr/bin/exportfs -a -u
 RemainAfterExit=yes



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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:16:25
  Author: tpowa
Revision: 201588

remove-etc-conf.d-nfs-leftover

Modified:
  nfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 08:15:57 UTC (rev 201587)
+++ PKGBUILD2013-12-16 08:16:25 UTC (rev 201588)
@@ -20,7 +20,6 @@
nfs-server.conf
exports
idmapd.conf
-nfs
nfs-utils-1.1.4-mtab-sym.patch
nfs-utils-1.1.4-no-exec.patch
rpc-gssd.service
@@ -94,7 +93,6 @@
   install -D -m 644 ../idmapd.conf "$pkgdir/"etc/idmapd.conf
   install -D -m 644 ../nfs-common.conf "$pkgdir/"etc/conf.d/nfs-common.conf
   install -D -m 644 ../nfs-server.conf "$pkgdir/"etc/conf.d/nfs-server.conf
-  install -D -m 644 ../nfs "$pkgdir/"etc/conf.d/nfs
   install -D -m 644 utils/mount/nfsmount.conf "$pkgdir/"etc/nfsmount.conf
   # keyutils id_resolver #35463
   install -D -m 644 ../id_resolver.conf 
"$pkgdir/"etc/request-key.d/id_resolver.conf



[arch-commits] Commit in nfs-utils/trunk (9 files)

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:15:13
  Author: tpowa
Revision: 201585

update-descriptions-documentation

Modified:
  nfs-utils/trunk/blkmapd.service
  nfs-utils/trunk/nfsd.service
  nfs-utils/trunk/proc-fs-nfsd.mount
  nfs-utils/trunk/rpc-gssd.service
  nfs-utils/trunk/rpc-idmapd.service
  nfs-utils/trunk/rpc-mountd.service
  nfs-utils/trunk/rpc-statd.service
  nfs-utils/trunk/rpc-svcgssd.service
  nfs-utils/trunk/var-lib-nfs-rpc_pipefs.mount

--+
 blkmapd.service  |3 ++-
 nfsd.service |3 ++-
 proc-fs-nfsd.mount   |2 +-
 rpc-gssd.service |3 ++-
 rpc-idmapd.service   |3 ++-
 rpc-mountd.service   |3 ++-
 rpc-statd.service|3 ++-
 rpc-svcgssd.service  |3 ++-
 var-lib-nfs-rpc_pipefs.mount |2 +-
 9 files changed, 16 insertions(+), 9 deletions(-)

Modified: blkmapd.service
===
--- blkmapd.service 2013-12-16 08:10:23 UTC (rev 201584)
+++ blkmapd.service 2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=pNFS block layout mapping daemon
+Description=pNFS Block Layout Client Mapping Daemon
+Documentation=man:blkmapd(8)
 After=var-lib-nfs-rpc_pipefs.mount nfsd.service
 Requires=var-lib-nfs-rpc_pipefs.mount
 

Modified: nfsd.service
===
--- nfsd.service2013-12-16 08:10:23 UTC (rev 201584)
+++ nfsd.service2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=NFS server
+Description=NFS Server Daemon
+Documentation=man:rpc.nfsd(8)
 After=rpcbind.service
 Requires=rpcbind.service
 

Modified: proc-fs-nfsd.mount
===
--- proc-fs-nfsd.mount  2013-12-16 08:10:23 UTC (rev 201584)
+++ proc-fs-nfsd.mount  2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,5 @@
 [Unit]
-Description=RPC Pipe File System 
+Description=NFS Configuration File System
 DefaultDependencies=no
 
 [Mount]

Modified: rpc-gssd.service
===
--- rpc-gssd.service2013-12-16 08:10:23 UTC (rev 201584)
+++ rpc-gssd.service2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=RPC GSS-API client-side daemon
+Description=RPC GSS-API Client Daemon
+Documentation=man:rpc.gssd(8)
 After=rpcbind.service var-lib-nfs-rpc_pipefs.mount
 Requires=rpcbind.service var-lib-nfs-rpc_pipefs.mount
 Before=remote-fs-pre.target

Modified: rpc-idmapd.service
===
--- rpc-idmapd.service  2013-12-16 08:10:23 UTC (rev 201584)
+++ rpc-idmapd.service  2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=NFSv4 ID-name mapping daemon
+Description=NFS v4 ID-Name Mapping Daemon
+Documentation=man:rpc.idmapd(8) man:idmapd.conf(5)
 After=var-lib-nfs-rpc_pipefs.mount nfsd.service
 Requires=var-lib-nfs-rpc_pipefs.mount
 Before=remote-fs-pre.target

Modified: rpc-mountd.service
===
--- rpc-mountd.service  2013-12-16 08:10:23 UTC (rev 201584)
+++ rpc-mountd.service  2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=NFS Mount Daemon
+Description=NFS Mount Server Daemon
+Documentation=man:rpc.mountd(8)
 After=rpcbind.service nfsd.service
 Requires=rpcbind.service nfsd.service
 

Modified: rpc-statd.service
===
--- rpc-statd.service   2013-12-16 08:10:23 UTC (rev 201584)
+++ rpc-statd.service   2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=NFSv2/3 Network Status Monitor Daemon
+Description=NFS v2/3 Network Status Monitor Daemon
+Documentation=man:rpc.statd(8)
 After=rpcbind.service
 Requires=rpcbind.service
 Before=remote-fs-pre.target

Modified: rpc-svcgssd.service
===
--- rpc-svcgssd.service 2013-12-16 08:10:23 UTC (rev 201584)
+++ rpc-svcgssd.service 2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,6 @@
 [Unit]
-Description=RPC GSS-API server-side daemon
+Description=RPC GSS-API Server Daemon
+Documentation=man:rpc.svcgssd(8)
 After=rpcbind.service
 Requires=rpcbind.service
 

Modified: var-lib-nfs-rpc_pipefs.mount
===
--- var-lib-nfs-rpc_pipefs.mount2013-12-16 08:10:23 UTC (rev 201584)
+++ var-lib-nfs-rpc_pipefs.mount2013-12-16 08:15:13 UTC (rev 201585)
@@ -1,5 +1,5 @@
 [Unit]
-Description=RPC pipe filesystem
+Description=RPC Pipe File System
 
 [Mount]
 What=rpc_pipefs



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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:15:35
  Author: tpowa
Revision: 201586

use-RequiresMountsFor-where-possible

Modified:
  nfs-utils/trunk/blkmapd.service
  nfs-utils/trunk/rpc-gssd.service
  nfs-utils/trunk/rpc-idmapd.service

+
 blkmapd.service|4 ++--
 rpc-gssd.service   |5 +++--
 rpc-idmapd.service |4 ++--
 3 files changed, 7 insertions(+), 6 deletions(-)

Modified: blkmapd.service
===
--- blkmapd.service 2013-12-16 08:15:13 UTC (rev 201585)
+++ blkmapd.service 2013-12-16 08:15:35 UTC (rev 201586)
@@ -1,8 +1,8 @@
 [Unit]
 Description=pNFS Block Layout Client Mapping Daemon
 Documentation=man:blkmapd(8)
-After=var-lib-nfs-rpc_pipefs.mount nfsd.service
-Requires=var-lib-nfs-rpc_pipefs.mount
+After=nfsd.service
+RequiresMountsFor=/var/lib/nfs/rpc_pipefs
 
 [Service]
 Type=forking

Modified: rpc-gssd.service
===
--- rpc-gssd.service2013-12-16 08:15:13 UTC (rev 201585)
+++ rpc-gssd.service2013-12-16 08:15:35 UTC (rev 201586)
@@ -1,8 +1,9 @@
 [Unit]
 Description=RPC GSS-API Client Daemon
 Documentation=man:rpc.gssd(8)
-After=rpcbind.service var-lib-nfs-rpc_pipefs.mount
-Requires=rpcbind.service var-lib-nfs-rpc_pipefs.mount
+After=rpcbind.service
+Requires=rpcbind.service
+RequiresMountsFor=/var/lib/nfs/rpc_pipefs
 Before=remote-fs-pre.target
 
 [Service]

Modified: rpc-idmapd.service
===
--- rpc-idmapd.service  2013-12-16 08:15:13 UTC (rev 201585)
+++ rpc-idmapd.service  2013-12-16 08:15:35 UTC (rev 201586)
@@ -1,8 +1,8 @@
 [Unit]
 Description=NFS v4 ID-Name Mapping Daemon
 Documentation=man:rpc.idmapd(8) man:idmapd.conf(5)
-After=var-lib-nfs-rpc_pipefs.mount nfsd.service
-Requires=var-lib-nfs-rpc_pipefs.mount
+After=nfsd.service
+RequiresMountsFor=/var/lib/nfs/rpc_pipefs
 Before=remote-fs-pre.target
 
 [Service]



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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:10:23
  Author: tpowa
Revision: 201584

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

Added:
  refind-efi/repos/extra-i686/PKGBUILD
(from rev 201583, refind-efi/trunk/PKGBUILD)
  refind-efi/repos/extra-i686/refind-efi.install
(from rev 201583, refind-efi/trunk/refind-efi.install)
  refind-efi/repos/extra-i686/refind_linux.conf
(from rev 201583, refind-efi/trunk/refind_linux.conf)
  refind-efi/repos/extra-x86_64/PKGBUILD
(from rev 201583, refind-efi/trunk/PKGBUILD)
  refind-efi/repos/extra-x86_64/refind-efi.install
(from rev 201583, refind-efi/trunk/refind-efi.install)
  refind-efi/repos/extra-x86_64/refind_linux.conf
(from rev 201583, refind-efi/trunk/refind_linux.conf)
Deleted:
  refind-efi/repos/extra-i686/PKGBUILD
  refind-efi/repos/extra-i686/refind-efi.install
  refind-efi/repos/extra-i686/refind_linux.conf
  refind-efi/repos/extra-x86_64/PKGBUILD
  refind-efi/repos/extra-x86_64/refind-efi.install
  refind-efi/repos/extra-x86_64/refind_linux.conf

-+
 /PKGBUILD   |  508 ++
 /refind-efi.install |   64 
 /refind_linux.conf  |   10 
 extra-i686/PKGBUILD |  254 ---
 extra-i686/refind-efi.install   |   32 --
 extra-i686/refind_linux.conf|5 
 extra-x86_64/PKGBUILD   |  254 ---
 extra-x86_64/refind-efi.install |   32 --
 extra-x86_64/refind_linux.conf  |5 
 9 files changed, 582 insertions(+), 582 deletions(-)

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


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

2013-12-16 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 09:10:09
  Author: tpowa
Revision: 201583

upgpkg: refind-efi 0.7.6-1

bump to latest version

Modified:
  refind-efi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 07:56:49 UTC (rev 201582)
+++ PKGBUILD2013-12-16 08:10:09 UTC (rev 201583)
@@ -17,7 +17,7 @@
 ###
 
 pkgname="refind-efi"
-pkgver="0.7.5"
+pkgver="0.7.6"
 pkgrel="1"
 pkgdesc="Rod Smith's fork of rEFIt UEFI Boot Manager - built with Tianocore 
UDK libs"
 url="http://www.rodsbooks.com/refind/index.html";
@@ -40,7 +40,7 @@

source+=("${_TIANO_DIR_}_${_DIR_}::svn+${_TIANOCORE_SVN_URL}/${_DIR_}#revision=${_TIANO_SVN_REV_}")
 done
 
-sha1sums=('1084147266be8d69f1a199d02049b71a50c830de'
+sha1sums=('431423452190c9840335f2dd9af887aded52a787'
   '3d53eb615c3363d45feb95b9bfbf1d5491bf1c24'
   'SKIP'
   'SKIP'