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

2013-12-15 Thread Pierre Schmitz
Date: Sunday, December 15, 2013 @ 10:17:26
  Author: pierre
Revision: 201564

upgpkg: zsh 5.0.3-1

Added:
  zsh/trunk/zsh-doc.install
Modified:
  zsh/trunk/PKGBUILD

-+
 PKGBUILD|   45 +++--
 zsh-doc.install |   20 
 2 files changed, 51 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 06:47:10 UTC (rev 201563)
+++ PKGBUILD2013-12-15 09:17:26 UTC (rev 201564)
@@ -1,23 +1,23 @@
 # $Id$
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
-pkgname=zsh
-pkgver=5.0.2
-pkgrel=4
-pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
+pkgbase=zsh
+pkgname=('zsh' 'zsh-doc')
+pkgver=5.0.3
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.zsh.org/'
 license=('custom')
-depends=('pcre' 'libcap' 'gdbm')
-backup=('etc/zsh/zprofile')
-install=zsh.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+makedepends=('pcre' 'libcap' 'gdbm')
+source=(http://www.zsh.org/pub/zsh-${pkgver}.tar.bz2;
+http://www.zsh.org/pub/zsh-${pkgver}-doc.tar.bz2;
 'zprofile')
-md5sums=('b8f2ad691acf58b3252225746480dcad'
+md5sums=('aeba7cffed625aa5e212d33285243e11'
+ '01096a74fb641d2c6a00de0cfe2cd3ec'
  '24a9335edf77252a7b5f52e079f7aef7')
 
 prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
+   cd ${srcdir}/${pkgbase}-${pkgver}
 
# Set correct keymap path
sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' 
Completion/Unix/Command/_loadkeys
@@ -32,9 +32,11 @@
 }
 
 build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
+   cd ${srcdir}/${pkgbase}-${pkgver}
 
./configure --prefix=/usr \
+   --docdir=/usr/share/doc/zsh \
+   --htmldir=/usr/share/doc/zsh/html \
--enable-etcdir=/etc/zsh \
--enable-zshenv=/etc/zsh/zshenv \
--enable-zlogin=/etc/zsh/zlogin \
@@ -55,13 +57,28 @@
 }
 
 check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
