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

2015-05-01 Thread Eric Bélanger
Date: Saturday, May 2, 2015 @ 05:01:16
  Author: eric
Revision: 238332

upgpkg: gitg 3.16.1-1

Upstream update

Modified:
  gitg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-02 00:56:51 UTC (rev 238331)
+++ PKGBUILD2015-05-02 03:01:16 UTC (rev 238332)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=gitg
-pkgver=3.16.0
+pkgver=3.16.1
 pkgrel=1
 pkgdesc='A GIT repository viewer based on GTK+'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 groups=('gnome-extra')
 install=gitg.install
 
source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('e5b1da6f3234b497c7c418f5efc5bd9c29257864a67687dea1a0efe74f29cf89')
+sha256sums=('914e964402dadda152c7e034906d84e266c474603f58bc1a300f2a1659615569')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in tftp-hpa/trunk (5 files)

2015-05-01 Thread Anatol Pomozov
Date: Saturday, May 2, 2015 @ 02:55:45
  Author: anatolik
Revision: 238330

upgpkg: tftp-hpa 5.2-5

Add possibility to customize service via /etc/conf.d/tftpd (uses systemd 
EnvironmentFile option).
Fix systemd warning, it does not like executable bit on service/socket files.

Added:
  tftp-hpa/trunk/tftpd.conf
  tftp-hpa/trunk/tftpd.install
Modified:
  tftp-hpa/trunk/PKGBUILD
  tftp-hpa/trunk/tftpd.service
  tftp-hpa/trunk/tftpd.socket

---+
 PKGBUILD  |   17 +++--
 tftpd.conf|1 +
 tftpd.install |6 ++
 tftpd.service |   11 +++
 tftpd.socket  |4 
 5 files changed, 29 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:53:11 UTC (rev 238329)
+++ PKGBUILD2015-05-02 00:55:45 UTC (rev 238330)
@@ -1,24 +1,28 @@
 # $Id$
 # Maintainer: dorphell dorph...@archlinux.org
 # Contributor: Jose Javier  joj...@terra.es
+
 pkgname=tftp-hpa
 pkgver=5.2
-pkgrel=4
+pkgrel=5
 pkgdesc=Official tftp server
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/pub/software/network/tftp/tftp-hpa/;
 license=('BSD')
+backup=('etc/conf.d/tftpd')
+install='tftpd.install'
 depends=('readline=6.0.00')
-conflicts=('netkit-tftp')
 
source=(http://www.kernel.org/pub/software/network/tftp/tftp-hpa/$pkgname-$pkgver.tar.gz
 
LICENSE
+   tftpd.conf
tftpd.service
tftpd.socket
tftp-hpa-0.49-fortify-strcpy-crash.patch)
 md5sums=('3de3038e7c2bf6fc5d496825893ac8e7'
  '6ce21e27b6fdc1a1adf85c81e42aeecf'
- 'ffeac33192eac4c526657b6789cace21'
- 'a23369ea33be8b4a5427ec2cfc5373dd'
+ 'b372088e550683df5ea8528ca6bbed1f'
+ 'ddd0028f77f131f3839bde92202305c4'
+ 'b04b9eb0bd049fa59dd518587a26d1c4'
  '22e8629ef19bc276a102c5d4d284c1bd')
 
 prepare() {
@@ -36,9 +40,10 @@
 package() {
   cd ${pkgname}-${pkgver}
   make INSTALLROOT=${pkgdir} install
+  install -D -m644 ${srcdir}/tftpd.conf $pkgdir/etc/conf.d/tftpd
   install -d ${pkgdir}/srv/tftp
-  install -D -m655 ${srcdir}/tftpd.service 
${pkgdir}/usr/lib/systemd/system/tftpd.service
-  install -D -m655 ${srcdir}/tftpd.socket 
${pkgdir}/usr/lib/systemd/system/tftpd.socket
+  install -D -m644 ${srcdir}/tftpd.service 
${pkgdir}/usr/lib/systemd/system/tftpd.service
+  install -D -m644 ${srcdir}/tftpd.socket 
${pkgdir}/usr/lib/systemd/system/tftpd.socket
   install -D -m644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
   # Remove conflict with iputils
   rm ${pkgdir}/usr/share/man/man8/tftpd.8  

Added: tftpd.conf
===
--- tftpd.conf  (rev 0)
+++ tftpd.conf  2015-05-02 00:55:45 UTC (rev 238330)
@@ -0,0 +1 @@
+TFTPD_ARGS=--secure /srv/tftp/

Added: tftpd.install
===
--- tftpd.install   (rev 0)
+++ tftpd.install   2015-05-02 00:55:45 UTC (rev 238330)
@@ -0,0 +1,6 @@
+post_upgrade() {
+  if [ -f /etc/systemd/system/tftpd.service ]; then
+echo  TFTP server configuration has been moved to /etc/conf.d/tftpd.
+echo Please update /etc/conf.d/tftpd and remove 
/etc/systemd/system/tftpd.service
+  fi
+}

Modified: tftpd.service
===
--- tftpd.service   2015-05-01 19:53:11 UTC (rev 238329)
+++ tftpd.service   2015-05-02 00:55:45 UTC (rev 238330)
@@ -1,8 +1,11 @@
 [Unit]
 Description=hpa's original TFTP daemon
+After=network.target
 
 [Service]
-ExecStart=/usr/bin/in.tftpd -s /srv/tftp/
-StandardInput=socket
-StandardOutput=inherit
-StandardError=journal
+Type=forking
+EnvironmentFile=/etc/conf.d/tftpd
+ExecStart=/usr/bin/in.tftpd --listen $TFTPD_ARGS
+
+[Install]
+WantedBy=multi-user.target

Modified: tftpd.socket
===
--- tftpd.socket2015-05-01 19:53:11 UTC (rev 238329)
+++ tftpd.socket2015-05-02 00:55:45 UTC (rev 238330)
@@ -1,3 +1,7 @@
+[Unit]
+Description=hpa's original TFTP daemon
+Conflicts=tftpd.service
+
 [Socket]
 ListenDatagram=69
 


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

2015-05-01 Thread Anatol Pomozov
Date: Saturday, May 2, 2015 @ 02:56:51
  Author: anatolik
Revision: 238331

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

Added:
  tftp-hpa/repos/testing-i686/
  tftp-hpa/repos/testing-i686/LICENSE
(from rev 238330, tftp-hpa/trunk/LICENSE)
  tftp-hpa/repos/testing-i686/PKGBUILD
(from rev 238330, tftp-hpa/trunk/PKGBUILD)
  tftp-hpa/repos/testing-i686/tftp-hpa-0.49-fortify-strcpy-crash.patch
(from rev 238330, tftp-hpa/trunk/tftp-hpa-0.49-fortify-strcpy-crash.patch)
  tftp-hpa/repos/testing-i686/tftpd.conf
(from rev 238330, tftp-hpa/trunk/tftpd.conf)
  tftp-hpa/repos/testing-i686/tftpd.install
(from rev 238330, tftp-hpa/trunk/tftpd.install)
  tftp-hpa/repos/testing-i686/tftpd.service
(from rev 238330, tftp-hpa/trunk/tftpd.service)
  tftp-hpa/repos/testing-i686/tftpd.socket
(from rev 238330, tftp-hpa/trunk/tftpd.socket)
  tftp-hpa/repos/testing-x86_64/
  tftp-hpa/repos/testing-x86_64/LICENSE
(from rev 238330, tftp-hpa/trunk/LICENSE)
  tftp-hpa/repos/testing-x86_64/PKGBUILD
(from rev 238330, tftp-hpa/trunk/PKGBUILD)
  tftp-hpa/repos/testing-x86_64/tftp-hpa-0.49-fortify-strcpy-crash.patch
(from rev 238330, tftp-hpa/trunk/tftp-hpa-0.49-fortify-strcpy-crash.patch)
  tftp-hpa/repos/testing-x86_64/tftpd.conf
(from rev 238330, tftp-hpa/trunk/tftpd.conf)
  tftp-hpa/repos/testing-x86_64/tftpd.install
(from rev 238330, tftp-hpa/trunk/tftpd.install)
  tftp-hpa/repos/testing-x86_64/tftpd.service
(from rev 238330, tftp-hpa/trunk/tftpd.service)
  tftp-hpa/repos/testing-x86_64/tftpd.socket
(from rev 238330, tftp-hpa/trunk/tftpd.socket)

-+
 testing-i686/LICENSE|   32 
 testing-i686/PKGBUILD   |   50 ++
 testing-i686/tftp-hpa-0.49-fortify-strcpy-crash.patch   |   26 +++
 testing-i686/tftpd.conf |1 
 testing-i686/tftpd.install  |6 +
 testing-i686/tftpd.service  |   11 +++
 testing-i686/tftpd.socket   |9 ++
 testing-x86_64/LICENSE  |   32 
 testing-x86_64/PKGBUILD |   50 ++
 testing-x86_64/tftp-hpa-0.49-fortify-strcpy-crash.patch |   26 +++
 testing-x86_64/tftpd.conf   |1 
 testing-x86_64/tftpd.install|6 +
 testing-x86_64/tftpd.service|   11 +++
 testing-x86_64/tftpd.socket |9 ++
 14 files changed, 270 insertions(+)

Copied: tftp-hpa/repos/testing-i686/LICENSE (from rev 238330, 
tftp-hpa/trunk/LICENSE)
===
--- testing-i686/LICENSE(rev 0)
+++ testing-i686/LICENSE2015-05-02 00:56:51 UTC (rev 238331)
@@ -0,0 +1,32 @@
+/*
+ * Copyright (c) 1983, 1993
+ *  The Regents of the University of California.  All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *notice, this list of conditions and the following disclaimer in the
+ *documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *must display the following acknowledgement:
+ *  This product includes software developed by the University of
+ *  California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ *may be used to endorse or promote products derived from this software
+ *without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */

Copied: tftp-hpa/repos/testing-i686/PKGBUILD (from rev 238330, 
tftp-hpa/trunk/PKGBUILD)

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

2015-05-01 Thread Eric Bélanger
Date: Saturday, May 2, 2015 @ 05:03:48
  Author: eric
Revision: 238333

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

Added:
  gitg/repos/extra-i686/PKGBUILD
(from rev 238332, gitg/trunk/PKGBUILD)
  gitg/repos/extra-i686/gitg.install
(from rev 238332, gitg/trunk/gitg.install)
  gitg/repos/extra-x86_64/PKGBUILD
(from rev 238332, gitg/trunk/PKGBUILD)
  gitg/repos/extra-x86_64/gitg.install
(from rev 238332, gitg/trunk/gitg.install)
Deleted:
  gitg/repos/extra-i686/PKGBUILD
  gitg/repos/extra-i686/gitg.install
  gitg/repos/extra-x86_64/PKGBUILD
  gitg/repos/extra-x86_64/gitg.install

---+
 /PKGBUILD |   68 
 /gitg.install |   26 
 extra-i686/PKGBUILD   |   34 --
 extra-i686/gitg.install   |   13 
 extra-x86_64/PKGBUILD |   34 --
 extra-x86_64/gitg.install |   13 
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-02 03:01:16 UTC (rev 238332)
+++ extra-i686/PKGBUILD 2015-05-02 03:03:48 UTC (rev 238333)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=gitg
-pkgver=3.16.0
-pkgrel=1
-pkgdesc='A GIT repository viewer based on GTK+'
-arch=('i686' 'x86_64')
-url='https://git.gnome.org/browse/gitg/'
-license=('GPL')
-depends=('gtksourceview3' 'git' 'desktop-file-utils' 'libgit2-glib' 'libgee' 
'webkit2gtk' 'libpeas' 'gtkspell3')
-makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common')
-groups=('gnome-extra')
-install=gitg.install
-source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('e5b1da6f3234b497c7c418f5efc5bd9c29257864a67687dea1a0efe74f29cf89')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  rm -f *.gir
-  NOCONFIGURE=1  ./autogen.sh
-  ./configure --prefix=/usr
-
-  # Don't overlink
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
-
-  make Gitg-1.0.gir
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gitg/repos/extra-i686/PKGBUILD (from rev 238332, gitg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-02 03:03:48 UTC (rev 238333)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=gitg
+pkgver=3.16.1
+pkgrel=1
+pkgdesc='A GIT repository viewer based on GTK+'
+arch=('i686' 'x86_64')
+url='https://git.gnome.org/browse/gitg/'
+license=('GPL')
+depends=('gtksourceview3' 'git' 'desktop-file-utils' 'libgit2-glib' 'libgee' 
'webkit2gtk' 'libpeas' 'gtkspell3')
+makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common')
+groups=('gnome-extra')
+install=gitg.install
+source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('914e964402dadda152c7e034906d84e266c474603f58bc1a300f2a1659615569')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  rm -f *.gir
+  NOCONFIGURE=1  ./autogen.sh
+  ./configure --prefix=/usr
+
+  # Don't overlink
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+
+  make Gitg-1.0.gir
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/gitg.install
===
--- extra-i686/gitg.install 2015-05-02 03:01:16 UTC (rev 238332)
+++ extra-i686/gitg.install 2015-05-02 03:03:48 UTC (rev 238333)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: gitg/repos/extra-i686/gitg.install (from rev 238332, 
gitg/trunk/gitg.install)
===
--- extra-i686/gitg.install (rev 0)
+++ extra-i686/gitg.install 2015-05-02 03:03:48 UTC (rev 238333)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- 

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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 16:02:26
  Author: spupykin
Revision: 132592

archrelease: copy trunk to community-any

Added:
  devede/repos/community-any/PKGBUILD
(from rev 132591, devede/trunk/PKGBUILD)
Deleted:
  devede/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 14:02:18 UTC (rev 132591)
+++ PKGBUILD2015-05-01 14:02:26 UTC (rev 132592)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Javier 'Phrodo_00' Aravena phrodo...@gmail.com
-# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=devede
-pkgver=4.0
-pkgrel=1
-pkgdesc=A program to create VideoDVDs and CDs
-arch=('any')
-url=http://www.rastersoft.com/programas/devede.html;
-license=('GPL3')
-depends=('mplayer' 'mencoder' 'ffmpeg' 'dvdauthor' 'vcdimager'
-'cdrkit' 'pygtk' 'ttf-dejavu' 'python-dbus')
-source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz)
-md5sums=('8707e935f16d029387fbc8743a75')
-
-package() {
-  cd ${srcdir}/${pkgname}ng-$pkgver
-  python setup.py install --root=${pkgdir}
-}

Copied: devede/repos/community-any/PKGBUILD (from rev 132591, 
devede/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 14:02:26 UTC (rev 132592)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Javier 'Phrodo_00' Aravena phrodo...@gmail.com
+# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=devede
+pkgver=4.0
+pkgrel=2
+pkgdesc=A program to create VideoDVDs and CDs
+arch=('any')
+url=http://www.rastersoft.com/programas/devede.html;
+license=('GPL3')
+depends=('mplayer' 'mencoder' 'ffmpeg' 'dvdauthor' 'vcdimager'
+'cdrkit' 'pygtk' 'ttf-dejavu' 'python-dbus' 'python-cairo')
+source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz)
+md5sums=('8707e935f16d029387fbc8743a75')
+
+package() {
+  cd ${srcdir}/${pkgname}ng-$pkgver
+  python setup.py install --root=${pkgdir}
+}


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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 16:02:18
  Author: spupykin
Revision: 132591

upgpkg: devede 4.0-2

upd

Modified:
  devede/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 13:49:15 UTC (rev 132590)
+++ PKGBUILD2015-05-01 14:02:18 UTC (rev 132591)
@@ -6,13 +6,13 @@
 
 pkgname=devede
 pkgver=4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A program to create VideoDVDs and CDs
 arch=('any')
 url=http://www.rastersoft.com/programas/devede.html;
 license=('GPL3')
 depends=('mplayer' 'mencoder' 'ffmpeg' 'dvdauthor' 'vcdimager'
-'cdrkit' 'pygtk' 'ttf-dejavu' 'python-dbus')
+'cdrkit' 'pygtk' 'ttf-dejavu' 'python-dbus' 'python-cairo')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/rastersoft/devedeng/archive/$pkgver.tar.gz)
 md5sums=('8707e935f16d029387fbc8743a75')
 


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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 16:02:38
  Author: spupykin
Revision: 132594

archrelease: copy trunk to community-any

Added:
  python2-application/repos/community-any/PKGBUILD
(from rev 132593, python2-application/trunk/PKGBUILD)
Deleted:
  python2-application/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 14:02:29 UTC (rev 132593)
