[arch-commits] Commit in clamav/trunk (8 files)

2014-01-07 Thread Gaetan Bisson
Date: Tuesday, January 7, 2014 @ 08:59:57
  Author: bisson
Revision: 203271

implement FS#38399

Added:
  clamav/trunk/clamd.conf
  clamav/trunk/clamd.service
(from rev 203268, clamav/trunk/service)
  clamav/trunk/freshclam.conf
  clamav/trunk/freshclamd.service
(from rev 203268, clamav/trunk/service.fresh)
Modified:
  clamav/trunk/PKGBUILD
Deleted:
  clamav/trunk/config.patch
  clamav/trunk/service
  clamav/trunk/service.fresh

+
 PKGBUILD   |   34 ++
 clamd.conf |6 ++
 clamd.service  |   10 ++
 config.patch   |   30 --
 freshclam.conf |3 +++
 freshclamd.service |   10 ++
 service|   10 --
 service.fresh  |   10 --
 8 files changed, 47 insertions(+), 66 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 07:14:44 UTC (rev 203270)
+++ PKGBUILD2014-01-07 07:59:57 UTC (rev 203271)
@@ -5,33 +5,33 @@
 
 pkgname=clamav
 pkgver=0.98
-pkgrel=1
+pkgrel=2
 pkgdesc='Anti-virus toolkit for Unix'
 url='http://www.clamav.net/'
 license=('GPL')
 arch=('i686' 'x86_64')
-depends=('bzip2' 'libltdl')
-backup=('etc/logrotate.d/clamav')
+depends=('bzip2' 'libltdl' 'gcc-libs')
 
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-'service'
-'service.fresh'
 'logrotate'
 'tmpfiles.d'
-'config.patch')
+'clamd.conf'
+'freshclam.conf'
+'clamd.service'
+'freshclamd.service')
 sha1sums=('1e6a7284721387646c713a8d32fa8b5a897985db'
-  'b6ac0c5de1e5b41232b10d4f84e86201c370eaeb'
-  'cda9a087e5593992150cb456e34c5f6f589aca82'
   'bb488a56b0f6a0760446cde89c1e3321e2717b78'
   'a224ea9b4d0f4f196827347d54bed51e11c197ea'
-  '00dfadd93d11186793cb1161745f9dd7370beb99')
+  '887f624eb305f2446f55d8339e2972ad0cfe2b79'
+  'b767837d0279ad30b92c314cb762b73e5ad0415e'
+  'b6ac0c5de1e5b41232b10d4f84e86201c370eaeb'
+  'cda9a087e5593992150cb456e34c5f6f589aca82')
 
+backup=('etc/clamav/clamd.conf'
+'etc/clamav/freshclam.conf'
+'etc/logrotate.d/clamav')
+
 install=install
 
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../config.patch
-}
-
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure \
@@ -48,8 +48,10 @@
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
 
-   install -Dm644 ../service.fresh 
${pkgdir}/usr/lib/systemd/system/freshclamd.service
-   install -Dm644 ../service 
${pkgdir}/usr/lib/systemd/system/clamd.service
+   install -Dm644 ../clamd.conf ${pkgdir}/etc/clamav/clamd.conf
+   install -Dm644 ../freshclam.conf ${pkgdir}/etc/clamav/freshclam.conf
+   install -Dm644 ../freshclamd.service 
${pkgdir}/usr/lib/systemd/system/freshclamd.service
+   install -Dm644 ../clamd.service 
${pkgdir}/usr/lib/systemd/system/clamd.service
install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/clamav.conf
install -Dm644 ../logrotate ${pkgdir}/etc/logrotate.d/clamav
 

Added: clamd.conf
===
--- clamd.conf  (rev 0)
+++ clamd.conf  2014-01-07 07:59:57 UTC (rev 203271)
@@ -0,0 +1,6 @@
+LogFile /var/log/clamav/clamd.log
+LogTime yes
+PidFile /run/clamav/clamd.pid
+TemporaryDirectory /tmp
+LocalSocket /var/lib/clamav/clamd.sock
+User clamav

Copied: clamav/trunk/clamd.service (from rev 203268, clamav/trunk/service)
===
--- clamd.service   (rev 0)
+++ clamd.service   2014-01-07 07:59:57 UTC (rev 203271)
@@ -0,0 +1,10 @@
+[Unit]
+Description=clamav daemon
+
+[Service]
+Type=forking
+PIDFile=/run/clamav/clamd.pid
+ExecStart=/usr/bin/clamd
+
+[Install]
+WantedBy=multi-user.target

Deleted: config.patch
===
--- config.patch2014-01-07 07:14:44 UTC (rev 203270)
+++ config.patch2014-01-07 07:59:57 UTC (rev 203271)
@@ -1,30 +0,0 @@
-diff -arU 0 old/etc/clamd.conf.sample new/etc/clamd.conf.sample
 old/etc/clamd.conf.sample  2010-12-02 19:31:21.773357389 +0100
-+++ new/etc/clamd.conf.sample  2010-12-02 19:31:45.873357389 +0100
-@@ -14 +14 @@
--#LogFile /tmp/clamd.log
-+LogFile /var/log/clamav/clamd.log
-@@ -34 +34 @@
--#LogTime yes
-+LogTime yes
-@@ -61 +61 @@
--#PidFile /var/run/clamd.pid
-+PidFile /run/clamav/clamd.pid
-@@ -65 +65 @@
--#TemporaryDirectory /var/tmp
-+TemporaryDirectory /tmp
-@@ -80 +80 @@
--#LocalSocket /tmp/clamd.socket
-+LocalSocket /var/lib/clamav/clamd.sock
-@@ -190 +190 @@
--#User clamav
-+User clamav
-diff -arU 0 old/etc/freshclam.conf.sample new/etc/freshclam.conf.sample
 

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

2014-01-07 Thread Gaetan Bisson
Date: Tuesday, January 7, 2014 @ 09:01:17
  Author: bisson
Revision: 203272

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

Added:
  clamav/repos/testing-i686/
  clamav/repos/testing-i686/PKGBUILD
(from rev 203271, clamav/trunk/PKGBUILD)
  clamav/repos/testing-i686/clamd.conf
(from rev 203271, clamav/trunk/clamd.conf)
  clamav/repos/testing-i686/clamd.service
(from rev 203271, clamav/trunk/clamd.service)
  clamav/repos/testing-i686/freshclam.conf
(from rev 203271, clamav/trunk/freshclam.conf)
  clamav/repos/testing-i686/freshclamd.service
(from rev 203271, clamav/trunk/freshclamd.service)
  clamav/repos/testing-i686/install
(from rev 203271, clamav/trunk/install)
  clamav/repos/testing-i686/logrotate
(from rev 203271, clamav/trunk/logrotate)
  clamav/repos/testing-i686/tmpfiles.d
(from rev 203271, clamav/trunk/tmpfiles.d)
  clamav/repos/testing-x86_64/
  clamav/repos/testing-x86_64/PKGBUILD
(from rev 203271, clamav/trunk/PKGBUILD)
  clamav/repos/testing-x86_64/clamd.conf
(from rev 203271, clamav/trunk/clamd.conf)
  clamav/repos/testing-x86_64/clamd.service
(from rev 203271, clamav/trunk/clamd.service)
  clamav/repos/testing-x86_64/freshclam.conf
(from rev 203271, clamav/trunk/freshclam.conf)
  clamav/repos/testing-x86_64/freshclamd.service
(from rev 203271, clamav/trunk/freshclamd.service)
  clamav/repos/testing-x86_64/install
(from rev 203271, clamav/trunk/install)
  clamav/repos/testing-x86_64/logrotate
(from rev 203271, clamav/trunk/logrotate)
  clamav/repos/testing-x86_64/tmpfiles.d
(from rev 203271, clamav/trunk/tmpfiles.d)

---+
 testing-i686/PKGBUILD |   61 
 testing-i686/clamd.conf   |6 +++
 testing-i686/clamd.service|   10 +
 testing-i686/freshclam.conf   |3 +
 testing-i686/freshclamd.service   |   10 +
 testing-i686/install  |   10 +
 testing-i686/logrotate|   10 +
 testing-i686/tmpfiles.d   |1 
 testing-x86_64/PKGBUILD   |   61 
 testing-x86_64/clamd.conf |6 +++
 testing-x86_64/clamd.service  |   10 +
 testing-x86_64/freshclam.conf |3 +
 testing-x86_64/freshclamd.service |   10 +
 testing-x86_64/install|   10 +
 testing-x86_64/logrotate  |   10 +
 testing-x86_64/tmpfiles.d |1 
 16 files changed, 222 insertions(+)

Copied: clamav/repos/testing-i686/PKGBUILD (from rev 203271, 
clamav/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-01-07 08:01:17 UTC (rev 203272)
@@ -0,0 +1,61 @@
+# $Id$
+# Contributor: Dale Blount d...@archlinux.org
+# Contributor: Gregor Ibic gregor.i...@intelicom.si
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=clamav
+pkgver=0.98
+pkgrel=2
+pkgdesc='Anti-virus toolkit for Unix'
+url='http://www.clamav.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('bzip2' 'libltdl' 'gcc-libs')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'logrotate'
+'tmpfiles.d'
+'clamd.conf'
+'freshclam.conf'
+'clamd.service'
+'freshclamd.service')
+sha1sums=('1e6a7284721387646c713a8d32fa8b5a897985db'
+  'bb488a56b0f6a0760446cde89c1e3321e2717b78'
+  'a224ea9b4d0f4f196827347d54bed51e11c197ea'
+  '887f624eb305f2446f55d8339e2972ad0cfe2b79'
+  'b767837d0279ad30b92c314cb762b73e5ad0415e'
+  'b6ac0c5de1e5b41232b10d4f84e86201c370eaeb'
+  'cda9a087e5593992150cb456e34c5f6f589aca82')
+
+backup=('etc/clamav/clamd.conf'
+'etc/clamav/freshclam.conf'
+'etc/logrotate.d/clamav')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/clamav \
+   --with-dbdir=/var/lib/clamav \
+   --disable-clamav \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 ../clamd.conf ${pkgdir}/etc/clamav/clamd.conf
+   install -Dm644 ../freshclam.conf ${pkgdir}/etc/clamav/freshclam.conf
+   install -Dm644 ../freshclamd.service 
${pkgdir}/usr/lib/systemd/system/freshclamd.service
+   install -Dm644 ../clamd.service 
${pkgdir}/usr/lib/systemd/system/clamd.service
+   install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/clamav.conf
+   install -Dm644 ../logrotate ${pkgdir}/etc/logrotate.d/clamav
+
+   install -d -o 64 -g 64 ${pkgdir}/run/clamav
+   install -d -o 64 -g 64 ${pkgdir}/var/log/clamav
+   install -d -o 64 -g 64 ${pkgdir}/var/lib/clamav
+}

Copied: 

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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 09:03:13
  Author: lcarlier
Revision: 103523

upgpkg: gambas3 3.5.1-3

LLVM 3.4 rebuild

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 07:35:18 UTC (rev 103522)
+++ PKGBUILD2014-01-07 08:03:13 UTC (rev 103523)
@@ -16,7 +16,7 @@
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web')
 pkgname=(${_components[@]} 'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 
'gambas3-script' 'gambas3-examples')
 pkgver=3.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc=A free development environment based on a Basic interpreter.
 arch=('i686' 'x86_64')
 url=http://gambas.sourceforge.net/;



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 09:03:36
  Author: lcarlier
Revision: 103524

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

Added:
  gambas3/repos/community-staging-i686/
  gambas3/repos/community-staging-i686/PKGBUILD
