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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 09:55:40
  Author: fyan
Revision: 110601

upgpkg: cgminer 4.3.3-1

Modified:
  cgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 04:57:32 UTC (rev 110600)
+++ PKGBUILD2014-05-04 07:55:40 UTC (rev 110601)
@@ -5,7 +5,7 @@
 # Contributor: David Manouchehri da...@davidmanouchehri.com
 
 pkgname=cgminer
-pkgver=4.3.2
+pkgver=4.3.3
 #_pkgver=
 _pkgver=$pkgver
 pkgrel=1



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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 09:56:54
  Author: fyan
Revision: 110602

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

Added:
  cgminer/repos/community-i686/PKGBUILD
(from rev 110601, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-i686/cgminer.conf.d
(from rev 110601, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-i686/cgminer.service
(from rev 110601, cgminer/trunk/cgminer.service)
  cgminer/repos/community-x86_64/PKGBUILD
(from rev 110601, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-x86_64/cgminer.conf.d
(from rev 110601, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-x86_64/cgminer.service
(from rev 110601, cgminer/trunk/cgminer.service)
Deleted:
  cgminer/repos/community-i686/PKGBUILD
  cgminer/repos/community-i686/cgminer.conf.d
  cgminer/repos/community-i686/cgminer.service
  cgminer/repos/community-x86_64/PKGBUILD
  cgminer/repos/community-x86_64/cgminer.conf.d
  cgminer/repos/community-x86_64/cgminer.service

--+
 /PKGBUILD|  198 +
 /cgminer.conf.d  |   22 
 /cgminer.service |   16 ++
 community-i686/PKGBUILD  |   99 --
 community-i686/cgminer.conf.d|   11 --
 community-i686/cgminer.service   |8 -
 community-x86_64/PKGBUILD|   99 --
 community-x86_64/cgminer.conf.d  |   11 --
 community-x86_64/cgminer.service |8 -
 9 files changed, 236 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-04 07:55:40 UTC (rev 110601)
+++ community-i686/PKGBUILD 2014-05-04 07:56:54 UTC (rev 110602)
@@ -1,99 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: monson holymon...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: David Manouchehri da...@davidmanouchehri.com
-
-pkgname=cgminer
-pkgver=4.3.2
-#_pkgver=
-_pkgver=$pkgver
-pkgrel=1
-pkgdesc=Multi-threaded multi-pool GPU, FPGA and ASIC miner for bitcoin
-url='http://forum.bitcoin.org/index.php?topic=28402.0'
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('curl' 'libusb' 'jansson')
-makedepends=('git')
-source=(git+https://github.com/ckolivas/${pkgname}.git#tag=v$_pkgver;
-$pkgname.conf.d
-$pkgname.service)
-backup=(etc/conf.d/$pkgname etc/$pkgname.conf)
-
-prepare() {
-  cd $pkgname
-  # We have latest jansson and libusb - just use them
-
-  sed -e 's|^AC_CONFIG_SUBDIRS.*compat/jansson-2\.5.*||' \
-  -e 
's|JANSSON_LIBS=compat/jansson-2\.5/src/\.libs/libjansson\.a|JANSSON_LIBS=-ljansson|'
 \
-  -e 's|compat/Makefile||' \
-  -i ./configure.ac
-
-  sed -e 's|^JANSSON_CPPFLAGS= .*||' \
-  -e 's|^USBUTILS_CPPFLAGS = .*|USBUTILS_CPPFLAGS = 
-I/usr/include/libusb-1.0|' \
-  -e 's|^SUBDIRS.*|SUBDIRS = lib ccan|' \
-  -i ./Makefile.am
-
-  #sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
-  #sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
-  #sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
-  #sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
-  #sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
-  #sed 's|compat/Makefile ||' -i ./configure
-
-  #sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
-  #sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
-  #sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
-
-  rm -r compat
-}
-
-build() {
-  cd $pkgname
-  
-  # Here you may want to use custom CFLAGS
-  #export CFLAGS=-O2 -march=native -mtune=native -msse2
-  
-  # ./configure \
-
-  ./autogen.sh \
---prefix=/usr \
---enable-ants1 \
---enable-avalon \
---enable-avalon2 \
---enable-bab \
---enable-bflsc \
---enable-bitforce \
---enable-bitfury \
---enable-bitmine_A1 \
---enable-cointerra \
---enable-drillbit \
---enable-hashfast \
---enable-icarus \
---enable-klondike \
---enable-minion \
---enable-modminer \
---with-system-libusb
-# --enable-spondoolies # Enable it only when you need to
-# --enable-knc # Enable it only when you need to
-  
-  make
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/usr/share/$pkgname
-  install -m755 miner.php api-example.* $pkgdir/usr/share/$pkgname
-
-  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm644 $srcdir/$pkgname.conf.d $pkgdir/etc/conf.d/$pkgname
-  sed 's#/usr/local/bin#/usr/bin#g' example.conf  $pkgname.conf
-  install -Dm644 $pkgname.conf $pkgdir/etc/$pkgname.conf
-}
-
-sha512sums=('SKIP'
-

[arch-commits] Commit in xf86-video-openchrome/trunk (PKGBUILD)

2014-05-04 Thread Andreas Radke
Date: Sunday, May 4, 2014 @ 10:27:52
  Author: andyrtr
Revision: 211996

fix url

Modified:
  xf86-video-openchrome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 04:11:36 UTC (rev 211995)
+++ PKGBUILD2014-05-04 08:27:52 UTC (rev 211996)
@@ -1,6 +1,7 @@
 # $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
 # Contributor: Paul Mattal p...@mattal.com
-# Maintainer: Juergen Hoetzel juer...@hoetzel.info
+# Contributor: Juergen Hoetzel juer...@hoetzel.info
 
 pkgname=xf86-video-openchrome
 pkgver=0.3.3
@@ -8,7 +9,7 @@
 pkgdesc=X.Org Openchrome drivers
 arch=(i686 x86_64)
 license=('custom')
-url=http://www.openchrome.org;
+url=http://www.freedesktop.org/wiki/Openchrome/;
 depends=('libdrm' 'libxvmc' 'systemd')
 optdepends=('unichrome-dri')
 makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15')



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

2014-05-04 Thread Andreas Radke
Date: Sunday, May 4, 2014 @ 10:34:39
  Author: andyrtr
Revision: 211998

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

Added:
  xorg-xbacklight/repos/extra-i686/PKGBUILD
(from rev 211997, xorg-xbacklight/trunk/PKGBUILD)
  xorg-xbacklight/repos/extra-x86_64/PKGBUILD
(from rev 211997, xorg-xbacklight/trunk/PKGBUILD)
Deleted:
  xorg-xbacklight/repos/extra-i686/PKGBUILD
  xorg-xbacklight/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-04 08:34:21 UTC (rev 211997)
+++ extra-i686/PKGBUILD 2014-05-04 08:34:39 UTC (rev 211998)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-xbacklight
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=RandR-based backlight control application
-arch=('i686' 'x86_64')
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('xcb-util')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(http://xorg.freedesktop.org/archive/individual/app/xbacklight-${pkgver}.tar.bz2)
-sha256sums=('5152d6134fa592c9c14060d7324a7db104da0184cc9b2f9715e847f9354e36a5')
-
-build() {
-  cd ${srcdir}/xbacklight-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/xbacklight-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: xorg-xbacklight/repos/extra-i686/PKGBUILD (from rev 211997, 
xorg-xbacklight/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-04 08:34:39 UTC (rev 211998)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-xbacklight
+pkgver=1.2.1
+pkgrel=1
+pkgdesc=RandR-based backlight control application
+arch=('i686' 'x86_64')
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('xcb-util')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xbacklight-${pkgver}.tar.bz2)
+sha256sums=('17f6cf51a35eaa918abec36b7871d28b712c169312e22a0eaf1ffe8d6468362b')
+
+build() {
+  cd xbacklight-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xbacklight-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-04 08:34:21 UTC (rev 211997)
+++ extra-x86_64/PKGBUILD   2014-05-04 08:34:39 UTC (rev 211998)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-xbacklight
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=RandR-based backlight control application
-arch=('i686' 'x86_64')
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('xcb-util')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(http://xorg.freedesktop.org/archive/individual/app/xbacklight-${pkgver}.tar.bz2)
-sha256sums=('5152d6134fa592c9c14060d7324a7db104da0184cc9b2f9715e847f9354e36a5')
-
-build() {
-  cd ${srcdir}/xbacklight-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/xbacklight-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: xorg-xbacklight/repos/extra-x86_64/PKGBUILD (from rev 211997, 
xorg-xbacklight/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-04 08:34:39 UTC (rev 211998)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-xbacklight
+pkgver=1.2.1
+pkgrel=1
+pkgdesc=RandR-based backlight control application
+arch=('i686' 'x86_64')
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('xcb-util')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xbacklight-${pkgver}.tar.bz2)
+sha256sums=('17f6cf51a35eaa918abec36b7871d28b712c169312e22a0eaf1ffe8d6468362b')
+
+build() {
+  cd xbacklight-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xbacklight-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}



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

2014-05-04 Thread Andreas Radke
Date: Sunday, May 4, 2014 @ 10:34:21
  Author: andyrtr
Revision: 211997

upgpkg: xorg-xbacklight 1.2.1-1

upstream update 1.2.1

Modified:
  xorg-xbacklight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 08:27:52 UTC (rev 211996)
+++ PKGBUILD2014-05-04 08:34:21 UTC (rev 211997)
@@ -1,8 +1,9 @@
 # $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xorg-xbacklight
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc=RandR-based backlight control application
 arch=('i686' 'x86_64')
@@ -12,16 +13,16 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 
source=(http://xorg.freedesktop.org/archive/individual/app/xbacklight-${pkgver}.tar.bz2)
-sha256sums=('5152d6134fa592c9c14060d7324a7db104da0184cc9b2f9715e847f9354e36a5')
+sha256sums=('17f6cf51a35eaa918abec36b7871d28b712c169312e22a0eaf1ffe8d6468362b')
 
 build() {
-  cd ${srcdir}/xbacklight-${pkgver}
+  cd xbacklight-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd ${srcdir}/xbacklight-${pkgver}
+  cd xbacklight-${pkgver}
   make DESTDIR=${pkgdir} install
   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
 }



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

2014-05-04 Thread Andreas Radke
Date: Sunday, May 4, 2014 @ 10:39:05
  Author: andyrtr
Revision: 211999

upgpkg: xterm 304-1

upstream update 304

Modified:
  xterm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 08:34:39 UTC (rev 211998)
+++ PKGBUILD2014-05-04 08:39:05 UTC (rev 211999)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck alexan...@archlinux.org
 
 pkgname=xterm
-pkgver=303
+pkgver=304
 pkgrel=1
 pkgdesc=X Terminal Emulator
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libxft' 'libxaw' 'ncurses' 'xorg-luit' 'xbitmaps' 'libutempter')
 source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver}.tgz{,.asc}
 LICENSE)
-md5sums=('48f6d49b2b6b6933d501d767cbed9254'
+md5sums=('8a9460d848cf4ed244fcfc9b07d1c3d0'
  'SKIP'
  '10ecc3f8ee91e3189863a172f68282d2')
 



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

2014-05-04 Thread Andreas Radke
Date: Sunday, May 4, 2014 @ 10:39:18
  Author: andyrtr
Revision: 212000

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

Added:
  xterm/repos/extra-i686/LICENSE
(from rev 211999, xterm/trunk/LICENSE)
  xterm/repos/extra-i686/PKGBUILD
(from rev 211999, xterm/trunk/PKGBUILD)
  xterm/repos/extra-x86_64/LICENSE
(from rev 211999, xterm/trunk/LICENSE)
  xterm/repos/extra-x86_64/PKGBUILD
(from rev 211999, xterm/trunk/PKGBUILD)
Deleted:
  xterm/repos/extra-i686/LICENSE
  xterm/repos/extra-i686/PKGBUILD
  xterm/repos/extra-x86_64/LICENSE
  xterm/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |  146 
 /PKGBUILD |  122 
 extra-i686/LICENSE|   73 
 extra-i686/PKGBUILD   |   61 
 extra-x86_64/LICENSE  |   73 
 extra-x86_64/PKGBUILD |   61 
 6 files changed, 268 insertions(+), 268 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2014-05-04 08:39:05 UTC (rev 211999)
+++ extra-i686/LICENSE  2014-05-04 08:39:18 UTC (rev 212000)
@@ -1,73 +0,0 @@
-/***
-
-Copyright 2002-2008,2009 by Thomas E. Dickey
-
-All Rights Reserved
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the
-Software), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name(s) of the above copyright
-holders shall not be used in advertising or otherwise to promote the
-sale, use or other dealings in this Software without prior written
-authorization.
-
-Copyright 1987, 1988  The Open Group
-
-Permission to use, copy, modify, distribute, and sell this software and its
-documentation for any purpose is hereby granted without fee, provided that
-the above copyright notice appear in all copies and that both that
-copyright notice and this permission notice appear in supporting
-documentation.
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
-OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of The Open Group shall not be
-used in advertising or otherwise to promote the sale, use or other dealings
-in this Software without prior written authorization from The Open Group.
-
-Copyright 1987, 1988 by Digital Equipment Corporation, Maynard.
-
-All Rights Reserved
-
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
-provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in
-supporting documentation, and that the name of Digital not be used in
-advertising or publicity pertaining to distribution of the software
-without specific, written prior permission.
-
-DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
-ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
-DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
-ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
-WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
-ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
-SOFTWARE.
-
-**/

Copied: xterm/repos/extra-i686/LICENSE (from rev 

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

2014-05-04 Thread Andrea Scarpino
Date: Sunday, May 4, 2014 @ 11:32:03
  Author: andrea
Revision: 212001

upgpkg: srcpac 0.10.10-1

Upstream release

Modified:
  srcpac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 08:39:18 UTC (rev 212000)
+++ PKGBUILD2014-05-04 09:32:03 UTC (rev 212001)
@@ -3,7 +3,7 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=srcpac
-pkgver=0.10.9
+pkgver=0.10.10
 pkgrel=1
 pkgdesc=The pacman from-source wrapper
 arch=('any')
@@ -13,9 +13,9 @@
 optdepends=('sudo')
 backup=('etc/srcpac.conf')
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('4fec96af4bbd4f773446b05970e2375a')
+md5sums=('847ffbea6e4ed557505ad694421e07f6')
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }



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

2014-05-04 Thread Andrea Scarpino
Date: Sunday, May 4, 2014 @ 11:32:10
  Author: andrea
Revision: 212002

archrelease: copy trunk to extra-any

Added:
  srcpac/repos/extra-any/PKGBUILD
(from rev 212001, srcpac/trunk/PKGBUILD)
Deleted:
  srcpac/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 09:32:03 UTC (rev 212001)
+++ PKGBUILD2014-05-04 09:32:10 UTC (rev 212002)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=srcpac
-pkgver=0.10.9
-pkgrel=1
-pkgdesc=The pacman from-source wrapper
-arch=('any')
-url=http://projects.archlinux.org/srcpac.git/;
-license=('GPL')
-depends=('pacman' 'abs')
-optdepends=('sudo')
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('4fec96af4bbd4f773446b05970e2375a')
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: srcpac/repos/extra-any/PKGBUILD (from rev 212001, srcpac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 09:32:10 UTC (rev 212002)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=srcpac
+pkgver=0.10.10
+pkgrel=1
+pkgdesc=The pacman from-source wrapper
+arch=('any')
+url=http://projects.archlinux.org/srcpac.git/;
+license=('GPL')
+depends=('pacman' 'abs')
+optdepends=('sudo')
+backup=('etc/srcpac.conf')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('847ffbea6e4ed557505ad694421e07f6')
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-04 Thread Alexander Rødseth
Date: Sunday, May 4, 2014 @ 13:54:48
  Author: arodseth
Revision: 110603

upgpkg: terminus-font 4.38-6

Modified:
  terminus-font/trunk/PKGBUILD
  terminus-font/trunk/terminus-font.install

---+
 PKGBUILD  |6 +++---
 terminus-font.install |6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 07:56:54 UTC (rev 110602)
+++ PKGBUILD2014-05-04 11:54:48 UTC (rev 110603)
@@ -7,8 +7,8 @@
 
 pkgname=terminus-font
 pkgver=4.38
-pkgrel=5
-pkgdesc='Superb, monospace bitmap font (for X11 and console)'
+pkgrel=6
+pkgdesc='Monospace bitmap font (for X11 and console)'
 arch=('any')
 url='http://sourceforge.net/projects/terminus-font/'
 license=('GPL2' 'custom:OFL')
@@ -38,7 +38,7 @@
 $pkgdir/etc/fonts/conf.avail/75-yes-terminus.conf
   install -Dm644 $srcdir/$pkgname-$pkgver/OFL.TXT \
 $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  mkdir -p $pkgdir/etc/fonts/conf.d
+  install -d $pkgdir/etc/fonts/conf.d
   cd $pkgdir/etc/fonts/conf.d
   ln -s ../conf.avail/75-yes-terminus.conf .
 }

Modified: terminus-font.install
===
--- terminus-font.install   2014-05-04 07:56:54 UTC (rev 110602)
+++ terminus-font.install   2014-05-04 11:54:48 UTC (rev 110603)
@@ -1,17 +1,17 @@
 post_install() {
-  fc-cache -fs
+  fc-cache -s
   mkfontscale usr/share/fonts/misc
   mkfontdir usr/share/fonts/misc
 }
 
 post_upgrade() {
-  fc-cache -fs
+  fc-cache -s
   mkfontscale usr/share/fonts/misc
   mkfontdir usr/share/fonts/misc
 }
 
 post_remove() {
-  fc-cache -fs
+  fc-cache -s
   mkfontscale usr/share/fonts/misc
   mkfontdir usr/share/fonts/misc
 }



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

2014-05-04 Thread Alexander Rødseth
Date: Sunday, May 4, 2014 @ 13:54:57
  Author: arodseth
Revision: 110604

archrelease: copy trunk to community-any

Added:
  terminus-font/repos/community-any/PKGBUILD
(from rev 110603, terminus-font/trunk/PKGBUILD)
  terminus-font/repos/community-any/terminus-font.install
(from rev 110603, terminus-font/trunk/terminus-font.install)
Deleted:
  terminus-font/repos/community-any/PKGBUILD
  terminus-font/repos/community-any/terminus-font.install

---+
 PKGBUILD  |   92 
 terminus-font.install |   38 +--
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 11:54:48 UTC (rev 110603)
+++ PKGBUILD2014-05-04 11:54:57 UTC (rev 110604)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Vesa Kaihlavirta ve...@iki.fi
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Kristoffer Fossgård k...@online.no
-# Contributor: clonejo clon...@shakik.de
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=terminus-font
-pkgver=4.38
-pkgrel=5
-pkgdesc='Superb, monospace bitmap font (for X11 and console)'
-arch=('any')
-url='http://sourceforge.net/projects/terminus-font/'
-license=('GPL2' 'custom:OFL')
-makedepends=('xorg-bdftopcf' 'fontconfig' 'xorg-mkfontscale' 'xorg-mkfontdir')
-optdepends=('xorg-fonts-alias')
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-install='terminus-font.install'
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('f6f4876a4dabe6a37c270c20bb9e141e38fb50e0bba200e1b9d0470e5eed97b7')
-
-prepare() {
-  chmod +x $pkgname-$pkgver/configure
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr \
---x11dir=/usr/share/fonts/misc \
---psfdir=/usr/share/kbd/consolefonts
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-  install -Dm644 $srcdir/$pkgname-$pkgver/75-yes-terminus.conf \
-$pkgdir/etc/fonts/conf.avail/75-yes-terminus.conf
-  install -Dm644 $srcdir/$pkgname-$pkgver/OFL.TXT \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-  mkdir -p $pkgdir/etc/fonts/conf.d
-  cd $pkgdir/etc/fonts/conf.d
-  ln -s ../conf.avail/75-yes-terminus.conf .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: terminus-font/repos/community-any/PKGBUILD (from rev 110603, 
terminus-font/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 11:54:57 UTC (rev 110604)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Kristoffer Fossgård k...@online.no
+# Contributor: clonejo clon...@shakik.de
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=terminus-font
+pkgver=4.38
+pkgrel=6
+pkgdesc='Monospace bitmap font (for X11 and console)'
+arch=('any')
+url='http://sourceforge.net/projects/terminus-font/'
+license=('GPL2' 'custom:OFL')
+makedepends=('xorg-bdftopcf' 'fontconfig' 'xorg-mkfontscale' 'xorg-mkfontdir')
+optdepends=('xorg-fonts-alias')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+install='terminus-font.install'
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('f6f4876a4dabe6a37c270c20bb9e141e38fb50e0bba200e1b9d0470e5eed97b7')
+
+prepare() {
+  chmod +x $pkgname-$pkgver/configure
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--x11dir=/usr/share/fonts/misc \
+--psfdir=/usr/share/kbd/consolefonts
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+  install -Dm644 $srcdir/$pkgname-$pkgver/75-yes-terminus.conf \
+$pkgdir/etc/fonts/conf.avail/75-yes-terminus.conf
+  install -Dm644 $srcdir/$pkgname-$pkgver/OFL.TXT \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -d $pkgdir/etc/fonts/conf.d
+  cd $pkgdir/etc/fonts/conf.d
+  ln -s ../conf.avail/75-yes-terminus.conf .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: terminus-font.install
===
--- terminus-font.install   2014-05-04 11:54:48 UTC (rev 110603)
+++ terminus-font.install   2014-05-04 11:54:57 UTC (rev 110604)
@@ -1,19 +0,0 @@
-post_install() {
-  fc-cache -fs
-  mkfontscale usr/share/fonts/misc
-  mkfontdir usr/share/fonts/misc
-}
-
-post_upgrade() {
-  fc-cache -fs
-  mkfontscale usr/share/fonts/misc
-  mkfontdir usr/share/fonts/misc
-}
-
-post_remove() {
-  fc-cache -fs
-  mkfontscale usr/share/fonts/misc
-  mkfontdir usr/share/fonts/misc
-}
-
-# vim:set ts=2 sw=2 et:

Copied: terminus-font/repos/community-any/terminus-font.install (from rev 
110603, terminus-font/trunk/terminus-font.install)
===
--- terminus-font.install  

[arch-commits] Commit in (haskell-transformers)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:02:08
  Author: td123
Revision: 212014

remove haskell-transformers since ghc 7.8.2 provides it

Deleted:
  haskell-transformers/



[arch-commits] Commit in (6 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:11:31
  Author: td123
Revision: 110647

extra2community: Moving haskell-http from extra to community

Added:
  haskell-http/
  haskell-http/repos/
  haskell-http/trunk/
  haskell-http/trunk/0001-relax-upper-bound-on-network.patch
  haskell-http/trunk/PKGBUILD
  haskell-http/trunk/haskell-http.install

-+
 0001-relax-upper-bound-on-network.patch |   25 +
 PKGBUILD|   54 ++
 haskell-http.install|   35 +++
 3 files changed, 114 insertions(+)

Added: haskell-http/trunk/0001-relax-upper-bound-on-network.patch
===
--- haskell-http/trunk/0001-relax-upper-bound-on-network.patch  
(rev 0)
+++ haskell-http/trunk/0001-relax-upper-bound-on-network.patch  2014-05-04 
14:11:31 UTC (rev 110647)
@@ -0,0 +1,25 @@
+From 48063198a77c0274ae7d9ba2f50dc4c25ddba99f Mon Sep 17 00:00:00 2001
+From: Thomas Dziedzic gos...@gmail.com
+Date: Fri, 18 Apr 2014 09:40:01 -0700
+Subject: [PATCH] relax upper bound on network
+
+---
+ HTTP.cabal | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/HTTP.cabal b/HTTP.cabal
+index 594e22d..a1b5578 100644
+--- a/HTTP.cabal
 b/HTTP.cabal
+@@ -85,7 +85,7 @@ Library
+  Network.HTTP.Utils
+  Paths_HTTP
+   GHC-options: -fwarn-missing-signatures -Wall
+-  Build-depends: base = 2   4.8, network  2.5, parsec
++  Build-depends: base = 2   4.8, network  2.6, parsec
+   Extensions: FlexibleInstances
+   if flag(old-base)
+ Build-depends: base  3
+-- 
+1.9.2
+

Added: haskell-http/trunk/PKGBUILD
===
--- haskell-http/trunk/PKGBUILD (rev 0)
+++ haskell-http/trunk/PKGBUILD 2014-05-04 14:11:31 UTC (rev 110647)
@@ -0,0 +1,54 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.2.12
+pkgrel=2
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-network=2.5.0.0-1' 
'haskell-parsec=3.1.5-2' 'haskell-mtl=2.1.3.1-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+'0001-relax-upper-bound-on-network.patch')
+install=${pkgname}.install
+md5sums=('cd69429866439890353ec98100e3ba32'
+ '490004d105b18535bb6c77ec2566053e')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  # fixes https://github.com/haskell/HTTP/issues/55
+  patch -Np1 -i ${srcdir}/0001-relax-upper-bound-on-network.patch
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}


Property changes on: haskell-http/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-http/trunk/haskell-http.install
===
--- haskell-http/trunk/haskell-http.install (rev 0)
+++ haskell-http/trunk/haskell-http.install 2014-05-04 14:11:31 UTC (rev 
110647)
@@ -0,0 +1,35 @@
+pkgname=haskell-http
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:12:07
  Author: td123
Revision: 110648

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

Added:
  haskell-http/repos/community-i686/
  haskell-http/repos/community-i686/0001-relax-upper-bound-on-network.patch
(from rev 110647, 
haskell-http/trunk/0001-relax-upper-bound-on-network.patch)
  haskell-http/repos/community-i686/PKGBUILD
(from rev 110647, haskell-http/trunk/PKGBUILD)
  haskell-http/repos/community-i686/haskell-http.install
(from rev 110647, haskell-http/trunk/haskell-http.install)
  haskell-http/repos/community-x86_64/
  haskell-http/repos/community-x86_64/0001-relax-upper-bound-on-network.patch
(from rev 110647, 
haskell-http/trunk/0001-relax-upper-bound-on-network.patch)
  haskell-http/repos/community-x86_64/PKGBUILD
(from rev 110647, haskell-http/trunk/PKGBUILD)
  haskell-http/repos/community-x86_64/haskell-http.install
(from rev 110647, haskell-http/trunk/haskell-http.install)

--+
 community-i686/0001-relax-upper-bound-on-network.patch   |   25 ++
 community-i686/PKGBUILD  |   54 +
 community-i686/haskell-http.install  |   35 
 community-x86_64/0001-relax-upper-bound-on-network.patch |   25 ++
 community-x86_64/PKGBUILD|   54 +
 community-x86_64/haskell-http.install|   35 
 6 files changed, 228 insertions(+)

Copied: 
haskell-http/repos/community-i686/0001-relax-upper-bound-on-network.patch (from 
rev 110647, haskell-http/trunk/0001-relax-upper-bound-on-network.patch)
===
--- community-i686/0001-relax-upper-bound-on-network.patch  
(rev 0)
+++ community-i686/0001-relax-upper-bound-on-network.patch  2014-05-04 
14:12:07 UTC (rev 110648)
@@ -0,0 +1,25 @@
+From 48063198a77c0274ae7d9ba2f50dc4c25ddba99f Mon Sep 17 00:00:00 2001
+From: Thomas Dziedzic gos...@gmail.com
+Date: Fri, 18 Apr 2014 09:40:01 -0700
+Subject: [PATCH] relax upper bound on network
+
+---
+ HTTP.cabal | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/HTTP.cabal b/HTTP.cabal
+index 594e22d..a1b5578 100644
+--- a/HTTP.cabal
 b/HTTP.cabal
+@@ -85,7 +85,7 @@ Library
+  Network.HTTP.Utils
+  Paths_HTTP
+   GHC-options: -fwarn-missing-signatures -Wall
+-  Build-depends: base = 2   4.8, network  2.5, parsec
++  Build-depends: base = 2   4.8, network  2.6, parsec
+   Extensions: FlexibleInstances
+   if flag(old-base)
+ Build-depends: base  3
+-- 
+1.9.2
+

Copied: haskell-http/repos/community-i686/PKGBUILD (from rev 110647, 
haskell-http/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:12:07 UTC (rev 110648)
@@ -0,0 +1,54 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.2.12
+pkgrel=2
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-network=2.5.0.0-1' 
'haskell-parsec=3.1.5-2' 'haskell-mtl=2.1.3.1-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+'0001-relax-upper-bound-on-network.patch')
+install=${pkgname}.install
+md5sums=('cd69429866439890353ec98100e3ba32'
+ '490004d105b18535bb6c77ec2566053e')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  # fixes https://github.com/haskell/HTTP/issues/55
+  patch -Np1 -i ${srcdir}/0001-relax-upper-bound-on-network.patch
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: haskell-http/repos/community-i686/haskell-http.install (from rev 
110647, haskell-http/trunk/haskell-http.install)

[arch-commits] Commit in (haskell-http)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:12:43
  Author: td123
Revision: 212017

extra2community: Moving haskell-http from extra to community

Deleted:
  haskell-http/



[arch-commits] Commit in (5 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:13:08
  Author: td123
Revision: 110649

extra2community: Moving haskell-mtl from extra to community

Added:
  haskell-mtl/
  haskell-mtl/repos/
  haskell-mtl/trunk/
  haskell-mtl/trunk/PKGBUILD
  haskell-mtl/trunk/haskell-mtl.install

-+
 PKGBUILD|   50 ++
 haskell-mtl.install |   35 +++
 2 files changed, 85 insertions(+)

Added: haskell-mtl/trunk/PKGBUILD
===
--- haskell-mtl/trunk/PKGBUILD  (rev 0)
+++ haskell-mtl/trunk/PKGBUILD  2014-05-04 14:13:08 UTC (rev 110649)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=mtl
+pkgname=haskell-mtl
+pkgver=2.1.3.1
+pkgrel=2
+pkgdesc=Monad classes, using functional dependencies
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('8f3927677bf3e0efb6fcce08b1be2eac')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+


Property changes on: haskell-mtl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-mtl/trunk/haskell-mtl.install
===
--- haskell-mtl/trunk/haskell-mtl.install   (rev 0)
+++ haskell-mtl/trunk/haskell-mtl.install   2014-05-04 14:13:08 UTC (rev 
110649)
@@ -0,0 +1,35 @@
+pkgname=haskell-mtl
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:13:36
  Author: td123
Revision: 110650

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

Added:
  haskell-mtl/repos/community-i686/
  haskell-mtl/repos/community-i686/PKGBUILD
(from rev 110649, haskell-mtl/trunk/PKGBUILD)
  haskell-mtl/repos/community-i686/haskell-mtl.install
(from rev 110649, haskell-mtl/trunk/haskell-mtl.install)
  haskell-mtl/repos/community-x86_64/
  haskell-mtl/repos/community-x86_64/PKGBUILD
(from rev 110649, haskell-mtl/trunk/PKGBUILD)
  haskell-mtl/repos/community-x86_64/haskell-mtl.install
(from rev 110649, haskell-mtl/trunk/haskell-mtl.install)

--+
 community-i686/PKGBUILD  |   50 +
 community-i686/haskell-mtl.install   |   35 +++
 community-x86_64/PKGBUILD|   50 +
 community-x86_64/haskell-mtl.install |   35 +++
 4 files changed, 170 insertions(+)

Copied: haskell-mtl/repos/community-i686/PKGBUILD (from rev 110649, 
haskell-mtl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:13:36 UTC (rev 110650)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=mtl
+pkgname=haskell-mtl
+pkgver=2.1.3.1
+pkgrel=2
+pkgdesc=Monad classes, using functional dependencies
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('8f3927677bf3e0efb6fcce08b1be2eac')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-mtl/repos/community-i686/haskell-mtl.install (from rev 110649, 
haskell-mtl/trunk/haskell-mtl.install)
===
--- community-i686/haskell-mtl.install  (rev 0)
+++ community-i686/haskell-mtl.install  2014-05-04 14:13:36 UTC (rev 110650)
@@ -0,0 +1,35 @@
+pkgname=haskell-mtl
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-mtl/repos/community-x86_64/PKGBUILD (from rev 110649, 
haskell-mtl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-04 14:13:36 UTC (rev 110650)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=mtl
+pkgname=haskell-mtl
+pkgver=2.1.3.1
+pkgrel=2
+pkgdesc=Monad classes, using functional dependencies
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('8f3927677bf3e0efb6fcce08b1be2eac')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  

[arch-commits] Commit in (haskell-mtl)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:14:16
  Author: td123
Revision: 212020

extra2community: Moving haskell-mtl from extra to community

Deleted:
  haskell-mtl/



[arch-commits] Commit in (5 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:14:35
  Author: td123
Revision: 110651

extra2community: Moving haskell-network from extra to community

Added:
  haskell-network/
  haskell-network/repos/
  haskell-network/trunk/
  haskell-network/trunk/PKGBUILD
  haskell-network/trunk/haskell-network.install

-+
 PKGBUILD|   50 ++
 haskell-network.install |   35 
 2 files changed, 85 insertions(+)

Added: haskell-network/trunk/PKGBUILD
===
--- haskell-network/trunk/PKGBUILD  (rev 0)
+++ haskell-network/trunk/PKGBUILD  2014-05-04 14:14:35 UTC (rev 110651)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=network
+pkgname=haskell-network
+pkgver=2.5.0.0
+pkgrel=1
+pkgdesc=Low-level networking interface
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-parsec=3.1.5-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('ce4a584d3c04905b88275a156273dac6')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+


Property changes on: haskell-network/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-network/trunk/haskell-network.install
===
--- haskell-network/trunk/haskell-network.install   
(rev 0)
+++ haskell-network/trunk/haskell-network.install   2014-05-04 14:14:35 UTC 
(rev 110651)
@@ -0,0 +1,35 @@
+pkgname=haskell-network
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:15:20
  Author: td123
Revision: 110652

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

Added:
  haskell-network/repos/community-i686/
  haskell-network/repos/community-i686/PKGBUILD
(from rev 110651, haskell-network/trunk/PKGBUILD)
  haskell-network/repos/community-i686/haskell-network.install
(from rev 110651, haskell-network/trunk/haskell-network.install)
  haskell-network/repos/community-x86_64/
  haskell-network/repos/community-x86_64/PKGBUILD
(from rev 110651, haskell-network/trunk/PKGBUILD)
  haskell-network/repos/community-x86_64/haskell-network.install
(from rev 110651, haskell-network/trunk/haskell-network.install)

--+
 community-i686/PKGBUILD  |   50 +
 community-i686/haskell-network.install   |   35 
 community-x86_64/PKGBUILD|   50 +
 community-x86_64/haskell-network.install |   35 
 4 files changed, 170 insertions(+)

Copied: haskell-network/repos/community-i686/PKGBUILD (from rev 110651, 
haskell-network/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:15:20 UTC (rev 110652)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=network
+pkgname=haskell-network
+pkgver=2.5.0.0
+pkgrel=1
+pkgdesc=Low-level networking interface
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-parsec=3.1.5-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('ce4a584d3c04905b88275a156273dac6')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-network/repos/community-i686/haskell-network.install (from rev 
110651, haskell-network/trunk/haskell-network.install)
===
--- community-i686/haskell-network.install  (rev 0)
+++ community-i686/haskell-network.install  2014-05-04 14:15:20 UTC (rev 
110652)
@@ -0,0 +1,35 @@
+pkgname=haskell-network
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-network/repos/community-x86_64/PKGBUILD (from rev 110651, 
haskell-network/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-04 14:15:20 UTC (rev 110652)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=network
+pkgname=haskell-network
+pkgver=2.5.0.0
+pkgrel=1
+pkgdesc=Low-level networking interface
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-parsec=3.1.5-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('ce4a584d3c04905b88275a156273dac6')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell 

[arch-commits] Commit in (5 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:16:21
  Author: td123
Revision: 110653

extra2community: Moving haskell-parsec from extra to community

Added:
  haskell-parsec/
  haskell-parsec/repos/
  haskell-parsec/trunk/
  haskell-parsec/trunk/PKGBUILD
  haskell-parsec/trunk/haskell-parsec.install

+
 PKGBUILD   |   50 +++
 haskell-parsec.install |   35 
 2 files changed, 85 insertions(+)

Added: haskell-parsec/trunk/PKGBUILD
===
--- haskell-parsec/trunk/PKGBUILD   (rev 0)
+++ haskell-parsec/trunk/PKGBUILD   2014-05-04 14:16:21 UTC (rev 110653)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=parsec
+pkgname=haskell-parsec
+pkgver=3.1.5
+pkgrel=2
+pkgdesc=Monadic parser combinators
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-mtl=2.1.3.1-2' 'haskell-text=1.1.0.1-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('00e822decff17a034a68c462d2a3e099')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+


Property changes on: haskell-parsec/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-parsec/trunk/haskell-parsec.install
===
--- haskell-parsec/trunk/haskell-parsec.install (rev 0)
+++ haskell-parsec/trunk/haskell-parsec.install 2014-05-04 14:16:21 UTC (rev 
110653)
@@ -0,0 +1,35 @@
+pkgname=haskell-parsec
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



[arch-commits] Commit in (haskell-network)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:15:56
  Author: td123
Revision: 212023

extra2community: Moving haskell-network from extra to community

Deleted:
  haskell-network/



[arch-commits] Commit in (haskell-parsec)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:17:25
  Author: td123
Revision: 212026

extra2community: Moving haskell-parsec from extra to community

Deleted:
  haskell-parsec/



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:16:49
  Author: td123
Revision: 110654

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

Added:
  haskell-parsec/repos/community-i686/
  haskell-parsec/repos/community-i686/PKGBUILD
(from rev 110653, haskell-parsec/trunk/PKGBUILD)
  haskell-parsec/repos/community-i686/haskell-parsec.install
(from rev 110653, haskell-parsec/trunk/haskell-parsec.install)
  haskell-parsec/repos/community-x86_64/
  haskell-parsec/repos/community-x86_64/PKGBUILD
(from rev 110653, haskell-parsec/trunk/PKGBUILD)
  haskell-parsec/repos/community-x86_64/haskell-parsec.install
(from rev 110653, haskell-parsec/trunk/haskell-parsec.install)

-+
 community-i686/PKGBUILD |   50 ++
 community-i686/haskell-parsec.install   |   35 +
 community-x86_64/PKGBUILD   |   50 ++
 community-x86_64/haskell-parsec.install |   35 +
 4 files changed, 170 insertions(+)

Copied: haskell-parsec/repos/community-i686/PKGBUILD (from rev 110653, 
haskell-parsec/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:16:49 UTC (rev 110654)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=parsec
+pkgname=haskell-parsec
+pkgver=3.1.5
+pkgrel=2
+pkgdesc=Monadic parser combinators
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-mtl=2.1.3.1-2' 'haskell-text=1.1.0.1-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('00e822decff17a034a68c462d2a3e099')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-parsec/repos/community-i686/haskell-parsec.install (from rev 
110653, haskell-parsec/trunk/haskell-parsec.install)
===
--- community-i686/haskell-parsec.install   (rev 0)
+++ community-i686/haskell-parsec.install   2014-05-04 14:16:49 UTC (rev 
110654)
@@ -0,0 +1,35 @@
+pkgname=haskell-parsec
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-parsec/repos/community-x86_64/PKGBUILD (from rev 110653, 
haskell-parsec/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-04 14:16:49 UTC (rev 110654)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=parsec
+pkgname=haskell-parsec
+pkgver=3.1.5
+pkgrel=2
+pkgdesc=Monadic parser combinators
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'haskell-mtl=2.1.3.1-2' 'haskell-text=1.1.0.1-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('00e822decff17a034a68c462d2a3e099')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  

[arch-commits] Commit in (5 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:17:43
  Author: td123
Revision: 110655

extra2community: Moving haskell-random from extra to community

Added:
  haskell-random/
  haskell-random/repos/
  haskell-random/trunk/
  haskell-random/trunk/PKGBUILD
  haskell-random/trunk/haskell-random.install

+
 PKGBUILD   |   50 +++
 haskell-random.install |   35 
 2 files changed, 85 insertions(+)

Added: haskell-random/trunk/PKGBUILD
===
--- haskell-random/trunk/PKGBUILD   (rev 0)
+++ haskell-random/trunk/PKGBUILD   2014-05-04 14:17:43 UTC (rev 110655)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=random
+pkgname=haskell-random
+pkgver=1.0.1.1
+pkgrel=7
+pkgdesc=random number library
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('9a249cfa7ff6793cbf2be06e9fcd7538')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+


Property changes on: haskell-random/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-random/trunk/haskell-random.install
===
--- haskell-random/trunk/haskell-random.install (rev 0)
+++ haskell-random/trunk/haskell-random.install 2014-05-04 14:17:43 UTC (rev 
110655)
@@ -0,0 +1,35 @@
+pkgname=haskell-random
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 16:17:36
  Author: fyan
Revision: 212027

upgpkg: python-setuptools 3.5.1-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 14:17:25 UTC (rev 212026)
+++ PKGBUILD2014-05-04 14:17:36 UTC (rev 212027)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=3.5
+pkgver=3.5.1
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python' 'python2')
 checkdepends=('python-pytest' 'python2-pytest')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-md5sums=('58da1bcbf0d648571ae49d4988879da5')
+md5sums=('d0447ca5adeeac93ef43931c395788c3')
 
 check() {
   # Disabled python 3.x tests for = 3.4.1:



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:18:13
  Author: td123
Revision: 110656

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

Added:
  haskell-random/repos/community-i686/
  haskell-random/repos/community-i686/PKGBUILD
(from rev 110655, haskell-random/trunk/PKGBUILD)
  haskell-random/repos/community-i686/haskell-random.install
(from rev 110655, haskell-random/trunk/haskell-random.install)
  haskell-random/repos/community-x86_64/
  haskell-random/repos/community-x86_64/PKGBUILD
(from rev 110655, haskell-random/trunk/PKGBUILD)
  haskell-random/repos/community-x86_64/haskell-random.install
(from rev 110655, haskell-random/trunk/haskell-random.install)

-+
 community-i686/PKGBUILD |   50 ++
 community-i686/haskell-random.install   |   35 +
 community-x86_64/PKGBUILD   |   50 ++
 community-x86_64/haskell-random.install |   35 +
 4 files changed, 170 insertions(+)

Copied: haskell-random/repos/community-i686/PKGBUILD (from rev 110655, 
haskell-random/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:18:13 UTC (rev 110656)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=random
+pkgname=haskell-random
+pkgver=1.0.1.1
+pkgrel=7
+pkgdesc=random number library
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('9a249cfa7ff6793cbf2be06e9fcd7538')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-random/repos/community-i686/haskell-random.install (from rev 
110655, haskell-random/trunk/haskell-random.install)
===
--- community-i686/haskell-random.install   (rev 0)
+++ community-i686/haskell-random.install   2014-05-04 14:18:13 UTC (rev 
110656)
@@ -0,0 +1,35 @@
+pkgname=haskell-random
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-random/repos/community-x86_64/PKGBUILD (from rev 110655, 
haskell-random/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-04 14:18:13 UTC (rev 110656)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=random
+pkgname=haskell-random
+pkgver=1.0.1.1
+pkgrel=7
+pkgdesc=random number library
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('9a249cfa7ff6793cbf2be06e9fcd7538')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | 

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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 16:18:16
  Author: fyan
Revision: 212028

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 212027, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 14:17:36 UTC (rev 212027)
+++ PKGBUILD2014-05-04 14:18:16 UTC (rev 212028)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=3.5
-pkgrel=1
-pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
-arch=('any')
-license=('PSF')
-url=http://pypi.python.org/pypi/setuptools;
-makedepends=('python' 'python2')
-checkdepends=('python-pytest' 'python2-pytest')
-source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-md5sums=('58da1bcbf0d648571ae49d4988879da5')
-
-check() {
-  # Disabled python 3.x tests for = 3.4.1:
-  # https://bitbucket.org/pypa/setuptools/issue/180/34-release-fails-tests
-
-  # Check python3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py test || :
-
-  # Check python2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py test
-}
- 
-prepare() {
-  cp -a setuptools-${pkgver}{,-python2}
-
-  cd ${srcdir}/setuptools-${pkgver}
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
-}
-
-build() {
-  # Build python 3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py build
-
-  # Build python 2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py build
-}
- 
-package_python-setuptools() {
-  depends=('python=3.4')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2=2.7')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-  rm ${pkgdir}/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 212027, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 14:18:16 UTC (rev 212028)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=3.5.1
+pkgrel=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+checkdepends=('python-pytest' 'python2-pytest')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
+md5sums=('d0447ca5adeeac93ef43931c395788c3')
+
+check() {
+  # Disabled python 3.x tests for = 3.4.1:
+  # https://bitbucket.org/pypa/setuptools/issue/180/34-release-fails-tests
+
+  # Check python3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py test || :
+
+  # Check python2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  python2 setup.py test
+}
+ 
+prepare() {
+  cp -a setuptools-${pkgver}{,-python2}
+
+  cd ${srcdir}/setuptools-${pkgver}
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+  # Build python 3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py build
+
+  # Build python 2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  python2 setup.py build
+}
+ 
+package_python-setuptools() {
+  depends=('python=3.4')
+  provides=('python-distribute')
+  replaces=('python-distribute')
+
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 

[arch-commits] Commit in (haskell-random)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:18:48
  Author: td123
Revision: 212031

extra2community: Moving haskell-random from extra to community

Deleted:
  haskell-random/



[arch-commits] Commit in (5 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:19:08
  Author: td123
Revision: 110657

extra2community: Moving haskell-text from extra to community

Added:
  haskell-text/
  haskell-text/repos/
  haskell-text/trunk/
  haskell-text/trunk/PKGBUILD
  haskell-text/trunk/haskell-text.install

--+
 PKGBUILD |   50 +
 haskell-text.install |   35 ++
 2 files changed, 85 insertions(+)

Added: haskell-text/trunk/PKGBUILD
===
--- haskell-text/trunk/PKGBUILD (rev 0)
+++ haskell-text/trunk/PKGBUILD 2014-05-04 14:19:08 UTC (rev 110657)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=text
+pkgname=haskell-text
+pkgver=1.1.0.1
+pkgrel=2
+pkgdesc=An efficient packed Unicode text type.
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('e8e1017ed0f0fef2a872569d8f31883e')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+


Property changes on: haskell-text/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-text/trunk/haskell-text.install
===
--- haskell-text/trunk/haskell-text.install (rev 0)
+++ haskell-text/trunk/haskell-text.install 2014-05-04 14:19:08 UTC (rev 
110657)
@@ -0,0 +1,35 @@
+pkgname=haskell-text
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:19:36
  Author: td123
Revision: 110658

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

Added:
  haskell-text/repos/community-i686/
  haskell-text/repos/community-i686/PKGBUILD
(from rev 110657, haskell-text/trunk/PKGBUILD)
  haskell-text/repos/community-i686/haskell-text.install
(from rev 110657, haskell-text/trunk/haskell-text.install)
  haskell-text/repos/community-x86_64/
  haskell-text/repos/community-x86_64/PKGBUILD
(from rev 110657, haskell-text/trunk/PKGBUILD)
  haskell-text/repos/community-x86_64/haskell-text.install
(from rev 110657, haskell-text/trunk/haskell-text.install)

---+
 community-i686/PKGBUILD   |   50 
 community-i686/haskell-text.install   |   35 ++
 community-x86_64/PKGBUILD |   50 
 community-x86_64/haskell-text.install |   35 ++
 4 files changed, 170 insertions(+)

Copied: haskell-text/repos/community-i686/PKGBUILD (from rev 110657, 
haskell-text/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:19:36 UTC (rev 110658)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=text
+pkgname=haskell-text
+pkgver=1.1.0.1
+pkgrel=2
+pkgdesc=An efficient packed Unicode text type.
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('e8e1017ed0f0fef2a872569d8f31883e')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-text/repos/community-i686/haskell-text.install (from rev 
110657, haskell-text/trunk/haskell-text.install)
===
--- community-i686/haskell-text.install (rev 0)
+++ community-i686/haskell-text.install 2014-05-04 14:19:36 UTC (rev 110658)
@@ -0,0 +1,35 @@
+pkgname=haskell-text
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-text/repos/community-x86_64/PKGBUILD (from rev 110657, 
haskell-text/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-04 14:19:36 UTC (rev 110658)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=text
+pkgname=haskell-text
+pkgver=1.1.0.1
+pkgrel=2
+pkgdesc=An efficient packed Unicode text type.
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('e8e1017ed0f0fef2a872569d8f31883e')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd 

[arch-commits] Commit in (haskell-text)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:20:17
  Author: td123
Revision: 212034

extra2community: Moving haskell-text from extra to community

Deleted:
  haskell-text/



[arch-commits] Commit in (5 files)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:20:36
  Author: td123
Revision: 110659

extra2community: Moving haskell-zlib from extra to community

Added:
  haskell-zlib/
  haskell-zlib/repos/
  haskell-zlib/trunk/
  haskell-zlib/trunk/PKGBUILD
  haskell-zlib/trunk/haskell-zlib.install

--+
 PKGBUILD |   50 +
 haskell-zlib.install |   35 ++
 2 files changed, 85 insertions(+)

Added: haskell-zlib/trunk/PKGBUILD
===
--- haskell-zlib/trunk/PKGBUILD (rev 0)
+++ haskell-zlib/trunk/PKGBUILD 2014-05-04 14:20:36 UTC (rev 110659)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=zlib
+pkgname=haskell-zlib
+pkgver=0.5.4.1
+pkgrel=3
+pkgdesc=Compression and decompression in the gzip and zlib formats
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'zlib')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('d0d10786d2bbd1d401a8b28a83e88475')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+


Property changes on: haskell-zlib/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-zlib/trunk/haskell-zlib.install
===
--- haskell-zlib/trunk/haskell-zlib.install (rev 0)
+++ haskell-zlib/trunk/haskell-zlib.install 2014-05-04 14:20:36 UTC (rev 
110659)
@@ -0,0 +1,35 @@
+pkgname=haskell-zlib
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:21:04
  Author: td123
Revision: 110660

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

Added:
  haskell-zlib/repos/community-i686/
  haskell-zlib/repos/community-i686/PKGBUILD
(from rev 110659, haskell-zlib/trunk/PKGBUILD)
  haskell-zlib/repos/community-i686/haskell-zlib.install
(from rev 110659, haskell-zlib/trunk/haskell-zlib.install)
  haskell-zlib/repos/community-x86_64/
  haskell-zlib/repos/community-x86_64/PKGBUILD
(from rev 110659, haskell-zlib/trunk/PKGBUILD)
  haskell-zlib/repos/community-x86_64/haskell-zlib.install
(from rev 110659, haskell-zlib/trunk/haskell-zlib.install)

---+
 community-i686/PKGBUILD   |   50 
 community-i686/haskell-zlib.install   |   35 ++
 community-x86_64/PKGBUILD |   50 
 community-x86_64/haskell-zlib.install |   35 ++
 4 files changed, 170 insertions(+)

Copied: haskell-zlib/repos/community-i686/PKGBUILD (from rev 110659, 
haskell-zlib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 14:21:04 UTC (rev 110660)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=zlib
+pkgname=haskell-zlib
+pkgver=0.5.4.1
+pkgrel=3
+pkgdesc=Compression and decompression in the gzip and zlib formats
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'zlib')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('d0d10786d2bbd1d401a8b28a83e88475')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${_hkgname}-${pkgver}
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+
+  runhaskell Setup copy --destdir=${pkgdir}
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-zlib/repos/community-i686/haskell-zlib.install (from rev 
110659, haskell-zlib/trunk/haskell-zlib.install)
===
--- community-i686/haskell-zlib.install (rev 0)
+++ community-i686/haskell-zlib.install 2014-05-04 14:21:04 UTC (rev 110660)
@@ -0,0 +1,35 @@
+pkgname=haskell-zlib
+
+_register() {
+  usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+  usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+  _register
+  _gen_contents
+}
+
+pre_upgrade() {
+  _unregister
+}
+
+post_upgrade() {
+  _register
+  _gen_contents
+}
+
+pre_remove() {
+  _unregister
+}
+
+post_remove() {
+  _gen_contents
+}

Copied: haskell-zlib/repos/community-x86_64/PKGBUILD (from rev 110659, 
haskell-zlib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-04 14:21:04 UTC (rev 110660)
@@ -0,0 +1,50 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+
+_hkgname=zlib
+pkgname=haskell-zlib
+pkgver=0.5.4.1
+pkgrel=3
+pkgdesc=Compression and decompression in the gzip and zlib formats
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.2-2' 'sh' 'zlib')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('d0d10786d2bbd1d401a8b28a83e88475')
+
+build() {
+  cd ${_hkgname}-${pkgver}
+
+  runhaskell Setup configure -O -p \
+--enable-split-objs \
+--enable-shared \
+--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+
+  runhaskell Setup build
+
+  runhaskell Setup haddock
+
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' 

[arch-commits] Commit in (haskell-zlib)

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:21:38
  Author: td123
Revision: 212037

extra2community: Moving haskell-zlib from extra to community

Deleted:
  haskell-zlib/



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:42:48
  Author: td123
Revision: 212038

upgpkg: vim 7.4.274-1

bump

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 14:21:38 UTC (rev 212037)
+++ PKGBUILD2014-05-04 14:42:48 UTC (rev 212038)
@@ -6,8 +6,8 @@
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
 _topver=7.4
-_patchlevel=214
-__hgrev=d2ef98a43b5d
+_patchlevel=274
+__hgrev=075eea398fff
 _versiondir=vim${_topver//./}
 pkgver=${_topver}.${_patchlevel}
 pkgrel=1
@@ -20,7 +20,7 @@
 'vimrc'
 'archlinux.vim'
 'gvim.desktop')
-md5sums=('5ec7d7f84955dacfef88e52ebc79b267'
+md5sums=('98bf9f8d57b95715d08fcc42beae8761'
  'SKIP'
  'b9d4dcb9d3ee2e151dc4be1e94934f6a'
  '10353a61aadc3f276692d0e17db1478e'



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

2014-05-04 Thread Thomas Dziedzic
Date: Sunday, May 4, 2014 @ 16:43:45
  Author: td123
Revision: 212039

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

Added:
  vim/repos/testing-i686/
  vim/repos/testing-i686/PKGBUILD
(from rev 212038, vim/trunk/PKGBUILD)
  vim/repos/testing-i686/archlinux.vim
(from rev 212038, vim/trunk/archlinux.vim)
  vim/repos/testing-i686/gvim.desktop
(from rev 212038, vim/trunk/gvim.desktop)
  vim/repos/testing-i686/gvim.install
(from rev 212038, vim/trunk/gvim.install)
  vim/repos/testing-i686/vimrc
(from rev 212038, vim/trunk/vimrc)
  vim/repos/testing-x86_64/
  vim/repos/testing-x86_64/PKGBUILD
(from rev 212038, vim/trunk/PKGBUILD)
  vim/repos/testing-x86_64/archlinux.vim
(from rev 212038, vim/trunk/archlinux.vim)
  vim/repos/testing-x86_64/gvim.desktop
(from rev 212038, vim/trunk/gvim.desktop)
  vim/repos/testing-x86_64/gvim.install
(from rev 212038, vim/trunk/gvim.install)
  vim/repos/testing-x86_64/vimrc
(from rev 212038, vim/trunk/vimrc)

--+
 testing-i686/PKGBUILD|  227 +
 testing-i686/archlinux.vim   |   26 
 testing-i686/gvim.desktop|   63 +++
 testing-i686/gvim.install|   11 +
 testing-i686/vimrc   |   16 ++
 testing-x86_64/PKGBUILD  |  227 +
 testing-x86_64/archlinux.vim |   26 
 testing-x86_64/gvim.desktop  |   63 +++
 testing-x86_64/gvim.install  |   11 +
 testing-x86_64/vimrc |   16 ++
 10 files changed, 686 insertions(+)

Copied: vim/repos/testing-i686/PKGBUILD (from rev 212038, vim/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-04 14:43:45 UTC (rev 212039)
@@ -0,0 +1,227 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgbase=vim
+pkgname=('vim' 'gvim' 'vim-runtime')
+_topver=7.4
+_patchlevel=274
+__hgrev=075eea398fff
+_versiondir=vim${_topver//./}
+pkgver=${_topver}.${_patchlevel}
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('custom:vim')
+url=http://www.vim.org;
+makedepends=('gpm' 'python2' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2' 'lua')
+source=(ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz;
+ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig;
+'vimrc'
+'archlinux.vim'
+'gvim.desktop')
+md5sums=('98bf9f8d57b95715d08fcc42beae8761'
+ 'SKIP'
+ 'b9d4dcb9d3ee2e151dc4be1e94934f6a'
+ '10353a61aadc3f276692d0e17db1478e'
+ 'd90413bd21f400313a785bb4010120cd')
+
+# source PKGBUILD  mksource
+mksource() {
+  [[ -x /usr/bin/hg ]] || (echo hg not found. Install mercurial.  return 1)
+
+  __hgroot='http://vim.googlecode.com/hg/'
+  __hgrepo='vim'
+  __hgbranch='default'
+
+  hg clone -b ${__hgbranch} -u ${__hgrev} ${__hgroot}${__hgrepo} ${__hgrepo}
+
+  pushd ${__hgrepo}
+  if (( $(hg id -n)  $(hg id -nr ${__hgbranch}) )); then
+printf 'You are not building the latest revision!\n'
+printf Consider updating __hgrev to $(hg id -r ${__hgbranch}).\n
+  fi
+  popd
+
+  mv vim ${pkgname}-${pkgver}
+  find ${pkgname}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \;
+  rm ${pkgname}-${pkgver}/{.hgignore,.hgtags}
+  tar -cJf ${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
+  rm -r ${pkgname}-${pkgver}
+
+  gpg --detach-sign ${pkgname}-${pkgver}.tar.xz
+
+  scp ${pkgname}-${pkgver}.tar.xz nym:/srv/ftp/other/vim/
+  scp ${pkgname}-${pkgver}.tar.xz.sig nym:/srv/ftp/other/vim/
+}
+
+build() {
+  cp -a ${pkgname}-${pkgver} vim-build
+
+  # define the place for the global (g)vimrc file (set to /etc/vimrc)
+  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*\) .*$|\1|' \
+vim-build/src/feature.h
+  sed -i 's|^.*\(#define VIMRC_FILE.*\) .*$|\1|' \
+vim-build/src/feature.h
+
+  (cd vim-build/src  autoconf)
+
+  cp -a vim-build gvim-build
+
+  cd ${srcdir}/vim-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--disable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--disable-python3interp \
+--disable-rubyinterp \
+--disable-luainterp
+
+  make
+
+  cd ${srcdir}/gvim-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=yes \
+--enable-gui=gtk2 \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp \
+--enable-pythoninterp \
+

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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 17:27:05
  Author: fyan
Revision: 110661

upgpkg: jenkins 1.562-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 14:21:04 UTC (rev 110660)
+++ PKGBUILD2014-05-04 15:27:05 UTC (rev 110661)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.561
+pkgver=1.562
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('3485b934dc55311bbb62c7efb717213f10d9b9458d0b56a0de3b37fc632838f4c39fe400e9358221945cfaa862727cb4454a727df629a1cefa271db4a765d9e3'
+sha512sums=('263c10c7a466a5670a9f55f95491488c59ff7b1f593c86fc71bbe8dfb1a98b798394039c18722e40e65942c3f153fe90e10dafa70fa2d42f1aa75fee828a7332'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'



[arch-commits] Commit in jenkins/repos/community-any (12 files)

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 17:28:10
  Author: fyan
Revision: 110662

archrelease: copy trunk to community-any

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

+
 LICENSE|   46 ++--
 PKGBUILD   |   84 ++---
 jenkins.conf   |   26 +--
 jenkins.install|  114 +--
 jenkins.service|   48 ++---
 jenkins.tmpfiles.d |4 -
 6 files changed, 161 insertions(+), 161 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 15:27:05 UTC (rev 110661)
+++ PKGBUILD2014-05-04 15:28:10 UTC (rev 110662)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Marcel Huber marcelhuberfoo at gmail dott com
-# Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
-
-pkgname=jenkins
-pkgver=1.561
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=('jenkins.war')

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

2014-05-04 Thread Giovanni Scafora
Date: Sunday, May 4, 2014 @ 18:12:39
  Author: giovanni
Revision: 212041

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

Added:
  mercurial/repos/extra-i686/PKGBUILD
(from rev 212040, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-i686/mercurial.profile
(from rev 212040, mercurial/trunk/mercurial.profile)
  mercurial/repos/extra-x86_64/PKGBUILD
(from rev 212040, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-x86_64/mercurial.profile
(from rev 212040, mercurial/trunk/mercurial.profile)
Deleted:
  mercurial/repos/extra-i686/PKGBUILD
  mercurial/repos/extra-i686/mercurial.profile
  mercurial/repos/extra-x86_64/PKGBUILD
  mercurial/repos/extra-x86_64/mercurial.profile

+
 /PKGBUILD  |  100 +++
 /mercurial.profile |2 
 extra-i686/PKGBUILD|   50 ---
 extra-i686/mercurial.profile   |1 
 extra-x86_64/PKGBUILD  |   50 ---
 extra-x86_64/mercurial.profile |1 
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-04 16:12:32 UTC (rev 212040)
+++ extra-i686/PKGBUILD 2014-05-04 16:12:39 UTC (rev 212041)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=mercurial
-pkgver=2.9.2
-pkgrel=1
-pkgdesc=A scalable distributed SCM tool
-arch=('i686' 'x86_64')
-url=http://mercurial.selenic.com/;
-license=('GPL')
-depends=('python2')
-optdepends=('tk: for the hgk GUI')
-backup=('etc/mercurial/hgrc')
-source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
-'mercurial.profile')
-md5sums=('1caeed1bea1232598fc5ce5d6d109f56'
- '43e1d36564d4c7fbe9a091d3ea370a44')
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  python2 setup.py install --root=${pkgdir}/ --optimize=1
-
-  sed -i -e 's#env python#env python2#' \
-${pkgdir}/usr/lib/python2.7/site-packages/mercurial/lsprof.py
-
-  install -d ${pkgdir}/usr/share/man/{man1,man5}
-  install -m644 doc/hg.1 ${pkgdir}/usr/share/man/man1
-  install -m644 doc/{hgrc.5,hgignore.5} ${pkgdir}/usr/share/man/man5
-  install -m755 contrib/hgk ${pkgdir}/usr/bin
-  install -m644 -D contrib/zsh_completion 
${pkgdir}/usr/share/zsh/site-functions/_hg
-  install -m644 -D contrib/bash_completion 
${pkgdir}/usr/share/bash-completion/completions/hg
-  install -d ${pkgdir}/usr/share/emacs/site-lisp
-  install -m644 contrib/{mq.el,mercurial.el} 
${pkgdir}/usr/share/emacs/site-lisp
-
-  vimpath=${pkgdir}/usr/share/vim/vimfiles
-  install -Dm644 contrib/vim/HGAnnotate.vim ${vimpath}/syntax/HGAnnotate.vim
-
-  # set some variables
-  install -m755 -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/mercurial.profile 
${pkgdir}/etc/profile.d/mercurial.sh
-
-  # install configuration file
-  install -m755 -d ${pkgdir}/etc/mercurial
-  install -m644 contrib/sample.hgrc ${pkgdir}/etc/mercurial/hgrc
-  
-  # FS#38825 - Add certs config to package 
-  echo -e \n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt\n  
${pkgdir}/etc/mercurial/hgrc
-}

Copied: mercurial/repos/extra-i686/PKGBUILD (from rev 212040, 
mercurial/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-04 16:12:39 UTC (rev 212041)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=mercurial
+pkgver=3.0
+pkgrel=1
+pkgdesc=A scalable distributed SCM tool
+arch=('i686' 'x86_64')
+url=http://mercurial.selenic.com/;
+license=('GPL')
+depends=('python2')
+optdepends=('tk: for the hgk GUI')
+backup=('etc/mercurial/hgrc')
+source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
+'mercurial.profile')
+md5sums=('133ff0a31047d2c0b4640943a58535a7'
+ '43e1d36564d4c7fbe9a091d3ea370a44')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir}/ --optimize=1
+
+  sed -i -e 's#env python#env python2#' \
+${pkgdir}/usr/lib/python2.7/site-packages/mercurial/lsprof.py
+
+  install -d ${pkgdir}/usr/share/man/{man1,man5}
+  install -m644 doc/hg.1 ${pkgdir}/usr/share/man/man1
+  install -m644 doc/{hgrc.5,hgignore.5} ${pkgdir}/usr/share/man/man5
+  install -m755 contrib/hgk ${pkgdir}/usr/bin
+  install -m644 -D contrib/zsh_completion 
${pkgdir}/usr/share/zsh/site-functions/_hg
+  install -m644 -D contrib/bash_completion 
${pkgdir}/usr/share/bash-completion/completions/hg
+  install -d ${pkgdir}/usr/share/emacs/site-lisp
+  install -m644 contrib/{mq.el,mercurial.el} 
${pkgdir}/usr/share/emacs/site-lisp
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -Dm644 contrib/vim/HGAnnotate.vim 

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

2014-05-04 Thread Giovanni Scafora
Date: Sunday, May 4, 2014 @ 18:12:32
  Author: giovanni
Revision: 212040

upgpkg: mercurial 3.0-1

upstream release

Modified:
  mercurial/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 14:43:45 UTC (rev 212039)
+++ PKGBUILD2014-05-04 16:12:32 UTC (rev 212040)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=mercurial
-pkgver=2.9.2
+pkgver=3.0
 pkgrel=1
 pkgdesc=A scalable distributed SCM tool
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/mercurial/hgrc')
 source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
 'mercurial.profile')
-md5sums=('1caeed1bea1232598fc5ce5d6d109f56'
+md5sums=('133ff0a31047d2c0b4640943a58535a7'
  '43e1d36564d4c7fbe9a091d3ea370a44')
 
 package() {



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

2014-05-04 Thread Evangelos Foutras
Date: Sunday, May 4, 2014 @ 18:53:46
  Author: foutrelis
Revision: 212042

upgpkg: firefox-i18n 29.0-2

Fix a few broken langpacks (FS#40216).

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 16:12:39 UTC (rev 212041)
+++ PKGBUILD2014-05-04 16:53:46 UTC (rev 212042)
@@ -6,12 +6,13 @@
 
 pkgbase=firefox-i18n
 pkgver=29.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Language pack for Firefox
 arch=('any')
 url=http://www.mozilla.com/;
 license=('MPL' 'GPL')
 depends=(firefox=$pkgver)
+makedepends=('zip' 'unzip')
 
 _languages=(
   'achAcholi'
@@ -121,6 +122,17 @@
   pkgdesc=$2 language pack for Firefox
   install -Dm644 firefox-i18n-$pkgver-$1.xpi \
 
$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi
+
+  # Fix a few broken langpacks
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=832060
+  if in_array $1 bg br csb; then
+pushd $pkgdir/usr/lib/firefox/browser/extensions /dev/null
+unzip langpack-$1...@firefox.mozilla.org.xpi install.rdf /dev/null
+sed -i '/./,$!d' install.rdf
+zip -u langpack-$1...@firefox.mozilla.org.xpi install.rdf /dev/null
+rm install.rdf
+popd /dev/null
+  fi
 }
 
 md5sums=('60344a81a613f33cdf32fd94a48a4d27'



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

2014-05-04 Thread Evangelos Foutras
Date: Sunday, May 4, 2014 @ 18:53:59
  Author: foutrelis
Revision: 212043

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 212042, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  428 +++--
 1 file changed, 220 insertions(+), 208 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 16:53:46 UTC (rev 212042)
+++ PKGBUILD2014-05-04 16:53:59 UTC (rev 212043)
@@ -1,208 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler tho...@archlinux.org
-# Contributor: Jaroslaw Swierczynski swier...@juvepoland.com
-# Contributor: Michal Hybner dta...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgbase=firefox-i18n
-pkgver=29.0
-pkgrel=1
-pkgdesc=Language pack for Firefox
-arch=('any')
-url=http://www.mozilla.com/;
-license=('MPL' 'GPL')
-depends=(firefox=$pkgver)
-
-_languages=(
-  'achAcholi'
-  'af Afrikaans'
-  'an Aragonese'
-  'ar Arabic'
-  'as Assamese'
-  'astAsturian'
-  'be Belarusian'
-  'bg Bulgarian'
-  'bn-BD  Bengali (Bangladesh)'
-  'br Breton'
-  'bs Bosnian'
-  'ca Catalan'
-  'cs Czech'
-  'csbKashubian'
-  'cy Welsh'
-  'da Danish'
-  'de German'
-  'el Greek'
-  'en-GB  English (British)'
-  'en-US  English (US)'
-  'en-ZA  English (South African)'
-  'eo Esperanto'
-  'es-AR  Spanish (Argentina)'
-  'es-CL  Spanish (Chile)'
-  'es-ES  Spanish (Spain)'
-  'es-MX  Spanish (Mexico)'
-  'et Estonian'
-  'eu Basque'
-  'fa Persian'
-  'ff Fulah'
-  'fi Finnish'
-  'fr French'
-  'fy-NL  Frisian'
-  'ga-IE  Irish'
-  'gd Gaelic (Scotland)'
-  'gl Galician'
-  'gu-IN  Gujarati'
-  'he Hebrew'
-  'hi-IN  Hindi (India)'
-  'hr Croatian'
-  'hu Hungarian'
-  'hy-AM  Armenian'
-  'id Indonesian'
-  'is Icelandic'
-  'it Italian'
-  'ja Japanese'
-  'kk Kazakh'
-  'km Khmer'
-  'kn Kannada'
-  'ko Korean'
-  'lijLigurian'
-  'lt Lithuanian'
-  'lv Latvian'
-  'maiMaithili'
-  'mk Macedonian'
-  'ml Malayalam'
-  'mr Marathi'
-  'nb-NO  Norwegian (Bokmål)'
-  'nl Dutch'
-  'nn-NO  Norwegian (Nynorsk)'
-  'or Oriya'
-  'pa-IN  Punjabi'
-  'pl Polish'
-  'pt-BR  Portuguese (Brazilian)'
-  'pt-PT  Portuguese (Portugal)'
-  'rm Romansh'
-  'ro Romanian'
-  'ru Russian'
-  'si Sinhala'
-  'sk Slovak'
-  'sl Slovenian'
-  'sq Albanian'
-  'sr Serbian'
-  'sv-SE  Swedish'
-  'ta Tamil'
-  'te Telugu'
-  'th Thai'
-  'tr Turkish'
-  'uk Ukrainian'
-  'vi Vietnamese'
-  'xh Xhosa'
-  'zh-CN  Chinese (Simplified)'
-  'zh-TW  Chinese (Traditional)'
-)
-
-pkgname=()
-source=()
-_url=http://download.cdn.mozilla.net/pub/firefox/releases/$pkgver/linux-i686/xpi
-
-for _lang in ${_languages[@]}; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=(firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi)
-  eval package_$_pkgname() {
-_package $_lang
-  }
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc=$2 language pack for Firefox
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi
-}
-
-md5sums=('60344a81a613f33cdf32fd94a48a4d27'
- '77f6042c97f9370d8e101d6cbcf6c936'
- '3507235a889c9de4c3e2d3fd9a287364'
- '31137e9ceb1ab0c2d0f421ccf797998a'
- 'd0a72259c75d8798fb5a1d7b99363ca2'
- '94084acc81914e2e28ff95365ef40247'
- '8caa0a8b05d6ce8d0689eb823fe27dcf'
- '40eaf6efd7761477589ca3caaa3cdaed'
- '5a5111e0f8cf59dc79d89bc9729f29fe'
- 'f1ae0b354dfaf6ee8bbbd47ee6b5712f'
- '690d7d69b3d86fb6d43cbba67d146197'
- 'd9d5f04dcb55a53b76b59d12830b6ac2'
- '7b2429d5f53b4271a9e4cfb854036c4f'
- 'ea9780146da4bdb7bd82fcd3fb6d5765'
- '292fe2dc95eb9060105c787978c6095f'
- '6fda81615c838cc9154a9c25b01ba216'
- '38809e5e0017a180d57c736ded88'
- '00acf97362a00caa6d9b4972ec56ce78'
- '80232f10f87d1ef0e3dcc471087df45c'
- 'e3ed6bfee80d569ada3d53a19dd9e469'
- 'c2ede5fa0b5cb734fbb0d4be27dd0978'
- '5cc8f2974cbb46f85ea0b85690a0c46f'
- '39d3b6cd205fa6e8170fde899d7d3702'
- 'df43f63a01243c6dde2cdd7870bb5655'
- '2c485bedeb6bdcc7b39e09bcf51b2128'
- 'caddb6d2ca9abfbe02a15710388683f6'
- '2e7e87e8dd9c1c661186e5ed600b77c1'
- 'b803ffd96fee939064f8706f898c383d'
- '9b725989e9b4df68c6137d02035e3781'
- '3cada69e69d42a0a2256dc97f98410a7'
- '42e9ba88cfdf2e6cc78fcd9518c8463e'
- 'b49928f59ea2220f6742550b32ced237'
- '444a36fa9bf92e9a49b2c758e645cc4c'
- 

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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 20:05:08
  Author: fyan
Revision: 110663

upgpkg: goagent 3.1.11-1

Modified:
  goagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 15:28:10 UTC (rev 110662)
+++ PKGBUILD2014-05-04 18:05:08 UTC (rev 110663)
@@ -4,7 +4,7 @@
 # Contributor: Guten ywzhai...@gmail.com 
 
 pkgname=goagent
-pkgver=3.1.10
+pkgver=3.1.11
 pkgrel=1
 pkgdesc=A gae proxy forked from gappproxy/wallproxy
 arch=(any)
@@ -26,7 +26,8 @@
   cd $pkgname
 
   sed -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| \
-  -e 's|^geoip = .*)\( if.*\)$|geoip = 
pygeoip.GeoIP(/usr/share/GeoIP/GeoIP.dat)\1|' \
+  -i local/{proxy.py,dnsproxy.py}
+  sed -e 's|^geoip = .*)\( if.*\)$|geoip = 
pygeoip.GeoIP(/usr/share/GeoIP/GeoIP.dat)\1|' \
   -i local/proxy.py
 }
 



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

2014-05-04 Thread Felix Yan
Date: Sunday, May 4, 2014 @ 20:05:58
  Author: fyan
Revision: 110664

archrelease: copy trunk to community-any

Added:
  goagent/repos/community-any/PKGBUILD
(from rev 110663, goagent/trunk/PKGBUILD)
  goagent/repos/community-any/goagent.install
(from rev 110663, goagent/trunk/goagent.install)
  goagent/repos/community-any/goagent.service
(from rev 110663, goagent/trunk/goagent.service)
  goagent/repos/community-any/goagent.user.ini
(from rev 110663, goagent/trunk/goagent.user.ini)
Deleted:
  goagent/repos/community-any/PKGBUILD
  goagent/repos/community-any/goagent.install
  goagent/repos/community-any/goagent.service
  goagent/repos/community-any/goagent.user.ini

-+
 PKGBUILD|  115 +++---
 goagent.install |   42 +--
 goagent.service |   24 +--
 3 files changed, 91 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 18:05:08 UTC (rev 110663)
+++ PKGBUILD2014-05-04 18:05:58 UTC (rev 110664)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: cuihao cuihao dot leo at gmail dot com
-# Contributor: Guten ywzhai...@gmail.com 
-
-pkgname=goagent
-pkgver=3.1.10
-pkgrel=1
-pkgdesc=A gae proxy forked from gappproxy/wallproxy
-arch=(any)
-url=http://goagent.googlecode.com;
-license=(GPL2)
-depends=('python2' 'python2-pyopenssl' 'python2-gevent' 'python2-dnslib')
-conflicts=('python2-gevent0.99')
-optdepends=('python2-crypto: Optimization for RC4'
-'python2-pacparser: PAC proxy support'
-'python2-pygeoip: for GAE Regions mode support  DNS region auto 
detect')
-makedepends=('git')
-source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
-${pkgname}.user.ini
-${pkgname}.service)
-backup=('etc/goagent')
-install=goagent.install
-
-prepare() {
-  cd $pkgname
-
-  sed -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| \
-  -e 's|^geoip = .*)\( if.*\)$|geoip = 
pygeoip.GeoIP(/usr/share/GeoIP/GeoIP.dat)\1|' \
-  -i local/proxy.py
-}
-
-package() {
-  cd $pkgname
-
-  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/goagent
-  install -Dm755 local/dnsproxy.py 
$pkgdir/usr/share/$pkgname/local/dnsproxy.py
-  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
-  install -Dm644 local/cacert.pem $pkgdir/usr/share/$pkgname/local/cacert.pem
-  install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
-  install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
-
-  install -Dm644 local/proxy.ini $pkgdir/usr/share/$pkgname/local/goagent.ini
-  install -Dm640 -g nobody ../goagent.user.ini $pkgdir/etc/goagent
-  ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/goagent.user.ini
-  
-  cp -r server $pkgdir/usr/share/$pkgname/
-  rm $pkgdir/usr/share/$pkgname/server/uploader.bat
-
-  # systemd service
-  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
-}
-
-# vim:set ts=2 sw=2 et:
-sha512sums=('SKIP'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'4327d5b874c5150296f9c027a60994853de1b68d4c4e32291a5c41c0e162ffbccf68b6208cbc096d099721b470e1df897ad61596d8ddd705543c15b58e9a0f7c')

Copied: goagent/repos/community-any/PKGBUILD (from rev 110663, 
goagent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 18:05:58 UTC (rev 110664)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: cuihao cuihao dot leo at gmail dot com
+# Contributor: Guten ywzhai...@gmail.com 
+
+pkgname=goagent
+pkgver=3.1.11
+pkgrel=1
+pkgdesc=A gae proxy forked from gappproxy/wallproxy
+arch=(any)
+url=http://goagent.googlecode.com;
+license=(GPL2)
+depends=('python2' 'python2-pyopenssl' 'python2-gevent' 'python2-dnslib')
+conflicts=('python2-gevent0.99')
+optdepends=('python2-crypto: Optimization for RC4'
+'python2-pacparser: PAC proxy support'
+'python2-pygeoip: for GAE Regions mode support  DNS region auto 
detect')
+makedepends=('git')
+source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
+${pkgname}.user.ini
+${pkgname}.service)
+backup=('etc/goagent')
+install=goagent.install
+
+prepare() {
+  cd $pkgname
+
+  sed -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| \
+  -i local/{proxy.py,dnsproxy.py}
+  sed -e 's|^geoip = .*)\( if.*\)$|geoip = 
pygeoip.GeoIP(/usr/share/GeoIP/GeoIP.dat)\1|' \
+  -i local/proxy.py
+}
+
+package() {
+  cd $pkgname
+
+  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/goagent
+  install -Dm755 local/dnsproxy.py 

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

2014-05-04 Thread Jan Steffens
Date: Sunday, May 4, 2014 @ 21:37:02
  Author: heftig
Revision: 212044

add missing runtime deps (dbus)

Modified:
  polari/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 16:53:59 UTC (rev 212043)
+++ PKGBUILD2014-05-04 19:37:02 UTC (rev 212044)
@@ -8,7 +8,7 @@
 arch=(i686 x86_64)
 license=(GPL)
 url=https://wiki.gnome.org/Apps/Polari;
-depends=(gjs gtk3 telepathy-glib telepathy-idle)
+depends=(gjs gtk3 telepathy-glib telepathy-idle telepathy-mission-control 
telepathy-logger)
 makedepends=(intltool)
 groups=(gnome-extra)
 install=polari.install



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

2014-05-04 Thread Daniel Wallace
Date: Sunday, May 4, 2014 @ 23:54:21
  Author: dwallace
Revision: 110665

upgpkg: youtube-viewer 1:3.1.0-1

upgpkg: youtube-viewer 3.1.0

Modified:
  youtube-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 18:05:58 UTC (rev 110664)
+++ PKGBUILD2014-05-04 21:54:21 UTC (rev 110665)
@@ -1,4 +1,4 @@
-$Id$
+#$Id$
 # Maintainer: Daniel Wallace  danielwallace at gtmanfred dot com
 # Contributor: Trizen echo dHJpemVueEBnbWFpbC5jb20K | base64 -d
 
@@ -5,7 +5,7 @@
 pkgname=youtube-viewer
 _pkgdir=trizen-youtube-viewer
 epoch=1
-pkgver=3.0.9
+pkgver=3.1.0
 pkgrel=1
 pkgdesc=A command line utility for viewing youtube-videos in MPlayer.
 arch=('any')
@@ -12,7 +12,7 @@
 url=https://github.com/trizen/youtube-viewer;
 license=('GPL3')
 
source=($pkgname-$pkgver.zip::https://github.com/trizen/$pkgname/zipball/$pkgver;)
-sha256sums=('024c55ecfbe11a36f4c77553641ddcb45005f595923b105bccb60f9ea223d0ef')
+sha256sums=('df10db72316228e0f68273879b5d59ea1a0a0bcdfc5a230874ee1bc71ea93f1e')
 
 depends=('perl=5.10.0' 'perl-data-dump' 'perl-libwww' 'perl-xml-fast')
 optdepends=('vlc: for playing videos'
@@ -40,5 +40,4 @@
 
 ./Build install --install_path script=/usr/bin --destdir=$pkgdir
 rm -r $pkgdir/usr/lib/
-
 }



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

2014-05-04 Thread Daniel Wallace
Date: Sunday, May 4, 2014 @ 23:54:46
  Author: dwallace
Revision: 110666

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   87 ++---
 1 file changed, 43 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 21:54:21 UTC (rev 110665)
+++ PKGBUILD2014-05-04 21:54:46 UTC (rev 110666)
@@ -1,44 +0,0 @@
-$Id$
-# Maintainer: Daniel Wallace  danielwallace at gtmanfred dot com
-# Contributor: Trizen echo dHJpemVueEBnbWFpbC5jb20K | base64 -d
-
-pkgname=youtube-viewer
-_pkgdir=trizen-youtube-viewer
-epoch=1
-pkgver=3.0.9
-pkgrel=1
-pkgdesc=A command line utility for viewing youtube-videos in MPlayer.
-arch=('any')
-url=https://github.com/trizen/youtube-viewer;
-license=('GPL3')
-source=($pkgname-$pkgver.zip::https://github.com/trizen/$pkgname/zipball/$pkgver;)
-sha256sums=('024c55ecfbe11a36f4c77553641ddcb45005f595923b105bccb60f9ea223d0ef')
-
-depends=('perl=5.10.0' 'perl-data-dump' 'perl-libwww' 'perl-xml-fast')
-optdepends=('vlc: for playing videos'
-   'mplayer: for playing videos'
-   'perl-term-readkey: to get the terminal width size'
-'perl-term-readline-gnu: for a better STDIN support'
-'perl-lwp-protocol-https: for login and https support'
-'gcap: for retrieving Youtube closed captions. [in AUR]')
-
-
-build() {
-cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
-
-perl Build.PL   # --gtk-youtube-viewer
-}
-
-check(){
-cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
-
-./Build test
-}
-
-package() {
-cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
-
-./Build install --install_path script=/usr/bin --destdir=$pkgdir
-rm -r $pkgdir/usr/lib/
-
-}

Copied: youtube-viewer/repos/community-any/PKGBUILD (from rev 110665, 
youtube-viewer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 21:54:46 UTC (rev 110666)
@@ -0,0 +1,43 @@
+#$Id$
+# Maintainer: Daniel Wallace  danielwallace at gtmanfred dot com
+# Contributor: Trizen echo dHJpemVueEBnbWFpbC5jb20K | base64 -d
+
+pkgname=youtube-viewer
+_pkgdir=trizen-youtube-viewer
+epoch=1
+pkgver=3.1.0
+pkgrel=1
+pkgdesc=A command line utility for viewing youtube-videos in MPlayer.
+arch=('any')
+url=https://github.com/trizen/youtube-viewer;
+license=('GPL3')
+source=($pkgname-$pkgver.zip::https://github.com/trizen/$pkgname/zipball/$pkgver;)
+sha256sums=('df10db72316228e0f68273879b5d59ea1a0a0bcdfc5a230874ee1bc71ea93f1e')
+
+depends=('perl=5.10.0' 'perl-data-dump' 'perl-libwww' 'perl-xml-fast')
+optdepends=('vlc: for playing videos'
+   'mplayer: for playing videos'
+   'perl-term-readkey: to get the terminal width size'
+'perl-term-readline-gnu: for a better STDIN support'
+'perl-lwp-protocol-https: for login and https support'
+'gcap: for retrieving Youtube closed captions. [in AUR]')
+
+
+build() {
+cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
+
+perl Build.PL   # --gtk-youtube-viewer
+}
+
+check(){
+cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
+
+./Build test
+}
+
+package() {
+cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
+
+./Build install --install_path script=/usr/bin --destdir=$pkgdir
+rm -r $pkgdir/usr/lib/
+}



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

2014-05-04 Thread Daniel Wallace
Date: Sunday, May 4, 2014 @ 23:59:07
  Author: dwallace
Revision: 110667

upgpkg: lib32-flashplugin 11.2.202.356-1

upgpkg: lib32-flashplugin 11.2.202.356

Modified:
  lib32-flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 21:54:46 UTC (rev 110666)
+++ PKGBUILD2014-05-04 21:59:07 UTC (rev 110667)
@@ -3,7 +3,7 @@
 
 pkgname=lib32-flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.350
+pkgver=11.2.202.356
 pkgrel=1
 license=('custom')
 pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
@@ -12,8 +12,8 @@
 depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
 #optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
 options=(!strip)
-source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
-md5sums=('1798388311aab66d12ab7ccafe6a0448')
+source=(flash_player-$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
+md5sums=('8c197a50457c8266ca0e18fa28bd6acf')
 
 package() {
   install -Dm644 ${srcdir}/libflashplayer.so 
${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so



[arch-commits] Commit in lib32-flashplugin/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-05-04 Thread Daniel Wallace
Date: Sunday, May 4, 2014 @ 23:59:29
  Author: dwallace
Revision: 110668

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-flashplugin/repos/multilib-x86_64/PKGBUILD
(from rev 110667, lib32-flashplugin/trunk/PKGBUILD)
Deleted:
  lib32-flashplugin/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 21:59:07 UTC (rev 110667)
+++ PKGBUILD2014-05-04 21:59:29 UTC (rev 110668)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-
-pkgname=lib32-flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.350
-pkgrel=1
-license=('custom')
-pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
-url=http://get.adobe.com/flashplayer;
-arch=('x86_64')
-depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
-#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
-options=(!strip)
-source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
-md5sums=('1798388311aab66d12ab7ccafe6a0448')
-
-package() {
-  install -Dm644 ${srcdir}/libflashplayer.so 
${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so
-  install -d $pkgdir/usr/share/licenses
-  ln -s ${pkgname#*-} $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD (from rev 110667, 
lib32-flashplugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 21:59:29 UTC (rev 110668)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+
+pkgname=lib32-flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.356
+pkgrel=1
+license=('custom')
+pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
+url=http://get.adobe.com/flashplayer;
+arch=('x86_64')
+depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
+#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
+options=(!strip)
+source=(flash_player-$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
+md5sums=('8c197a50457c8266ca0e18fa28bd6acf')
+
+package() {
+  install -Dm644 ${srcdir}/libflashplayer.so 
${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so
+  install -d $pkgdir/usr/share/licenses
+  ln -s ${pkgname#*-} $pkgdir/usr/share/licenses/$pkgname
+}



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

2014-05-04 Thread Daniel Wallace
Date: Monday, May 5, 2014 @ 00:00:16
  Author: dwallace
Revision: 110669

upgpkg: lib32-libpng12 1.2.51-2

upgpkg: lib32-libpng12 1.2.51-2

Modified:
  lib32-libpng12/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 21:59:29 UTC (rev 110668)
+++ PKGBUILD2014-05-04 22:00:16 UTC (rev 110669)
@@ -9,13 +9,12 @@
 _pkgbasename=libpng
 pkgname=lib32-libpng12
 pkgver=1.2.51
-pkgrel=1
+pkgrel=2
 pkgdesc=A collection of routines used to create PNG format graphics files 
(32-bit, 1.2 branch)
 arch=('x86_64')
 url=http://www.libpng.org/pub/png/libpng.html;
 license=('custom')
-depends=('lib32-zlib')
-makedepends=('gcc-multilib')
+depends=('lib32-zlib' 'libpng12')
 options=('!libtool')
 source=(http://sourceforge.net/projects/libpng/files/libpng-${pkgver}.tar.xz;
 
http://sourceforge.net/projects/apng/files/libpng/libpng12/libpng-${pkgver}-apng.patch.gz;)



[arch-commits] Commit in lib32-libpng12/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-05-04 Thread Daniel Wallace
Date: Monday, May 5, 2014 @ 00:00:38
  Author: dwallace
Revision: 110670

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libpng12/repos/multilib-x86_64/PKGBUILD
(from rev 110669, lib32-libpng12/trunk/PKGBUILD)
Deleted:
  lib32-libpng12/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-04 22:00:16 UTC (rev 110669)
+++ PKGBUILD2014-05-04 22:00:38 UTC (rev 110670)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: trya tryagainp...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-# Contributor: Travis Willard tra...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-_pkgbasename=libpng
-pkgname=lib32-libpng12
-pkgver=1.2.51
-pkgrel=1
-pkgdesc=A collection of routines used to create PNG format graphics files 
(32-bit, 1.2 branch)
-arch=('x86_64')
-url=http://www.libpng.org/pub/png/libpng.html;
-license=('custom')
-depends=('lib32-zlib')
-makedepends=('gcc-multilib')
-options=('!libtool')
-source=(http://sourceforge.net/projects/libpng/files/libpng-${pkgver}.tar.xz;
-
http://sourceforge.net/projects/apng/files/libpng/libpng12/libpng-${pkgver}-apng.patch.gz;)
-md5sums=('4efba67fa5aa2b785c6fcec2cc3e90c9'
- '28bde2a02e40ccdc60ff7c8e6b2118bf')
-
-prepare(){
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  # Add animated PNG (apng) support
-  # see http://sourceforge.net/projects/libpng-apng/
-  patch -Np0 -i ${srcdir}/libpng-${pkgver}-apng.patch
-}
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  libtoolize --force --copy
-  aclocal
-  autoconf
-  automake --add-missing
-
-  ./configure --prefix=/usr --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  rm -f ${pkgdir}/usr/lib32/{libpng.so,libpng.a,pkgconfig/libpng.pc}
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-
-  mkdir -p ${pkgdir}/usr/share/licenses
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: lib32-libpng12/repos/multilib-x86_64/PKGBUILD (from rev 110669, 
lib32-libpng12/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-04 22:00:38 UTC (rev 110670)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: trya tryagainp...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Travis Willard tra...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+_pkgbasename=libpng
+pkgname=lib32-libpng12
+pkgver=1.2.51
+pkgrel=2
+pkgdesc=A collection of routines used to create PNG format graphics files 
(32-bit, 1.2 branch)
+arch=('x86_64')
+url=http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('lib32-zlib' 'libpng12')
+options=('!libtool')
+source=(http://sourceforge.net/projects/libpng/files/libpng-${pkgver}.tar.xz;
+
http://sourceforge.net/projects/apng/files/libpng/libpng12/libpng-${pkgver}-apng.patch.gz;)
+md5sums=('4efba67fa5aa2b785c6fcec2cc3e90c9'
+ '28bde2a02e40ccdc60ff7c8e6b2118bf')
+
+prepare(){
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np0 -i ${srcdir}/libpng-${pkgver}-apng.patch
+}
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  libtoolize --force --copy
+  aclocal
+  autoconf
+  automake --add-missing
+
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  rm -f ${pkgdir}/usr/lib32/{libpng.so,libpng.a,pkgconfig/libpng.pc}
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+
+  mkdir -p ${pkgdir}/usr/share/licenses
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2014-05-04 Thread Anatol Pomozov
Date: Monday, May 5, 2014 @ 00:02:18
  Author: anatolik
Revision: 110671

upgpkg: tinyserial 20090305-2

FS#40215 set pkgver to one that corresponds to source file modification time

Modified:
  tinyserial/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 22:00:38 UTC (rev 110670)
+++ PKGBUILD2014-05-04 22:02:18 UTC (rev 110671)
@@ -1,9 +1,9 @@
 # Maintainer: Anatol Pomozov
-# Contributor: Jens Adam (byte/jra) j_a...@web.de
+# Contributor: Jens Adam (byte/jra) j...@byte.cx
 
 pkgname=tinyserial
-pkgver=20140503
-pkgrel=1
+pkgver=20090305
+pkgrel=2
 pkgdesc=Small minicom replacement for accessing serial ports on Linux 
inspired by FreeBSD 'tip'
 url=http://brokestream.com/tinyserial.html;
 license=(BSD)



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

2014-05-04 Thread Anatol Pomozov
Date: Monday, May 5, 2014 @ 00:03:12
  Author: anatolik
Revision: 110672

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

Added:
  tinyserial/repos/community-testing-i686/PKGBUILD
(from rev 110671, tinyserial/trunk/PKGBUILD)
  tinyserial/repos/community-testing-x86_64/PKGBUILD
(from rev 110671, tinyserial/trunk/PKGBUILD)
Deleted:
  tinyserial/repos/community-testing-i686/PKGBUILD
  tinyserial/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2014-05-04 22:02:18 UTC (rev 110671)
+++ community-testing-i686/PKGBUILD 2014-05-04 22:03:12 UTC (rev 110672)
@@ -1,24 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Jens Adam (byte/jra) j_a...@web.de
-
-pkgname=tinyserial
-pkgver=20140503
-pkgrel=1
-pkgdesc=Small minicom replacement for accessing serial ports on Linux 
inspired by FreeBSD 'tip'
-url=http://brokestream.com/tinyserial.html;
-license=(BSD)
-arch=(i686 x86_64)
-depends=(glibc)
-source=(http://brokestream.com/com.c)
-sha1sums=('720a3ec74eddd6799c0ca55ef50479a160a55b73')
-
-build() {
-  gcc $CFLAGS $LDFLAGS -o com com.c
-}
-
-package() {
-  install -D com $pkgdir/usr/bin/com
-
-  sed -n '16,36p' com.c  license.txt
-  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/tinyserial/license.txt
-}

Copied: tinyserial/repos/community-testing-i686/PKGBUILD (from rev 110671, 
tinyserial/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-05-04 22:03:12 UTC (rev 110672)
@@ -0,0 +1,24 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Jens Adam (byte/jra) j...@byte.cx
+
+pkgname=tinyserial
+pkgver=20090305
+pkgrel=2
+pkgdesc=Small minicom replacement for accessing serial ports on Linux 
inspired by FreeBSD 'tip'
+url=http://brokestream.com/tinyserial.html;
+license=(BSD)
+arch=(i686 x86_64)
+depends=(glibc)
+source=(http://brokestream.com/com.c)
+sha1sums=('720a3ec74eddd6799c0ca55ef50479a160a55b73')
+
+build() {
+  gcc $CFLAGS $LDFLAGS -o com com.c
+}
+
+package() {
+  install -D com $pkgdir/usr/bin/com
+
+  sed -n '16,36p' com.c  license.txt
+  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/tinyserial/license.txt
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2014-05-04 22:02:18 UTC (rev 110671)
+++ community-testing-x86_64/PKGBUILD   2014-05-04 22:03:12 UTC (rev 110672)
@@ -1,24 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Jens Adam (byte/jra) j_a...@web.de
-
-pkgname=tinyserial
-pkgver=20140503
-pkgrel=1
-pkgdesc=Small minicom replacement for accessing serial ports on Linux 
inspired by FreeBSD 'tip'
-url=http://brokestream.com/tinyserial.html;
-license=(BSD)
-arch=(i686 x86_64)
-depends=(glibc)
-source=(http://brokestream.com/com.c)
-sha1sums=('720a3ec74eddd6799c0ca55ef50479a160a55b73')
-
-build() {
-  gcc $CFLAGS $LDFLAGS -o com com.c
-}
-
-package() {
-  install -D com $pkgdir/usr/bin/com
-
-  sed -n '16,36p' com.c  license.txt
-  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/tinyserial/license.txt
-}

Copied: tinyserial/repos/community-testing-x86_64/PKGBUILD (from rev 110671, 
tinyserial/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-05-04 22:03:12 UTC (rev 110672)
@@ -0,0 +1,24 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Jens Adam (byte/jra) j...@byte.cx
+
+pkgname=tinyserial
+pkgver=20090305
+pkgrel=2
+pkgdesc=Small minicom replacement for accessing serial ports on Linux 
inspired by FreeBSD 'tip'
+url=http://brokestream.com/tinyserial.html;
+license=(BSD)
+arch=(i686 x86_64)
+depends=(glibc)
+source=(http://brokestream.com/com.c)
+sha1sums=('720a3ec74eddd6799c0ca55ef50479a160a55b73')
+
+build() {
+  gcc $CFLAGS $LDFLAGS -o com com.c
+}
+
+package() {
+  install -D com $pkgdir/usr/bin/com
+
+  sed -n '16,36p' com.c  license.txt
+  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/tinyserial/license.txt
+}



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

2014-05-04 Thread Daniel Wallace
Date: Monday, May 5, 2014 @ 00:16:38
  Author: dwallace
Revision: 110673

upgpkg: connman 1.23-2

upgpkg: connman 1.23-2 remove openresolv conflict

Modified:
  connman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 22:03:12 UTC (rev 110672)
+++ PKGBUILD2014-05-04 22:16:38 UTC (rev 110673)
@@ -4,13 +4,12 @@
 
 pkgname=connman
 pkgver=1.23
-pkgrel=1
+pkgrel=2
 pkgdesc=Wireless LAN network manager
 url=http://connman.net/;
 arch=('i686' 'x86_64')
 license=('GPL2')
 depends=('dbus-core' 'iptables' 'gnutls' 'glib2')
-conflicts=('openresolv')
 optdepends=('bluez: Support for Bluetooth devices'
 'wpa_supplicant: For WiFi devices'
 'pptpclient: for ppp support')



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

2014-05-04 Thread Daniel Wallace
Date: Monday, May 5, 2014 @ 00:17:22
  Author: dwallace
Revision: 110674

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 110673, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 110673, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 110673, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 110673, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |   98 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   50 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   50 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 122 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-04 22:16:38 UTC (rev 110673)
+++ community-i686/PKGBUILD 2014-05-04 22:17:22 UTC (rev 110674)
@@ -1,50 +0,0 @@
-#$Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Lucas De Marchi lucas.de.mar...@gmail.com
-
-pkgname=connman
-pkgver=1.23
-pkgrel=1
-pkgdesc=Wireless LAN network manager
-url=http://connman.net/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus-core' 'iptables' 'gnutls' 'glib2')
-conflicts=('openresolv')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=(http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-'allow_group_network.diff')
-md5sums=('f835b8137ab198e0af5deab043e2890a'
- 'a8d22ee089fb0ed725130d16ad393047')
-
-prepare(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/allow_group_network.diff
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --bindir=/usr/bin \
- --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-threads \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client
-
-  make
-}
-
-package(){
-  make -C ${srcdir}/${pkgname}-${pkgver} DESTDIR=${pkgdir} install
-  install -Dm755 $srcdir/$pkgname-$pkgver/client/${pkgname}ctl 
$pkgdir/usr/bin/${pkgname}ctl
-  find $pkgdir/usr -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 110673, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-04 22:17:22 UTC (rev 110674)
@@ -0,0 +1,49 @@
+#$Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Lucas De Marchi lucas.de.mar...@gmail.com
+
+pkgname=connman
+pkgver=1.23
+pkgrel=2
+pkgdesc=Wireless LAN network manager
+url=http://connman.net/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=(http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+'allow_group_network.diff')
+md5sums=('f835b8137ab198e0af5deab043e2890a'
+ 'a8d22ee089fb0ed725130d16ad393047')
+
+prepare(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/allow_group_network.diff
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --bindir=/usr/bin \
+ --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-threads \
+  --enable-pptp \
+  --enable-openconnect \
+  --enable-vpnc \
+  --enable-openvpn \
+  --enable-polkit \
+  --enable-client
+
+  make
+}
+
+package(){
+  make -C ${srcdir}/${pkgname}-${pkgver} DESTDIR=${pkgdir} install
+  install -Dm755 $srcdir/$pkgname-$pkgver/client/${pkgname}ctl 
$pkgdir/usr/bin/${pkgname}ctl
+  find $pkgdir/usr -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+}

Deleted: community-i686/allow_group_network.diff

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

2014-05-04 Thread Daniel Micay
Date: Monday, May 5, 2014 @ 02:01:09
  Author: thestinger
Revision: 110675

upgpkg: linux-grsec 3.14.2.201405041244-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-04 22:17:22 UTC (rev 110674)
+++ PKGBUILD2014-05-05 00:01:09 UTC (rev 110675)
@@ -8,7 +8,7 @@
 _srcname=linux-3.14
 _pkgver=3.14.2
 _grsecver=3.0
-_timestamp=201405011752
+_timestamp=201405041244
 _grsec_patch=grsecurity-$_grsecver-$_pkgver-$_timestamp.patch
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -43,7 +43,7 @@
 )
 md5sums=('b621207b3f6ecbb67db18b13258f8ea8'
  'f2239bf772d1b6e1c26cb03f6e056959'
- '36a7b0f623da0cf6d6a6da25e1b1c4a7'
+ '8767f487c45726c696441c81f3918f6e'
  'SKIP'
  'bdc21c0e7072b0ce9a0f80140c8f759b'
  'e2ed1a476239147e7e09900bc6e5a3bc'



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

2014-05-04 Thread Daniel Micay
Date: Monday, May 5, 2014 @ 02:03:53
  Author: thestinger
Revision: 110676

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

Added:
  
linux-grsec/repos/community-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 110675, 
linux-grsec/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-grsec/repos/community-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 110675, 
linux-grsec/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-grsec/repos/community-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 110675, 
linux-grsec/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  
linux-grsec/repos/community-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 110675, 
linux-grsec/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux-grsec/repos/community-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 110675, 
linux-grsec/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux-grsec/repos/community-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 110675, linux-grsec/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux-grsec/repos/community-i686/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch
(from rev 110675, 
linux-grsec/trunk/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch)
  
linux-grsec/repos/community-i686/0008-futex-avoid-race-between-requeue-and-wake.patch
(from rev 110675, 
linux-grsec/trunk/0008-futex-avoid-race-between-requeue-and-wake.patch)
  
linux-grsec/repos/community-i686/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch
(from rev 110675, 
linux-grsec/trunk/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch)
  
linux-grsec/repos/community-i686/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch
(from rev 110675, 
linux-grsec/trunk/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch)
  linux-grsec/repos/community-i686/0011-kernfs-fix-removed-error-check.patch
(from rev 110675, 
linux-grsec/trunk/0011-kernfs-fix-removed-error-check.patch)
  linux-grsec/repos/community-i686/0012-fix-saa7134.patch
(from rev 110675, linux-grsec/trunk/0012-fix-saa7134.patch)
  
linux-grsec/repos/community-i686/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
(from rev 110675, 
linux-grsec/trunk/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch)
  linux-grsec/repos/community-i686/0014-fix-rtl8192se.patch
(from rev 110675, linux-grsec/trunk/0014-fix-rtl8192se.patch)
  linux-grsec/repos/community-i686/0015-fix-xsdt-validation.patch
(from rev 110675, linux-grsec/trunk/0015-fix-xsdt-validation.patch)
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 110675, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 110675, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 110675, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 110675, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 110675, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 110675, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-i686/sysctl.conf
(from rev 110675, linux-grsec/trunk/sysctl.conf)
  
linux-grsec/repos/community-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 110675, 
linux-grsec/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-grsec/repos/community-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 110675, 
linux-grsec/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  
linux-grsec/repos/community-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 110675, 
linux-grsec/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  
linux-grsec/repos/community-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 110675, 
linux-grsec/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux-grsec/repos/community-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 110675, 
linux-grsec/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux-grsec/repos/community-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 110675, linux-grsec/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux-grsec/repos/community-x86_64/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch
(from rev 110675, 
linux-grsec/trunk/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch)
  
linux-grsec/repos/community-x86_64/0008-futex-avoid-race-between-requeue-and-wake.patch
(from rev 110675,