+   cd ${srcdir}/${pkgbase}-${pkgver}
HOME=${srcdir} make check
 }
 
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
+package_zsh() {
+   pkgdesc='A very advanced and programmable command interpreter (shell) 
for UNIX'
+   depends=('pcre' 'libcap' 'gdbm')
+   backup=('etc/zsh/zprofile')
+   install=zsh.install
+
+   cd ${srcdir}/${pkgbase}-${pkgver}
make DESTDIR=${pkgdir}/ install
install -D -m644 ${srcdir}/zprofile ${pkgdir}/etc/zsh/zprofile
install -D -m644 LICENCE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
+
+package_zsh-doc() {
+   pkgdesc='Info, HTML and PDF format of the ZSH documentation'
+   install=zsh-doc.install
+
+   cd ${srcdir}/${pkgbase}-${pkgver}
+   make DESTDIR=${pkgdir}/ install.info install.html
+   install -D -m644 Doc/zsh.pdf ${pkgdir}/usr/share/doc/zsh.pdf
+   install -D -m644 LICENCE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Added: zsh-doc.install
===
--- zsh-doc.install (rev 0)
+++ zsh-doc.install 2013-12-15 09:17:26 UTC (rev 201564)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(zsh.info zsh.info-1 zsh.info-2 zsh.info-3 zsh.info-4 zsh.info-5 
zsh.info-6)
+
+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
+}
+
+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 zsh/repos (10 files)

2013-12-15 Thread Pierre Schmitz
Date: Sunday, December 15, 2013 @ 10:17:41
  Author: pierre
Revision: 201565

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

Added:
  zsh/repos/testing-i686/
  zsh/repos/testing-i686/PKGBUILD
(from rev 201564, zsh/trunk/PKGBUILD)
  zsh/repos/testing-i686/zprofile
(from rev 201564, zsh/trunk/zprofile)
  zsh/repos/testing-i686/zsh-doc.install
(from rev 201564, zsh/trunk/zsh-doc.install)
  zsh/repos/testing-i686/zsh.install
(from rev 201564, zsh/trunk/zsh.install)
  zsh/repos/testing-x86_64/
  zsh/repos/testing-x86_64/PKGBUILD
(from rev 201564, zsh/trunk/PKGBUILD)
  zsh/repos/testing-x86_64/zprofile
(from rev 201564, zsh/trunk/zprofile)
  zsh/repos/testing-x86_64/zsh-doc.install
(from rev 201564, zsh/trunk/zsh-doc.install)
  zsh/repos/testing-x86_64/zsh.install
(from rev 201564, zsh/trunk/zsh.install)

+
 testing-i686/PKGBUILD  |   84 +++
 testing-i686/zprofile  |1 
 testing-i686/zsh-doc.install   |   20 +
 testing-i686/zsh.install   |   12 +
 testing-x86_64/PKGBUILD|   84 +++
 testing-x86_64/zprofile|1 
 testing-x86_64/zsh-doc.install |   20 +
 testing-x86_64/zsh.install |   12 +
 8 files changed, 234 insertions(+)

Copied: zsh/repos/testing-i686/PKGBUILD (from rev 201564, zsh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-15 09:17:41 UTC (rev 201565)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=zsh
+pkgname=('zsh' 'zsh-doc')
+pkgver=5.0.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.zsh.org/'
+license=('custom')
+makedepends=('pcre' 'libcap' 'gdbm')
+source=(http://www.zsh.org/pub/zsh-${pkgver}.tar.bz2;
+http://www.zsh.org/pub/zsh-${pkgver}-doc.tar.bz2;
+'zprofile')
+md5sums=('aeba7cffed625aa5e212d33285243e11'
+ '01096a74fb641d2c6a00de0cfe2cd3ec'
+ '24a9335edf77252a7b5f52e079f7aef7')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   # Set correct keymap path
+   sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' 
Completion/Unix/Command/_loadkeys
+
+   # Remove unneeded and conflicting completion scripts
+   for _fpath in AIX BSD Cygwin Darwin Debian Mandriva openSUSE Redhat 
Solaris; do
+   rm -rf Completion/$_fpath
+   sed s#\s*Completion/$_fpath/\*/\*##g -i Src/Zle/complete.mdd
+   done
+   rm -f  Completion/Linux/Command/_{pkgtool,rpmbuild,yast}
+   rm -f  Completion/Unix/Command/_{osc,systemd}
+}
+
+build() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   ./configure --prefix=/usr \
+   --docdir=/usr/share/doc/zsh \
+   --htmldir=/usr/share/doc/zsh/html \
+   --enable-etcdir=/etc/zsh \
+   --enable-zshenv=/etc/zsh/zshenv \
+   --enable-zlogin=/etc/zsh/zlogin \
+   --enable-zlogout=/etc/zsh/zlogout \
+   --enable-zprofile=/etc/zsh/zprofile \
+   --enable-zshrc=/etc/zsh/zshrc \
+   --enable-maildir-support \
+   --with-term-lib='ncursesw' \
+   --enable-multibyte \
+   --enable-function-subdirs \
+   --enable-fndir=/usr/share/zsh/functions \
+   --enable-scriptdir=/usr/share/zsh/scripts \
+   --with-tcsetpgrp \
+   --enable-pcre \
+   --enable-cap \
+   --enable-zsh-secure-free
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+   HOME=${srcdir} make check
+}
+
+package_zsh() {
+   pkgdesc='A very advanced and programmable command interpreter (shell) 
for UNIX'
+   depends=('pcre' 'libcap' 'gdbm')
+   backup=('etc/zsh/zprofile')
+   install=zsh.install
+
+   cd ${srcdir}/${pkgbase}-${pkgver}
+   make DESTDIR=${pkgdir}/ install
+   install -D -m644 ${srcdir}/zprofile ${pkgdir}/etc/zsh/zprofile
+   install -D -m644 LICENCE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_zsh-doc() {
+   pkgdesc='Info, HTML and PDF format of the ZSH documentation'
+   install=zsh-doc.install
+
+   cd ${srcdir}/${pkgbase}-${pkgver}
+   make DESTDIR=${pkgdir}/ install.info install.html
+   install -D -m644 Doc/zsh.pdf ${pkgdir}/usr/share/doc/zsh.pdf
+   install -D -m644 LICENCE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: zsh/repos/testing-i686/zprofile (from rev 201564, zsh/trunk/zprofile)
===
--- testing-i686/zprofile   (rev 0)
+++ testing-i686/zprofile   2013-12-15 09:17:41 UTC (rev 201565)
@@ -0,0 +1 @@
+emulate sh -c 'source /etc/profile'

Copied: zsh/repos/testing-i686/zsh-doc.install (from rev 

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

2013-12-15 Thread Timothy Redaelli
Date: Sunday, December 15, 2013 @ 12:45:13
  Author: tredaelli
Revision: 102571

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

Added:
  bfgminer/repos/community-i686/PKGBUILD
(from rev 102570, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
(from rev 102570, bfgminer/trunk/remove-dangerous-rpath.patch)
  bfgminer/repos/community-x86_64/PKGBUILD
(from rev 102570, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch
(from rev 102570, bfgminer/trunk/remove-dangerous-rpath.patch)
Deleted:
  bfgminer/repos/community-i686/PKGBUILD
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
  bfgminer/repos/community-x86_64/PKGBUILD
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch

---+
 /PKGBUILD |   88 
 /remove-dangerous-rpath.patch |   22 ++
 community-i686/PKGBUILD   |   44 
 community-i686/remove-dangerous-rpath.patch   |   11 ---
 community-x86_64/PKGBUILD |   44 
 community-x86_64/remove-dangerous-rpath.patch |   11 ---
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-15 11:45:02 UTC (rev 102570)
+++ community-i686/PKGBUILD 2013-12-15 11:45:13 UTC (rev 102571)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-
-pkgname=bfgminer
-pkgver=3.7.0
-pkgrel=1
-pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
-arch=('i686' 'x86_64')
-depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusbx' 'lm_sensors')
-makedepends=('uthash' 'yasm')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-url='https://bitcointalk.org/index.php?topic=168174.0'
-license=('GPL3')
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
-remove-dangerous-rpath.patch)
-sha256sums=('c07c04c088d70cd292f8a30745318856b1b50061bc176f35564d4de11e7a'
-'d26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -p0  ${srcdir}/remove-dangerous-rpath.patch
-  NOSUBMODULES=1 ./autogen.sh
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure  --prefix=/usr \
-   --enable-cpumining \
-   --enable-bfsb \
-   --enable-metabank \
-   --enable-scrypt \
-   --enable-opencl
-  # --enable-knc (FS#33640)
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 102570, 
bfgminer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-15 11:45:13 UTC (rev 102571)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=bfgminer
+pkgver=3.8.1
+pkgrel=1
+pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusbx' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='https://bitcointalk.org/index.php?topic=168174.0'
+license=('GPL3')
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
+remove-dangerous-rpath.patch)
+sha256sums=('73bf12cb978e0062f79463abb49f9d6a40c21f5db61e057c759dcca1dedc4e29'
+'d26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p0  ${srcdir}/remove-dangerous-rpath.patch
+  NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure  --prefix=/usr \
+   --enable-cpumining \
+   --enable-bfsb \
+   --enable-metabank \
+   --enable-scrypt \
+   --enable-opencl
+  # --enable-knc (FS#33640)
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/remove-dangerous-rpath.patch
===
--- community-i686/remove-dangerous-rpath.patch 2013-12-15 11:45:02 UTC (rev 
102570)
+++ community-i686/remove-dangerous-rpath.patch 2013-12-15 11:45:13 UTC (rev 
102571)
@@ -1,11 +0,0 @@
 configure.ac.orig
-+++ configure.ac
-@@ -514,7 +514,7 @@
-   ])
- else
-

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

2013-12-15 Thread Timothy Redaelli
Date: Sunday, December 15, 2013 @ 12:45:02
  Author: tredaelli
Revision: 102570

upgpkg: bfgminer 3.8.1-1

Modified:
  bfgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 06:42:45 UTC (rev 102569)
+++ PKGBUILD2013-12-15 11:45:02 UTC (rev 102570)
@@ -3,7 +3,7 @@
 # Contributor: Andy Weidenbaum archb...@gmail.com
 
 pkgname=bfgminer
-pkgver=3.7.0
+pkgver=3.8.1
 pkgrel=1
 pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 license=('GPL3')
 
source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
 remove-dangerous-rpath.patch)
-sha256sums=('c07c04c088d70cd292f8a30745318856b1b50061bc176f35564d4de11e7a'
+sha256sums=('73bf12cb978e0062f79463abb49f9d6a40c21f5db61e057c759dcca1dedc4e29'
 'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
 
 prepare() {



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

2013-12-15 Thread Andreas Radke
Date: Sunday, December 15, 2013 @ 13:14:25
  Author: andyrtr
Revision: 201567

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

Added:
  
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 201566, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/extra-i686/PKGBUILD
(from rev 201566, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.modprobe
(from rev 201566, bluez/trunk/bluetooth.modprobe)
  
bluez/repos/extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 201566, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/extra-x86_64/PKGBUILD
(from rev 201566, bluez/trunk/PKGBUILD)
  bluez/repos/extra-x86_64/bluetooth.modprobe
(from rev 201566, bluez/trunk/bluetooth.modprobe)
Deleted:
  
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.modprobe
  
bluez/repos/extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
  bluez/repos/extra-x86_64/PKGBUILD
  bluez/repos/extra-x86_64/bluetooth.modprobe

---+
 /0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|  118 
 /PKGBUILD 
|  266 ++
 /bluetooth.modprobe   
|6 
 extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
|   59 --
 extra-i686/PKGBUILD   
|  125 
 extra-i686/bluetooth.modprobe 
|3 
 extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|   59 --
 extra-x86_64/PKGBUILD 
|  125 
 extra-x86_64/bluetooth.modprobe   
|3 
 9 files changed, 390 insertions(+), 374 deletions(-)

Deleted: 
extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
===
--- extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
2013-12-15 12:13:59 UTC (rev 201566)
+++ extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
2013-12-15 12:14:25 UTC (rev 201567)
@@ -1,59 +0,0 @@
-From 3027cb7141fb65cf3eeda69c688db8c4045e2d3f Mon Sep 17 00:00:00 2001
-From: Giovanni Campagna gcampagna-cnudlrotfmnnlxjtenl...@public.gmane.org
-Date: Sat, 12 Oct 2013 17:45:25 +0200
-Subject: [PATCH] Allow using obexd without systemd in the user session
-
-Not all sessions run systemd --user (actually, the majority
-doesn't), so the dbus daemon must be able to spawn obexd
-directly, and to do so it needs the full path of the daemon.

- Makefile.obexd  | 4 ++--
- obexd/src/org.bluez.obex.service| 4 
- obexd/src/org.bluez.obex.service.in | 4 
- 3 files changed, 6 insertions(+), 6 deletions(-)
- delete mode 100644 obexd/src/org.bluez.obex.service
- create mode 100644 obexd/src/org.bluez.obex.service.in
-
-diff --git a/Makefile.obexd b/Makefile.obexd
-index 3760867..142e7c3 100644
 a/Makefile.obexd
-+++ b/Makefile.obexd
-@@ -2,12 +2,12 @@
- if SYSTEMD
- systemduserunitdir = @SYSTEMD_USERUNITDIR@
- systemduserunit_DATA = obexd/src/obex.service
-+endif
- 
- dbussessionbusdir = @DBUS_SESSIONBUSDIR@
- dbussessionbus_DATA = obexd/src/org.bluez.obex.service
--endif
- 
--EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service
-+EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service.in
- 
- obex_plugindir = $(libdir)/obex/plugins
- 
-diff --git a/obexd/src/org.bluez.obex.service 
b/obexd/src/org.bluez.obex.service
-deleted file mode 100644
-index a538088..000
 a/obexd/src/org.bluez.obex.service
-+++ /dev/null
-@@ -1,4 +0,0 @@
--[D-BUS Service]
--Name=org.bluez.obex
--Exec=/bin/false
--SystemdService=dbus-org.bluez.obex.service
-diff --git a/obexd/src/org.bluez.obex.service.in 
b/obexd/src/org.bluez.obex.service.in
-new file mode 100644
-index 000..9c815f2
 /dev/null
-+++ b/obexd/src/org.bluez.obex.service.in
-@@ -0,0 +1,4 @@
-+[D-BUS Service]
-+Name=org.bluez.obex
-+Exec=@libexecdir@/obexd
-+SystemdService=dbus-org.bluez.obex.service
--- 
-1.8.3.1
-
-

Copied: 
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 (from rev 201566, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
===
--- extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
(rev 0)
+++ 

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

2013-12-15 Thread Andreas Radke
Date: Sunday, December 15, 2013 @ 13:13:59
  Author: andyrtr
Revision: 201566

upgpkg: bluez 5.12-2

ship upstream default config file

Modified:
  bluez/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 09:17:41 UTC (rev 201565)
+++ PKGBUILD2013-12-15 12:13:59 UTC (rev 201566)
@@ -6,7 +6,7 @@
 pkgbase=bluez
 pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci')
 pkgver=5.12
-pkgrel=1
+pkgrel=2
 url=http://www.bluez.org/;
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -49,10 +49,14 @@
 package_bluez() {
   pkgdesc=Daemons for the bluetooth protocol stack
   depends=('libical' 'dbus' 'glib2')
-  backup=('etc/dbus-1/system.d/bluetooth.conf')
+  backup=('etc/dbus-1/system.d/bluetooth.conf'
+  'etc/bluetooth/main.conf')
   conflicts=('obexd-client' 'obexd-server')
 
   cd ${pkgbase}-${pkgver}
+  #make DESTDIR=${pkgdir} install
+  #return 1
+  
   make DESTDIR=${pkgdir} \
install-libexecPROGRAMS \
install-dbussessionbusDATA \
@@ -62,6 +66,10 @@
install-dbusDATA \
install-man8
 
+  # ship upstream main config file
+  install -dm755 ${pkgdir}/etc/bluetooth
+  install -Dm644 ${srcdir}/${pkgbase}-${pkgver}/src/main.conf 
${pkgdir}/etc/bluetooth/main.conf
+
   # add basic documention
   install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis
   cp -a doc/*.txt ${pkgdir}/usr/share/doc/${pkgbase}/dbus-apis/



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

2013-12-15 Thread Thomas Bächler
Date: Sunday, December 15, 2013 @ 14:53:36
  Author: thomas
Revision: 201568

upgpkg: systemd 208-3

* Fix logind failing to close user managers for users that have no sessions
* Backport improved fstab handling from master, which is needed when putting 
systemd in
  initramfs and mounting /sysroot read-write
* Fix pam.d file (needs system-login due to pam_systemd.so)

Added:
  systemd/trunk/0001-fstab-generator-When-parsing-the-root-cmdline-option.patch
  systemd/trunk/0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch
  systemd/trunk/0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch
  systemd/trunk/0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch
  systemd/trunk/0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch
  systemd/trunk/0005-mount-service-drop-FsckPassNo-support.patch
  systemd/trunk/0006-efi-boot-generator-hookup-to-fsck.patch
  systemd/trunk/0007-fsck-root-only-run-when-requested-in-fstab.patch
Modified:
  systemd/trunk/PKGBUILD

-+
 0001-fstab-generator-When-parsing-the-root-cmdline-option.patch |   29 
 0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch |   36 
 0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch |  102 ++
 0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch |   55 +
 0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch |   22 
 0005-mount-service-drop-FsckPassNo-support.patch|  364 
++
 0006-efi-boot-generator-hookup-to-fsck.patch|   81 ++
 0007-fsck-root-only-run-when-requested-in-fstab.patch   |   95 ++
 PKGBUILD|   41 +
 9 files changed, 821 insertions(+), 4 deletions(-)

Added: 0001-fstab-generator-When-parsing-the-root-cmdline-option.patch
===
--- 0001-fstab-generator-When-parsing-the-root-cmdline-option.patch 
(rev 0)
+++ 0001-fstab-generator-When-parsing-the-root-cmdline-option.patch 
2013-12-15 13:53:36 UTC (rev 201568)
@@ -0,0 +1,29 @@
+From 7f5806d7095a197e4788a7803642831beec295bf Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Thomas=20B=C3=A4chler?= tho...@archlinux.org
+Date: Mon, 30 Sep 2013 00:32:33 +0200
+Subject: [PATCH 1/7] fstab-generator: When parsing the root= cmdline option,
+ set FsckPassNo to 1
+
+[tomegun: without this we would never fsck the rootfs if it was directly
+mounted 'rw' from the initrd. We now risk fsck'ing it twice in the case it
+is mounted 'ro', so that should be addressed in a separate patch.]
+---
+ src/fstab-generator/fstab-generator.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/fstab-generator/fstab-generator.c 
b/src/fstab-generator/fstab-generator.c
+index 9e7d55d..a7536f8 100644
+--- a/src/fstab-generator/fstab-generator.c
 b/src/fstab-generator/fstab-generator.c
+@@ -442,7 +442,7 @@ static int parse_new_root_from_proc_cmdline(void) {
+ }
+ 
+ log_debug(Found entry what=%s where=/sysroot type=%s, what, type);
+-r = add_mount(what, /sysroot, type, opts, 0, noauto, nofail, false,
++r = add_mount(what, /sysroot, type, opts, 1, noauto, nofail, false,
+   SPECIAL_INITRD_ROOT_FS_TARGET, /proc/cmdline);
+ 
+ return (r  0) ? r : 0;
+-- 
+1.8.5.1
+

Added: 0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch
===
--- 0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch 
(rev 0)
+++ 0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch 
2013-12-15 13:53:36 UTC (rev 201568)
@@ -0,0 +1,36 @@
+From 95842c3f552072c9d153b3c0200f1bbb5bc3c2fb Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Thomas=20B=C3=A4chler?= tho...@archlinux.org
+Date: Sun, 15 Dec 2013 12:18:00 +0100
+Subject: [PATCH] login: Don't stop a running user manager from
+ garbage-collecting the user.
+
+With the current logic, a user will never be garbage-collected, since its
+manager will always be around. Change the logic such that a user is
+garbage-collected when it has no sessions and linger is disabled.
+
+This is a backport from the master branch to 208 which also backports
+the improved handling of running slice and service jobs.
+---
+ src/login/logind-user.c | 6 --
+ 1 file changed, 6 deletions(-)
+
+diff --git a/src/login/logind-user.c b/src/login/logind-user.c
+index adbe638..e2fce5c 100644
+--- a/src/login/logind-user.c
 b/src/login/logind-user.c
+@@ -629,12 +629,6 @@ int user_check_gc(User *u, bool drop_not_started) {
+ if (u-slice_job || u-service_job)
+ return 1;
+ 
+-if (u-slice  manager_unit_is_active(u-manager, u-slice) != 0)
+-return 1;
+-
+-if (u-service  manager_unit_is_active(u-manager, u-service) != 0)
+-

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

2013-12-15 Thread Thomas Bächler
Date: Sunday, December 15, 2013 @ 14:54:02
  Author: thomas
Revision: 201569

archrelease: copy trunk to testing-i686

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

-+
 0001-fix-lingering-references-to-var-lib-backlight-random.patch |   54 +
 0001-fstab-generator-When-parsing-the-root-cmdline-option.patch |   29 
 0001-login-Don-t-stop-a-running-user-manager-from-garbage.patch |   36 
 0001-mount-check-for-NULL-before-reading-pm-what.patch  |   29 
 0001-shared-util-fix-off-by-one-error-in-tag_to_udev_node.patch |   50 +
 0002-fstab-generator-Generate-explicit-dependencies-on-sy.patch |  102 ++
 0003-gpt-auto-generator-Generate-explicit-dependencies-on.patch |   55 +
 0004-Remove-FsckPassNo-from-systemd-fsck-root.service.patch |   22 
 0005-mount-service-drop-FsckPassNo-support.patch|  364 
++
 0006-efi-boot-generator-hookup-to-fsck.patch|   81 ++
 0007-fsck-root-only-run-when-requested-in-fstab.patch   |   95 ++
 PKGBUILD|  182 +
 initcpio-hook-udev  |   22 
 initcpio-install-systemd|  159 
 initcpio-install-udev   |   29 
 systemd.install |  120 +++
 16 files changed, 1429 insertions(+)

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


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

2013-12-15 Thread Thomas Bächler
Date: Sunday, December 15, 2013 @ 15:00:17
  Author: thomas
Revision: 201570

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

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

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

2013-12-15 Thread Pierre Schmitz
Date: Sunday, December 15, 2013 @ 15:10:05
  Author: pierre
Revision: 201571

pdf should be in the zsh subdir

Modified:
  zsh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 14:00:17 UTC (rev 201570)
+++ PKGBUILD2013-12-15 14:10:05 UTC (rev 201571)
@@ -79,6 +79,6 @@
 
cd ${srcdir}/${pkgbase}-${pkgver}
make DESTDIR=${pkgdir}/ install.info install.html
-   install -D -m644 Doc/zsh.pdf ${pkgdir}/usr/share/doc/zsh.pdf
+   install -D -m644 Doc/zsh.pdf ${pkgdir}/usr/share/doc/zsh/zsh.pdf
install -D -m644 LICENCE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2013-12-15 Thread Thomas Bächler
Date: Sunday, December 15, 2013 @ 19:07:22
  Author: thomas
Revision: 201572

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

Added:
  linux/repos/core-i686/3.12-btrfs-relocate-csums.patch
(from rev 201571, linux/repos/testing-i686/3.12-btrfs-relocate-csums.patch)
  linux/repos/core-i686/PKGBUILD
(from rev 201571, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 201571, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 201571, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 201571, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/criu-no-expert.patch
(from rev 201571, linux/repos/testing-i686/criu-no-expert.patch)
  linux/repos/core-i686/linux.install
(from rev 201571, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 201571, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/3.12-btrfs-relocate-csums.patch
(from rev 201571, 
linux/repos/testing-x86_64/3.12-btrfs-relocate-csums.patch)
  linux/repos/core-x86_64/PKGBUILD
(from rev 201571, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 201571, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 201571, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 201571, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/criu-no-expert.patch
(from rev 201571, linux/repos/testing-x86_64/criu-no-expert.patch)
  linux/repos/core-x86_64/linux.install
(from rev 201571, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 201571, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/3.12-btrfs-relocate-csums.patch
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/criu-no-expert.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/3.12-btrfs-relocate-csums.patch
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/criu-no-expert.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

---+
 /3.12-btrfs-relocate-csums.patch  |  126 
 /PKGBUILD |  672 +
 /change-default-console-loglevel.patch|   24 
 /config   |12960 
 /config.x86_64|12562 +++
 /criu-no-expert.patch |   44 
 /linux.install|   62 
 /linux.preset |   28 
 core-i686/3.12-btrfs-relocate-csums.patch |   63 
 core-i686/PKGBUILD|  336 
 core-i686/change-default-console-loglevel.patch   |   12 
 core-i686/config  | 6480 --
 core-i686/config.x86_64   | 6281 -
 core-i686/criu-no-expert.patch|   22 
 core-i686/linux.install   |   31 
 core-i686/linux.preset|   14 
 core-x86_64/3.12-btrfs-relocate-csums.patch   |   63 
 core-x86_64/PKGBUILD  |  336 
 core-x86_64/change-default-console-loglevel.patch |   12 
 core-x86_64/config| 6480 --
 core-x86_64/config.x86_64 | 6281 -
 core-x86_64/criu-no-expert.patch  |   22 
 core-x86_64/linux.install |   31 
 core-x86_64/linux.preset  |   14 
 24 files changed, 26478 insertions(+), 26478 deletions(-)

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


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

2013-12-15 Thread Sergej Pupykin
Date: Sunday, December 15, 2013 @ 20:51:17
  Author: spupykin
Revision: 102572

Modified:
  anki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 11:45:13 UTC (rev 102571)
+++ PKGBUILD2013-12-15 19:51:17 UTC (rev 102572)
@@ -16,6 +16,7 @@
 makedepends=()
 optdepends=('python2-matplotlib: show graphs'
'sox: audio recording'
+   'mplayer: sound playing'
'portaudio')
 install=anki.install
 source=(http://ankisrs.net/download/mirror/anki-$pkgver.tgz)



[arch-commits] Commit in perl-class-factory-util/trunk (PKGBUILD)

2013-12-15 Thread Sergej Pupykin
Date: Sunday, December 15, 2013 @ 21:00:42
  Author: spupykin
Revision: 102573

upgpkg: perl-class-factory-util 1.7-6

upd

Modified:
  perl-class-factory-util/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 19:51:17 UTC (rev 102572)
+++ PKGBUILD2013-12-15 20:00:42 UTC (rev 102573)
@@ -4,7 +4,7 @@
 pkgname=perl-class-factory-util
 _realname=Class-Factory-Util
 pkgver=1.7
-pkgrel=5
+pkgrel=6
 pkgdesc=Provide utility methods for factory classes
 arch=(any)
 license=('GPL' 'PerlArtistic')
@@ -11,12 +11,11 @@
 url=http://search.cpan.org/dist/Class-Factory-Util/;
 options=(!emptydirs)
 depends=('perl')
-provides=('class-factory-util=1.7' 'Class::Factory::Util=1.7' 
'perl-class-factory-util=1.7')
 
source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Class-Factory-Util-1.7.tar.gz)
 md5sums=('aebd79da361b676a7ecd3245fc3d1b3f')
 
 build() {
-  cd ${srcdir}/${_realname}-${pkgver}
+  cd ${srcdir}/Class-Factory-Util-${pkgver}
   # install module in vendor directories.
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
@@ -23,7 +22,7 @@
 }
 
 package() {
-  cd ${srcdir}/${_realname}-${pkgver}
+  cd ${srcdir}/Class-Factory-Util-${pkgver}
   make install DESTDIR=${pkgdir}
 
   # remove perllocal.pod and .packlist



[arch-commits] Commit in perl-class-factory-util/repos/community-any (2 files)

2013-12-15 Thread Sergej Pupykin
Date: Sunday, December 15, 2013 @ 21:00:55
  Author: spupykin
Revision: 102574

archrelease: copy trunk to community-any

Added:
  perl-class-factory-util/repos/community-any/PKGBUILD
(from rev 102573, perl-class-factory-util/trunk/PKGBUILD)
Deleted:
  perl-class-factory-util/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-15 20:00:42 UTC (rev 102573)
+++ PKGBUILD2013-12-15 20:00:55 UTC (rev 102574)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-class-factory-util
-_realname=Class-Factory-Util
-pkgver=1.7
-pkgrel=5
-pkgdesc=Provide utility methods for factory classes
-arch=(any)
-license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/Class-Factory-Util/;
-options=(!emptydirs)
-depends=('perl')
-provides=('class-factory-util=1.7' 'Class::Factory::Util=1.7' 
'perl-class-factory-util=1.7')
-source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Class-Factory-Util-1.7.tar.gz)
-md5sums=('aebd79da361b676a7ecd3245fc3d1b3f')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-class-factory-util/repos/community-any/PKGBUILD (from rev 102573, 
perl-class-factory-util/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-15 20:00:55 UTC (rev 102574)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-class-factory-util
+_realname=Class-Factory-Util
+pkgver=1.7
+pkgrel=6
+pkgdesc=Provide utility methods for factory classes
+arch=(any)
+license=('GPL' 'PerlArtistic')
+url=http://search.cpan.org/dist/Class-Factory-Util/;
+options=(!emptydirs)
+depends=('perl')
+source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Class-Factory-Util-1.7.tar.gz)
+md5sums=('aebd79da361b676a7ecd3245fc3d1b3f')
+
+build() {
+  cd ${srcdir}/Class-Factory-Util-${pkgver}
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/Class-Factory-Util-${pkgver}
+  make install DESTDIR=${pkgdir}
+
+  # remove perllocal.pod and .packlist
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}



[arch-commits] Commit in perl-class-factory-util/trunk (PKGBUILD)

2013-12-15 Thread Sergej Pupykin
Date: Sunday, December 15, 2013 @ 21:01:28
  Author: spupykin
Revision: 102575

Modified:
  perl-class-factory-util/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 20:00:55 UTC (rev 102574)
+++ PKGBUILD2013-12-15 20:01:28 UTC (rev 102575)
@@ -2,7 +2,6 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=perl-class-factory-util
-_realname=Class-Factory-Util
 pkgver=1.7
 pkgrel=6
 pkgdesc=Provide utility methods for factory classes



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

2013-12-15 Thread Jaroslav Lichtblau
Date: Sunday, December 15, 2013 @ 21:36:37
  Author: jlichtblau
Revision: 102576

upgpkg: esmska 1.5-1

Modified:
  esmska/trunk/PKGBUILD
  esmska/trunk/esmska.changelog

--+
 PKGBUILD |4 +++-
 esmska.changelog |3 +++
 2 files changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 20:01:28 UTC (rev 102575)
+++ PKGBUILD2013-12-15 20:36:37 UTC (rev 102576)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
 
 pkgname=esmska
-pkgver=1.4
+pkgver=1.5
 pkgrel=1
 pkgdesc=Program for sending SMS over the Internet
 arch=('any')
@@ -42,3 +42,5 @@
 #removing unneeded
   rm ${pkgdir}/usr/share/java/$pkgname/$pkgname.exe
 }
+sha256sums=('a95a7a42e61fddd73f2229b5f97cf323c4cc4fdb2662bbdad6f943de478b7629'
+'b7083495c3bb12f31b4451dd112973eed852cb969c049928777e486f9a3f9387')

Modified: esmska.changelog
===
--- esmska.changelog2013-12-15 20:01:28 UTC (rev 102575)
+++ esmska.changelog2013-12-15 20:36:37 UTC (rev 102576)
@@ -1,3 +1,6 @@
+2013-12-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * esmska 1.5-1
+
 2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
* esmska 1.4-1
 



[arch-commits] Commit in esmska/repos/community-any (8 files)

2013-12-15 Thread Jaroslav Lichtblau
Date: Sunday, December 15, 2013 @ 21:37:18
  Author: jlichtblau
Revision: 102578

archrelease: copy trunk to community-any

Added:
  esmska/repos/community-any/PKGBUILD
(from rev 102577, esmska/trunk/PKGBUILD)
  esmska/repos/community-any/esmska.changelog
(from rev 102577, esmska/trunk/esmska.changelog)
  esmska/repos/community-any/esmska.desktop
(from rev 102577, esmska/trunk/esmska.desktop)
  esmska/repos/community-any/esmska.install
(from rev 102577, esmska/trunk/esmska.install)
Deleted:
  esmska/repos/community-any/PKGBUILD
  esmska/repos/community-any/esmska.changelog
  esmska/repos/community-any/esmska.desktop
  esmska/repos/community-any/esmska.install

--+
 PKGBUILD |   90 +++-
 esmska.changelog |   45 
 esmska.desktop   |  148 ++---
 esmska.install   |   26 -
 4 files changed, 155 insertions(+), 154 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-15 20:37:09 UTC (rev 102577)
+++ PKGBUILD2013-12-15 20:37:18 UTC (rev 102578)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=esmska
-pkgver=1.4
-pkgrel=1
-pkgdesc=Program for sending SMS over the Internet
-arch=('any')
-url=http://esmska.googlecode.com/;
-license=('AGPL')
-depends=('java-runtime' 'desktop-file-utils')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz \
-$pkgname.desktop)
-sha256sums=('e21031c9c3cb2621df6af4408df97508ef0ccc4391a70d2297531149102373df'
-'b7083495c3bb12f31b4451dd112973eed852cb969c049928777e486f9a3f9387')
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -d ${pkgdir}/usr/share/java/$pkgname
-  cp -a * ${pkgdir}/usr/share/java/$pkgname
-
-#.desktop + icon files
-  install -D -m644 ${srcdir}/$pkgname.desktop \
-${pkgdir}/usr/share/applications/$pkgname.desktop
-  install -D -m644 ${srcdir}/$pkgname-$pkgver/icons/$pkgname.png \
-${pkgdir}/usr/share/pixmaps/$pkgname.png
-
-#executable file
-  install -d ${pkgdir}/usr/bin
-  ln -s /usr/share/java/$pkgname/$pkgname.sh \
-${pkgdir}/usr/bin/$pkgname
-
-#licenses
-  install -D -m644 ${srcdir}/$pkgname-$pkgver/license/license.txt \
-${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -D -m644 ${srcdir}/$pkgname-$pkgver/license/gnu-agpl.txt \
-${pkgdir}/usr/share/licenses/$pkgname/AGPL
-
-#removing unneeded
-  rm ${pkgdir}/usr/share/java/$pkgname/$pkgname.exe
-}
-sha256sums=('e239cb9b3fc2cc11f6d20a9952839868ca5a0bccea699663033beece48596310'
-'b7083495c3bb12f31b4451dd112973eed852cb969c049928777e486f9a3f9387')

Copied: esmska/repos/community-any/PKGBUILD (from rev 102577, 
esmska/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-15 20:37:18 UTC (rev 102578)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=esmska
+pkgver=1.5
+pkgrel=1
+pkgdesc=Program for sending SMS over the Internet
+arch=('any')
+url=http://esmska.googlecode.com/;
+license=('AGPL')
+depends=('java-runtime' 'desktop-file-utils')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+$pkgname.desktop)
+sha256sums=('a95a7a42e61fddd73f2229b5f97cf323c4cc4fdb2662bbdad6f943de478b7629'
+'b7083495c3bb12f31b4451dd112973eed852cb969c049928777e486f9a3f9387')
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d ${pkgdir}/usr/share/java/$pkgname
+  cp -a * ${pkgdir}/usr/share/java/$pkgname
+
+#.desktop + icon files
+  install -D -m644 ${srcdir}/$pkgname.desktop \
+${pkgdir}/usr/share/applications/$pkgname.desktop
+  install -D -m644 ${srcdir}/$pkgname-$pkgver/icons/$pkgname.png \
+${pkgdir}/usr/share/pixmaps/$pkgname.png
+
+#executable file
+  install -d ${pkgdir}/usr/bin
+  ln -s /usr/share/java/$pkgname/$pkgname.sh \
+${pkgdir}/usr/bin/$pkgname
+
+#licenses
+  install -D -m644 ${srcdir}/$pkgname-$pkgver/license/license.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -D -m644 ${srcdir}/$pkgname-$pkgver/license/gnu-agpl.txt \
+${pkgdir}/usr/share/licenses/$pkgname/AGPL
+
+#removing unneeded
+  rm ${pkgdir}/usr/share/java/$pkgname/$pkgname.exe
+}

Deleted: esmska.changelog
===
--- esmska.changelog2013-12-15 20:37:09 UTC (rev 102577)
+++ esmska.changelog2013-12-15 20:37:18 UTC (rev 102578)
@@ -1,21 +0,0 @@
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * esmska 1.4-1
-
-2012-12-16 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * esmska 1.3-1
-
-2012-02-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * esmska 1.2-1
-

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

2013-12-15 Thread Jaroslav Lichtblau
Date: Sunday, December 15, 2013 @ 21:37:09
  Author: jlichtblau
Revision: 102577

upgpkg: esmska 1.5-1

Modified:
  esmska/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 20:36:37 UTC (rev 102576)
+++ PKGBUILD2013-12-15 20:37:09 UTC (rev 102577)
@@ -13,7 +13,7 @@
 changelog=$pkgname.changelog
 source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz \
 $pkgname.desktop)
-sha256sums=('e239cb9b3fc2cc11f6d20a9952839868ca5a0bccea699663033beece48596310'
+sha256sums=('a95a7a42e61fddd73f2229b5f97cf323c4cc4fdb2662bbdad6f943de478b7629'
 'b7083495c3bb12f31b4451dd112973eed852cb969c049928777e486f9a3f9387')
 
 package() {
@@ -42,5 +42,3 @@
 #removing unneeded
   rm ${pkgdir}/usr/share/java/$pkgname/$pkgname.exe
 }
-sha256sums=('a95a7a42e61fddd73f2229b5f97cf323c4cc4fdb2662bbdad6f943de478b7629'
-'b7083495c3bb12f31b4451dd112973eed852cb969c049928777e486f9a3f9387')



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

2013-12-15 Thread Tom Gundersen
Date: Sunday, December 15, 2013 @ 22:31:01
  Author: tomegun
Revision: 201573

upgpkg: hwids 20130915.1-1

upstream release

Modified:
  hwids/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 18:07:22 UTC (rev 201572)
+++ PKGBUILD2013-12-15 21:31:01 UTC (rev 201573)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tom Gundersen t...@jklm.no
 pkgname=hwids
-pkgver=20130607
+pkgver=20130915.1
 pkgrel=1
 pkgdesc=hardware identification databases
 makedepends=('git')



[arch-commits] Commit in hwids/repos (testing-any testing-any/PKGBUILD)

2013-12-15 Thread Tom Gundersen
Date: Sunday, December 15, 2013 @ 22:31:15
  Author: tomegun
Revision: 201574

archrelease: copy trunk to testing-any

Added:
  hwids/repos/testing-any/
  hwids/repos/testing-any/PKGBUILD
(from rev 201573, hwids/trunk/PKGBUILD)

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

Copied: hwids/repos/testing-any/PKGBUILD (from rev 201573, hwids/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-12-15 21:31:15 UTC (rev 201574)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+pkgname=hwids
+pkgver=20130915.1
+pkgrel=1
+pkgdesc=hardware identification databases
+makedepends=('git')
+url=https://github.com/gentoo/hwids
+license=('GPL2')
+arch=('any')
+source=(git://github.com/gentoo/hwids.git#tag=${pkgname}-${pkgver})
+
+package() {
+  cd hwids
+
+  for ids in pci.ids usb.ids; do
+install -Dm644 $ids ${pkgdir}/usr/share/hwdata/${ids}
+  done
+}
+md5sums=('SKIP')



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

2013-12-15 Thread Bartłomiej Piotrowski
Date: Sunday, December 15, 2013 @ 22:52:44
  Author: bpiotrowski
Revision: 102580

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

Added:
  xemacs/repos/community-i686/PKGBUILD
(from rev 102579, xemacs/trunk/PKGBUILD)
  xemacs/repos/community-i686/xemacs.desktop
(from rev 102579, xemacs/trunk/xemacs.desktop)
  xemacs/repos/community-i686/xemacs.install
(from rev 102579, xemacs/trunk/xemacs.install)
  xemacs/repos/community-x86_64/PKGBUILD
(from rev 102579, xemacs/trunk/PKGBUILD)
  xemacs/repos/community-x86_64/xemacs.desktop
(from rev 102579, xemacs/trunk/xemacs.desktop)
  xemacs/repos/community-x86_64/xemacs.install
(from rev 102579, xemacs/trunk/xemacs.install)
Deleted:
  xemacs/repos/community-i686/PKGBUILD
  xemacs/repos/community-i686/xemacs.desktop
  xemacs/repos/community-i686/xemacs.install
  xemacs/repos/community-x86_64/PKGBUILD
  xemacs/repos/community-x86_64/xemacs.desktop
  xemacs/repos/community-x86_64/xemacs.install

-+
 /PKGBUILD   |  114 ++
 /xemacs.desktop |   68 ++
 /xemacs.install |   70 +++
 community-i686/PKGBUILD |   57 ---
 community-i686/xemacs.desktop   |   34 ---
 community-i686/xemacs.install   |   35 ---
 community-x86_64/PKGBUILD   |   57 ---
 community-x86_64/xemacs.desktop |   34 ---
 community-x86_64/xemacs.install |   35 ---
 9 files changed, 252 insertions(+), 252 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-15 21:52:31 UTC (rev 102579)
+++ community-i686/PKGBUILD 2013-12-15 21:52:44 UTC (rev 102580)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: juergen juer...@archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-
-pkgname=xemacs
-pkgver=21.5.33
-pkgrel=3
-pkgdesc=An highly customizable open source text editor and application 
development system forked from GNU Emacs
-arch=('i686' 'x86_64')
-url=http://www.xemacs.org/;
-license=('GPL')
-depends=('db' 'libpng' 'libtiff' 'gpm' 'desktop-file-utils' 'libxaw' 'gdbm' 
'giflib')
-optdepends=('xorg-fonts-75dpi: X bitmap fonts needed for the interface'
-'xorg-fonts-100dpi: X bitmap fonts needed for the interface')
-makedepends=('xbitmaps')
-install=$pkgname.install
-source=(http://ftp.xemacs.org/pub/xemacs/beta/${pkgname}-${pkgver}.tar.gz
-xemacs.desktop)
-sha256sums=('448c76aa32cd5c84257027846f01b75a5e4f1e9db3278f95e68ff23d59fb8f94'
-'d6dc802cf07519584aa28f3b5f4ae84d5e18b619ddd7e89a04da2f6783125f34')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --build=${CHOST} --prefix=/usr --with-dynamic \
-  --without-postgresql --with-athena=xaw \
-  --enable-database=berkdb --without-ldap \
-  --enable-menubars=lucid --enable-scrollbars=lucid \
-  --enable-widgets=athena --enable-dialogs=athena \
-  --enable-external-widget \
-  --with-jpeg --with-png --with-tiff \
-  --with-ncurses --with-pop --with-xfs --disable-sound \
-  --infodir=/usr/share/info \
-  --with-mule \
-  --mandir=/usr/share/man/man1
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -j1 prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man/man1 
infodir=${pkgdir}/usr/share/info install gzip-el
-
-  rm ${pkgdir}/usr/bin/{b2m,ctags,etags}
-  rm ${pkgdir}/usr/share/man/man1/{ctags.1,etags.1}
-
-  # fix  FS#7927
-  install -d -m755 ${pkgdir}/usr/share/pixmaps
-  install -D -m644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-  ln -sf /usr/share/xemacs-${pkgver%.*}-b${pkgver##*.}/etc/xemacs-icon.xpm 
${pkgdir}/usr/share/pixmaps/xemacs-icon.xpm
-
-  # correct permissions
-  chown -R root:root ${pkgdir}
-
-  rm 
${pkgdir}/usr/share/info/{info.info,texinfo.info-2,cl.info,texinfo.info-1,texinfo.info,standards.info,widget.info}
-}

Copied: xemacs/repos/community-i686/PKGBUILD (from rev 102579, 
xemacs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-15 21:52:44 UTC (rev 102580)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: juergen juer...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=xemacs
+pkgver=21.5.33
+pkgrel=4
+pkgdesc=An highly customizable open source text editor and application 
development system forked from GNU Emacs
+arch=('i686' 'x86_64')
+url=http://www.xemacs.org/;
+license=('GPL')
+depends=('db' 'libpng' 'libtiff' 'gpm' 'desktop-file-utils' 'libxaw' 'gdbm' 
'giflib')
+optdepends=('xorg-fonts-75dpi: X bitmap fonts needed for the 

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

2013-12-15 Thread Bartłomiej Piotrowski
Date: Sunday, December 15, 2013 @ 22:52:31
  Author: bpiotrowski
Revision: 102579

upgpkg: xemacs 21.5.33-4

- avoid conflict with core/texinfo (FS#38151)

Modified:
  xemacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 20:37:18 UTC (rev 102578)
+++ PKGBUILD2013-12-15 21:52:31 UTC (rev 102579)
@@ -53,5 +53,5 @@
   # correct permissions
   chown -R root:root ${pkgdir}
 
-  rm 
${pkgdir}/usr/share/info/{info.info,texinfo.info-2,cl.info,texinfo.info-1,texinfo.info,standards.info,widget.info}
+  rm 
${pkgdir}/usr/share/info/{info.info,texinfo.info-2,texinfo.info-3,cl.info,texinfo.info-1,texinfo.info,standards.info,widget.info}
 }



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

2013-12-15 Thread Allan McRae
Date: Sunday, December 15, 2013 @ 23:12:49
  Author: allan
Revision: 201575

upgpkg: pcre 8.34-1

upstream update

Modified:
  pcre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 21:31:15 UTC (rev 201574)
+++ PKGBUILD2013-12-15 22:12:49 UTC (rev 201575)
@@ -4,8 +4,8 @@
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=pcre
-pkgver=8.33
-pkgrel=2
+pkgver=8.34
+pkgrel=1
 pkgdesc=A library that implements Perl 5-style regular expressions
 arch=('i686' 'x86_64')
 url=http://www.pcre.org/;
@@ -12,7 +12,7 @@
 license=('BSD')
 depends=('gcc-libs')
 
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2{,.sig})
-md5sums=('21514018448ac10062ece7a668fca949'
+md5sums=('5439e321351bddd5533551bbce128d07'
  'SKIP')
 
 build() {



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

2013-12-15 Thread Allan McRae
Date: Sunday, December 15, 2013 @ 23:17:38
  Author: allan
Revision: 201576

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

Added:
  pcre/repos/testing-i686/
  pcre/repos/testing-i686/PKGBUILD
(from rev 201575, pcre/trunk/PKGBUILD)
  pcre/repos/testing-x86_64/
  pcre/repos/testing-x86_64/PKGBUILD
(from rev 201575, pcre/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: pcre/repos/testing-i686/PKGBUILD (from rev 201575, pcre/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-15 22:17:38 UTC (rev 201576)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+
+pkgname=pcre
+pkgver=8.34
+pkgrel=1
+pkgdesc=A library that implements Perl 5-style regular expressions
+arch=('i686' 'x86_64')
+url=http://www.pcre.org/;
+license=('BSD')
+depends=('gcc-libs')
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('5439e321351bddd5533551bbce128d07'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--enable-pcre16 --enable-pcre32 --enable-jit \
+--enable-utf --enable-unicode-properties
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make -j1 check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: pcre/repos/testing-x86_64/PKGBUILD (from rev 201575, 
pcre/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-15 22:17:38 UTC (rev 201576)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+
+pkgname=pcre
+pkgver=8.34
+pkgrel=1
+pkgdesc=A library that implements Perl 5-style regular expressions
+arch=('i686' 'x86_64')
+url=http://www.pcre.org/;
+license=('BSD')
+depends=('gcc-libs')
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('5439e321351bddd5533551bbce128d07'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--enable-pcre16 --enable-pcre32 --enable-jit \
+--enable-utf --enable-unicode-properties
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make -j1 check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-12-15 Thread Maxime Gauduin
Date: Monday, December 16, 2013 @ 00:05:32
  Author: alucryd
Revision: 102581

upgpkg: geary 0.4.3-1

Modified:
  geary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 21:52:44 UTC (rev 102580)
+++ PKGBUILD2013-12-15 23:05:32 UTC (rev 102581)
@@ -4,17 +4,17 @@
 # Contributor : Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=geary
-pkgver=0.4.2
+pkgver=0.4.3
 pkgrel=1
-pkgdesc=A lightweight email client for the GNOME desktop
+pkgdesc='A lightweight email client for the GNOME desktop'
 arch=('i686' 'x86_64')
-url=http://www.yorba.org/projects/geary/;
+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=(http://www.yorba.org/download/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('e111e1f650afb8fe35d3a9f8ce19f698ee41263d5b21b31bf0b5bd4a24a207b3')
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('58a4021bea6be813a1381597f23b646335c9e15c3a7d818c302752a7e07e37a0')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2013-12-15 Thread Maxime Gauduin
Date: Monday, December 16, 2013 @ 00:07:22
  Author: alucryd
Revision: 102582

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

Added:
  geary/repos/community-i686/PKGBUILD
(from rev 102581, geary/trunk/PKGBUILD)
  geary/repos/community-i686/geary.install
(from rev 102581, geary/trunk/geary.install)
  geary/repos/community-x86_64/PKGBUILD
(from rev 102581, geary/trunk/PKGBUILD)
  geary/repos/community-x86_64/geary.install
(from rev 102581, 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-15 23:05:32 UTC (rev 102581)
+++ community-i686/PKGBUILD 2013-12-15 23:07:22 UTC (rev 102582)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin alucryd at gmail dot com
-# Contributor : sebikul sebi...@gmail.com
-# Contributor : Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=geary
-pkgver=0.4.2
-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=(http://www.yorba.org/download/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('e111e1f650afb8fe35d3a9f8ce19f698ee41263d5b21b31bf0b5bd4a24a207b3')
-
-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 102581, 
geary/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-15 23:07:22 UTC (rev 102582)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin alucryd at gmail dot com
+# Contributor : sebikul sebi...@gmail.com
+# Contributor : Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+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:

Deleted: community-i686/geary.install
===
--- community-i686/geary.install2013-12-15 23:05:32 UTC (rev 102581)
+++ community-i686/geary.install2013-12-15 23:07:22 UTC (rev 102582)
@@ -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 102581, 
geary/trunk/geary.install)
===
--- community-i686/geary.install(rev 0)
+++ community-i686/geary.install2013-12-15 23:07:22 UTC (rev 102582)
@@ -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()
+{
+  

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

2013-12-15 Thread Thomas Bächler
Date: Monday, December 16, 2013 @ 00:48:34
  Author: thomas
Revision: 201577

upgpkg: mkinitcpio 16-1

Modified:
  mkinitcpio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 22:17:38 UTC (rev 201576)
+++ PKGBUILD2013-12-15 23:48:34 UTC (rev 201577)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Bächler tho...@archlinux.org
 
 pkgname=mkinitcpio
-pkgver=0.15.0
+pkgver=16
 pkgrel=1
 pkgdesc=Modular initramfs image creation utility
 arch=('any')
@@ -14,14 +14,14 @@
 optdepends=('xz: Use lzma or xz compression for the initramfs image'
 'bzip2: Use bzip2 compression for the initramfs image'
 'lzop: Use lzo compression for the initramfs image'
+'lz4: Use lz4 compression for the initramfs image'
 'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
 backup=('etc/mkinitcpio.conf')
 
source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
 install=mkinitcpio.install
-sha256sums=('2a00421c5ce4abfcc971c71a6efd22f6bbaf0e541f9a93410f35e864c818c3db'
+sha256sums=('10821e533eb1ca51a9d3c1d06d8999c08a6151910a9a6029a45ff1638e9228a2'
 'SKIP')
 
 package() {
   make -C $pkgname-$pkgver DESTDIR=$pkgdir install
 }
-



[arch-commits] Commit in mkinitcpio/repos (3 files)

2013-12-15 Thread Thomas Bächler
Date: Monday, December 16, 2013 @ 00:48:40
  Author: thomas
Revision: 201578

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/PKGBUILD
(from rev 201577, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 201577, mkinitcpio/trunk/mkinitcpio.install)

+
 PKGBUILD   |   27 +++
 mkinitcpio.install |   15 +++
 2 files changed, 42 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 201577, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-12-15 23:48:40 UTC (rev 201578)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=mkinitcpio
+pkgver=16
+pkgrel=1
+pkgdesc=Modular initramfs image creation utility
+arch=('any')
+url=https://projects.archlinux.org/mkinitcpio.git/;
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox=1.19.4-2' 'kmod' 'util-linux=2.23' 
'libarchive'
+ 'coreutils' 'bash' 'findutils' 'grep' 'filesystem=2011.10-1' 'gzip' 
'systemd')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'lz4: Use lz4 compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+backup=('etc/mkinitcpio.conf')
+source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
+install=mkinitcpio.install
+sha256sums=('10821e533eb1ca51a9d3c1d06d8999c08a6151910a9a6029a45ff1638e9228a2'
+'SKIP')
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}

Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 201577, 
mkinitcpio/trunk/mkinitcpio.install)
===
--- testing-any/mkinitcpio.install  (rev 0)
+++ testing-any/mkinitcpio.install  2013-12-15 23:48:40 UTC (rev 201578)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ $(vercmp 0.9.0 $2) -eq 1 ]; then
+printf '== If your /usr is on a separate partition, you must add the 
usr hook\n'
+printf 'to /etc/mkinitcpio.conf and regenerate your images before 
rebooting\n'
+  fi
+
+  if [ $(vercmp 0.12.0 $2) -eq 1 ]; then
+printf '== The block hook has replaced several hooks:\n'
+printf '   fw, sata, pata, scsi, virtio, mmc, usb\n'
+printf 'Replace any and all of these in /etc/mkinitcpio.conf with a 
single\n'
+printf 'instance of the block hook\n'
+  fi
+}



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

2013-12-15 Thread Allan McRae
Date: Monday, December 16, 2013 @ 01:29:11
  Author: allan
Revision: 201579

fix spelling

Modified:
  fakechroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 23:48:40 UTC (rev 201578)
+++ PKGBUILD2013-12-16 00:29:11 UTC (rev 201579)
@@ -18,7 +18,7 @@
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/fakechroot-2.17.1-sanatise-chroot-path.patch
+  patch -p1 -i ${srcdir}/fakechroot-2.17.1-sanitize-chroot-path.patch
 }
 
 build() {



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

2013-12-15 Thread Allan McRae
Date: Monday, December 16, 2013 @ 01:30:39
  Author: allan
Revision: 201580

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

Added:
  fakechroot/repos/extra-i686/PKGBUILD
(from rev 201579, fakechroot/trunk/PKGBUILD)
  fakechroot/repos/extra-i686/fakechroot-2.17.1-sanitize-chroot-path.patch
(from rev 201579, 
fakechroot/trunk/fakechroot-2.17.1-sanitize-chroot-path.patch)
  fakechroot/repos/extra-i686/fakechroot.install
(from rev 201579, fakechroot/trunk/fakechroot.install)
  fakechroot/repos/extra-x86_64/PKGBUILD
(from rev 201579, fakechroot/trunk/PKGBUILD)
  fakechroot/repos/extra-x86_64/fakechroot-2.17.1-sanitize-chroot-path.patch
(from rev 201579, 
fakechroot/trunk/fakechroot-2.17.1-sanitize-chroot-path.patch)
  fakechroot/repos/extra-x86_64/fakechroot.install
(from rev 201579, fakechroot/trunk/fakechroot.install)
Deleted:
  fakechroot/repos/extra-i686/PKGBUILD
  fakechroot/repos/extra-i686/fakechroot-2.17.1-sanitize-chroot-path.patch
  fakechroot/repos/extra-i686/fakechroot.install
  fakechroot/repos/extra-x86_64/PKGBUILD
  fakechroot/repos/extra-x86_64/fakechroot-2.17.1-sanitize-chroot-path.patch
  fakechroot/repos/extra-x86_64/fakechroot.install

---+
 /PKGBUILD |   84 +++
 /fakechroot-2.17.1-sanitize-chroot-path.patch |   88 
 /fakechroot.install   |   22 +++
 extra-i686/PKGBUILD   |   42 -
 extra-i686/fakechroot-2.17.1-sanitize-chroot-path.patch   |   44 --
 extra-i686/fakechroot.install |   11 -
 extra-x86_64/PKGBUILD |   42 -
 extra-x86_64/fakechroot-2.17.1-sanitize-chroot-path.patch |   44 --
 extra-x86_64/fakechroot.install   |   11 -
 9 files changed, 194 insertions(+), 194 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-16 00:29:11 UTC (rev 201579)
+++ extra-i686/PKGBUILD 2013-12-16 00:30:39 UTC (rev 201580)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Allan McRae al...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-
-pkgname=fakechroot
-pkgver=2.17.1
-pkgrel=2
-pkgdesc=Gives a fake chroot environment
-arch=('i686' 'x86_64')
-url=https://github.com/dex4er/fakechroot/wiki;
-license=('LGPL')
-install=fakechroot.install
-source=(https://github.com/dex4er/fakechroot/archive/${pkgver}.tar.gz
-fakechroot-2.17.1-sanitize-chroot-path.patch)
-md5sums=('3c17eff0c854a77f98b4d0db086bc5bc'
- 'fadc56f4b4dd67ba362c5ac41f5cb293')
-
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/fakechroot-2.17.1-sanatise-chroot-path.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sbindir=/usr/bin \
---libdir=/usr/lib/libfakeroot --sysconfdir=/etc
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -j1 check
-}
-  
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  
-  install -dm755 ${pkgdir}/etc/ld.so.conf.d/
-  echo '/usr/lib/libfakeroot/fakechroot/'  
${pkgdir}/etc/ld.so.conf.d/fakechroot.conf
-}

Copied: fakechroot/repos/extra-i686/PKGBUILD (from rev 201579, 
fakechroot/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-16 00:30:39 UTC (rev 201580)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Allan McRae al...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=fakechroot
+pkgver=2.17.1
+pkgrel=2
+pkgdesc=Gives a fake chroot environment
+arch=('i686' 'x86_64')
+url=https://github.com/dex4er/fakechroot/wiki;
+license=('LGPL')
+install=fakechroot.install
+source=(https://github.com/dex4er/fakechroot/archive/${pkgver}.tar.gz
+fakechroot-2.17.1-sanitize-chroot-path.patch)
+md5sums=('3c17eff0c854a77f98b4d0db086bc5bc'
+ 'fadc56f4b4dd67ba362c5ac41f5cb293')
+
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/fakechroot-2.17.1-sanitize-chroot-path.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sbindir=/usr/bin \
+--libdir=/usr/lib/libfakeroot --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make -j1 check
+}
+  
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -dm755 ${pkgdir}/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot/fakechroot/'  
${pkgdir}/etc/ld.so.conf.d/fakechroot.conf
+}

Deleted: extra-i686/fakechroot-2.17.1-sanitize-chroot-path.patch
===
--- extra-i686/fakechroot-2.17.1-sanitize-chroot-path.patch 2013-12-16 
00:29:11 UTC (rev 201579)
+++ 

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

2013-12-15 Thread Sébastien Luttringer
Date: Monday, December 16, 2013 @ 01:55:43
  Author: seblu
Revision: 102583

upgpkg: opensmtpd 5.4.1p1-2

- fix FS#38125
- fix FS#38124

Modified:
  opensmtpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-15 23:07:22 UTC (rev 102582)
+++ PKGBUILD2013-12-16 00:55:43 UTC (rev 102583)
@@ -3,12 +3,12 @@
 
 pkgname=opensmtpd
 pkgver=5.4.1p1
-pkgrel=1
+pkgrel=2
 pkgdesc='Free implementation of the server-side SMTP protocol'
 arch=('i686' 'x86_64')
 url='http://www.opensmtpd.org/'
 license=('custom')
-depends=('libevent')
+depends=('libevent' 'openssl')
 provides=('smtp-server' 'smtp-forwarder')
 conflicts=('smtp-server' 'smtp-forwarder')
 backup=('etc/smtpd/smtpd.conf' 'etc/smtpd/aliases')
@@ -27,6 +27,8 @@
 
 build() {
   cd $pkgname-$pkgver
+  # Remove _FORTIFY_SOURCES: FS#38124
+  export CPPFLAGS=''
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc/smtpd \
@@ -35,6 +37,7 @@
 --with-maildir=/var/spool/mail \
 --with-privsep-path=/var/empty \
 --with-sock-dir=/run \
+--with-ca-file=/etc/ssl/certs/ca-certificates.crt \
 --with-privsep-user=smtpd \
 --with-queue-user=smtpq \
 --with-pam



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

2013-12-15 Thread Sébastien Luttringer
Date: Monday, December 16, 2013 @ 02:28:09
  Author: seblu
Revision: 102584

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

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

+
 community-testing-i686/PKGBUILD|   61 +++
 community-testing-i686/opensmtpd.install   |   35 +++
 community-testing-i686/smtpd.service   |   10 
 community-testing-i686/smtpd.socket|8 +++
 community-testing-x86_64/PKGBUILD  |   61 +++
 community-testing-x86_64/opensmtpd.install |   35 +++
 community-testing-x86_64/smtpd.service |   10 
 community-testing-x86_64/smtpd.socket  |8 +++
 8 files changed, 228 insertions(+)

Copied: opensmtpd/repos/community-testing-i686/PKGBUILD (from rev 102583, 
opensmtpd/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-16 01:28:09 UTC (rev 102584)
@@ -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/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
+  # Remove _FORTIFY_SOURCES: FS#38124
+  export CPPFLAGS=''
+  ./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-ca-file=/etc/ssl/certs/ca-certificates.crt \
+--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-testing-i686/opensmtpd.install (from rev 
102583, opensmtpd/trunk/opensmtpd.install)
===
--- community-testing-i686/opensmtpd.install(rev 0)
+++ community-testing-i686/opensmtpd.install2013-12-16 01:28:09 UTC (rev 
102584)
@@ -0,0 +1,35 @@
+# arg 1:  the new package version
+post_install() {
+  # create users
+  getent passwd smtpd /dev/null || useradd -d / -u 91 -g 1 smtpd
+  getent passwd smtpq /dev/null || useradd -d /var/spool/smtpd -u 92 -g 1 
smtpq
+  :
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  post_install $1
+  if (( $(vercmp $2 5.3.3p1-1)  0 )); then
+echo 'Configuration files have been moved to /etc/smtpd.'
+echo 'New users have been added.'
+echo 'Check your configuration!'
+  elif (( $(vercmp $2 5.4)  0 )); then
+echo 'User smtpf is no more required. It will be removed!'
+echo 'Check your configuration!'
+userdel -f smtpf
+  fi
+  :
+}
+
+# arg 1:  the old package version
+post_remove() {
+  userdel -f smtpd
+  userdel -f smtpq
+  if (( 

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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 06:50:52
  Author: fyan
Revision: 102585

upgpkg: goaccess 0.7-1

Modified:
  goaccess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 01:28:09 UTC (rev 102584)
+++ PKGBUILD2013-12-16 05:50:52 UTC (rev 102585)
@@ -4,7 +4,7 @@
 # Contributor: Nicolas Storme nico...@atelier-web.com
 
 pkgname=goaccess
-pkgver=0.6.1
+pkgver=0.7
 pkgrel=1
 pkgdesc=An open source real-time web log analyzer and interactive viewer
 arch=('i686' 'x86_64')
@@ -14,14 +14,14 @@
 source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --enable-geoip
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make prefix=$pkgdir/usr install
 }
 
-sha512sums=('67712e4af16c6e039ca46f6f8d8302a58be1e0cfd0c76930068c03a9989c35b58b61f7b1e6a9e79cbb978c8f492b80782b8c7b894abc2e067f0a520e2981f98b')
+sha512sums=('0817f6b7429d464fdd2070941b4bf6abaa5398a4b720e31af5af8fd8cd41169e5b71f90157101121cc904d06fb5bd6c7a109c4260fe8f829a19a75ff4b489146')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 06:51:48
  Author: fyan
Revision: 102586

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

Added:
  goaccess/repos/community-testing-i686/
  goaccess/repos/community-testing-i686/PKGBUILD
(from rev 102585, goaccess/trunk/PKGBUILD)
  goaccess/repos/community-testing-x86_64/
  goaccess/repos/community-testing-x86_64/PKGBUILD
(from rev 102585, goaccess/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   27 +++
 community-testing-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: goaccess/repos/community-testing-i686/PKGBUILD (from rev 102585, 
goaccess/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-16 05:51:48 UTC (rev 102586)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Josh VanderLinden a...@cloudlery.com
+# Contributor: Nicolas Storme nico...@atelier-web.com
+
+pkgname=goaccess
+pkgver=0.7
+pkgrel=1
+pkgdesc=An open source real-time web log analyzer and interactive viewer
+arch=('i686' 'x86_64')
+url=http://goaccess.prosoftcorp.com;
+license=('GPL')
+depends=('ncurses' 'geoip' 'glib2')
+source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --enable-geoip
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}
+
+sha512sums=('0817f6b7429d464fdd2070941b4bf6abaa5398a4b720e31af5af8fd8cd41169e5b71f90157101121cc904d06fb5bd6c7a109c4260fe8f829a19a75ff4b489146')

Copied: goaccess/repos/community-testing-x86_64/PKGBUILD (from rev 102585, 
goaccess/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-12-16 05:51:48 UTC (rev 102586)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Josh VanderLinden a...@cloudlery.com
+# Contributor: Nicolas Storme nico...@atelier-web.com
+
+pkgname=goaccess
+pkgver=0.7
+pkgrel=1
+pkgdesc=An open source real-time web log analyzer and interactive viewer
+arch=('i686' 'x86_64')
+url=http://goaccess.prosoftcorp.com;
+license=('GPL')
+depends=('ncurses' 'geoip' 'glib2')
+source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --enable-geoip
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}
+
+sha512sums=('0817f6b7429d464fdd2070941b4bf6abaa5398a4b720e31af5af8fd8cd41169e5b71f90157101121cc904d06fb5bd6c7a109c4260fe8f829a19a75ff4b489146')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 06:55:22
  Author: fyan
Revision: 102587

upgpkg: libkkc 0.3.2-1

Modified:
  libkkc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 05:51:48 UTC (rev 102586)
+++ PKGBUILD2013-12-16 05:55:22 UTC (rev 102587)
@@ -3,7 +3,7 @@
 # Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
 
 pkgname=libkkc
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc=Japanese Kana Kanji conversion library
 arch=('i686' 'x86_64')
@@ -30,4 +30,4 @@
 ${pkgdir}/usr/share/doc/${pkgname}-${pkgver}/  
 }
 
-sha512sums=('6b237930ec0fd0f788364a301b2cf97a0607d708c109cf619b73321255ec50f08c396afde767856a9db6f8e8ceb0117a95eda3a17f3c9c8065a32843b1e97fc0')
+sha512sums=('ae3aa5278aabece7e883a1c336211249b4123cd66d23bf0f8db146de1df7c17d12f091b02f0eb0471646c513aba1732777cf80b5f6aab2f2e091df13ef441067')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 06:56:19
  Author: fyan
Revision: 102588

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

Added:
  libkkc/repos/community-testing-i686/
  libkkc/repos/community-testing-i686/PKGBUILD
(from rev 102587, libkkc/trunk/PKGBUILD)
  libkkc/repos/community-testing-x86_64/
  libkkc/repos/community-testing-x86_64/PKGBUILD
(from rev 102587, libkkc/trunk/PKGBUILD)

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

Copied: libkkc/repos/community-testing-i686/PKGBUILD (from rev 102587, 
libkkc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-16 05:56:19 UTC (rev 102588)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+
+pkgname=libkkc
+pkgver=0.3.2
+pkgrel=1
+pkgdesc=Japanese Kana Kanji conversion library
+arch=('i686' 'x86_64')
+url=https://bitbucket.org/libkkc;
+license=('GPL')
+depends=('marisa' 'json-glib' 'libgee06')
+makedepends=('vala' 'gobject-introspection' 'intltool' 'python2-marisa')
+optdepends=('sh: to use kkc-package-data')
+source=(https://bitbucket.org/libkkc/libkkc/downloads/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=/usr/bin/python2 \
+  ./configure --prefix=/usr --disable-static --disable-silent-rules
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+  install -d ${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
+  install -m 644 README data/rules/README.rules COPYING \
+${pkgdir}/usr/share/doc/${pkgname}-${pkgver}/  
+}
+
+sha512sums=('ae3aa5278aabece7e883a1c336211249b4123cd66d23bf0f8db146de1df7c17d12f091b02f0eb0471646c513aba1732777cf80b5f6aab2f2e091df13ef441067')

Copied: libkkc/repos/community-testing-x86_64/PKGBUILD (from rev 102587, 
libkkc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-12-16 05:56:19 UTC (rev 102588)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+
+pkgname=libkkc
+pkgver=0.3.2
+pkgrel=1
+pkgdesc=Japanese Kana Kanji conversion library
+arch=('i686' 'x86_64')
+url=https://bitbucket.org/libkkc;
+license=('GPL')
+depends=('marisa' 'json-glib' 'libgee06')
+makedepends=('vala' 'gobject-introspection' 'intltool' 'python2-marisa')
+optdepends=('sh: to use kkc-package-data')
+source=(https://bitbucket.org/libkkc/libkkc/downloads/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=/usr/bin/python2 \
+  ./configure --prefix=/usr --disable-static --disable-silent-rules
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+  install -d ${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
+  install -m 644 README data/rules/README.rules COPYING \
+${pkgdir}/usr/share/doc/${pkgname}-${pkgver}/  
+}
+
+sha512sums=('ae3aa5278aabece7e883a1c336211249b4123cd66d23bf0f8db146de1df7c17d12f091b02f0eb0471646c513aba1732777cf80b5f6aab2f2e091df13ef441067')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 07:02:55
  Author: fyan
Revision: 102589

upgpkg: ibus-kkc 1.5.19-1

Modified:
  ibus-kkc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 05:56:19 UTC (rev 102588)
+++ PKGBUILD2013-12-16 06:02:55 UTC (rev 102589)
@@ -2,7 +2,7 @@
 # Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
 
 pkgname=ibus-kkc
-pkgver=1.5.18
+pkgver=1.5.19
 pkgrel=1
 pkgdesc=libkkc (Japanese Kana Kanji input method) engine for ibus
 arch=('i686' 'x86_64')
@@ -23,4 +23,4 @@
   make DESTDIR=$pkgdir install
 }
 
-sha512sums=('06212fd6d851ab68ad2ca003d52d67c87d65a2cd776d575e5110c5d39d9feb8f3648608024823bfd2caed6e536e250a1416f186b3e702f5398dd9afe60a07756')
+sha512sums=('4f74557974404e8bf945d964b681516fb42eff204920f582474a7ec9c229bddd8fb38a000ec6a1976bd1d6e3fcbd87a877e04dc35550af1a90fd294ed208b756')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 07:04:16
  Author: fyan
Revision: 102590

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

Added:
  ibus-kkc/repos/community-testing-i686/
  ibus-kkc/repos/community-testing-i686/PKGBUILD
(from rev 102589, ibus-kkc/trunk/PKGBUILD)
  ibus-kkc/repos/community-testing-x86_64/
  ibus-kkc/repos/community-testing-x86_64/PKGBUILD
(from rev 102589, ibus-kkc/trunk/PKGBUILD)

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

Copied: ibus-kkc/repos/community-testing-i686/PKGBUILD (from rev 102589, 
ibus-kkc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-16 06:04:16 UTC (rev 102590)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+
+pkgname=ibus-kkc
+pkgver=1.5.19
+pkgrel=1
+pkgdesc=libkkc (Japanese Kana Kanji input method) engine for ibus
+arch=('i686' 'x86_64')
+url=https://bitbucket.org/libkkc;
+license=('GPL')
+depends=('ibus' 'libkkc' 'libkkc-data' 'skk-jisyo')
+makedepends=('vala' 'intltool')
+source=(https://bitbucket.org/libkkc/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ibus-kkc --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+
+sha512sums=('4f74557974404e8bf945d964b681516fb42eff204920f582474a7ec9c229bddd8fb38a000ec6a1976bd1d6e3fcbd87a877e04dc35550af1a90fd294ed208b756')

Copied: ibus-kkc/repos/community-testing-x86_64/PKGBUILD (from rev 102589, 
ibus-kkc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-12-16 06:04:16 UTC (rev 102590)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+
+pkgname=ibus-kkc
+pkgver=1.5.19
+pkgrel=1
+pkgdesc=libkkc (Japanese Kana Kanji input method) engine for ibus
+arch=('i686' 'x86_64')
+url=https://bitbucket.org/libkkc;
+license=('GPL')
+depends=('ibus' 'libkkc' 'libkkc-data' 'skk-jisyo')
+makedepends=('vala' 'intltool')
+source=(https://bitbucket.org/libkkc/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ibus-kkc --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+
+sha512sums=('4f74557974404e8bf945d964b681516fb42eff204920f582474a7ec9c229bddd8fb38a000ec6a1976bd1d6e3fcbd87a877e04dc35550af1a90fd294ed208b756')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 07:10:04
  Author: fyan
Revision: 102591

upgpkg: python-sympy 0.7.4.1-1

Modified:
  python-sympy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 06:04:16 UTC (rev 102590)
+++ PKGBUILD2013-12-16 06:10:04 UTC (rev 102591)
@@ -7,7 +7,7 @@
 
 pkgbase=python-sympy
 pkgname=('python2-sympy' 'python-sympy')
-pkgver=0.7.4
+pkgver=0.7.4.1
 pkgrel=1
 arch=('any')
 pkgdesc='Symbolic manipulation package (Computer Algebra System), written in 
pure Python'
@@ -37,7 +37,7 @@
 #  cd sympy-${pkgver}
 #  python2 setup.py test
 #
-#  cd ../py3/sympy-${pkgver}
+#  cd ../py3-sympy-${pkgver}
 #  python3 setup.py test
 #}
 
@@ -67,4 +67,5 @@
 
   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
-sha512sums=('75455b83cf02a72501ad2af0d1139624837ce65b6f02b36dfb949d1372e1291a2f322552b7a699ea973d1c66b8230167ed870445d019b2b08d5fbcc9cc4750d6')
+
+sha512sums=('8d4d87428c202407ff364ef503634529500c1656cf5ddbb4de19b838499593c58d227f0b619541ce86cdc15157e3a5b48a95c906a5d05d4606ef95f1aa8fa2dc')



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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 07:10:49
  Author: fyan
Revision: 102592

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 06:10:04 UTC (rev 102591)
+++ PKGBUILD2013-12-16 06:10:49 UTC (rev 102592)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve  
-# Contributor: Peter Garceau rockych...@gmail.com
-
-pkgbase=python-sympy
-pkgname=('python2-sympy' 'python-sympy')
-pkgver=0.7.4
-pkgrel=1
-arch=('any')
-pkgdesc='Symbolic manipulation package (Computer Algebra System), written in 
pure Python'
-url='http://sympy.org/en/index.html'
-license=('BSD')
-makedepends=('python2' 'python')
-optdepends=('pyglet: plotting'
-'ipython2: user friendly interface for isympy')
-source=(https://github.com/sympy/sympy/releases/download/sympy-${pkgver}/sympy-${pkgver}.tar.gz;)
-
-prepare() {
-  cp -r sympy-${pkgver} py3-sympy-${pkgver}
-
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python3|' 
py3-sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
py3-sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
-}
-
-build() {
-  cd sympy-${pkgver}
-  python2 setup.py build
-
-  cd ../py3-sympy-${pkgver}
-  python3 setup.py build
-}
-
-#check() {
-#  cd sympy-${pkgver}
-#  python2 setup.py test
-#
-#  cd ../py3/sympy-${pkgver}
-#  python3 setup.py test
-#}
-
-package_python2-sympy() {
-  depends=('python2=2.7')
-  optdepends=('python2-pyglet: plotting'
-  'ipython2: user friendly interface for isympy')
-
-  cd sympy-${pkgver}
-
-  python2 setup.py install --root ${pkgdir} --optimize=1
-
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-sympy() {
-  depends=('python=3.3')
-  optdepends=('ipython: user friendly interface for isympy')
-
-  cd py3-sympy-${pkgver}
-
-  python3 setup.py install --root ${pkgdir} --optimize=1
-
-  # rename files that exists in both 'python2-sympy' and 'python-sympy'
-  mv ${pkgdir}/usr/bin/isympy{,-py3}
-  mv ${pkgdir}/usr/share/man/man1/isympy{,-py3}.1
-
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-sha512sums=('75455b83cf02a72501ad2af0d1139624837ce65b6f02b36dfb949d1372e1291a2f322552b7a699ea973d1c66b8230167ed870445d019b2b08d5fbcc9cc4750d6')

Copied: python-sympy/repos/community-any/PKGBUILD (from rev 102591, 
python-sympy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 06:10:49 UTC (rev 102592)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve  
+# Contributor: Peter Garceau rockych...@gmail.com
+
+pkgbase=python-sympy
+pkgname=('python2-sympy' 'python-sympy')
+pkgver=0.7.4.1
+pkgrel=1
+arch=('any')
+pkgdesc='Symbolic manipulation package (Computer Algebra System), written in 
pure Python'
+url='http://sympy.org/en/index.html'
+license=('BSD')
+makedepends=('python2' 'python')
+optdepends=('pyglet: plotting'
+'ipython2: user friendly interface for isympy')
+source=(https://github.com/sympy/sympy/releases/download/sympy-${pkgver}/sympy-${pkgver}.tar.gz;)
+
+prepare() {
+  cp -r sympy-${pkgver} py3-sympy-${pkgver}
+
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python3|' 
py3-sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
py3-sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
+}
+
+build() {
+  cd sympy-${pkgver}
+  python2 setup.py build
+
+  cd ../py3-sympy-${pkgver}
+  python3 setup.py build
+}
+
+#check() {
+#  cd sympy-${pkgver}
+#  python2 setup.py test
+#
+#  cd ../py3-sympy-${pkgver}
+#  python3 setup.py test
+#}
+
+package_python2-sympy() {
+  depends=('python2=2.7')
+  optdepends=('python2-pyglet: plotting'
+  'ipython2: user friendly interface for isympy')
+
+  cd sympy-${pkgver}
+
+  python2 setup.py install --root ${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+

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

2013-12-15 Thread Felix Yan
Date: Monday, December 16, 2013 @ 07:27:25
  Author: fyan
Revision: 102593

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-16 06:10:49 UTC (rev 102592)
+++ PKGBUILD2013-12-16 06:27:25 UTC (rev 102593)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve  
-# Contributor: Peter Garceau rockych...@gmail.com
-
-pkgbase=python-sympy
-pkgname=('python2-sympy' 'python-sympy')
-pkgver=0.7.4.1
-pkgrel=1
-arch=('any')
-pkgdesc='Symbolic manipulation package (Computer Algebra System), written in 
pure Python'
-url='http://sympy.org/en/index.html'
-license=('BSD')
-makedepends=('python2' 'python')
-optdepends=('pyglet: plotting'
-'ipython2: user friendly interface for isympy')
-source=(https://github.com/sympy/sympy/releases/download/sympy-${pkgver}/sympy-${pkgver}.tar.gz;)
-
-prepare() {
-  cp -r sympy-${pkgver} py3-sympy-${pkgver}
-
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python3|' 
py3-sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
py3-sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
-}
-
-build() {
-  cd sympy-${pkgver}
-  python2 setup.py build
-
-  cd ../py3-sympy-${pkgver}
-  python3 setup.py build
-}
-
-#check() {
-#  cd sympy-${pkgver}
-#  python2 setup.py test
-#
-#  cd ../py3-sympy-${pkgver}
-#  python3 setup.py test
-#}
-
-package_python2-sympy() {
-  depends=('python2=2.7')
-  optdepends=('python2-pyglet: plotting'
-  'ipython2: user friendly interface for isympy')
-
-  cd sympy-${pkgver}
-
-  python2 setup.py install --root ${pkgdir} --optimize=1
-
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-sympy() {
-  depends=('python=3.3')
-  optdepends=('ipython: user friendly interface for isympy')
-
-  cd py3-sympy-${pkgver}
-
-  python3 setup.py install --root ${pkgdir} --optimize=1
-
-  # rename files that exists in both 'python2-sympy' and 'python-sympy'
-  mv ${pkgdir}/usr/bin/isympy{,-py3}
-  mv ${pkgdir}/usr/share/man/man1/isympy{,-py3}.1
-
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-sha512sums=('8d4d87428c202407ff364ef503634529500c1656cf5ddbb4de19b838499593c58d227f0b619541ce86cdc15157e3a5b48a95c906a5d05d4606ef95f1aa8fa2dc')

Copied: python-sympy/repos/community-any/PKGBUILD (from rev 102592, 
python-sympy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-16 06:27:25 UTC (rev 102593)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve  
+# Contributor: Peter Garceau rockych...@gmail.com
+
+pkgbase=python-sympy
+pkgname=('python2-sympy' 'python-sympy')
+pkgver=0.7.4.1
+pkgrel=1
+arch=('any')
+pkgdesc='Symbolic manipulation package (Computer Algebra System), written in 
pure Python'
+url='http://sympy.org/en/index.html'
+license=('BSD')
+makedepends=('python2' 'python')
+optdepends=('pyglet: plotting'
+'ipython2: user friendly interface for isympy')
+source=(https://github.com/sympy/sympy/releases/download/sympy-${pkgver}/sympy-${pkgver}.tar.gz;)
+
+prepare() {
+  cp -r sympy-${pkgver} py3-sympy-${pkgver}
+
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python3|' 
py3-sympy-${pkgver}/sympy/mpmath/tests/runtests.py 
py3-sympy-${pkgver}/sympy/utilities/tests/diagnose_imports.py
+}
+
+build() {
+  cd sympy-${pkgver}
+  python2 setup.py build
+
+  cd ../py3-sympy-${pkgver}
+  python3 setup.py build
+}
+
+#check() {
+#  cd sympy-${pkgver}
+#  python2 setup.py test
+#
+#  cd ../py3-sympy-${pkgver}
+#  python3 setup.py test
+#}
+
+package_python2-sympy() {
+  depends=('python2=2.7')
+  optdepends=('python2-pyglet: plotting'
+  'ipython2: user friendly interface for isympy')
+
+  cd sympy-${pkgver}
+
+  python2 setup.py install --root ${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+

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

2013-12-15 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 08:56:41
  Author: tpowa
Revision: 201581

upgpkg: hwdetect 2013.12-1

remove shutdown code, obsolete by mkinitcpio 0.16

Modified:
  hwdetect/trunk/PKGBUILD
  hwdetect/trunk/hwdetect

--+
 PKGBUILD |6 +++---
 hwdetect |9 +
 2 files changed, 4 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-16 00:30:39 UTC (rev 201580)
+++ PKGBUILD2013-12-16 07:56:41 UTC (rev 201581)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=hwdetect
-pkgver=2013.10
-pkgrel=4
+pkgver=2013.12
+pkgrel=1
 pkgdesc=Hardware detection script with loading modules and mkinitcpio.conf / 
rc.conf support
 arch=(any)
 license=('GPL')
@@ -16,4 +16,4 @@
 package() {
   install -D -m 755 ${srcdir}/hwdetect ${pkgdir}/usr/bin/hwdetect
 }
-md5sums=('3f7825074b5adfa1abebe4e052b929c6')
+md5sums=('b55e0501dab6599e94c3b5c54c2166bc')

Modified: hwdetect
===
--- hwdetect2013-12-16 00:30:39 UTC (rev 201580)
+++ hwdetect2013-12-16 07:56:41 UTC (rev 201581)
@@ -51,7 +51,6 @@
echo --pcmcia   add pcmcia to HOOKS=
echo --nfs  add net to HOOKS=
echo --btrfsadd btrfs to HOOKS=
-   echo --shutdown add shutdown to HOOKS=
exit 1
 }
 
@@ -102,9 +101,6 @@
 # btrfs switch
 [ $(echo $* | grep '\-btrfs') ]  BTRFS=1
 
-# shutdown switch
-[ $(echo $* | grep '\-shutdown') ]  SHUTDOWN=1
-
 # hooks switch
 [ $(echo $* | grep '\-hooks') ]  HOOKS=1
 
@@ -251,7 +247,7 @@
if [ $HOOKS_DIR =  ]; then
HOOKS_DIR=/usr/lib/initcpio/install
fi
-   START_HOOKS=base udev keymap autodetect modconf block 
pcmcia net dmraid keyboard $ADVANCED btrfs filesystems fsck shutdown
+   START_HOOKS=base udev keymap autodetect modconf block 
pcmcia net dmraid keyboard $ADVANCED btrfs filesystems fsck
# remove the ones that don't exist on the system
for i in ${START_HOOKS}; do
if ! [ -e ${HOOKS_DIR}/$i ]; then 
@@ -273,9 +269,6 @@
if ! [ $BTRFS = 1 ]; then
START_HOOKS=$(echo $START_HOOKS | sed -e 
s/btrfs//g)
fi
-   if ! [ $SHUTDOWN = 1 ]; then
-   START_HOOKS=$(echo $START_HOOKS | sed -e 
s/shutdown//g)
-   fi
echo HOOKS=\$START_HOOKS\ | sed -e 's/\ //g' -e 
's/\ //g' -e 's/\ \ /\ /g'
;;
--advanced) echo $ADVANCED



[arch-commits] Commit in hwdetect/repos (3 files)

2013-12-15 Thread Tobias Powalowski
Date: Monday, December 16, 2013 @ 08:56:49
  Author: tpowa
Revision: 201582

archrelease: copy trunk to testing-any

Added:
  hwdetect/repos/testing-any/
  hwdetect/repos/testing-any/PKGBUILD
(from rev 201581, hwdetect/trunk/PKGBUILD)
  hwdetect/repos/testing-any/hwdetect
(from rev 201581, hwdetect/trunk/hwdetect)

--+
 PKGBUILD |   19 
 hwdetect |  285 +
 2 files changed, 304 insertions(+)

Copied: hwdetect/repos/testing-any/PKGBUILD (from rev 201581, 
hwdetect/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-12-16 07:56:49 UTC (rev 201582)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=hwdetect
+pkgver=2013.12
+pkgrel=1
+pkgdesc=Hardware detection script with loading modules and mkinitcpio.conf / 
rc.conf support
+arch=(any)
+license=('GPL')
+depends=('sh' 'awk' 'grep' 'coreutils' 'sed' 'e2fsprogs')
+optdepends=('cryptsetup: for encrypt mkinitcpio config support'
+'dmraid: for dmraid mkinitcpio config support'
+'lvm2:   for lvm2 mkinitcpio config support'
+'mdadm:  for raid mkinitcpio config support')
+source=(hwdetect)
+
+package() {
+  install -D -m 755 ${srcdir}/hwdetect ${pkgdir}/usr/bin/hwdetect
+}
+md5sums=('b55e0501dab6599e94c3b5c54c2166bc')

Copied: hwdetect/repos/testing-any/hwdetect (from rev 201581, 
hwdetect/trunk/hwdetect)
===
--- testing-any/hwdetect(rev 0)
+++ testing-any/hwdetect2013-12-16 07:56:49 UTC (rev 201582)
@@ -0,0 +1,285 @@
+#! /bin/sh
+# Autodetection script for scanning /sys for hardware
+# for Archlinux by Tobias Powalowski tp...@archlinux.org
+usage () {
+   echo $0 [options]
+   echo 
+   echo  This is a tool that detects/lists modules that are exported by 
/sys
+   echo 
+   echo   Options:
+   echo --kernel_version=  use kernel version (no autodetect)
+   echo --kernel_directory=use kernel module directory (no 
autodetect)
+   echo --show-modules show all detected modules
+   echo --show-modules-order   shows load order of detected modules
+   echo --show-agp show AGP modules
+   echo --show-acpishow ACPI modules
+echo --show-block   show BLOCK DEVICE modules
+echo --show-bluetooth   show BLUETOOTH modules
+echo --show-cdrom   show CDROM modules
+echo --show-cpufreq show CPUFREQ modules
+echo --show-crypto  show CRYPTO modules
+echo --show-drm show DRM modules
+echo --show-hwmon   show HWMON modules
+echo --show-i2c show I2C modules
+   echo --show-input   show INPUT modules
+   echo --show-irdashow IRDA modules
+   echo --show-isdnshow ISDN modules
+echo --show-kvm show KVM modules
+echo --show-media   show MEDIA modules
+   echo --show-net show NETWORK modules
+   echo --show-parport show PARPORT modules
+   echo --show-pcmcia  show PCMCIA modules
+   echo --show-sound   show SOUND modules
+   echo --show-staging show STAGING modules
+echo --show-tpm show TPM modules
+echo --show-watchdogshow WATCHDOG modules
+   echo --show-other   show OTHER modules
+   echo 
+   echo   For /etc/mkinitcpio.conf use:
+   echo --filesystem   add filesystems to MODULES=
+   echo --hostcontroller   show MODULES= for all hostcontrollers
+   echo --ati-kms  add ati kernel mode setting 
+   echo --intel-kmsadd intel kernel mode setting
+   echo --nvidia-kms   add nvidia kernel mode setting
+echo  
+   echo --rootdevice=  autodetected advanced features of 
rootdevice
+   echo --hooks-dir=   use this directory for HOOKS check
+   echo --advanced show autodetected advanced HOOKS
+   echo --hooksshow HOOKS=
+   echo --dmraid   add dmraid to HOOKS=
+   echo --keymap   add keymap to HOOKS=
+   echo --pcmcia   add pcmcia to HOOKS=
+   echo --nfs  add net to HOOKS=
+   echo --btrfsadd btrfs to HOOKS=
+   exit 1
+}
+
+[ $1 =  ]usage
+[ $1 = --help ]  usage
+[ $1 = -h ]  usage
+
+# setting parameters
+PARAMETER=$(echo $*)
+parameter() {
+   while [ -n $1 ]; do
+   case $1 in
+