+++ PKGBUILD2015-05-01 14:02:38 UTC (rev 132594)
@@ -1,19 +0,0 @@
-# $Id: PKGBUILD 76944 2012-10-02 14:30:53Z spupykin $
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=python2-application
-pkgver=1.4.0
-pkgrel=2
-pkgdesc=a collection of modules that are useful when building python 
applications
-arch=(any)
-#url=http://ag-projects.com;
-url=http://pypi.python.org/pypi/python-application/;
-license=('GPL')
-depends=('python2')
-source=(http://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)
-md5sums=('2c1ec745f512ffd5892b0dd415074834')
-
-package() {
-  cd $srcdir/python-application-$pkgver
-  python2 setup.py install --root=$pkgdir
-}

Copied: python2-application/repos/community-any/PKGBUILD (from rev 132593, 
python2-application/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 14:02:38 UTC (rev 132594)
@@ -0,0 +1,19 @@
+# $Id: PKGBUILD 76944 2012-10-02 14:30:53Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=python2-application
+pkgver=1.5.0
+pkgrel=1
+pkgdesc=a collection of modules that are useful when building python 
applications
+arch=(any)
+#url=http://ag-projects.com;
+url=http://pypi.python.org/pypi/python-application/;
+license=('GPL')
+depends=('python2')
+source=(http://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)
+md5sums=('b2975cbca8bebf37cf33bfdaeb4aea56')
+
+package() {
+  cd $srcdir/python-application-$pkgver
+  python2 setup.py install --root=$pkgdir
+}


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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 16:02:29
  Author: spupykin
Revision: 132593

upgpkg: python2-application 1.5.0-1

upd

Modified:
  python2-application/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 14:02:26 UTC (rev 132592)
+++ PKGBUILD2015-05-01 14:02:29 UTC (rev 132593)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=python2-application
-pkgver=1.4.0
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 pkgdesc=a collection of modules that are useful when building python 
applications
 arch=(any)
 #url=http://ag-projects.com;
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('python2')
 
source=(http://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)
-md5sums=('2c1ec745f512ffd5892b0dd415074834')
+md5sums=('b2975cbca8bebf37cf33bfdaeb4aea56')
 
 package() {
   cd $srcdir/python-application-$pkgver


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

2015-05-01 Thread Bartłomiej Piotrowski
Date: Friday, May 1, 2015 @ 18:00:53
  Author: bpiotrowski
Revision: 238319

Enable ngx_http_geoip_module

Modified:
  nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 15:24:39 UTC (rev 238318)
+++ PKGBUILD2015-05-01 16:00:53 UTC (rev 238319)
@@ -12,7 +12,7 @@
 arch=('i686' 'x86_64')
 url='http://nginx.org'
 license=('custom')
-depends=('pcre' 'zlib' 'openssl')
+depends=('pcre' 'zlib' 'openssl' 'geoip')
 makedepends=('hardening-wrapper')
 backup=('etc/nginx/fastcgi.conf'
 'etc/nginx/fastcgi_params'
@@ -67,7 +67,8 @@
 --with-http_flv_module \
 --with-http_mp4_module \
 --with-http_secure_link_module \
---with-http_sub_module
+--with-http_sub_module \
+--with-http_geoip_module
 
   make
 }


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 18:01:18
  Author: andyrtr
Revision: 238320

upgpkg: nvidia-340xx-lts 340.76-6

rebuild for 3.14.40

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

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 16:00:53 UTC (rev 238319)
+++ PKGBUILD2015-05-01 16:01:18 UTC (rev 238320)
@@ -4,12 +4,12 @@
 pkgname=nvidia-340xx-lts
 pkgver=340.76
 _extramodules=extramodules-3.14-lts
-pkgrel=5
+pkgrel=6
 pkgdesc=NVIDIA drivers for linux-lts
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux-lts=3.14.34' nvidia-340xx-utils=$pkgver 'libgl')
-makedepends=('linux-lts-headers=3.14.34')
+depends=('linux-lts=3.14.40' nvidia-340xx-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.40')
 provides=('nvidia-340xx')
 conflicts=('nvidia-lts')
 license=('custom')


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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 17:18:56
  Author: spupykin
Revision: 132595

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

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 132594, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 132594, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 132594, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 132594, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 132594, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 132594, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 132594, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 132594, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-i686/PKGBUILD
  sdlmame/repos/community-i686/extras.tar.gz
  sdlmame/repos/community-i686/sdlmame.install
  sdlmame/repos/community-i686/sdlmame.sh
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

--+
 /PKGBUILD|  186 +
 /sdlmame.install |   16 +++
 /sdlmame.sh  |  112 ++
 community-i686/PKGBUILD  |   92 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   56 ---
 community-x86_64/PKGBUILD|   92 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   56 ---
 9 files changed, 314 insertions(+), 312 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-01 14:02:38 UTC (rev 132594)
+++ community-i686/PKGBUILD 2015-05-01 15:18:56 UTC (rev 132595)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: robb_force robb_fo...@holybuffalo.net
-# Maintainer: JJDaNiMoTh jjdanim...@gmail.com
-
-pkgname=sdlmame
-pkgver=0.160
-#_patchlevel=`echo $pkgver | cut -f2 -du`
-#_basever=`echo $pkgver | cut -f1,2 -d.`
-_basever=$pkgver
-pkgrel=1
-pkgdesc=A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support.
-url=http://mamedev.org/;
-license=('custom:MAME License')
-arch=('i686' 'x86_64')
-depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt4')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-#DLAGENTS=('http::/usr/bin/wget -U Mozilla/5.0 (X11; U; Linux x86_64; en-US; 
rv:1.9.1.2) Gecko/20090804 Shiretoko/3.5.2 -c -t 3 --waitretry=3 -O %o %u')
-install=sdlmame.install
-
-#for i in `seq 1 ${_patchlevel}`; do
-#  _patches=${_patches} 
sdlmame-${_basever/./}u${i}_diff.zip::http://mamedev.org/updates/${_basever/./}u${i}_diff.zip;
-#done
-
-source=(mame${_basever/./}s.zip::http://mamedev.org/downloader.php?file=releases/mame${_basever/./}s.zip;
-   sdlmame.sh
-   extras.tar.gz
-   ${_patches})
-md5sums=('b06e079e64cabbfbbf04d978b4dd79cd'
- '0cced0fe9868cc56129600fb4bd5b9ed'
- '420b61240bf5ae11615ba7c6100ee00d')
-
-build() {
-  cd $srcdir/
-  if [ $NOEXTRACT -eq 0 ]; then
-unzip mame.zip
-find . -type f -not -name \*.png | xargs perl -pi -e 's/\r\n?/\n/g'
-#for i in `seq 1 ${_patchlevel}`; do
-#  msg Patch#$i
-#  patch -p0 -E ${_basever/./}u$i.diff
-#done
-  fi
-  make NOWERROR=1 OPTIMIZE=2 PYTHON=python2
-  make tools NOWERROR=1 OPTIMIZE=2 PYTHON=python2
-}
-
-package() {
-  cd $srcdir/
-  # Install the sdlmame script
-  install -Dm755 $srcdir/${pkgname}.sh $pkgdir/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame $pkgdir/usr/share/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 $pkgdir/usr/share/${pkgname}/${pkgname}
-
-  install -m755 chdman $pkgdir/usr/share/${pkgname}/chdman
-  install -m755 jedutil $pkgdir/usr/share/${pkgname}/jedutil
-  install -m755 regrep $pkgdir/usr/share/${pkgname}/regrep
-  install -m755 romcmp $pkgdir/usr/share/${pkgname}/romcmp
-  install -m755 testkeys $pkgdir/usr/share/${pkgname}/testkeys
-  install -m755 src2html $pkgdir/usr/share/${pkgname}/src2html
-  install -m755 srcclean $pkgdir/usr/share/${pkgname}/srcclean
-  install -m755 ldverify $pkgdir/usr/share/${pkgname}/ldverify
-  install -m755 ldresample $pkgdir/usr/share/${pkgname}/ldresample
-
-  # Install the extra bits
-  install -d $pkgdir/usr/share/${pkgname}/{artwork,ctrlr,keymaps,shader}
-  install -d $pkgdir/usr/share/man/man1
-  install -d $pkgdir/usr/share/man/man6
-  install -m644 src/osd/modules/opengl/shader/glsl*.*h 
$pkgdir/usr/share/${pkgname}/shader/
-  install -m644 src/osd/sdl/man/*.1* $pkgdir/usr/share/man/man1/
-  

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 18:01:41
  Author: andyrtr
Revision: 238321

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

Added:
  nvidia-340xx-lts/repos/testing-i686/
  nvidia-340xx-lts/repos/testing-i686/PKGBUILD
(from rev 238320, nvidia-340xx-lts/trunk/PKGBUILD)
  nvidia-340xx-lts/repos/testing-i686/nvidia-340xx-lts.install
(from rev 238320, nvidia-340xx-lts/trunk/nvidia-340xx-lts.install)
  nvidia-340xx-lts/repos/testing-x86_64/
  nvidia-340xx-lts/repos/testing-x86_64/PKGBUILD
(from rev 238320, nvidia-340xx-lts/trunk/PKGBUILD)
  nvidia-340xx-lts/repos/testing-x86_64/nvidia-340xx-lts.install
(from rev 238320, nvidia-340xx-lts/trunk/nvidia-340xx-lts.install)

-+
 testing-i686/PKGBUILD   |   49 ++
 testing-i686/nvidia-340xx-lts.install   |   15 +
 testing-x86_64/PKGBUILD |   49 ++
 testing-x86_64/nvidia-340xx-lts.install |   15 +
 4 files changed, 128 insertions(+)

Copied: nvidia-340xx-lts/repos/testing-i686/PKGBUILD (from rev 238320, 
nvidia-340xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-01 16:01:41 UTC (rev 238321)
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 223837 2014-10-04 03:09:12Z svenstaro $
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-340xx-lts
+pkgver=340.76
+_extramodules=extramodules-3.14-lts
+pkgrel=6
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.40' nvidia-340xx-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.40')
+provides=('nvidia-340xx')
+conflicts=('nvidia-lts')
+license=('custom')
+install=${pkgname}.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('8064c0a0998c3e7ee3c98ac1832b8194'
+ '440df290e213280d6e20d4d4be6f8b4c')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+  cd ${_pkg}/kernel
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+
+  cd uvm
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+  install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
+  install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
+
${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia-uvm.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/*.ko
+  install -d -m755 ${pkgdir}/usr/lib/modprobe.d
+  echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+  echo blacklist nvidiafb  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+  install -D -m644 ${srcdir}/${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE
+}

Copied: nvidia-340xx-lts/repos/testing-i686/nvidia-340xx-lts.install (from rev 
238320, nvidia-340xx-lts/trunk/nvidia-340xx-lts.install)
===
--- testing-i686/nvidia-340xx-lts.install   (rev 0)
+++ testing-i686/nvidia-340xx-lts.install   2015-05-01 16:01:41 UTC (rev 
238321)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-340xx-lts/repos/testing-x86_64/PKGBUILD (from rev 238320, 
nvidia-340xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-01 16:01:41 UTC (rev 238321)
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 223837 2014-10-04 03:09:12Z svenstaro $
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-340xx-lts
+pkgver=340.76
+_extramodules=extramodules-3.14-lts
+pkgrel=6
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.40' nvidia-340xx-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.40')
+provides=('nvidia-340xx')
+conflicts=('nvidia-lts')
+license=('custom')
+install=${pkgname}.install
+options=(!strip)

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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 18:58:29
  Author: spupykin
Revision: 132604

upgpkg: squid 3.5.4-1

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 16:56:44 UTC (rev 132603)
+++ PKGBUILD2015-05-01 16:58:29 UTC (rev 132604)
@@ -5,8 +5,8 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=squid
-pkgver=3.5.3
-pkgrel=2
+pkgver=3.5.4
+pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
 url='http://www.squid-cache.org'
@@ -21,7 +21,7 @@
 'etc/squid/cachemgr.conf'
 'etc/squid/msntauth.conf')
 install=$pkgname.install
-source=(http://www.squid-cache.org/Versions/v3/3.5/$pkgname-$pkgver.tar.bz2;
+source=(http://www.squid-cache.org/Versions/v3/3.5/$pkgname-$pkgver.tar.xz;
 'squid.pam'
 'squid.service'
 'squid.tmpfiles'
@@ -28,7 +28,7 @@
 'squid.sysusers'
 'squid-rotate.service'
 'squid-rotate.timer')
-md5sums=('86078afe2e5da08fb815a9216f695c1e'
+md5sums=('5b53d5bb47fa033b76857f7956d0c36b'
  '270977cdd9b47ef44c0c427ab9034777'
  'ceeb57c69ebb165676219222f109a24e'
  'd243da117c1aee03c0cc6052f023a380'


[arch-commits] Commit in squid/repos (32 files)

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 18:58:57
  Author: spupykin
Revision: 132605

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

Added:
  squid/repos/community-i686/PKGBUILD
(from rev 132604, squid/trunk/PKGBUILD)
  squid/repos/community-i686/squid-rotate.service
(from rev 132604, squid/trunk/squid-rotate.service)
  squid/repos/community-i686/squid-rotate.timer
(from rev 132604, squid/trunk/squid-rotate.timer)
  squid/repos/community-i686/squid.install
(from rev 132604, squid/trunk/squid.install)
  squid/repos/community-i686/squid.pam
(from rev 132604, squid/trunk/squid.pam)
  squid/repos/community-i686/squid.service
(from rev 132604, squid/trunk/squid.service)
  squid/repos/community-i686/squid.sysusers
(from rev 132604, squid/trunk/squid.sysusers)
  squid/repos/community-i686/squid.tmpfiles
(from rev 132604, squid/trunk/squid.tmpfiles)
  squid/repos/community-x86_64/PKGBUILD
(from rev 132604, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid-rotate.service
(from rev 132604, squid/trunk/squid-rotate.service)
  squid/repos/community-x86_64/squid-rotate.timer
(from rev 132604, squid/trunk/squid-rotate.timer)
  squid/repos/community-x86_64/squid.install
(from rev 132604, squid/trunk/squid.install)
  squid/repos/community-x86_64/squid.pam
(from rev 132604, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.service
(from rev 132604, squid/trunk/squid.service)
  squid/repos/community-x86_64/squid.sysusers
(from rev 132604, squid/trunk/squid.sysusers)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 132604, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-i686/PKGBUILD
  squid/repos/community-i686/squid-rotate.service
  squid/repos/community-i686/squid-rotate.timer
  squid/repos/community-i686/squid.install
  squid/repos/community-i686/squid.pam
  squid/repos/community-i686/squid.service
  squid/repos/community-i686/squid.sysusers
  squid/repos/community-i686/squid.tmpfiles
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid-rotate.service
  squid/repos/community-x86_64/squid-rotate.timer
  squid/repos/community-x86_64/squid.install
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.service
  squid/repos/community-x86_64/squid.sysusers
  squid/repos/community-x86_64/squid.tmpfiles

---+
 /PKGBUILD |  214 
 /squid-rotate.service |   18 ++
 /squid-rotate.timer   |   14 ++
 /squid.install|   18 ++
 /squid.pam|8 +
 /squid.service|   26 +++
 /squid.sysusers   |2 
 /squid.tmpfiles   |2 
 community-i686/PKGBUILD   |  107 
 community-i686/squid-rotate.service   |9 -
 community-i686/squid-rotate.timer |7 -
 community-i686/squid.install  |9 -
 community-i686/squid.pam  |4 
 community-i686/squid.service  |   13 -
 community-i686/squid.sysusers |1 
 community-i686/squid.tmpfiles |1 
 community-x86_64/PKGBUILD |  107 
 community-x86_64/squid-rotate.service |9 -
 community-x86_64/squid-rotate.timer   |7 -
 community-x86_64/squid.install|9 -
 community-x86_64/squid.pam|4 
 community-x86_64/squid.service|   13 -
 community-x86_64/squid.sysusers   |1 
 community-x86_64/squid.tmpfiles   |1 
 24 files changed, 302 insertions(+), 302 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-01 16:58:29 UTC (rev 132604)
+++ community-i686/PKGBUILD 2015-05-01 16:58:57 UTC (rev 132605)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Mark Coolen mark.coo...@gmail.com
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Kevin Piche ke...@archlinux.org
-
-pkgname=squid
-pkgver=3.5.3
-pkgrel=2
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'perl' 'libltdl' 'libcap' 'nettle')
-makedepends=('libcap' 'krb5')
-optdepends=('gnutls: for squidclient')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-'etc/squid/mime.conf'
-'etc/squid/errorpage.css'
-'etc/squid/cachemgr.conf'
-'etc/squid/msntauth.conf')
-install=$pkgname.install
-source=(http://www.squid-cache.org/Versions/v3/3.5/$pkgname-$pkgver.tar.bz2;
-'squid.pam'
-'squid.service'
-'squid.tmpfiles'
-'squid.sysusers'
-'squid-rotate.service'
-'squid-rotate.timer')
-md5sums=('86078afe2e5da08fb815a9216f695c1e'
- '270977cdd9b47ef44c0c427ab9034777'
- 

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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 19:33:47
  Author: bluewind
Revision: 132607

archrelease: copy trunk to community-any

Added:
  vimpager/repos/community-any/PKGBUILD
(from rev 132606, vimpager/trunk/PKGBUILD)
  vimpager/repos/community-any/license.txt
(from rev 132606, vimpager/trunk/license.txt)
Deleted:
  vimpager/repos/community-any/PKGBUILD
  vimpager/repos/community-any/license.txt

-+
 PKGBUILD|   72 +++
 license.txt |  574 +-
 2 files changed, 323 insertions(+), 323 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 17:33:44 UTC (rev 132606)
+++ PKGBUILD2015-05-01 17:33:47 UTC (rev 132607)
@@ -1,36 +0,0 @@
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=vimpager
-pkgver=2.01
-pkgrel=1
-pkgdesc=A vim-based script to use as a PAGER.
-arch=('any')
-url=http://www.vim.org/scripts/script.php?script_id=1723;
-license=('custom:BSD')
-depends=('vim')
-noextract=(vimpager-$pkgver.tar.gz)
-backup=(etc/vimpagerrc)
-source=(vimpager-$pkgver.tar.gz::https://github.com/rkitover/vimpager/tarball/$pkgver;)
-md5sums=('52dd76c9017a4aaa52f0df9d5803953f')
-
-build() {
-   cd ${srcdir}
-
-   mkdir -p $srcdir/vimpager-$pkgver
-   bsdtar --strip-components=1 -C $srcdir/vimpager-$pkgver -xf 
vimpager-$pkgver.tar.gz
-
-   cd $srcdir/vimpager-$pkgver
-
-   sed -i s/\r$// vimpager
-}
-
-package() {
-   cd ${srcdir}/vimpager-$pkgver
-
-   make SYSCONFDIR=/etc PREFIX=/usr DESTDIR=$pkgdir install
-
-   install -Dm644 README 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-   sed -n '/LICENSE AND COPYRIGHT/,$p' -i 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-}

Copied: vimpager/repos/community-any/PKGBUILD (from rev 132606, 
vimpager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 17:33:47 UTC (rev 132607)
@@ -0,0 +1,36 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=vimpager
+pkgver=2.02
+pkgrel=1
+pkgdesc=A vim-based script to use as a PAGER.
+arch=('any')
+url=http://www.vim.org/scripts/script.php?script_id=1723;
+license=('custom:BSD')
+depends=('vim')
+noextract=(vimpager-$pkgver.tar.gz)
+backup=(etc/vimpagerrc)
+source=(vimpager-$pkgver.tar.gz::https://github.com/rkitover/vimpager/tarball/$pkgver;)
+md5sums=('c62b86a51e1a5fd612b4d471dd59f030')
+
+build() {
+   cd ${srcdir}
+
+   mkdir -p $srcdir/vimpager-$pkgver
+   bsdtar --strip-components=1 -C $srcdir/vimpager-$pkgver -xf 
vimpager-$pkgver.tar.gz
+
+   cd $srcdir/vimpager-$pkgver
+
+   sed -i s/\r$// vimpager
+}
+
+package() {
+   cd ${srcdir}/vimpager-$pkgver
+
+   make SYSCONFDIR=/etc PREFIX=/usr DESTDIR=$pkgdir install
+
+   install -Dm644 README 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+   sed -n '/LICENSE AND COPYRIGHT/,$p' -i 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}

Deleted: license.txt
===
--- license.txt 2015-05-01 17:33:44 UTC (rev 132606)
+++ license.txt 2015-05-01 17:33:47 UTC (rev 132607)
@@ -1,287 +0,0 @@
-*uganda.txt*For Vim version 7.2.  Last change: 2008 Jun 21
-
-
- VIM REFERENCE MANUALby Bram Moolenaar
-
-
-   *uganda* *Uganda* *copying* *copyright* *license*
-SUMMARY
-   *iccf* *ICCF*
-Vim is Charityware.  You can use and copy it as much as you like, but you are
-encouraged to make a donation for needy children in Uganda.  Please see |kcc|
-below or visit the ICCF web site, available at these URLs:
-
-   http://iccf-holland.org/
-   http://www.vim.org/iccf/
-   http://www.iccf.nl/
-
-You can also sponsor the development of Vim.  Vim sponsors can vote for
-features.  See |sponsor|.  The money goes to Uganda anyway.
-
-The Open Publication License applies to the Vim documentation, see
-|manual-copyright|.
-
-=== begin of license ===
-
-VIM LICENSE
-
-I)  There are no restrictions on distributing unmodified copies of Vim except
-that they must include this license text.  You can also distribute
-unmodified parts of Vim, likewise unrestricted except that they must
-include this license text.  You are also allowed to include executables
-that you made from the unmodified Vim sources, plus your own usage
-examples and Vim scripts.
-
-II) It is allowed to distribute a modified (or extended) version of Vim,
-including executables and/or source code, when the following four
-conditions are met:
-1) This license text must 

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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 19:33:44
  Author: bluewind
Revision: 132606

upgpkg: vimpager 2.02-1

upstream update

Modified:
  vimpager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 16:58:57 UTC (rev 132605)
+++ PKGBUILD2015-05-01 17:33:44 UTC (rev 132606)
@@ -3,7 +3,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=vimpager
-pkgver=2.01
+pkgver=2.02
 pkgrel=1
 pkgdesc=A vim-based script to use as a PAGER.
 arch=('any')
@@ -13,7 +13,7 @@
 noextract=(vimpager-$pkgver.tar.gz)
 backup=(etc/vimpagerrc)
 
source=(vimpager-$pkgver.tar.gz::https://github.com/rkitover/vimpager/tarball/$pkgver;)
-md5sums=('52dd76c9017a4aaa52f0df9d5803953f')
+md5sums=('c62b86a51e1a5fd612b4d471dd59f030')
 
 build() {
cd ${srcdir}


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 19:40:48
  Author: bluewind
Revision: 132609

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 17:40:45 UTC (rev 132608)
+++ PKGBUILD2015-05-01 17:40:48 UTC (rev 132609)
@@ -1,35 +0,0 @@
-# $Id$
-
-_pkgbasename=libvorbis
-pkgname=lib32-$_pkgbasename
-pkgver=1.3.4
-pkgrel=1
-pkgdesc=Vorbis codec library (32-bit)
-arch=('x86_64')
-license=('custom')
-url=http://www.xiph.org/ogg/vorbis/;
-depends=('lib32-libogg' $_pkgbasename)
-makedepends=(gcc-multilib)
-source=(http://downloads.xiph.org/releases/vorbis/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('8851c593a52d1ef9c526d95174873852')
-
-build() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  #-march=i686 optimizes too much, strip it out
-  CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static 
--libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-libvorbis/repos/multilib-x86_64/PKGBUILD (from rev 132608, 
lib32-libvorbis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 17:40:48 UTC (rev 132609)
@@ -0,0 +1,35 @@
+# $Id$
+
+_pkgbasename=libvorbis
+pkgname=lib32-$_pkgbasename
+pkgver=1.3.5
+pkgrel=1
+pkgdesc=Vorbis codec library (32-bit)
+arch=('x86_64')
+license=('custom')
+url=http://www.xiph.org/ogg/vorbis/;
+depends=('lib32-libogg' $_pkgbasename)
+provides=('libvorbisfile.so' 'libvorbis.so' 'libvorbisenc.so')
+makedepends=(gcc-multilib)
+source=(http://downloads.xiph.org/releases/vorbis/${_pkgbasename}-${pkgver}.tar.gz)
+md5sums=('7220e089f3be3412a2317d6fde9e3944')
+
+build() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  ./configure --prefix=/usr --disable-static --libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}


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

2015-05-01 Thread Giovanni Scafora
Date: Friday, May 1, 2015 @ 18:19:40
  Author: giovanni
Revision: 238322

upgpkg: amule 10869-1

upstream release

Modified:
  amule/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 16:01:41 UTC (rev 238321)
+++ PKGBUILD2015-05-01 16:19:40 UTC (rev 238322)
@@ -6,7 +6,7 @@
 # Contributor: Anatol Pomozov anatol.pomo...@gmail.com
 
 pkgname=amule
-pkgver=10866
+pkgver=10869
 pkgrel=1
 pkgdesc=An eMule-like client for ed2k p2p network
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;
 'amuled.systemd'
 'amuleweb.systemd')
-md5sums=('877fd8b795845b1258185fd17d4989b8'
+md5sums=('61e927a202be0ae8b337617df69840bd'
  '59772c41860e238f1c822feb8ca8d47f'
  '05975c5d94bfc41fddb894d98b1115d5')
 


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

2015-05-01 Thread Giovanni Scafora
Date: Friday, May 1, 2015 @ 18:19:52
  Author: giovanni
Revision: 238323

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

Added:
  amule/repos/extra-i686/PKGBUILD
(from rev 238322, amule/trunk/PKGBUILD)
  amule/repos/extra-i686/amule.install
(from rev 238322, amule/trunk/amule.install)
  amule/repos/extra-i686/amuled.systemd
(from rev 238322, amule/trunk/amuled.systemd)
  amule/repos/extra-i686/amuleweb.systemd
(from rev 238322, amule/trunk/amuleweb.systemd)
  amule/repos/extra-x86_64/PKGBUILD
(from rev 238322, amule/trunk/PKGBUILD)
  amule/repos/extra-x86_64/amule.install
(from rev 238322, amule/trunk/amule.install)
  amule/repos/extra-x86_64/amuled.systemd
(from rev 238322, amule/trunk/amuled.systemd)
  amule/repos/extra-x86_64/amuleweb.systemd
(from rev 238322, amule/trunk/amuleweb.systemd)
Deleted:
  amule/repos/extra-i686/PKGBUILD
  amule/repos/extra-i686/amule.install
  amule/repos/extra-i686/amuled.systemd
  amule/repos/extra-i686/amuleweb.systemd
  amule/repos/extra-x86_64/PKGBUILD
  amule/repos/extra-x86_64/amule.install
  amule/repos/extra-x86_64/amuled.systemd
  amule/repos/extra-x86_64/amuleweb.systemd

---+
 /PKGBUILD |  108 
 /amule.install|   58 +
 /amuled.systemd   |   22 
 /amuleweb.systemd |   26 +
 extra-i686/PKGBUILD   |   54 
 extra-i686/amule.install  |   29 --
 extra-i686/amuled.systemd |   11 
 extra-i686/amuleweb.systemd   |   13 
 extra-x86_64/PKGBUILD |   54 
 extra-x86_64/amule.install|   29 --
 extra-x86_64/amuled.systemd   |   11 
 extra-x86_64/amuleweb.systemd |   13 
 12 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-01 16:19:40 UTC (rev 238322)
+++ extra-i686/PKGBUILD 2015-05-01 16:19:52 UTC (rev 238323)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Henrik Ronellenfitsch seari...@web.de
-# Contributor: Alessio Sergi sergi.alessio {at} gmail.com
-# Contributor: Dario 'Dax' Vilardi dax [at] deelab [dot] org
-# Contributor: Anatol Pomozov anatol.pomo...@gmail.com
-
-pkgname=amule
-pkgver=10866
-pkgrel=1
-pkgdesc=An eMule-like client for ed2k p2p network
-arch=('i686' 'x86_64')
-url=http://www.amule.org;
-license=('GPL')
-depends=('wxgtk' 'wxgtk2.8' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm')
-install=amule.install
-source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;
-'amuled.systemd'
-'amuleweb.systemd')
-md5sums=('877fd8b795845b1258185fd17d4989b8'
- '59772c41860e238f1c822feb8ca8d47f'
- '05975c5d94bfc41fddb894d98b1115d5')
-
-build() {
-  cd ${srcdir}/aMule-SVN-r${pkgver}
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --enable-cas \
-  --enable-wxcas \
-  --enable-amule-daemon \
-  --enable-amulecmd \
-  --enable-amule-gui \
-  --enable-alc \
-  --enable-alcc \
-  --enable-webserver \
-  --disable-debug \
-  --enable-optimize \
-  --enable-ccache \
-  --enable-geoip \
-  --enable-upnp \
-  --with-wxversion=2.8
-
-  make
-}
-
-package() {
-  cd ${srcdir}/aMule-SVN-r${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 ${srcdir}/amuled.systemd 
${pkgdir}/usr/lib/systemd/system/amuled.service
-  install -D -m644 ${srcdir}/amuleweb.systemd 
${pkgdir}/usr/lib/systemd/system/amuleweb.service
-}

Copied: amule/repos/extra-i686/PKGBUILD (from rev 238322, amule/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-01 16:19:52 UTC (rev 238323)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Henrik Ronellenfitsch seari...@web.de
+# Contributor: Alessio Sergi sergi.alessio {at} gmail.com
+# Contributor: Dario 'Dax' Vilardi dax [at] deelab [dot] org
+# Contributor: Anatol Pomozov anatol.pomo...@gmail.com
+
+pkgname=amule
+pkgver=10869
+pkgrel=1
+pkgdesc=An eMule-like client for ed2k p2p network
+arch=('i686' 'x86_64')
+url=http://www.amule.org;
+license=('GPL')
+depends=('wxgtk' 'wxgtk2.8' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm')
+install=amule.install
+source=(http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2;
+'amuled.systemd'
+'amuleweb.systemd')
+md5sums=('61e927a202be0ae8b337617df69840bd'
+ '59772c41860e238f1c822feb8ca8d47f'
+ '05975c5d94bfc41fddb894d98b1115d5')
+
+build() {
+  cd ${srcdir}/aMule-SVN-r${pkgver}
+
+  ./configure 

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

2015-05-01 Thread Giovanni Scafora
Date: Friday, May 1, 2015 @ 18:56:44
  Author: giovanni
Revision: 132603

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

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

+
 /PKGBUILD  |   88 +++
 /sigil.install |   24 ++
 community-i686/PKGBUILD|   49 -
 community-i686/sigil.install   |   12 -
 community-x86_64/PKGBUILD  |   49 -
 community-x86_64/sigil.install |   12 -
 6 files changed, 112 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-01 16:56:36 UTC (rev 132602)
+++ community-i686/PKGBUILD 2015-05-01 16:56:44 UTC (rev 132603)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Larry Hajali larryhaja [at] gmail [dot] com
-
-pkgname=sigil
-pkgver=0.8.6
-pkgrel=1
-pkgdesc=WYSIWYG ebook editor
-arch=('i686' 'x86_64')
-url=https://github.com/user-none/Sigil/;
-license=('GPL3')
-depends=('qt5-webkit' 'boost-libs' 'python' 'hicolor-icon-theme')
-makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'gendesk' 'boost')
-install=sigil.install
-source=(https://github.com/user-none/Sigil/releases/download/${pkgver}/Sigil-${pkgver}-Code.zip;)
-md5sums=('c32364fd891f562e259c50615191fc45')
-
-build() {
-  cd ${srcdir}/Sigil-${pkgver}
-  gendesk -n $startdir/PKGBUILD
-
-  mkdir build
-  cd build
-
-  cmake -G Unix Makefiles \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_C_FLAGS:STRING=${CFLAGS} \
--DCMAKE_CXX_FLAGS:STRING=${CXXFLAGS} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON ..
-
-  make
-}
-
-package() {
-  cd ${srcdir}/Sigil-${pkgver}/build
-  make install DESTDIR=${pkgdir}
-
-  install -d -m 0755 ${pkgdir}/usr/share/applications
-  install -m 0644 ${srcdir}/Sigil-${pkgver}/${pkgname}.desktop \
-${pkgdir}/usr/share/applications
-
-  for _pic in 16 32 48 128 256; do
-install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \
-  ${pkgdir}/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
-  done
-  install -Dm644 ../src/Sigil/Resource_Files/icon/app_icon_128.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-}

Copied: sigil/repos/community-i686/PKGBUILD (from rev 132602, 
sigil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-01 16:56:44 UTC (rev 132603)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Larry Hajali larryhaja [at] gmail [dot] com
+
+pkgname=sigil
+pkgver=0.8.6
+pkgrel=2
+pkgdesc=WYSIWYG ebook editor
+arch=('i686' 'x86_64')
+url=https://github.com/user-none/Sigil/;
+license=('GPL3')
+depends=('qt5-webkit' 'boost-libs' 'python' 'hicolor-icon-theme')
+makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'boost')
+install=sigil.install
+source=(https://github.com/user-none/Sigil/releases/download/${pkgver}/Sigil-${pkgver}-Code.zip;)
+md5sums=('c32364fd891f562e259c50615191fc45')
+
+build() {
+  cd ${srcdir}/Sigil-${pkgver}
+
+  mkdir build
+  cd build
+
+  cmake -G Unix Makefiles \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_C_FLAGS:STRING=${CFLAGS} \
+-DCMAKE_CXX_FLAGS:STRING=${CXXFLAGS} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON ..
+
+  make
+}
+
+package() {
+  cd ${srcdir}/Sigil-${pkgver}/build
+  make install DESTDIR=${pkgdir}
+
+  for _pic in 16 32 48 128 256; do
+install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \
+  ${pkgdir}/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
+  done
+  install -Dm644 ../src/Sigil/Resource_Files/icon/app_icon_128.png \
+$pkgdir/usr/share/pixmaps/$pkgname.png
+}

Deleted: community-i686/sigil.install
===
--- community-i686/sigil.install2015-05-01 16:56:36 UTC (rev 132602)
+++ community-i686/sigil.install2015-05-01 16:56:44 UTC (rev 132603)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: sigil/repos/community-i686/sigil.install (from rev 132602, 

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

2015-05-01 Thread Giovanni Scafora
Date: Friday, May 1, 2015 @ 18:56:36
  Author: giovanni
Revision: 132602

upgpkg: sigil 0.8.6-2

rebuild

Modified:
  sigil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 16:08:09 UTC (rev 132601)
+++ PKGBUILD2015-05-01 16:56:36 UTC (rev 132602)
@@ -4,13 +4,13 @@
 
 pkgname=sigil
 pkgver=0.8.6
-pkgrel=1
+pkgrel=2
 pkgdesc=WYSIWYG ebook editor
 arch=('i686' 'x86_64')
 url=https://github.com/user-none/Sigil/;
 license=('GPL3')
 depends=('qt5-webkit' 'boost-libs' 'python' 'hicolor-icon-theme')
-makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'gendesk' 'boost')
+makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'boost')
 install=sigil.install
 
source=(https://github.com/user-none/Sigil/releases/download/${pkgver}/Sigil-${pkgver}-Code.zip;)
 md5sums=('c32364fd891f562e259c50615191fc45')
@@ -17,7 +17,6 @@
 
 build() {
   cd ${srcdir}/Sigil-${pkgver}
-  gendesk -n $startdir/PKGBUILD
 
   mkdir build
   cd build
@@ -36,10 +35,6 @@
   cd ${srcdir}/Sigil-${pkgver}/build
   make install DESTDIR=${pkgdir}
 
-  install -d -m 0755 ${pkgdir}/usr/share/applications
-  install -m 0644 ${srcdir}/Sigil-${pkgver}/${pkgname}.desktop \
-${pkgdir}/usr/share/applications
-
   for _pic in 16 32 48 128 256; do
 install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \
   ${pkgdir}/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png


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

2015-05-01 Thread Anatol Pomozov
Date: Friday, May 1, 2015 @ 18:08:09
  Author: anatolik
Revision: 132601

Reduce installation messages pressure to users

Print useful information about suid bit on installation only.
Do not print useless 'see more info at man page'.

Less installation messages is better!

Modified:
  tup/trunk/tup.install

-+
 tup.install |9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

Modified: tup.install
===
--- tup.install 2015-05-01 15:26:07 UTC (rev 132600)
+++ tup.install 2015-05-01 16:08:09 UTC (rev 132601)
@@ -3,12 +3,10 @@
 
 suid_msg() {
   if [ -f $suid_set ]; then
-echo $binary has suid bit set. It allows you to run commands in chroot-ed 
environment (e.g. for full dependency tracking).
-echo See 'man tup' for more information.
+echo  $binary has suid bit set. It allows you to run commands in 
chroot-ed environment (e.g. for full dependency tracking).
   else
-echo If you want to be able to run commands in chroot-ed environment 
(e.g. for full dependency tracking) \
- you need to set suid bit on tup binary: 'sudo chmod +s $binary'.
-echo See 'man tup' for more information.
+echo  If you want to be able to run commands in chroot-ed environment 
(e.g. for full dependency tracking)
+echo set suid bit on tup binary: 'sudo chmod +s $binary'.
   fi
 }
 
@@ -23,7 +21,6 @@
 }
 
 post_upgrade() {
-  suid_msg
   [ -f $suid_set ]  chmod +s $binary
   rm -f $suid_set
   return 0


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 19:40:45
  Author: bluewind
Revision: 132608

upgpkg: lib32-libvorbis 1.3.5-1

upstream update

Modified:
  lib32-libvorbis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 17:33:47 UTC (rev 132607)
+++ PKGBUILD2015-05-01 17:40:45 UTC (rev 132608)
@@ -2,7 +2,7 @@
 
 _pkgbasename=libvorbis
 pkgname=lib32-$_pkgbasename
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 pkgdesc=Vorbis codec library (32-bit)
 arch=('x86_64')
@@ -9,9 +9,10 @@
 license=('custom')
 url=http://www.xiph.org/ogg/vorbis/;
 depends=('lib32-libogg' $_pkgbasename)
+provides=('libvorbisfile.so' 'libvorbis.so' 'libvorbisenc.so')
 makedepends=(gcc-multilib)
 
source=(http://downloads.xiph.org/releases/vorbis/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('8851c593a52d1ef9c526d95174873852')
+md5sums=('7220e089f3be3412a2317d6fde9e3944')
 
 build() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}
@@ -20,8 +21,7 @@
   export CXX=g++ -m32
   export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
 
-  #-march=i686 optimizes too much, strip it out
-  CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static 
--libdir=/usr/lib32
+  ./configure --prefix=/usr --disable-static --libdir=/usr/lib32
   make
 }
 


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 19:45:36
  Author: bluewind
Revision: 132611

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 17:45:33 UTC (rev 132610)
+++ PKGBUILD2015-05-01 17:45:36 UTC (rev 132611)
@@ -1,49 +0,0 @@
-# $Id$
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-_pkgbasename=readline
-pkgname=lib32-$_pkgbasename
-_basever=6.3
-_patchlevel=000 #prepare for some patches
-pkgver=6.3.006
-pkgrel=1
-pkgdesc=GNU readline library (32-bit)
-arch=(x86_64)
-url=http://tiswww.case.edu/php/chet/readline/rltop.html;
-license=('GPL')
-depends=('lib32-glibc' 'lib32-ncurses' $_pkgbasename)
-makedepends=('gcc-multilib')
-source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz)
-if [ $_patchlevel -gt 00 ]; then
-for (( p=1; p=$((10#${_patchlevel})); p++ )); do
-  source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 %03d $p){,.sig})
-done
-fi
-md5sums=('33c8fb279e981274f485fd91da77e94a')
-
-build() {
-  cd ${srcdir}/${_pkgbasename}-$_basever
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  for (( p=1; p=$((10#${_patchlevel})); p++ )); do
-msg applying patch readline${_basever//./}-$(printf %03d $p)
-patch -Np0 -i $srcdir/readline${_basever//./}-$(printf %03d $p)
-  done
-
-  # Remove RPATH from shared objects (FS#14366)
-  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
-
-  ./configure --prefix=/usr --libdir=/usr/lib32
-  make SHLIB_LIBS=-lncurses
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-$_basever
-
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-}

Copied: lib32-readline/repos/multilib-x86_64/PKGBUILD (from rev 132610, 
lib32-readline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 17:45:36 UTC (rev 132611)
@@ -0,0 +1,67 @@
+# $Id$
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+_pkgbasename=readline
+pkgname=lib32-$_pkgbasename
+_basever=6.3
+_patchlevel=008 #prepare for some patches
+pkgver=$_basever.$_patchlevel
+pkgrel=1
+pkgdesc=GNU readline library (32-bit)
+arch=(x86_64)
+url=http://tiswww.case.edu/php/chet/readline/rltop.html;
+license=('GPL')
+depends=('lib32-glibc' 'lib32-ncurses' $_pkgbasename)
+makedepends=('gcc-multilib')
+source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz)
+if [ $_patchlevel -gt 00 ]; then
+for (( p=1; p=$((10#${_patchlevel})); p++ )); do
+  source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 %03d $p){,.sig})
+done
+fi
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+md5sums=('33c8fb279e981274f485fd91da77e94a'
+ '4343f5ea9b0f42447f102fb61576b398'
+ 'SKIP'
+ '700295212f7e2978577feaee584afddb'
+ 'SKIP'
+ 'af4963862f5156fbf9111c2c6fa86ed7'
+ 'SKIP'
+ '11f9def89803a5052db3ba72394ce14f'
+ 'SKIP'
+ '93721c31cd225393f80cb3aadb165544'
+ 'SKIP'
+ '71dc6ecce66d1489b96595f55d142a52'
+ 'SKIP'
+ '062a08ed60679d3c4878710b3d595b65'
+ 'SKIP'
+ 'ee1c04072154826870848d8b218d7b04'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${_pkgbasename}-$_basever
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  for (( p=1; p=$((10#${_patchlevel})); p++ )); do
+msg applying patch readline${_basever//./}-$(printf %03d $p)
+patch -Np0 -i $srcdir/readline${_basever//./}-$(printf %03d $p)
+  done
+
+  # Remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-$_basever
+
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+}


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 19:45:33
  Author: bluewind
Revision: 132610

upgpkg: lib32-readline 6.3.008-1

upstream update

Modified:
  lib32-readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 17:40:48 UTC (rev 132609)
+++ PKGBUILD2015-05-01 17:45:33 UTC (rev 132610)
@@ -5,8 +5,8 @@
 _pkgbasename=readline
 pkgname=lib32-$_pkgbasename
 _basever=6.3
-_patchlevel=000 #prepare for some patches
-pkgver=6.3.006
+_patchlevel=008 #prepare for some patches
+pkgver=$_basever.$_patchlevel
 pkgrel=1
 pkgdesc=GNU readline library (32-bit)
 arch=(x86_64)
@@ -20,8 +20,26 @@
   source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 %03d $p){,.sig})
 done
 fi
-md5sums=('33c8fb279e981274f485fd91da77e94a')
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
 
+md5sums=('33c8fb279e981274f485fd91da77e94a'
+ '4343f5ea9b0f42447f102fb61576b398'
+ 'SKIP'
+ '700295212f7e2978577feaee584afddb'
+ 'SKIP'
+ 'af4963862f5156fbf9111c2c6fa86ed7'
+ 'SKIP'
+ '11f9def89803a5052db3ba72394ce14f'
+ 'SKIP'
+ '93721c31cd225393f80cb3aadb165544'
+ 'SKIP'
+ '71dc6ecce66d1489b96595f55d142a52'
+ 'SKIP'
+ '062a08ed60679d3c4878710b3d595b65'
+ 'SKIP'
+ 'ee1c04072154826870848d8b218d7b04'
+ 'SKIP')
+
 build() {
   cd ${srcdir}/${_pkgbasename}-$_basever
 


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:40:13
  Author: andyrtr
Revision: 132625

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

Added:
  tp_smapi-lts/repos/community-testing-i686/
  tp_smapi-lts/repos/community-testing-i686/PKGBUILD
(from rev 132624, tp_smapi-lts/trunk/PKGBUILD)
  tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install
(from rev 132624, tp_smapi-lts/trunk/tp_smapi-lts.install)
  tp_smapi-lts/repos/community-testing-x86_64/
  tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 132624, tp_smapi-lts/trunk/PKGBUILD)
  tp_smapi-lts/repos/community-testing-x86_64/tp_smapi-lts.install
(from rev 132624, tp_smapi-lts/trunk/tp_smapi-lts.install)

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

Copied: tp_smapi-lts/repos/community-testing-i686/PKGBUILD (from rev 132624, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-01 19:40:13 UTC (rev 132625)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-3.14-lts
+pkgver=0.41
+pkgrel=39
+pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts=3.14.40' 'linux-lts3.15')
+makedepends=('linux-lts-headers=3.14.40' 'linux-lts-headers3.15')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+
+  _kernver=$( ${_extramodules}/version)
+
+  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
+ -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver=$( ${_extramodules}/version)
+
+  make -C ${_extramodules%/*}/${_kernver}/build \
+INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
+M=${srcdir}/${_pkgname}-${pkgver} modules_install
+
+  cd ${pkgdir}/${_extramodules%/*}
+  mv ${_kernver}/extra ${_extramodules##*/}
+  rmdir ${_kernver}
+
+  # compress kernel modules
+  find ${pkgdir} -name *.ko -exec gzip -9 {} +
+
+  # load module on startup
+  echo tp_smapi  ${srcdir}/${pkgname}.conf
+  install -Dm644 ${srcdir}/${pkgname}.conf 
${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
+
+  # update kernel version in install file
+  sed -ri s#^(extramodules=).*\$#\1${_extramodules}# 
${startdir}/${pkgname}.install
+}

Copied: tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install (from 
rev 132624, tp_smapi-lts/trunk/tp_smapi-lts.install)
===
--- community-testing-i686/tp_smapi-lts.install (rev 0)
+++ community-testing-i686/tp_smapi-lts.install 2015-05-01 19:40:13 UTC (rev 
132625)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-3.14-lts
+
+post_install() {
+  depmod -v $( $extramodules/version) /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 132624, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-05-01 19:40:13 UTC (rev 132625)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-3.14-lts
+pkgver=0.41
+pkgrel=39
+pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts=3.14.40' 'linux-lts3.15')

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:40:05
  Author: andyrtr
Revision: 132624

upgpkg: tp_smapi-lts 0.41-39

rebuild for 3.14.40

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:38:31 UTC (rev 132623)
+++ PKGBUILD2015-05-01 19:40:05 UTC (rev 132624)
@@ -12,13 +12,13 @@
 _pkgname=tp_smapi
 _extramodules=/usr/lib/modules/extramodules-3.14-lts
 pkgver=0.41
-pkgrel=38
+pkgrel=39
 pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux-lts=3.14.36' 'linux-lts3.15')
-makedepends=('linux-lts-headers=3.14.36' 'linux-lts-headers3.15')
+depends=('linux-lts=3.14.40' 'linux-lts3.15')
+makedepends=('linux-lts-headers=3.14.40' 'linux-lts-headers3.15')
 install=${pkgname}.install
 
source=(https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
 md5sums=('63c683415c764568f6bf17c7eabe4752')


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 21:52:52
  Author: bluewind
Revision: 238327

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

Added:
  spamassassin/repos/extra-i686/PKGBUILD
(from rev 238326, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/extra-i686/net-dns.patch
(from rev 238326, spamassassin/trunk/net-dns.patch)
  spamassassin/repos/extra-i686/spamassassin.install
(from rev 238326, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/extra-i686/spamassassin.service
(from rev 238326, spamassassin/trunk/spamassassin.service)
  spamassassin/repos/extra-x86_64/PKGBUILD
(from rev 238326, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/extra-x86_64/net-dns.patch
(from rev 238326, spamassassin/trunk/net-dns.patch)
  spamassassin/repos/extra-x86_64/spamassassin.install
(from rev 238326, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/extra-x86_64/spamassassin.service
(from rev 238326, spamassassin/trunk/spamassassin.service)
Deleted:
  spamassassin/repos/extra-i686/PKGBUILD
  spamassassin/repos/extra-i686/net-dns.patch
  spamassassin/repos/extra-i686/spamassassin.install
  spamassassin/repos/extra-i686/spamassassin.service
  spamassassin/repos/extra-x86_64/PKGBUILD
  spamassassin/repos/extra-x86_64/net-dns.patch
  spamassassin/repos/extra-x86_64/spamassassin.install
  spamassassin/repos/extra-x86_64/spamassassin.service

---+
 /PKGBUILD |  124 
 /net-dns.patch|   82 +++
 /spamassassin.install |   64 ++
 /spamassassin.service |   24 ++
 extra-i686/PKGBUILD   |   66 ---
 extra-i686/net-dns.patch  |   41 ---
 extra-i686/spamassassin.install   |   32 -
 extra-i686/spamassassin.service   |   12 ---
 extra-x86_64/PKGBUILD |   66 ---
 extra-x86_64/net-dns.patch|   41 ---
 extra-x86_64/spamassassin.install |   32 -
 extra-x86_64/spamassassin.service |   12 ---
 12 files changed, 294 insertions(+), 302 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-01 19:52:11 UTC (rev 238326)
+++ extra-i686/PKGBUILD 2015-05-01 19:52:52 UTC (rev 238327)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Manolis Tzanidakis
-pkgname=spamassassin
-pkgver=3.4.0
-pkgrel=4
-pkgdesc=A mail filter to identify spam.
-arch=('i686' 'x86_64')
-license=('APACHE')
-url=http://spamassassin.apache.org;
-depends=('openssl' 'zlib' 're2c' 'perl-net-dns' 'perl-io-socket-ssl'
- 'perl-libwww' 'perl-mail-spf' 'perl-http-message' 'perl-net-http'
- 'perl-io-socket-inet6' 'perl-mail-dkim' 'perl-crypt-ssleay')
-makedepends=('razor' 'perl-dbi')
-optdepends=('razor: to identify collaborately-flagged spam')
-backup=('etc/mail/spamassassin/local.cf'
-'etc/mail/spamassassin/init.pre'
-'etc/mail/spamassassin/v310.pre'
-'etc/mail/spamassassin/v312.pre'
-'etc/mail/spamassassin/v320.pre'
-'etc/mail/spamassassin/v330.pre')
-install=${pkgname}.install
-source=(http://www.us.apache.org/dist/${pkgname}/source/Mail-SpamAssassin-${pkgver}.tar.gz{,.asc}
-'spamassassin.service' net-dns.patch)
-validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
-md5sums=('5d0b50cee3bfa905cca35c33296c8c2a'
- 'SKIP'
- '8adce028f25387ac3bc4dba697d209ed'
- '0bcf0419608ec4ac200e794563620f31')
-
-prepare() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-
-  sed -i t/sa_compile.t \
- -e 's#/foo/bin/spamassassin#/foo/bin/site_perl/spamassassin#' \
- -e 's#/foo/bin/sa-compile#/foo/bin/site_perl/sa-compile#'
-
-  patch -p1 -i $srcdir/net-dns.patch
-}
-
-build() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor \
-  CONTACT_ADDRESS=root@localhost ENABLE_SSL=yes PERL_TAINT=no
-  make 
-}
-
-check() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-
-  # parallel tests cause lots of failures; disable for now
-  #export HARNESS_OPTIONS=j$(echo $MAKEFLAGS | sed 
's/.*-j\([0-9][0-9]*\).*/\1/')
-
-  make test
-}
-
-package() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 ${srcdir}/spamassassin.service 
${pkgdir}/usr/lib/systemd/system/spamassassin.service
-  install -d -o 182 -g 182 -m 755 $pkgdir/var/lib/spamassassin
-}

Copied: spamassassin/repos/extra-i686/PKGBUILD (from rev 238326, 
spamassassin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-01 19:52:52 UTC (rev 238327)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:25:57
  Author: andyrtr
Revision: 238324

upgpkg: nvidia-lts 349.16-2

rebuild for 3.14.40

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 16:19:52 UTC (rev 238323)
+++ PKGBUILD2015-05-01 19:25:57 UTC (rev 238324)
@@ -4,12 +4,12 @@
 pkgname=nvidia-lts
 pkgver=349.16
 _extramodules=extramodules-3.14-lts
-pkgrel=1
+pkgrel=2
 pkgdesc=NVIDIA drivers for linux-lts
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux-lts=3.14.36' nvidia-utils=$pkgver 'libgl')
-makedepends=('linux-lts-headers=3.14.36')
+depends=('linux-lts=3.14.40' nvidia-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.40')
 provides=('nvidia')
 license=('custom')
 install=nvidia-lts.install


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:26:21
  Author: andyrtr
Revision: 238325

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

Added:
  nvidia-lts/repos/testing-i686/
  nvidia-lts/repos/testing-i686/PKGBUILD
(from rev 238324, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-i686/nvidia-lts.install
(from rev 238324, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 238324, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install
(from rev 238324, nvidia-lts/trunk/nvidia-lts.install)

---+
 testing-i686/PKGBUILD |   54 
 testing-i686/nvidia-lts.install   |   15 ++
 testing-x86_64/PKGBUILD   |   54 
 testing-x86_64/nvidia-lts.install |   15 ++
 4 files changed, 138 insertions(+)

Copied: nvidia-lts/repos/testing-i686/PKGBUILD (from rev 238324, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-01 19:26:21 UTC (rev 238325)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=349.16
+_extramodules=extramodules-3.14-lts
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.40' nvidia-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.40')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+
+if [[ $CARCH = x86_64 ]]; then
+cd uvm
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+fi
+}
+
+package() {
+install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+  
${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
+  
+if [[ $CARCH = x86_64 ]]; then
+install -D -m644 ${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko \
+${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko
+fi
+  
+gzip ${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/*.ko
+install -d -m755 ${pkgdir}/usr/lib/modprobe.d
+echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+echo blacklist nvidiafb  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+install -D -m644 ${srcdir}/${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE
+}

Copied: nvidia-lts/repos/testing-i686/nvidia-lts.install (from rev 238324, 
nvidia-lts/trunk/nvidia-lts.install)
===
--- testing-i686/nvidia-lts.install (rev 0)
+++ testing-i686/nvidia-lts.install 2015-05-01 19:26:21 UTC (rev 238325)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 238324, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-01 19:26:21 UTC (rev 238325)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=349.16
+_extramodules=extramodules-3.14-lts
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.40' nvidia-utils=$pkgver 'libgl')
+makedepends=('linux-lts-headers=3.14.40')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+source=(ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('59597d5dfaaf0fc83a5e78d29a97ccac'
+ '3e04208affde8c35a8b96975eec0486b')
+
+[[ 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:32:01
  Author: andyrtr
Revision: 132618

upgpkg: acpi_call-lts 1.1.0-17

rebuild for 3.14.40

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:01:58 UTC (rev 132617)
+++ PKGBUILD2015-05-01 19:32:01 UTC (rev 132618)
@@ -5,14 +5,14 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=16
+pkgrel=17
 _extramodules=extramodules-3.14-lts
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')
 url=http://github.com/mkottman/${pkgname%-*};
 license=('GPL')
-depends=('linux-lts=3.14.36')
-makedepends=('linux-lts-headers=3.14.36')
+depends=('linux-lts=3.14.40')
+makedepends=('linux-lts-headers=3.14.40')
 provides=(${pkgname%-*})
 install=${pkgname%-*}.install
 source=(acpi_call-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz)


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:32:10
  Author: andyrtr
Revision: 132619

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

Added:
  acpi_call-lts/repos/community-testing-i686/
  acpi_call-lts/repos/community-testing-i686/PKGBUILD
(from rev 132618, acpi_call-lts/trunk/PKGBUILD)
  acpi_call-lts/repos/community-testing-i686/acpi_call.install
(from rev 132618, acpi_call-lts/trunk/acpi_call.install)
  acpi_call-lts/repos/community-testing-x86_64/
  acpi_call-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 132618, acpi_call-lts/trunk/PKGBUILD)
  acpi_call-lts/repos/community-testing-x86_64/acpi_call.install
(from rev 132618, acpi_call-lts/trunk/acpi_call.install)

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

Copied: acpi_call-lts/repos/community-testing-i686/PKGBUILD (from rev 132618, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-01 19:32:10 UTC (rev 132619)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: mortzu m...@mortzu.de
+# Contributor: fnord0 fno...@riseup.net
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=17
+_extramodules=extramodules-3.14-lts
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url=http://github.com/mkottman/${pkgname%-*};
+license=('GPL')
+depends=('linux-lts=3.14.40')
+makedepends=('linux-lts-headers=3.14.40')
+provides=(${pkgname%-*})
+install=${pkgname%-*}.install
+source=(acpi_call-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname%-*}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KVERSION=${_kernver}
+}
+
+package() {
+  cd ${pkgname%-*}-${pkgver}
+
+  install -dm 755 ${pkgdir}/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname%-*}.ko ${pkgdir}/usr/lib/modules/${_extramodules}/
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko
+  echo ${pkgname%-*}  ${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 ${pkgdir}/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
${pkgdir}/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call-lts/repos/community-testing-i686/acpi_call.install (from rev 
132618, acpi_call-lts/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2015-05-01 19:32:10 UTC (rev 
132619)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-3.14-lts
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 132618, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-05-01 19:32:10 UTC (rev 132619)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: mortzu m...@mortzu.de
+# Contributor: fnord0 fno...@riseup.net
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=17
+_extramodules=extramodules-3.14-lts
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url=http://github.com/mkottman/${pkgname%-*};
+license=('GPL')
+depends=('linux-lts=3.14.40')
+makedepends=('linux-lts-headers=3.14.40')
+provides=(${pkgname%-*})
+install=${pkgname%-*}.install
+source=(acpi_call-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname%-*}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KVERSION=${_kernver}
+}
+
+package() {
+  cd ${pkgname%-*}-${pkgver}
+
+  install -dm 755 ${pkgdir}/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname%-*}.ko ${pkgdir}/usr/lib/modules/${_extramodules}/
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko
+  echo ${pkgname%-*}  ${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 ${pkgdir}/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:38:21
  Author: andyrtr
Revision: 132622

upgpkg: r8168-lts 8.039.00-10

rebuild for 3.14.40

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:36:10 UTC (rev 132621)
+++ PKGBUILD2015-05-01 19:38:21 UTC (rev 132622)
@@ -4,7 +4,7 @@
 pkgname=r8168-lts
 _pkgname=r8168
 pkgver=8.039.00
-pkgrel=9
+pkgrel=10
 pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
 #url=http://www.realtek.com.tw;
 url=https://code.google.com/p/r8168/;


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:44:42
  Author: andyrtr
Revision: 132626

upgpkg: virtualbox-modules-lts 4.3.26-3

rebuild for 3.14.40

Modified:
  virtualbox-modules-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:40:13 UTC (rev 132625)
+++ PKGBUILD2015-05-01 19:44:42 UTC (rev 132626)
@@ -6,12 +6,12 @@
 pkgbase=virtualbox-modules-lts
 pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
 pkgver=4.3.26
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
-makedepends=('linux-lts=3.14.34' 'linux-lts3.15'
- 'linux-lts-headers=3.14.34' 'linux-lts-headers3.15'
+makedepends=('linux-lts=3.14.40' 'linux-lts3.15'
+ 'linux-lts-headers=3.14.40' 'linux-lts-headers3.15'
  virtualbox-host-dkms=$pkgver
  virtualbox-guest-dkms=$pkgver)
 
@@ -34,7 +34,7 @@
 package_virtualbox-host-modules-lts(){
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux-lts=3.14.34' 'linux-lts3.15')
+  depends=('linux-lts=3.14.40' 'linux-lts3.15')
   replaces=('virtualbox-modules-lts')
   conflicts=('virtualbox-modules-lts')
   provides=(virtualbox-host-modules=$pkgver)
@@ -50,7 +50,7 @@
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Guest kernel modules for VirtualBox'
   license=('GPL')
-  depends=('linux-lts=3.14.34' 'linux-lts3.15')
+  depends=('linux-lts=3.14.40' 'linux-lts3.15')
   replaces=('virtualbox-archlinux-modules-lts')
   conflicts=('virtualbox-archlinux-modules-lts')
   provides=(virtualbox-guest-modules=$pkgver)


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:44:58
  Author: andyrtr
Revision: 132627

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

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

---+
 community-testing-i686/PKGBUILD   |   66 ++
 community-testing-i686/build.sh   |   58 
 community-testing-i686/virtualbox-guest-modules-lts.install   |   21 +++
 community-testing-i686/virtualbox-host-modules-lts.install|   23 +++
 community-testing-x86_64/PKGBUILD |   66 ++
 community-testing-x86_64/build.sh |   58 
 community-testing-x86_64/virtualbox-guest-modules-lts.install |   21 +++
 community-testing-x86_64/virtualbox-host-modules-lts.install  |   23 +++
 8 files changed, 336 insertions(+)

Copied: virtualbox-modules-lts/repos/community-testing-i686/PKGBUILD (from rev 
132626, virtualbox-modules-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-01 19:44:58 UTC (rev 132627)
@@ -0,0 +1,66 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Sébastien Luttringer
+
+pkgbase=virtualbox-modules-lts
+pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
+pkgver=4.3.26
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux-lts=3.14.40' 'linux-lts3.15'
+ 'linux-lts-headers=3.14.40' 'linux-lts-headers3.15'
+ virtualbox-host-dkms=$pkgver
+ virtualbox-guest-dkms=$pkgver)
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-3.14-lts
+
+build() {
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  # dkms need modification to be run as user
+  cp -r /var/lib/dkms .
+  echo dkms_tree='$srcdir/dkms'  dkms.conf
+  # build host modules
+  msg2 'Host modules'
+  dkms --dkmsframework dkms.conf build vboxhost/$pkgver -k $_kernver
+  # build guest modules
+  msg2 'Guest modules'
+  dkms --dkmsframework dkms.conf build vboxguest/$pkgver -k $_kernver
+}
+
+package_virtualbox-host-modules-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Host kernel modules for VirtualBox'
+  depends=('linux-lts=3.14.40' 'linux-lts3.15')
+  replaces=('virtualbox-modules-lts')
+  conflicts=('virtualbox-modules-lts')
+  provides=(virtualbox-host-modules=$pkgver)
+  install=virtualbox-host-modules-lts.install
+
+  cd dkms/vboxhost/$pkgver/$_kernver/$CARCH/module
+  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
+  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
+  find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}
+
+package_virtualbox-guest-modules-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Guest kernel modules for VirtualBox'
+  license=('GPL')
+  depends=('linux-lts=3.14.40' 'linux-lts3.15')
+  replaces=('virtualbox-archlinux-modules-lts')
+  conflicts=('virtualbox-archlinux-modules-lts')
+  provides=(virtualbox-guest-modules=$pkgver)
+  install=virtualbox-guest-modules-lts.install
+
+  cd dkms/vboxguest/$pkgver/$_kernver/$CARCH/module
+  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
+  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
+  find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=()

Copied: 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:36:01
  Author: andyrtr
Revision: 132620

upgpkg: bbswitch-lts 0.8-8

rebuild for 3.14.40

Modified:
  bbswitch-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:32:10 UTC (rev 132619)
+++ PKGBUILD2015-05-01 19:36:01 UTC (rev 132620)
@@ -7,13 +7,13 @@
 _basename=bbswitch
 pkgver=0.8
 _extramodules=extramodules-3.14-lts # Don't forget to update 
bbswitch-lts.install
-pkgrel=7
+pkgrel=8
 pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
 arch=('i686' 'x86_64')
 url=(http://github.com/Bumblebee-Project/bbswitch;)
 license=('GPL')
-depends=('linux-lts=3.14.36' 'linux-lts3.15')
-makedepends=('linux-lts-headers=3.14.36' 'linux-lts-headers3.15')
+depends=('linux-lts=3.14.40' 'linux-lts3.15')
+makedepends=('linux-lts-headers=3.14.40' 'linux-lts-headers3.15')
 install=${pkgname}.install
 
source=(${_basename}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
 md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')


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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:36:10
  Author: andyrtr
Revision: 132621

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

Added:
  bbswitch-lts/repos/community-testing-i686/
  bbswitch-lts/repos/community-testing-i686/PKGBUILD
(from rev 132620, bbswitch-lts/trunk/PKGBUILD)
  bbswitch-lts/repos/community-testing-i686/bbswitch-lts.install
(from rev 132620, bbswitch-lts/trunk/bbswitch-lts.install)
  bbswitch-lts/repos/community-testing-x86_64/
  bbswitch-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 132620, bbswitch-lts/trunk/PKGBUILD)
  bbswitch-lts/repos/community-testing-x86_64/bbswitch-lts.install
(from rev 132620, bbswitch-lts/trunk/bbswitch-lts.install)

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

Copied: bbswitch-lts/repos/community-testing-i686/PKGBUILD (from rev 132620, 
bbswitch-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-01 19:36:10 UTC (rev 132621)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 120281 2014-10-06 16:24:13Z tpowa $
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: M0Rf30
+# Contributor: Samsagax samsa...@gmail.com
+
+pkgname=bbswitch-lts
+_basename=bbswitch
+pkgver=0.8
+_extramodules=extramodules-3.14-lts # Don't forget to update 
bbswitch-lts.install
+pkgrel=8
+pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
+arch=('i686' 'x86_64')
+url=(http://github.com/Bumblebee-Project/bbswitch;)
+license=('GPL')
+depends=('linux-lts=3.14.40' 'linux-lts3.15')
+makedepends=('linux-lts-headers=3.14.40' 'linux-lts-headers3.15')
+install=${pkgname}.install
+source=(${_basename}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${_basename}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${_basename}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
+}

Copied: bbswitch-lts/repos/community-testing-i686/bbswitch-lts.install (from 
rev 132620, bbswitch-lts/trunk/bbswitch-lts.install)
===
--- community-testing-i686/bbswitch-lts.install (rev 0)
+++ community-testing-i686/bbswitch-lts.install 2015-05-01 19:36:10 UTC (rev 
132621)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: bbswitch-lts/repos/community-testing-x86_64/PKGBUILD (from rev 132620, 
bbswitch-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-05-01 19:36:10 UTC (rev 132621)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 120281 2014-10-06 16:24:13Z tpowa $
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: M0Rf30
+# Contributor: Samsagax samsa...@gmail.com
+
+pkgname=bbswitch-lts
+_basename=bbswitch
+pkgver=0.8
+_extramodules=extramodules-3.14-lts # Don't forget to update 
bbswitch-lts.install
+pkgrel=8
+pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
+arch=('i686' 'x86_64')
+url=(http://github.com/Bumblebee-Project/bbswitch;)
+license=('GPL')
+depends=('linux-lts=3.14.40' 'linux-lts3.15')
+makedepends=('linux-lts-headers=3.14.40' 'linux-lts-headers3.15')
+install=${pkgname}.install
+source=(${_basename}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${_basename}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${_basename}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
+}

Copied: bbswitch-lts/repos/community-testing-x86_64/bbswitch-lts.install (from 
rev 132620, bbswitch-lts/trunk/bbswitch-lts.install)
===
--- 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 21:38:31
  Author: andyrtr
Revision: 132623

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

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

+
 /PKGBUILD  |   70 +++
 /r8168-lts.install |   34 +
 community-testing-i686/PKGBUILD|   35 -
 community-testing-i686/r8168-lts.install   |   17 --
 community-testing-x86_64/PKGBUILD  |   35 -
 community-testing-x86_64/r8168-lts.install |   17 --
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-05-01 19:38:21 UTC (rev 132622)
+++ community-testing-i686/PKGBUILD 2015-05-01 19:38:31 UTC (rev 132623)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=r8168-lts
-_pkgname=r8168
-pkgver=8.039.00
-pkgrel=9
-pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
-#url=http://www.realtek.com.tw;
-url=https://code.google.com/p/r8168/;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('glibc' linux-lts=3.14.40 linux-lts3.15)
-makedepends=(linux-lts-headers=3.14.40 linux-lts-headers3.15)
-install=$pkgname.install
-source=(#ftp://WebUser:wK9xBuD5@95.130.192.218/cn/nic/r8168-$pkgver.tar.bz2;
-   http://r8168dl.appspot.com/files/r8168-$pkgver.tar.bz2)
-sha256sums=('767d922270274e781d8d42493a0021db1cafcb0388ac62564d0c0c3d82703edd')
-
-_extramodules=extramodules-3.14-lts
-
-build() {
-   cd $_pkgname-$pkgver
-   local _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-   make -C /usr/lib/modules/$_kernver/build \
-   SUBDIRS=$srcdir/$_pkgname-$pkgver/src \
-   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
-   modules
-}
-
-package() {
-   cd $_pkgname-$pkgver
-   install -Dm644 src/$_pkgname.ko 
$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko
-   find $pkgdir -name '*.ko' -exec gzip -9 {} +
-}

Copied: r8168-lts/repos/community-testing-i686/PKGBUILD (from rev 132622, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-01 19:38:31 UTC (rev 132623)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.039.00
+pkgrel=10
+pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
+#url=http://www.realtek.com.tw;
+url=https://code.google.com/p/r8168/;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('glibc' linux-lts=3.14.40 linux-lts3.15)
+makedepends=(linux-lts-headers=3.14.40 linux-lts-headers3.15)
+install=$pkgname.install
+source=(#ftp://WebUser:wK9xBuD5@95.130.192.218/cn/nic/r8168-$pkgver.tar.bz2;
+   http://r8168dl.appspot.com/files/r8168-$pkgver.tar.bz2)
+sha256sums=('767d922270274e781d8d42493a0021db1cafcb0388ac62564d0c0c3d82703edd')
+
+_extramodules=extramodules-3.14-lts
+
+build() {
+   cd $_pkgname-$pkgver
+   local _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+   make -C /usr/lib/modules/$_kernver/build \
+   SUBDIRS=$srcdir/$_pkgname-$pkgver/src \
+   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
+   modules
+}
+
+package() {
+   cd $_pkgname-$pkgver
+   install -Dm644 src/$_pkgname.ko 
$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko
+   find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}

Deleted: community-testing-i686/r8168-lts.install
===
--- community-testing-i686/r8168-lts.install2015-05-01 19:38:21 UTC (rev 
132622)
+++ community-testing-i686/r8168-lts.install2015-05-01 19:38:31 UTC (rev 
132623)
@@ -1,17 +0,0 @@
-rebuild_module_dependencies() {
-   EXTRAMODULES='extramodules-3.14-lts'
-   depmod $(cat /lib/modules/$EXTRAMODULES/version)
-}
-
-post_install() {
-  rebuild_module_dependencies
-   echo ' The module r8168 conflicts with 

[arch-commits] Commit in spamassassin/trunk (net-dns.patch)

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 21:53:06
  Author: bluewind
Revision: 238328

upgpkg: spamassassin 3.4.1-1

upstream update

Deleted:
  spamassassin/trunk/net-dns.patch

---+
 net-dns.patch |   41 -
 1 file changed, 41 deletions(-)

Deleted: net-dns.patch
===
--- net-dns.patch   2015-05-01 19:52:52 UTC (rev 238327)
+++ net-dns.patch   2015-05-01 19:53:06 UTC (rev 238328)
@@ -1,41 +0,0 @@
-Fix FS#40707 by
-
-- disabling the failing version check. We don't ship versions that old anyway.
-- fix nameservers fetching from Net::DNS
-

-diff -Nur a/lib/Mail/SpamAssassin/Dns.pm b/lib/Mail/SpamAssassin/Dns.pm
 a/lib/Mail/SpamAssassin/Dns.pm 2014-06-05 19:34:56.299391918 +0200
-+++ b/lib/Mail/SpamAssassin/Dns.pm 2014-06-05 19:35:56.816256160 +0200
-@@ -518,7 +518,7 @@
-   }
- }
- else {
--  if ($Net::DNS::VERSION  0.34) {
-+  if (0) {
-   warn(dns: Net::DNS version is $Net::DNS::VERSION, but need 0.34);
-   return $IS_DNS_AVAILABLE;
-   }
-diff -Nur a/lib/Mail/SpamAssassin/Plugin/AskDNS.pm 
Mail-SpamAssassin-3.4.0/lib/Mail/SpamAssassin/Plugin/AskDNS.pm
 a/lib/Mail/SpamAssassin/Plugin/AskDNS.pm   2014-06-05 19:34:56.302725263 
+0200
-+++ b/lib/Mail/SpamAssassin/Plugin/AskDNS.pm   2014-06-05 19:35:30.086168916 
+0200
-@@ -211,7 +211,7 @@
- 
-   $self-set_config($sa_main-{conf});
- 
--  $txtdata_can_provide_a_list = Net::DNS-VERSION = 0.69;
-+  $txtdata_can_provide_a_list = 1;
- 
-   return $self;
- }
 a/lib/Mail/SpamAssassin/DnsResolver.pm 2014-06-08 12:48:29.064230952 
+0800
-+++ b/lib/Mail/SpamAssassin/DnsResolver.pm 2014-06-08 12:49:06.961872678 
+0800
-@@ -205,7 +205,7 @@
- dbg(dns: servers set by config to: %s, join(', ',@ns_addr_port));
-   } elsif ($res) {  # default as provided by Net::DNS, e.g. /etc/resolv.conf
- @ns_addr_port = map(untaint_var([$_]: . $res-{port}),
--@{$res-{nameservers}});
-+$res-nameservers);
- dbg(dns: servers obtained from Net::DNS : %s, join(', ',@ns_addr_port));
-   }
-   return @ns_addr_port;


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 21:52:11
  Author: bluewind
Revision: 238326

upgpkg: spamassassin 3.4.1-1

upstream update

Modified:
  spamassassin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:26:21 UTC (rev 238325)
+++ PKGBUILD2015-05-01 19:52:11 UTC (rev 238326)
@@ -3,8 +3,8 @@
 # Contributor: Dale Blount d...@archlinux.org
 # Contributor: Manolis Tzanidakis
 pkgname=spamassassin
-pkgver=3.4.0
-pkgrel=4
+pkgver=3.4.1
+pkgrel=1
 pkgdesc=A mail filter to identify spam.
 arch=('i686' 'x86_64')
 license=('APACHE')
@@ -22,21 +22,17 @@
 'etc/mail/spamassassin/v330.pre')
 install=${pkgname}.install
 
source=(http://www.us.apache.org/dist/${pkgname}/source/Mail-SpamAssassin-${pkgver}.tar.gz{,.asc}
-'spamassassin.service' net-dns.patch)
+'spamassassin.service')
 validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
-md5sums=('5d0b50cee3bfa905cca35c33296c8c2a'
+md5sums=('76eca1f38c11635d319e62c26d5b034b'
  'SKIP'
- '8adce028f25387ac3bc4dba697d209ed'
- '0bcf0419608ec4ac200e794563620f31')
+ '8adce028f25387ac3bc4dba697d209ed')
 
 prepare() {
   cd ${srcdir}/Mail-SpamAssassin-${pkgver}
 
   sed -i t/sa_compile.t \
- -e 's#/foo/bin/spamassassin#/foo/bin/site_perl/spamassassin#' \
- -e 's#/foo/bin/sa-compile#/foo/bin/site_perl/sa-compile#'
-
-  patch -p1 -i $srcdir/net-dns.patch
+ -e 's#^my $temp_binpath = $Config{sitebinexp};#my $temp_binpath = 
/bin/site_perl/;#'
 }
 
 build() {


[arch-commits] Commit in spamassassin/repos (14 files)

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 21:53:11
  Author: bluewind
Revision: 238329

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

Added:
  spamassassin/repos/extra-i686/PKGBUILD
(from rev 238328, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/extra-i686/spamassassin.install
(from rev 238328, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/extra-i686/spamassassin.service
(from rev 238328, spamassassin/trunk/spamassassin.service)
  spamassassin/repos/extra-x86_64/PKGBUILD
(from rev 238328, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/extra-x86_64/spamassassin.install
(from rev 238328, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/extra-x86_64/spamassassin.service
(from rev 238328, spamassassin/trunk/spamassassin.service)
Deleted:
  spamassassin/repos/extra-i686/PKGBUILD
  spamassassin/repos/extra-i686/net-dns.patch
  spamassassin/repos/extra-i686/spamassassin.install
  spamassassin/repos/extra-i686/spamassassin.service
  spamassassin/repos/extra-x86_64/PKGBUILD
  spamassassin/repos/extra-x86_64/net-dns.patch
  spamassassin/repos/extra-x86_64/spamassassin.install
  spamassassin/repos/extra-x86_64/spamassassin.service

---+
 /PKGBUILD |  124 
 /spamassassin.install |   64 ++
 /spamassassin.service |   24 ++
 extra-i686/PKGBUILD   |   62 --
 extra-i686/net-dns.patch  |   41 ---
 extra-i686/spamassassin.install   |   32 -
 extra-i686/spamassassin.service   |   12 ---
 extra-x86_64/PKGBUILD |   62 --
 extra-x86_64/net-dns.patch|   41 ---
 extra-x86_64/spamassassin.install |   32 -
 extra-x86_64/spamassassin.service |   12 ---
 11 files changed, 212 insertions(+), 294 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-01 19:53:06 UTC (rev 238328)
+++ extra-i686/PKGBUILD 2015-05-01 19:53:11 UTC (rev 238329)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Manolis Tzanidakis
-pkgname=spamassassin
-pkgver=3.4.1
-pkgrel=1
-pkgdesc=A mail filter to identify spam.
-arch=('i686' 'x86_64')
-license=('APACHE')
-url=http://spamassassin.apache.org;
-depends=('openssl' 'zlib' 're2c' 'perl-net-dns' 'perl-io-socket-ssl'
- 'perl-libwww' 'perl-mail-spf' 'perl-http-message' 'perl-net-http'
- 'perl-io-socket-inet6' 'perl-mail-dkim' 'perl-crypt-ssleay')
-makedepends=('razor' 'perl-dbi')
-optdepends=('razor: to identify collaborately-flagged spam')
-backup=('etc/mail/spamassassin/local.cf'
-'etc/mail/spamassassin/init.pre'
-'etc/mail/spamassassin/v310.pre'
-'etc/mail/spamassassin/v312.pre'
-'etc/mail/spamassassin/v320.pre'
-'etc/mail/spamassassin/v330.pre')
-install=${pkgname}.install
-source=(http://www.us.apache.org/dist/${pkgname}/source/Mail-SpamAssassin-${pkgver}.tar.gz{,.asc}
-'spamassassin.service')
-validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
-md5sums=('76eca1f38c11635d319e62c26d5b034b'
- 'SKIP'
- '8adce028f25387ac3bc4dba697d209ed')
-
-prepare() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-
-  sed -i t/sa_compile.t \
- -e 's#^my $temp_binpath = $Config{sitebinexp};#my $temp_binpath = 
/bin/site_perl/;#'
-}
-
-build() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor \
-  CONTACT_ADDRESS=root@localhost ENABLE_SSL=yes PERL_TAINT=no
-  make 
-}
-
-check() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-
-  # parallel tests cause lots of failures; disable for now
-  #export HARNESS_OPTIONS=j$(echo $MAKEFLAGS | sed 
's/.*-j\([0-9][0-9]*\).*/\1/')
-
-  make test
-}
-
-package() {
-  cd ${srcdir}/Mail-SpamAssassin-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 ${srcdir}/spamassassin.service 
${pkgdir}/usr/lib/systemd/system/spamassassin.service
-  install -d -o 182 -g 182 -m 755 $pkgdir/var/lib/spamassassin
-}

Copied: spamassassin/repos/extra-i686/PKGBUILD (from rev 238328, 
spamassassin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-01 19:53:11 UTC (rev 238329)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Dale Blount d...@archlinux.org
+# Contributor: Manolis Tzanidakis
+pkgname=spamassassin
+pkgver=3.4.1
+pkgrel=1
+pkgdesc=A mail filter to identify spam.
+arch=('i686' 'x86_64')
+license=('APACHE')
+url=http://spamassassin.apache.org;
+depends=('openssl' 'zlib' 're2c' 'perl-net-dns' 'perl-io-socket-ssl'
+ 'perl-libwww' 'perl-mail-spf' 'perl-http-message' 

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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 22:28:59
  Author: spupykin
Revision: 132631

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

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

---+
 /PKGBUILD |   58 
 /viewnior.install |   26 
 community-i686/PKGBUILD   |   28 -
 community-i686/viewnior.install   |   13 
 community-x86_64/PKGBUILD |   28 -
 community-x86_64/viewnior.install |   13 
 6 files changed, 84 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-01 20:28:45 UTC (rev 132630)
+++ community-i686/PKGBUILD 2015-05-01 20:28:59 UTC (rev 132631)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
-# Maintainer: M Rawash mraw...@gmail.com
-
-pkgname=viewnior
-pkgver=1.4
-pkgrel=2
-pkgdesc=A simple, fast and elegant image viewer program
-arch=('i686' 'x86_64')
-url=http://xsisqox.github.com/Viewnior/;
-license=('GPL3')
-depends=('gtk2=2.12' 'exiv2')
-makedepends=('make' 'intltool=0.35' 'pkgconfig=0.9' 'perl=5.8.1')
-install=viewnior.install
-source=(https://www.dropbox.com/s/zytq0suabesv933/viewnior-$pkgver.tar.gz)
-md5sums=('13d7cb3381522161b32de9b70dd989b8')
-
-build() {
-  cd $pkgname-$pkgver
-  LDFLAGS=-lm ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: viewnior/repos/community-i686/PKGBUILD (from rev 132630, 
viewnior/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-01 20:28:59 UTC (rev 132631)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+# Maintainer: M Rawash mraw...@gmail.com
+
+pkgname=viewnior
+pkgver=1.5
+pkgrel=1
+pkgdesc=A simple, fast and elegant image viewer program
+arch=('i686' 'x86_64')
+url=http://xsisqox.github.com/Viewnior/;
+license=('GPL3')
+depends=('gtk2=2.12' 'exiv2')
+makedepends=('make' 'intltool=0.35' 'pkgconfig=0.9' 'perl=5.8.1' 
'gnome-common')
+install=viewnior.install
+source=(https://github.com/xsisqox/Viewnior/archive/viewnior-$pkgver.tar.gz)
+md5sums=('3cecdc212724d5963257bebf025943f5')
+
+build() {
+  cd Viewnior-viewnior-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd Viewnior-viewnior-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/viewnior.install
===
--- community-i686/viewnior.install 2015-05-01 20:28:45 UTC (rev 132630)
+++ community-i686/viewnior.install 2015-05-01 20:28:59 UTC (rev 132631)
@@ -1,13 +0,0 @@
-post_install() {
-   [ -x `which update-mime-database` ]   update-mime-database 
usr/share/mime
-   [ -x `which gtk-update-icon-cache` ]  gtk-update-icon-cache -q -t -f 
usr/share/icons/hicolor
-   true
-}
-
-post_upgrade() {
-   post_install $1
-}
-
-post_remove() {
-   post_install $1
-}

Copied: viewnior/repos/community-i686/viewnior.install (from rev 132630, 
viewnior/trunk/viewnior.install)
===
--- community-i686/viewnior.install (rev 0)
+++ community-i686/viewnior.install 2015-05-01 20:28:59 UTC (rev 132631)
@@ -0,0 +1,13 @@
+post_install() {
+   [ -x `which update-mime-database` ]   update-mime-database 
usr/share/mime
+   [ -x `which gtk-update-icon-cache` ]  gtk-update-icon-cache -q -t -f 
usr/share/icons/hicolor
+   true
+}
+
+post_upgrade() {
+   post_install $1
+}
+
+post_remove() {
+   post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-01 20:28:45 UTC (rev 132630)
+++ community-x86_64/PKGBUILD   2015-05-01 20:28:59 UTC (rev 132631)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
-# Maintainer: M Rawash mraw...@gmail.com
-

[arch-commits] Commit in gramps/repos/community-any (5 files)

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 22:28:40
  Author: spupykin
Revision: 132629

archrelease: copy trunk to community-any

Added:
  gramps/repos/community-any/PKGBUILD
(from rev 132628, gramps/trunk/PKGBUILD)
  gramps/repos/community-any/gramps.install
(from rev 132628, gramps/trunk/gramps.install)
Deleted:
  gramps/repos/community-any/PKGBUILD
  gramps/repos/community-any/block-changed.patch
  gramps/repos/community-any/gramps.install

-+
 PKGBUILD|   91 +++---
 block-changed.patch |   42 ---
 gramps.install  |   26 +++---
 3 files changed, 55 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 20:28:30 UTC (rev 132628)
+++ PKGBUILD2015-05-01 20:28:40 UTC (rev 132629)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Cory Farmer rbgk...@ameritech.net
-# Contributor: György Balló ball...@freestart.hu
-
-pkgname=gramps
-pkgver=4.1.2
-pkgrel=1
-epoch=2
-pkgdesc=A genealogy program, which helps you track your family tree
-arch=('any')
-url=http://gramps-project.org/;
-license=('GPL')
-depends=('goocanvas' 'gtk3' 'python-gobject' 'librsvg' 'xdg-utils' 
-'python-bsddb' 'gnome-icon-theme' 'desktop-file-utils'
-'shared-mime-info' 'python-cairo')
-makedepends=('intltool')
-optdepends=('graphviz: enable creation of graphs (required for tree reports)'
-   'gtkspell3: enable spell checking in the notes'
-   'rcs: manage multiple revisions of your family trees'
-   'python-pillow: crop and convert images to JPG'
-   'libgexiv2: manage Exif metadata embedded in your media'
-   'ttf-freefont: more font support in the reports')
-#  'python-osmgpsmap: show maps in the geography view'
-#  'python-pyicu: improves localised sorting'
-#  'webkitgtk: allows websites to be opened in Gramps'
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/project/gramps/Stable/$pkgver/gramps-$pkgver.tar.gz
-   block-changed.patch)
-md5sums=('270c7f0477424db8e65cc251ec85e572'
- 'b2443587e08c4951f00e9401d47e1ccc')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-#  patch -p0 $srcdir/block-changed.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-_pyver=`pacman -Q python | cut -f2 -d' ' | cut -f1,2 -d.`
-  cd $srcdir/$pkgname-$pkgver
-  python setup.py install --root=$pkgdir
-  echo -n '/usr/share' 
$pkgdir/usr/lib/python${_pyver}/site-packages/gramps/gen/utils/resource-path
-}

Copied: gramps/repos/community-any/PKGBUILD (from rev 132628, 
gramps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 20:28:40 UTC (rev 132629)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+# Contributor: Cory Farmer rbgk...@ameritech.net
+# Contributor: György Balló ball...@freestart.hu
+
+pkgname=gramps
+pkgver=4.1.3
+pkgrel=1
+epoch=2
+pkgdesc=A genealogy program, which helps you track your family tree
+arch=('any')
+url=http://gramps-project.org/;
+license=('GPL')
+depends=('goocanvas' 'gtk3' 'python-gobject' 'librsvg' 'xdg-utils' 
+'python-bsddb' 'gnome-icon-theme' 'desktop-file-utils'
+'shared-mime-info' 'python-cairo')
+makedepends=('intltool')
+optdepends=('graphviz: enable creation of graphs (required for tree reports)'
+   'gtkspell3: enable spell checking in the notes'
+   'rcs: manage multiple revisions of your family trees'
+   'python-pillow: crop and convert images to JPG'
+   'libgexiv2: manage Exif metadata embedded in your media'
+   'ttf-freefont: more font support in the reports')
+#  'python-osmgpsmap: show maps in the geography view'
+#  'python-pyicu: improves localised sorting'
+#  'webkitgtk: allows websites to be opened in Gramps'
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/project/gramps/Stable/$pkgver/gramps-$pkgver.tar.gz)
+md5sums=('d9dd8e7cbd97b6275ecbec8d3cd7b21a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+_pyver=`pacman -Q python | cut -f2 -d' ' | cut -f1,2 -d.`
+  cd $srcdir/$pkgname-$pkgver
+  python setup.py install --root=$pkgdir
+  echo -n '/usr/share' 
$pkgdir/usr/lib/python${_pyver}/site-packages/gramps/gen/utils/resource-path
+}

Deleted: block-changed.patch
===
--- block-changed.patch 2015-05-01 20:28:30 UTC (rev 132628)
+++ block-changed.patch 2015-05-01 20:28:40 UTC (rev 132629)
@@ -1,42 +0,0 @@
-Index: gramps/gui/widgets/validatedmaskedentry.py

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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 22:28:30
  Author: spupykin
Revision: 132628

upgpkg: gramps 2:4.1.3-1

upd

Modified:
  gramps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 19:44:58 UTC (rev 132627)
+++ PKGBUILD2015-05-01 20:28:30 UTC (rev 132628)
@@ -5,7 +5,7 @@
 # Contributor: György Balló ball...@freestart.hu
 
 pkgname=gramps
-pkgver=4.1.2
+pkgver=4.1.3
 pkgrel=1
 epoch=2
 pkgdesc=A genealogy program, which helps you track your family tree
@@ -27,7 +27,7 @@
 #  'webkitgtk: allows websites to be opened in Gramps'
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/project/gramps/Stable/$pkgver/gramps-$pkgver.tar.gz)
-md5sums=('270c7f0477424db8e65cc251ec85e572')
+md5sums=('d9dd8e7cbd97b6275ecbec8d3cd7b21a')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 22:28:45
  Author: spupykin
Revision: 132630

upgpkg: viewnior 1.5-1

upd

Modified:
  viewnior/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 20:28:40 UTC (rev 132629)
+++ PKGBUILD2015-05-01 20:28:45 UTC (rev 132630)
@@ -4,25 +4,26 @@
 # Maintainer: M Rawash mraw...@gmail.com
 
 pkgname=viewnior
-pkgver=1.4
-pkgrel=2
+pkgver=1.5
+pkgrel=1
 pkgdesc=A simple, fast and elegant image viewer program
 arch=('i686' 'x86_64')
 url=http://xsisqox.github.com/Viewnior/;
 license=('GPL3')
 depends=('gtk2=2.12' 'exiv2')
-makedepends=('make' 'intltool=0.35' 'pkgconfig=0.9' 'perl=5.8.1')
+makedepends=('make' 'intltool=0.35' 'pkgconfig=0.9' 'perl=5.8.1' 
'gnome-common')
 install=viewnior.install
-source=(https://www.dropbox.com/s/zytq0suabesv933/viewnior-$pkgver.tar.gz)
-md5sums=('13d7cb3381522161b32de9b70dd989b8')
+source=(https://github.com/xsisqox/Viewnior/archive/viewnior-$pkgver.tar.gz)
+md5sums=('3cecdc212724d5963257bebf025943f5')
 
 build() {
-  cd $pkgname-$pkgver
-  LDFLAGS=-lm ./configure --prefix=/usr
+  cd Viewnior-viewnior-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd Viewnior-viewnior-$pkgver
   make DESTDIR=$pkgdir install
 }


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

2015-05-01 Thread Fabio Castelli
Date: Friday, May 1, 2015 @ 20:38:00
  Author: muflone
Revision: 132613

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

Added:
  bluegriffon/repos/community-i686/PKGBUILD
(from rev 132612, bluegriffon/trunk/PKGBUILD)
  bluegriffon/repos/community-i686/bluegriffon.desktop
(from rev 132612, bluegriffon/trunk/bluegriffon.desktop)
  bluegriffon/repos/community-i686/bluegriffon.install
(from rev 132612, bluegriffon/trunk/bluegriffon.install)
  bluegriffon/repos/community-i686/freetype.patch
(from rev 132612, bluegriffon/trunk/freetype.patch)
  bluegriffon/repos/community-i686/libvpx_1.4.patch
(from rev 132612, bluegriffon/trunk/libvpx_1.4.patch)
  bluegriffon/repos/community-i686/mozconfig
(from rev 132612, bluegriffon/trunk/mozconfig)
  bluegriffon/repos/community-x86_64/PKGBUILD
(from rev 132612, bluegriffon/trunk/PKGBUILD)
  bluegriffon/repos/community-x86_64/bluegriffon.desktop
(from rev 132612, bluegriffon/trunk/bluegriffon.desktop)
  bluegriffon/repos/community-x86_64/bluegriffon.install
(from rev 132612, bluegriffon/trunk/bluegriffon.install)
  bluegriffon/repos/community-x86_64/freetype.patch
(from rev 132612, bluegriffon/trunk/freetype.patch)
  bluegriffon/repos/community-x86_64/libvpx_1.4.patch
(from rev 132612, bluegriffon/trunk/libvpx_1.4.patch)
  bluegriffon/repos/community-x86_64/mozconfig
(from rev 132612, bluegriffon/trunk/mozconfig)
Deleted:
  bluegriffon/repos/community-i686/PKGBUILD
  bluegriffon/repos/community-i686/bluegriffon.desktop
  bluegriffon/repos/community-i686/bluegriffon.install
  bluegriffon/repos/community-i686/freetype.patch
  bluegriffon/repos/community-i686/libvpx_1.4.patch
  bluegriffon/repos/community-i686/mozconfig
  bluegriffon/repos/community-x86_64/PKGBUILD
  bluegriffon/repos/community-x86_64/bluegriffon.desktop
  bluegriffon/repos/community-x86_64/bluegriffon.install
  bluegriffon/repos/community-x86_64/freetype.patch
  bluegriffon/repos/community-x86_64/libvpx_1.4.patch
  bluegriffon/repos/community-x86_64/mozconfig

--+
 /PKGBUILD|  180 +
 /bluegriffon.desktop |   32 +
 /bluegriffon.install |   24 
 /freetype.patch  |  148 +++
 /libvpx_1.4.patch|   50 +
 /mozconfig   |   74 +
 community-i686/PKGBUILD  |   90 
 community-i686/bluegriffon.desktop   |   16 --
 community-i686/bluegriffon.install   |   12 --
 community-i686/freetype.patch|   74 -
 community-i686/libvpx_1.4.patch  |   25 
 community-i686/mozconfig |   37 --
 community-x86_64/PKGBUILD|   90 
 community-x86_64/bluegriffon.desktop |   16 --
 community-x86_64/bluegriffon.install |   12 --
 community-x86_64/freetype.patch  |   74 -
 community-x86_64/libvpx_1.4.patch|   25 
 community-x86_64/mozconfig   |   37 --
 18 files changed, 508 insertions(+), 508 deletions(-)

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


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 20:55:33
  Author: bluewind
Revision: 132615

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |   89 -
 1 file changed, 42 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 18:55:30 UTC (rev 132614)
+++ PKGBUILD2015-05-01 18:55:33 UTC (rev 132615)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: Christoph Vigano m...@cvigano.de
-# Contributor: Andreas Radke andy...@archlinux.org
-# Contributor: bender02 at gmx dot com
-
-_pkgbasename=nettle
-pkgname=lib32-$_pkgbasename
-pkgver=2.7.1
-pkgrel=1
-pkgdesc=A low-level cryptographic library (32-bit)
-arch=('x86_64')
-url=http://www.lysator.liu.se/~nisse/nettle/;
-license=('GPL2')
-depends=('lib32-gmp' $_pkgbasename)
-makedepends=(gcc-multilib)
-source=(ftp://ftp.gnu.org/gnu/nettle/$_pkgbasename-$pkgver.tar.gz)
-md5sums=('003d5147911317931dd453520eb234a5')
-
-build() {
-  cd $srcdir/$_pkgbasename-$pkgver
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
---enable-shared --with-include-path=/usr/lib32/gmp
-  make
-}
-
-check() {
-  cd $srcdir/$_pkgbasename-$pkgver
-  make -k check
-}
-
-package() {
-  cd $srcdir/$_pkgbasename-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  find $pkgdir
-  
-  # remove static libs #--disable-static - build would break (since nettle 
2.6) - and had no effect before
-  rm -f ${pkgdir}/usr/lib32/{libhogweed,libnettle}.a
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-}

Copied: lib32-nettle/repos/multilib-x86_64/PKGBUILD (from rev 132614, 
lib32-nettle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 18:55:33 UTC (rev 132615)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Christoph Vigano m...@cvigano.de
+# Contributor: Andreas Radke andy...@archlinux.org
+# Contributor: bender02 at gmx dot com
+
+_pkgbasename=nettle
+pkgname=lib32-$_pkgbasename
+pkgver=3.1.1
+pkgrel=1
+pkgdesc=A low-level cryptographic library (32-bit)
+arch=('x86_64')
+url=http://www.lysator.liu.se/~nisse/nettle/;
+license=('GPL2')
+depends=('lib32-gmp' $_pkgbasename)
+makedepends=(gcc-multilib)
+source=(ftp://ftp.gnu.org/gnu/nettle/$_pkgbasename-$pkgver.tar.gz)
+md5sums=('b40fa88dc32f37a182b6b42092ebb144')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298') # Niels Möller 
ni...@lysator.liu.se
+
+build() {
+  cd $srcdir/$_pkgbasename-$pkgver
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 \
+--enable-shared --with-include-path=/usr/lib32/gmp
+  make
+}
+
+check() {
+  cd $srcdir/$_pkgbasename-$pkgver
+  make -k check
+}
+
+package() {
+  cd $srcdir/$_pkgbasename-$pkgver
+  make DESTDIR=$pkgdir/ install
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+}


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

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 20:55:30
  Author: bluewind
Revision: 132614

upgpkg: lib32-nettle 3.1.1-1

upstream update

Modified:
  lib32-nettle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 18:38:00 UTC (rev 132613)
+++ PKGBUILD2015-05-01 18:55:30 UTC (rev 132614)
@@ -6,7 +6,7 @@
 
 _pkgbasename=nettle
 pkgname=lib32-$_pkgbasename
-pkgver=2.7.1
+pkgver=3.1.1
 pkgrel=1
 pkgdesc=A low-level cryptographic library (32-bit)
 arch=('x86_64')
@@ -15,7 +15,8 @@
 depends=('lib32-gmp' $_pkgbasename)
 makedepends=(gcc-multilib)
 source=(ftp://ftp.gnu.org/gnu/nettle/$_pkgbasename-$pkgver.tar.gz)
-md5sums=('003d5147911317931dd453520eb234a5')
+md5sums=('b40fa88dc32f37a182b6b42092ebb144')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298') # Niels Möller 
ni...@lysator.liu.se
 
 build() {
   cd $srcdir/$_pkgbasename-$pkgver
@@ -37,11 +38,5 @@
 package() {
   cd $srcdir/$_pkgbasename-$pkgver
   make DESTDIR=$pkgdir/ install
-
-  find $pkgdir
-  
-  # remove static libs #--disable-static - build would break (since nettle 
2.6) - and had no effect before
-  rm -f ${pkgdir}/usr/lib32/{libhogweed,libnettle}.a
-
   rm -rf ${pkgdir}/usr/{include,share,bin}
 }


[arch-commits] Commit in lib32-gnutls/repos/multilib-x86_64 (3 files)

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 21:01:58
  Author: bluewind
Revision: 132617

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-gnutls/repos/multilib-x86_64/PKGBUILD
(from rev 132616, lib32-gnutls/trunk/PKGBUILD)
  lib32-gnutls/repos/multilib-x86_64/buildfix.diff
(from rev 132616, lib32-gnutls/trunk/buildfix.diff)
Deleted:
  lib32-gnutls/repos/multilib-x86_64/PKGBUILD

---+
 PKGBUILD  |  110 ++--
 buildfix.diff |   27 +
 2 files changed, 87 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 19:01:54 UTC (rev 132616)
+++ PKGBUILD2015-05-01 19:01:58 UTC (rev 132617)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: Christoph Vigano mail at cvigano dot de
-# Contributor: Biru Ionut io...@archlinux.ro
-# Contributor: Pierre Schmitz pie...@archlinux.de
-# Contributor: Mikko Seppälä t-r-...@mbnet.fi
-
-_pkgbasename=gnutls
-pkgname=lib32-$_pkgbasename
-pkgver=3.3.13
-pkgrel=1
-pkgdesc=A library which provides a secure layer over a reliable transport 
layer (32-bit)
-arch=('x86_64')
-license=('GPL3' 'LGPL2.1')
-url=http://gnutls.org/;
-depends=('lib32-zlib' 'lib32-nettle' 'lib32-p11-kit' 'lib32-libtasn1' 
$_pkgbasename)
-makedepends=('gcc-multilib' 'lib32-libidn')
-source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${_pkgbasename}-${pkgver}.tar.xz{,.sig})
-md5sums=('a7387fe8bf3e604bf518a6da9ab2a4e6'
- 'SKIP')
-validpgpkeys=(1F42418905D8206AA754CCDC29EE58B996865171)
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  # build fails without --disable-hardware-acceleration because of assembler 
errors
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
---with-zlib \
---disable-static \
---disable-guile \
---disable-valgrind-tests --disable-hardware-acceleration
-  make
-}
-
-check() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  #make -k check
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  find $pkgdir
-
-  rm -rf ${pkgdir}/usr/{bin,include,share}
-}

Copied: lib32-gnutls/repos/multilib-x86_64/PKGBUILD (from rev 132616, 
lib32-gnutls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 19:01:58 UTC (rev 132617)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Christoph Vigano mail at cvigano dot de
+# Contributor: Biru Ionut io...@archlinux.ro
+# Contributor: Pierre Schmitz pie...@archlinux.de
+# Contributor: Mikko Seppälä t-r-...@mbnet.fi
+
+_pkgbasename=gnutls
+pkgname=lib32-$_pkgbasename
+pkgver=3.4.0
+pkgrel=1
+pkgdesc=A library which provides a secure layer over a reliable transport 
layer (32-bit)
+arch=('x86_64')
+license=('GPL3' 'LGPL2.1')
+url=http://gnutls.org/;
+depends=('lib32-zlib' 'lib32-nettle' 'lib32-p11-kit' 'lib32-libtasn1' 
$_pkgbasename)
+makedepends=('gcc-multilib' 'lib32-libidn')
+source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/${_pkgbasename}-${pkgver}.tar.xz{,.sig}
+buildfix.diff)
+md5sums=('aa015c2666b031044edfb01b01980d84'
+ 'SKIP'
+ 'ffce1bd795445aaecf54100f44299fa7')
+validpgpkeys=(1F42418905D8206AA754CCDC29EE58B996865171)
+
+prepare(){
+  cd ${_pkgbasename}-${pkgver}
+  # buildfix 
https://gitlab.com/gnutls/gnutls/commit/7e63027a5caafa55dcca65c5b9bff3bf76c5a41c?view=inline
+  patch -Np1 -i ${srcdir}/buildfix.diff
+  autoreconf -vfi
+}
+
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  # build fails without --disable-hardware-acceleration because of assembler 
errors
+  ./configure --prefix=/usr --libdir=/usr/lib32 \
+--with-zlib \
+--disable-static \
+--disable-guile \
+--disable-valgrind-tests --disable-hardware-acceleration
+  make
+}
+
+check() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  #make -k check
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  find $pkgdir
+
+  rm -rf ${pkgdir}/usr/{bin,include,share}
+}

Copied: lib32-gnutls/repos/multilib-x86_64/buildfix.diff (from rev 132616, 
lib32-gnutls/trunk/buildfix.diff)
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2015-05-01 19:01:58 UTC (rev 132617)
@@ -0,0 +1,27 @@
+diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
+index 8e793d3..68de757 100644
+--- a/doc/manpages/Makefile.am
 b/doc/manpages/Makefile.am
+@@ -134,11 +134,8 @@ APIMANS += gnutls_certificate_get_peers.3
+ APIMANS += gnutls_certificate_get_peers_subkey_id.3
+ APIMANS += gnutls_certificate_get_trust_list.3
+ APIMANS += 

[arch-commits] Commit in lib32-gnutls/trunk (PKGBUILD buildfix.diff)

2015-05-01 Thread Florian Pritz
Date: Friday, May 1, 2015 @ 21:01:54
  Author: bluewind
Revision: 132616

upgpkg: lib32-gnutls 3.4.0-1

upstream update

Added:
  lib32-gnutls/trunk/buildfix.diff
Modified:
  lib32-gnutls/trunk/PKGBUILD

---+
 PKGBUILD  |   18 ++
 buildfix.diff |   27 +++
 2 files changed, 41 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 18:55:33 UTC (rev 132615)
+++ PKGBUILD2015-05-01 19:01:54 UTC (rev 132616)
@@ -7,7 +7,7 @@
 
 _pkgbasename=gnutls
 pkgname=lib32-$_pkgbasename
-pkgver=3.3.13
+pkgver=3.4.0
 pkgrel=1
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer (32-bit)
 arch=('x86_64')
@@ -15,11 +15,21 @@
 url=http://gnutls.org/;
 depends=('lib32-zlib' 'lib32-nettle' 'lib32-p11-kit' 'lib32-libtasn1' 
$_pkgbasename)
 makedepends=('gcc-multilib' 'lib32-libidn')
-source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${_pkgbasename}-${pkgver}.tar.xz{,.sig})
-md5sums=('a7387fe8bf3e604bf518a6da9ab2a4e6'
- 'SKIP')
+source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/${_pkgbasename}-${pkgver}.tar.xz{,.sig}
+buildfix.diff)
+md5sums=('aa015c2666b031044edfb01b01980d84'
+ 'SKIP'
+ 'ffce1bd795445aaecf54100f44299fa7')
 validpgpkeys=(1F42418905D8206AA754CCDC29EE58B996865171)
 
+prepare(){
+  cd ${_pkgbasename}-${pkgver}
+  # buildfix 
https://gitlab.com/gnutls/gnutls/commit/7e63027a5caafa55dcca65c5b9bff3bf76c5a41c?view=inline
+  patch -Np1 -i ${srcdir}/buildfix.diff
+  autoreconf -vfi
+}
+
+
 build() {
   export CC=gcc -m32
   export CXX=g++ -m32

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2015-05-01 19:01:54 UTC (rev 132616)
@@ -0,0 +1,27 @@
+diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
+index 8e793d3..68de757 100644
+--- a/doc/manpages/Makefile.am
 b/doc/manpages/Makefile.am
+@@ -134,11 +134,8 @@ APIMANS += gnutls_certificate_get_peers.3
+ APIMANS += gnutls_certificate_get_peers_subkey_id.3
+ APIMANS += gnutls_certificate_get_trust_list.3
+ APIMANS += gnutls_certificate_get_verify_flags.3
+-APIMANS += gnutls_certificate_get_verify_flags.3
+-APIMANS += gnutls_certificate_get_x509_crt.3
+ APIMANS += gnutls_certificate_get_x509_crt.3
+ APIMANS += gnutls_certificate_get_x509_key.3
+-APIMANS += gnutls_certificate_get_x509_key.3
+ APIMANS += gnutls_certificate_send_x509_rdn_sequence.3
+ APIMANS += gnutls_certificate_server_set_request.3
+ APIMANS += gnutls_certificate_set_dh_params.3
+@@ -1101,7 +1098,7 @@ compare-makefile:
+   @echo 
**
+   @echo If the following step fails copy 
$(srcdir)/doc/manpages/tmp-compare-makefile to doc/manpages/Makefile.am
+   @echo 
**
+-  FUNCS=`cat $(top_srcdir)/lib/includes/gnutls/*.h | 
$(top_srcdir)/doc/scripts/getfuncs.pl|sort -d`; \
++  FUNCS=`cat $(top_srcdir)/lib/includes/gnutls/*.h | 
$(top_srcdir)/doc/scripts/getfuncs.pl|sort -d|uniq`; \
+   MANS=; \
+   for i in $$FUNCS; do \
+   MANS=$$MANS\nAPIMANS += $$i.3; \
+--
+libgit2 0.21.4


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

2015-05-01 Thread Fabio Castelli
Date: Friday, May 1, 2015 @ 20:33:19
  Author: muflone
Revision: 132612

Modified:
  bluegriffon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 17:45:36 UTC (rev 132611)
+++ PKGBUILD2015-05-01 18:33:19 UTC (rev 132612)
@@ -5,7 +5,7 @@
 pkgname=bluegriffon
 pkgver=1.7.2
 _mozilla_ver=9db46ddfb517
-pkgrel=2
+pkgrel=3
 pkgdesc=The next-generation Web Editor based on the rendering engine of 
Firefox
 arch=('i686' 'x86_64')
 url=http://bluegriffon.org/;
@@ -24,7 +24,7 @@
 libvpx_1.4.patch)
 sha256sums=('SKIP'
 'SKIP'
-'427814daeb87605eb94a3ed64b05383b0dcbe76a742efa845fb29722fcb2737f'
+'dacbcbfe1515c45c5b4c393cb050ae57a9e59e6a3876263f72c2477c859c35ef'
 '02d87cb754fd6532bf78d461e822b271ae135df27afd1f48d1978aa0372840b1'
 '882133b77840356985a81e496b4ddc443f8f33c068cfb7ef0858497820adcfff'
 '431c97f6b6d0c10d026e2d6d848e7c1bb0a7a55912199909f17ce485a8dc484e'


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 10:52:50
  Author: fyan
Revision: 132576

upgpkg: thefuck 1.32-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-30 21:04:21 UTC (rev 132575)
+++ PKGBUILD2015-05-01 08:52:50 UTC (rev 132576)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=thefuck
-pkgver=1.31
+pkgver=1.32
 pkgrel=1
 pkgdesc=Magnificent app which corrects your previous console command
 arch=('any')


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 10:53:04
  Author: fyan
Revision: 132577

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132576, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132576, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 08:52:50 UTC (rev 132576)
+++ PKGBUILD2015-05-01 08:53:04 UTC (rev 132577)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.31
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132576, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 08:53:04 UTC (rev 132577)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.32
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-01 08:52:50 UTC (rev 132576)
+++ thefuck.install 2015-05-01 08:53:04 UTC (rev 132577)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132576, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-01 08:53:04 UTC (rev 132577)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 11:31:46
  Author: fyan
Revision: 132578

addpkg: npm 2.9.0-1

Added:
  npm/
  npm/repos/
  npm/trunk/
  npm/trunk/PKGBUILD

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

Added: npm/trunk/PKGBUILD
===
--- npm/trunk/PKGBUILD  (rev 0)
+++ npm/trunk/PKGBUILD  2015-05-01 09:31:46 UTC (rev 132578)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=npm
+pkgver=2.9.0
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=(git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS=--prefix=\$pkgdir/usr\ install
+  
+  # Fix files owned by nobody:
+  chown -R root $pkgdir/usr/lib/node_modules 
+
+  # Fix wrong symlinks
+  rm -f $pkgdir/usr/share/man/{man1,man3,man5,man7}/*
+  for _dir in man1 man3 man5 man7; do
+cd $pkgdir/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
$pkgdir/usr/share/man/$_dir/
+done
+  done
+  
+  # Make symlink for node-gyp
+  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
$pkgdir/usr/bin/node-gyp
+  
+  install -Dm644 $srcdir/npm/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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


[arch-commits] Commit in npm/repos (2 files)

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 11:32:06
  Author: fyan
Revision: 132579

archrelease: copy trunk to community-testing-any

Added:
  npm/repos/community-testing-any/
  npm/repos/community-testing-any/PKGBUILD
(from rev 132578, npm/trunk/PKGBUILD)

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

Copied: npm/repos/community-testing-any/PKGBUILD (from rev 132578, 
npm/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-01 09:32:06 UTC (rev 132579)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=npm
+pkgver=2.9.0
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=(git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS=--prefix=\$pkgdir/usr\ install
+  
+  # Fix files owned by nobody:
+  chown -R root $pkgdir/usr/lib/node_modules 
+
+  # Fix wrong symlinks
+  rm -f $pkgdir/usr/share/man/{man1,man3,man5,man7}/*
+  for _dir in man1 man3 man5 man7; do
+cd $pkgdir/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
$pkgdir/usr/share/man/$_dir/
+done
+  done
+  
+  # Make symlink for node-gyp
+  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
$pkgdir/usr/bin/node-gyp
+  
+  install -Dm644 $srcdir/npm/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 11:43:32
  Author: fyan
Revision: 132580

upgpkg: nodejs 0.12.2-4

- split npm into separate package
- enable intl (FS#44793)

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

+
 PKGBUILD   |   41 +
 nodejs.install |7 +++
 2 files changed, 16 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 09:32:06 UTC (rev 132579)
+++ PKGBUILD2015-05-01 09:43:32 UTC (rev 132580)
@@ -10,31 +10,21 @@
 
 pkgname=nodejs
 pkgver=0.12.2
-_npmver=2.8.3
-pkgrel=3
+pkgrel=4
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'
 license=('MIT')
-depends=('openssl' 'zlib') # 'libuv' 'v8' 'c-ares')
-provides=('nodejs-node-gyp')
-makedepends=('python2' 'git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-checkdepends=('curl')
-options=('!emptydirs')
-source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;
-git+https://github.com/npm/npm.git#tag=v$_npmver)
-sha256sums=('ac7e78ade93e633e7ed628532bb8e650caba0c9c33af33581957f3382e2a772d'
-'SKIP')
+depends=('openssl' 'zlib' 'icu') # 'libuv' 'v8' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+install=nodejs.install
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
+sha256sums=('ac7e78ade93e633e7ed628532bb8e650caba0c9c33af33581957f3382e2a772d')
 
 prepare() {
   cd node-v$pkgver
 
-  # We need newer version of npm to fix bugs
-  rm -r deps/npm
-  ln -s $srcdir/npm deps
-  rm -r $srcdir/npm/.git
-
   msg 'Fixing for python2 name'
   find -type f -exec sed \
 -e 's_^#!/usr/bin/env python$_2_' \
@@ -50,6 +40,8 @@
   export PYTHON=python2
   ./configure \
 --prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
 --shared-openssl \
 --shared-zlib
 # --shared-libuv
@@ -57,11 +49,6 @@
 # --shared-cares
 
   make
-
-  cd ../npm
-  ../node-v$pkgver/node cli.js install ronn marked
-  PATH=$srcdir/node-v$pkgver:$PATH make
-  ../node-v$pkgver/node cli.js uninstall ronn marked marked-man
 }
 
 check() {
@@ -81,16 +68,6 @@
 
   install -D -m644 LICENSE \
 $pkgdir/usr/share/licenses/nodejs/LICENSE
-
-  install -d $pkgdir/usr/share/man/{man1,man3,man5,man7}
-  for _dir in man1 man3 man5 man7; do
-cd $pkgdir/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
$pkgdir/usr/share/man/$_dir/
-done
-  done
-
-  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
$pkgdir/usr/bin/node-gyp
 }
 
 # vim:set ts=2 sw=2 et:

Added: nodejs.install
===
--- nodejs.install  (rev 0)
+++ nodejs.install  2015-05-01 09:43:32 UTC (rev 132580)
@@ -0,0 +1,7 @@
+post_install () {
+  echo Notice: npm is not shipped with nodejs since 0.12.2-4, please install 
npm manually if you need it.
+}
+
+post_upgrade () {
+  post_install
+}


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 11:50:54
  Author: fyan
Revision: 132583

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-01 09:50:28 UTC (rev 132582)
+++ community-i686/PKGBUILD 2015-05-01 09:50:54 UTC (rev 132583)
@@ -1,62 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.0.2
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain .so
-url=http://www.sqlalchemy.org/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
-source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz{,.asc})
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-md5sums=('cbb49d275d250e5eb534f603e2ea92f5'
- 'SKIP')
-
-prepare() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-}
-
-build() {
-  cd SQLAlchemy-$pkgver
-  python setup.py build
-
-  cd ../SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd SQLAlchemy-${pkgver}
-  PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-3.4:$PYTHONPATH py.test
- 
-  cd ../SQLAlchemy2-$pkgver  
-  PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-2.7:$PYTHONPATH py.test2
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-${pkgver}
-  python setup.py install --root=${pkgdir}
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 132582, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-01 09:50:54 UTC (rev 132583)
@@ -0,0 +1,62 @@
+# $Id$ 
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=1.0.3
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url=http://www.sqlalchemy.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz{,.asc})
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
+md5sums=('35abc709164cbf8a37e4a39fafe9207b'
+ 'SKIP')
+
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
+build() {
+  cd SQLAlchemy-$pkgver
+  python setup.py build
+
+  cd ../SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd SQLAlchemy-${pkgver}
+  PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-3.4:$PYTHONPATH py.test
+ 
+  cd ../SQLAlchemy2-$pkgver  
+  PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-2.7:$PYTHONPATH py.test2
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-${pkgver}
+  python setup.py install --root=${pkgdir}
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root=$pkgdir
+  install -D -m644 LICENSE \
+ 

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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 11:43:52
  Author: fyan
Revision: 132581

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

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

-+
 community-testing-i686/PKGBUILD |   73 ++
 community-testing-i686/nodejs.install   |7 ++
 community-testing-x86_64/PKGBUILD   |   73 ++
 community-testing-x86_64/nodejs.install |7 ++
 4 files changed, 160 insertions(+)

Copied: nodejs/repos/community-testing-i686/PKGBUILD (from rev 132580, 
nodejs/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-01 09:43:52 UTC (rev 132581)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.12.2
+pkgrel=4
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu') # 'libuv' 'v8' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+install=nodejs.install
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
+sha256sums=('ac7e78ade93e633e7ed628532bb8e650caba0c9c33af33581957f3382e2a772d')
+
+prepare() {
+  cd node-v$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_2_' \
+-e s_'python'_'python2'_ -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v$pkgver
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib
+# --shared-libuv
+# --shared-v8
+# --shared-cares
+
+  make
+}
+
+check() {
+  cd node-v$pkgver
+  make test || warning Tests failed
+}
+
+package() {
+  cd node-v$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # install docs as per user request
+  install -d $pkgdir/usr/share/doc/nodejs
+  cp -r doc/api/{*.html,assets} \
+$pkgdir/usr/share/doc/nodejs
+
+  install -D -m644 LICENSE \
+$pkgdir/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-testing-i686/nodejs.install (from rev 132580, 
nodejs/trunk/nodejs.install)
===
--- community-testing-i686/nodejs.install   (rev 0)
+++ community-testing-i686/nodejs.install   2015-05-01 09:43:52 UTC (rev 
132581)
@@ -0,0 +1,7 @@
+post_install () {
+  echo Notice: npm is not shipped with nodejs since 0.12.2-4, please install 
npm manually if you need it.
+}
+
+post_upgrade () {
+  post_install
+}

Copied: nodejs/repos/community-testing-x86_64/PKGBUILD (from rev 132580, 
nodejs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-05-01 09:43:52 UTC (rev 132581)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.12.2
+pkgrel=4
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu') # 'libuv' 'v8' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+install=nodejs.install
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)

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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 11:50:28
  Author: fyan
Revision: 132582

upgpkg: python-sqlalchemy 1.0.3-1

Modified:
  python-sqlalchemy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 09:43:52 UTC (rev 132581)
+++ PKGBUILD2015-05-01 09:50:28 UTC (rev 132582)
@@ -5,7 +5,7 @@
 
 pkgbase=python-sqlalchemy
 pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 arch=('i686' 'x86_64') # python2 package contain .so
 url=http://www.sqlalchemy.org/;
@@ -14,7 +14,7 @@
 checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
 
source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz{,.asc})
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-md5sums=('cbb49d275d250e5eb534f603e2ea92f5'
+md5sums=('35abc709164cbf8a37e4a39fafe9207b'
  'SKIP')
 
 prepare() {


[arch-commits] Commit in wine/repos/multilib-x86_64 (6 files)

2015-05-01 Thread Sven-Hendrik Haase
Date: Friday, May 1, 2015 @ 23:49:34
  Author: svenstaro
Revision: 132633

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 132632, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 132632, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine.install
(from rev 132632, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  366 
 wine.install  |   24 +--
 3 files changed, 215 insertions(+), 215 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2015-05-01 21:49:26 UTC (rev 132632)
+++ 30-win32-aliases.conf   2015-05-01 21:49:34 UTC (rev 132633)
@@ -1,20 +0,0 @@
-?xml version=1.0?
-!DOCTYPE fontconfig SYSTEM fonts.dtd
-fontconfig
-  alias binding=same
-familyMS Shell Dlg/family
-acceptfamilyMicrosoft Sans Serif/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-  alias binding=same
-familyMS Shell Dlg 2/family
-acceptfamilyTahoma/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-
-  alias binding=same
-familyMS Sans Serif/family
-preferfamilyMicrosoft Sans Serif/family/prefer
-defaultfamilysans-serif/family/default
-  /alias
-/fontconfig

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 132632, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2015-05-01 21:49:34 UTC (rev 132633)
@@ -0,0 +1,20 @@
+?xml version=1.0?
+!DOCTYPE fontconfig SYSTEM fonts.dtd
+fontconfig
+  alias binding=same
+familyMS Shell Dlg/family
+acceptfamilyMicrosoft Sans Serif/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+  alias binding=same
+familyMS Shell Dlg 2/family
+acceptfamilyTahoma/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+
+  alias binding=same
+familyMS Sans Serif/family
+preferfamilyMicrosoft Sans Serif/family/prefer
+defaultfamilysans-serif/family/default
+  /alias
+/fontconfig

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 21:49:26 UTC (rev 132632)
+++ PKGBUILD2015-05-01 21:49:34 UTC (rev 132633)
@@ -1,183 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-
-pkgname=wine
-pkgver=1.7.41
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-sha1sums=('e31aceb246f3f75416f8bf5b59c668c02d221b17'
-  'SKIP'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7)
-
-pkgdesc=A compatibility layer for running Windows programs
-url=http://www.winehq.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc=4.5.0-2'  'gcc-multilib=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libxml2 lib32-libxml2
-  libldap lib32-libldap
-  lcms2   lib32-lcms2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-plugins   

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

2015-05-01 Thread Sven-Hendrik Haase
Date: Friday, May 1, 2015 @ 23:49:26
  Author: svenstaro
Revision: 132632

upgpkg: wine 1.7.42-1

upstream release 1.7.42

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 20:28:59 UTC (rev 132631)
+++ PKGBUILD2015-05-01 21:49:26 UTC (rev 132632)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora giova...@archlinux.org
 
 pkgname=wine
-pkgver=1.7.41
+pkgver=1.7.42
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
 
source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
 30-win32-aliases.conf)
-sha1sums=('e31aceb246f3f75416f8bf5b59c668c02d221b17'
+sha1sums=('82845fb3e45bbfa00ac6c9aaf8392f3e2732d2ff'
   'SKIP'
   '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7)


[arch-commits] Commit in wine/repos/community-i686 (6 files)

2015-05-01 Thread Sven-Hendrik Haase
Date: Friday, May 1, 2015 @ 23:56:13
  Author: svenstaro
Revision: 132634

archrelease: copy trunk to community-i686

Added:
  wine/repos/community-i686/30-win32-aliases.conf
(from rev 132633, wine/trunk/30-win32-aliases.conf)
  wine/repos/community-i686/PKGBUILD
(from rev 132633, wine/trunk/PKGBUILD)
  wine/repos/community-i686/wine.install
(from rev 132633, wine/trunk/wine.install)
Deleted:
  wine/repos/community-i686/30-win32-aliases.conf
  wine/repos/community-i686/PKGBUILD
  wine/repos/community-i686/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  366 
 wine.install  |   24 +--
 3 files changed, 215 insertions(+), 215 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2015-05-01 21:49:34 UTC (rev 132633)
+++ 30-win32-aliases.conf   2015-05-01 21:56:13 UTC (rev 132634)
@@ -1,20 +0,0 @@
-?xml version=1.0?
-!DOCTYPE fontconfig SYSTEM fonts.dtd
-fontconfig
-  alias binding=same
-familyMS Shell Dlg/family
-acceptfamilyMicrosoft Sans Serif/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-  alias binding=same
-familyMS Shell Dlg 2/family
-acceptfamilyTahoma/family/accept
-defaultfamilysans-serif/family/default
-  /alias
-
-  alias binding=same
-familyMS Sans Serif/family
-preferfamilyMicrosoft Sans Serif/family/prefer
-defaultfamilysans-serif/family/default
-  /alias
-/fontconfig

Copied: wine/repos/community-i686/30-win32-aliases.conf (from rev 132633, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2015-05-01 21:56:13 UTC (rev 132634)
@@ -0,0 +1,20 @@
+?xml version=1.0?
+!DOCTYPE fontconfig SYSTEM fonts.dtd
+fontconfig
+  alias binding=same
+familyMS Shell Dlg/family
+acceptfamilyMicrosoft Sans Serif/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+  alias binding=same
+familyMS Shell Dlg 2/family
+acceptfamilyTahoma/family/accept
+defaultfamilysans-serif/family/default
+  /alias
+
+  alias binding=same
+familyMS Sans Serif/family
+preferfamilyMicrosoft Sans Serif/family/prefer
+defaultfamilysans-serif/family/default
+  /alias
+/fontconfig

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 21:49:34 UTC (rev 132633)
+++ PKGBUILD2015-05-01 21:56:13 UTC (rev 132634)
@@ -1,183 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: Eduardo Romero edua...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-
-pkgname=wine
-pkgver=1.7.41
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$_pkgbasever.tar.bz2{,.sign}
-30-win32-aliases.conf)
-sha1sums=('e31aceb246f3f75416f8bf5b59c668c02d221b17'
-  'SKIP'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7)
-
-pkgdesc=A compatibility layer for running Windows programs
-url=http://www.winehq.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-install=wine.install
-
-_depends=(
-  fontconfig  lib32-fontconfig
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex prelink
-  'gcc=4.5.0-2'  'gcc-multilib=4.5.0-2'
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  gnutls  lib32-gnutls
-  libxinerama lib32-libxinerama
-  libxcomposite   lib32-libxcomposite
-  libxmu  lib32-libxmu
-  libxxf86vm  lib32-libxxf86vm
-  libxml2 lib32-libxml2
-  libldap lib32-libldap
-  lcms2   lib32-lcms2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  alsa-liblib32-alsa-lib
-  libxcomposite   lib32-libxcomposite
-  mesalib32-mesa
-  mesa-libgl  lib32-mesa-libgl
-  libcl   lib32-libcl
-  libxslt lib32-libxslt
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  giflib  lib32-giflib
-  libpng  lib32-libpng
-  libldap lib32-libldap
-  gnutls  lib32-gnutls
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  mpg123  lib32-mpg123
-  openal  lib32-openal
-  v4l-utils   lib32-v4l-utils
-  libpulselib32-libpulse
-  alsa-plugins

[arch-commits] Commit in linux-lts/trunk (4 files)

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 14:29:13
  Author: andyrtr
Revision: 238310

upgpkg: linux-lts 3.14.40-2

build with testing gcc-5; apply some upstream fixes for gcc-5 related build 
problems, disable a few modules that are not trivial to fix and where no simple 
upstream fix is available

Added:
  linux-lts/trunk/gcc5_buildfixes.diff
Modified:
  linux-lts/trunk/PKGBUILD
  linux-lts/trunk/config
  linux-lts/trunk/config.x86_64

--+
 PKGBUILD |   16 +-
 config   |   14 ++---
 config.x86_64|   14 ++---
 gcc5_buildfixes.diff |  115 +
 4 files changed, 141 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 05:49:46 UTC (rev 238309)
+++ PKGBUILD2015-05-01 12:29:13 UTC (rev 238310)
@@ -5,7 +5,7 @@
 pkgbase=linux-lts
 _srcname=linux-3.14
 pkgver=3.14.40
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
 license=('GPL2')
@@ -22,6 +22,7 @@
 '0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch'
 '0003-module-remove-MODULE_GENERIC_TABLE.patch'
 '0006-genksyms-fix-typeof-handling.patch'
+'gcc5_buildfixes.diff'
 )
 # https://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
 sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
@@ -28,14 +29,15 @@
 'SKIP'
 '6334031465a7cdf8187c86016ba63e1adc58c892910f2c3703c70eaae2fdbafe'
 'SKIP'
-'999486d20e07e489bb42356b529b739c65ad65de9191282f0ddbbc0eb9b1718e'
-'140098de1ba714c5916ea76578b8bf549ce801c4aa0c786b7c90289b85ecdb77'
+'9f0caf74d70599ac4eda356a42c7d9cb116f0cf42e87f165a383e4d215ae212d'
+'f40e1c54f53feaf3b35a8fca19a98c0f48d83cb8f9738eb8f97fc860b3a93e46'
 '1f036f7464da54ae510630f0edb69faa115287f86d9f17641197ffda8cfd49e0'
 'faced4eb4c47c4eb1a9ee8a5bf8a7c4b49d6b4d78efbe426e410730e6267d182'
 '6d72e14552df59e6310f16c176806c408355951724cd5b48a47bf01591b8be02'
 '52dec83a8805a8642d74d764494acda863e0aa23e3d249e80d4b457e20a3fd29'
 '65d58f63215ee3c5f9c4fc6bce36fc5311a6c7dbdbe1ad29de40647b47ff9c0d'
-'cf2e7a2d00787f754028e7459688c2755a406e632ce48b60952fa4ff7ed6f4b7')
+'cf2e7a2d00787f754028e7459688c2755a406e632ce48b60952fa4ff7ed6f4b7'
+'470d6d019d288dce02b4a9758a34ea71d41715663a19a164749212a470a131e7')
 validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds 
torva...@linux-foundation.org
   '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman 
(Linux kernel stable release signing key) g...@kroah.com
  )
@@ -54,6 +56,12 @@
   # add upstream patch
   patch -p1 -i ${srcdir}/patch-${pkgver}
 
+  # buildfixes for gcc5
+  # 
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drivers/scsi/qla2xxx/qla_nx2.c?id=9493c2422cae272d6f1f567cbb424195defe4176
+  # https://lkml.org/lkml/2014/11/9/27
+  # https://lkml.org/lkml/2014/12/14/55
+  patch -p1 -i ${srcdir}/gcc5_buildfixes.diff
+
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
 

Modified: config
===
--- config  2015-05-01 05:49:46 UTC (rev 238309)
+++ config  2015-05-01 12:29:13 UTC (rev 238310)
@@ -1871,7 +1871,7 @@
 CONFIG_MEGARAID_MM=m
 CONFIG_MEGARAID_MAILBOX=m
 CONFIG_MEGARAID_LEGACY=m
-CONFIG_MEGARAID_SAS=m
+# CONFIG_MEGARAID_SAS is not set
 CONFIG_SCSI_MPT2SAS=m
 CONFIG_SCSI_MPT2SAS_MAX_SGE=128
 # CONFIG_SCSI_MPT2SAS_LOGGING is not set
@@ -5641,14 +5641,14 @@
 CONFIG_FB_OLPC_DCON_1=y
 CONFIG_FB_OLPC_DCON_1_5=y
 # CONFIG_PANEL is not set
-CONFIG_R8187SE=m
+# CONFIG_R8187SE is not set
 CONFIG_RTL8192U=m
 CONFIG_RTLLIB=m
 CONFIG_RTLLIB_CRYPTO_CCMP=m
 CONFIG_RTLLIB_CRYPTO_TKIP=m
 CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
+# CONFIG_RTL8192E is not set
+# CONFIG_R8712U is not set
 CONFIG_R8188EU=m
 CONFIG_88EU_AP_MODE=y
 CONFIG_88EU_P2P=y
@@ -5655,7 +5655,7 @@
 CONFIG_R8821AE=m
 CONFIG_RTS5139=m
 # CONFIG_RTS5139_DEBUG is not set
-CONFIG_RTS5208=m
+# CONFIG_RTS5208 is not set
 # CONFIG_RTS5208_DEBUG is not set
 # CONFIG_TRANZPORT is not set
 CONFIG_IDE_PHISON=m
@@ -5665,8 +5665,8 @@
 CONFIG_VT6655=m
 CONFIG_VT6656=m
 CONFIG_DX_SEP=m
-CONFIG_WLAGS49_H2=m
-CONFIG_WLAGS49_H25=m
+# CONFIG_WLAGS49_H2 is not set
+# CONFIG_WLAGS49_H25 is not set
 CONFIG_FB_SM7XX=m
 CONFIG_CRYSTALHD=m
 CONFIG_FB_XGI=m

Modified: config.x86_64
===
--- config.x86_64   2015-05-01 05:49:46 UTC (rev 238309)
+++ config.x86_64   2015-05-01 12:29:13 UTC (rev 238310)
@@ -1835,7 +1835,7 @@
 CONFIG_MEGARAID_MM=m
 CONFIG_MEGARAID_MAILBOX=m
 CONFIG_MEGARAID_LEGACY=m
-CONFIG_MEGARAID_SAS=m
+# 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 14:29:54
  Author: andyrtr
Revision: 238311

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

Added:
  
linux-lts/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 238310, 
linux-lts/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-lts/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 238310, 
linux-lts/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-lts/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 238310, 
linux-lts/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux-lts/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 238310, linux-lts/trunk/0006-genksyms-fix-typeof-handling.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 238310, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 238310, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 238310, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 238310, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/gcc5_buildfixes.diff
(from rev 238310, linux-lts/trunk/gcc5_buildfixes.diff)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 238310, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 238310, linux-lts/trunk/linux-lts.preset)
  
linux-lts/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 238310, 
linux-lts/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-lts/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 238310, 
linux-lts/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-lts/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 238310, 
linux-lts/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux-lts/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 238310, linux-lts/trunk/0006-genksyms-fix-typeof-handling.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 238310, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 238310, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 238310, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 238310, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/gcc5_buildfixes.diff
(from rev 238310, linux-lts/trunk/gcc5_buildfixes.diff)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 238310, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 238310, linux-lts/trunk/linux-lts.preset)
Deleted:
  
linux-lts/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
  
linux-lts/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
  linux-lts/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
  linux-lts/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch
  linux-lts/repos/testing-i686/PKGBUILD
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
  linux-lts/repos/testing-i686/config
  linux-lts/repos/testing-i686/config.x86_64
  linux-lts/repos/testing-i686/linux-lts.install
  linux-lts/repos/testing-i686/linux-lts.preset
  
linux-lts/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
  
linux-lts/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
  linux-lts/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
  linux-lts/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch
  linux-lts/repos/testing-x86_64/PKGBUILD
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/testing-x86_64/config
  linux-lts/repos/testing-x86_64/config.x86_64
  linux-lts/repos/testing-x86_64/linux-lts.install
  linux-lts/repos/testing-x86_64/linux-lts.preset

+
 /0001-Bluetooth-allocate-static-minor-for-vhci.patch   
|  148 
 /0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch   
|  186 
 /0003-module-remove-MODULE_GENERIC_TABLE.patch 
|  150 
 /0006-genksyms-fix-typeof-handling.patch   
| 2720 ++
 /PKGBUILD  
|  684 
 /change-default-console-loglevel.patch 
|   24 
 /config
|13392 ++
 

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 14:49:45
  Author: andyrtr
Revision: 238313

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

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

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

Copied: nvidia-304xx-lts/repos/testing-i686/PKGBUILD (from rev 238312, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-01 12:49:45 UTC (rev 238313)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgname=nvidia-304xx-lts
+pkgver=304.125
+_extramodules=extramodules-3.14-lts
+pkgrel=7
+pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.40' 'libgl' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.14.40')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('bc3b0ac291fa998d5109a6f7e94fb2d4')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('291d41ccdbcc08f752a38f9e0a7eeea0')
+fi
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+sh ${_pkg}.run --extract-only
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
+install -d -m755 ${pkgdir}/usr/lib/modprobe.d
+echo blacklist nouveau  
${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf
+echo blacklist nvidiafb  
${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf
+gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
+install -D -m644 ${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-304xx-lts/LICENSE
+}

Copied: nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install (from rev 
238312, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
===
--- testing-i686/nvidia-304xx-lts.install   (rev 0)
+++ testing-i686/nvidia-304xx-lts.install   2015-05-01 12:49:45 UTC (rev 
238313)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.14-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD (from rev 238312, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-01 12:49:45 UTC (rev 238313)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgname=nvidia-304xx-lts
+pkgver=304.125
+_extramodules=extramodules-3.14-lts
+pkgrel=7
+pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.14.40' 'libgl' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.14.40')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+

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

2015-05-01 Thread Andreas Radke
Date: Friday, May 1, 2015 @ 14:49:33
  Author: andyrtr
Revision: 238312

upgpkg: nvidia-304xx-lts 304.125-7

rebuild for 3.14.40

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

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 12:29:54 UTC (rev 238311)
+++ PKGBUILD2015-05-01 12:49:33 UTC (rev 238312)
@@ -5,12 +5,12 @@
 pkgname=nvidia-304xx-lts
 pkgver=304.125
 _extramodules=extramodules-3.14-lts
-pkgrel=6
+pkgrel=7
 pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux-lts=3.14.36' 'libgl' nvidia-304xx-utils=${pkgver})
-makedepends=('linux-lts-headers=3.14.36')
+depends=('linux-lts=3.14.40' 'libgl' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.14.40')
 conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
 provides=('nvidia-304xx')
 license=('custom')


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

2015-05-01 Thread Alexander Rødseth
Date: Friday, May 1, 2015 @ 14:51:47
  Author: arodseth
Revision: 132586

Updated, but not released. Build takes forever.

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 12:04:22 UTC (rev 132585)
+++ PKGBUILD2015-05-01 12:51:47 UTC (rev 132586)
@@ -5,41 +5,39 @@
 pkgver=1.0.0.beta.3
 pkgrel=1
 arch=('x86_64' 'i686')
-pkgdesc='Safe, concurrent and practical programming language from Mozilla'
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
 url='http://www.rust-lang.org/'
 license=('MIT' 'Apache')
 makedepends=('libffi' 'perl' 'python2' 'curl')
-checkdepends=('git' 'valgrind')
 
source=(http://static.rust-lang.org/dist/rustc-${pkgver/.b/-b}-src.tar.gz{,.asc})
 sha256sums=('e751bc8a8ad236c8865697f866b2863e224af56b0194ddf9f3edd71f9ff6545f'
 'SKIP')
 install=$pkgname.install
 options=('staticlibs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
 #gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
 
-build() {
+prepare() {
   cd rustc-${pkgver/.b/-b}
 
-  ./configure --prefix=/usr --disable-debug --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
+  # Use Python 2
   sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
 
+build() {
+  cd rustc-${pkgver/.b/-b}
+
+  ./configure --prefix=/usr --disable-docs --release-channel=beta
   make
 }
 
-#check() {
-#  cd rustc-${pkgver/.b/-b}
-#  make check
-#}
-
 package() {
   cd rustc-${pkgver/.b/-b}
 
   make DESTDIR=$pkgdir install
 
-  install -Dm644 LICENSE-APACHE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
   install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
 
   cd $pkgdir/usr/lib


[arch-commits] Commit in perl-xml-libxml/repos (8 files)

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 14:54:19
  Author: fyan
Revision: 238315

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

Added:
  perl-xml-libxml/repos/extra-i686/PKGBUILD
(from rev 238314, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install
(from rev 238314, perl-xml-libxml/trunk/perl-xml-libxml.install)
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
(from rev 238314, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install
(from rev 238314, perl-xml-libxml/trunk/perl-xml-libxml.install)
Deleted:
  perl-xml-libxml/repos/extra-i686/PKGBUILD
  perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install

--+
 /PKGBUILD|   72 +
 /perl-xml-libxml.install |   32 ++
 extra-i686/PKGBUILD  |   36 
 extra-i686/perl-xml-libxml.install   |   16 ---
 extra-x86_64/PKGBUILD|   36 
 extra-x86_64/perl-xml-libxml.install |   16 ---
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-01 12:53:41 UTC (rev 238314)
+++ extra-i686/PKGBUILD 2015-05-01 12:54:19 UTC (rev 238315)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin juster Davis jrc...@gmail.com
-# Contributor: François Charette francois.archlinux.org
-
-pkgname=perl-xml-libxml
-pkgver=2.0119
-pkgrel=1
-pkgdesc=Interface to the libxml library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('6da66bcbc885c17d7e9490907913b6ab')
-
-build() {
-  cd $srcdir/XML-LibXML-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd $srcdir/XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd $srcdir/XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir/
-}

Copied: perl-xml-libxml/repos/extra-i686/PKGBUILD (from rev 238314, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-01 12:54:19 UTC (rev 238315)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin juster Davis jrc...@gmail.com
+# Contributor: François Charette francois.archlinux.org
+
+pkgname=perl-xml-libxml
+pkgver=2.0120
+pkgrel=1
+pkgdesc=Interface to the libxml library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+md5sums=('ad4b930ecdc594cc06437b59ed85ab58')
+
+build() {
+  cd $srcdir/XML-LibXML-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir/
+}

Deleted: extra-i686/perl-xml-libxml.install
===
--- extra-i686/perl-xml-libxml.install  2015-05-01 12:53:41 UTC (rev 238314)
+++ extra-i686/perl-xml-libxml.install  2015-05-01 12:54:19 UTC (rev 238315)
@@ -1,16 +0,0 @@
-post_install() {
-  echo :: Installing SAX XML Parsers
-  perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX::Parser))-save_parsers()
-  perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX))-save_parsers()
-}
-
-post_upgrade() {
-  if [[ ! -f /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]]; then
-post_install
-  else
-libxmlcount=`grep -c XML::LibXML::SAX 
/usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini`
-if [[ $libxmlcount == 0 ]]; then
-  post_install
-fi
-  fi
-}

Copied: perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install (from rev 
238314, perl-xml-libxml/trunk/perl-xml-libxml.install)
===
--- extra-i686/perl-xml-libxml.install  (rev 0)
+++ extra-i686/perl-xml-libxml.install  2015-05-01 12:54:19 UTC (rev 238315)
@@ 

[arch-commits] Commit in perl-xml-libxml/trunk (PKGBUILD)

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 14:53:41
  Author: fyan
Revision: 238314

upgpkg: perl-xml-libxml 2.0120-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 12:49:45 UTC (rev 238313)
+++ PKGBUILD2015-05-01 12:53:41 UTC (rev 238314)
@@ -5,7 +5,7 @@
 # Contributor: François Charette francois.archlinux.org
 
 pkgname=perl-xml-libxml
-pkgver=2.0119
+pkgver=2.0120
 pkgrel=1
 pkgdesc=Interface to the libxml library
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 install=perl-xml-libxml.install
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('6da66bcbc885c17d7e9490907913b6ab')
+md5sums=('ad4b930ecdc594cc06437b59ed85ab58')
 
 build() {
   cd $srcdir/XML-LibXML-$pkgver


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 14:56:37
  Author: fyan
Revision: 132588

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 12:56:16 UTC (rev 132587)
+++ PKGBUILD2015-05-01 12:56:37 UTC (rev 132588)
@@ -1,21 +0,0 @@
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-
-pkgname=python-pyx
-pkgver=0.13
-pkgrel=3
-pkgdesc='Python library for the creation of PostScript and PDF files'
-arch=('any')
-url=http://pyx.sourceforge.net;
-license=('GPL')
-depends=('python' 'texlive-core')
-source=(http://downloads.sourceforge.net/sourceforge/pyx/PyX-$pkgver.tar.gz;)
-sha512sums=('cab0c22f0862ae20cff92504ededf4fcf5820d5773130fb258de1a95d295ca4fe657b85d5ccd52021a4f84403e6db8eebe9f676fa405781738502456123eb05c')
-
-package() {
-  cd PyX-$pkgver
-  python3 setup.py install -O1 --root=$pkgdir
-}
-

Copied: python-pyx/repos/community-any/PKGBUILD (from rev 132587, 
python-pyx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 12:56:37 UTC (rev 132588)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+
+pkgname=python-pyx
+pkgver=0.14
+pkgrel=1
+pkgdesc='Python library for the creation of PostScript and PDF files'
+arch=('any')
+url=http://pyx.sourceforge.net;
+license=('GPL')
+depends=('python' 'texlive-core')
+source=(http://downloads.sourceforge.net/sourceforge/pyx/PyX-$pkgver.tar.gz;)
+sha512sums=('328b917e406e29f656dff00ff54fc5b82296cdc4b134f45ef380d0b1e7011311e4c149be59f5089064c183e8ade3adca27a2304b3bafd2e735f256e6de8b8b3b')
+
+package() {
+  cd PyX-$pkgver
+  python3 setup.py install -O1 --root=$pkgdir
+}
+


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

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 14:56:16
  Author: fyan
Revision: 132587

upgpkg: python-pyx 0.14-1

Modified:
  python-pyx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 12:51:47 UTC (rev 132586)
+++ PKGBUILD2015-05-01 12:56:16 UTC (rev 132587)
@@ -1,11 +1,12 @@
-# Maintainer: Felix Yan felixonm...@gmail.com
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
 # Contributor: William Rea sillywi...@gmail.com
 # Contributor: Stefan Husmann stefan-husm...@t-online.de
 
 pkgname=python-pyx
-pkgver=0.13
-pkgrel=3
+pkgver=0.14
+pkgrel=1
 pkgdesc='Python library for the creation of PostScript and PDF files'
 arch=('any')
 url=http://pyx.sourceforge.net;
@@ -12,7 +13,7 @@
 license=('GPL')
 depends=('python' 'texlive-core')
 source=(http://downloads.sourceforge.net/sourceforge/pyx/PyX-$pkgver.tar.gz;)
-sha512sums=('cab0c22f0862ae20cff92504ededf4fcf5820d5773130fb258de1a95d295ca4fe657b85d5ccd52021a4f84403e6db8eebe9f676fa405781738502456123eb05c')
+sha512sums=('328b917e406e29f656dff00ff54fc5b82296cdc4b134f45ef380d0b1e7011311e4c149be59f5089064c183e8ade3adca27a2304b3bafd2e735f256e6de8b8b3b')
 
 package() {
   cd PyX-$pkgver


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

2015-05-01 Thread Jan Steffens
Date: Friday, May 1, 2015 @ 13:52:44
  Author: heftig
Revision: 132584

2.5.3

Modified:
  rubinius/trunk/PKGBUILD
Deleted:
  rubinius/trunk/0001-Allow-shared-linking-to-LLVM-3.5.patch

-+
 0001-Allow-shared-linking-to-LLVM-3.5.patch |  102 --
 PKGBUILD|   28 +++
 2 files changed, 12 insertions(+), 118 deletions(-)

Deleted: 0001-Allow-shared-linking-to-LLVM-3.5.patch
===
--- 0001-Allow-shared-linking-to-LLVM-3.5.patch 2015-05-01 09:50:54 UTC (rev 
132583)
+++ 0001-Allow-shared-linking-to-LLVM-3.5.patch 2015-05-01 11:52:44 UTC (rev 
132584)
@@ -1,102 +0,0 @@
-From 4fd2b3dc1395e838d5e77de4b551063d5849deaa Mon Sep 17 00:00:00 2001
-From: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-Date: Fri, 6 Mar 2015 20:45:47 +0100
-Subject: [PATCH] Allow shared linking to LLVM 3.5
-
-Run check_llvm_flags before checking for shared libs and use the
-calculated flags there.

- configure | 53 +++--
- 1 file changed, 23 insertions(+), 30 deletions(-)
-
-diff --git a/configure b/configure
-index fabb2d3..3a35743 100755
 a/configure
-+++ b/configure
-@@ -563,15 +563,6 @@ class Configure
-   return false
- end
- 
--if setup_config
--  check_llvm_flags
--  return true
--end
--
--failure ABORT: unable to set up LLVM
--  end
--
--  def setup_config
- @log.print   Checking for 'llvm-config': 
- 
- config = @llvm_configure
-@@ -602,36 +593,38 @@ class Configure
- # Ruby 1.9 raises this error
- failed = true
-   end
--  if failed
--@log.write Executing #{config_cmd.inspect} failed
--return false
--  end
- 
--  parts = version.sub(/svn$/, ).split(.).map { |i| i.to_i }
--  api_version = (%d%02d % parts[0..1]).to_i
--  if api_version  300 or api_version  305
--@log.write only LLVM 3.0-3.5 is supported
--  else
--@log.write found! (version #{version} - api: #{api_version})
--@llvm = :config
--@llvm_configure = config_cmd
--@llvm_version = version
--@llvm_api_version = api_version
-+  unless failed
-+parts = version.sub(/svn$/, ).split(.).map { |i| i.to_i }
-+api_version = (%d%02d % parts[0..1]).to_i
-+if api_version  300 or api_version  305
-+  @log.write only LLVM 3.0-3.5 is supported
-+else
-+  @log.write found! (version #{version} - api: #{api_version})
-+  @llvm = :config
-+  @llvm_configure = config_cmd
-+  @llvm_version = version
-+  @llvm_api_version = api_version
- 
--if @llvm_shared
--  setup_config_shared
-+  check_llvm_flags
-+
-+  if @llvm_shared
-+setup_llvm_shared
-+  end
-+
-+  return true
- end
--
--return true
-+  else
-+@log.write executing #{config_cmd.inspect} failed
-   end
- else
-   @log.write not found
- end
- 
--false
-+failure ABORT: unable to set up LLVM
-   end
- 
--  def setup_config_shared
-+  def setup_llvm_shared
- @log.print   Checking for LLVM shared libs: 
- 
- src = -EOP
-@@ -640,7 +633,7 @@ using namespace llvm;
- int main() { LLVMContext Context = getGlobalContext(); }
- EOP
- 
--common_args = `#{@llvm_configure} --cppflags --ldflags`.strip.split(/\s+/)
-+common_args = `#{@llvm_configure} --cppflags` #{@llvm_cxxflags} 
#{@llvm_ldflags}.strip.split(/\s+/)
- shared_configs = {
-   libLLVM-#{@llvm_version}  = [-lLLVM-#{@llvm_version}],
-   #{@llvm_configure} --libs = `#{@llvm_configure} 
--libs`.strip.split(/\s+/)
--- 
-2.3.5
-

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 09:50:54 UTC (rev 132583)
+++ PKGBUILD2015-05-01 11:52:44 UTC (rev 132584)
@@ -3,8 +3,8 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=2.5.1
-pkgrel=4
+pkgver=2.5.3
+pkgrel=1
 pkgdesc=Ruby runtime written in Ruby, designed for concurrency
 arch=(i686 x86_64)
 url=http://rubini.us;
@@ -13,18 +13,19 @@
 makedepends=(llvm35 rubinius-ruby)
 options=(!emptydirs)
 source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
-0001-Allow-shared-linking-to-LLVM-3.5.patch
 gemrc dirs.patch)
-sha256sums=('00d6f23b7632d035d322209e736a9341155350a9d169e8471d38a554a8e26600'
-'e5b1c56e18bce8589d30ee8181128eccec6c3cbacb82f52f5cb4614407d8192a'
+sha256sums=('9af4d6e9d1e78a586579c86b9eb9a082cb863885d4a7cf33989d73280461e5fc'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
 
-prepare() {
+_common() {
   export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
   cd $pkgbase-$pkgver
+}
 
-  patch -Np1 -i 

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

2015-05-01 Thread Jan Steffens
Date: Friday, May 1, 2015 @ 14:04:22
  Author: heftig
Revision: 132585

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

Added:
  rubinius/repos/community-i686/PKGBUILD
(from rev 132584, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-i686/dirs.patch
(from rev 132584, rubinius/trunk/dirs.patch)
  rubinius/repos/community-i686/gemrc
(from rev 132584, rubinius/trunk/gemrc)
  rubinius/repos/community-x86_64/PKGBUILD
(from rev 132584, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
(from rev 132584, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
(from rev 132584, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-i686/0001-Allow-shared-linking-to-LLVM-3.5.patch
  rubinius/repos/community-i686/PKGBUILD
  rubinius/repos/community-i686/dirs.patch
  rubinius/repos/community-i686/gemrc
  rubinius/repos/community-x86_64/0001-Allow-shared-linking-to-LLVM-3.5.patch
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

--+
 /PKGBUILD|  174 ++
 /dirs.patch  |   42 ++
 /gemrc   |   10 
 community-i686/0001-Allow-shared-linking-to-LLVM-3.5.patch   |  102 -
 community-i686/PKGBUILD  |   91 -
 community-i686/dirs.patch|   21 -
 community-i686/gemrc |5 
 community-x86_64/0001-Allow-shared-linking-to-LLVM-3.5.patch |  102 -
 community-x86_64/PKGBUILD|   91 -
 community-x86_64/dirs.patch  |   21 -
 community-x86_64/gemrc   |5 
 11 files changed, 226 insertions(+), 438 deletions(-)

Deleted: community-i686/0001-Allow-shared-linking-to-LLVM-3.5.patch
===
--- community-i686/0001-Allow-shared-linking-to-LLVM-3.5.patch  2015-05-01 
11:52:44 UTC (rev 132584)
+++ community-i686/0001-Allow-shared-linking-to-LLVM-3.5.patch  2015-05-01 
12:04:22 UTC (rev 132585)
@@ -1,102 +0,0 @@
-From 4fd2b3dc1395e838d5e77de4b551063d5849deaa Mon Sep 17 00:00:00 2001
-From: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-Date: Fri, 6 Mar 2015 20:45:47 +0100
-Subject: [PATCH] Allow shared linking to LLVM 3.5
-
-Run check_llvm_flags before checking for shared libs and use the
-calculated flags there.

- configure | 53 +++--
- 1 file changed, 23 insertions(+), 30 deletions(-)
-
-diff --git a/configure b/configure
-index fabb2d3..3a35743 100755
 a/configure
-+++ b/configure
-@@ -563,15 +563,6 @@ class Configure
-   return false
- end
- 
--if setup_config
--  check_llvm_flags
--  return true
--end
--
--failure ABORT: unable to set up LLVM
--  end
--
--  def setup_config
- @log.print   Checking for 'llvm-config': 
- 
- config = @llvm_configure
-@@ -602,36 +593,38 @@ class Configure
- # Ruby 1.9 raises this error
- failed = true
-   end
--  if failed
--@log.write Executing #{config_cmd.inspect} failed
--return false
--  end
- 
--  parts = version.sub(/svn$/, ).split(.).map { |i| i.to_i }
--  api_version = (%d%02d % parts[0..1]).to_i
--  if api_version  300 or api_version  305
--@log.write only LLVM 3.0-3.5 is supported
--  else
--@log.write found! (version #{version} - api: #{api_version})
--@llvm = :config
--@llvm_configure = config_cmd
--@llvm_version = version
--@llvm_api_version = api_version
-+  unless failed
-+parts = version.sub(/svn$/, ).split(.).map { |i| i.to_i }
-+api_version = (%d%02d % parts[0..1]).to_i
-+if api_version  300 or api_version  305
-+  @log.write only LLVM 3.0-3.5 is supported
-+else
-+  @log.write found! (version #{version} - api: #{api_version})
-+  @llvm = :config
-+  @llvm_configure = config_cmd
-+  @llvm_version = version
-+  @llvm_api_version = api_version
- 
--if @llvm_shared
--  setup_config_shared
-+  check_llvm_flags
-+
-+  if @llvm_shared
-+setup_llvm_shared
-+  end
-+
-+  return true
- end
--
--return true
-+  else
-+@log.write executing #{config_cmd.inspect} failed
-   end
- else
-   @log.write not found
- end
- 
--false
-+failure ABORT: unable to set up LLVM
-   end
- 
--  def setup_config_shared
-+  def setup_llvm_shared
- @log.print   Checking for LLVM shared libs: 
- 
- src = -EOP
-@@ -640,7 +633,7 @@ using namespace llvm;
- int 

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

2015-05-01 Thread Sergej Pupykin
Date: Friday, May 1, 2015 @ 15:49:15
  Author: spupykin
Revision: 132590

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-01 13:17:51 UTC (rev 132589)
+++ PKGBUILD2015-05-01 13:49:15 UTC (rev 132590)
@@ -4,7 +4,7 @@
 # Maintainer: JJDaNiMoTh jjdanim...@gmail.com
 
 pkgname=sdlmame
-pkgver=0.160
+pkgver=0.161
 #_patchlevel=`echo $pkgver | cut -f2 -du`
 #_basever=`echo $pkgver | cut -f1,2 -d.`
 _basever=$pkgver
@@ -26,22 +26,23 @@
sdlmame.sh
extras.tar.gz
${_patches})
-md5sums=('b06e079e64cabbfbbf04d978b4dd79cd'
+md5sums=('fc6dc92f5af0e9125c6cd20ce8ebf3f1'
  '0cced0fe9868cc56129600fb4bd5b9ed'
  '420b61240bf5ae11615ba7c6100ee00d')
 
+prepare() {
+  cd $srcdir/
+  unzip mame.zip
+  find . -type f -not -name \*.png | xargs perl -pi -e 's/\r\n?/\n/g'
+#  for i in `seq 1 ${_patchlevel}`; do
+#msg Patch#$i
+#patch -p0 -E ${_basever/./}u$i.diff
+#  done
+}
+
 build() {
   cd $srcdir/
-  if [ $NOEXTRACT -eq 0 ]; then
-unzip mame.zip
-find . -type f -not -name \*.png | xargs perl -pi -e 's/\r\n?/\n/g'
-#for i in `seq 1 ${_patchlevel}`; do
-#  msg Patch#$i
-#  patch -p0 -E ${_basever/./}u$i.diff
-#done
-  fi
-  make NOWERROR=1 OPTIMIZE=2 PYTHON=python2
-  make tools NOWERROR=1 OPTIMIZE=2 PYTHON=python2
+  make NOWERROR=1 OPTIMIZE=2 PYTHON_EXECUTABLE=/usr/bin/python2 TOOLS=1
 }
 
 package() {