(from rev 103523, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-i686/gambas3-runtime.install
(from rev 103523, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-i686/gambas3-script.install
(from rev 103523, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-staging-x86_64/
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 103523, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
(from rev 103523, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-x86_64/gambas3-script.install
(from rev 103523, gambas3/trunk/gambas3-script.install)

--+
 community-staging-i686/PKGBUILD  |  964 +
 community-staging-i686/gambas3-runtime.install   |   10 
 community-staging-i686/gambas3-script.install|   15 
 community-staging-x86_64/PKGBUILD|  964 +
 community-staging-x86_64/gambas3-runtime.install |   10 
 community-staging-x86_64/gambas3-script.install  |   15 
 6 files changed, 1978 insertions(+)

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


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

2014-01-07 Thread Bartłomiej Piotrowski
Date: Tuesday, January 7, 2014 @ 09:43:13
  Author: bpiotrowski
Revision: 103526

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

Added:
  kicad/repos/community-staging-i686/
  kicad/repos/community-staging-i686/PKGBUILD
(from rev 103525, kicad/trunk/PKGBUILD)
  
kicad/repos/community-staging-i686/kicad-boost-polygon-declare-gtlsort-earlier.patch
(from rev 103525, 
kicad/trunk/kicad-boost-polygon-declare-gtlsort-earlier.patch)
  kicad/repos/community-staging-i686/kicad.install
(from rev 103525, kicad/trunk/kicad.install)
  kicad/repos/community-staging-i686/wxgtk3.0.patch
(from rev 103525, kicad/trunk/wxgtk3.0.patch)
  kicad/repos/community-staging-x86_64/
  kicad/repos/community-staging-x86_64/PKGBUILD
(from rev 103525, kicad/trunk/PKGBUILD)
  
kicad/repos/community-staging-x86_64/kicad-boost-polygon-declare-gtlsort-earlier.patch
(from rev 103525, 
kicad/trunk/kicad-boost-polygon-declare-gtlsort-earlier.patch)
  kicad/repos/community-staging-x86_64/kicad.install
(from rev 103525, kicad/trunk/kicad.install)
  kicad/repos/community-staging-x86_64/wxgtk3.0.patch
(from rev 103525, kicad/trunk/wxgtk3.0.patch)

+
 community-staging-i686/PKGBUILD|   
57 ++
 community-staging-i686/kicad-boost-polygon-declare-gtlsort-earlier.patch   |   
11 +
 community-staging-i686/kicad.install   |   
15 ++
 community-staging-i686/wxgtk3.0.patch  |   
12 ++
 community-staging-x86_64/PKGBUILD  |   
57 ++
 community-staging-x86_64/kicad-boost-polygon-declare-gtlsort-earlier.patch |   
11 +
 community-staging-x86_64/kicad.install |   
15 ++
 community-staging-x86_64/wxgtk3.0.patch|   
12 ++
 8 files changed, 190 insertions(+)

Copied: kicad/repos/community-staging-i686/PKGBUILD (from rev 103525, 
kicad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-07 08:43:13 UTC (rev 103526)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Marq Schneider queue...@gmail.com
+
+pkgname=kicad
+pkgver=20130518
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6:2}
+_pkgbzr=4017
+pkgrel=2
+pkgdesc=Electronic schematic and printed circuit board (PCB) design tools
+arch=('i686' 'x86_64')
+url=http://iut-tice.ujf-grenoble.fr/kicad/;
+license=('GPL')
+depends=('glu' 'wxgtk' 'hicolor-icon-theme' 'desktop-file-utils' 'libsm')
+makedepends=('cmake' 'zlib' 'mesa')
+optdepends=('kicad-docs-bzr: for documentation' 
+'kicad-library-bzr: for footprints')
+install=kicad.install
+source=(http://iut-tice.ujf-grenoble.fr/cao/${pkgname}-sources-stable_${_pkgver}_BZR${_pkgbzr}.zip
+kicad-boost-polygon-declare-gtlsort-earlier.patch
+wxgtk3.0.patch)
+md5sums=('9e6aab0f2ad01a17c8ec96cd9162dc79'
+ 'a2c39704238946e74a5ed0c38326345f'
+ 'ec3e7581c814ca2b76becc7b30a8529f')
+
+build() {
+  cd $srcdir/stable_${_pkgver}_BZR${_pkgbzr}
+
+  patch -p0  $srcdir/kicad-boost-polygon-declare-gtlsort-earlier.patch
+  patch -p1  $srcdir/wxgtk3.0.patch
+
+  # harmless build blocking error
+  # see https://lists.launchpad.net/kicad-developers/msg07841.html
+  # for proper fix
+  sed -i 's|^#.*error You must use|//|' include/common.h
+
+  # FS#31559
+  sed -i 's/-O2/-O1/' CMakeLists.txt
+
+  # build and install kicad
+  mkdir -p build/Release
+  cd build/Release
+  cmake ../.. -DKICAD_STABLE_VERSION=ON\
+  -DCMAKE_BUILD_TYPE=Release   \
+  -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/stable_${_pkgver}_BZR${_pkgbzr}/build/Release
+
+  make DESTDIR=$pkgdir install
+
+  # copy updated linux icons
+  #cp -r -n $srcdir/$pkgname-icons/resources/linux/mime/icons 
$pkgdir/usr/share/
+}
+

Copied: 
kicad/repos/community-staging-i686/kicad-boost-polygon-declare-gtlsort-earlier.patch
 (from rev 103525, 
kicad/trunk/kicad-boost-polygon-declare-gtlsort-earlier.patch)
===
--- community-staging-i686/kicad-boost-polygon-declare-gtlsort-earlier.patch
(rev 0)
+++ community-staging-i686/kicad-boost-polygon-declare-gtlsort-earlier.patch
2014-01-07 08:43:13 UTC (rev 103526)
@@ -0,0 +1,11 @@
+--- include/boost/polygon/polygon.hpp.orig 2012-04-09 13:07:03.293907598 
-0500
 include/boost/polygon/polygon.hpp  2012-04-09 13:07:43.759923812 -0500
+@@ -24,6 +24,8 @@
+ #include transform.hpp
+ #include detail/transform_detail.hpp
+ 
++#include detail/polygon_sort_adaptor.hpp
++
+ //interval
+ #include interval_data.hpp
+ #include interval_traits.hpp

Copied: 

[arch-commits] Commit in kicad/trunk (PKGBUILD wxgtk3.0.patch)

2014-01-07 Thread Bartłomiej Piotrowski
Date: Tuesday, January 7, 2014 @ 09:43:01
  Author: bpiotrowski
Revision: 103525

upgpkg: kicad 20130518-2

rebuild against wxgtk 3.0.0

Added:
  kicad/trunk/wxgtk3.0.patch
Modified:
  kicad/trunk/PKGBUILD

+
 PKGBUILD   |   11 +++
 wxgtk3.0.patch |   12 
 2 files changed, 19 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 08:03:36 UTC (rev 103524)
+++ PKGBUILD2014-01-07 08:43:01 UTC (rev 103525)
@@ -6,25 +6,28 @@
 pkgver=20130518
 _pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6:2}
 _pkgbzr=4017
-pkgrel=1
+pkgrel=2
 pkgdesc=Electronic schematic and printed circuit board (PCB) design tools
 arch=('i686' 'x86_64')
 url=http://iut-tice.ujf-grenoble.fr/kicad/;
 license=('GPL')
-depends=('glu' 'wxgtk' 'hicolor-icon-theme' 'desktop-file-utils')
+depends=('glu' 'wxgtk' 'hicolor-icon-theme' 'desktop-file-utils' 'libsm')
 makedepends=('cmake' 'zlib' 'mesa')
 optdepends=('kicad-docs-bzr: for documentation' 
 'kicad-library-bzr: for footprints')
 install=kicad.install
 
source=(http://iut-tice.ujf-grenoble.fr/cao/${pkgname}-sources-stable_${_pkgver}_BZR${_pkgbzr}.zip
-kicad-boost-polygon-declare-gtlsort-earlier.patch)
+kicad-boost-polygon-declare-gtlsort-earlier.patch
+wxgtk3.0.patch)
 md5sums=('9e6aab0f2ad01a17c8ec96cd9162dc79'
- 'a2c39704238946e74a5ed0c38326345f')
+ 'a2c39704238946e74a5ed0c38326345f'
+ 'ec3e7581c814ca2b76becc7b30a8529f')
 
 build() {
   cd $srcdir/stable_${_pkgver}_BZR${_pkgbzr}
 
   patch -p0  $srcdir/kicad-boost-polygon-declare-gtlsort-earlier.patch
+  patch -p1  $srcdir/wxgtk3.0.patch
 
   # harmless build blocking error
   # see https://lists.launchpad.net/kicad-developers/msg07841.html

Added: wxgtk3.0.patch
===
--- wxgtk3.0.patch  (rev 0)
+++ wxgtk3.0.patch  2014-01-07 08:43:01 UTC (rev 103525)
@@ -0,0 +1,12 @@
+diff -rupN a/common/edaappl.cpp b/common/edaappl.cpp
+--- a/common/edaappl.cpp   2013-03-09 21:07:56.0 +
 b/common/edaappl.cpp   2014-01-07 07:49:38.984938912 +
+@@ -451,7 +451,7 @@ bool EDA_APP::SetBinDir()
+ 
+ // Linux and Unix
+ #elif defined(__UNIX__)
+-m_BinDir = wxStandardPaths().GetExecutablePath();
++m_BinDir = wxStandardPaths::Get().GetExecutablePath();
+ #else
+ m_BinDir = argv[0];
+ #endif // __UNIX__



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 09:47:48
  Author: lcarlier
Revision: 103528

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-llvm/repos/multilib-staging-x86_64/
  lib32-llvm/repos/multilib-staging-x86_64/PKGBUILD
(from rev 103527, lib32-llvm/trunk/PKGBUILD)

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

Copied: lib32-llvm/repos/multilib-staging-x86_64/PKGBUILD (from rev 103527, 
lib32-llvm/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2014-01-07 08:47:48 UTC (rev 103528)
@@ -0,0 +1,127 @@
+# $Id$
+# Maintainer: Evangelos Foutras foutre...@gmail.com
+# Contributor: Jan heftig Steffens jan.steff...@gmail.com
+# Contributor: Sebastian Nowicki seb...@gmail.com
+# Contributor: Devin Cofer ranguvar{AT]archlinux[DOT}us
+# Contributor: Tobias Kieslich tob...@justdreams.de
+# Contributor: Geoffroy Carrier geoffroy.carr...@aur.archlinux.org
+# Contributor: Tomas Lindquist Olsen to...@famolsen.dk
+# Contributor: Roberto Alsina rals...@kde.org
+# Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
+
+pkgname=('lib32-llvm' 'lib32-llvm-libs')
+pkgver=3.4
+pkgrel=1
+arch=('x86_64')
+url=http://llvm.org/;
+license=('custom:University of Illinois/NCSA Open Source License')
+makedepends=('lib32-libffi' 'lib32-zlib' 'python2' 'gcc-multilib')
+options=('staticlibs')
+source=(http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.gz
+http://llvm.org/releases/$pkgver/compiler-rt-$pkgver.src.tar.gz)
+sha256sums=('25a5612d692c48481b9b397e2b55f4870e447966d66c96d655241702d44a2628'
+'f37c89b1383ce462d47537a0245ac798600887a9be9f63073e16b79ed536ab5c')
+
+prepare() {
+  cd $srcdir/llvm-$pkgver
+
+  rm -rf tools/clang
+  
+  rm -rf projects/compiler-rt
+  mv $srcdir/compiler-rt-$pkgver projects/compiler-rt
+
+  # Fix installation directories, ./configure doesn't seem to set them right
+  sed -i -e 's:\$(PROJ_prefix)/lib:$(PROJ_prefix)/lib32:' \
+ -e 's:\$(PROJ_prefix)/docs/llvm:$(PROJ_prefix)/share/doc/llvm:' \
+Makefile.config.in
+  sed -i '/ActiveLibDir = ActivePrefix/s:lib:lib32:' \
+tools/llvm-config/llvm-config.cpp
+  sed -i 's:LLVM_LIBDIR=${prefix}/lib:LLVM_LIBDIR=${prefix}/lib32:' \
+autoconf/configure.ac \
+configure
+}
+
+build() {
+  cd $srcdir/llvm-$pkgver
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  # Apply strip option to configure
+  _optimized_switch=enable
+  [[ $(check_option strip) == n ]]  _optimized_switch=disable
+
+  # Include location of libffi headers in CPPFLAGS
+  CPPFLAGS+= $(pkg-config --cflags libffi)
+
+  # We had to force host and target to get
+  # a proper triplet reported by llvm
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--sysconfdir=/etc \
+--enable-shared \
+--enable-libffi \
+--enable-targets=all \
+--disable-expensive-checks \
+--disable-debug-runtime \
+--disable-assertions \
+--with-binutils-include=/usr/include \
+--with-python=/usr/bin/python2 \
+--host=i386-pc-linux-gnu \
+--target=i386-pc-linux-gnu \
+--$_optimized_switch-optimized
+
+  make REQUIRES_RTTI=1
+}
+
+package_lib32-llvm() {
+  pkgdesc=Low Level Virtual Machine (32-bit)
+  depends=('lib32-llvm-libs' 'llvm')
+
+  cd $srcdir/llvm-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # The runtime library goes into lib32-llvm-libs
+  mv $pkgdir/usr/lib32/libLLVM-$pkgver.so $srcdir
+
+  # Fix permissions of static libs
+  chmod -x $pkgdir/usr/lib32/*.a
+
+  mv $pkgdir/usr/bin/i386-pc-linux-gnu-llvm-config 
$pkgdir/usr/lib32/llvm-config
+
+  # Get rid of example Hello transformation
+  rm $pkgdir/usr/lib32/*LLVMHello.*
+
+  # Symlink LLVMgold.so into /usr/lib/bfd-plugins
+  # (https://bugs.archlinux.org/task/28479)
+  install -d $pkgdir/usr/lib32/bfd-plugins
+  ln -s ../LLVMgold.so $pkgdir/usr/lib32/bfd-plugins/LLVMgold.so
+
+  mv $pkgdir/usr/include/llvm/Config/*config.h $pkgdir/
+  rm -rf $pkgdir/usr/{bin,include,share/{doc,man}}
+
+  install -d $pkgdir/usr/include/llvm/Config
+  mv $pkgdir/config.h $pkgdir/usr/include/llvm/Config/config-32.h
+  mv $pkgdir/llvm-config.h $pkgdir/usr/include/llvm/Config/llvm-config-32.h
+
+  mkdir $pkgdir/usr/bin
+  mv $pkgdir/usr/lib32/llvm-config $pkgdir/usr/bin/llvm-config32
+
+  install -Dm644 LICENSE.TXT $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lib32-llvm-libs() {
+  pkgdesc=Low Level Virtual Machine (runtime library)(32-bit) 
+  depends=('lib32-libffi' 'lib32-zlib' 'lib32-gcc-libs')
+
+  cd $srcdir
+
+  install -D libLLVM-$pkgver.so $pkgdir/usr/lib32/libLLVM-$pkgver.so
+
+  install -Dm644 llvm-$pkgver/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 09:47:40
  Author: lcarlier
Revision: 103527

upgpkg: lib32-llvm 3.4-1

upstream update 3.4

Modified:
  lib32-llvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 08:43:13 UTC (rev 103526)
+++ PKGBUILD2014-01-07 08:47:40 UTC (rev 103527)
@@ -10,8 +10,8 @@
 # Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
 
 pkgname=('lib32-llvm' 'lib32-llvm-libs')
-pkgver=3.3
-pkgrel=2
+pkgver=3.4
+pkgrel=1
 arch=('x86_64')
 url=http://llvm.org/;
 license=('custom:University of Illinois/NCSA Open Source License')
@@ -19,16 +19,16 @@
 options=('staticlibs')
 source=(http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.gz
 http://llvm.org/releases/$pkgver/compiler-rt-$pkgver.src.tar.gz)
-sha256sums=('68766b1e70d05a25e2f502e997a3cb3937187a3296595cf6e0977d5cd6727578'
-'0e2f3180d6316e6c43f064fdd406c5c6515e682c5f31c57c28335b68c7525423')
+sha256sums=('25a5612d692c48481b9b397e2b55f4870e447966d66c96d655241702d44a2628'
+'f37c89b1383ce462d47537a0245ac798600887a9be9f63073e16b79ed536ab5c')
 
 prepare() {
-  cd $srcdir/llvm-$pkgver.src
+  cd $srcdir/llvm-$pkgver
 
   rm -rf tools/clang
   
   rm -rf projects/compiler-rt
-  mv $srcdir/compiler-rt-$pkgver.src projects/compiler-rt
+  mv $srcdir/compiler-rt-$pkgver projects/compiler-rt
 
   # Fix installation directories, ./configure doesn't seem to set them right
   sed -i -e 's:\$(PROJ_prefix)/lib:$(PROJ_prefix)/lib32:' \
@@ -39,13 +39,10 @@
   sed -i 's:LLVM_LIBDIR=${prefix}/lib:LLVM_LIBDIR=${prefix}/lib32:' \
 autoconf/configure.ac \
 configure
-
-  # Fix insecure rpath (http://bugs.archlinux.org/task/14017)
-  sed -i 's:$(RPATH) -Wl,$(\(ToolDir\|LibDir\|ExmplDir\))::g' Makefile.rules
 }
 
 build() {
-  cd $srcdir/llvm-$pkgver.src
+  cd $srcdir/llvm-$pkgver
 
   export CC=gcc -m32
   export CXX=g++ -m32
@@ -68,7 +65,6 @@
 --enable-shared \
 --enable-libffi \
 --enable-targets=all \
---enable-experimental-targets=R600 \
 --disable-expensive-checks \
 --disable-debug-runtime \
 --disable-assertions \
@@ -85,12 +81,12 @@
   pkgdesc=Low Level Virtual Machine (32-bit)
   depends=('lib32-llvm-libs' 'llvm')
 
-  cd $srcdir/llvm-$pkgver.src
+  cd $srcdir/llvm-$pkgver
 
   make DESTDIR=$pkgdir install
 
   # The runtime library goes into lib32-llvm-libs
-  mv $pkgdir/usr/lib32/libLLVM-3.3.so $srcdir
+  mv $pkgdir/usr/lib32/libLLVM-$pkgver.so $srcdir
 
   # Fix permissions of static libs
   chmod -x $pkgdir/usr/lib32/*.a
@@ -124,8 +120,8 @@
 
   cd $srcdir
 
-  install -D libLLVM-3.3.so $pkgdir/usr/lib32/libLLVM-3.3.so
+  install -D libLLVM-$pkgver.so $pkgdir/usr/lib32/libLLVM-$pkgver.so
 
-  install -Dm644 llvm-$pkgver.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 llvm-$pkgver/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 



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

2014-01-07 Thread Bartłomiej Piotrowski
Date: Tuesday, January 7, 2014 @ 10:17:43
  Author: bpiotrowski
Revision: 103529

upgpkg: springlobby 0.180-2

rebuild against wxgtk 3.0.0

Modified:
  springlobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 08:47:48 UTC (rev 103528)
+++ PKGBUILD2014-01-07 09:17:43 UTC (rev 103529)
@@ -9,7 +9,8 @@
 arch=('i686' 'x86_64')
 url=http://springlobby.info/;
 license=('GPL2')
-depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs' 'alure')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
 optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
 makedepends=('boost' 'asio' 'cmake')
 install=springlobby.install



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

2014-01-07 Thread Bartłomiej Piotrowski
Date: Tuesday, January 7, 2014 @ 10:17:54
  Author: bpiotrowski
Revision: 103530

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

Added:
  springlobby/repos/community-staging-i686/PKGBUILD
(from rev 103529, springlobby/trunk/PKGBUILD)
  springlobby/repos/community-staging-i686/springlobby.install
(from rev 103529, springlobby/trunk/springlobby.install)
  springlobby/repos/community-staging-x86_64/PKGBUILD
(from rev 103529, springlobby/trunk/PKGBUILD)
  springlobby/repos/community-staging-x86_64/springlobby.install
(from rev 103529, springlobby/trunk/springlobby.install)
Deleted:
  springlobby/repos/community-staging-i686/PKGBUILD
  springlobby/repos/community-staging-i686/springlobby.install
  springlobby/repos/community-staging-x86_64/PKGBUILD
  springlobby/repos/community-staging-x86_64/springlobby.install

--+
 /PKGBUILD|   68 +
 /springlobby.install |   22 
 community-staging-i686/PKGBUILD  |   33 
 community-staging-i686/springlobby.install   |   11 
 community-staging-x86_64/PKGBUILD|   33 
 community-staging-x86_64/springlobby.install |   11 
 6 files changed, 90 insertions(+), 88 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-01-07 09:17:43 UTC (rev 103529)
+++ community-staging-i686/PKGBUILD 2014-01-07 09:17:54 UTC (rev 103530)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: DuGi d...@irc.pl
-
-pkgname=springlobby
-pkgver=0.180
-pkgrel=2
-pkgdesc=A free cross-platform lobby client for the Spring RTS project.
-arch=('i686' 'x86_64')
-url=http://springlobby.info/;
-license=('GPL2')
-depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs' 'alure')
-optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
-makedepends=('boost' 'asio' 'cmake')
-install=springlobby.install
-source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('4e33b20be873660649cf7c369ce81373')
-
-build() {
-  cd $srcdir/${pkgname}-$pkgver
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr
-  make 
-}
-
-package() {
-  cd $srcdir/${pkgname}-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim: sw=2:ts=2 et:

Copied: springlobby/repos/community-staging-i686/PKGBUILD (from rev 103529, 
springlobby/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-07 09:17:54 UTC (rev 103530)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: DuGi d...@irc.pl
+
+pkgname=springlobby
+pkgver=0.180
+pkgrel=2
+pkgdesc=A free cross-platform lobby client for the Spring RTS project.
+arch=('i686' 'x86_64')
+url=http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
+makedepends=('boost' 'asio' 'cmake')
+install=springlobby.install
+source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('4e33b20be873660649cf7c369ce81373')
+
+build() {
+  cd $srcdir/${pkgname}-$pkgver
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:

Deleted: community-staging-i686/springlobby.install
===
--- community-staging-i686/springlobby.install  2014-01-07 09:17:43 UTC (rev 
103529)
+++ community-staging-i686/springlobby.install  2014-01-07 09:17:54 UTC (rev 
103530)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: springlobby/repos/community-staging-i686/springlobby.install (from rev 
103529, springlobby/trunk/springlobby.install)
===
--- community-staging-i686/springlobby.install  (rev 0)
+++ community-staging-i686/springlobby.install  2014-01-07 09:17:54 UTC (rev 
103530)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2014-01-07 09:17:43 UTC (rev 103529)
+++ community-staging-x86_64/PKGBUILD   2014-01-07 09:17:54 UTC (rev 103530)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com

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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 10:20:26
  Author: lcarlier
Revision: 203273

upgpkg: mesa 10.0.1-3

LLVM 3.4 rebuild

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 08:01:17 UTC (rev 203272)
+++ PKGBUILD2014-01-07 09:20:26 UTC (rev 203273)
@@ -5,7 +5,7 @@
 pkgbase=mesa
 pkgname=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl')
 pkgver=10.0.1
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'libxxf86vm' 'libxdamage'
  'libvdpau' 'wayland' 'elfutils' 'llvm' 'systemd')



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 10:20:49
  Author: lcarlier
Revision: 203274

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

Added:
  mesa/repos/staging-i686/
  mesa/repos/staging-i686/LICENSE
(from rev 203273, mesa/trunk/LICENSE)
  mesa/repos/staging-i686/PKGBUILD
(from rev 203273, mesa/trunk/PKGBUILD)
  mesa/repos/staging-i686/revert.remove.GLXContextID.typedef.patch
(from rev 203273, mesa/trunk/revert.remove.GLXContextID.typedef.patch)
  mesa/repos/staging-x86_64/
  mesa/repos/staging-x86_64/LICENSE
(from rev 203273, mesa/trunk/LICENSE)
  mesa/repos/staging-x86_64/PKGBUILD
(from rev 203273, mesa/trunk/PKGBUILD)
  mesa/repos/staging-x86_64/revert.remove.GLXContextID.typedef.patch
(from rev 203273, mesa/trunk/revert.remove.GLXContextID.typedef.patch)

-+
 staging-i686/LICENSE|   82 +++
 staging-i686/PKGBUILD   |  160 ++
 staging-i686/revert.remove.GLXContextID.typedef.patch   |   30 ++
 staging-x86_64/LICENSE  |   82 +++
 staging-x86_64/PKGBUILD |  160 ++
 staging-x86_64/revert.remove.GLXContextID.typedef.patch |   30 ++
 6 files changed, 544 insertions(+)

Copied: mesa/repos/staging-i686/LICENSE (from rev 203273, mesa/trunk/LICENSE)
===
--- staging-i686/LICENSE(rev 0)
+++ staging-i686/LICENSE2014-01-07 09:20:49 UTC (rev 203274)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the Software),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Attention, Contributors
+
+When contributing to the Mesa project you must agree to the licensing terms
+of the component to which you're contributing.
+The following section lists the primary components of the Mesa distribution
+and their respective licenses.
+
+
+Mesa Component Licenses
+
+Component Location   Primary Author  License
+
+Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
+
+Device driverssrc/mesa/drivers/* See drivers See drivers
+
+Ext headers   include/GL/glext.h SGI SGI Free B
+  include/GL/glxext.h
+
+GLUT  src/glut/  Mark KilgardMark's copyright
+
+Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
+
+SGI GLU library   src/glu/sgi/   SGI SGI Free B
+
+demo programs progs/demos/   various see source files
+

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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 10:23:46
  Author: heftig
Revision: 203275

Use python2; python3 plugin loader is broken

Modified:
  anjuta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 09:20:49 UTC (rev 203274)
+++ PKGBUILD2014-01-07 09:23:46 UTC (rev 203275)
@@ -5,13 +5,13 @@
 pkgbase=anjuta
 pkgname=('libanjuta' 'anjuta')
 pkgver=3.10.2
-pkgrel=1
+pkgrel=2
 pkgdesc=GNOME Integrated Development Environment (IDE)
 arch=(i686 x86_64)
 license=(GPL)
 makedepends=(gdl vte3 autogen devhelp glade libgda subversion neon 
gnome-icon-theme vala dconf
  gtk-doc yelp-tools gnome-common intltool gobject-introspection 
itstool gjs
- python)
+ python2)
 url=http://www.anjuta.org/;
 options=('!emptydirs')
 
source=(ftp://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz)
@@ -21,7 +21,8 @@
   cd $pkgbase-$pkgver
 
   ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --enable-glade-catalog 
--enable-compile-warnings=minimum
+  --localstatedir=/var --enable-glade-catalog 
--enable-compile-warnings=minimum \
+  PYTHON=/usr/bin/python2
   make
 }
 



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 10:24:12
  Author: heftig
Revision: 203276

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

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

-+
 /PKGBUILD   |  104 ++
 /anjuta.install |   30 
 extra-i686/PKGBUILD |   51 
 extra-i686/anjuta.install   |   15 --
 extra-x86_64/PKGBUILD   |   51 
 extra-x86_64/anjuta.install |   15 --
 6 files changed, 134 insertions(+), 132 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 09:23:46 UTC (rev 203275)
+++ extra-i686/PKGBUILD 2014-01-07 09:24:12 UTC (rev 203276)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: Harley Laue losinggenerat...@yahoo.com
-
-pkgbase=anjuta
-pkgname=('libanjuta' 'anjuta')
-pkgver=3.10.2
-pkgrel=1
-pkgdesc=GNOME Integrated Development Environment (IDE)
-arch=(i686 x86_64)
-license=(GPL)
-makedepends=(gdl vte3 autogen devhelp glade libgda subversion neon 
gnome-icon-theme vala dconf
- gtk-doc yelp-tools gnome-common intltool gobject-introspection 
itstool gjs
- python)
-url=http://www.anjuta.org/;
-options=('!emptydirs')
-source=(ftp://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('ff16c646dbf0234f7056c697b2546125c89d43f8c1f5138a21409053c016d3bc')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --enable-glade-catalog 
--enable-compile-warnings=minimum
-  make
-}
-
-package_libanjuta(){
-  pkgdesc=Anjuta runtime library
-  depends=(gdl)
-  conflicts=('anjuta3.4.4')
-
-  cd $pkgbase-$pkgver/libanjuta
-
-  # j1: Race during linking
-  make -j1 DESTDIR=$pkgdir install
-}
-
-package_anjuta(){
-  pkgdesc=GNOME Integrated Development Environment (IDE)
-  depends=(libanjuta vte3 autogen devhelp glade libgda subversion neon 
gnome-icon-theme vala dconf)
-  groups=('gnome-extra')
-
-  install=anjuta.install
-
-  cd $pkgbase-$pkgver
-  make -j1 DESTDIR=$pkgdir install
-
-  cd libanjuta
-  make -j1 DESTDIR=$pkgdir uninstall
-}

Copied: anjuta/repos/extra-i686/PKGBUILD (from rev 203275, 
anjuta/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 09:24:12 UTC (rev 203276)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Harley Laue losinggenerat...@yahoo.com
+
+pkgbase=anjuta
+pkgname=('libanjuta' 'anjuta')
+pkgver=3.10.2
+pkgrel=2
+pkgdesc=GNOME Integrated Development Environment (IDE)
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(gdl vte3 autogen devhelp glade libgda subversion neon 
gnome-icon-theme vala dconf
+ gtk-doc yelp-tools gnome-common intltool gobject-introspection 
itstool gjs
+ python2)
+url=http://www.anjuta.org/;
+options=('!emptydirs')
+source=(ftp://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('ff16c646dbf0234f7056c697b2546125c89d43f8c1f5138a21409053c016d3bc')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --enable-glade-catalog 
--enable-compile-warnings=minimum \
+  PYTHON=/usr/bin/python2
+  make
+}
+
+package_libanjuta(){
+  pkgdesc=Anjuta runtime library
+  depends=(gdl)
+  conflicts=('anjuta3.4.4')
+
+  cd $pkgbase-$pkgver/libanjuta
+
+  # j1: Race during linking
+  make -j1 DESTDIR=$pkgdir install
+}
+
+package_anjuta(){
+  pkgdesc=GNOME Integrated Development Environment (IDE)
+  depends=(libanjuta vte3 autogen devhelp glade libgda subversion neon 
gnome-icon-theme vala dconf)
+  groups=('gnome-extra')
+
+  install=anjuta.install
+
+  cd $pkgbase-$pkgver
+  make -j1 DESTDIR=$pkgdir install
+
+  cd libanjuta
+  make -j1 DESTDIR=$pkgdir uninstall
+}

Deleted: extra-i686/anjuta.install
===
--- extra-i686/anjuta.install   2014-01-07 09:23:46 UTC (rev 203275)
+++ extra-i686/anjuta.install   2014-01-07 09:24:12 UTC (rev 203276)
@@ -1,15 +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
-  

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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 10:25:45
  Author: lcarlier
Revision: 103531

upgpkg: scorched3d 43.3.d-6

wxgtk 3.0 rebuild

Modified:
  scorched3d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 09:17:54 UTC (rev 103530)
+++ PKGBUILD2014-01-07 09:25:45 UTC (rev 103531)
@@ -5,12 +5,12 @@
 pkgname=scorched3d
 pkgver=43.3.d
 _pkgver=43.3d
-pkgrel=5
+pkgrel=6
 pkgdesc=3D artillery combat game
 arch=('i686' 'x86_64')
 url=http://www.scorched3d.co.uk/;
 license=('GPL')
-depends=('sdl_net' 'wxgtk' 'freealut=1.0.0-3' 'libvorbis' 'glu' 'fftw' 
'libjpeg=8' 'xdg-utils')
+depends=('sdl_net' 'wxgtk2.8' 'freealut=1.0.0-3' 'libvorbis' 'glu' 'fftw' 
'libjpeg=8' 'xdg-utils')
 makedepends=('gendesk' 'mesa')
 install=scorched3d.install
 
source=(http://downloads.sourceforge.net/${pkgname}/Scorched3D-${_pkgver}-src.tar.gz;
@@ -20,12 +20,16 @@
 'scorched3d-libpng1.5.patch'
 'libpng14.patch')
 md5sums=('9c3043282a9e7451468ff325bef3b04c'
- '0f7e570f586c227873e909ebbc17c84d'
+ 'cc3217f5b3baa6950a4619aac72d8a75'
  '053769f77a38c252eef1d967b18e93e6'
  'dfde556559d95bca07c4a390c60790b4'
  'ec6958191751b5a2c44aa15abfc75269'
  'c8c03855fd3693122fd39427fa3638c1')
 
+prepare() {
+  gendesk -f -n --pkgname $pkgname --pkgdesc $pkgdesc --name Scorched3d
+}
+
 build() {
   cd $srcdir/scorched
 
@@ -35,13 +39,14 @@
 #  patch -Np0 -i ${srcdir}/libpng14.patch
 
   WANT_WXGTK=gtk2
-  sh autogen.sh \
+  ./configure \
 --prefix=/usr \
 --datadir=/usr/share/scorched3d \
 --disable-openaltest \
---with-wx-config=wx-config
+--with-wx-config=wx-config-2.8
 
   sed -i '1 i #include unistd.h' src/client/client/SecureID.cpp
+  sed -i 's|freetype/||g' src/launcher/wxdialogs/TrueTypeFont.h 
src/client/GLEXT/GLFont2dFreeType.h
   #sed -i 's/-lz/-lz -lalut/g' src/scorched/Makefile || return 1
   #sed -i 's|/usr/local/lib/libwx_gtk-2.4.a||' src/scorched/Makefile || return 
1
 
@@ -49,10 +54,8 @@
 }
 
 package() {
-  cd $srcdir
-  gendesk
+  cd scorched
 
-  cd scorched
   make DESTDIR=${pkgdir} install
   cd ..
 



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 10:26:06
  Author: lcarlier
Revision: 103532

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

Added:
  scorched3d/repos/community-staging-i686/
  scorched3d/repos/community-staging-i686/PKGBUILD
(from rev 103531, scorched3d/trunk/PKGBUILD)
  scorched3d/repos/community-staging-i686/libpng14.patch
(from rev 103531, scorched3d/trunk/libpng14.patch)
  scorched3d/repos/community-staging-i686/scorched3d-42.1-fixups.patch
(from rev 103531, scorched3d/trunk/scorched3d-42.1-fixups.patch)
  scorched3d/repos/community-staging-i686/scorched3d-42.1-gcc43.patch
(from rev 103531, scorched3d/trunk/scorched3d-42.1-gcc43.patch)
  scorched3d/repos/community-staging-i686/scorched3d-libpng1.5.patch
(from rev 103531, scorched3d/trunk/scorched3d-libpng1.5.patch)
  scorched3d/repos/community-staging-i686/scorched3d.install
(from rev 103531, scorched3d/trunk/scorched3d.install)
  scorched3d/repos/community-staging-x86_64/
  scorched3d/repos/community-staging-x86_64/PKGBUILD
(from rev 103531, scorched3d/trunk/PKGBUILD)
  scorched3d/repos/community-staging-x86_64/libpng14.patch
(from rev 103531, scorched3d/trunk/libpng14.patch)
  scorched3d/repos/community-staging-x86_64/scorched3d-42.1-fixups.patch
(from rev 103531, scorched3d/trunk/scorched3d-42.1-fixups.patch)
  scorched3d/repos/community-staging-x86_64/scorched3d-42.1-gcc43.patch
(from rev 103531, scorched3d/trunk/scorched3d-42.1-gcc43.patch)
  scorched3d/repos/community-staging-x86_64/scorched3d-libpng1.5.patch
(from rev 103531, scorched3d/trunk/scorched3d-libpng1.5.patch)
  scorched3d/repos/community-staging-x86_64/scorched3d.install
(from rev 103531, scorched3d/trunk/scorched3d.install)

---+
 community-staging-i686/PKGBUILD   |   65 ++
 community-staging-i686/libpng14.patch |   38 
 community-staging-i686/scorched3d-42.1-fixups.patch   |   58 
 community-staging-i686/scorched3d-42.1-gcc43.patch|   24 +
 community-staging-i686/scorched3d-libpng1.5.patch |   74 
 community-staging-i686/scorched3d.install |   11 ++
 community-staging-x86_64/PKGBUILD |   65 ++
 community-staging-x86_64/libpng14.patch   |   38 
 community-staging-x86_64/scorched3d-42.1-fixups.patch |   58 
 community-staging-x86_64/scorched3d-42.1-gcc43.patch  |   24 +
 community-staging-x86_64/scorched3d-libpng1.5.patch   |   74 
 community-staging-x86_64/scorched3d.install   |   11 ++
 12 files changed, 540 insertions(+)

Copied: scorched3d/repos/community-staging-i686/PKGBUILD (from rev 103531, 
scorched3d/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-07 09:26:06 UTC (rev 103532)
@@ -0,0 +1,65 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Seppo Porspakka spors...@paju.oulu.fi
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+ 
+pkgname=scorched3d
+pkgver=43.3.d
+_pkgver=43.3d
+pkgrel=6
+pkgdesc=3D artillery combat game
+arch=('i686' 'x86_64')
+url=http://www.scorched3d.co.uk/;
+license=('GPL')
+depends=('sdl_net' 'wxgtk2.8' 'freealut=1.0.0-3' 'libvorbis' 'glu' 'fftw' 
'libjpeg=8' 'xdg-utils')
+makedepends=('gendesk' 'mesa')
+install=scorched3d.install
+source=(http://downloads.sourceforge.net/${pkgname}/Scorched3D-${_pkgver}-src.tar.gz;
+
'scorched3d.png::http://cdn.portableapps.com/Scorched3DPortable_128.png'
+'scorched3d-42.1-gcc43.patch'
+'scorched3d-42.1-fixups.patch'
+'scorched3d-libpng1.5.patch'
+'libpng14.patch')
+md5sums=('9c3043282a9e7451468ff325bef3b04c'
+ 'cc3217f5b3baa6950a4619aac72d8a75'
+ '053769f77a38c252eef1d967b18e93e6'
+ 'dfde556559d95bca07c4a390c60790b4'
+ 'ec6958191751b5a2c44aa15abfc75269'
+ 'c8c03855fd3693122fd39427fa3638c1')
+
+prepare() {
+  gendesk -f -n --pkgname $pkgname --pkgdesc $pkgdesc --name Scorched3d
+}
+
+build() {
+  cd $srcdir/scorched
+
+#  patch -Np1 -i ${srcdir}/scorched3d-42.1-gcc43.patch
+#  patch -Np1 -i ${srcdir}/scorched3d-42.1-fixups.patch
+   patch -Np1 -i ${srcdir}/scorched3d-libpng1.5.patch
+#  patch -Np0 -i ${srcdir}/libpng14.patch
+
+  WANT_WXGTK=gtk2
+  ./configure \
+--prefix=/usr \
+--datadir=/usr/share/scorched3d \
+--disable-openaltest \
+--with-wx-config=wx-config-2.8
+
+  sed -i '1 i #include unistd.h' src/client/client/SecureID.cpp
+  sed -i 's|freetype/||g' src/launcher/wxdialogs/TrueTypeFont.h 
src/client/GLEXT/GLFont2dFreeType.h
+  #sed -i 's/-lz/-lz -lalut/g' src/scorched/Makefile || return 1
+  #sed -i 's|/usr/local/lib/libwx_gtk-2.4.a||' src/scorched/Makefile || return 
1
+
+  make
+}
+
+package() {
+  

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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 10:29:48
  Author: lcarlier
Revision: 103533

upgpkg: lib32-mesa 10.0.1-2

LLVM 3.4 rebuild

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 09:26:06 UTC (rev 103532)
+++ PKGBUILD2014-01-07 09:29:48 UTC (rev 103533)
@@ -5,7 +5,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
 pkgver=10.0.1
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'lib32-libxxf86vm' 'lib32-libxdamage'
  'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd')



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 10:29:55
  Author: lcarlier
Revision: 103534

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-mesa/repos/multilib-staging-x86_64/
  lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD
(from rev 103533, lib32-mesa/trunk/PKGBUILD)

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

Copied: lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD (from rev 103533, 
lib32-mesa/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2014-01-07 09:29:55 UTC (rev 103534)
@@ -0,0 +1,128 @@
+# $Id$
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgbase=lib32-mesa
+pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
+pkgver=10.0.1
+pkgrel=2
+arch=('x86_64')
+makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'lib32-libxxf86vm' 'lib32-libxdamage'
+ 'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd')
+url=http://mesa3d.sourceforge.net;
+license=('custom')
+options=('!libtool')
+source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2)
+md5sums=('0a72ca5b36046a658bf6038326ff32ed')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+  export LLVM_CONFIG=/usr/bin/llvm-config32
+
+  cd ${srcdir}/?esa-*
+
+  # our automake is far too new for their build system :)
+  autoreconf -vfi
+
+  ./configure --enable-32-bit \
+--libdir=/usr/lib32 \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-dri-driverdir=/usr/lib32/xorg/modules/dri \
+--with-gallium-drivers=r300,r600,radeonsi,nouveau,swrast \
+--with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
+--with-llvm-shared-libs \
+--enable-gallium-llvm \
+--enable-egl \
+--enable-gallium-egl \
+--with-egl-platforms=x11,drm \
+--enable-shared-glapi \
+--enable-gbm \
+--enable-glx-tls \
+--enable-dri \
+--enable-glx \
+--enable-osmesa \
+--enable-gles1 \
+--enable-gles2 \
+--enable-texture-float
+  make
+
+  mkdir $srcdir/fakeinstall
+  make DESTDIR=${srcdir}/fakeinstall install
+}
+
+package_lib32-ati-dri() {
+  pkgdesc=Mesa drivers for AMD/ATI Radeon (32-bit)
+  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'ati-dri')
+
+  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
+  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{r200,r300,r600,radeon,radeonsi}_dri.so
 ${pkgdir}/usr/lib32/xorg/modules/dri/
+
+  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
+  mv -v 
${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_{r300,r600,radeonsi}* 
${pkgdir}/usr/lib32/gallium-pipe/
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/ati-dri
+  ln -s ati-dri $pkgdir/usr/share/licenses/ati-dri/lib32-ati-dri
+}
+
+package_lib32-intel-dri() {
+  pkgdesc=Mesa DRI drivers for Intel (32-bit)
+  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'intel-dri')
+
+  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
+  mv -v ${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{i915,i965}_dri.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/intel-dri
+  ln -s intel-dri $pkgdir/usr/share/licenses/intel-dri/lib32-intel-dri
+}
+
+package_lib32-nouveau-dri() {
+  pkgdesc=Mesa drivers for Nouveau (32-bit)
+  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'nouveau-dri')
+
+  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
+  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/nouveau_{dri,vieux_dri}.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
+
+  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
+  mv -v ${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_nouveau* 
${pkgdir}/usr/lib32/gallium-pipe/
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/nouveau-dri
+  ln -s nouveau-dri $pkgdir/usr/share/licenses/nouveau-dri/lib32-nouveau-dri
+}
+
+package_lib32-mesa() {
+  pkgdesc=an open-source implementation of the OpenGL specification (32-bit)
+  depends=('lib32-libdrm' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'lib32-systemd' 'lib32-elfutils' 'lib32-llvm-libs' 'mesa')
+  optdepends=('opengl-man-pages: for the OpenGL API man pages')
+  provides=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
+  conflicts=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
+  replaces=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
+
+  mv -v ${srcdir}/fakeinstall/* ${pkgdir}
+  mv ${pkgdir}/usr/lib32/libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1.2.0
+  ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib32/mesa-libGL.so.1
+  

[arch-commits] Commit in zsh/trunk (PKGBUILD xattr-include.patch)

2014-01-07 Thread Pierre Schmitz
Date: Tuesday, January 7, 2014 @ 10:47:38
  Author: pierre
Revision: 203277

Workaround no longer needed with glibc 2.18-12

Modified:
  zsh/trunk/PKGBUILD
Deleted:
  zsh/trunk/xattr-include.patch

-+
 PKGBUILD|8 ++--
 xattr-include.patch |   16 
 2 files changed, 2 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 09:24:12 UTC (rev 203276)
+++ PKGBUILD2014-01-07 09:47:38 UTC (rev 203277)
@@ -11,11 +11,10 @@
 makedepends=('pcre' 'libcap' 'gdbm')
 source=(http://www.zsh.org/pub/zsh-${pkgver}.tar.bz2;
 http://www.zsh.org/pub/zsh-${pkgver}-doc.tar.bz2;
-'zprofile' 'xattr-include.patch')
+'zprofile')
 md5sums=('6156dc2f19b0a067bdbc0fb7f81e2017'
  '1eea70e7401a7a2116fa8de6ee5e8d32'
- '24a9335edf77252a7b5f52e079f7aef7'
- 'd9af40097fcf112beba34919e8a5934f')
+ '24a9335edf77252a7b5f52e079f7aef7')
 
 prepare() {
cd ${srcdir}/${pkgbase}-${pkgver}
@@ -30,9 +29,6 @@
done
rm -f  Completion/Linux/Command/_{pkgtool,rpmbuild,yast}
rm -f  Completion/Unix/Command/_{osc,systemd}
-
-   # Workaround for FS#38387
-   patch -p0 -i ${srcdir}/xattr-include.patch
 }
 
 build() {

Deleted: xattr-include.patch
===
--- xattr-include.patch 2014-01-07 09:24:12 UTC (rev 203276)
+++ xattr-include.patch 2014-01-07 09:47:38 UTC (rev 203277)
@@ -1,16 +0,0 @@
 Src/Modules/attr.c 2013-11-27 20:00:20.0 +0100
-+++ Src/Modules/attr.c 2014-01-06 11:55:38.550079342 +0100
-@@ -27,11 +27,12 @@
-  *
-  */
- 
-+#include sys/xattr.h
-+
- #include attr.mdh
- #include attr.pro
- 
- #include sys/types.h
--#include sys/xattr.h
- 
- static ssize_t
- xgetxattr(const char *path, const char *name, void *value, size_t size, int 
symlink)



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

2014-01-07 Thread Maxime Gauduin
Date: Tuesday, January 7, 2014 @ 12:49:40
  Author: alucryd
Revision: 103535

upgpkg: numix-themes 2.1-1

Modified:
  numix-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 09:29:55 UTC (rev 103534)
+++ PKGBUILD2014-01-07 11:49:40 UTC (rev 103535)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer: alucryd alucryd at gmail dot com
-# Contributor: Diego cdprincipe at gmail dot com
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Diego cdprinc...@gmail.com
 
 pkgname=numix-themes
-pkgver=2.0
-pkgrel=2
+pkgver=2.1
+pkgrel=1
 pkgdesc=A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)
 arch=('any')
 url='http://numixproject.org/'
@@ -11,7 +11,7 @@
 license=('GPL3')
 depends=('gtk-engine-murrine')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/shimmerproject/Numix/archive/v${pkgver}.tar.gz;)
-sha256sums=('46d178b1a2c08f5ec839f66e73814ed3dfbeb444cff812d8b586526a889df012')
+sha256sums=('7f0df95d008ec421937a810c6bf20f3ff7d5d64f48c1203971f0527480f75eb1')
 
 package() {
   cd Numix-${pkgver}



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

2014-01-07 Thread Maxime Gauduin
Date: Tuesday, January 7, 2014 @ 12:49:50
  Author: alucryd
Revision: 103536

archrelease: copy trunk to community-any

Added:
  numix-themes/repos/community-any/PKGBUILD
(from rev 103535, numix-themes/trunk/PKGBUILD)
Deleted:
  numix-themes/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-07 11:49:40 UTC (rev 103535)
+++ PKGBUILD2014-01-07 11:49:50 UTC (rev 103536)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: alucryd alucryd at gmail dot com
-# Contributor: Diego cdprincipe at gmail dot com
-
-pkgname=numix-themes
-pkgver=2.0
-pkgrel=2
-pkgdesc=A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)
-arch=('any')
-url='http://numixproject.org/'
-license=('GPL3')
-depends=('gtk-engine-murrine')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/shimmerproject/Numix/archive/v${pkgver}.tar.gz;)
-sha256sums=('46d178b1a2c08f5ec839f66e73814ed3dfbeb444cff812d8b586526a889df012')
-
-package() {
-  cd Numix-${pkgver}
-
-  install -dm 755 $pkgdir/usr/share/themes/Numix
-  rm -rf .git .gitignore CREDITS LICENSE README.md
-  cp -dr --no-preserve=ownership * $pkgdir/usr/share/themes/Numix/
-}
-
-# vim: ts=2 sw=2 et:

Copied: numix-themes/repos/community-any/PKGBUILD (from rev 103535, 
numix-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-07 11:49:50 UTC (rev 103536)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Diego cdprinc...@gmail.com
+
+pkgname=numix-themes
+pkgver=2.1
+pkgrel=1
+pkgdesc=A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)
+arch=('any')
+url='http://numixproject.org/'
+license=('GPL3')
+depends=('gtk-engine-murrine')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/shimmerproject/Numix/archive/v${pkgver}.tar.gz;)
+sha256sums=('7f0df95d008ec421937a810c6bf20f3ff7d5d64f48c1203971f0527480f75eb1')
+
+package() {
+  cd Numix-${pkgver}
+
+  install -dm 755 $pkgdir/usr/share/themes/Numix
+  rm -rf .git .gitignore CREDITS LICENSE README.md
+  cp -dr --no-preserve=ownership * $pkgdir/usr/share/themes/Numix/
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in gst-plugins-base/trunk (PKGBUILD)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 13:31:48
  Author: heftig
Revision: 203281

1.2.2

Modified:
  gst-plugins-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 10:02:57 UTC (rev 203280)
+++ PKGBUILD2014-01-07 12:31:48 UTC (rev 203281)
@@ -3,7 +3,7 @@
 
 pkgbase=gst-plugins-base
 pkgname=('gst-plugins-base-libs' 'gst-plugins-base')
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 pkgdesc=GStreamer Multimedia Framework Base Plugins
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 options=(!emptydirs)
 url=http://gstreamer.freedesktop.org/;
 source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz)
-sha256sums=('de2444a5c150d4e4b680364d7c0414cd8b015d95b305ff65d65a17683379532f')
+sha256sums=('fa90cf21eac0a77f9393100356aef99ae42072c31dc218d3ae2e7f86cd5ced69')
 
 build() {
   cd $pkgbase-$pkgver



[arch-commits] Commit in gst-plugins-good/trunk (PKGBUILD)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 13:46:44
  Author: heftig
Revision: 203282

1.2.2

Modified:
  gst-plugins-good/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 12:31:48 UTC (rev 203281)
+++ PKGBUILD2014-01-07 12:46:44 UTC (rev 203282)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gst-plugins-good
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 pkgdesc=GStreamer Multimedia Framework Good Plugins
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('660fa02dbe01086fcf702d87acc0ba5dde2559d6a11ecf438874afe504c50517')
+sha256sums=('6c090f00e8e4588f12807bd9fbb06a03b84a512c93e84d928123ee4a42228a81')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in gst-plugins-bad/trunk (PKGBUILD)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 13:58:21
  Author: heftig
Revision: 203283

1.2.2

Modified:
  gst-plugins-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 12:46:44 UTC (rev 203282)
+++ PKGBUILD2014-01-07 12:58:21 UTC (rev 203283)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gst-plugins-bad
-pkgver=1.2.1
-pkgrel=2
+pkgver=1.2.2
+pkgrel=1
 pkgdesc=GStreamer Multimedia Framework Bad Plugins
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -13,7 +13,7 @@
  'gobject-introspection')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('f33e7c81fcb742fe50b73ad87ef8a4baa7d6b59c5002a10bf63c8dee22404929')
+sha256sums=('63e78db11b482d0529a0bde01e2ac23fd32c7cb99a5508b53ee4ca1051871b2c')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in gst-plugins-ugly/trunk (PKGBUILD)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 13:59:36
  Author: heftig
Revision: 203284

1.2.2

Modified:
  gst-plugins-ugly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 12:58:21 UTC (rev 203283)
+++ PKGBUILD2014-01-07 12:59:36 UTC (rev 203284)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gst-plugins-ugly
-pkgver=1.2.1
-pkgrel=2
+pkgver=1.2.2
+pkgrel=1
 pkgdesc=GStreamer Multimedia Framework Ugly Plugins
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -12,7 +12,7 @@
 makedepends=('python')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('35ae5d45de54827604e24f57f54ab30a5ab2245b4c4120977273eb11d19c2395')
+sha256sums=('4b6aac272a5be0d68f365ef6fba0f829fc5c1d1d601bb4dd9e85f5289b2b56c3')
 
 build() {
   cd $pkgname-$pkgver



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:04:11
  Author: heftig
Revision: 203285

1.2.2

Modified:
  gst-libav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 12:59:36 UTC (rev 203284)
+++ PKGBUILD2014-01-07 13:04:11 UTC (rev 203285)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gst-libav
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 pkgdesc=Gstreamer libav Plugin
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 provides=(gst-ffmpeg=$pkgver-$pkgrel)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('fd152b7aec56ae76ad58b9759913a8bfe1792bdf64f260d0acaba75b75076676')
+sha256sums=('585eb7971006100ad771a852e07bd2f3e23bcc6eb0b1253a40b5a0e40e4e7418')
 
 build() {
   cd $pkgname-$pkgver



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:06:24
  Author: heftig
Revision: 203286

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:04:11 UTC (rev 203285)
+++ extra-i686/PKGBUILD 2014-01-07 13:06:24 UTC (rev 203286)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gstreamer
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('libxml2' 'glib2')
-optdepends=('sh: feedback script')
-makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection')
-source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-sha256sums=('a4523d2471bca6cd0059a32e3b042f50faa4dadc6439852af8b43ca3f17d1fc9')
-
-build() {
-  cd ${srcdir}/gstreamer-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
---with-package-name=GStreamer (Arch Linux) \
---with-package-origin=http://www.archlinux.org/; \
---enable-gtk-doc --disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd ${srcdir}/gstreamer-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/gstreamer-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gstreamer/repos/extra-i686/PKGBUILD (from rev 203285, 
gstreamer/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:06:24 UTC (rev 203286)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gstreamer
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('libxml2' 'glib2')
+optdepends=('sh: feedback script')
+makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection')
+source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
+sha256sums=('b9f12137ab663edc6c37429b38ca7911074b9c2a829267fe855d4e57d916a0b6')
+
+build() {
+  cd ${srcdir}/gstreamer-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
+--with-package-name=GStreamer (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/; \
+--enable-gtk-doc --disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd ${srcdir}/gstreamer-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/gstreamer-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 13:04:11 UTC (rev 203285)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:06:24 UTC (rev 203286)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gstreamer
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('libxml2' 'glib2')
-optdepends=('sh: feedback script')
-makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection')
-source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-sha256sums=('a4523d2471bca6cd0059a32e3b042f50faa4dadc6439852af8b43ca3f17d1fc9')
-
-build() {
-  cd ${srcdir}/gstreamer-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
---with-package-name=GStreamer (Arch Linux) \
---with-package-origin=http://www.archlinux.org/; \
---enable-gtk-doc --disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd ${srcdir}/gstreamer-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/gstreamer-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gstreamer/repos/extra-x86_64/PKGBUILD (from rev 203285, 
gstreamer/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:06:24 UTC (rev 203286)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan 

[arch-commits] Commit in gst-plugins-good/repos (4 files)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:06:50
  Author: heftig
Revision: 203288

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

Added:
  gst-plugins-good/repos/extra-i686/PKGBUILD
(from rev 203287, gst-plugins-good/trunk/PKGBUILD)
  gst-plugins-good/repos/extra-x86_64/PKGBUILD
(from rev 203287, gst-plugins-good/trunk/PKGBUILD)
Deleted:
  gst-plugins-good/repos/extra-i686/PKGBUILD
  gst-plugins-good/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:06:37 UTC (rev 203287)
+++ extra-i686/PKGBUILD 2014-01-07 13:06:50 UTC (rev 203288)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-good
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework Good Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 
'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 
'libiec61883' 'libxdamage' 'v4l-utils' 'cairo')
-makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('660fa02dbe01086fcf702d87acc0ba5dde2559d6a11ecf438874afe504c50517')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Good Plugins (Arch Linux) \
---with-package-origin=http://www.archlinux.org/;
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-# Disable for now: fails with soup timeout
-#check() {
-#  cd $pkgname-$pkgver
-#  make check
-#}
-
-package() {
-  cd $pkgname-$pkgver
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${pkgdir} install
-}

Copied: gst-plugins-good/repos/extra-i686/PKGBUILD (from rev 203287, 
gst-plugins-good/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:06:50 UTC (rev 203288)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-good
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Good Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 
'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 
'libiec61883' 'libxdamage' 'v4l-utils' 'cairo')
+makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('6c090f00e8e4588f12807bd9fbb06a03b84a512c93e84d928123ee4a42228a81')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Good Plugins (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/;
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+# Disable for now: fails with soup timeout
+#check() {
+#  cd $pkgname-$pkgver
+#  make check
+#}
+
+package() {
+  cd $pkgname-$pkgver
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 13:06:37 UTC (rev 203287)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:06:50 UTC (rev 203288)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-good
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework Good Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 
'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 
'libiec61883' 'libxdamage' 'v4l-utils' 'cairo')
-makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('660fa02dbe01086fcf702d87acc0ba5dde2559d6a11ecf438874afe504c50517')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Good Plugins (Arch Linux) \
-

[arch-commits] Commit in gst-plugins-base/repos (4 files)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:06:37
  Author: heftig
Revision: 203287

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

Added:
  gst-plugins-base/repos/extra-i686/PKGBUILD
(from rev 203286, gst-plugins-base/trunk/PKGBUILD)
  gst-plugins-base/repos/extra-x86_64/PKGBUILD
(from rev 203286, gst-plugins-base/trunk/PKGBUILD)
Deleted:
  gst-plugins-base/repos/extra-i686/PKGBUILD
  gst-plugins-base/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:06:24 UTC (rev 203286)
+++ extra-i686/PKGBUILD 2014-01-07 13:06:37 UTC (rev 203287)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=gst-plugins-base
-pkgname=('gst-plugins-base-libs' 'gst-plugins-base')
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=GStreamer Multimedia Framework Base Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-makedepends=('pkgconfig' 'gstreamer' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 
'libvisual' 'libvorbis' 'libtheora' 'pango' 'gobject-introspection')
-options=(!emptydirs)
-url=http://gstreamer.freedesktop.org/;
-source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz)
-sha256sums=('de2444a5c150d4e4b680364d7c0414cd8b015d95b305ff65d65a17683379532f')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Base Plugins (Arch Linux) \
---with-package-origin=http://www.archlinux.org/;
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-
-  sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  # Testsuite fails on one test. Some refcount leak
-  make check
-}
-
-package_gst-plugins-base-libs() {
-  pkgdesc=GStreamer Multimedia Framework Base Plugin libraries
-  depends=('gstreamer' 'orc' 'libxv')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=${pkgdir} install
-}
-
-package_gst-plugins-base() {
-  depends=(gst-plugins-base-libs=$pkgver 'alsa-lib' 'cdparanoia' 'libvisual' 
'libvorbis' 'libtheora' 'pango')
-
-  cd $pkgbase-$pkgver
-  make -C gst-libs DESTDIR=${pkgdir} install
-  make -C ext DESTDIR=${pkgdir} install
-  make -C gst-libs DESTDIR=${pkgdir} uninstall
-}

Copied: gst-plugins-base/repos/extra-i686/PKGBUILD (from rev 203286, 
gst-plugins-base/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:06:37 UTC (rev 203287)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=gst-plugins-base
+pkgname=('gst-plugins-base-libs' 'gst-plugins-base')
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Base Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('pkgconfig' 'gstreamer' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 
'libvisual' 'libvorbis' 'libtheora' 'pango' 'gobject-introspection')
+options=(!emptydirs)
+url=http://gstreamer.freedesktop.org/;
+source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz)
+sha256sums=('fa90cf21eac0a77f9393100356aef99ae42072c31dc218d3ae2e7f86cd5ced69')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Base Plugins (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/;
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+
+  sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  # Testsuite fails on one test. Some refcount leak
+  make check
+}
+
+package_gst-plugins-base-libs() {
+  pkgdesc=GStreamer Multimedia Framework Base Plugin libraries
+  depends=('gstreamer' 'orc' 'libxv')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+
+package_gst-plugins-base() {
+  depends=(gst-plugins-base-libs=$pkgver 'alsa-lib' 'cdparanoia' 'libvisual' 
'libvorbis' 'libtheora' 'pango')
+
+  cd $pkgbase-$pkgver
+  make -C gst-libs DESTDIR=${pkgdir} install
+  make -C ext DESTDIR=${pkgdir} install
+  make -C gst-libs DESTDIR=${pkgdir} uninstall
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 13:06:24 UTC (rev 203286)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:06:37 UTC (rev 203287)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=gst-plugins-base
-pkgname=('gst-plugins-base-libs' 

[arch-commits] Commit in gst-plugins-ugly/repos (4 files)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:07:17
  Author: heftig
Revision: 203290

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

Added:
  gst-plugins-ugly/repos/extra-i686/PKGBUILD
(from rev 203289, gst-plugins-ugly/trunk/PKGBUILD)
  gst-plugins-ugly/repos/extra-x86_64/PKGBUILD
(from rev 203289, gst-plugins-ugly/trunk/PKGBUILD)
Deleted:
  gst-plugins-ugly/repos/extra-i686/PKGBUILD
  gst-plugins-ugly/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:07:04 UTC (rev 203289)
+++ extra-i686/PKGBUILD 2014-01-07 13:07:17 UTC (rev 203290)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-ugly
-pkgver=1.2.1
-pkgrel=2
-pkgdesc=GStreamer Multimedia Framework Ugly Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr')
-makedepends=('python')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('35ae5d45de54827604e24f57f54ab30a5ab2245b4c4120977273eb11d19c2395')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Ugly Plugins (Arch Linux) \
---with-package-origin=http://www.archlinux.org/;
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-plugins-ugly/repos/extra-i686/PKGBUILD (from rev 203289, 
gst-plugins-ugly/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:07:17 UTC (rev 203290)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-ugly
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Ugly Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr')
+makedepends=('python')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('4b6aac272a5be0d68f365ef6fba0f829fc5c1d1d601bb4dd9e85f5289b2b56c3')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Ugly Plugins (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/;
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 13:07:04 UTC (rev 203289)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:07:17 UTC (rev 203290)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-ugly
-pkgver=1.2.1
-pkgrel=2
-pkgdesc=GStreamer Multimedia Framework Ugly Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr')
-makedepends=('python')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('35ae5d45de54827604e24f57f54ab30a5ab2245b4c4120977273eb11d19c2395')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Ugly Plugins (Arch Linux) \
---with-package-origin=http://www.archlinux.org/;
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-plugins-ugly/repos/extra-x86_64/PKGBUILD (from rev 203289, 
gst-plugins-ugly/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:07:33
  Author: heftig
Revision: 203291

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

Added:
  gst-libav/repos/extra-i686/PKGBUILD
(from rev 203290, gst-libav/trunk/PKGBUILD)
  gst-libav/repos/extra-x86_64/PKGBUILD
(from rev 203290, gst-libav/trunk/PKGBUILD)
Deleted:
  gst-libav/repos/extra-i686/PKGBUILD
  gst-libav/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:07:17 UTC (rev 203290)
+++ extra-i686/PKGBUILD 2014-01-07 13:07:33 UTC (rev 203291)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-libav
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=Gstreamer libav Plugin
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('gst-plugins-base-libs' 'bzip2')
-makedepends=('yasm')
-options=(!emptydirs)
-provides=(gst-ffmpeg=$pkgver-$pkgrel)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('fd152b7aec56ae76ad58b9759913a8bfe1792bdf64f260d0acaba75b75076676')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-libav-extra-configure=--enable-runtime-cpudetect 
\
---with-package-name=GStreamer libav Plugin (Arch Linux) \
---with-package-origin=http://www.archlinux.org/;
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-libav/repos/extra-i686/PKGBUILD (from rev 203290, 
gst-libav/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:07:33 UTC (rev 203291)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-libav
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=Gstreamer libav Plugin
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('gst-plugins-base-libs' 'bzip2')
+makedepends=('yasm' 'python')
+options=(!emptydirs)
+provides=(gst-ffmpeg=$pkgver-$pkgrel)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('585eb7971006100ad771a852e07bd2f3e23bcc6eb0b1253a40b5a0e40e4e7418')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --with-libav-extra-configure=--enable-runtime-cpudetect 
\
+--with-package-name=GStreamer libav Plugin (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/;
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 13:07:17 UTC (rev 203290)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:07:33 UTC (rev 203291)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-libav
-pkgver=1.2.1
-pkgrel=1
-pkgdesc=Gstreamer libav Plugin
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('gst-plugins-base-libs' 'bzip2')
-makedepends=('yasm')
-options=(!emptydirs)
-provides=(gst-ffmpeg=$pkgver-$pkgrel)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('fd152b7aec56ae76ad58b9759913a8bfe1792bdf64f260d0acaba75b75076676')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-libav-extra-configure=--enable-runtime-cpudetect 
\
---with-package-name=GStreamer libav Plugin (Arch Linux) \
---with-package-origin=http://www.archlinux.org/;
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-libav/repos/extra-x86_64/PKGBUILD (from rev 203290, 
gst-libav/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:07:33 UTC (rev 203291)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-libav
+pkgver=1.2.2
+pkgrel=1

[arch-commits] Commit in gst-plugins-bad/repos (4 files)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:07:04
  Author: heftig
Revision: 203289

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

Added:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
(from rev 203288, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD
(from rev 203288, gst-plugins-bad/trunk/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/extra-i686/PKGBUILD
  gst-plugins-bad/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:06:50 UTC (rev 203288)
+++ extra-i686/PKGBUILD 2014-01-07 13:07:04 UTC (rev 203289)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-bad
-pkgver=1.2.1
-pkgrel=2
-pkgdesc=GStreamer Multimedia Framework Bad Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi'
- 'gobject-introspection')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('f33e7c81fcb742fe50b73ad87ef8a4baa7d6b59c5002a10bf63c8dee22404929')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name=GStreamer Bad Plugins (Arch Linux) \
---with-package-origin=http://www.archlinux.org/; \
---with-gtk=3.0
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # don't have a camera for the camerabin test
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: gst-plugins-bad/repos/extra-i686/PKGBUILD (from rev 203288, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:07:04 UTC (rev 203289)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-bad
+pkgver=1.2.2
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Bad Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi'
+ 'gobject-introspection')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('63e78db11b482d0529a0bde01e2ac23fd32c7cb99a5508b53ee4ca1051871b2c')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Bad Plugins (Arch Linux) \
+--with-package-origin=http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 13:06:50 UTC (rev 203288)
+++ extra-x86_64/PKGBUILD   2014-01-07 13:07:04 UTC (rev 203289)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gst-plugins-bad
-pkgver=1.2.1
-pkgrel=2
-pkgdesc=GStreamer Multimedia Framework Bad Plugins
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 
'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 
'libwebp' 'libsrtp' 'gnutls' 'wildmidi')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi'
- 

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

2014-01-07 Thread Jürgen Hötzel
Date: Tuesday, January 7, 2014 @ 14:18:52
  Author: juergen
Revision: 203292

Add missing dependency: libxslt, fixes: FS#38340

Modified:
  gnucash-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 13:07:33 UTC (rev 203291)
+++ PKGBUILD2014-01-07 13:18:52 UTC (rev 203292)
@@ -6,7 +6,7 @@
 arch=('any')
 url=http://www.gnucash.org/docs.phtml;
 license=('GPL')
-makedepends=('rarian')
+makedepends=('rarian' 'libxslt')
 
source=(http://sourceforge.net/projects/gnucash/files/gnucash-docs/2.6.0/gnucash-docs-2.6.0.tar.gz/download;)
 md5sums=('d8392952cbb9ff51c132e68a6c209131')
 



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:27:35
  Author: heftig
Revision: 103537

2.18-12

Added:
  lib32-glibc/trunk/glibc-2.18-xattr-compat-hack.patch
Modified:
  lib32-glibc/trunk/PKGBUILD

+
 PKGBUILD   |   12 +---
 glibc-2.18-xattr-compat-hack.patch |   19 +++
 2 files changed, 28 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 11:49:50 UTC (rev 103536)
+++ PKGBUILD2014-01-07 13:27:35 UTC (rev 103537)
@@ -9,7 +9,7 @@
 _pkgbasename=glibc
 pkgname=lib32-$_pkgbasename
 pkgver=2.18
-pkgrel=11
+pkgrel=12
 pkgdesc=GNU C Library for multilib
 arch=('x86_64')
 url=http://www.gnu.org/software/libc;
@@ -26,6 +26,7 @@
 glibc-2.18-getaddrinfo-assertion.patch
 glibc-2.18-scanf-parse-0e-0.patch
 glibc-2.18-strstr-hackfix.patch
+glibc-2.18-xattr-compat-hack.patch
 lib32-glibc.conf)
 md5sums=('88fbbceafee809e82efd52efa1e3c58f'
  'SKIP'
@@ -38,6 +39,7 @@
  'd4d86add33f22125777e0ecff06bc9bb'
  '01d19fe9b2aea489cf5651530e0369f2'
  '4441f6dfe7d75ced1fa75e54dd21d36e'
+ '7ca96c68a37f2a4ab91792bfa0160a24'
  '6e052f1cb693d5d3203f50f9d4e8c33b')
 
 prepare() {
@@ -69,6 +71,9 @@
 
   # hack fix for strstr issues on x86
   patch -p1 -i $srcdir/glibc-2.18-strstr-hackfix.patch
+  
+  # hack fix for {linux,sys}/xattr.h incompatibility
+  patch -p1 -i $srcdir/glibc-2.18-xattr-compat-hack.patch
 
   mkdir ${srcdir}/glibc-build
 }
@@ -148,8 +153,9 @@
   ln -s ../lib/locale $pkgdir/usr/lib32/locale
 
   # remove the static libraries that have a shared counterpart
-  # note: keep libc, libdl, libm, libpthread for binutils testsuite
-  rm $pkgdir/usr/lib32/lib{anl,BrokenLocale,crypt,nsl,resolv,rt,util}.a
+  # libc, libdl, libm and libpthread are required for toolchain testsuites
+  # in addition libcrypt appears widely required
+  rm $pkgdir/usr/lib32/lib{anl,BrokenLocale,nsl,resolv,rt,util}.a
 
   # Do not strip the following files for improved debugging support
   # (improved as in not breaking gdb and valgrind...):

Added: glibc-2.18-xattr-compat-hack.patch
===
--- glibc-2.18-xattr-compat-hack.patch  (rev 0)
+++ glibc-2.18-xattr-compat-hack.patch  2014-01-07 13:27:35 UTC (rev 103537)
@@ -0,0 +1,19 @@
+diff -Naur glibc-2.18-orig/misc/sys/xattr.h glibc-2.18/misc/sys/xattr.h
+--- glibc-2.18-orig/misc/sys/xattr.h   2013-08-11 08:52:55.0 +1000
 glibc-2.18/misc/sys/xattr.h2014-01-07 15:45:50.533969040 +1000
+@@ -26,13 +26,8 @@
+ 
+ /* The following constants should be used for the fifth parameter of
+`*setxattr'.  */
+-enum
+-{
+-  XATTR_CREATE = 1,   /* set value, fail if attr already exists.  */
+-#define XATTR_CREATE  XATTR_CREATE
+-  XATTR_REPLACE = 2   /* set value, fail if attr does not exist.  */
+-#define XATTR_REPLACE XATTR_REPLACE
+-};
++#define XATTR_CREATE  1
++#define XATTR_REPLACE 2
+ 
+ /* Set the attribute NAME of the file pointed to by PATH to VALUE (which
+is SIZE bytes long).  Return 0 on success, -1 for errors.  */



[arch-commits] Commit in lib32-glibc/repos (13 files)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:29:10
  Author: heftig
Revision: 103538

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glibc/repos/multilib-testing-x86_64/
  lib32-glibc/repos/multilib-testing-x86_64/PKGBUILD
(from rev 103537, lib32-glibc/trunk/PKGBUILD)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-getaddrinfo-CVE-2013-4458.patch
(from rev 103537, 
lib32-glibc/trunk/glibc-2.18-getaddrinfo-CVE-2013-4458.patch)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-getaddrinfo-assertion.patch
(from rev 103537, lib32-glibc/trunk/glibc-2.18-getaddrinfo-assertion.patch)
  lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-make-4.patch
(from rev 103537, lib32-glibc/trunk/glibc-2.18-make-4.patch)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-malloc-corrupt-CVE-2013-4332.patch
(from rev 103537, 
lib32-glibc/trunk/glibc-2.18-malloc-corrupt-CVE-2013-4332.patch)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-ptr-mangle-CVE-2013-4788.patch
(from rev 103537, 
lib32-glibc/trunk/glibc-2.18-ptr-mangle-CVE-2013-4788.patch)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-readdir_r-CVE-2013-4237.patch
(from rev 103537, 
lib32-glibc/trunk/glibc-2.18-readdir_r-CVE-2013-4237.patch)
  lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-scanf-parse-0e-0.patch
(from rev 103537, lib32-glibc/trunk/glibc-2.18-scanf-parse-0e-0.patch)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-strcoll-CVE-2012-4412+4424.patch
(from rev 103537, 
lib32-glibc/trunk/glibc-2.18-strcoll-CVE-2012-4412+4424.patch)
  lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-strstr-hackfix.patch
(from rev 103537, lib32-glibc/trunk/glibc-2.18-strstr-hackfix.patch)
  lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-xattr-compat-hack.patch
(from rev 103537, lib32-glibc/trunk/glibc-2.18-xattr-compat-hack.patch)
  lib32-glibc/repos/multilib-testing-x86_64/lib32-glibc.conf
(from rev 103537, lib32-glibc/trunk/lib32-glibc.conf)

---+
 PKGBUILD  |  181 
 glibc-2.18-getaddrinfo-CVE-2013-4458.patch|   41 
 glibc-2.18-getaddrinfo-assertion.patch|   39 
 glibc-2.18-make-4.patch   |   45 +
 glibc-2.18-malloc-corrupt-CVE-2013-4332.patch |   54 +
 glibc-2.18-ptr-mangle-CVE-2013-4788.patch |  485 +++
 glibc-2.18-readdir_r-CVE-2013-4237.patch  |  281 ++
 glibc-2.18-scanf-parse-0e-0.patch |   67 +
 glibc-2.18-strcoll-CVE-2012-4412+4424.patch   | 1004 
 glibc-2.18-strstr-hackfix.patch   |   13 
 glibc-2.18-xattr-compat-hack.patch|   19 
 lib32-glibc.conf  |1 
 12 files changed, 2230 insertions(+)

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


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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:39:41
  Author: heftig
Revision: 203293

3.10.3

Modified:
  empathy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 13:18:52 UTC (rev 203292)
+++ PKGBUILD2014-01-07 13:39:41 UTC (rev 203293)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=empathy
-pkgver=3.10.2
+pkgver=3.10.3
 pkgrel=1
 pkgdesc=A GNOME instant messaging client using the Telepathy framework.
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
 groups=(gnome)
 install=empathy.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9d8e082a448f3e9450a31f0ec21f01e34cf1c15b192cfa30842d71537796cfbf')
+sha256sums=('49366acdd3c3ef9a74f63eb09920803c4c9df83056acbf8a7899e7890a9fb196')
 
 build() {
   cd $pkgname-$pkgver



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 14:41:30
  Author: heftig
Revision: 203294

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

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

--+
 /PKGBUILD|   74 +
 /empathy.install |   32 +
 extra-i686/PKGBUILD  |   37 
 extra-i686/empathy.install   |   16 
 extra-x86_64/PKGBUILD|   37 
 extra-x86_64/empathy.install |   16 
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 13:39:41 UTC (rev 203293)
+++ extra-i686/PKGBUILD 2014-01-07 13:41:30 UTC (rev 203294)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=empathy
-pkgver=3.10.2
-pkgrel=1
-pkgdesc=A GNOME instant messaging client using the Telepathy framework.
-arch=(i686 x86_64)
-url=http://live.gnome.org/Empathy;
-license=(GPL2)
-depends=(clutter-gst clutter-gtk folks gcr iso-codes libcanberra libpulse 
webkitgtk telepathy-farstream telepathy-glib telepathy-logger 
telepathy-mission-control geoclue2 geocode-glib cheese libchamplain)
-makedepends=(intltool itstool docbook-xsl python2)
-optdepends=('telepathy-gabble: XMPP/Jabber support'
-'telepathy-idle: IRC support'
-'telepathy-salut: Link-local XMPP support'
-'telepathy-rakia: SIP support'
-'telepathy-haze: libpurple support')
-options=('!makeflags')
-groups=(gnome)
-install=empathy.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9d8e082a448f3e9450a31f0ec21f01e34cf1c15b192cfa30842d71537796cfbf')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sysconfdir=/etc  \
-  --libexecdir=/usr/lib/empathy \
-  --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: empathy/repos/extra-i686/PKGBUILD (from rev 203293, 
empathy/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 13:41:30 UTC (rev 203294)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=empathy
+pkgver=3.10.3
+pkgrel=1
+pkgdesc=A GNOME instant messaging client using the Telepathy framework.
+arch=(i686 x86_64)
+url=http://live.gnome.org/Empathy;
+license=(GPL2)
+depends=(clutter-gst clutter-gtk folks gcr iso-codes libcanberra libpulse 
webkitgtk telepathy-farstream telepathy-glib telepathy-logger 
telepathy-mission-control geoclue2 geocode-glib cheese libchamplain)
+makedepends=(intltool itstool docbook-xsl python2)
+optdepends=('telepathy-gabble: XMPP/Jabber support'
+'telepathy-idle: IRC support'
+'telepathy-salut: Link-local XMPP support'
+'telepathy-rakia: SIP support'
+'telepathy-haze: libpurple support')
+options=('!makeflags')
+groups=(gnome)
+install=empathy.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('49366acdd3c3ef9a74f63eb09920803c4c9df83056acbf8a7899e7890a9fb196')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc  \
+  --libexecdir=/usr/lib/empathy \
+  --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/empathy.install
===
--- extra-i686/empathy.install  2014-01-07 13:39:41 UTC (rev 203293)
+++ extra-i686/empathy.install  2014-01-07 13:41:30 UTC (rev 203294)
@@ -1,16 +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
-echo To use Empathy you need to install at least one Telepathy connection 
manager.
-}
-
-post_upgrade() {
-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_remove() {
-post_upgrade
-}

Copied: 

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

2014-01-07 Thread Felix Yan
Date: Tuesday, January 7, 2014 @ 16:18:35
  Author: fyan
Revision: 103540

archrelease: copy trunk to community-testing-any

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

-+
 PKGBUILD|  100 +++---
 goagent.install |   42 +++---
 goagent.service |   24 ++--
 3 files changed, 83 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-07 15:17:28 UTC (rev 103539)
+++ PKGBUILD2014-01-07 15:18:35 UTC (rev 103540)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: cuihao cuihao dot leo at gmail dot com
-# Contributor: Guten ywzhai...@gmail.com 
-
-pkgname=goagent
-pkgver=3.1.3
-pkgrel=1
-pkgdesc=A gae proxy forked from gappproxy/wallproxy
-arch=(any)
-url=http://goagent.googlecode.com;
-license=(GPL2)
-depends=('python2' 'python2-pyopenssl')
-conflicts=('python2-gevent0.99')
-optdepends=('python2-gevent0.99: for better performance'
-'python2-crypto: optimization for RC4'
-'python2-pacparser: PAC proxy support')
-makedepends=('git')
-source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
-${pkgname}.user.ini
-${pkgname}.service)
-backup=('etc/goagent')
-install=goagent.install
-
-package() {
-  cd $pkgname
-
-  sed -i -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| local/proxy.py
-  
-  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/goagent
-  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
-  install -Dm644 local/cacert.pem $pkgdir/usr/share/$pkgname/local/cacert.pem
-  install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
-  install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
-
-  install -Dm644 local/proxy.ini $pkgdir/usr/share/$pkgname/local/goagent.ini
-  install -Dm640 -g nobody ../goagent.user.ini $pkgdir/etc/goagent
-  ln -sf /etc/goagent ${pkgdir}/usr/share/$pkgname/local/goagent.user.ini
-  
-  cp -r server $pkgdir/usr/share/$pkgname/
-  rm $pkgdir/usr/share/$pkgname/server/uploader.bat
-
-  # systemd service
-  install -Dm644 ${srcdir}/goagent.service 
${pkgdir}/usr/lib/systemd/system/goagent.service
-}
-
-# vim:set ts=2 sw=2 et:
-sha512sums=('SKIP'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'4327d5b874c5150296f9c027a60994853de1b68d4c4e32291a5c41c0e162ffbccf68b6208cbc096d099721b470e1df897ad61596d8ddd705543c15b58e9a0f7c')

Copied: goagent/repos/community-testing-any/PKGBUILD (from rev 103539, 
goagent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-07 15:18:35 UTC (rev 103540)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: cuihao cuihao dot leo at gmail dot com
+# Contributor: Guten ywzhai...@gmail.com 
+
+pkgname=goagent
+pkgver=3.1.4
+pkgrel=1
+pkgdesc=A gae proxy forked from gappproxy/wallproxy
+arch=(any)
+url=http://goagent.googlecode.com;
+license=(GPL2)
+depends=('python2' 'python2-pyopenssl')
+conflicts=('python2-gevent0.99')
+optdepends=('python2-gevent0.99: for better performance'
+'python2-crypto: optimization for RC4'
+'python2-pacparser: PAC proxy support')
+makedepends=('git')
+source=(git+https://github.com/goagent/goagent.git#tag=v$pkgver;
+${pkgname}.user.ini
+${pkgname}.service)
+backup=('etc/goagent')
+install=goagent.install
+
+package() {
+  cd $pkgname
+
+  sed -i -e s|^#!/usr/bin/env python|#!/usr/bin/env python2| local/proxy.py
+  
+  install -Dm755 local/proxy.py $pkgdir/usr/share/$pkgname/local/goagent
+  install -Dm644 local/proxy.pac $pkgdir/usr/share/$pkgname/local/proxy.pac
+  install -Dm644 local/cacert.pem $pkgdir/usr/share/$pkgname/local/cacert.pem
+  install -Dm644 local/SwitchyOptions.bak 
$pkgdir/usr/share/$pkgname/local/SwitchyOptions.bak
+  install -Dm644 local/SwitchySharp.crx 
$pkgdir/usr/share/$pkgname/local/SwitchySharp_1_9_52.crx
+
+  install -Dm644 local/proxy.ini $pkgdir/usr/share/$pkgname/local/goagent.ini
+  install -Dm640 -g nobody ../goagent.user.ini $pkgdir/etc/goagent
+ 

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

2014-01-07 Thread Felix Yan
Date: Tuesday, January 7, 2014 @ 16:17:28
  Author: fyan
Revision: 103539

upgpkg: goagent 3.1.4-1

Modified:
  goagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 13:29:10 UTC (rev 103538)
+++ PKGBUILD2014-01-07 15:17:28 UTC (rev 103539)
@@ -4,7 +4,7 @@
 # Contributor: Guten ywzhai...@gmail.com 
 
 pkgname=goagent
-pkgver=3.1.3
+pkgver=3.1.4
 pkgrel=1
 pkgdesc=A gae proxy forked from gappproxy/wallproxy
 arch=(any)



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 18:59:08
  Author: lcarlier
Revision: 203296

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 17:58:56 UTC (rev 203295)
+++ extra-i686/PKGBUILD 2014-01-07 17:59:08 UTC (rev 203296)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libxfont
-pkgver=1.4.6
-pkgrel=1
-pkgdesc=X11 font rasterisation library
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto')
-makedepends=('xorg-util-macros' 'xtrans')
-source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2)
-sha256sums=('d0cbfe4554dc17ceea413cdad5601d35ed8d05d5b880e60931a8775fd1157e9f')
-
-build() {
-  cd ${srcdir}/libXfont-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/libXfont-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: libxfont/repos/extra-i686/PKGBUILD (from rev 203295, 
libxfont/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 17:59:08 UTC (rev 203296)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libxfont
+pkgver=1.4.7
+pkgrel=1
+pkgdesc=X11 font rasterisation library
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto')
+makedepends=('xorg-util-macros' 'xtrans')
+source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2)
+sha256sums=('d16ea3541835d296b19cfb05d7e64fc62173d8e7eb93284402ec761b951d1543')
+
+build() {
+  cd ${srcdir}/libXfont-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/libXfont-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 17:58:56 UTC (rev 203295)
+++ extra-x86_64/PKGBUILD   2014-01-07 17:59:08 UTC (rev 203296)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libxfont
-pkgver=1.4.6
-pkgrel=1
-pkgdesc=X11 font rasterisation library
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto')
-makedepends=('xorg-util-macros' 'xtrans')
-source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2)
-sha256sums=('d0cbfe4554dc17ceea413cdad5601d35ed8d05d5b880e60931a8775fd1157e9f')
-
-build() {
-  cd ${srcdir}/libXfont-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/libXfont-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: libxfont/repos/extra-x86_64/PKGBUILD (from rev 203295, 
libxfont/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-01-07 17:59:08 UTC (rev 203296)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libxfont
+pkgver=1.4.7
+pkgrel=1
+pkgdesc=X11 font rasterisation library
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto')
+makedepends=('xorg-util-macros' 'xtrans')
+source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2)
+sha256sums=('d16ea3541835d296b19cfb05d7e64fc62173d8e7eb93284402ec761b951d1543')
+
+build() {
+  cd ${srcdir}/libXfont-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/libXfont-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}



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

2014-01-07 Thread Laurent Carlier
Date: Tuesday, January 7, 2014 @ 18:58:56
  Author: lcarlier
Revision: 203295

upgpkg: libxfont 1.4.7-1

upstream update 1.4.7

Modified:
  libxfont/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 13:41:30 UTC (rev 203294)
+++ PKGBUILD2014-01-07 17:58:56 UTC (rev 203295)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libxfont
-pkgver=1.4.6
+pkgver=1.4.7
 pkgrel=1
 pkgdesc=X11 font rasterisation library
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto')
 makedepends=('xorg-util-macros' 'xtrans')
 source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2)
-sha256sums=('d0cbfe4554dc17ceea413cdad5601d35ed8d05d5b880e60931a8775fd1157e9f')
+sha256sums=('d16ea3541835d296b19cfb05d7e64fc62173d8e7eb93284402ec761b951d1543')
 
 build() {
   cd ${srcdir}/libXfont-${pkgver}



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

2014-01-07 Thread Andrea Scarpino
Date: Tuesday, January 7, 2014 @ 19:06:01
  Author: andrea
Revision: 203297

upgpkg: kdebase-workspace 4.11.5-1

Upstream release

Modified:
  kdebase-workspace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 17:59:08 UTC (rev 203296)
+++ PKGBUILD2014-01-07 18:06:01 UTC (rev 203297)
@@ -4,8 +4,8 @@
 
 pkgname=kdebase-workspace
 _pkgname=kde-workspace
-pkgver=4.11.4
-pkgrel=2
+pkgver=4.11.5
+pkgrel=1
 pkgdesc=Provides the interface and basic tools for the KDE workspace
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kde-workspace'
@@ -28,7 +28,7 @@
 
source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'kdm.logrotate'
 'etc-scripts.patch' 'terminate-server.patch' 'kdm-xinitrd.patch')
-sha1sums=('c1e2b669f5a1607bcce7e92d9213af1ee809d79e'
+sha1sums=('4292288f7636a082f95072c4188015c041b424d3'
   '660eae40a707d2711d8d7f32a93214865506b795'
   '6aeecc9e0e221f0515c6bf544f9a3c11cb6961fe'
   '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8'



[arch-commits] Commit in kdebase-workspace/repos (40 files)

2014-01-07 Thread Andrea Scarpino
Date: Tuesday, January 7, 2014 @ 19:06:19
  Author: andrea
Revision: 203298

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

Added:
  kdebase-workspace/repos/extra-i686/PKGBUILD
(from rev 203297, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/extra-i686/etc-scripts.patch
(from rev 203297, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/extra-i686/kde-np.pam
(from rev 203297, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/extra-i686/kde.pam
(from rev 203297, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/extra-i686/kdebase-workspace.install
(from rev 203297, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/extra-i686/kdm-xinitrd.patch
(from rev 203297, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/extra-i686/kdm.logrotate
(from rev 203297, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/extra-i686/kdm.service
(from rev 203297, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/extra-i686/kscreensaver.pam
(from rev 203297, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/extra-i686/terminate-server.patch
(from rev 203297, kdebase-workspace/trunk/terminate-server.patch)
  kdebase-workspace/repos/extra-x86_64/PKGBUILD
(from rev 203297, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/extra-x86_64/etc-scripts.patch
(from rev 203297, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/extra-x86_64/kde-np.pam
(from rev 203297, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/extra-x86_64/kde.pam
(from rev 203297, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/extra-x86_64/kdebase-workspace.install
(from rev 203297, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/extra-x86_64/kdm-xinitrd.patch
(from rev 203297, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/extra-x86_64/kdm.logrotate
(from rev 203297, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/extra-x86_64/kdm.service
(from rev 203297, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/extra-x86_64/kscreensaver.pam
(from rev 203297, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/extra-x86_64/terminate-server.patch
(from rev 203297, kdebase-workspace/trunk/terminate-server.patch)
Deleted:
  kdebase-workspace/repos/extra-i686/PKGBUILD
  kdebase-workspace/repos/extra-i686/etc-scripts.patch
  kdebase-workspace/repos/extra-i686/kde-np.pam
  kdebase-workspace/repos/extra-i686/kde.pam
  kdebase-workspace/repos/extra-i686/kdebase-workspace.install
  kdebase-workspace/repos/extra-i686/kdm-xinitrd.patch
  kdebase-workspace/repos/extra-i686/kdm.logrotate
  kdebase-workspace/repos/extra-i686/kdm.service
  kdebase-workspace/repos/extra-i686/kscreensaver.pam
  kdebase-workspace/repos/extra-i686/terminate-server.patch
  kdebase-workspace/repos/extra-x86_64/PKGBUILD
  kdebase-workspace/repos/extra-x86_64/etc-scripts.patch
  kdebase-workspace/repos/extra-x86_64/kde-np.pam
  kdebase-workspace/repos/extra-x86_64/kde.pam
  kdebase-workspace/repos/extra-x86_64/kdebase-workspace.install
  kdebase-workspace/repos/extra-x86_64/kdm-xinitrd.patch
  kdebase-workspace/repos/extra-x86_64/kdm.logrotate
  kdebase-workspace/repos/extra-x86_64/kdm.service
  kdebase-workspace/repos/extra-x86_64/kscreensaver.pam
  kdebase-workspace/repos/extra-x86_64/terminate-server.patch

+
 /PKGBUILD  |  172 +++
 /etc-scripts.patch |   22 +++
 /kde-np.pam|   24 
 /kde.pam   |   16 ++
 /kdebase-workspace.install |   62 +++
 /kdm-xinitrd.patch |   36 ++
 /kdm.logrotate |   12 ++
 /kdm.service   |   18 +++
 /kscreensaver.pam  |2 
 /terminate-server.patch|   22 +++
 extra-i686/PKGBUILD|   86 ---
 extra-i686/etc-scripts.patch   |   11 -
 extra-i686/kde-np.pam  |   12 --
 extra-i686/kde.pam |8 -
 extra-i686/kdebase-workspace.install   |   31 -
 extra-i686/kdm-xinitrd.patch   |   18 ---
 extra-i686/kdm.logrotate   |6 -
 extra-i686/kdm.service |9 -
 extra-i686/kscreensaver.pam|1 
 extra-i686/terminate-server.patch  |   11 -
 extra-x86_64/PKGBUILD  |   86 ---
 extra-x86_64/etc-scripts.patch |   11 -
 extra-x86_64/kde-np.pam|   12 --
 extra-x86_64/kde.pam   |8 -
 extra-x86_64/kdebase-workspace.install |   31 -
 extra-x86_64/kdm-xinitrd.patch |   18 ---
 extra-x86_64/kdm.logrotate 

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

2014-01-07 Thread Florian Pritz
Date: Tuesday, January 7, 2014 @ 19:29:29
  Author: bluewind
Revision: 103541

add depends and optdepends

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 15:18:35 UTC (rev 103540)
+++ PKGBUILD2014-01-07 18:29:29 UTC (rev 103541)
@@ -7,6 +7,23 @@
 arch=('any')
 url=http://inxi.org;
 license=('GPL')
+depends=(coreutils gawk grep pciutils procps-ng sed)
+optdepends=(
+  dmidecode: inxi -M if no sys machine data
+  file: inxi -o unmounted file system
+  hddtemp: inxi -Dx show hdd temp
+  net-tools: inxi -i ip lan-deprecated
+  iproute2: inxi -i ip lan
+  lm_sensors: inxi -s sensors output
+  usbutils: inxi -A usb audio;-N usb networking
+  kmod: inxi -Ax,-Nx module version
+  systemd-sysvcompat: inxi -I runlevel
+  sudo: inxi -Dx hddtemp-user;-o file-user
+  mesa-demos: inxi -G glx info
+  xorg-xdpyinfo: inxi -G multi screen resolution
+  xorg-xprop: inxi -S desktop data
+  xorg-xrandr: inxi -G single screen resolution
+)
 
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
 md5sums=('721547f67864f8be1bbfb7584018694c')
 



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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 20:57:15
  Author: eric
Revision: 103543

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-07 19:56:33 UTC (rev 103542)
+++ PKGBUILD2014-01-07 19:57:15 UTC (rev 103543)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2014.01.06.1
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('384a68ecd3d17d95949521a8adda785b8b3506f7'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
-${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

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



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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 20:56:33
  Author: eric
Revision: 103542

upgpkg: youtube-dl 2014.01.07.5-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 18:29:29 UTC (rev 103541)
+++ PKGBUILD2014-01-07 19:56:33 UTC (rev 103542)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2014.01.06.1
+pkgver=2014.01.07.5
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('ffmpeg: for video post-processing')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('384a68ecd3d17d95949521a8adda785b8b3506f7'
+sha1sums=('324e6151e043c0a0448494feb5b7af1422add451'
   'SKIP')
 
 prepare() {



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

2014-01-07 Thread Andreas Radke
Date: Tuesday, January 7, 2014 @ 21:10:41
  Author: andyrtr
Revision: 203299

upgpkg: x2goserver 4.0.1.12-1

upstream update 4.0.1.12

Modified:
  x2goserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 18:06:19 UTC (rev 203298)
+++ PKGBUILD2014-01-07 20:10:41 UTC (rev 203299)
@@ -7,7 +7,7 @@
 # Contributor: Milan Knížek kni...@volny.cz
 
 pkgname=x2goserver
-pkgver=4.0.1.11
+pkgver=4.0.1.12
 pkgrel=1
 pkgdesc=Open source terminal server
 arch=('i686' 'x86_64')
@@ -44,6 +44,8 @@
  # for post install actions
  'desktop-file-utils'
  'shared-mime-info'
+ 
+ 'perl-capture-tiny'
 
  #x2goserver-extensions
  #x2goserver-xsession
@@ -56,7 +58,7 @@
 install=x2goserver.install
 backup=('etc/x2go/x2goserver.conf' 'etc/x2go/x2gosql/sql')
 
source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('11f130f712d1d5910bb479b5eb599105')
+md5sums=('2f41accfb7b7d8b8113eb6f2f686e340')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-01-07 Thread Andreas Radke
Date: Tuesday, January 7, 2014 @ 21:11:01
  Author: andyrtr
Revision: 203300

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

Added:
  x2goserver/repos/testing-i686/PKGBUILD
(from rev 203299, x2goserver/trunk/PKGBUILD)
  x2goserver/repos/testing-i686/x2goserver.install
(from rev 203299, x2goserver/trunk/x2goserver.install)
  x2goserver/repos/testing-x86_64/PKGBUILD
(from rev 203299, x2goserver/trunk/PKGBUILD)
  x2goserver/repos/testing-x86_64/x2goserver.install
(from rev 203299, x2goserver/trunk/x2goserver.install)
Deleted:
  x2goserver/repos/testing-i686/PKGBUILD
  x2goserver/repos/testing-i686/x2goserver.install
  x2goserver/repos/testing-x86_64/PKGBUILD
  x2goserver/repos/testing-x86_64/x2goserver.install

---+
 /PKGBUILD |  208 
 /x2goserver.install   |  138 +++
 testing-i686/PKGBUILD |  102 -
 testing-i686/x2goserver.install   |   69 ---
 testing-x86_64/PKGBUILD   |  102 -
 testing-x86_64/x2goserver.install |   69 ---
 6 files changed, 346 insertions(+), 342 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-01-07 20:10:41 UTC (rev 203299)
+++ testing-i686/PKGBUILD   2014-01-07 20:11:01 UTC (rev 203300)
@@ -1,102 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-# Contributor: Gerhard Brauer ger...@archlinux.de
-# Contributor: Richard Murri ad...@richardmurri.com
-# Contributor: Markus Opitz mastero23 at gmail dot com
-# Contributor: Milan Knížek kni...@volny.cz
-
-pkgname=x2goserver
-pkgver=4.0.1.11
-pkgrel=1
-pkgdesc=Open source terminal server
-arch=('i686' 'x86_64')
-url=http://www.x2go.org/;
-license=('GPL2')
-# see x2goserver.spec
-depends=(#'perl-config-simple' 'perl-file-basedir'
- #'python' 'xorg-xauth' 
-
- # For x2goruncommand - for now
- 'bc'
- # For netstat in x2goresume-session
- 'net-tools'
- 'openssh'
- 'perl-file-readbackwards'
- # We need a database
- 'perl-dbd-sqlite' 
- # For killall in x2gosuspend-session
- 'psmisc'
- # For x2goshowblocks
- 'lsof'
- # For x2godbadmin
-'pwgen' # in community
- # For printing, file-sharing
- 'sshfs'
- # For /etc/sudoers.d
- 'sudo'
- 'x2go-agent'
- # For /etc/X11/Xresources
- 'xorg-xinit'
- 'xorg-fonts-misc'
- 'shadow'
- 
- # for post install actions
- 'desktop-file-utils'
- 'shared-mime-info'
-
- #x2goserver-extensions
- #x2goserver-xsession
- #x2goserver-fmbindings
- #x2goserver-printing
-)
-makedepends=('man2html' 'perl-extutils-makemaker' 'systemd')
-#optdepends=('cups-x2go: printing support')
-options=('emptydirs')
-install=x2goserver.install
-backup=('etc/x2go/x2goserver.conf' 'etc/x2go/x2gosql/sql')
-source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('11f130f712d1d5910bb479b5eb599105')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # -r option does not exist in Arch linux
-  # (However, html man pages do not get installed anyway...)
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i 's@(MAN2HTML_BIN) -r @(MAN2HTML_BIN)  @g' $Makefile
-sed -i 's@ \$(MAN2HTML_SRC)/@  \$(MAN2HTML_SRC)/@g' $Makefile
-  done
-
-  # fix some Makefile permission options
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i s:-o root -g root ::g $Makefile
-  done
-  # Do not ship xsession - Debian specific
-  sed -i -e '/xsession/s/^/#/' Makefile
-  
-  make PREFIX=/usr SBINDIR=/usr/bin DESTDIR=$pkgdir PERL_INSTALLDIRS=vendor
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -j1 PREFIX=/usr SBINDIR=/usr/bin DESTDIR=$pkgdir install
-
-  # systemd service file 
-  install -Dm 644 $srcdir/${pkgname}-${pkgver}/x2goserver.service 
$pkgdir/usr/lib/systemd/system/x2goserver.service
-  
-  # X2go homedir + printing spool dir
-  install -dm 770 $pkgdir/var/lib/x2go
-  install -dm 770 $pkgdir/var/spool/x2go
-  
-  # load fuse module at system start
-  install -dm755 $pkgdir/usr/lib/modules-load.d
-  echo fuse  $pkgdir/usr/lib/modules-load.d/x2goserver.conf
-
-  install -dm 755 ${pkgdir}/usr/share/doc/${pkgname}
-  install -m 644 debian/changelog 
${pkgdir}/usr/share/doc/${pkgname}/changelog.DEBIAN
-  install -m 644 debian/copyright 
${pkgdir}/usr/share/doc/${pkgname}/copyright.DEBIAN
-
-  # fix permission
-  chmod 750 ${pkgdir}/etc/sudoers.d
-}

Copied: x2goserver/repos/testing-i686/PKGBUILD (from rev 203299, 
x2goserver/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ 

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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 21:51:31
  Author: eric
Revision: 203302

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

Added:
  wxgtk/repos/staging-i686/PKGBUILD
(from rev 203301, wxgtk/trunk/PKGBUILD)
  wxgtk/repos/staging-x86_64/PKGBUILD
(from rev 203301, wxgtk/trunk/PKGBUILD)
Deleted:
  wxgtk/repos/staging-i686/PKGBUILD
  wxgtk/repos/staging-x86_64/PKGBUILD

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

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2014-01-07 20:51:02 UTC (rev 203301)
+++ staging-i686/PKGBUILD   2014-01-07 20:51:31 UTC (rev 203302)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=wxgtk
-pkgver=3.0.0
-pkgrel=1
-pkgdesc=GTK+ implementation of wxWidgets API for GUI
-arch=('i686' 'x86_64')
-url=http://wxwidgets.org;
-license=('custom:wxWindows')
-depends=('gtk2' 'gstreamer0.10-base')
-makedepends=('gstreamer0.10-base-plugins' 'gconf' 'webkitgtk2' 'glu')
-optdepends=('webkitgtk2: for webview support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2)
-sha1sums=('756a9c54d1f411e262f03bacb78ccef085a9880a')
-
-build() {
-  cd wxWidgets-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl 
--enable-unicode \
---enable-graphics_ctx --enable-mediactrl --enable-webview 
--with-regex=builtin \
---with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
---disable-precomp-headers
-  make
-  make -C locale allmo
-}
-
-package() {
-  cd wxWidgets-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 docs/licence.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: wxgtk/repos/staging-i686/PKGBUILD (from rev 203301, 
wxgtk/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-01-07 20:51:31 UTC (rev 203302)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=wxgtk
+pkgver=3.0.0
+pkgrel=2
+pkgdesc=GTK+ implementation of wxWidgets API for GUI
+arch=('i686' 'x86_64')
+url=http://wxwidgets.org;
+license=('custom:wxWindows')
+depends=('gtk2' 'gstreamer0.10-base')
+makedepends=('gstreamer0.10-base-plugins' 'gconf' 'webkitgtk2' 'glu')
+optdepends=('webkitgtk2: for webview support')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2)
+sha1sums=('756a9c54d1f411e262f03bacb78ccef085a9880a')
+
+build() {
+  cd wxWidgets-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl 
--enable-unicode \
+--enable-graphics_ctx --enable-mediactrl --enable-webview --enable-stl 
--with-regex=builtin \
+--with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
+--disable-precomp-headers
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 docs/licence.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2014-01-07 20:51:02 UTC (rev 203301)
+++ staging-x86_64/PKGBUILD 2014-01-07 20:51:31 UTC (rev 203302)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=wxgtk
-pkgver=3.0.0
-pkgrel=1
-pkgdesc=GTK+ implementation of wxWidgets API for GUI
-arch=('i686' 'x86_64')
-url=http://wxwidgets.org;
-license=('custom:wxWindows')
-depends=('gtk2' 'gstreamer0.10-base')
-makedepends=('gstreamer0.10-base-plugins' 'gconf' 'webkitgtk2' 'glu')
-optdepends=('webkitgtk2: for webview support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2)
-sha1sums=('756a9c54d1f411e262f03bacb78ccef085a9880a')
-
-build() {
-  cd wxWidgets-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl 
--enable-unicode \
---enable-graphics_ctx --enable-mediactrl --enable-webview 
--with-regex=builtin \
---with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
---disable-precomp-headers
-  make
-  make -C locale allmo
-}
-
-package() {
-  cd wxWidgets-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 docs/licence.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: wxgtk/repos/staging-x86_64/PKGBUILD (from rev 203301, 
wxgtk/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-01-07 20:51:31 

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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 21:51:02
  Author: eric
Revision: 203301

upgpkg: wxgtk 3.0.0-2

Add STL support

Modified:
  wxgtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 20:11:01 UTC (rev 203300)
+++ PKGBUILD2014-01-07 20:51:02 UTC (rev 203301)
@@ -3,7 +3,7 @@
 
 pkgname=wxgtk
 pkgver=3.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc=GTK+ implementation of wxWidgets API for GUI
 arch=('i686' 'x86_64')
 url=http://wxwidgets.org;
@@ -18,7 +18,7 @@
 build() {
   cd wxWidgets-${pkgver}
   ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl 
--enable-unicode \
---enable-graphics_ctx --enable-mediactrl --enable-webview 
--with-regex=builtin \
+--enable-graphics_ctx --enable-mediactrl --enable-webview --enable-stl 
--with-regex=builtin \
 --with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
 --disable-precomp-headers
   make



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

2014-01-07 Thread Florian Pritz
Date: Tuesday, January 7, 2014 @ 22:10:02
  Author: bluewind
Revision: 103544

upgpkg: lib32-pcre 8.34-1

upstream update

Modified:
  lib32-pcre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 19:57:15 UTC (rev 103543)
+++ PKGBUILD2014-01-07 21:10:02 UTC (rev 103544)
@@ -3,7 +3,7 @@
 
 _pkgbasename=pcre
 pkgname=lib32-$_pkgbasename
-pkgver=8.33
+pkgver=8.34
 pkgrel=1
 pkgdesc=A library that implements Perl 5-style regular expressions (32-bit)
 arch=('x86_64')
@@ -11,9 +11,8 @@
 license=('custom')
 depends=('lib32-gcc-libs' $_pkgbasename)
 makedepends=('gcc-multilib')
-options=('!libtool')
 
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-md5sums=('21514018448ac10062ece7a668fca949'
+md5sums=('5439e321351bddd5533551bbce128d07'
  'SKIP')
 
 build() {



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

2014-01-07 Thread Florian Pritz
Date: Tuesday, January 7, 2014 @ 22:10:05
  Author: bluewind
Revision: 103545

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |   85 ++---
 1 file changed, 42 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-07 21:10:02 UTC (rev 103544)
+++ PKGBUILD2014-01-07 21:10:05 UTC (rev 103545)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-_pkgbasename=pcre
-pkgname=lib32-$_pkgbasename
-pkgver=8.33
-pkgrel=1
-pkgdesc=A library that implements Perl 5-style regular expressions (32-bit)
-arch=('x86_64')
-url=http://pcre.sourceforge.net;
-license=('custom')
-depends=('lib32-gcc-libs' $_pkgbasename)
-makedepends=('gcc-multilib')
-options=('!libtool')
-source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-md5sums=('21514018448ac10062ece7a668fca949'
- 'SKIP')
-
-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-utf --enable-unicode-properties --enable-pcre16 --enable-pcre32 
--enable-jit
-  make
-}
-
-check() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  make -j1 check
-}
-
-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-pcre/repos/multilib-x86_64/PKGBUILD (from rev 103544, 
lib32-pcre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-07 21:10:05 UTC (rev 103545)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+_pkgbasename=pcre
+pkgname=lib32-$_pkgbasename
+pkgver=8.34
+pkgrel=1
+pkgdesc=A library that implements Perl 5-style regular expressions (32-bit)
+arch=('x86_64')
+url=http://pcre.sourceforge.net;
+license=('custom')
+depends=('lib32-gcc-libs' $_pkgbasename)
+makedepends=('gcc-multilib')
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
+md5sums=('5439e321351bddd5533551bbce128d07'
+ 'SKIP')
+
+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-utf --enable-unicode-properties --enable-pcre16 --enable-pcre32 
--enable-jit
+  make
+}
+
+check() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  make -j1 check
+}
+
+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 lib32-mpg123/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-01-07 Thread Florian Pritz
Date: Tuesday, January 7, 2014 @ 22:12:39
  Author: bluewind
Revision: 103547

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-07 21:12:36 UTC (rev 103546)
+++ PKGBUILD2014-01-07 21:12:39 UTC (rev 103547)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Hugo Doria h...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-
-_pkgbasename=mpg123
-pkgname=lib32-$_pkgbasename
-pkgver=1.16.0
-pkgrel=1
-pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3 
(32-bit)
-arch=('x86_64')
-url=http://sourceforge.net/projects/mpg123;
-license=('LGPL2.1')
-depends=('lib32-glibc' 'lib32-libtool' 'lib32-alsa-lib' $_pkgbasename)
-makedepends=('lib32-sdl' gcc-multilib libtool-multilib)
-optdepends=('lib32-sdl: for additional audio support')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2)
-md5sums=('169cfc32b32b5cae99212fe8e4347215')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  
-  ./configure --prefix=/usr --with-audio=alsa sdl --with-cpu=i586 
--libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-}

Copied: lib32-mpg123/repos/multilib-x86_64/PKGBUILD (from rev 103546, 
lib32-mpg123/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-07 21:12:39 UTC (rev 103547)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Hugo Doria h...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+
+_pkgbasename=mpg123
+pkgname=lib32-$_pkgbasename
+pkgver=1.17.0
+pkgrel=1
+pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3 
(32-bit)
+arch=('x86_64')
+url=http://sourceforge.net/projects/mpg123;
+license=('LGPL2.1')
+depends=('lib32-glibc' 'lib32-libtool' 'lib32-alsa-lib' $_pkgbasename)
+makedepends=('lib32-sdl' gcc-multilib libtool-multilib)
+optdepends=('lib32-sdl: for additional audio support')
+source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2)
+md5sums=('7a76aa1e5e0f02f7ac6446f5ed95e229')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  
+  ./configure --prefix=/usr --with-audio=alsa sdl --with-cpu=i586 
--libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+}



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

2014-01-07 Thread Florian Pritz
Date: Tuesday, January 7, 2014 @ 22:12:36
  Author: bluewind
Revision: 103546

upgpkg: lib32-mpg123 1.17.0-1

upstream update

Modified:
  lib32-mpg123/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 21:10:05 UTC (rev 103545)
+++ PKGBUILD2014-01-07 21:12:36 UTC (rev 103546)
@@ -4,7 +4,7 @@
 
 _pkgbasename=mpg123
 pkgname=lib32-$_pkgbasename
-pkgver=1.16.0
+pkgver=1.17.0
 pkgrel=1
 pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3 
(32-bit)
 arch=('x86_64')
@@ -13,9 +13,8 @@
 depends=('lib32-glibc' 'lib32-libtool' 'lib32-alsa-lib' $_pkgbasename)
 makedepends=('lib32-sdl' gcc-multilib libtool-multilib)
 optdepends=('lib32-sdl: for additional audio support')
-options=('!libtool')
 
source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2)
-md5sums=('169cfc32b32b5cae99212fe8e4347215')
+md5sums=('7a76aa1e5e0f02f7ac6446f5ed95e229')
 
 build() {
   export CC=gcc -m32



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 22:23:14
  Author: heftig
Revision: 103550

llvm 3.4 rebuild

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 21:22:53 UTC (rev 103549)
+++ PKGBUILD2014-01-07 21:23:14 UTC (rev 103550)
@@ -4,7 +4,7 @@
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
 pkgver=2.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Ruby runtime written in Ruby, designed for concurrency
 arch=(i686 x86_64)
 url=http://rubini.us;
@@ -13,10 +13,11 @@
 makedepends=(llvm rubinius-ruby)
 options=(!emptydirs)
 source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
+gemrc dirs.patch llvm34.patch)
 sha256sums=('b3426aa6996420f1d9d8a7926a94160b84d8bdf725793c64462b27b74f2f2acf'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'93f3918dc2a5679e281e724f9b3cb712ffa784c1e52e6fa7ce75f74ce6655a66')
+'93f3918dc2a5679e281e724f9b3cb712ffa784c1e52e6fa7ce75f74ce6655a66'
+'a24850f34a8a308ce4a4e1da12d75a669095a38b6b5da5082eb4d3bd41770095')
 
 prepare() {
   export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
@@ -23,6 +24,7 @@
   cd $pkgbase-$pkgver
 
   patch -Np1 -i ../dirs.patch
+  patch -Np1 -i ../llvm34.patch
 
   mkdir -p $GEM_HOME
   gem install --no-user-install -N vendor/cache/bundler-*.gem



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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 22:22:53
  Author: eric
Revision: 103549

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

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

-+
 community-staging-i686/PKGBUILD |   35 ++
 community-staging-i686/poedit.install   |   12 ++
 community-staging-x86_64/PKGBUILD   |   35 ++
 community-staging-x86_64/poedit.install |   12 ++
 4 files changed, 94 insertions(+)

Copied: poedit/repos/community-staging-i686/PKGBUILD (from rev 103548, 
poedit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-07 21:22:53 UTC (rev 103549)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.3
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++')
+makedepends=('boost' 'libsm')
+install=poedit.install
+source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+md5sums=('f58be3cee666d3c586a85c26abba7816')
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+sed -i 's|Wx/filename.h|wx/filename.h|' src/tm/transmem.cpp
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: poedit/repos/community-staging-i686/poedit.install (from rev 103548, 
poedit/trunk/poedit.install)
===
--- community-staging-i686/poedit.install   (rev 0)
+++ community-staging-i686/poedit.install   2014-01-07 21:22:53 UTC (rev 
103549)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: poedit/repos/community-staging-x86_64/PKGBUILD (from rev 103548, 
poedit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-01-07 21:22:53 UTC (rev 103549)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.3
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++')
+makedepends=('boost' 'libsm')
+install=poedit.install
+source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+md5sums=('f58be3cee666d3c586a85c26abba7816')
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+sed -i 's|Wx/filename.h|wx/filename.h|' src/tm/transmem.cpp
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: poedit/repos/community-staging-x86_64/poedit.install (from rev 103548, 
poedit/trunk/poedit.install)
===
--- community-staging-x86_64/poedit.install (rev 0)
+++ community-staging-x86_64/poedit.install 2014-01-07 21:22:53 UTC (rev 
103549)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in rubinius/trunk (llvm34.patch)

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 22:23:29
  Author: heftig
Revision: 103551

add the patch

Added:
  rubinius/trunk/llvm34.patch

--+
 llvm34.patch |  182 +
 1 file changed, 182 insertions(+)

Added: llvm34.patch
===
--- llvm34.patch(rev 0)
+++ llvm34.patch2014-01-07 21:23:29 UTC (rev 103551)
@@ -0,0 +1,182 @@
+diff --git i/vm/llvm/disassembler.cpp w/vm/llvm/disassembler.cpp
+index 79c74ff..b3ea424 100644
+--- i/vm/llvm/disassembler.cpp
 w/vm/llvm/disassembler.cpp
+@@ -46,20 +46,27 @@ namespace rubinius {
+ #if RBX_LLVM_API_VER  300
+ llvm::TargetOptions options;
+ options.NoFramePointerElim = true;
++#if RBX_LLVM_API_VER  304
+ options.NoFramePointerElimNonLeaf = true;
++#endif
+ target_machine = target-createTargetMachine(host, 
llvm::sys::getHostCPUName(), , options);
+ #else
+ target_machine = target-createTargetMachine(host, 
llvm::sys::getHostCPUName(), );
+ #endif
+ 
+ sub_target = target-createMCSubtargetInfo(host, 
llvm::sys::getHostCPUName(), );
+-asm_info = target-createMCAsmInfo(host);
+ 
+ #if RBX_LLVM_API_VER  300
+ instr_info = target-createMCInstrInfo();
+ reg_info = target-createMCRegInfo(host);
+ #endif
+ 
++#if RBX_LLVM_API_VER  303
++asm_info = target-createMCAsmInfo(*reg_info, host);
++#else
++asm_info = target-createMCAsmInfo(host);
++#endif
++
+ if(asm_info) {
+   disassembler = target-createMCDisassembler(*sub_target);
+   memory_object = new JITMemoryObject((const uint8_t*)buffer, (uint64_t) 
size);
+diff --git i/vm/llvm/jit_builder.cpp w/vm/llvm/jit_builder.cpp
+index 652350f..c479aab 100644
+--- i/vm/llvm/jit_builder.cpp
 w/vm/llvm/jit_builder.cpp
+@@ -56,12 +56,21 @@ namespace jit {
+ , rubinius, true, , 0);
+ DIFile file = debug_builder().createFile(file_str, );
+ 
++#if RBX_LLVM_API_VER  303
++DIType dummy_return_type = debug_builder().createNullPtrType();
++Value* dummy_signature[] = {
++  *dummy_return_type,
++};
++DICompositeType dummy_subroutine_type = 
debug_builder().createSubroutineType(file,
++debug_builder().getOrCreateArray(dummy_signature));
++#else
+ DIType dummy_return_type = debug_builder().createNullPtrType(dummy 
type);
+ Value* dummy_signature[] = {
+   *dummy_return_type,
+ };
+ DIType dummy_subroutine_type = debug_builder().createSubroutineType(file,
+ debug_builder().getOrCreateArray(dummy_signature));
++#endif
+ 
+ #if RBX_LLVM_API_VER  300
+ DISubprogram subprogram = debug_builder().createFunction(file, , ,
+diff --git i/vm/llvm/jit_context.cpp w/vm/llvm/jit_context.cpp
+index e555adb..594a63a 100644
+--- i/vm/llvm/jit_context.cpp
 w/vm/llvm/jit_context.cpp
+@@ -84,7 +84,9 @@ namespace rubinius {
+ #if RBX_LLVM_API_VER  300
+ llvm::TargetOptions opts;
+ opts.NoFramePointerElim = true;
++#if RBX_LLVM_API_VER  304
+ opts.NoFramePointerElimNonLeaf = true;
++#endif
+ opts.JITEmitDebugInfo = true;
+ 
+ factory.setTargetOptions(opts);
+diff --git i/vm/llvm/jit_memory_manager.hpp w/vm/llvm/jit_memory_manager.hpp
+index 8a58a09..7205f89 100644
+--- i/vm/llvm/jit_memory_manager.hpp
 w/vm/llvm/jit_memory_manager.hpp
+@@ -202,7 +202,7 @@ namespace jit {
+ 
+   public:
+ RubiniusJITMemoryManager();
+-~RubiniusJITMemoryManager();
++virtual ~RubiniusJITMemoryManager();
+ 
+ /// allocateNewSlab - Allocates a new MemoryBlock and remembers it as the
+ /// last slab it allocated, so that subsequent allocations follow it.
+@@ -356,8 +356,13 @@ namespace jit {
+ }
+ 
+ /// allocateCodeSection - Allocate memory for a code section.
++#if RBX_LLVM_API_VER  303
++virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
++ unsigned SectionID, StringRef SectionName) {
++#else
+ uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
+  unsigned SectionID) {
++#endif
+   utilities::thread::SpinLock::LockGuard guard(lock_);
+   // Grow the required block size to account for the block header
+   Size += sizeof(*CurBlock);
+@@ -397,11 +402,21 @@ namespace jit {
+ }
+ 
+ /// allocateDataSection - Allocate memory for a data section.
+-uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
+- unsigned SectionID) {
++/// TODO: currently IsReadOnly is ignored.
++#if RBX_LLVM_API_VER  303
++virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
++ unsigned SectionID, StringRef SectionName,
++ bool IsReadOnly) {
+   utilities::thread::SpinLock::LockGuard guard(lock_);
+   return (uint8_t*)DataAllocator.Allocate(Size, Alignment);
+ }
++#else
++uint8_t 

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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 22:22:32
  Author: eric
Revision: 103548

upgpkg: poedit 1.6.3-1

Upstream update, Rebuild against wxgtk, Fix license, Update depends/makedepends

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 21:12:39 UTC (rev 103547)
+++ PKGBUILD2014-01-07 21:22:32 UTC (rev 103548)
@@ -5,27 +5,31 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=poedit
-pkgver=1.6
+pkgver=1.6.3
 pkgrel=1
 pkgdesc=Cross-platform gettext catalogs (.po files) editor
 arch=('i686' 'x86_64')
 url=http://www.poedit.net/;
-license=('custom')
-depends=('wxgtk' 'gtkspell' 'db' 'hicolor-icon-theme' 'gettext')
-makedepends=('pkgconfig' 'boost')
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++')
+makedepends=('boost' 'libsm')
 install=poedit.install
 source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-md5sums=('41ce06c0d44962bf1898abff1599bf5e')
+md5sums=('f58be3cee666d3c586a85c26abba7816')
 
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+sed -i 's|Wx/filename.h|wx/filename.h|' src/tm/transmem.cpp
+}
+
 build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
-sh configure --prefix=/usr
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
 make
 }
 
 package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2014-01-07 Thread Jan Steffens
Date: Tuesday, January 7, 2014 @ 22:29:33
  Author: heftig
Revision: 103552

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

Added:
  rubinius/repos/community-staging-i686/
  rubinius/repos/community-staging-i686/PKGBUILD
(from rev 103551, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-staging-i686/gemrc
(from rev 103551, rubinius/trunk/gemrc)
  rubinius/repos/community-staging-i686/llvm34.patch
(from rev 103551, rubinius/trunk/llvm34.patch)
  rubinius/repos/community-staging-x86_64/
  rubinius/repos/community-staging-x86_64/PKGBUILD
(from rev 103551, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-staging-x86_64/gemrc
(from rev 103551, rubinius/trunk/gemrc)
  rubinius/repos/community-staging-x86_64/llvm34.patch
(from rev 103551, rubinius/trunk/llvm34.patch)

---+
 community-staging-i686/PKGBUILD   |   89 +++
 community-staging-i686/gemrc  |5 
 community-staging-i686/llvm34.patch   |  182 
 community-staging-x86_64/PKGBUILD |   89 +++
 community-staging-x86_64/gemrc|5 
 community-staging-x86_64/llvm34.patch |  182 
 6 files changed, 552 insertions(+)

Copied: rubinius/repos/community-staging-i686/PKGBUILD (from rev 103551, 
rubinius/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-07 21:29:33 UTC (rev 103552)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=2.2.3
+pkgrel=2
+pkgdesc=Ruby runtime written in Ruby, designed for concurrency
+arch=(i686 x86_64)
+url=http://rubini.us;
+license=(custom)
+depends=(llvm-libs libffi openssl libyaml)
+makedepends=(llvm rubinius-ruby)
+options=(!emptydirs)
+source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch llvm34.patch)
+sha256sums=('b3426aa6996420f1d9d8a7926a94160b84d8bdf725793c64462b27b74f2f2acf'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+'93f3918dc2a5679e281e724f9b3cb712ffa784c1e52e6fa7ce75f74ce6655a66'
+'a24850f34a8a308ce4a4e1da12d75a669095a38b6b5da5082eb4d3bd41770095')
+
+prepare() {
+  export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
+  cd $pkgbase-$pkgver
+
+  patch -Np1 -i ../dirs.patch
+  patch -Np1 -i ../llvm34.patch
+
+  mkdir -p $GEM_HOME
+  gem install --no-user-install -N vendor/cache/bundler-*.gem
+
+  $GEM_HOME/bin/bundle install --local
+}
+
+build() {
+  export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--includedir=/usr/include/rubinius \
+--appdir=/usr/lib/rubinius \
+--gemsdir=/usr/lib/rubinius/gems \
+--preserve-prefix \
+--llvm-shared \
+--without-rpath
+  rake build
+}
+
+check() {
+  export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
+  cd $pkgbase-$pkgver
+
+  rake vm:test || :
+}
+
+package_rubinius() {
+  optdepends=('ruby-docs: Ruby documentation')
+
+  export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
+  cd $pkgbase-$pkgver
+
+  DESTDIR=$pkgdir rake install
+
+  mkdir -p $pkgdir/usr/share/ri
+  ln -s 2.0.0 $pkgdir/usr/share/ri/2.1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/rubinius/LICENSE
+
+### Split rubinius-ruby
+  mkdir -p $srcdir/ruby/usr/bin
+  for _f in $pkgdir/usr/bin/*; do
+[[ $_f == */rbx ]]  continue
+mv $_f $srcdir/ruby/usr/bin
+  done
+}
+
+package_rubinius-ruby() {
+  pkgdesc=Ruby compat for Rubinius
+  depends=(rubinius)
+  provides=(ruby)
+  conflicts=(ruby)
+  backup=(etc/gemrc)
+
+  mv ruby/* $pkgdir
+  install -Dm644 gemrc $pkgdir/etc/gemrc
+  install -d $pkgdir/usr/share/licenses/rubinius-ruby
+  ln -s ../rubinius/LICENSE $pkgdir/usr/share/licenses/rubinius-ruby/LICENSE
+}

Copied: rubinius/repos/community-staging-i686/gemrc (from rev 103551, 
rubinius/trunk/gemrc)
===
--- community-staging-i686/gemrc(rev 0)
+++ community-staging-i686/gemrc2014-01-07 21:29:33 UTC (rev 103552)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at http://docs.rubygems.org/read/chapter/11
+
+# --user-install is used to install to $HOME/.gem/ by default since we want to 
separate
+#pacman installed gems and gem installed gems
+gem: --user-install

Copied: rubinius/repos/community-staging-i686/llvm34.patch (from rev 103551, 
rubinius/trunk/llvm34.patch)
===
--- community-staging-i686/llvm34.patch (rev 0)
+++ community-staging-i686/llvm34.patch 2014-01-07 21:29:33 UTC (rev 103552)
@@ -0,0 +1,182 @@
+diff --git i/vm/llvm/disassembler.cpp 

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

2014-01-07 Thread Thorsten Töpper
Date: Tuesday, January 7, 2014 @ 22:43:28
  Author: ttoepper
Revision: 103553

upgpkg: i3status 2.8-1

Modified:
  i3status/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 21:29:33 UTC (rev 103552)
+++ PKGBUILD2014-01-07 21:43:28 UTC (rev 103553)
@@ -2,11 +2,11 @@
 # Maintainer: Thorsten Töpper atsutane...@freethoughts.de
 
 pkgname=i3status
-pkgver=2.7
+pkgver=2.8
 pkgrel=1
-pkgdesc=Generates status bar to use with dzen2 or xmobar
+pkgdesc='Generates status bar to use with i3bar, dzen2 or xmobar'
 arch=('i686' 'x86_64')
-url=http://i3.zekjur.net/i3status/;
+url='http://i3.zekjur.net/i3status/'
 license=('BSD')
 groups=('i3')
 depends=('wireless_tools' 'confuse' 'alsa-lib' 'yajl')
@@ -14,8 +14,10 @@
 backup=('etc/i3status.conf')
 install=i3status.install
 options=('docs')
-source=(http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2;)
-md5sums=('f0a39e84aebb65496af3dcec9d8cfeb8')
+source=(http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2;
+http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2.asc;)
+md5sums=('68d944e9c1f48183356c9ea15b5b4e3b'
+ 'SKIP')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-01-07 Thread Thorsten Töpper
Date: Tuesday, January 7, 2014 @ 22:43:33
  Author: ttoepper
Revision: 103554

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

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

---+
 /PKGBUILD |   76 
 /i3status.install |   18 
 community-i686/PKGBUILD   |   36 -
 community-i686/i3status.install   |9 
 community-x86_64/PKGBUILD |   36 -
 community-x86_64/i3status.install |9 
 6 files changed, 94 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-07 21:43:28 UTC (rev 103553)
+++ community-i686/PKGBUILD 2014-01-07 21:43:33 UTC (rev 103554)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
-
-pkgname=i3status
-pkgver=2.7
-pkgrel=1
-pkgdesc=Generates status bar to use with dzen2 or xmobar
-arch=('i686' 'x86_64')
-url=http://i3.zekjur.net/i3status/;
-license=('BSD')
-groups=('i3')
-depends=('wireless_tools' 'confuse' 'alsa-lib' 'yajl')
-makedepends=('asciidoc')
-backup=('etc/i3status.conf')
-install=i3status.install
-options=('docs')
-source=(http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2;)
-md5sums=('f0a39e84aebb65496af3dcec9d8cfeb8')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  make DESTDIR=$pkgdir install
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  make clean
-}
-
-# vim:set ts=2 sw=2 et:
-

Copied: i3status/repos/community-i686/PKGBUILD (from rev 103553, 
i3status/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-07 21:43:33 UTC (rev 103554)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
+
+pkgname=i3status
+pkgver=2.8
+pkgrel=1
+pkgdesc='Generates status bar to use with i3bar, dzen2 or xmobar'
+arch=('i686' 'x86_64')
+url='http://i3.zekjur.net/i3status/'
+license=('BSD')
+groups=('i3')
+depends=('wireless_tools' 'confuse' 'alsa-lib' 'yajl')
+makedepends=('asciidoc')
+backup=('etc/i3status.conf')
+install=i3status.install
+options=('docs')
+source=(http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2;
+http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2.asc;)
+md5sums=('68d944e9c1f48183356c9ea15b5b4e3b'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  make DESTDIR=$pkgdir install
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  make clean
+}
+
+# vim:set ts=2 sw=2 et:
+

Deleted: community-i686/i3status.install
===
--- community-i686/i3status.install 2014-01-07 21:43:28 UTC (rev 103553)
+++ community-i686/i3status.install 2014-01-07 21:43:33 UTC (rev 103554)
@@ -1,9 +0,0 @@
-post_install() {
-  setcap 'CAP_NET_ADMIN=ep' /usr/bin/i3status
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: i3status/repos/community-i686/i3status.install (from rev 103553, 
i3status/trunk/i3status.install)
===
--- community-i686/i3status.install (rev 0)
+++ community-i686/i3status.install 2014-01-07 21:43:33 UTC (rev 103554)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap 'CAP_NET_ADMIN=ep' /usr/bin/i3status
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-01-07 21:43:28 UTC (rev 103553)
+++ community-x86_64/PKGBUILD   2014-01-07 21:43:33 UTC (rev 103554)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
-
-pkgname=i3status
-pkgver=2.7
-pkgrel=1
-pkgdesc=Generates status bar to use with dzen2 or xmobar
-arch=('i686' 'x86_64')
-url=http://i3.zekjur.net/i3status/;
-license=('BSD')
-groups=('i3')
-depends=('wireless_tools' 'confuse' 'alsa-lib' 'yajl')
-makedepends=('asciidoc')
-backup=('etc/i3status.conf')
-install=i3status.install

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

2014-01-07 Thread Andreas Radke
Date: Tuesday, January 7, 2014 @ 22:45:53
  Author: andyrtr
Revision: 203303

prepare next build

Modified:
  libreoffice/trunk/PKGBUILD.42

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

Modified: PKGBUILD.42
===
--- PKGBUILD.42 2014-01-07 20:51:31 UTC (rev 203302)
+++ PKGBUILD.42 2014-01-07 21:45:53 UTC (rev 203303)
@@ -18,9 +18,9 @@
'libreoffice-postgresql-connector'
'libreoffice-extension-wiki-publisher'
'libreoffice-extension-nlpsolver') # svn up -r 142692 (last one with 
all extensions built)
-_LOver=4.2.0.1
+_LOver=4.2.0.2
 pkgver=4.2.0
-pkgrel=0.1
+pkgrel=0.2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url=http://www.libreoffice.org/;
@@ -128,9 +128,9 @@
Firebird-2.5.2.26540-0.tar.bz2
libatomic_ops-7_2d.zip
libe-book-0.0.2.tar.bz2)
-md5sums=('383c63b8055967408e34ca7981b5dab8'
- '74cffe54cc756bb28a4496bf94fc5185'
- '5b0a27fbf474ff3f2ce819f13efafa1b'
+md5sums=('31712c63ac776a63e90c62846788cf8a'
+ '3df85067df7d119755fb928501f15f67'
+ 'be3017b003b3f4e54a91979a8a189a21'
  '15cb8c0803064faef0c4ddf5bc5ca279'
  '1f24ab1d39f4a51faf22244c94a6203f'
  '35c94d2df8893241173de1d16b6034c0'



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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 23:25:52
  Author: eric
Revision: 103555

upgpkg: erlang R16B03-5

Rebuild against wxgtk 3.0

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 21:43:33 UTC (rev 103554)
+++ PKGBUILD2014-01-07 22:25:52 UTC (rev 103555)
@@ -9,7 +9,7 @@
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
 pkgver=R16B03
-pkgrel=4
+pkgrel=5
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
 license=('custom')
@@ -35,7 +35,7 @@
 
 package_erlang() {
   pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=('ncurses' 'glu' 'wxgtk' 'wxgtk2.9' 'openssl')
+  depends=('ncurses' 'glu' 'wxgtk' 'openssl')
   optdepends=('erlang-unixodbc: database support'
   'java-environment: for Java support'
   'lksctp-tools: for SCTP support')



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

2014-01-07 Thread Eric Bélanger
Date: Tuesday, January 7, 2014 @ 23:26:45
  Author: eric
Revision: 103556

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

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

---+
 community-staging-i686/PKGBUILD   |   89 
 community-staging-i686/epmd.conf  |3 +
 community-staging-i686/epmd.service   |   11 +++
 community-staging-i686/epmd.socket|9 +++
 community-staging-x86_64/PKGBUILD |   89 
 community-staging-x86_64/epmd.conf|3 +
 community-staging-x86_64/epmd.service |   11 +++
 community-staging-x86_64/epmd.socket  |9 +++
 8 files changed, 224 insertions(+)

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

[arch-commits] Commit in lz4/trunk (01-fix-include.patch PKGBUILD)

2014-01-07 Thread Sébastien Luttringer
Date: Tuesday, January 7, 2014 @ 23:36:18
  Author: seblu
Revision: 103557

upgpkg: lz4 111-1

Added:
  lz4/trunk/01-fix-include.patch
Modified:
  lz4/trunk/PKGBUILD

--+
 01-fix-include.patch |   11 +++
 PKGBUILD |   14 +++---
 2 files changed, 22 insertions(+), 3 deletions(-)

Added: 01-fix-include.patch
===
--- 01-fix-include.patch(rev 0)
+++ 01-fix-include.patch2014-01-07 22:36:18 UTC (rev 103557)
@@ -0,0 +1,11 @@
+--- a/programs/Makefile2014-01-07 22:03:45.197517981 +0100
 b/programs/Makefile2014-01-07 22:03:43.126477362 +0100
+@@ -34,7 +34,7 @@
+ DESTDIR=
+ PREFIX=/usr
+ CC=gcc
+-CFLAGS+= -I. -std=c99 -Wall -W -Wundef -DLZ4_VERSION=\$(RELEASE)\
++CFLAGS+= -I.. -std=c99 -Wall -W -Wundef -DLZ4_VERSION=\$(RELEASE)\
+ 
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/share/man/man1

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 22:26:45 UTC (rev 103556)
+++ PKGBUILD2014-01-07 22:36:18 UTC (rev 103557)
@@ -5,7 +5,7 @@
 # He only push tested release code into svn and support using revision as 
version
 
 pkgname=lz4
-pkgver=110
+pkgver=111
 pkgrel=1
 pkgdesc='Very fast lossless compression algorithm'
 arch=('i686' 'x86_64')
@@ -13,12 +13,20 @@
 license=('GPL2')
 makedepends=('svn')
 depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
+source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;
+'01-fix-include.patch')
+md5sums=('SKIP'
+ '522618c085bb30924f540c3b2c18a7e4')
 
+prepare() {
+  patch -d $pkgname -p 1  01-fix-include.patch
+}
+
 build() {
   cd $pkgname
   make
+  cd programs
+  make
 }
 
 package() {



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

2014-01-07 Thread Sébastien Luttringer
Date: Tuesday, January 7, 2014 @ 23:36:39
  Author: seblu
Revision: 103558

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

Added:
  lz4/repos/community-i686/01-fix-include.patch
(from rev 103557, lz4/trunk/01-fix-include.patch)
  lz4/repos/community-i686/PKGBUILD
(from rev 103557, lz4/trunk/PKGBUILD)
  lz4/repos/community-x86_64/01-fix-include.patch
(from rev 103557, lz4/trunk/01-fix-include.patch)
  lz4/repos/community-x86_64/PKGBUILD
(from rev 103557, lz4/trunk/PKGBUILD)
Deleted:
  lz4/repos/community-i686/PKGBUILD
  lz4/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   74 
 community-i686/01-fix-include.patch   |   11 
 community-i686/PKGBUILD   |   29 
 community-x86_64/01-fix-include.patch |   11 
 community-x86_64/PKGBUILD |   29 
 5 files changed, 96 insertions(+), 58 deletions(-)

Copied: lz4/repos/community-i686/01-fix-include.patch (from rev 103557, 
lz4/trunk/01-fix-include.patch)
===
--- community-i686/01-fix-include.patch (rev 0)
+++ community-i686/01-fix-include.patch 2014-01-07 22:36:39 UTC (rev 103558)
@@ -0,0 +1,11 @@
+--- a/programs/Makefile2014-01-07 22:03:45.197517981 +0100
 b/programs/Makefile2014-01-07 22:03:43.126477362 +0100
+@@ -34,7 +34,7 @@
+ DESTDIR=
+ PREFIX=/usr
+ CC=gcc
+-CFLAGS+= -I. -std=c99 -Wall -W -Wundef -DLZ4_VERSION=\$(RELEASE)\
++CFLAGS+= -I.. -std=c99 -Wall -W -Wundef -DLZ4_VERSION=\$(RELEASE)\
+ 
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/share/man/man1

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-07 22:36:18 UTC (rev 103557)
+++ community-i686/PKGBUILD 2014-01-07 22:36:39 UTC (rev 103558)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=110
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 'x86_64')
-url='https://code.google.com/p/lz4/'
-license=('GPL2')
-makedepends=('svn')
-depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  make
-}
-
-package() {
-  cd $pkgname
-  make install DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/community-i686/PKGBUILD (from rev 103557, lz4/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-07 22:36:39 UTC (rev 103558)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=111
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://code.google.com/p/lz4/'
+license=('GPL2')
+makedepends=('svn')
+depends=('glibc')
+source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;
+'01-fix-include.patch')
+md5sums=('SKIP'
+ '522618c085bb30924f540c3b2c18a7e4')
+
+prepare() {
+  patch -d $pkgname -p 1  01-fix-include.patch
+}
+
+build() {
+  cd $pkgname
+  make
+  cd programs
+  make
+}
+
+package() {
+  cd $pkgname
+  make install DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:

Copied: lz4/repos/community-x86_64/01-fix-include.patch (from rev 103557, 
lz4/trunk/01-fix-include.patch)
===
--- community-x86_64/01-fix-include.patch   (rev 0)
+++ community-x86_64/01-fix-include.patch   2014-01-07 22:36:39 UTC (rev 
103558)
@@ -0,0 +1,11 @@
+--- a/programs/Makefile2014-01-07 22:03:45.197517981 +0100
 b/programs/Makefile2014-01-07 22:03:43.126477362 +0100
+@@ -34,7 +34,7 @@
+ DESTDIR=
+ PREFIX=/usr
+ CC=gcc
+-CFLAGS+= -I. -std=c99 -Wall -W -Wundef -DLZ4_VERSION=\$(RELEASE)\
++CFLAGS+= -I.. -std=c99 -Wall -W -Wundef -DLZ4_VERSION=\$(RELEASE)\
+ 
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/share/man/man1

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-01-07 22:36:18 UTC (rev 103557)
+++ community-x86_64/PKGBUILD   2014-01-07 22:36:39 UTC (rev 103558)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=110
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 

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

2014-01-07 Thread Eric Bélanger
Date: Wednesday, January 8, 2014 @ 00:23:24
  Author: eric
Revision: 203305

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

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

---+
 /PKGBUILD |   60 
 /nasm.install |   40 +
 extra-i686/PKGBUILD   |   30 --
 extra-i686/nasm.install   |   20 --
 extra-x86_64/PKGBUILD |   30 --
 extra-x86_64/nasm.install |   20 --
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-07 23:22:38 UTC (rev 203304)
+++ extra-i686/PKGBUILD 2014-01-07 23:23:24 UTC (rev 203305)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-
-pkgname=nasm
-pkgver=2.10.09
-pkgrel=1
-pkgdesc=An 80x86 assembler designed for portability and modularity
-arch=('i686' 'x86_64')
-url=http://www.nasm.us;
-license=('BSD')
-depends=('glibc')
-install=nasm.install
-source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('062dd7315b307870917e708a96b6862481cefc54')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make -C doc info
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make INSTALLROOT=${pkgdir} install install_rdf
-  install -dm755 ${pkgdir}/usr/share/info
-  install -m644 doc/info/* ${pkgdir}/usr/share/info/
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/nasm/LICENSE
-}

Copied: nasm/repos/extra-i686/PKGBUILD (from rev 203304, nasm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-07 23:23:24 UTC (rev 203305)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=nasm
+pkgver=2.11
+pkgrel=1
+pkgdesc=An 80x86 assembler designed for portability and modularity
+arch=('i686' 'x86_64')
+url=http://www.nasm.us;
+license=('BSD')
+depends=('glibc')
+install=nasm.install
+source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('7cc2568ce804fa17d972d159f161adc3f6d25750')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+  make -C doc info
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make INSTALLROOT=${pkgdir} install install_rdf
+  install -dm755 ${pkgdir}/usr/share/info
+  install -m644 doc/info/* ${pkgdir}/usr/share/info/
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/nasm/LICENSE
+}

Deleted: extra-i686/nasm.install
===
--- extra-i686/nasm.install 2014-01-07 23:22:38 UTC (rev 203304)
+++ extra-i686/nasm.install 2014-01-07 23:23:24 UTC (rev 203305)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(nasm.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}

Copied: nasm/repos/extra-i686/nasm.install (from rev 203304, 
nasm/trunk/nasm.install)
===
--- extra-i686/nasm.install (rev 0)
+++ extra-i686/nasm.install 2014-01-07 23:23:24 UTC (rev 203305)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(nasm.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-01-07 23:22:38 UTC (rev 203304)
+++ extra-x86_64/PKGBUILD   2014-01-07 23:23:24 UTC (rev 203305)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 

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

2014-01-07 Thread Eric Bélanger
Date: Wednesday, January 8, 2014 @ 00:22:38
  Author: eric
Revision: 203304

upgpkg: nasm 2.11-1

Upstream update

Modified:
  nasm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 21:45:53 UTC (rev 203303)
+++ PKGBUILD2014-01-07 23:22:38 UTC (rev 203304)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=nasm
-pkgver=2.10.09
+pkgver=2.11
 pkgrel=1
 pkgdesc=An 80x86 assembler designed for portability and modularity
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('glibc')
 install=nasm.install
 
source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('062dd7315b307870917e708a96b6862481cefc54')
+sha1sums=('7cc2568ce804fa17d972d159f161adc3f6d25750')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2014-01-07 Thread Eric Bélanger
Date: Wednesday, January 8, 2014 @ 00:50:31
  Author: eric
Revision: 203306

Clean up PKGBUILD

Modified:
  perl-xml-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 23:23:24 UTC (rev 203305)
+++ PKGBUILD2014-01-07 23:50:31 UTC (rev 203306)
@@ -1,42 +1,32 @@
 # $Id$
-# Maintainer:
-# Contributor: firmicus franc...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-# Contributor: herb hr...@archlinux.org
+# Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=perl-xml-parser
-_realname=XML-Parser
 pkgver=2.41
 pkgrel=4
 pkgdesc=Expat-based XML parser module for perl
 arch=('i686' 'x86_64')
 license=('GPL' 'PerlArtistic')
-url=http://search.cpan.org/dist/${_realname}/;
+url=http://search.cpan.org/dist/XML-Parser/;
 depends=('perl' 'expat')
 replaces=('perlxml')
 provides=(perlxml=${pkgver})
 options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/${_realname}-${pkgver}.tar.gz;)
+source=(http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-Parser-${pkgver}.tar.gz;)
 md5sums=('c320d2ffa459e6cdc6f9f59c1185855e')
 
 build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-
-  # install module in vendor directories.
+  cd XML-Parser-${pkgver}
   perl Makefile.PL INSTALLDIRS=vendor
   make
 }
 
 check() {
-  cd ${srcdir}/${_realname}-${pkgver}
+  cd XML-Parser-${pkgver}
   make test
 }
 
 package() {
-  cd ${srcdir}/${_realname}-${pkgver}
+  cd XML-Parser-${pkgver}
   make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist.
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
 }



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

2014-01-07 Thread Eric Bélanger
Date: Wednesday, January 8, 2014 @ 00:51:01
  Author: eric
Revision: 203307

Clean up PKGBUILD

Modified:
  perl-xml-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 23:50:31 UTC (rev 203306)
+++ PKGBUILD2014-01-07 23:51:01 UTC (rev 203307)
@@ -28,5 +28,5 @@
 
 package() {
   cd XML-Parser-${pkgver}
-  make install DESTDIR=${pkgdir}
+  make DESTDIR=${pkgdir} install
 }



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

2014-01-07 Thread Eric Bélanger
Date: Wednesday, January 8, 2014 @ 01:30:42
  Author: eric
Revision: 203308

upgpkg: gdbm 1.11-1

Upstream update, Update license, Clean up PKGBUILD

Modified:
  gdbm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-07 23:51:01 UTC (rev 203307)
+++ PKGBUILD2014-01-08 00:30:42 UTC (rev 203308)
@@ -1,21 +1,23 @@
 # $Id$
+# Maintainer: 
 # Contributor: Stéphane Gaudreault steph...@archlinux.org
 # Contributor: Allan McRae al...@archlinux.org
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=gdbm
-pkgver=1.10
-pkgrel=3
+pkgver=1.11
+pkgrel=1
 pkgdesc=GNU database library
 url=http://www.gnu.org/software/gdbm/gdbm.html;
-license=('GPL')
+license=('GPL3')
 arch=('i686' 'x86_64')
 depends=('glibc' 'sh')
-source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz
+source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz{,.sig}
 gdbm-1.10-zeroheaders.patch)
 options=('!makeflags')
 install=gdbm.install
-md5sums=('88770493c2559dc80b561293e39d3570'
+md5sums=('72c832680cf0999caedbe5b265c8c1bd'
+ 'SKIP'
  'ac255b10452005237836cd2d3a470733')
 
 prepare() {
@@ -32,13 +34,8 @@
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --infodir=/usr/share/info \
-  --enable-libgdbm-compat
-
-  make prefix=/usr
+  ./configure --prefix=/usr --enable-libgdbm-compat
+  make
 }
 
 check() {
@@ -48,12 +45,8 @@
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  make prefix=${pkgdir}/usr \
-   manprefix=${pkgdir}/usr/share/man \
-   man3dir=${pkgdir}/usr/share/man/man3 \
-   infodir=${pkgdir}/usr/share/info \
-   install
-  
+  make DESTDIR=${pkgdir} install
+
   # create symlinks for compatibility
   install -dm755 ${pkgdir}/usr/include/gdbm
   ln -sf ../gdbm.h ${pkgdir}/usr/include/gdbm/gdbm.h



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

2014-01-07 Thread Eric Bélanger
Date: Wednesday, January 8, 2014 @ 01:31:37
  Author: eric
Revision: 203309

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

Added:
  gdbm/repos/testing-i686/
  gdbm/repos/testing-i686/PKGBUILD
(from rev 203308, gdbm/trunk/PKGBUILD)
  gdbm/repos/testing-i686/gdbm-1.10-zeroheaders.patch
(from rev 203308, gdbm/trunk/gdbm-1.10-zeroheaders.patch)
  gdbm/repos/testing-i686/gdbm.install
(from rev 203308, gdbm/trunk/gdbm.install)
  gdbm/repos/testing-x86_64/
  gdbm/repos/testing-x86_64/PKGBUILD
(from rev 203308, gdbm/trunk/PKGBUILD)
  gdbm/repos/testing-x86_64/gdbm-1.10-zeroheaders.patch
(from rev 203308, gdbm/trunk/gdbm-1.10-zeroheaders.patch)
  gdbm/repos/testing-x86_64/gdbm.install
(from rev 203308, gdbm/trunk/gdbm.install)

+
 testing-i686/PKGBUILD  |   55 +++
 testing-i686/gdbm-1.10-zeroheaders.patch   |   33 
 testing-i686/gdbm.install  |   21 ++
 testing-x86_64/PKGBUILD|   55 +++
 testing-x86_64/gdbm-1.10-zeroheaders.patch |   33 
 testing-x86_64/gdbm.install|   21 ++
 6 files changed, 218 insertions(+)

Copied: gdbm/repos/testing-i686/PKGBUILD (from rev 203308, gdbm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-01-08 00:31:37 UTC (rev 203309)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=gdbm
+pkgver=1.11
+pkgrel=1
+pkgdesc=GNU database library
+url=http://www.gnu.org/software/gdbm/gdbm.html;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc' 'sh')
+source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz{,.sig}
+gdbm-1.10-zeroheaders.patch)
+options=('!makeflags')
+install=gdbm.install
+md5sums=('72c832680cf0999caedbe5b265c8c1bd'
+ 'SKIP'
+ 'ac255b10452005237836cd2d3a470733')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Prevent gdbm from storing uninitialized memory content
+  # to database files. This patch improves security, as the
+  # uninitialized memory might contain sensitive informations
+  # from other applications.
+  # https://bugzilla.redhat.com/show_bug.cgi?id=4457
+  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=208927
+  patch -Np1 -i ../gdbm-1.10-zeroheaders.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-libgdbm-compat
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # create symlinks for compatibility
+  install -dm755 ${pkgdir}/usr/include/gdbm
+  ln -sf ../gdbm.h ${pkgdir}/usr/include/gdbm/gdbm.h
+  ln -sf ../ndbm.h ${pkgdir}/usr/include/gdbm/ndbm.h
+  ln -sf ../dbm.h  ${pkgdir}/usr/include/gdbm/dbm.h
+}

Copied: gdbm/repos/testing-i686/gdbm-1.10-zeroheaders.patch (from rev 203308, 
gdbm/trunk/gdbm-1.10-zeroheaders.patch)
===
--- testing-i686/gdbm-1.10-zeroheaders.patch(rev 0)
+++ testing-i686/gdbm-1.10-zeroheaders.patch2014-01-08 00:31:37 UTC (rev 
203309)
@@ -0,0 +1,33 @@
+diff -up gdbm-1.10/src/falloc.c.zeroheaders gdbm-1.10/src/falloc.c
+--- gdbm-1.10/src/falloc.c.zeroheaders 2011-11-11 11:59:11.0 +0100
 gdbm-1.10/src/falloc.c 2011-11-14 17:34:32.487604027 +0100
+@@ -255,7 +255,7 @@ push_avail_block (GDBM_FILE dbf)
+ 
+ 
+   /* Split the header block. */
+-  temp = (avail_block *) malloc (av_size);
++  temp = (avail_block *) calloc (1, av_size);
+   if (temp == NULL) _gdbm_fatal (dbf, _(malloc error));
+   /* Set the size to be correct AFTER the pop_avail_block. */
+   temp-size = dbf-header-avail.size;
+diff -up gdbm-1.10/src/gdbmopen.c.zeroheaders gdbm-1.10/src/gdbmopen.c
+--- gdbm-1.10/src/gdbmopen.c.zeroheaders   2011-11-11 19:39:42.0 
+0100
 gdbm-1.10/src/gdbmopen.c   2011-11-14 17:33:24.867608650 +0100
+@@ -264,7 +264,7 @@ gdbm_open (const char *file, int block_s
+   (dbf-header-block_size - sizeof (hash_bucket))
+   / sizeof (bucket_element) + 1;
+   dbf-header-bucket_size  = dbf-header-block_size;
+-  dbf-bucket = (hash_bucket *) malloc (dbf-header-bucket_size);
++  dbf-bucket = (hash_bucket *) calloc (1, dbf-header-bucket_size);
+   if (dbf-bucket == NULL)
+   {
+ gdbm_close (dbf);
+@@ -456,7 +456,7 @@ _gdbm_init_cache(GDBM_FILE dbf, size_t s
+   for(index = 0; index  size; index++)
+ {
+   (dbf-bucket_cache[index]).ca_bucket
+-= (hash_bucket *) malloc (dbf-header-bucket_size);
++= (hash_bucket *) calloc (1, 

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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 03:31:25
  Author: fyan
Revision: 203322

upgpkg: python-setuptools 2.1-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 00:50:57 UTC (rev 203321)
+++ PKGBUILD2014-01-08 02:31:25 UTC (rev 203322)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=2.0.2
+pkgver=2.1
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -12,7 +12,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('101b0829eca064fe47708039d66fc135')
+md5sums=('2044725530450d0517393882dc4b7508')
 
 #check() {
 #   # Check python3 module



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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 03:32:11
  Author: fyan
Revision: 203323

archrelease: copy trunk to community-testing-any

Added:
  python-setuptools/repos/community-testing-any/
  python-setuptools/repos/community-testing-any/PKGBUILD
(from rev 203322, python-setuptools/trunk/PKGBUILD)

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

Copied: python-setuptools/repos/community-testing-any/PKGBUILD (from rev 
203322, python-setuptools/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2014-01-08 02:32:11 UTC (rev 203323)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=2.1
+pkgrel=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
+md5sums=('2044725530450d0517393882dc4b7508')
+
+#check() {
+#   # Check python3 module
+#   cd ${srcdir}/setuptools-${pkgver}
+#   python3 setup.py test
+#
+#   # Check python2 module
+#   cd ${srcdir}/setuptools-${pkgver}-python2
+#   python2 setup.py test
+#}
+ 
+prepare() {
+   cd ${srcdir}
+ 
+   pushd setuptools-${pkgver}
+   popd
+ 
+   cp -a setuptools-${pkgver}{,-python2}
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+   sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+ 
+   cd ../setuptools-${pkgver}-python2
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+   sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+   # Build python 3 module
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../setuptools-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-setuptools() {
+   depends=('python=3.3')
+   provides=('python-distribute')
+   replaces=('python-distribute')
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+   depends=('python2=2.7')
+   provides=('python2-distribute' 'setuptools')
+   replaces=('python2-distribute' 'setuptools')
+ 
+   cd ${srcdir}/setuptools-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+   rm ${pkgdir}/usr/bin/easy_install
+}



[arch-commits] Commit in python-setuptools/repos (community-testing-any)

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 03:50:14
  Author: fyan
Revision: 203324

oops, wrong repo to release

Deleted:
  python-setuptools/repos/community-testing-any/



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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 03:51:24
  Author: fyan
Revision: 203325

archrelease: copy trunk to testing-any

Added:
  python-setuptools/repos/testing-any/
  python-setuptools/repos/testing-any/PKGBUILD
(from rev 203324, python-setuptools/trunk/PKGBUILD)

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 203324, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-01-08 02:51:24 UTC (rev 203325)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=2.1
+pkgrel=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
+md5sums=('2044725530450d0517393882dc4b7508')
+
+#check() {
+#   # Check python3 module
+#   cd ${srcdir}/setuptools-${pkgver}
+#   python3 setup.py test
+#
+#   # Check python2 module
+#   cd ${srcdir}/setuptools-${pkgver}-python2
+#   python2 setup.py test
+#}
+ 
+prepare() {
+   cd ${srcdir}
+ 
+   pushd setuptools-${pkgver}
+   popd
+ 
+   cp -a setuptools-${pkgver}{,-python2}
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+   sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+ 
+   cd ../setuptools-${pkgver}-python2
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+   sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+   # Build python 3 module
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../setuptools-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-setuptools() {
+   depends=('python=3.3')
+   provides=('python-distribute')
+   replaces=('python-distribute')
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+   depends=('python2=2.7')
+   provides=('python2-distribute' 'setuptools')
+   replaces=('python2-distribute' 'setuptools')
+ 
+   cd ${srcdir}/setuptools-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+   rm ${pkgdir}/usr/bin/easy_install
+}



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

2014-01-07 Thread Sven-Hendrik Haase
Date: Wednesday, January 8, 2014 @ 03:58:50
  Author: svenstaro
Revision: 103583

upgpkg: openimageio 1.3.10-1

upstream release 1.3.10

Modified:
  openimageio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 00:52:32 UTC (rev 103582)
+++ PKGBUILD2014-01-08 02:58:50 UTC (rev 103583)
@@ -3,7 +3,7 @@
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 
 pkgname=openimageio
-pkgver=1.2.3
+pkgver=1.3.10
 pkgrel=1
 pkgdesc=A library for reading and writing images, including classes, 
utilities, and applications
 arch=(i686 x86_64)
@@ -13,14 +13,12 @@
 makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa')
 optdepends=('qt4: iv image viewer'
 'python2: bindings support')
-source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver)
-md5sums=('20066ae0e9026717242f64f107f7ee8e')
+source=(https://github.com/OpenImageIO/oiio/archive/Release-${pkgver}.tar.gz)
+md5sums=('e1cd34e1926b7c15626f8618e9e4fc70')
 
 build() {
-  cd $srcdir/$_pkgname*
+  cd oiio-Release-$pkgver
 
-  cd src
-
   [[ -d build ]]  rm -r build
   mkdir build  cd build
 
@@ -34,11 +32,11 @@
 }
 
 package() {
-  cd $srcdir/$_pkgname*/src/build
+  cd oiio-Release-$pkgver/build
 
   make DESTDIR=$pkgdir install
 
   # license
-  cd ../..
+  cd ..
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }



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

2014-01-07 Thread Sven-Hendrik Haase
Date: Wednesday, January 8, 2014 @ 03:58:58
  Author: svenstaro
Revision: 103584

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

Added:
  openimageio/repos/community-staging-i686/
  openimageio/repos/community-staging-i686/PKGBUILD
(from rev 103583, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-i686/fix32bit-fail.patch
(from rev 103583, openimageio/trunk/fix32bit-fail.patch)
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 103583, openimageio/trunk/PKGBUILD)
  openimageio/repos/community-staging-x86_64/fix32bit-fail.patch
(from rev 103583, openimageio/trunk/fix32bit-fail.patch)

--+
 community-staging-i686/PKGBUILD  |   42 +
 community-staging-i686/fix32bit-fail.patch   |   13 +++
 community-staging-x86_64/PKGBUILD|   42 +
 community-staging-x86_64/fix32bit-fail.patch |   13 +++
 4 files changed, 110 insertions(+)

Copied: openimageio/repos/community-staging-i686/PKGBUILD (from rev 103583, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-08 02:58:58 UTC (rev 103584)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=openimageio
+pkgver=1.3.10
+pkgrel=1
+pkgdesc=A library for reading and writing images, including classes, 
utilities, and applications
+arch=(i686 x86_64)
+url=http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(https://github.com/OpenImageIO/oiio/archive/Release-${pkgver}.tar.gz)
+md5sums=('e1cd34e1926b7c15626f8618e9e4fc70')
+
+build() {
+  cd oiio-Release-$pkgver
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DUSE_EXTERNAL_TBB=ON \
+  -DOIIO_BUILD_TESTS=OFF \
+  ..
+  make
+}
+
+package() {
+  cd oiio-Release-$pkgver/build
+
+  make DESTDIR=$pkgdir install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openimageio/repos/community-staging-i686/fix32bit-fail.patch (from rev 
103583, openimageio/trunk/fix32bit-fail.patch)
===
--- community-staging-i686/fix32bit-fail.patch  (rev 0)
+++ community-staging-i686/fix32bit-fail.patch  2014-01-08 02:58:58 UTC (rev 
103584)
@@ -0,0 +1,13 @@
+--- orig/src/libutil/SHA1.cpp  2012-11-17 01:02:42.0 +0200
 fixed/src/libutil/SHA1.cpp 2012-12-14 14:37:37.552042793 +0200
+@@ -8,9 +8,9 @@
+ 
+ // If compiling with MFC, you might want to add #include StdAfx.h
+ 
++#include SHA1.h
+ #include hash.h
+ #include dassert.h
+-#include SHA1.h
+ 
+ #ifdef SHA1_UTILITY_FUNCTIONS
+ #define SHA1_MAX_FILE_BUFFER 8000

Copied: openimageio/repos/community-staging-x86_64/PKGBUILD (from rev 103583, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-01-08 02:58:58 UTC (rev 103584)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=openimageio
+pkgver=1.3.10
+pkgrel=1
+pkgdesc=A library for reading and writing images, including classes, 
utilities, and applications
+arch=(i686 x86_64)
+url=http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 
'intel-tbb')
+makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa')
+optdepends=('qt4: iv image viewer'
+'python2: bindings support')
+source=(https://github.com/OpenImageIO/oiio/archive/Release-${pkgver}.tar.gz)
+md5sums=('e1cd34e1926b7c15626f8618e9e4fc70')
+
+build() {
+  cd oiio-Release-$pkgver
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
+  -DUSE_EXTERNAL_TBB=ON \
+  -DOIIO_BUILD_TESTS=OFF \
+  ..
+  make
+}
+
+package() {
+  cd oiio-Release-$pkgver/build
+
+  make DESTDIR=$pkgdir install
+
+  # license
+  cd ..
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openimageio/repos/community-staging-x86_64/fix32bit-fail.patch (from 
rev 103583, openimageio/trunk/fix32bit-fail.patch)

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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 04:05:13
  Author: fyan
Revision: 103585

upgpkg: python2-greenlet 0.4.2-1

Modified:
  python2-greenlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 02:58:58 UTC (rev 103584)
+++ PKGBUILD2014-01-08 03:05:13 UTC (rev 103585)
@@ -4,9 +4,9 @@
 # Contributor: Ralf Schmitt r...@systemexit.de
 
 pkgname=python2-greenlet
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
-pkgdesc=python coroutine library
+pkgdesc=Lightweight in-process concurrent programming
 license=(MIT)
 url=http://pypi.python.org/pypi/greenlet;
 depends=('python2')
@@ -14,14 +14,14 @@
 arch=('i686' 'x86_64')
 
 build() {
-   cd $srcdir/greenlet-$pkgver
+   cd greenlet-$pkgver
python2 setup.py build
 }
 
 package() {
-   cd $srcdir/greenlet-$pkgver
+   cd greenlet-$pkgver
python2 setup.py install --root=$pkgdir
install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
 }
 
-sha512sums=('bb33db07b8b86ba8ccec920748cfc207d27eed0b76218cf06c3b1706a1e9350be62a99a92e05c8e683a7c3ab1e232dbb46259380c7e5f2c6b140a3a96a36f8bf')
+sha512sums=('9596b740921e4a80bcb43adb725a7a4ea428dadc10ba55f8840837ba685b010c273a4a2bd62c5ba4bfdf27ce87c914a83714d762bacafb8e0a3cd7e2a9675992')



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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 04:06:43
  Author: fyan
Revision: 103586

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

Added:
  python2-greenlet/repos/community-i686/PKGBUILD
(from rev 103585, python2-greenlet/trunk/PKGBUILD)
  python2-greenlet/repos/community-x86_64/PKGBUILD
(from rev 103585, python2-greenlet/trunk/PKGBUILD)
Deleted:
  python2-greenlet/repos/community-i686/PKGBUILD
  python2-greenlet/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-08 03:05:13 UTC (rev 103585)
+++ community-i686/PKGBUILD 2014-01-08 03:06:43 UTC (rev 103586)
@@ -1,27 +0,0 @@
-# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Ralf Schmitt r...@systemexit.de
-
-pkgname=python2-greenlet
-pkgver=0.4.1
-pkgrel=1
-pkgdesc=python coroutine library
-license=(MIT)
-url=http://pypi.python.org/pypi/greenlet;
-depends=('python2')
-source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-$pkgver.zip)
-arch=('i686' 'x86_64')
-
-build() {
-   cd $srcdir/greenlet-$pkgver
-   python2 setup.py build
-}
-
-package() {
-   cd $srcdir/greenlet-$pkgver
-   python2 setup.py install --root=$pkgdir
-   install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
-}
-
-sha512sums=('bb33db07b8b86ba8ccec920748cfc207d27eed0b76218cf06c3b1706a1e9350be62a99a92e05c8e683a7c3ab1e232dbb46259380c7e5f2c6b140a3a96a36f8bf')

Copied: python2-greenlet/repos/community-i686/PKGBUILD (from rev 103585, 
python2-greenlet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-08 03:06:43 UTC (rev 103586)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Ralf Schmitt r...@systemexit.de
+
+pkgname=python2-greenlet
+pkgver=0.4.2
+pkgrel=1
+pkgdesc=Lightweight in-process concurrent programming
+license=(MIT)
+url=http://pypi.python.org/pypi/greenlet;
+depends=('python2')
+source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-$pkgver.zip)
+arch=('i686' 'x86_64')
+
+build() {
+   cd greenlet-$pkgver
+   python2 setup.py build
+}
+
+package() {
+   cd greenlet-$pkgver
+   python2 setup.py install --root=$pkgdir
+   install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
+}
+
+sha512sums=('9596b740921e4a80bcb43adb725a7a4ea428dadc10ba55f8840837ba685b010c273a4a2bd62c5ba4bfdf27ce87c914a83714d762bacafb8e0a3cd7e2a9675992')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-01-08 03:05:13 UTC (rev 103585)
+++ community-x86_64/PKGBUILD   2014-01-08 03:06:43 UTC (rev 103586)
@@ -1,27 +0,0 @@
-# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Ralf Schmitt r...@systemexit.de
-
-pkgname=python2-greenlet
-pkgver=0.4.1
-pkgrel=1
-pkgdesc=python coroutine library
-license=(MIT)
-url=http://pypi.python.org/pypi/greenlet;
-depends=('python2')
-source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-$pkgver.zip)
-arch=('i686' 'x86_64')
-
-build() {
-   cd $srcdir/greenlet-$pkgver
-   python2 setup.py build
-}
-
-package() {
-   cd $srcdir/greenlet-$pkgver
-   python2 setup.py install --root=$pkgdir
-   install -Dm0644 LICENSE.PSF 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF
-}
-
-sha512sums=('bb33db07b8b86ba8ccec920748cfc207d27eed0b76218cf06c3b1706a1e9350be62a99a92e05c8e683a7c3ab1e232dbb46259380c7e5f2c6b140a3a96a36f8bf')

Copied: python2-greenlet/repos/community-x86_64/PKGBUILD (from rev 103585, 
python2-greenlet/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-01-08 03:06:43 UTC (rev 103586)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Ralf Schmitt r...@systemexit.de
+
+pkgname=python2-greenlet
+pkgver=0.4.2
+pkgrel=1
+pkgdesc=Lightweight in-process concurrent programming
+license=(MIT)

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

2014-01-07 Thread Dan McGee
Date: Wednesday, January 8, 2014 @ 04:10:04
  Author: dan
Revision: 203326

upgpkg: pth 2.0.7-5

This hasn't been rebuilt in 2+ years, so rebuild and push it.

Modified:
  pth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 02:51:24 UTC (rev 203325)
+++ PKGBUILD2014-01-08 03:10:04 UTC (rev 203326)
@@ -1,9 +1,8 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
 
 pkgname=pth
 pkgver=2.0.7
-pkgrel=4
+pkgrel=5
 pkgdesc=The GNU Portable Threads.
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/pth/;



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

2014-01-07 Thread Dan McGee
Date: Wednesday, January 8, 2014 @ 04:10:31
  Author: dan
Revision: 203327

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

Added:
  pth/repos/testing-i686/
  pth/repos/testing-i686/PKGBUILD
(from rev 203326, pth/trunk/PKGBUILD)
  pth/repos/testing-x86_64/
  pth/repos/testing-x86_64/PKGBUILD
(from rev 203326, pth/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   42 ++
 testing-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: pth/repos/testing-i686/PKGBUILD (from rev 203326, pth/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-01-08 03:10:31 UTC (rev 203327)
@@ -0,0 +1,42 @@
+# $Id$
+
+pkgname=pth
+pkgver=2.0.7
+pkgrel=5
+pkgdesc=The GNU Portable Threads.
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/pth/;
+license=('LGPL')
+depends=('glibc' 'awk')
+options=('!makeflags')
+source=(ftp://ftp.gnu.org/gnu/pth/$pkgname-$pkgver.tar.gz{,.sig})
+sha1sums=('9a71915c89ff2414de69fe104ae1016d513afeee'
+  '8cb16dffbf15ba92bda8d08918eaf5995642fc38')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --mandir=/usr/share/man \
+  --disable-static \
+  --enable-shared \
+  --with-pic
+
+  sed -i s|awk=''|awk=/bin/awk|g shtool # Cannot find a reasonable Awk
+
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: pth/repos/testing-x86_64/PKGBUILD (from rev 203326, pth/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-01-08 03:10:31 UTC (rev 203327)
@@ -0,0 +1,42 @@
+# $Id$
+
+pkgname=pth
+pkgver=2.0.7
+pkgrel=5
+pkgdesc=The GNU Portable Threads.
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/pth/;
+license=('LGPL')
+depends=('glibc' 'awk')
+options=('!makeflags')
+source=(ftp://ftp.gnu.org/gnu/pth/$pkgname-$pkgver.tar.gz{,.sig})
+sha1sums=('9a71915c89ff2414de69fe104ae1016d513afeee'
+  '8cb16dffbf15ba92bda8d08918eaf5995642fc38')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --mandir=/usr/share/man \
+  --disable-static \
+  --enable-shared \
+  --with-pic
+
+  sed -i s|awk=''|awk=/bin/awk|g shtool # Cannot find a reasonable Awk
+
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}



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

2014-01-07 Thread Sven-Hendrik Haase
Date: Wednesday, January 8, 2014 @ 04:12:05
  Author: svenstaro
Revision: 103588

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

Added:
  openshadinglanguage/repos/community-staging-i686/
  openshadinglanguage/repos/community-staging-i686/PKGBUILD
(from rev 103587, openshadinglanguage/trunk/PKGBUILD)
  openshadinglanguage/repos/community-staging-i686/llvm32.patch
(from rev 103587, openshadinglanguage/trunk/llvm32.patch)
  openshadinglanguage/repos/community-staging-x86_64/
  openshadinglanguage/repos/community-staging-x86_64/PKGBUILD
(from rev 103587, openshadinglanguage/trunk/PKGBUILD)
  openshadinglanguage/repos/community-staging-x86_64/llvm32.patch
(from rev 103587, openshadinglanguage/trunk/llvm32.patch)

---+
 community-staging-i686/PKGBUILD   |   48 +
 community-staging-i686/llvm32.patch   |   71 
 community-staging-x86_64/PKGBUILD |   48 +
 community-staging-x86_64/llvm32.patch |   71 
 4 files changed, 238 insertions(+)

Copied: openshadinglanguage/repos/community-staging-i686/PKGBUILD (from rev 
103587, openshadinglanguage/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-08 03:12:05 UTC (rev 103588)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+pkgname=openshadinglanguage
+pkgver=1.5.4dev
+pkgrel=1
+pkgdesc=Advanced shading language for production GI renderers
+arch=(i686 x86_64)
+url=https://github.com/imageworks/OpenShadingLanguage;
+license=('custom')
+depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng' 
'libtiff' 'llvm')
+makedepends=('boost' 'cmake' 'clang')
+source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz
+https://github.com/imageworks/OpenShadingLanguage/pull/320.patch)
+md5sums=('4dda1fb2919d3440344d36ecbdf13d47'
+ '590137809ea344b41b1ad1e0fc81738c')
+
+build() {
+  cd OpenShadingLanguage-Release-$pkgver
+
+  # LLVM 3.4 build fix
+  patch -Np1  $srcdir/320.patch
+
+  cd src
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_STATIC=0 \
+../..
+  make
+}
+
+package() {
+  cd OpenShadingLanguage-Release-$pkgver/src/build
+
+  make DESTDIR=$pkgdir/ install
+
+  mkdir -p $pkgdir/usr/share/OSL/
+  mkdir -p $pkgdir/usr/share/licenses/$pkgname
+  mv $pkgdir/usr/LICENSE $pkgdir/usr/share/licenses/$pkgname # TODO: Tell 
upstream about this shit
+  mv $pkgdir/usr/{CHANGES,README.md,INSTALL} $pkgdir/usr/share/OSL/
+  mv $pkgdir/usr/doc $pkgdir/usr/share/OSL/doc
+  mv $pkgdir/usr/shaders $pkgdir/usr/share/OSL/shaders
+}
+
+# vim:set ts=2 sw=2 et:

Copied: openshadinglanguage/repos/community-staging-i686/llvm32.patch (from rev 
103587, openshadinglanguage/trunk/llvm32.patch)
===
--- community-staging-i686/llvm32.patch (rev 0)
+++ community-staging-i686/llvm32.patch 2014-01-08 03:12:05 UTC (rev 103588)
@@ -0,0 +1,71 @@
+commit c391ceb1936459b70147d6f8ac389ded26a7e028
+Author: Sven-Hendrik Haase s...@lutzhaase.com
+Date:   Fri Dec 28 09:00:33 2012 +0100
+
+Fix for LLVM 3.2
+
+diff --git a/src/liboslexec/llvm_headers.h b/src/liboslexec/llvm_headers.h
+index 41a7a11..5ff4384 100644
+--- a/src/liboslexec/llvm_headers.h
 b/src/liboslexec/llvm_headers.h
+@@ -45,10 +45,18 @@ namespace llvm = LLVM_NAMESPACE;
+ #include llvm/LLVMContext.h
+ #include llvm/Module.h
+ #include llvm/PassManager.h
++#if OSL_LLVM_VERSION = 32
++#include llvm/IRBuilder.h
++#else
+ #include llvm/Support/IRBuilder.h
++#endif
+ #include llvm/Support/ManagedStatic.h
+ #include llvm/Support/MemoryBuffer.h
+ #include llvm/Support/raw_ostream.h
++#if OSL_LLVM_VERSION = 32
++#include llvm/DataLayout.h
++#else
+ #include llvm/Target/TargetData.h
++#endif
+ 
+ #endif /* OSL_LLVM_HEADERS_H */
+diff --git a/src/liboslexec/llvm_instance.cpp 
b/src/liboslexec/llvm_instance.cpp
+index 8709c8b..3e42557 100644
+--- a/src/liboslexec/llvm_instance.cpp
 b/src/liboslexec/llvm_instance.cpp
+@@ -1273,13 +1273,21 @@ RuntimeOptimizer::llvm_setup_optimization_passes ()
+ //
+ m_llvm_func_passes = new llvm::FunctionPassManager(llvm_module());
+ llvm::FunctionPassManager fpm (*m_llvm_func_passes);
++#if OSL_LLVM_VERSION = 32
++fpm.add (new llvm::DataLayout(llvm_module()));
++#else
+ fpm.add (new llvm::TargetData(llvm_module()));
++#endif
+ 
+ // Specify module-wide (interprocedural optimization) passes
+ //
+ m_llvm_passes = new llvm::PassManager;
+ llvm::PassManager passes (*m_llvm_passes);
++#if OSL_LLVM_VERSION = 32
++passes.add (new llvm::DataLayout(llvm_module()));
++#else
+ 

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

2014-01-07 Thread Sven-Hendrik Haase
Date: Wednesday, January 8, 2014 @ 04:12:01
  Author: svenstaro
Revision: 103587

upgpkg: openshadinglanguage 1.5.4dev-1

llvm 3.4 + necessary update to 1.5.4dev

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 03:06:43 UTC (rev 103586)
+++ PKGBUILD2014-01-08 03:12:01 UTC (rev 103587)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 pkgname=openshadinglanguage
-pkgver=1.4.0
-pkgrel=2
+pkgver=1.5.4dev
+pkgrel=1
 pkgdesc=Advanced shading language for production GI renderers
 arch=(i686 x86_64)
 url=https://github.com/imageworks/OpenShadingLanguage;
@@ -9,12 +9,17 @@
 license=('custom')
 depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng' 
'libtiff' 'llvm')
 makedepends=('boost' 'cmake' 'clang')
-source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
-md5sums=('dcc7b6dfbc68d7af0d5cfa2940ff205b')
+source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz
+https://github.com/imageworks/OpenShadingLanguage/pull/320.patch)
+md5sums=('4dda1fb2919d3440344d36ecbdf13d47'
+ '590137809ea344b41b1ad1e0fc81738c')
 
 build() {
   cd OpenShadingLanguage-Release-$pkgver
 
+  # LLVM 3.4 build fix
+  patch -Np1  $srcdir/320.patch
+
   cd src
 
   [[ -d build ]]  rm -r build



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

2014-01-07 Thread Dan McGee
Date: Wednesday, January 8, 2014 @ 04:16:25
  Author: dan
Revision: 203328

upgpkg: pacman-mirrorlist 20140107-1

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |8 
 mirrorlist |   34 ++
 2 files changed, 30 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 03:10:31 UTC (rev 203327)
+++ PKGBUILD2014-01-08 03:16:25 UTC (rev 203328)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=pacman-mirrorlist
-pkgver=20130830
+pkgver=20140107
 pkgrel=1
 pkgdesc=Arch Linux mirror list for use by pacman
 arch=('any')
@@ -19,7 +19,7 @@
 
 updatelist() {
   rm -f mirrorlist
-  wget -O mirrorlist https://www.archlinux.org/mirrorlist/all/smart/
+  wget -O mirrorlist https://www.archlinux.org/mirrorlist/all/http/
 }
 
 package() {
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('1b6919b5f4aca639d3d66ee367dab382')
-sha256sums=('7ff6338d2e4b2165021974a4ad1b03bbd335cd25b7f85e2e1598f6bb90ee285a')
+md5sums=('cf97e2db253052a110e16c8427755ac4')
+sha256sums=('438e1ddee0b88d0b5adbe07fb264ee474adfe170e7537b0aea735c420b2bf6f2')

Modified: mirrorlist
===
--- mirrorlist  2014-01-08 03:10:31 UTC (rev 203327)
+++ mirrorlist  2014-01-08 03:16:25 UTC (rev 203328)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2013-08-30
+## Generated on 2014-01-08
 ##
 
 ## Australia
@@ -8,6 +8,7 @@
 #Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.optus.net/archlinux/$repo/os/$arch
+#Server = http://mirror.rackcentral.com.au/archlinux/$repo/os/$arch
 #Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
 #Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
 #Server = http://archlinux.mirror.uber.com.au/$repo/os/$arch
@@ -15,6 +16,9 @@
 ## Austria
 #Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
 
+## Bangladesh
+#Server = http://mirrors.ispros.com.bd/archlinux/$repo/os/$arch
+
 ## Belarus
 #Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
@@ -32,6 +36,8 @@
 #Server = http://archlinux.igor.onlinedirect.bg/$repo/os/$arch
 
 ## Canada
+#Server = http://archlinux.dropswitch.net/archlinux/$repo/os/$arch
+#Server = http://mirror.clibre.uqam.ca/archlinux/$repo/os/$arch
 #Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
 #Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
 #Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
@@ -42,10 +48,12 @@
 
 ## China
 #Server = http://mirrors.163.com/archlinux/$repo/os/$arch
+#Server = http://mirror.bjtu.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.hust.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.hustunique.com/archlinux/$repo/os/$arch
 #Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors6.ustc.edu.cn/archlinux/$repo/os/$arch
 
 ## Colombia
 #Server = http://www.laqee.unal.edu.co/archlinux/$repo/os/$arch
@@ -56,7 +64,6 @@
 
 ## Denmark
 #Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch
-#Server = http://ftp.klid.dk/ftp/archlinux/$repo/os/$arch
 
 ## Estonia
 #Server = http://ftp.eenet.ee/pub/archlinux/$repo/os/$arch
@@ -68,11 +75,13 @@
 #Server = http://archlinux.aubrac-medical.fr/$repo/os/$arch
 #Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
 #Server = http://archlinux.vi-di.fr/$repo/os/$arch
+#Server = http://mirror.bpiotrowski.pl/archlinux/$repo/os/$arch
 #Server = 
http://distrib-coffee.ipsl.jussieu.fr/pub/linux/archlinux/$repo/os/$arch
 #Server = http://mir.archlinux.fr/$repo/os/$arch
-#Server = http://miroir.ezvan.fr/archlinux/$repo/os/$arch
 #Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
 #Server = http://archlinux.polymorf.fr/$repo/os/$arch
+#Server = http://mirror.solusipse.net/archlinux/$repo/os/$arch
+#Server = http://arch.tamcore.eu/$repo/os/$arch
 
 ## Germany
 #Server = http://mirror.1favre.de/$repo/os/$arch
@@ -80,6 +89,7 @@
 #Server = http://artfiles.org/archlinux.org/$repo/os/$arch
 #Server = http://mirror.fluxent.de/archlinux/$repo/os/$arch
 #Server = http://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch
+#Server = http://mirror.hactar.bz/$repo/os/$arch
 #Server = http://ftp.hawo.stw.uni-erlangen.de/archlinux/$repo/os/$arch
 #Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
 #Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
@@ -91,6 +101,7 @@
 #Server = http://linux.rz.rub.de/archlinux/$repo/os

[arch-commits] Commit in pacman-mirrorlist/repos/core-any (4 files)

2014-01-07 Thread Dan McGee
Date: Wednesday, January 8, 2014 @ 04:16:42
  Author: dan
Revision: 203329

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 203328, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 203328, pacman-mirrorlist/trunk/mirrorlist)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist

+
 PKGBUILD   |   62 +++---
 mirrorlist |  546 ++-
 2 files changed, 313 insertions(+), 295 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-08 03:16:25 UTC (rev 203328)
+++ PKGBUILD2014-01-08 03:16:42 UTC (rev 203329)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-
-pkgname=pacman-mirrorlist
-pkgver=20130830
-pkgrel=1
-pkgdesc=Arch Linux mirror list for use by pacman
-arch=('any')
-url=http://www.archlinux.org/mirrorlist/;
-license=('GPL')
-backup=(etc/pacman.d/mirrorlist)
-source=(mirrorlist)
-
-# NOTE on building this package:
-# * Go to the trunk/ directory
-# * Run bash -c . PKGBUILD; updatelist
-# * Update the checksums, update pkgver
-# * Build the package
-
-updatelist() {
-  rm -f mirrorlist
-  wget -O mirrorlist https://www.archlinux.org/mirrorlist/all/smart/
-}
-
-package() {
-  mkdir -p $pkgdir/etc/pacman.d
-  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
-}
-
-md5sums=('1b6919b5f4aca639d3d66ee367dab382')
-sha256sums=('7ff6338d2e4b2165021974a4ad1b03bbd335cd25b7f85e2e1598f6bb90ee285a')

Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 203328, 
pacman-mirrorlist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-08 03:16:42 UTC (rev 203329)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+
+pkgname=pacman-mirrorlist
+pkgver=20140107
+pkgrel=1
+pkgdesc=Arch Linux mirror list for use by pacman
+arch=('any')
+url=http://www.archlinux.org/mirrorlist/;
+license=('GPL')
+backup=(etc/pacman.d/mirrorlist)
+source=(mirrorlist)
+
+# NOTE on building this package:
+# * Go to the trunk/ directory
+# * Run bash -c . PKGBUILD; updatelist
+# * Update the checksums, update pkgver
+# * Build the package
+
+updatelist() {
+  rm -f mirrorlist
+  wget -O mirrorlist https://www.archlinux.org/mirrorlist/all/http/
+}
+
+package() {
+  mkdir -p $pkgdir/etc/pacman.d
+  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
+}
+
+md5sums=('cf97e2db253052a110e16c8427755ac4')
+sha256sums=('438e1ddee0b88d0b5adbe07fb264ee474adfe170e7537b0aea735c420b2bf6f2')

Deleted: mirrorlist
===
--- mirrorlist  2014-01-08 03:16:25 UTC (rev 203328)
+++ mirrorlist  2014-01-08 03:16:42 UTC (rev 203329)
@@ -1,264 +0,0 @@
-##
-## Arch Linux repository mirrorlist
-## Generated on 2013-08-30
-##
-
-## Australia
-#Server = http://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
-#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.optus.net/archlinux/$repo/os/$arch
-#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
-#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.uber.com.au/$repo/os/$arch
-
-## Austria
-#Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
-
-## Belarus
-#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
-
-## Belgium
-#Server = http://archlinux.cu.be/$repo/os/$arch
-#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
-
-## Brazil
-#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
-#Server = http://www.las.ic.unicamp.br/pub/archlinux/$repo/os/$arch
-#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
-
-## Bulgaria
-#Server = http://archlinux.igor.onlinedirect.bg/$repo/os/$arch
-
-## Canada
-#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
-#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
-#Server = http://archlinux.mirror.vexxhost.com/$repo/os/$arch
-
-## Chile
-#Server = http://mirror.archlinux.cl/$repo/os/$arch
-
-## China
-#Server = http://mirrors.163.com/archlinux/$repo/os/$arch
-#Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors6.ustc.edu.cn/archlinux/$repo/os/$arch
-
-## Colombia
-#Server = http://www.laqee.unal.edu.co/archlinux/$repo/os/$arch
-
-## Czech Republic
-#Server = http://archlinux.mirror.dkm.cz/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.vpsfree.cz/archlinux/$repo/os

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

2014-01-07 Thread Jan Steffens
Date: Wednesday, January 8, 2014 @ 04:48:44
  Author: heftig
Revision: 203330

0.9.20131130

Modified:
  libquvi-scripts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 03:16:42 UTC (rev 203329)
+++ PKGBUILD2014-01-08 03:48:44 UTC (rev 203330)
@@ -2,7 +2,7 @@
 # Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
 
 pkgname=libquvi-scripts
-pkgver=0.9.20131104
+pkgver=0.9.20131130
 pkgrel=1
 pkgdesc='Library for parsing video download links.'
 arch=('any')
@@ -10,7 +10,7 @@
 license=('AGPL3')
 depends=('lua-socket' 'lua-bitop' 'lua-expat')
 
source=(http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('0ddb9e392b46cee0e7a4af260bc1a1a3'
+md5sums=('46ddfd887260a515199c2e1ba8c46d8a'
  'SKIP')
 
 build() {



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

2014-01-07 Thread Jan Steffens
Date: Wednesday, January 8, 2014 @ 04:49:41
  Author: heftig
Revision: 203331

archrelease: copy trunk to extra-any

Added:
  libquvi-scripts/repos/extra-any/PKGBUILD
(from rev 203330, libquvi-scripts/trunk/PKGBUILD)
Deleted:
  libquvi-scripts/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-08 03:48:44 UTC (rev 203330)
+++ PKGBUILD2014-01-08 03:49:41 UTC (rev 203331)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-
-pkgname=libquvi-scripts
-pkgver=0.9.20131104
-pkgrel=1
-pkgdesc='Library for parsing video download links.'
-arch=('any')
-url='http://quvi.sourceforge.net/'
-license=('AGPL3')
-depends=('lua-socket' 'lua-bitop' 'lua-expat')
-source=(http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('0ddb9e392b46cee0e7a4af260bc1a1a3'
- 'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-nsfw --with-geoblocked
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libquvi-scripts/repos/extra-any/PKGBUILD (from rev 203330, 
libquvi-scripts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-08 03:49:41 UTC (rev 203331)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+
+pkgname=libquvi-scripts
+pkgver=0.9.20131130
+pkgrel=1
+pkgdesc='Library for parsing video download links.'
+arch=('any')
+url='http://quvi.sourceforge.net/'
+license=('AGPL3')
+depends=('lua-socket' 'lua-bitop' 'lua-expat')
+source=(http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('46ddfd887260a515199c2e1ba8c46d8a'
+ 'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-nsfw --with-geoblocked
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2014-01-07 Thread Kyle Keen
Date: Wednesday, January 8, 2014 @ 05:00:58
  Author: kkeen
Revision: 103589

upgpkg: python-pillow 2.3.0-1

Modified:
  python-pillow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 03:12:05 UTC (rev 103588)
+++ PKGBUILD2014-01-08 04:00:58 UTC (rev 103589)
@@ -4,7 +4,7 @@
 
 pkgbase=python-pillow
 pkgname=(python-pillow python2-pillow)
-pkgver=2.2.2
+pkgver=2.3.0
 pkgrel=1
 _appname=Pillow
 _py2basever=2.7
@@ -15,7 +15,7 @@
 license=('BSD')
 makedepends=('python-setuptools' 'python2-setuptools' 'lcms' 'libwebp' 'tk' 
'sane')
 
source=(http://pypi.python.org/packages/source/P/$_appname/$_appname-$pkgver.zip;)
-md5sums=('6a76a16f6db45744ff2e9327bf0608b4')
+md5sums=('56b6614499aacb7d6b5983c4914daea7')
 
 build() {
   cd $srcdir



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

2014-01-07 Thread Kyle Keen
Date: Wednesday, January 8, 2014 @ 05:03:33
  Author: kkeen
Revision: 103590

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-08 04:00:58 UTC (rev 103589)
+++ community-i686/PKGBUILD 2014-01-08 04:03:33 UTC (rev 103590)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: minder
-
-pkgbase=python-pillow
-pkgname=(python-pillow python2-pillow)
-pkgver=2.2.2
-pkgrel=1
-_appname=Pillow
-_py2basever=2.7
-_py3basever=3.3m
-pkgdesc=Python Imaging Library (PIL) fork. Python3 version.
-arch=('i686' 'x86_64')
-url=http://python-imaging.github.io/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'lcms' 'libwebp' 'tk' 
'sane')
-source=(http://pypi.python.org/packages/source/P/$_appname/$_appname-$pkgver.zip;)
-md5sums=('6a76a16f6db45744ff2e9327bf0608b4')
-
-build() {
-  cd $srcdir
-  cp -r $srcdir/$_appname-$pkgver $srcdir/${_appname}2-$pkgver
-}  
-
-package_python-pillow() {
-  depends=('python' 'lcms' 'libwebp')
-  optdepends=('tk: for the ImageTK module'
-  'sane: for the Sane module'
-  'python-pyqt4: for the ImageQt module')
-  cd $srcdir/$_appname-$pkgver
-  python3 setup.py install --root=$pkgdir/ --optimize=0
-  pushd Sane
-python3 setup.py install --root=$pkgdir/ --optimize=0
-  popd
-  install -Dm644 docs/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  install -dm755 $pkgdir/usr/include/python$_py3basever/
-  install -m644 -t $pkgdir/usr/include/python$_py3basever/ libImaging/*.h
-
-  # clean up bins
-  cd $pkgdir/usr/bin
-  for f in *.py; do
-mv $f ${f%.py}
-  done
-}
-
-package_python2-pillow() {
-  pkgdesc=Python Imaging Library (PIL) fork. Python2 version.
-  depends=('python2' 'lcms' 'libwebp')
-  optdepends=('tk: for the ImageTK module'
-  'sane: for the Sane module'
-  'python2-pyqt4: for the ImageQt module')
-  provides=('python-imaging' 'python2-imaging')
-  conflicts=('python-imaging' 'python2-imaging')
-  replaces=('python2-imaging')
-  cd $srcdir/${_appname}2-$pkgver
-  python2 setup.py install --root=$pkgdir/ --optimize=0
-  pushd Sane
-python2 setup.py install --root=$pkgdir/ --optimize=0
-  popd
-  install -Dm644 docs/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  install -dm755 $pkgdir/usr/include/python$_py2basever/
-  install -m644 -t $pkgdir/usr/include/python$_py2basever/ libImaging/*.h
-
-  # clean up bins
-  cd $pkgdir/usr/bin
-  for f in *.py; do
-mv $f ${f%.py}2
-  done
-}
-

Copied: python-pillow/repos/community-i686/PKGBUILD (from rev 103589, 
python-pillow/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-08 04:03:33 UTC (rev 103590)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: minder
+
+pkgbase=python-pillow
+pkgname=(python-pillow python2-pillow)
+pkgver=2.3.0
+pkgrel=1
+_appname=Pillow
+_py2basever=2.7
+_py3basever=3.3m
+pkgdesc=Python Imaging Library (PIL) fork. Python3 version.
+arch=('i686' 'x86_64')
+url=http://python-imaging.github.io/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'lcms' 'libwebp' 'tk' 
'sane')
+source=(http://pypi.python.org/packages/source/P/$_appname/$_appname-$pkgver.zip;)
+md5sums=('56b6614499aacb7d6b5983c4914daea7')
+
+build() {
+  cd $srcdir
+  cp -r $srcdir/$_appname-$pkgver $srcdir/${_appname}2-$pkgver
+}  
+
+package_python-pillow() {
+  depends=('python' 'lcms' 'libwebp')
+  optdepends=('tk: for the ImageTK module'
+  'sane: for the Sane module'
+  'python-pyqt4: for the ImageQt module')
+  cd $srcdir/$_appname-$pkgver
+  python3 setup.py install --root=$pkgdir/ --optimize=0
+  pushd Sane
+python3 setup.py install --root=$pkgdir/ --optimize=0
+  popd
+  install -Dm644 docs/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  install -dm755 $pkgdir/usr/include/python$_py3basever/
+  install -m644 -t $pkgdir/usr/include/python$_py3basever/ libImaging/*.h
+
+  # clean up bins
+  cd $pkgdir/usr/bin
+  for f in *.py; do
+mv $f ${f%.py}
+  done
+}
+
+package_python2-pillow() {
+  pkgdesc=Python Imaging Library (PIL) fork. Python2 version.
+  

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

2014-01-07 Thread Thomas Dziedzic
Date: Wednesday, January 8, 2014 @ 07:46:13
  Author: td123
Revision: 203332

upgpkg: vim 7.4.135-1

bump

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 03:49:41 UTC (rev 203331)
+++ PKGBUILD2014-01-08 06:46:13 UTC (rev 203332)
@@ -6,8 +6,8 @@
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
 _topver=7.4
-_patchlevel=86
-__hgrev=f6940759212d
+_patchlevel=135
+__hgrev=de28b1568fc2
 _versiondir=vim${_topver//./}
 pkgver=${_topver}.${_patchlevel}
 pkgrel=1
@@ -20,7 +20,7 @@
 'vimrc'
 'archlinux.vim'
 'gvim.desktop')
-md5sums=('436d4d3c6402ce20309bf2cdedce63c0'
+md5sums=('be672ce2a929503412378c998fc3dc27'
  'SKIP'
  'b9d4dcb9d3ee2e151dc4be1e94934f6a'
  '10353a61aadc3f276692d0e17db1478e'



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

2014-01-07 Thread Thomas Dziedzic
Date: Wednesday, January 8, 2014 @ 07:47:23
  Author: td123
Revision: 20

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

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

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

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

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

2014-01-07 Thread Thomas Dziedzic
Date: Wednesday, January 8, 2014 @ 08:07:53
  Author: td123
Revision: 203334

upgpkg: ruby 2.1.0-1

bump

Modified:
  ruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 06:47:23 UTC (rev 20)
+++ PKGBUILD2014-01-08 07:07:53 UTC (rev 203334)
@@ -4,7 +4,7 @@
 # Contributor: Jeramy Rutley jrut...@gmail.com
 
 pkgname=('ruby' 'ruby-docs')
-pkgver=2.0.0_p353
+pkgver=2.1.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.ruby-lang.org/en/'
@@ -11,13 +11,13 @@
 license=('BSD' 'custom')
 makedepends=('gdbm' 'openssl' 'tk' 'libffi' 'doxygen' 'graphviz' 'libyaml')
 options=('!emptydirs' '!makeflags' 'staticlibs')
-source=(http://cache.ruby-lang.org/pub/ruby/${pkgver%.*}/ruby-${pkgver//_/-}.tar.bz2;
+source=(http://cache.ruby-lang.org/pub/ruby/ruby-${pkgver}.tar.bz2;
 'gemrc')
-md5sums=('20eb8f067d20f6b76b7e16cce2a85a55'
+md5sums=('1546eeb763ac7754365664be763a1e8f'
  '6fb8e7a09955e0f64be3158fb4a27e7a')
 
 build() {
-  cd ruby-${pkgver//_/-}
+  cd ruby-${pkgver}
 
   PKG_CONFIG=/usr/bin/pkg-config ./configure \
 --prefix=/usr \
@@ -30,7 +30,7 @@
 }
 
 check() {
-  cd ruby-${pkgver//_/-}
+  cd ruby-${pkgver}
 
   make test
 }
@@ -45,7 +45,7 @@
   backup=('etc/gemrc')
   install='ruby.install'
 
-  cd ruby-${pkgver//_/-}
+  cd ruby-${pkgver}
 
   make DESTDIR=${pkgdir} install-nodoc
 
@@ -58,7 +58,7 @@
 package_ruby-docs() {
   pkgdesc='Documentation files for ruby'
 
-  cd ruby-${pkgver//_/-}
+  cd ruby-${pkgver}
 
   make DESTDIR=${pkgdir} install-doc install-capi
 



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

2014-01-07 Thread Thomas Dziedzic
Date: Wednesday, January 8, 2014 @ 08:08:43
  Author: td123
Revision: 203335

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

Added:
  ruby/repos/staging-i686/
  ruby/repos/staging-i686/PKGBUILD
(from rev 203334, ruby/trunk/PKGBUILD)
  ruby/repos/staging-i686/gemrc
(from rev 203334, ruby/trunk/gemrc)
  ruby/repos/staging-i686/ruby.install
(from rev 203334, ruby/trunk/ruby.install)
  ruby/repos/staging-x86_64/
  ruby/repos/staging-x86_64/PKGBUILD
(from rev 203334, ruby/trunk/PKGBUILD)
  ruby/repos/staging-x86_64/gemrc
(from rev 203334, ruby/trunk/gemrc)
  ruby/repos/staging-x86_64/ruby.install
(from rev 203334, ruby/trunk/ruby.install)

-+
 staging-i686/PKGBUILD   |   67 ++
 staging-i686/gemrc  |5 +++
 staging-i686/ruby.install   |   22 +
 staging-x86_64/PKGBUILD |   67 ++
 staging-x86_64/gemrc|5 +++
 staging-x86_64/ruby.install |   22 +
 6 files changed, 188 insertions(+)

Copied: ruby/repos/staging-i686/PKGBUILD (from rev 203334, ruby/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-01-08 07:08:43 UTC (rev 203335)
@@ -0,0 +1,67 @@
+# Maintainer: Thomas Dziedzic gos...@gmail.com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+# Contributor: Jeramy Rutley jrut...@gmail.com
+
+pkgname=('ruby' 'ruby-docs')
+pkgver=2.1.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.ruby-lang.org/en/'
+license=('BSD' 'custom')
+makedepends=('gdbm' 'openssl' 'tk' 'libffi' 'doxygen' 'graphviz' 'libyaml')
+options=('!emptydirs' '!makeflags' 'staticlibs')
+source=(http://cache.ruby-lang.org/pub/ruby/ruby-${pkgver}.tar.bz2;
+'gemrc')
+md5sums=('1546eeb763ac7754365664be763a1e8f'
+ '6fb8e7a09955e0f64be3158fb4a27e7a')
+
+build() {
+  cd ruby-${pkgver}
+
+  PKG_CONFIG=/usr/bin/pkg-config ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver}
+
+  make test
+}
+
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=('gdbm' 'openssl' 'libffi' 'libyaml')
+  optdepends=('tk: for Ruby/TK'
+  'ruby-docs: Ruby documentation')
+  provides=('rubygems' 'rake')
+  conflicts=('rake')
+  backup=('etc/gemrc')
+  install='ruby.install'
+
+  cd ruby-${pkgver}
+
+  make DESTDIR=${pkgdir} install-nodoc
+
+  install -D -m644 ${srcdir}/gemrc ${pkgdir}/etc/gemrc
+
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/ruby/LICENSE
+  install -D -m644 BSDL ${pkgdir}/usr/share/licenses/ruby/BSDL
+}
+
+package_ruby-docs() {
+  pkgdesc='Documentation files for ruby'
+
+  cd ruby-${pkgver}
+
+  make DESTDIR=${pkgdir} install-doc install-capi
+
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/ruby-docs/LICENSE
+  install -D -m644 BSDL ${pkgdir}/usr/share/licenses/ruby-docs/BSDL
+}

Copied: ruby/repos/staging-i686/gemrc (from rev 203334, ruby/trunk/gemrc)
===
--- staging-i686/gemrc  (rev 0)
+++ staging-i686/gemrc  2014-01-08 07:08:43 UTC (rev 203335)
@@ -0,0 +1,5 @@
+# Read about the gemrc format at http://docs.rubygems.org/read/chapter/11
+
+# --user-install is used to install to $HOME/.gem/ by default since we want to 
separate
+#pacman installed gems and gem installed gems
+gem: --user-install

Copied: ruby/repos/staging-i686/ruby.install (from rev 203334, 
ruby/trunk/ruby.install)
===
--- staging-i686/ruby.install   (rev 0)
+++ staging-i686/ruby.install   2014-01-08 07:08:43 UTC (rev 203335)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+print_gem_default_target() {
+  echo 'The default location of gem installs is $HOME/.gem/ruby'
+  echo 'Add the following line to your PATH if you plan to install using gem'
+  echo '$(ruby -rubygems -e puts Gem.user_dir)/bin'
+  echo 'If you want to install to the system wide location, you must either:'
+  echo 'edit /etc/gemrc or run gem with the --no-user-install flag.'
+}
+
+# arg 1:  the new package version
+post_install() {
+  print_gem_default_target
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [ $(vercmp $2 1.9.3_p125-4) -lt 0 ]; then
+print_gem_default_target
+  fi
+}

Copied: ruby/repos/staging-x86_64/PKGBUILD (from rev 203334, 
ruby/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-01-08 07:08:43 UTC (rev 203335)
@@ -0,0 +1,67 @@
+# Maintainer: Thomas 

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

2014-01-07 Thread Gaetan Bisson
Date: Wednesday, January 8, 2014 @ 08:29:58
  Author: bisson
Revision: 203336

db-move: moved clamav from [testing] to [extra] (i686, x86_64)

Added:
  clamav/repos/extra-i686/PKGBUILD
(from rev 203335, clamav/repos/testing-i686/PKGBUILD)
  clamav/repos/extra-i686/clamd.conf
(from rev 203335, clamav/repos/testing-i686/clamd.conf)
  clamav/repos/extra-i686/clamd.service
(from rev 203335, clamav/repos/testing-i686/clamd.service)
  clamav/repos/extra-i686/freshclam.conf
(from rev 203335, clamav/repos/testing-i686/freshclam.conf)
  clamav/repos/extra-i686/freshclamd.service
(from rev 203335, clamav/repos/testing-i686/freshclamd.service)
  clamav/repos/extra-i686/install
(from rev 203335, clamav/repos/testing-i686/install)
  clamav/repos/extra-i686/logrotate
(from rev 203335, clamav/repos/testing-i686/logrotate)
  clamav/repos/extra-i686/tmpfiles.d
(from rev 203335, clamav/repos/testing-i686/tmpfiles.d)
  clamav/repos/extra-x86_64/PKGBUILD
(from rev 203335, clamav/repos/testing-x86_64/PKGBUILD)
  clamav/repos/extra-x86_64/clamd.conf
(from rev 203335, clamav/repos/testing-x86_64/clamd.conf)
  clamav/repos/extra-x86_64/clamd.service
(from rev 203335, clamav/repos/testing-x86_64/clamd.service)
  clamav/repos/extra-x86_64/freshclam.conf
(from rev 203335, clamav/repos/testing-x86_64/freshclam.conf)
  clamav/repos/extra-x86_64/freshclamd.service
(from rev 203335, clamav/repos/testing-x86_64/freshclamd.service)
  clamav/repos/extra-x86_64/install
(from rev 203335, clamav/repos/testing-x86_64/install)
  clamav/repos/extra-x86_64/logrotate
(from rev 203335, clamav/repos/testing-x86_64/logrotate)
  clamav/repos/extra-x86_64/tmpfiles.d
(from rev 203335, clamav/repos/testing-x86_64/tmpfiles.d)
Deleted:
  clamav/repos/extra-i686/PKGBUILD
  clamav/repos/extra-i686/config.patch
  clamav/repos/extra-i686/install
  clamav/repos/extra-i686/logrotate
  clamav/repos/extra-i686/service
  clamav/repos/extra-i686/service.fresh
  clamav/repos/extra-i686/tmpfiles.d
  clamav/repos/extra-x86_64/PKGBUILD
  clamav/repos/extra-x86_64/config.patch
  clamav/repos/extra-x86_64/install
  clamav/repos/extra-x86_64/logrotate
  clamav/repos/extra-x86_64/service
  clamav/repos/extra-x86_64/service.fresh
  clamav/repos/extra-x86_64/tmpfiles.d
  clamav/repos/testing-i686/
  clamav/repos/testing-x86_64/

-+
 /PKGBUILD   |  122 ++
 /install|   20 ++
 /logrotate  |   20 ++
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   59 --
 extra-i686/clamd.conf   |6 +
 extra-i686/clamd.service|   10 +++
 extra-i686/config.patch |   30 -
 extra-i686/freshclam.conf   |3 
 extra-i686/freshclamd.service   |   10 +++
 extra-i686/install  |   10 ---
 extra-i686/logrotate|   10 ---
 extra-i686/service  |   10 ---
 extra-i686/service.fresh|   10 ---
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   59 --
 extra-x86_64/clamd.conf |6 +
 extra-x86_64/clamd.service  |   10 +++
 extra-x86_64/config.patch   |   30 -
 extra-x86_64/freshclam.conf |3 
 extra-x86_64/freshclamd.service |   10 +++
 extra-x86_64/install|   10 ---
 extra-x86_64/logrotate  |   10 ---
 extra-x86_64/service|   10 ---
 extra-x86_64/service.fresh  |   10 ---
 extra-x86_64/tmpfiles.d |1 
 26 files changed, 222 insertions(+), 260 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-08 07:08:43 UTC (rev 203335)
+++ extra-i686/PKGBUILD 2014-01-08 07:29:58 UTC (rev 203336)
@@ -1,59 +0,0 @@
-# $Id$
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Gregor Ibic gregor.i...@intelicom.si
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=clamav
-pkgver=0.98
-pkgrel=1
-pkgdesc='Anti-virus toolkit for Unix'
-url='http://www.clamav.net/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('bzip2' 'libltdl')
-backup=('etc/logrotate.d/clamav')
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-'service'
-'service.fresh'
-'logrotate'
-'tmpfiles.d'
-'config.patch')
-sha1sums=('1e6a7284721387646c713a8d32fa8b5a897985db'
-  'b6ac0c5de1e5b41232b10d4f84e86201c370eaeb'
-  'cda9a087e5593992150cb456e34c5f6f589aca82'
-  'bb488a56b0f6a0760446cde89c1e3321e2717b78'
-  'a224ea9b4d0f4f196827347d54bed51e11c197ea'
-  '00dfadd93d11186793cb1161745f9dd7370beb99')
-
-install=install
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../config.patch
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   

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

2014-01-07 Thread Gaetan Bisson
Date: Wednesday, January 8, 2014 @ 08:32:11
  Author: bisson
Revision: 203337

db-move: moved graphicsmagick from [testing] to [extra] (i686, x86_64)

Added:
  graphicsmagick/repos/extra-i686/PKGBUILD
(from rev 203336, graphicsmagick/repos/testing-i686/PKGBUILD)
  graphicsmagick/repos/extra-x86_64/PKGBUILD
(from rev 203336, graphicsmagick/repos/testing-x86_64/PKGBUILD)
Deleted:
  graphicsmagick/repos/extra-i686/PKGBUILD
  graphicsmagick/repos/extra-x86_64/PKGBUILD
  graphicsmagick/repos/testing-i686/
  graphicsmagick/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-08 07:29:58 UTC (rev 203336)
+++ extra-i686/PKGBUILD 2014-01-08 07:32:11 UTC (rev 203337)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Anton Leontiev bun...@t-25.ru
-
-pkgname=graphicsmagick
-pkgver=1.3.19
-pkgrel=1
-pkgdesc='Image processing system'
-url='http://www.graphicsmagick.org/'
-arch=('i686' 'x86_64')
-license=('MIT')
-optdepends=('jasper: jp2 module'
-'libpng: png module'
-'libwmf: wmf module'
-'libxml2: msl, svg, url modules'
-'libtiff: ps2, ps3, tiff modules'
-'ghostscript: pdf, ps modules')
-makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff')
-depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
-sha1sums=('621c3e9a3b12e38dad225ee3466fd55a24c62066')
-
-options=('!emptydirs' 'libtool')
-
-build() {
-   cd ${srcdir}/GraphicsMagick-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --enable-shared \
-   --with-modules \
-   --with-perl \
-   --with-gs-font-dir=/usr/share/fonts/Type1 \
-   --with-quantum-depth=32 \
-   --with-openmp \
-   --with-threads
-   make
-}
-
-package() {
-   cd ${srcdir}/GraphicsMagick-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   # Install MIT license
-   install -Dm644 Copyright.txt 
${pkgdir}/usr/share/licenses/${pkgname}/Copyright.txt
-
-   # Install perl bindings
-   # The patching was introduced in order to build perl module without 
installing package itself and
-   # not to introduce unnecessary path into LD_RUN_PATH
-   cd PerlMagick
-   sed -i -e s:'LDDLFLAGS'  = \\(.*\)\:'LDDLFLAGS'  = 
\-L${pkgdir}/usr/lib \1\: Makefile.PL
-   perl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr DESTDIR=${pkgdir}
-   sed -i -e s/LDLOADLIBS =/LDLOADLIBS = -lGraphicsMagick/ Makefile
-   make
-   make install
-
-   # Remove perllocal.pod and .packlist
-   rm -rf ${pkgdir}/usr/lib/perl5/core_perl
-   rm ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Graphics/Magick/.packlist
-}

Copied: graphicsmagick/repos/extra-i686/PKGBUILD (from rev 203336, 
graphicsmagick/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-08 07:32:11 UTC (rev 203337)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Anton Leontiev bun...@t-25.ru
+
+pkgname=graphicsmagick
+pkgver=1.3.19
+pkgrel=2
+pkgdesc='Image processing system'
+url='http://www.graphicsmagick.org/'
+arch=('i686' 'x86_64')
+license=('MIT')
+optdepends=('jasper: jp2 module'
+'libpng: png module'
+'libwmf: wmf module'
+'libxml2: msl, svg, url modules'
+'libtiff: ps2, ps3, tiff modules'
+'ghostscript: pdf, ps modules')
+makedepends=('perl' 'jasper' 'libpng' 'libwmf' 'libxml2' 'libtiff')
+depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz;)
+sha1sums=('621c3e9a3b12e38dad225ee3466fd55a24c62066')
+
+options=('!emptydirs' 'libtool')
+
+build() {
+   cd ${srcdir}/GraphicsMagick-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --enable-shared \
+   --with-modules \
+   --with-perl \
+   --with-gs-font-dir=/usr/share/fonts/Type1 \
+   --with-quantum-depth=16 \
+   --with-threads
+   make
+}
+
+package() {
+ 

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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 08:33:40
  Author: fyan
Revision: 103591

upgpkg: marisa 0.2.4-3

- ruby 2.1 rebuild

Modified:
  marisa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-08 04:03:33 UTC (rev 103590)
+++ PKGBUILD2014-01-08 07:33:40 UTC (rev 103591)
@@ -5,7 +5,7 @@
 pkgbase=marisa
 pkgname=('marisa' 'perl-marisa' 'python2-marisa' 'ruby-marisa')
 pkgver=0.2.4
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url=https://code.google.com/p/marisa-trie/;
 license=('BSD' 'LGPL')
@@ -95,8 +95,8 @@
   depends=('ruby' 'marisa')
 
   cd ${pkgbase}-${pkgver}/bindings/ruby
-_hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.0`
-_arch=`pkg-config --variable=arch ruby-2.0`
+_hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.1`
+_arch=`pkg-config --variable=arch ruby-2.1`
   make DESTDIR=$pkgdir install \
 hdrdir=$_hdrdir \
 arch_hdrdir=${_hdrdir}/${_arch} \



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

2014-01-07 Thread Felix Yan
Date: Wednesday, January 8, 2014 @ 08:34:59
  Author: fyan
Revision: 103592

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

Added:
  marisa/repos/community-staging-i686/
  marisa/repos/community-staging-i686/PKGBUILD
(from rev 103591, marisa/trunk/PKGBUILD)
  marisa/repos/community-staging-x86_64/
  marisa/repos/community-staging-x86_64/PKGBUILD
(from rev 103591, marisa/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |  108 
 community-staging-x86_64/PKGBUILD |  108 
 2 files changed, 216 insertions(+)

Copied: marisa/repos/community-staging-i686/PKGBUILD (from rev 103591, 
marisa/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-08 07:34:59 UTC (rev 103592)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+
+pkgbase=marisa
+pkgname=('marisa' 'perl-marisa' 'python2-marisa' 'ruby-marisa')
+pkgver=0.2.4
+pkgrel=3
+arch=('i686' 'x86_64')
+url=https://code.google.com/p/marisa-trie/;
+license=('BSD' 'LGPL')
+makedepends=('python2' 'ruby' 'perl')
+source=(https://marisa-trie.googlecode.com/files/$pkgbase-$pkgver.tar.gz)
+sha1sums=('fb0ed7d993e84dff32ec456a79bd36a00022629d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static \
+# --enable-popcnt
+# --enable-sse2
+# --enable-sse3
+# --enable-ssse3
+# --enable-sse4.1
+# --enable-sse4.2
+# --enable-sse4
+# --enable-sse4a
+
+  sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=|g' 
libtool
+  sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+  make
+
+  # Perl bindings
+  cd ${srcdir}/${pkgbase}-${pkgver}/bindings/perl
+  perl Makefile.PL \
+INC=-I${srcdir}/${pkgbase}-${pkgver}/lib \
+LIBS=-L${srcdir}/${pkgbase}-${pkgver}/lib/.libs
+  make
+
+  # Python bindings
+  cd ${srcdir}/${pkgbase}-${pkgver}/bindings/python
+  python2 setup.py build_ext \
+--include-dirs=${srcdir}/${pkgbase}-${pkgver}/lib \
+--library-dirs=${srcdir}/${pkgbase}-${pkgver}/lib/.libs
+  python2 setup.py build
+
+  # Ruby bindings
+  cd ${srcdir}/${pkgbase}-${pkgver}/bindings/ruby
+  ruby extconf.rb \
+--with-opt-include=${srcdir}/${pkgbase}-${pkgver}/lib \
+--with-opt-lib=${srcdir}/${pkgbase}-${pkgver}/lib/.libs \
+--vendor
+  make
+}
+
+package_marisa() {
+  pkgdesc=Static and space-efficient trie data structure library
+  depends=('gcc-libs')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=$pkgdir install
+
+  install -d ${pkgdir}/usr/share/doc/${pkgbase}-${pkgver}
+  install -m 644 docs/* README ${pkgdir}/usr/share/doc/${pkgbase}-${pkgver}/
+
+  install -d ${pkgdir}/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS COPYING ${pkgdir}/usr/share/licenses/$pkgname/
+}
+
+package_perl-marisa() {
+  pkgdesc=Perl language binding for marisa
+  depends=('perl' 'marisa')
+
+  cd ${pkgbase}-${pkgver}/bindings/perl
+  make DESTDIR=$pkgdir install
+
+  cd ../..
+  install -d ${pkgdir}/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS COPYING ${pkgdir}/usr/share/licenses/$pkgname/
+}
+
+package_python2-marisa() {
+  pkgdesc=Python 2.x language binding for marisa
+  depends=('python2' 'marisa')
+
+  cd ${pkgbase}-${pkgver}/bindings/python
+  python2 setup.py install --root=$pkgdir
+
+  cd ../..
+  install -d ${pkgdir}/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS COPYING ${pkgdir}/usr/share/licenses/$pkgname/
+}
+
+package_ruby-marisa() {
+  pkgdesc=Ruby language binding for marisa
+  depends=('ruby' 'marisa')
+
+  cd ${pkgbase}-${pkgver}/bindings/ruby
+_hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.1`
+_arch=`pkg-config --variable=arch ruby-2.1`
+  make DESTDIR=$pkgdir install \
+hdrdir=$_hdrdir \
+arch_hdrdir=${_hdrdir}/${_arch} \
+rubyhdrdir=$_hdrdir
+
+  cd ../..
+  install -d ${pkgdir}/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS COPYING ${pkgdir}/usr/share/licenses/$pkgname/
+}

Copied: marisa/repos/community-staging-x86_64/PKGBUILD (from rev 103591, 
marisa/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-01-08 07:34:59 UTC (rev 103592)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+
+pkgbase=marisa
+pkgname=('marisa' 'perl-marisa' 'python2-marisa' 'ruby-marisa')
+pkgver=0.2.4
+pkgrel=3
+arch=('i686' 'x86_64')
+url=https://code.google.com/p/marisa-trie/;
+license=('BSD' 'LGPL')
+makedepends=('python2' 'ruby' 'perl')
+source=(https://marisa-trie.googlecode.com/files/$pkgbase-$pkgver.tar.gz)