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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:04:05
  Author: spupykin
Revision: 132777

upgpkg: luasql 2.3.0-2

upd

Modified:
  luasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:03:57 UTC (rev 132776)
+++ PKGBUILD2015-05-05 12:04:05 UTC (rev 132777)
@@ -6,7 +6,7 @@
 pkgbase=luasql
 pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.keplerproject.org/luasql/'
 license=('MIT')
@@ -17,12 +17,12 @@
 build() {
   cd $pkgbase-$pkgver
   msg2 'Building sqlite support'
-  make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99'
+  make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99 -DLUA_32BITS'
   msg2 'Building PostgreSQL support'
-  make T=postgres PREFIX=/usr DRIVER_LIBS='-lpq' DRIVER_INCS='-fPIC'
+  make T=postgres PREFIX=/usr DRIVER_LIBS='-lpq' DRIVER_INCS='-fPIC 
-DLUA_32BITS'
   msg2 'Building MySQL support'
   make T=mysql PREFIX=/usr DRIVER_LIBS=$(mysql_config --libs) \
-DRIVER_INCS=$(mysql_config --include) -fPIC
+DRIVER_INCS=$(mysql_config --include) -fPIC -DLUA_32BITS
 }
 
 package_lua-sql-mysql() {


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:03:57
  Author: spupykin
Revision: 132776

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

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

+
 community-staging-i686/PKGBUILD|   53 +++
 community-staging-i686/darktable.install   |   11 +
 community-staging-x86_64/PKGBUILD  |   53 +++
 community-staging-x86_64/darktable.install |   11 +
 4 files changed, 128 insertions(+)

Copied: darktable/repos/community-staging-i686/PKGBUILD (from rev 132775, 
darktable/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 12:03:57 UTC (rev 132776)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  Christian Himpel chressie at gmail dot com
+# Contributor: Johannes Hanika hanatos at gmail dot com
+
+pkgname=darktable
+pkgver=1.6.6
+pkgrel=2
+pkgdesc=Utility to organize and develop raw images
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
+'libsoup' 'gtk-engines' 'json-glib' 'flickcurl' 'lua52' 'colord')
+makedepends=('intltool=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)
+md5sums=('4e880ffdf9e80dc09de3bdc2fc8f81c9')
+
+prepare() {
+  cd $srcdir/$pkgname-release-$pkgver/cmake
+  sed s|@PROJECT_VERSION@|$pkgver| version.cmake.cmake version.cmake
+  sed -i 's|lua5.2|lua52|g' modules/FindLua52.cmake
+}
+
+build() {
+  cd $srcdir/$pkgname-release-$pkgver
+  mkdir -p build
+  cd build
+  CXXFLAGS+= -fpermissive
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBINARY_PACKAGE_BUILD=1 \
+  -DBUILD_USERMANUAL=False \
+  -DUSE_LIBSECRET=On \
+  -DUSE_LUA=On \
+  -DUSE_GNOME_KEYRING=Off \
+  -DUSE_COLORD=On \
+  ..
+  make
+  make -C ../tools/basecurve
+}
+
+package() {
+  cd $srcdir/$pkgname-release-$pkgver/build
+  make DESTDIR=$pkgdir install
+  install -Dm0755 ../tools/basecurve/dt-curve-tool 
$pkgdir/usr/bin/dt-curve-tool
+  install -Dm0755 ../tools/basecurve/dt-curve-tool-helper 
$pkgdir/usr/bin/dt-curve-tool-helper
+  mv ${pkgdir}/usr/share/doc/darktable 
${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
+}

Copied: darktable/repos/community-staging-i686/darktable.install (from rev 
132775, darktable/trunk/darktable.install)
===
--- community-staging-i686/darktable.install(rev 0)
+++ community-staging-i686/darktable.install2015-05-05 12:03:57 UTC (rev 
132776)
@@ -0,0 +1,11 @@
+post_install() {
+  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
+}
+
+post_upgrade() {
+  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
+}
+
+post_remove() {
+  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
+}

Copied: darktable/repos/community-staging-x86_64/PKGBUILD (from rev 132775, 
darktable/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 12:03:57 UTC (rev 132776)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  Christian Himpel chressie at gmail dot com
+# Contributor: Johannes Hanika hanatos at gmail dot com
+
+pkgname=darktable
+pkgver=1.6.6
+pkgrel=2
+pkgdesc=Utility to organize and develop raw images
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
+'libsoup' 'gtk-engines' 'json-glib' 'flickcurl' 'lua52' 'colord')
+makedepends=('intltool=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)

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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:03:43
  Author: spupykin
Revision: 132775

upgpkg: darktable 1.6.6-2

upd

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 11:30:11 UTC (rev 132774)
+++ PKGBUILD2015-05-05 12:03:43 UTC (rev 132775)
@@ -5,7 +5,7 @@
 
 pkgname=darktable
 pkgver=1.6.6
-pkgrel=1
+pkgrel=2
 pkgdesc=Utility to organize and develop raw images
 arch=('i686' 'x86_64')
 url=http://darktable.sf.net/
@@ -12,7 +12,7 @@
 license=('GPL3')
 depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
 'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
-'libsoup' 'gtk-engines' 'json-glib' 'flickcurl' 'lua' 'colord')
+'libsoup' 'gtk-engines' 'json-glib' 'flickcurl' 'lua52' 'colord')
 makedepends=('intltool=0.40' 'cmake' 'librsvg')
 optdepends=('librsvg')
 install=darktable.install
@@ -22,6 +22,7 @@
 prepare() {
   cd $srcdir/$pkgname-release-$pkgver/cmake
   sed s|@PROJECT_VERSION@|$pkgver| version.cmake.cmake version.cmake
+  sed -i 's|lua5.2|lua52|g' modules/FindLua52.cmake
 }
 
 build() {


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:04:19
  Author: spupykin
Revision: 132778

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

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

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

Copied: luasql/repos/community-staging-i686/PKGBUILD (from rev 132777, 
luasql/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 12:04:19 UTC (rev 132778)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sébastien Luttringer se...@archlinux.org
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasql
+pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
+pkgver=2.3.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://www.keplerproject.org/luasql/'
+license=('MIT')
+makedepends=('lua' 'libmariadbclient' 'postgresql-libs' 'sqlite')
+source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;)
+md5sums=('af9f0f3a2313a1fcf88c40700092048d')
+
+build() {
+  cd $pkgbase-$pkgver
+  msg2 'Building sqlite support'
+  make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99 -DLUA_32BITS'
+  msg2 'Building PostgreSQL support'
+  make T=postgres PREFIX=/usr DRIVER_LIBS='-lpq' DRIVER_INCS='-fPIC 
-DLUA_32BITS'
+  msg2 'Building MySQL support'
+  make T=mysql PREFIX=/usr DRIVER_LIBS=$(mysql_config --libs) \
+DRIVER_INCS=$(mysql_config --include) -fPIC -DLUA_32BITS
+}
+
+package_lua-sql-mysql() {
+  pkgdesc='MySQL module for Lua'
+  depends=('lua' 'libmariadbclient')
+  conflicts=('luasql-mysql')
+  replaces=('luasql-mysql')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/mysql.so $pkgdir/usr/lib/lua/5.2/luasql/mysql.so
+  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua-sql-postgres() {
+  pkgdesc='PostgreSQL module for Lua'
+  depends=('lua' 'postgresql-libs')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/postgres.so $pkgdir/usr/lib/lua/5.2/luasql/postgres.so
+  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua-sql-sqlite() {
+  pkgdesc='SQLite module for Lua'
+  depends=('lua' 'sqlite')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/sqlite3.so $pkgdir/usr/lib/lua/5.2/luasql/sqlite3.so
+  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luasql/repos/community-staging-x86_64/PKGBUILD (from rev 132777, 
luasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 12:04:19 UTC (rev 132778)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sébastien Luttringer se...@archlinux.org
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasql
+pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
+pkgver=2.3.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://www.keplerproject.org/luasql/'
+license=('MIT')
+makedepends=('lua' 'libmariadbclient' 'postgresql-libs' 'sqlite')
+source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;)
+md5sums=('af9f0f3a2313a1fcf88c40700092048d')
+
+build() {
+  cd $pkgbase-$pkgver
+  msg2 'Building sqlite support'
+  make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99 -DLUA_32BITS'
+  msg2 'Building PostgreSQL support'
+  make T=postgres PREFIX=/usr DRIVER_LIBS='-lpq' DRIVER_INCS='-fPIC 
-DLUA_32BITS'
+  msg2 'Building MySQL support'
+  make T=mysql PREFIX=/usr DRIVER_LIBS=$(mysql_config --libs) \
+DRIVER_INCS=$(mysql_config --include) -fPIC -DLUA_32BITS
+}
+
+package_lua-sql-mysql() {
+  pkgdesc='MySQL module for Lua'
+  depends=('lua' 'libmariadbclient')
+  conflicts=('luasql-mysql')
+  replaces=('luasql-mysql')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/mysql.so $pkgdir/usr/lib/lua/5.2/luasql/mysql.so
+  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua-sql-postgres() {
+  pkgdesc='PostgreSQL module for Lua'
+  depends=('lua' 'postgresql-libs')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/postgres.so $pkgdir/usr/lib/lua/5.2/luasql/postgres.so
+  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+

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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:23:58
  Author: spupykin
Revision: 132779

upgpkg: virt-manager 1.2.0-1

upd

Modified:
  virt-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:04:19 UTC (rev 132778)
+++ PKGBUILD2015-05-05 12:23:58 UTC (rev 132779)
@@ -5,8 +5,8 @@
 
 pkgbase=virt-manager
 pkgname=(virt-install virt-manager)
-pkgver=1.1.0
-pkgrel=6
+pkgver=1.2.0
+pkgrel=1
 pkgdesc=Console user interface for managing virtual machines
 arch=('any')
 url=http://virt-manager.org/;
@@ -20,7 +20,7 @@
 'gnome-icon-theme' 'graphite' 'spice-gtk3'
 'libvirt-glib' 'vte3')
 
source=(http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
-md5sums=('baf6eaa88b02bdd7a3c2fdd293eeb6ac')
+md5sums=('89e6c816054f3a3751100a8d79ec97c2')
 
 build() {
   cd $srcdir/$pkgbase-$pkgver


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 13:30:11
  Author: spupykin
Revision: 132774

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

Added:
  notion/repos/community-staging-i686/
  notion/repos/community-staging-i686/ChangleLog
(from rev 132773, notion/trunk/ChangleLog)
  notion/repos/community-staging-i686/PKGBUILD
(from rev 132773, notion/trunk/PKGBUILD)
  notion/repos/community-staging-x86_64/
  notion/repos/community-staging-x86_64/ChangleLog
(from rev 132773, notion/trunk/ChangleLog)
  notion/repos/community-staging-x86_64/PKGBUILD
(from rev 132773, notion/trunk/PKGBUILD)

-+
 community-staging-i686/ChangleLog   |5 +
 community-staging-i686/PKGBUILD |   91 ++
 community-staging-x86_64/ChangleLog |5 +
 community-staging-x86_64/PKGBUILD   |   91 ++
 4 files changed, 192 insertions(+)

Copied: notion/repos/community-staging-i686/ChangleLog (from rev 132773, 
notion/trunk/ChangleLog)
===
--- community-staging-i686/ChangleLog   (rev 0)
+++ community-staging-i686/ChangleLog   2015-05-05 11:30:11 UTC (rev 132774)
@@ -0,0 +1,5 @@
+2011-09-14 Sergej Pupykin pupykin.s+a...@gmail.com
+
+   * 20110914-1 :
+   Add contrib/ to /usr/share/notion/contrib
+   Add mod_*.lua to /etc/notion/

Copied: notion/repos/community-staging-i686/PKGBUILD (from rev 132773, 
notion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 11:30:11 UTC (rev 132774)
@@ -0,0 +1,91 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Eugen Zagorodniy e dot zagorodniy at gmail dot com
+# Contributor: aunoor
+
+pkgname=notion
+pkgver=20150505
+pkgrel=1
+pkgdesc=Tabbed tiling, window manager. Fork of Ion3
+url=http://sourceforge.net/projects/notion/;
+arch=('i686' 'x86_64')
+license=('custom:LGPL')
+depends=('glib2' 'gettext' 'lua' 'libxext' 'libsm')
+optdepends=('libxinerama' 'libxrandr')
+makedepends=('git' 'pkgconfig' 'libxinerama' 'libxrandr'
+'rubber' 'latex2html' 'texlive-htmlxml' 'texlive-latexextra')
+backup=(etc/notion/cfg_defaults.lua
+   etc/notion/cfg_dock.lua
+   etc/notion/cfg_kludges.lua
+   etc/notion/cfg_layouts.lua
+   etc/notion/cfg_menu.lua
+   etc/notion/cfg_notion.lua
+   etc/notion/cfg_notioncore.lua
+   etc/notion/cfg_query.lua
+   etc/notion/cfg_sp.lua
+   etc/notion/cfg_statusbar.lua
+   etc/notion/cfg_tiling.lua
+   etc/notion/cfg_xrandr.lua
+   etc/notion/look.lua
+   etc/notion/look_brownsteel.lua
+   etc/notion/look_clean.lua
+   etc/notion/look_cleanios.lua
+   etc/notion/look_cleanviolet.lua
+   etc/notion/look_dusky.lua
+   etc/notion/look_greenlight.lua
+   etc/notion/look_greyviolet.lua
+   etc/notion/look_ios.lua
+   etc/notion/look_newviolet.lua
+   etc/notion/look_simpleblue.lua
+   etc/notion/lookcommon_clean.lua
+   etc/notion/lookcommon_emboss.lua
+   etc/notion/mod_xinerama.lua
+   etc/notion/statusbar_xkbgroup.lua
+   etc/notion/test_xinerama.lua
+   etc/notion/xkbbell.lua
+   etc/notion/xkbion.lua)
+provides=('libtu' 'libextl')
+changelog=ChangleLog
+source=(notion::git://notion.git.sourceforge.net/gitroot/notion/notion
+   
notion-doc::git://notion.git.sourceforge.net/gitroot/notion/notion-doc)
+md5sums=('SKIP'
+ 'SKIP')
+
+prepare() {
+  cd ${srcdir}
+  cat notion/build/lua-detect.mk EOF
+LUA_VERSION := 5.3
+LUA_LIBS := $(pkg-config --libs lua)
+LUA_INCLUDES := $(pkg-config --cflags lua)
+LUA  := $(which lua)
+LUAC := $(which luac)
+EOF
+  sed -i 's|return \(lua_sethook.*\)|\1 return 0;|g' notion/libextl/luaextl.c
+}
+
+build() {
+  cd ${srcdir}/notion
+  make INCLUDES=-I${srcdir}/notion LUA_VERSION=5.2 PREFIX=/usr 
ETCDIR=/etc/notion
+  cd ${srcdir}/notion-doc
+  make -j1 all
+}
+
+package() {
+  cd ${srcdir}/notion
+  make DESTDIR=$pkgdir LUA_VERSION=5.2 PREFIX=/usr ETCDIR=/etc/notion install
+
+  # doc
+  cd ${srcdir}/notion-doc
+  make PREFIX=$pkgdir/usr ETCDIR=/etc/notion install
+
+  # modules
+  cp ${srcdir}/notion/mod_xinerama/*.lua $pkgdir/etc/notion/
+  cp ${srcdir}/notion/mod_xkbevents/*.lua $pkgdir/etc/notion/
+
+  # contrib
+  mkdir -p $pkgdir/usr/share/notion/contrib
+  cp -a ${srcdir}/$pkgname/contrib/* $pkgdir/usr/share/notion/contrib
+
+  # license
+  install -Dm0644 LICENSE ${pkgdir}/usr/share/licenses/notion/LICENSE
+}

Copied: notion/repos/community-staging-x86_64/ChangleLog (from rev 132773, 
notion/trunk/ChangleLog)
===
--- community-staging-x86_64/ChangleLog (rev 0)
+++ community-staging-x86_64/ChangleLog

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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 13:29:59
  Author: spupykin
Revision: 132773

upgpkg: notion 20150505-1

upd

Modified:
  notion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 11:29:56 UTC (rev 132772)
+++ PKGBUILD2015-05-05 11:29:59 UTC (rev 132773)
@@ -4,7 +4,7 @@
 # Contributor: aunoor
 
 pkgname=notion
-pkgver=20150118
+pkgver=20150505
 pkgrel=1
 pkgdesc=Tabbed tiling, window manager. Fork of Ion3
 url=http://sourceforge.net/projects/notion/;
@@ -54,12 +54,13 @@
 prepare() {
   cd ${srcdir}
   cat notion/build/lua-detect.mk EOF
-LUA_VERSION := 5.2
+LUA_VERSION := 5.3
 LUA_LIBS := $(pkg-config --libs lua)
 LUA_INCLUDES := $(pkg-config --cflags lua)
 LUA  := $(which lua)
 LUAC := $(which luac)
 EOF
+  sed -i 's|return \(lua_sethook.*\)|\1 return 0;|g' notion/libextl/luaextl.c
 }
 
 build() {


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 13:29:56
  Author: spupykin
Revision: 132772

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

Added:
  lua-zlib/repos/community-staging-i686/
  lua-zlib/repos/community-staging-i686/ChangeLog
(from rev 132771, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-staging-i686/PKGBUILD
(from rev 132771, lua-zlib/trunk/PKGBUILD)
  lua-zlib/repos/community-staging-x86_64/
  lua-zlib/repos/community-staging-x86_64/ChangeLog
(from rev 132771, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-staging-x86_64/PKGBUILD
(from rev 132771, lua-zlib/trunk/PKGBUILD)

+
 community-staging-i686/ChangeLog   |   42 ++
 community-staging-i686/PKGBUILD|   43 +++
 community-staging-x86_64/ChangeLog |   42 ++
 community-staging-x86_64/PKGBUILD  |   43 +++
 4 files changed, 170 insertions(+)

Copied: lua-zlib/repos/community-staging-i686/ChangeLog (from rev 132771, 
lua-zlib/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-05-05 11:29:56 UTC (rev 132772)
@@ -0,0 +1,42 @@
+2010-02-18  Dwayne Bent  db...@liqd.org
+
+   * PKGBUILD:
+   Actually build the library
+   [b994a1eae8e4] [tip]
+
+2010-02-15  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20100215-1 for changeset 82cf8c12f58d
+   [5e6e628919ec]
+
+   * ChangeLog, PKGBUILD:
+   Added ChangeLog
+   [82cf8c12f58d] [v20100215-1]
+
+   * PKGBUILD:
+   Install license file
+   [470c65e1d08b]
+
+   * PKGBUILD:
+   Updated email address
+   [cf9fdc7b9cc5]
+
+   * PKGBUILD:
+   Change package name to reflect the type of package this actually is
+   [39b61ef661d7]
+
+   * PKGBUILD:
+   Clean up PKGBUILD
+   [183b11d1286e]
+
+2009-11-26  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20091125-1 for changeset 8e6cc75fb38b
+   [72c8c117a64c]
+
+   * Makefile, PKGBUILD:
+   Initial commit
+   [8e6cc75fb38b] [v20091125-1]
+

Copied: lua-zlib/repos/community-staging-i686/PKGBUILD (from rev 132771, 
lua-zlib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 11:29:56 UTC (rev 132772)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=(lua-zlib lua51-zlib)
+pkgbase=lua-zlib
+epoch=2
+pkgver=0.4
+pkgrel=1
+url=http://github.com/brimworks/lua-zlib;
+pkgdesc='Simple streaming interface to zlib for Lua.'
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('cmake' 'lua' 'lua51' 'zlib' 'git')
+conflicts=('lua-lzlib')
+#source=(git://github.com/brimworks/lua-zlib.git)
+source=(lua-zlib-$pkgver.tar.gz::https://github.com/brimworks/lua-zlib/archive/v$pkgver.tar.gz;)
+md5sums=('1524ccc3a1c50c16a2955947a8f3b86b')
+
+build() {
+  cp -a $srcdir/lua-zlib-$pkgver $srcdir/lua51-zlib-$pkgver
+
+  cd $srcdir/lua-zlib-$pkgver
+  gcc -o zlib.so -O2 -fPIC -shared lua_zlib.c -llua -lz
+
+  cd $srcdir/lua51-zlib-$pkgver
+  gcc -o zlib.so -O2 -fPIC -shared -I/usr/include/lua5.1 lua_zlib.c -llua5.1 
-lz
+}
+
+package_lua-zlib() {
+  depends=('zlib' 'lua')
+
+  cd $srcdir/lua-zlib-$pkgver
+  install -Dm0755 zlib.so $pkgdir/usr/lib/lua/5.2/zlib.so
+  install -Dm644 README $pkgdir/usr/share/licenses/$pkgname/README
+}
+
+package_lua51-zlib() {
+  depends=('zlib' 'lua51')
+
+  cd $srcdir/lua51-zlib-$pkgver
+  install -Dm0755 zlib.so $pkgdir/usr/lib/lua/5.1/zlib.so
+  install -D -m644 README $pkgdir/usr/share/licenses/$pkgname/README
+}

Copied: lua-zlib/repos/community-staging-x86_64/ChangeLog (from rev 132771, 
lua-zlib/trunk/ChangeLog)
===
--- community-staging-x86_64/ChangeLog  (rev 0)
+++ community-staging-x86_64/ChangeLog  2015-05-05 11:29:56 UTC (rev 132772)
@@ -0,0 +1,42 @@
+2010-02-18  Dwayne Bent  db...@liqd.org
+
+   * PKGBUILD:
+   Actually build the library
+   [b994a1eae8e4] [tip]
+
+2010-02-15  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20100215-1 for changeset 82cf8c12f58d
+   [5e6e628919ec]
+
+   * ChangeLog, PKGBUILD:
+   Added ChangeLog
+   [82cf8c12f58d] [v20100215-1]
+
+   * PKGBUILD:
+   Install license file
+   [470c65e1d08b]
+
+   * PKGBUILD:
+   Updated email address
+   [cf9fdc7b9cc5]
+
+   * PKGBUILD:
+   Change package name to reflect the type of package this actually is
+   [39b61ef661d7]
+
+   * PKGBUILD:
+   Clean up PKGBUILD
+   [183b11d1286e]
+
+2009-11-26  Dwayne Bent  

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

2015-05-05 Thread Kyle Keen
Date: Tuesday, May 5, 2015 @ 14:30:55
  Author: kkeen
Revision: 132782

archrelease: copy trunk to community-any

Added:
  ranger/repos/community-any/PKGBUILD
(from rev 132781, ranger/trunk/PKGBUILD)
Deleted:
  ranger/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-05 12:30:41 UTC (rev 132781)
+++ PKGBUILD2015-05-05 12:30:55 UTC (rev 132782)
@@ -1,36 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-# Previous maintainer: Roman Zimbelmann rom...@lavabit.com
-
-pkgname=ranger
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A simple, vim-like file manager'
-arch=('any')
-url='http://ranger.nongnu.org'
-license=('GPL')
-depends=('python')
-optdepends=(
-'python-chardet: in case of encoding detection problems'
-'sudo: to use the run as root-feature'
-'libcaca: for ASCII-art image previews'
-'highlight: for syntax highlighting of code'
-'atool: for previews of archives'
-'w3m: for previews of images and html pages'
-'lynx: for previews of html pages'
-'elinks: for previews of html pages'
-'poppler: for pdf previews'
-'transmission-cli: for viewing bittorrent information'
-'mediainfo: for viewing information about media files'
-'perl-image-exiftool: for viewing information about media files')
-conflicts=('ranger-git')
-source=(http://ranger.nongnu.org/${pkgname}-${pkgver}.tar.gz;)
-
-package() { 
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # Replace python with the python binary you want ranger to use!
-  # (python 2.6 and =3.1 supported, below 2.6 will certainly not work.)
-  python setup.py -q install --root=${pkgdir} --optimize=1
-}
-
-md5sums=('e1d56e8afdff2e584df18e36e6908fee')

Copied: ranger/repos/community-any/PKGBUILD (from rev 132781, 
ranger/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-05 12:30:55 UTC (rev 132782)
@@ -0,0 +1,36 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Previous maintainer: Roman Zimbelmann rom...@lavabit.com
+
+pkgname=ranger
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='A simple, vim-like file manager'
+arch=('any')
+url='http://ranger.nongnu.org'
+license=('GPL')
+depends=('python')
+optdepends=(
+'python-chardet: in case of encoding detection problems'
+'sudo: to use the run as root-feature'
+'libcaca: for ASCII-art image previews'
+'highlight: for syntax highlighting of code'
+'atool: for previews of archives'
+'w3m: for previews of images and html pages'
+'lynx: for previews of html pages'
+'elinks: for previews of html pages'
+'poppler: for pdf previews'
+'transmission-cli: for viewing bittorrent information'
+'mediainfo: for viewing information about media files'
+'perl-image-exiftool: for viewing information about media files')
+conflicts=('ranger-git')
+source=(http://ranger.nongnu.org/${pkgname}-${pkgver}.tar.gz;)
+
+package() { 
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Replace python with the python binary you want ranger to use!
+  # (python 2.6 and =3.1 supported, below 2.6 will certainly not work.)
+  python setup.py -q install --root=${pkgdir} --optimize=1
+}
+
+md5sums=('ec64bc12d3edfd784b1d67023fdf21fc')


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

2015-05-05 Thread Kyle Keen
Date: Tuesday, May 5, 2015 @ 14:30:41
  Author: kkeen
Revision: 132781

upgpkg: ranger 1.7.1-1

Modified:
  ranger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:24:06 UTC (rev 132780)
+++ PKGBUILD2015-05-05 12:30:41 UTC (rev 132781)
@@ -2,7 +2,7 @@
 # Previous maintainer: Roman Zimbelmann rom...@lavabit.com
 
 pkgname=ranger
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc='A simple, vim-like file manager'
 arch=('any')
@@ -33,4 +33,4 @@
   python setup.py -q install --root=${pkgdir} --optimize=1
 }
 
-md5sums=('e1d56e8afdff2e584df18e36e6908fee')
+md5sums=('ec64bc12d3edfd784b1d67023fdf21fc')


[arch-commits] Commit in luaexpat/trunk (PKGBUILD config.51 config.53)

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:48:19
  Author: spupykin
Revision: 132785

Modified:
  luaexpat/trunk/PKGBUILD
Deleted:
  luaexpat/trunk/config.51
  luaexpat/trunk/config.53

---+
 PKGBUILD  |   10 ++
 config.51 |   26 --
 config.53 |   26 --
 3 files changed, 2 insertions(+), 60 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:47:37 UTC (rev 132784)
+++ PKGBUILD2015-05-05 12:48:19 UTC (rev 132785)
@@ -11,12 +11,8 @@
 url='http://matthewwild.co.uk/projects/luaexpat/'
 license=('MIT')
 makedepends=('gcc' 'lua' 'lua51' 'expat')
-source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;
-   'config.51'
-   'config.53')
-md5sums=('3c20b5795e7107f847f8da844fbfe2da'
- '64abbf5b602e0e31b68db2925a5e6b2f'
- '7d5618fe79b110c34fac530744d72495')
+source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;)
+md5sums=('3c20b5795e7107f847f8da844fbfe2da')
 
 build() {
   # 5.1
@@ -23,12 +19,10 @@
   msg2 Building $pkgbase with lua 5.1
   cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
   cd $pkgbase-$pkgver-51
-#  cp -L $srcdir/config.51 config
   make LUA_V=5.1
   # 5.3
   msg2 Building $pkgbase with lua 5.3
   cd $srcdir/$pkgbase-$pkgver
-#  cp -L $srcdir/config.53 config
   make LUA_V=5.3 CFLAGS='-DLUA_32BITS'
 }
 

Deleted: config.51
===
--- config.51   2015-05-05 12:47:37 UTC (rev 132784)
+++ config.51   2015-05-05 12:48:19 UTC (rev 132785)
@@ -1,26 +0,0 @@
-LUA_LIBDIR= usr/lib/lua/5.1
-LUA_DIR= usr/share/lua/5.1
-LUA_INC= /usr/include/lua5.1
-EXPAT_INC= /usr/include
-
-# OS dependent
-LIB_OPTION= -shared
-
-LIBNAME= $T.so.$V
-LUA_VERSION_NUM= 515
-COMPAT_DIR= ../compat/src
-
-# Compilation parameters
-CWARNS = -Wall -pedantic \
--Waggregate-return \
--Wcast-align \
--Wmissing-prototypes \
--Wstrict-prototypes \
--Wnested-externs \
--Wpointer-arith \
--Wshadow \
--Wwrite-strings
-
-CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
-   -I$(COMPAT_DIR) -I$(EXPAT_INC) -fPIC
-CC = gcc

Deleted: config.53
===
--- config.53   2015-05-05 12:47:37 UTC (rev 132784)
+++ config.53   2015-05-05 12:48:19 UTC (rev 132785)
@@ -1,26 +0,0 @@
-LUA_LIBDIR= usr/lib/lua
-LUA_DIR= usr/share/lua
-LUA_INC= /usr/include
-EXPAT_INC= /usr/include
-
-# OS dependent
-LIB_OPTION= -shared
-
-LIBNAME= $T.so.$V
-LUA_VERSION_NUM= 530
-COMPAT_DIR= ../compat/src
-
-# Compilation parameters
-CWARNS = -Wall -pedantic \
--Waggregate-return \
--Wcast-align \
--Wmissing-prototypes \
--Wstrict-prototypes \
--Wnested-externs \
--Wpointer-arith \
--Wshadow \
--Wwrite-strings
-
-CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
-   -I$(COMPAT_DIR) -I$(EXPAT_INC) -fPIC -DLUA_32BITS
-CC = gcc


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:24:06
  Author: spupykin
Revision: 132780

archrelease: copy trunk to community-any

Added:
  virt-manager/repos/community-any/PKGBUILD
(from rev 132779, virt-manager/trunk/PKGBUILD)
  virt-manager/repos/community-any/virt-manager.install
(from rev 132779, virt-manager/trunk/virt-manager.install)
Deleted:
  virt-manager/repos/community-any/PKGBUILD
  virt-manager/repos/community-any/virt-manager.install

--+
 PKGBUILD |   90 -
 virt-manager.install |   46 -
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-05 12:23:58 UTC (rev 132779)
+++ PKGBUILD2015-05-05 12:24:06 UTC (rev 132780)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-# Contributor: Jonathan Wiersma archaur at jonw dot org
-
-pkgbase=virt-manager
-pkgname=(virt-install virt-manager)
-pkgver=1.1.0
-pkgrel=6
-pkgdesc=Console user interface for managing virtual machines
-arch=('any')
-url=http://virt-manager.org/;
-license=('GPL')
-depends=('python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
-'libosinfo' 'python2-ipaddr' 'python2-gobject')
-makedepends=('intltool=0.35.0'
-'dbus-python' 'gtk-vnc' 'rarian'
-'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser'
-'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
-'gnome-icon-theme' 'graphite' 'spice-gtk3'
-'libvirt-glib' 'vte3')
-source=(http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
-md5sums=('baf6eaa88b02bdd7a3c2fdd293eeb6ac')
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver
-  python2 setup.py build
-}
-
-package_virt-install() {
-  cd $srcdir/$pkgbase-$pkgver
-  python2 setup.py install --root $pkgdir
-}
-
-package_virt-manager() {
-  pkgdesc=Desktop user interface for managing virtual machines
-  install=virt-manager.install
-  depends=('virt-install'
-   'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
-   'dbus-python' 'gtk-vnc' 'rarian'
-   'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser'
-   'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
-   'gnome-icon-theme' 'graphite' 'spice-gtk3'
-   'libvirt-glib' 'vte3')
-}

Copied: virt-manager/repos/community-any/PKGBUILD (from rev 132779, 
virt-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-05 12:24:06 UTC (rev 132780)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Jonathan Wiersma archaur at jonw dot org
+
+pkgbase=virt-manager
+pkgname=(virt-install virt-manager)
+pkgver=1.2.0
+pkgrel=1
+pkgdesc=Console user interface for managing virtual machines
+arch=('any')
+url=http://virt-manager.org/;
+license=('GPL')
+depends=('python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
+'libosinfo' 'python2-ipaddr' 'python2-gobject')
+makedepends=('intltool=0.35.0'
+'dbus-python' 'gtk-vnc' 'rarian'
+'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser'
+'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
+'gnome-icon-theme' 'graphite' 'spice-gtk3'
+'libvirt-glib' 'vte3')
+source=(http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
+md5sums=('89e6c816054f3a3751100a8d79ec97c2')
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver
+  python2 setup.py build
+}
+
+package_virt-install() {
+  cd $srcdir/$pkgbase-$pkgver
+  python2 setup.py install --root $pkgdir
+}
+
+package_virt-manager() {
+  pkgdesc=Desktop user interface for managing virtual machines
+  install=virt-manager.install
+  depends=('virt-install'
+   'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
+   'dbus-python' 'gtk-vnc' 'rarian'
+   'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser'
+   'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
+   'gnome-icon-theme' 'graphite' 'spice-gtk3'
+   'libvirt-glib' 'vte3')
+}

Deleted: virt-manager.install
===
--- virt-manager.install2015-05-05 12:23:58 UTC (rev 132779)
+++ virt-manager.install2015-05-05 12:24:06 UTC (rev 132780)
@@ -1,23 +0,0 @@
-post_install() {
-   [ -x usr/bin/update-desktop-database ]  update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-   pre_remove $1
-}
-
-post_upgrade() {
-   post_install $1
-}
-
-pre_remove() {
- 

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

2015-05-05 Thread Tobias Powalowski
Date: Tuesday, May 5, 2015 @ 14:45:34
  Author: tpowa
Revision: 238498

reenable CONFIG_MEMCG_KMEM

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

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

Modified: config
===
--- config  2015-05-05 08:10:11 UTC (rev 238497)
+++ config  2015-05-05 12:45:34 UTC (rev 238498)
@@ -151,8 +151,8 @@
 CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
-# CONFIG_MEMCG_SWAP_ENABLED is not set
-# CONFIG_MEMCG_KMEM is not set
+CONFIG_MEMCG_SWAP_ENABLED=y 
+CONFIG_MEMCG_KMEM=y
 # CONFIG_CGROUP_HUGETLB is not set
 # CONFIG_CGROUP_PERF is not set
 CONFIG_CGROUP_SCHED=y

Modified: config.x86_64
===
--- config.x86_64   2015-05-05 08:10:11 UTC (rev 238497)
+++ config.x86_64   2015-05-05 12:45:34 UTC (rev 238498)
@@ -159,8 +159,8 @@
 CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
-# CONFIG_MEMCG_SWAP_ENABLED is not set
-# CONFIG_MEMCG_KMEM is not set
+CONFIG_MEMCG_SWAP_ENABLED=y 
+CONFIG_MEMCG_KMEM=y
 # CONFIG_CGROUP_HUGETLB is not set
 # CONFIG_CGROUP_PERF is not set
 CONFIG_CGROUP_SCHED=y


[arch-commits] Commit in luaexpat/trunk (PKGBUILD config.52 config.53 lua52.patch)

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:47:24
  Author: spupykin
Revision: 132783

upgpkg: luaexpat 1.3.0-2

upd

Added:
  luaexpat/trunk/config.53
(from rev 132780, luaexpat/trunk/config.52)
Modified:
  luaexpat/trunk/PKGBUILD
Deleted:
  luaexpat/trunk/config.52
  luaexpat/trunk/lua52.patch

-+
 PKGBUILD|   18 +-
 config.52   |   26 
 config.53   |   26 
 lua52.patch |  372 --
 4 files changed, 35 insertions(+), 407 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:30:55 UTC (rev 132782)
+++ PKGBUILD2015-05-05 12:47:24 UTC (rev 132783)
@@ -5,7 +5,7 @@
 pkgbase=luaexpat
 pkgname=(lua-expat lua51-expat)
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='SAX XML parser based on the Expat library'
 arch=('i686' 'x86_64')
 url='http://matthewwild.co.uk/projects/luaexpat/'
@@ -13,10 +13,10 @@
 makedepends=('gcc' 'lua' 'lua51' 'expat')
 source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;
'config.51'
-   'config.52')
+   'config.53')
 md5sums=('3c20b5795e7107f847f8da844fbfe2da'
  '64abbf5b602e0e31b68db2925a5e6b2f'
- '60ae0633ac6f829cc3359f3533252eb0')
+ '7d5618fe79b110c34fac530744d72495')
 
 build() {
   # 5.1
@@ -23,13 +23,13 @@
   msg2 Building $pkgbase with lua 5.1
   cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
   cd $pkgbase-$pkgver-51
-  cp -L $srcdir/config.51 config
+#  cp -L $srcdir/config.51 config
   make LUA_V=5.1
-  # 5.2
-  msg2 Building $pkgbase with lua 5.2
+  # 5.3
+  msg2 Building $pkgbase with lua 5.3
   cd $srcdir/$pkgbase-$pkgver
-  cp -L $srcdir/config.52 config
-  make LUA_V=5.2
+#  cp -L $srcdir/config.53 config
+  make LUA_V=5.3 CFLAGS='-DLUA_32BITS'
 }
 
 package_lua-expat() {
@@ -36,7 +36,7 @@
   depends=('lua' 'expat')
 
   cd $pkgbase-$pkgver
-  make LUA_V=5.2 DESTDIR=$pkgdir install
+  make LUA_V=5.3 DESTDIR=$pkgdir install
   install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
 }
 

Deleted: config.52
===
--- config.52   2015-05-05 12:30:55 UTC (rev 132782)
+++ config.52   2015-05-05 12:47:24 UTC (rev 132783)
@@ -1,26 +0,0 @@
-LUA_LIBDIR= usr/lib/lua/5.2
-LUA_DIR= usr/share/lua/5.2
-LUA_INC= /usr/include
-EXPAT_INC= /usr/include
-
-# OS dependent
-LIB_OPTION= -shared
-
-LIBNAME= $T.so.$V
-LUA_VERSION_NUM= 521
-COMPAT_DIR= ../compat/src
-
-# Compilation parameters
-CWARNS = -Wall -pedantic \
--Waggregate-return \
--Wcast-align \
--Wmissing-prototypes \
--Wstrict-prototypes \
--Wnested-externs \
--Wpointer-arith \
--Wshadow \
--Wwrite-strings
-
-CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
-   -I$(COMPAT_DIR) -I$(EXPAT_INC) -fPIC
-CC = gcc

Copied: luaexpat/trunk/config.53 (from rev 132780, luaexpat/trunk/config.52)
===
--- config.53   (rev 0)
+++ config.53   2015-05-05 12:47:24 UTC (rev 132783)
@@ -0,0 +1,26 @@
+LUA_LIBDIR= usr/lib/lua
+LUA_DIR= usr/share/lua
+LUA_INC= /usr/include
+EXPAT_INC= /usr/include
+
+# OS dependent
+LIB_OPTION= -shared
+
+LIBNAME= $T.so.$V
+LUA_VERSION_NUM= 530
+COMPAT_DIR= ../compat/src
+
+# Compilation parameters
+CWARNS = -Wall -pedantic \
+-Waggregate-return \
+-Wcast-align \
+-Wmissing-prototypes \
+-Wstrict-prototypes \
+-Wnested-externs \
+-Wpointer-arith \
+-Wshadow \
+-Wwrite-strings
+
+CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
+   -I$(COMPAT_DIR) -I$(EXPAT_INC) -fPIC -DLUA_32BITS
+CC = gcc

Deleted: lua52.patch
===
--- lua52.patch 2015-05-05 12:30:55 UTC (rev 132782)
+++ lua52.patch 2015-05-05 12:47:24 UTC (rev 132783)
@@ -1,372 +0,0 @@
-diff -wbBur luaexpat-1.2.0/config lua-expat-b4e6b167e020/config
 luaexpat-1.2.0/config  2011-06-03 18:17:04.0 +0400
-+++ lua-expat-b4e6b167e020/config  2012-07-28 04:59:45.0 +0400
-@@ -17,8 +17,7 @@
- # (according to Lua 5.1 definition:
- # first version digit * 100 + second version digit
- # e.g. Lua 5.0.2 = 500, Lua 5.1 = 501, Lua 5.1.1 = 501)
--LUA_VERSION_NUM= 500
--COMPAT_DIR= ../compat/src
-+LUA_VERSION_NUM= 502
- 
- # Compilation parameters
- CWARNS = -Wall -pedantic \
-@@ -31,6 +30,6 @@
- -Wshadow \
- -Wwrite-strings
- 
--CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
--   -I$(COMPAT_DIR) -I$(EXPAT_INC)
-+CFLAGS = $(CWARNS) -ansi -O2 -fPIC -I$(LUA_INC) \
-+   -I$(EXPAT_INC)
- CC = gcc
-diff -wbBur luaexpat-1.2.0/.hg_archival.txt 
lua-expat-b4e6b167e020/.hg_archival.txt
 luaexpat-1.2.0/.hg_archival.txt2011-06-03 18:17:04.0 +0400
-+++ lua-expat-b4e6b167e020/.hg_archival.txt2012-07-28 04:59:45.0 
+0400
-@@ -1,4 +1,5 @@
- repo: 

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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 14:47:37
  Author: spupykin
Revision: 132784

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

Added:
  luaexpat/repos/community-staging-i686/
  luaexpat/repos/community-staging-i686/PKGBUILD
(from rev 132783, luaexpat/trunk/PKGBUILD)
  luaexpat/repos/community-staging-i686/config.51
(from rev 132783, luaexpat/trunk/config.51)
  luaexpat/repos/community-staging-i686/config.53
(from rev 132783, luaexpat/trunk/config.53)
  luaexpat/repos/community-staging-x86_64/
  luaexpat/repos/community-staging-x86_64/PKGBUILD
(from rev 132783, luaexpat/trunk/PKGBUILD)
  luaexpat/repos/community-staging-x86_64/config.51
(from rev 132783, luaexpat/trunk/config.51)
  luaexpat/repos/community-staging-x86_64/config.53
(from rev 132783, luaexpat/trunk/config.53)

+
 community-staging-i686/PKGBUILD|   51 +++
 community-staging-i686/config.51   |   26 +
 community-staging-i686/config.53   |   26 +
 community-staging-x86_64/PKGBUILD  |   51 +++
 community-staging-x86_64/config.51 |   26 +
 community-staging-x86_64/config.53 |   26 +
 6 files changed, 206 insertions(+)

Copied: luaexpat/repos/community-staging-i686/PKGBUILD (from rev 132783, 
luaexpat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 12:47:37 UTC (rev 132784)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Lucas Hermann Negri kknd...@gmail.com
+
+pkgbase=luaexpat
+pkgname=(lua-expat lua51-expat)
+pkgver=1.3.0
+pkgrel=2
+pkgdesc='SAX XML parser based on the Expat library'
+arch=('i686' 'x86_64')
+url='http://matthewwild.co.uk/projects/luaexpat/'
+license=('MIT')
+makedepends=('gcc' 'lua' 'lua51' 'expat')
+source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;
+   'config.51'
+   'config.53')
+md5sums=('3c20b5795e7107f847f8da844fbfe2da'
+ '64abbf5b602e0e31b68db2925a5e6b2f'
+ '7d5618fe79b110c34fac530744d72495')
+
+build() {
+  # 5.1
+  msg2 Building $pkgbase with lua 5.1
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
+  cd $pkgbase-$pkgver-51
+#  cp -L $srcdir/config.51 config
+  make LUA_V=5.1
+  # 5.3
+  msg2 Building $pkgbase with lua 5.3
+  cd $srcdir/$pkgbase-$pkgver
+#  cp -L $srcdir/config.53 config
+  make LUA_V=5.3 CFLAGS='-DLUA_32BITS'
+}
+
+package_lua-expat() {
+  depends=('lua' 'expat')
+
+  cd $pkgbase-$pkgver
+  make LUA_V=5.3 DESTDIR=$pkgdir install
+  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua51-expat() {
+  depends=('lua51' 'expat')
+  replaces=('luaexpat')
+  conflicts=('luaexpat')
+
+  cd $pkgbase-$pkgver-51
+  make LUA_V=5.1 DESTDIR=$pkgdir install
+  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}

Copied: luaexpat/repos/community-staging-i686/config.51 (from rev 132783, 
luaexpat/trunk/config.51)
===
--- community-staging-i686/config.51(rev 0)
+++ community-staging-i686/config.512015-05-05 12:47:37 UTC (rev 132784)
@@ -0,0 +1,26 @@
+LUA_LIBDIR= usr/lib/lua/5.1
+LUA_DIR= usr/share/lua/5.1
+LUA_INC= /usr/include/lua5.1
+EXPAT_INC= /usr/include
+
+# OS dependent
+LIB_OPTION= -shared
+
+LIBNAME= $T.so.$V
+LUA_VERSION_NUM= 515
+COMPAT_DIR= ../compat/src
+
+# Compilation parameters
+CWARNS = -Wall -pedantic \
+-Waggregate-return \
+-Wcast-align \
+-Wmissing-prototypes \
+-Wstrict-prototypes \
+-Wnested-externs \
+-Wpointer-arith \
+-Wshadow \
+-Wwrite-strings
+
+CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
+   -I$(COMPAT_DIR) -I$(EXPAT_INC) -fPIC
+CC = gcc

Copied: luaexpat/repos/community-staging-i686/config.53 (from rev 132783, 
luaexpat/trunk/config.53)
===
--- community-staging-i686/config.53(rev 0)
+++ community-staging-i686/config.532015-05-05 12:47:37 UTC (rev 132784)
@@ -0,0 +1,26 @@
+LUA_LIBDIR= usr/lib/lua
+LUA_DIR= usr/share/lua
+LUA_INC= /usr/include
+EXPAT_INC= /usr/include
+
+# OS dependent
+LIB_OPTION= -shared
+
+LIBNAME= $T.so.$V
+LUA_VERSION_NUM= 530
+COMPAT_DIR= ../compat/src
+
+# Compilation parameters
+CWARNS = -Wall -pedantic \
+-Waggregate-return \
+-Wcast-align \
+-Wmissing-prototypes \
+-Wstrict-prototypes \
+-Wnested-externs \
+-Wpointer-arith \
+-Wshadow \
+-Wwrite-strings
+
+CFLAGS = $(CWARNS) -ansi -O2 -I$(LUA_INC) \
+   -I$(COMPAT_DIR) -I$(EXPAT_INC) -fPIC -DLUA_32BITS
+CC = gcc

Copied: 

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

2015-05-05 Thread Antonio Rojas
Date: Wednesday, May 6, 2015 @ 01:04:42
  Author: arojas
Revision: 238521

Generated CMake files are arch-dependent

Modified:
  ttf-oxygen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 22:08:39 UTC (rev 238520)
+++ PKGBUILD2015-05-05 23:04:42 UTC (rev 238521)
@@ -1,15 +1,15 @@
 # $Id$
 # Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas nqn1976 @ gmail.com
+# Contributor: Antonio Rojas aro...@archlinux.org
 
 pkgname=ttf-oxygen
 epoch=1
 pkgver=5.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='The Oxygen font family. A desktop/gui font family for integrated use 
with the KDE desktop'
 url='https://projects.kde.org/projects/kde/workspace/oxygen-fonts'
-arch=('any')
+arch=('i686' 'x86_64') # CMake files are arch-dependent
 license=('custom:OFL' 'GPL' 'custom:GPL+FE')
 depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
 makedepends=('extra-cmake-modules' 'qt5-base' 'fontforge')


[arch-commits] Commit in ttf-oxygen/repos (extra-any)

2015-05-05 Thread Antonio Rojas
Date: Wednesday, May 6, 2015 @ 01:05:39
  Author: arojas
Revision: 238523

Removed extra-any for ttf-oxygen

Deleted:
  ttf-oxygen/repos/extra-any/


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

2015-05-05 Thread Antonio Rojas
Date: Wednesday, May 6, 2015 @ 01:05:35
  Author: arojas
Revision: 238522

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

Added:
  ttf-oxygen/repos/extra-i686/
  ttf-oxygen/repos/extra-i686/PKGBUILD
(from rev 238521, ttf-oxygen/trunk/PKGBUILD)
  ttf-oxygen/repos/extra-i686/ttf-oxygen.install
(from rev 238521, ttf-oxygen/trunk/ttf-oxygen.install)
  ttf-oxygen/repos/extra-x86_64/
  ttf-oxygen/repos/extra-x86_64/PKGBUILD
(from rev 238521, ttf-oxygen/trunk/PKGBUILD)
  ttf-oxygen/repos/extra-x86_64/ttf-oxygen.install
(from rev 238521, ttf-oxygen/trunk/ttf-oxygen.install)

-+
 extra-i686/PKGBUILD |   48 ++
 extra-i686/ttf-oxygen.install   |   15 +++
 extra-x86_64/PKGBUILD   |   48 ++
 extra-x86_64/ttf-oxygen.install |   15 +++
 4 files changed, 126 insertions(+)

Copied: ttf-oxygen/repos/extra-i686/PKGBUILD (from rev 238521, 
ttf-oxygen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 23:05:35 UTC (rev 238522)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=ttf-oxygen
+epoch=1
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='The Oxygen font family. A desktop/gui font family for integrated use 
with the KDE desktop'
+url='https://projects.kde.org/projects/kde/workspace/oxygen-fonts'
+arch=('i686' 'x86_64') # CMake files are arch-dependent
+license=('custom:OFL' 'GPL' 'custom:GPL+FE')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+makedepends=('extra-cmake-modules' 'qt5-base' 'fontforge')
+provides=('ttf-font')
+options=('!emptydirs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/oxygen-fonts-${pkgver}.tar.xz;)
+md5sums=('1899f95757694bf849ff0661797e09d2')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../oxygen-fonts-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Fix install path
+  install -d ${pkgdir}/usr/share/fonts/TTF
+  mv ${pkgdir}/usr/share/fonts/truetype/oxygen/*.ttf \
+${pkgdir}/usr/share/fonts/TTF/
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 ${srcdir}/oxygen-fonts-${pkgver}/COPYING-{GPL+FE.txt,OFL} \
+${pkgdir}/usr/share/licenses/${pkgname}
+}

Copied: ttf-oxygen/repos/extra-i686/ttf-oxygen.install (from rev 238521, 
ttf-oxygen/trunk/ttf-oxygen.install)
===
--- extra-i686/ttf-oxygen.install   (rev 0)
+++ extra-i686/ttf-oxygen.install   2015-05-05 23:05:35 UTC (rev 238522)
@@ -0,0 +1,15 @@
+post_install() {
+  echo -n Updating font cache... 
+  fc-cache -s
+  mkfontscale /usr/share/fonts/TTF
+  mkfontdir /usr/share/fonts/TTF
+  echo done.
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: ttf-oxygen/repos/extra-x86_64/PKGBUILD (from rev 238521, 
ttf-oxygen/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-05-05 23:05:35 UTC (rev 238522)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=ttf-oxygen
+epoch=1
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='The Oxygen font family. A desktop/gui font family for integrated use 
with the KDE desktop'
+url='https://projects.kde.org/projects/kde/workspace/oxygen-fonts'
+arch=('i686' 'x86_64') # CMake files are arch-dependent
+license=('custom:OFL' 'GPL' 'custom:GPL+FE')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+makedepends=('extra-cmake-modules' 'qt5-base' 'fontforge')
+provides=('ttf-font')
+options=('!emptydirs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/oxygen-fonts-${pkgver}.tar.xz;)
+md5sums=('1899f95757694bf849ff0661797e09d2')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../oxygen-fonts-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Fix install path
+  install -d ${pkgdir}/usr/share/fonts/TTF
+  mv ${pkgdir}/usr/share/fonts/truetype/oxygen/*.ttf \
+${pkgdir}/usr/share/fonts/TTF/
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 

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

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:22:16
  Author: heftig
Revision: 132818

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

Added:
  simple-scan/repos/community-i686/PKGBUILD
(from rev 132817, simple-scan/trunk/PKGBUILD)
  simple-scan/repos/community-i686/simple-scan.install
(from rev 132817, simple-scan/trunk/simple-scan.install)
  simple-scan/repos/community-x86_64/PKGBUILD
(from rev 132817, simple-scan/trunk/PKGBUILD)
  simple-scan/repos/community-x86_64/simple-scan.install
(from rev 132817, simple-scan/trunk/simple-scan.install)
Deleted:
  simple-scan/repos/community-i686/PKGBUILD
  simple-scan/repos/community-i686/simple-scan.install
  simple-scan/repos/community-x86_64/PKGBUILD
  simple-scan/repos/community-x86_64/simple-scan.install

--+
 /PKGBUILD|   60 +
 /simple-scan.install |   36 +++
 community-i686/PKGBUILD  |   30 
 community-i686/simple-scan.install   |   18 -
 community-x86_64/PKGBUILD|   30 
 community-x86_64/simple-scan.install |   18 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-05 23:21:26 UTC (rev 132817)
+++ community-i686/PKGBUILD 2015-05-05 23:22:16 UTC (rev 132818)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
-
-pkgname=simple-scan
-pkgver=3.14.2
-pkgrel=1
-pkgdesc='Simple scanning utility'
-arch=('i686' 'x86_64')
-url='http://launchpad.net/simple-scan'
-license=('GPL3')
-depends=('sane' 'dconf' 'gtk3' 'colord' 'hicolor-icon-theme')
-makedepends=('yelp-tools' 'intltool' 'vala')
-install=$pkgname.install
-source=(https://launchpad.net/$pkgname/${pkgver:0:4}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
-sha256sums=('d46caaafd2dfe46cf7e022363842cf3da0721b70768de5d29c808d1e5953a6a3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simple-scan/repos/community-i686/PKGBUILD (from rev 132817, 
simple-scan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-05 23:22:16 UTC (rev 132818)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
+
+pkgname=simple-scan
+pkgver=3.16.1.1
+pkgrel=1
+pkgdesc='Simple scanning utility'
+arch=('i686' 'x86_64')
+url='http://launchpad.net/simple-scan'
+license=('GPL3')
+depends=('sane' 'dconf' 'gtk3' 'colord' 'hicolor-icon-theme')
+makedepends=('yelp-tools' 'intltool' 'vala')
+install=$pkgname.install
+source=(https://launchpad.net/$pkgname/${pkgver:0:4}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
+sha256sums=('6917cf5eecfcd453822dabe824a7a48381b00dd85fe241e15407f584ba8e060c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/simple-scan.install
===
--- community-i686/simple-scan.install  2015-05-05 23:21:26 UTC (rev 132817)
+++ community-i686/simple-scan.install  2015-05-05 23:22:16 UTC (rev 132818)
@@ -1,18 +0,0 @@
-post_install() {
-  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  if (( $(vercmp $2 3.1.3)  0 )); then
-usr/sbin/gconfpkg --uninstall simple-scan
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: simple-scan/repos/community-i686/simple-scan.install (from rev 132817, 
simple-scan/trunk/simple-scan.install)
===
--- community-i686/simple-scan.install  (rev 0)
+++ community-i686/simple-scan.install  2015-05-05 23:22:16 UTC (rev 132818)
@@ -0,0 +1,18 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  if (( $(vercmp $2 3.1.3)  0 )); then
+usr/sbin/gconfpkg --uninstall simple-scan
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-05 23:21:26 UTC (rev 132817)
+++ 

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

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:56:10
  Author: heftig
Revision: 238529

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

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

---+
 /PKGBUILD |  134 
 extra-i686/PKGBUILD   |   61 
 extra-i686/modemmanager.install   |   13 +++
 extra-x86_64/PKGBUILD |   61 
 extra-x86_64/modemmanager.install |   13 +++
 5 files changed, 160 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 23:54:59 UTC (rev 238528)
+++ extra-i686/PKGBUILD 2015-05-05 23:56:10 UTC (rev 238529)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgbase=modemmanager
-pkgname=(modemmanager libmm-glib)
-pkgver=1.4.6
-pkgrel=1
-pkgdesc=Mobile broadband modem management service
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/ModemManager/;
-license=(GPL2 LGPL2.1)
-depends=(systemd polkit ppp libqmi libmbim)
-makedepends=(intltool gtk-doc gobject-introspection vala)
-source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz)
-sha256sums=('0cedabf46310f8c56630b116944f54ee64369c76c2f35f5f460ca19a8bb5a5cd')
-
-build() {
-  cd ModemManager-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---with-udev-base-dir=/usr/lib/udev \
---with-polkit=permissive \
---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
-}
-
-package_modemmanager() {
-  depends+=(libmm-glib)
-  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
-  options=(!emptydirs)
-
-  cd ModemManager-$pkgver
-  make DESTDIR=$pkgdir install
-  make DESTDIR=$pkgdir -C libmm-glib uninstall
-  make DESTDIR=$pkgdir -C vapi uninstall
-
-  # Some stuff to move is left over
-  mv $pkgdir/usr/include ..
-  mv $pkgdir/usr/lib/pkgconfig ..
-}
-
-package_libmm-glib() {
-  pkgdesc=ModemManager library
-  depends=(glib2)
-
-  install -d $pkgdir/usr/lib
-  mv include $pkgdir/usr
-  mv pkgconfig $pkgdir/usr/lib
-
-  cd ModemManager-$pkgver
-  make DESTDIR=$pkgdir -C libmm-glib install
-  make DESTDIR=$pkgdir -C vapi install
-}

Copied: modemmanager/repos/extra-i686/PKGBUILD (from rev 238528, 
modemmanager/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 23:56:10 UTC (rev 238529)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgbase=modemmanager
+pkgname=(modemmanager libmm-glib)
+pkgver=1.4.8
+pkgrel=1
+pkgdesc=Mobile broadband modem management service
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/ModemManager/;
+license=(GPL2 LGPL2.1)
+depends=(systemd polkit ppp libqmi libmbim hicolor-icon-theme)
+makedepends=(intltool gtk-doc gobject-introspection vala)
+source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz)
+sha256sums=('d951eaffbe513bcde54f90602c6c423a49593f656d6485ba95f6fcb4bc1e8003')
+
+build() {
+  cd ModemManager-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--with-udev-base-dir=/usr/lib/udev \
+--with-polkit=permissive \
+--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 ModemManager-$pkgver
+  make -k check
+}
+
+package_modemmanager() {
+  depends+=(libmm-glib)
+  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
+  options=(!emptydirs)
+  install=modemmanager.install
+
+  cd ModemManager-$pkgver
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C libmm-glib uninstall
+  make DESTDIR=$pkgdir -C vapi uninstall
+
+  # Some stuff to move is left over
+  mv $pkgdir/usr/include ..
+  mv $pkgdir/usr/lib/pkgconfig ..
+}
+
+package_libmm-glib() {
+  pkgdesc=ModemManager library
+  

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

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:43:55
  Author: heftig
Revision: 238526

0.18.2

Modified:
  libsecret/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 23:30:47 UTC (rev 238525)
+++ PKGBUILD2015-05-05 23:43:55 UTC (rev 238526)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libsecret
-pkgver=0.18
+pkgver=0.18.2
 pkgrel=1
 pkgdesc='Library for storing and retrieving passwords and other secrets.'
 arch=('i686' 'x86_64')
@@ -9,11 +9,17 @@
 license=('LGPL')
 url=https://wiki.gnome.org/Projects/Libsecret;
 depends=('glib2' 'libgcrypt')
+checkdepends=('python2-dbus' 'dbus-glib' 'python2-gobject2' 'python2-gobject' 
'gjs')
 makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'vala')
 optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('0c73aa762dbd1e38ba7b03de350e23ce818cb810b0784375e95ef61e004b02e3')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('12fd288b012e1b2b1b54d586cd4c6507885715534644b4534b7ef7d7079ba443')
 
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
@@ -21,6 +27,11 @@
   make
 }
 
+check() {
+  cd $pkgname-$pkgver
+  PATH=$srcdir/path:$PATH dbus-run-session make -k check 
+}
+
 package() {
   cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install


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

2015-05-05 Thread Dan McGee
Date: Wednesday, May 6, 2015 @ 03:29:47
  Author: dan
Revision: 238531

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 238530, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 238530, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 238530, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 238530, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 238530, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 238530, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 238530, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 238530, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /PKGBUILD|  224 +
 /git-daemon.socket   |   18 ++
 /git-daemon@.service |   20 +++
 /git.install |   42 ++
 extra-i686/PKGBUILD  |  112 --
 extra-i686/git-daemon.socket |9 -
 extra-i686/git-daemon@.service   |   10 -
 extra-i686/git.install   |   21 ---
 extra-x86_64/PKGBUILD|  112 --
 extra-x86_64/git-daemon.socket   |9 -
 extra-x86_64/git-daemon@.service |   10 -
 extra-x86_64/git.install |   21 ---
 12 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-06 01:29:34 UTC (rev 238530)
+++ extra-i686/PKGBUILD 2015-05-06 01:29:47 UTC (rev 238531)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-
-pkgname=git
-pkgver=2.3.7
-pkgrel=1
-pkgdesc=the fast distributed version control system
-arch=(i686 x86_64)
-url=http://git-scm.com/;
-license=('GPL2')
-depends=('curl' 'expat=2.0' 'perl-error' 'perl=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs' 'libgnome-keyring' 'xmlto' 'asciidoc')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps2: git cvsimport'
-'gnome-keyring: GNOME keyring credential helper')
-replaces=('git-core')
-provides=('git-core')
-install=git.install
-source=(https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.xz;
-git-daemon@.service
-git-daemon.socket)
-md5sums=('707c5da5d5907af8f16e137605c82406'
- '042524f942785772d7bd52a1f02fe5ae'
- 'f67869315c2cc112e076f0c73f248002')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-}
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-all doc
-
-  make -C contrib/emacs prefix=/usr
-  make -C contrib/credential/gnome-keyring
-  make -C contrib/subtree prefix=/usr gitexecdir=/usr/lib/git-core all doc
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  local jobs
-  jobs=$(expr $MAKEFLAGS : '.*\(-j[0-9]*\).*') || true
-  mkdir -p /dev/shm/git-test
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS=$jobs -Q \
-GIT_TEST_OPTS=--root=/dev/shm/git-test \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-INSTALLDIRS=vendor DESTDIR=$pkgdir install install-doc
-
-  # bash completion
-  mkdir -p $pkgdir/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
$pkgdir/usr/share/bash-completion/completions/git
-  # fancy git prompt
-  mkdir -p $pkgdir/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
$pkgdir/usr/share/git/git-prompt.sh
-  # emacs
-  make -C contrib/emacs prefix=/usr DESTDIR=$pkgdir install
-  # gnome credentials helper
-  install -m755 

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

2015-05-05 Thread Dan McGee
Date: Wednesday, May 6, 2015 @ 03:29:34
  Author: dan
Revision: 238530

upgpkg: git 2.4.0-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 23:56:10 UTC (rev 238529)
+++ PKGBUILD2015-05-06 01:29:34 UTC (rev 238530)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=git
-pkgver=2.3.7
+pkgver=2.4.0
 pkgrel=1
 pkgdesc=the fast distributed version control system
 arch=(i686 x86_64)
@@ -26,7 +26,7 @@
 source=(https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.xz;
 git-daemon@.service
 git-daemon.socket)
-md5sums=('707c5da5d5907af8f16e137605c82406'
+md5sums=('cd0aa04a037c2520a648ed790862d5f7'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')
 


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

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:21:26
  Author: heftig
Revision: 132817

3.16.1.1

Modified:
  simple-scan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 21:51:25 UTC (rev 132816)
+++ PKGBUILD2015-05-05 23:21:26 UTC (rev 132817)
@@ -4,7 +4,7 @@
 # Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
 
 pkgname=simple-scan
-pkgver=3.14.2
+pkgver=3.16.1.1
 pkgrel=1
 pkgdesc='Simple scanning utility'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('yelp-tools' 'intltool' 'vala')
 install=$pkgname.install
 
source=(https://launchpad.net/$pkgname/${pkgver:0:4}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
-sha256sums=('d46caaafd2dfe46cf7e022363842cf3da0721b70768de5d29c808d1e5953a6a3')
+sha256sums=('6917cf5eecfcd453822dabe824a7a48381b00dd85fe241e15407f584ba8e060c')
 
 build() {
   cd $pkgname-$pkgver


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

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:45:45
  Author: heftig
Revision: 238527

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 23:43:55 UTC (rev 238526)
+++ extra-i686/PKGBUILD 2015-05-05 23:45:45 UTC (rev 238527)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsecret
-pkgver=0.18
-pkgrel=1
-pkgdesc='Library for storing and retrieving passwords and other secrets.'
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=https://wiki.gnome.org/Projects/Libsecret;
-depends=('glib2' 'libgcrypt')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'vala')
-optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('0c73aa762dbd1e38ba7b03de350e23ce818cb810b0784375e95ef61e004b02e3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsecret/repos/extra-i686/PKGBUILD (from rev 238526, 
libsecret/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 23:45:45 UTC (rev 238527)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsecret
+pkgver=0.18.2
+pkgrel=1
+pkgdesc='Library for storing and retrieving passwords and other secrets.'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=https://wiki.gnome.org/Projects/Libsecret;
+depends=('glib2' 'libgcrypt')
+checkdepends=('python2-dbus' 'dbus-glib' 'python2-gobject2' 'python2-gobject' 
'gjs')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'vala')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('12fd288b012e1b2b1b54d586cd4c6507885715534644b4534b7ef7d7079ba443')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  PATH=$srcdir/path:$PATH dbus-run-session make -k check 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-05-05 23:43:55 UTC (rev 238526)
+++ extra-x86_64/PKGBUILD   2015-05-05 23:45:45 UTC (rev 238527)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsecret
-pkgver=0.18
-pkgrel=1
-pkgdesc='Library for storing and retrieving passwords and other secrets.'
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=https://wiki.gnome.org/Projects/Libsecret;
-depends=('glib2' 'libgcrypt')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'vala')
-optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('0c73aa762dbd1e38ba7b03de350e23ce818cb810b0784375e95ef61e004b02e3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsecret/repos/extra-x86_64/PKGBUILD (from rev 238526, 
libsecret/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-05-05 23:45:45 UTC (rev 238527)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsecret
+pkgver=0.18.2
+pkgrel=1
+pkgdesc='Library for storing and retrieving passwords and other secrets.'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=https://wiki.gnome.org/Projects/Libsecret;
+depends=('glib2' 'libgcrypt')
+checkdepends=('python2-dbus' 'dbus-glib' 'python2-gobject2' 'python2-gobject' 
'gjs')

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

2015-05-05 Thread Daniel Wallace
Date: Wednesday, May 6, 2015 @ 02:37:29
  Author: dwallace
Revision: 132820

upgpkg: livestreamer 1.12.2-1

upgpkg: livestreamer 1.12.2

Modified:
  livestreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-06 00:13:15 UTC (rev 132819)
+++ PKGBUILD2015-05-06 00:37:29 UTC (rev 132820)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
 # Contributor: Christopher Rosell chri...@tanuki.se
 pkgname=livestreamer
-pkgver=1.12.1
+pkgver=1.12.2
 pkgrel=1
 pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python-requests' 'rtmpdump' 'python-setuptools')
 makedepends=('python-sphinx')
 
source=(https://pypi.python.org/packages/source/l/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('24c44226d8eb79ecfd568b0169e91a0bdcaf73e81b6b795f6d38e4d962093f5c')
+sha256sums=('ef3e743d0cabc27d8ad906c356e74370799e25ba46c94d3b8d585af77a258de0')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2015-05-05 Thread Daniel Wallace
Date: Wednesday, May 6, 2015 @ 02:37:55
  Author: dwallace
Revision: 132821

archrelease: copy trunk to community-any

Added:
  livestreamer/repos/community-any/PKGBUILD
(from rev 132820, livestreamer/trunk/PKGBUILD)
Deleted:
  livestreamer/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-06 00:37:29 UTC (rev 132820)
+++ PKGBUILD2015-05-06 00:37:55 UTC (rev 132821)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Christopher Rosell chri...@tanuki.se
-pkgname=livestreamer
-pkgver=1.12.1
-pkgrel=1
-pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player'
-arch=('any')
-url='https://github.com/chrippa/livestreamer'
-license=('BSD')
-depends=('python-requests' 'rtmpdump' 'python-setuptools')
-makedepends=('python-sphinx')
-source=(https://pypi.python.org/packages/source/l/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('24c44226d8eb79ecfd568b0169e91a0bdcaf73e81b6b795f6d38e4d962093f5c')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  python setup.py build_sphinx -b man
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  python setup.py install --root=$pkgdir --optimize=1
-
-  install -Dm644 build/sphinx/man/livestreamer.1 \
-$pkgdir/usr/share/man/man1/livestreamer.1
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: livestreamer/repos/community-any/PKGBUILD (from rev 132820, 
livestreamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-06 00:37:55 UTC (rev 132821)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Christopher Rosell chri...@tanuki.se
+pkgname=livestreamer
+pkgver=1.12.2
+pkgrel=1
+pkgdesc='CLI program that launches streams from various streaming services in 
a custom video player'
+arch=('any')
+url='https://github.com/chrippa/livestreamer'
+license=('BSD')
+depends=('python-requests' 'rtmpdump' 'python-setuptools')
+makedepends=('python-sphinx')
+source=(https://pypi.python.org/packages/source/l/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('ef3e743d0cabc27d8ad906c356e74370799e25ba46c94d3b8d585af77a258de0')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  python setup.py build_sphinx -b man
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  python setup.py install --root=$pkgdir --optimize=1
+
+  install -Dm644 build/sphinx/man/livestreamer.1 \
+$pkgdir/usr/share/man/man1/livestreamer.1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-file-which/trunk (PKGBUILD)

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:29:40
  Author: heftig
Revision: 238524

1.18

Modified:
  perl-file-which/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 23:05:39 UTC (rev 238523)
+++ PKGBUILD2015-05-05 23:29:40 UTC (rev 238524)
@@ -4,8 +4,8 @@
 
 pkgname=perl-file-which
 _realname=File-Which
-pkgver=1.09
-pkgrel=4
+pkgver=1.18
+pkgrel=1
 pkgdesc=Portable implementation of which
 arch=(any)
 url=http://search.cpan.org/dist/File-Which;
@@ -12,8 +12,9 @@
 license=(GPL PerlArtistic)
 depends=(perl)
 options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/A/AD/ADAMK/${_realname}-${pkgver}.tar.gz;)
-md5sums=('b9429edaad7f45caafa4d458afcfd8af')
+_author=PLICEASE
+source=(http://www.cpan.org/authors/id/${_author:0:1}/${_author:0:2}/$_author/${_realname}-${pkgver}.tar.gz;)
+md5sums=('554bfb36568d828fbeee64f4b9a9faa8')
 
 build() {
   cd $srcdir/${_realname}-${pkgver}


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

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:54:59
  Author: heftig
Revision: 238528

1.4.8

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

--+
 PKGBUILD |   12 +---
 modemmanager.install |   13 +
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 23:45:45 UTC (rev 238527)
+++ PKGBUILD2015-05-05 23:54:59 UTC (rev 238528)
@@ -4,16 +4,16 @@
 
 pkgbase=modemmanager
 pkgname=(modemmanager libmm-glib)
-pkgver=1.4.6
+pkgver=1.4.8
 pkgrel=1
 pkgdesc=Mobile broadband modem management service
 arch=(i686 x86_64)
 url=http://www.freedesktop.org/wiki/Software/ModemManager/;
 license=(GPL2 LGPL2.1)
-depends=(systemd polkit ppp libqmi libmbim)
+depends=(systemd polkit ppp libqmi libmbim hicolor-icon-theme)
 makedepends=(intltool gtk-doc gobject-introspection vala)
 
source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz)
-sha256sums=('0cedabf46310f8c56630b116944f54ee64369c76c2f35f5f460ca19a8bb5a5cd')
+sha256sums=('d951eaffbe513bcde54f90602c6c423a49593f656d6485ba95f6fcb4bc1e8003')
 
 build() {
   cd ModemManager-$pkgver
@@ -32,10 +32,16 @@
   make
 }
 
+check() {
+  cd ModemManager-$pkgver
+  make -k check
+}
+
 package_modemmanager() {
   depends+=(libmm-glib)
   optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
   options=(!emptydirs)
+  install=modemmanager.install
 
   cd ModemManager-$pkgver
   make DESTDIR=$pkgdir install

Added: modemmanager.install
===
--- modemmanager.install(rev 0)
+++ modemmanager.install2015-05-05 23:54:59 UTC (rev 238528)
@@ -0,0 +1,13 @@
+post_install() {
+  if [[ -x usr/bin/gtk-update-icon-cache ]]; then
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in perl-file-which/repos/extra-any (PKGBUILD PKGBUILD)

2015-05-05 Thread Jan Steffens
Date: Wednesday, May 6, 2015 @ 01:30:47
  Author: heftig
Revision: 238525

archrelease: copy trunk to extra-any

Added:
  perl-file-which/repos/extra-any/PKGBUILD
(from rev 238524, perl-file-which/trunk/PKGBUILD)
Deleted:
  perl-file-which/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   55 ---
 1 file changed, 28 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-05 23:29:40 UTC (rev 238524)
+++ PKGBUILD2015-05-05 23:30:47 UTC (rev 238525)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Charles Mauch cma...@gmail.com
-
-pkgname=perl-file-which
-_realname=File-Which
-pkgver=1.09
-pkgrel=4
-pkgdesc=Portable implementation of which
-arch=(any)
-url=http://search.cpan.org/dist/File-Which;
-license=(GPL PerlArtistic)
-depends=(perl)
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/A/AD/ADAMK/${_realname}-${pkgver}.tar.gz;)
-md5sums=('b9429edaad7f45caafa4d458afcfd8af')
-
-build() {
-  cd $srcdir/${_realname}-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/${_realname}-${pkgver}
-  make install DESTDIR=$pkgdir
-}

Copied: perl-file-which/repos/extra-any/PKGBUILD (from rev 238524, 
perl-file-which/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-05 23:30:47 UTC (rev 238525)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Charles Mauch cma...@gmail.com
+
+pkgname=perl-file-which
+_realname=File-Which
+pkgver=1.18
+pkgrel=1
+pkgdesc=Portable implementation of which
+arch=(any)
+url=http://search.cpan.org/dist/File-Which;
+license=(GPL PerlArtistic)
+depends=(perl)
+options=('!emptydirs')
+_author=PLICEASE
+source=(http://www.cpan.org/authors/id/${_author:0:1}/${_author:0:2}/$_author/${_realname}-${pkgver}.tar.gz;)
+md5sums=('554bfb36568d828fbeee64f4b9a9faa8')
+
+build() {
+  cd $srcdir/${_realname}-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/${_realname}-${pkgver}
+  make install DESTDIR=$pkgdir
+}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:00:17
  Author: anatolik
Revision: 132793

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

Added:
  luasocket/repos/community-staging-i686/PKGBUILD
(from rev 132792, luasocket/trunk/PKGBUILD)
  luasocket/repos/community-staging-x86_64/PKGBUILD
(from rev 132792, luasocket/trunk/PKGBUILD)
Deleted:
  luasocket/repos/community-staging-i686/PKGBUILD
  luasocket/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  152 
 community-staging-i686/PKGBUILD   |   56 -
 community-staging-x86_64/PKGBUILD |   56 -
 3 files changed, 152 insertions(+), 112 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 14:59:39 UTC (rev 132792)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:00:17 UTC (rev 132793)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Anders Bergh ande...@gmail.com
-
-pkgbase=luasocket
-pkgname=(lua-socket lua51-socket)
-pkgver=3.0rc1
-pkgrel=5
-pkgdesc='Networking support library for the Lua language'
-arch=('i686' 'x86_64')
-url='https://github.com/diegonehab/luasocket'
-license=('MIT')
-makedepends=('lua' 'lua51')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
-   https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
-md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
- '7936d598ea91632e7dcc7aebc93c7300')
-
-prepare() {
-  cd ${srcdir}/luasocket-${pkgver/rc/-rc}
-  patch -p1  ${srcdir}/396e9e5.patch
-}
-
-build() {
-  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
-  msg2 'Building with lua 5.2'
-  pushd luasocket-${pkgver/rc/-rc}-52
-  make LUAV=5.2
-  popd
-  msg2 'Building with lua 5.1'
-  cd luasocket-${pkgver/rc/-rc}
-  find . -type f -name \*.[ch] -exec sed -i \
--e 's|include lua.h|include lua5.1/lua.h|g' \
--e 's|include lualib.h|include lua5.1/lualib.h|g' \
--e 's|include luaconf.h|include lua5.1/luaconf.h|g' \
--e 's|include lauxlib.h|include lua5.1/lauxlib.h|g' \
-{} \;
-  make LUAV=5.1
-}
-
-package_lua-socket() {
-  depends=('lua')
-  cd luasocket-${pkgver/rc/-rc}-52
-  make DESTDIR=$pkgdir/ LUAV=5.2 prefix=/usr install-unix
-  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua51-socket() {
-  depends=('lua51')
-  replaces=('luasocket')
-  conflicts=('luasocket')
-
-  cd luasocket-${pkgver/rc/-rc}
-  make DESTDIR=$pkgdir/ LUAV=5.1 prefix=/usr install-unix
-  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: luasocket/repos/community-staging-i686/PKGBUILD (from rev 132792, 
luasocket/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:00:17 UTC (rev 132793)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasocket
+pkgname=(lua-socket lua51-socket lua52-socket)
+pkgver=3.0rc1
+pkgrel=6
+pkgdesc='Networking support library for the Lua language'
+arch=('i686' 'x86_64')
+url='https://github.com/diegonehab/luasocket'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
+   https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
+md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
+ '7936d598ea91632e7dcc7aebc93c7300')
+
+prepare() {
+  cd ${srcdir}/luasocket-${pkgver/rc/-rc}
+  patch -p1  ${srcdir}/396e9e5.patch
+}
+
+build() {
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-51
+
+  msg2 'Building with lua 5.3'
+  cd $srcdir/luasocket-${pkgver/rc/-rc}
+  make LUAV=5.3
+
+  msg2 'Building with lua 5.1'
+  cd $srcdir/luasocket-${pkgver/rc/-rc}-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include lua.h|include lua5.1/lua.h|g' \
+-e 's|include lualib.h|include lua5.1/lualib.h|g' \
+-e 's|include luaconf.h|include lua5.1/luaconf.h|g' \
+-e 's|include lauxlib.h|include lua5.1/lauxlib.h|g' \
+{} \;
+  make LUAV=5.1
+
+  msg2 'Building with lua 5.2'
+  cd $srcdir/luasocket-${pkgver/rc/-rc}-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include lua.h|include lua5.2/lua.h|g' \
+-e 's|include lualib.h|include lua5.2/lualib.h|g' \
+-e 's|include luaconf.h|include lua5.2/luaconf.h|g' \
+-e 's|include lauxlib.h|include lua5.2/lauxlib.h|g' \
+{} \;
+  make LUAV=5.2
+}
+
+package_lua-socket() {
+  depends=('lua')
+  cd luasocket-${pkgver/rc/-rc}
+  make DESTDIR=$pkgdir/ 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:06:41
  Author: anatolik
Revision: 132796

upgpkg: lua-zlib 2:0.4-3

- move 5.3 library to lua5.3 specific lib dir
- add lua5.2 library

Modified:
  lua-zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:03:02 UTC (rev 132795)
+++ PKGBUILD2015-05-05 15:06:41 UTC (rev 132796)
@@ -5,12 +5,12 @@
 pkgbase=lua-zlib
 epoch=2
 pkgver=0.4
-pkgrel=1
+pkgrel=3
 url=http://github.com/brimworks/lua-zlib;
 pkgdesc='Simple streaming interface to zlib for Lua.'
 arch=('i686' 'x86_64')
 license=('MIT')
-makedepends=('cmake' 'lua' 'lua51' 'zlib' 'git')
+makedepends=('cmake' 'lua' 'lua51' 'lua52' 'zlib' 'git')
 conflicts=('lua-lzlib')
 #source=(git://github.com/brimworks/lua-zlib.git)
 
source=(lua-zlib-$pkgver.tar.gz::https://github.com/brimworks/lua-zlib/archive/v$pkgver.tar.gz;)
@@ -18,6 +18,7 @@
 
 build() {
   cp -a $srcdir/lua-zlib-$pkgver $srcdir/lua51-zlib-$pkgver
+  cp -a $srcdir/lua-zlib-$pkgver $srcdir/lua52-zlib-$pkgver
 
   cd $srcdir/lua-zlib-$pkgver
   gcc -o zlib.so -O2 -fPIC -shared lua_zlib.c -llua -lz
@@ -24,6 +25,9 @@
 
   cd $srcdir/lua51-zlib-$pkgver
   gcc -o zlib.so -O2 -fPIC -shared -I/usr/include/lua5.1 lua_zlib.c -llua5.1 
-lz
+
+  cd $srcdir/lua52-zlib-$pkgver
+  gcc -o zlib.so -O2 -fPIC -shared -I/usr/include/lua5.2 lua_zlib.c -llua5.2 
-lz
 }
 
 package_lua-zlib() {
@@ -30,7 +34,7 @@
   depends=('zlib' 'lua')
 
   cd $srcdir/lua-zlib-$pkgver
-  install -Dm0755 zlib.so $pkgdir/usr/lib/lua/5.2/zlib.so
+  install -Dm0755 zlib.so $pkgdir/usr/lib/lua/5.3/zlib.so
   install -Dm644 README $pkgdir/usr/share/licenses/$pkgname/README
 }
 
@@ -41,3 +45,11 @@
   install -Dm0755 zlib.so $pkgdir/usr/lib/lua/5.1/zlib.so
   install -D -m644 README $pkgdir/usr/share/licenses/$pkgname/README
 }
+
+package_lua52-zlib() {
+  depends=('zlib' 'lua52')
+
+  cd $srcdir/lua52-zlib-$pkgver
+  install -Dm0755 zlib.so $pkgdir/usr/lib/lua/5.2/zlib.so
+  install -D -m644 README $pkgdir/usr/share/licenses/$pkgname/README
+}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:11:24
  Author: anatolik
Revision: 132798

upgpkg: lua-zlib 1:0.4-3

- fix epoch
- actually build lua52-* package

Modified:
  lua-zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:07:15 UTC (rev 132797)
+++ PKGBUILD2015-05-05 15:11:24 UTC (rev 132798)
@@ -1,9 +1,9 @@
 # $Id$
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
-pkgname=(lua-zlib lua51-zlib)
+pkgname=(lua-zlib lua51-zlib lua52-zlib)
 pkgbase=lua-zlib
-epoch=2
+epoch=1
 pkgver=0.4
 pkgrel=3
 url=http://github.com/brimworks/lua-zlib;


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:36:30
  Author: anatolik
Revision: 132808

archrelease: copy trunk to community-staging-any

Added:
  penlight/repos/community-staging-any/
  penlight/repos/community-staging-any/PKGBUILD
(from rev 132807, penlight/trunk/PKGBUILD)

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

Copied: penlight/repos/community-staging-any/PKGBUILD (from rev 132807, 
penlight/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-05-05 15:36:30 UTC (rev 132808)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgbase=penlight
+pkgname=('lua-penlight')
+pkgver=1.3.2
+pkgrel=2
+pkgdesc='Lua libraries focusing on input data handling'
+arch=('any')
+url='https://github.com/stevedonovan/penlight'
+license=('custom')
+depends=('lua' 'lua-filesystem')
+source=($pkgname-$pkgver.tar.gz::https://github.com/stevedonovan/penlight/archive/$pkgver.tar.gz;)
+md5sums=('0315a39834bb6fab07741ec04ede1bf4')
+
+check() {
+  cd Penlight-$pkgver
+  export LUA_PATH=$PWD/lua/?/init.lua;$PWD/lua/?.lua;$(lua -e 
'print(package.path)')
+  lua run.lua
+}
+
+package_lua-penlight() {
+
+  cd Penlight-$pkgver
+  install -dm755 $pkgdir/usr/share/lua/5.3/pl
+  install -m644 lua/pl/* $pkgdir/usr/share/lua/5.3/pl
+  # copy docs
+  install -dm755 $pkgdir/usr/share/doc/$pkgname/{,manual,examples}
+  install -m644 CONTRIBUTING.md CHANGES.md README.md 
$pkgdir/usr/share/doc/$pkgname
+  install -m644 doc/manual/* $pkgdir/usr/share/doc/$pkgname/manual
+  install -m644 examples/* $pkgdir/usr/share/doc/$pkgname/examples
+  # copy license
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in network-manager-applet/trunk (PKGBUILD)

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:48:05
  Author: heftig
Revision: 238500

1.0.2

Modified:
  network-manager-applet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:46:55 UTC (rev 238499)
+++ PKGBUILD2015-05-05 15:48:05 UTC (rev 238500)
@@ -8,8 +8,8 @@
 
 pkgbase=network-manager-applet
 pkgname=(nm-connection-editor network-manager-applet)
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.0.2
+pkgrel=1
 pkgdesc=Applet for managing network connections
 arch=(i686 x86_64)
 license=(GPL2 LGPL2.1)
@@ -18,7 +18,7 @@
  libnotify libmm-glib intltool gobject-introspection)
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('5fede8d2060002c695fbba07e59cbc7db90a39a3378bb9690274c205d2503152')
+sha256sums=('760af85b43fa5bcf74b96f899a6d4c1d5e9445e5eb63088c49e5164bbf88d9a9')
 
 prepare() {
   mkdir -p nma/etc/xdg nma/usr/bin \


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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:49:03
  Author: heftig
Revision: 238502

1.0.2

Modified:
  networkmanager-openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:48:37 UTC (rev 238501)
+++ PKGBUILD2015-05-05 15:49:03 UTC (rev 238502)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-openvpn
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.0.2
+pkgrel=1
 pkgdesc=NetworkManager VPN plugin for OpenVPN
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -13,7 +13,7 @@
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 install=networkmanager-openvpn.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openvpn/${pkgver::3}/NetworkManager-openvpn-${pkgver}.tar.xz)
-sha256sums=('d0ad918c8d3736b690f0ed031c03251829fa110aa339e0e531e47100551f1bf0')
+sha256sums=('1643824bc7fdab42e1dab836bf81c328692295c86f146bde602eca093b394bb0')
 
 build() {
   cd NetworkManager-openvpn-${pkgver}


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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:48:37
  Author: heftig
Revision: 238501

1.0.2

Modified:
  networkmanager-openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:48:05 UTC (rev 238500)
+++ PKGBUILD2015-05-05 15:48:37 UTC (rev 238501)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-openconnect
-pkgver=1.0.0
+pkgver=1.0.2
 pkgrel=1
 pkgdesc=NetworkManager VPN integration for openconnect
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/${pkgver::3}/NetworkManager-openconnect-${pkgver}.tar.xz)
-sha256sums=('06f322f8efe9b882b19dcaa4314049171fd38701e902f688cbdcacfd21d23f5f')
+sha256sums=('120a055863841df1763d4c6b5de03e6f7180fa1a218f376ecc9c75a5862e600e')
 
 prepare() {
   cd NetworkManager-openconnect-${pkgver}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 16:47:48
  Author: anatolik
Revision: 132789

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

Added:
  luafilesystem/repos/community-staging-i686/LICENSE
(from rev 132788, luafilesystem/trunk/LICENSE)
  luafilesystem/repos/community-staging-i686/PKGBUILD
(from rev 132788, luafilesystem/trunk/PKGBUILD)
  luafilesystem/repos/community-staging-x86_64/LICENSE
(from rev 132788, luafilesystem/trunk/LICENSE)
  luafilesystem/repos/community-staging-x86_64/PKGBUILD
(from rev 132788, luafilesystem/trunk/PKGBUILD)
Deleted:
  luafilesystem/repos/community-staging-i686/LICENSE
  luafilesystem/repos/community-staging-i686/PKGBUILD
  luafilesystem/repos/community-staging-x86_64/LICENSE
  luafilesystem/repos/community-staging-x86_64/PKGBUILD

---+
 /LICENSE  |   44 
 /PKGBUILD |  128 
 community-staging-i686/LICENSE|   22 --
 community-staging-i686/PKGBUILD   |   49 -
 community-staging-x86_64/LICENSE  |   22 --
 community-staging-x86_64/PKGBUILD |   49 -
 6 files changed, 172 insertions(+), 142 deletions(-)

Deleted: community-staging-i686/LICENSE
===
--- community-staging-i686/LICENSE  2015-05-05 14:46:50 UTC (rev 132788)
+++ community-staging-i686/LICENSE  2015-05-05 14:47:48 UTC (rev 132789)
@@ -1,22 +0,0 @@
-Copyright (C) 2004-2007 The Kepler Project.
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the Software), to deal in the Software without
-restriction, including without limitation the rights to use, copy,
-modify, merge, publish, distribute, sublicense, and/or sell copies
-of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
-BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-

Copied: luafilesystem/repos/community-staging-i686/LICENSE (from rev 132788, 
luafilesystem/trunk/LICENSE)
===
--- community-staging-i686/LICENSE  (rev 0)
+++ community-staging-i686/LICENSE  2015-05-05 14:47:48 UTC (rev 132789)
@@ -0,0 +1,22 @@
+Copyright (C) 2004-2007 The Kepler Project.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the Software), to deal in the Software without
+restriction, including without limitation the rights to use, copy,
+modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 14:46:50 UTC (rev 132788)
+++ community-staging-i686/PKGBUILD 2015-05-05 14:47:48 UTC (rev 132789)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Chris Brannon cmbranno...@gmail.com
-# Contributor: Paulo Matias matiasΘarchlinux-br·org
-# Contributor: Anders Bergh ande...@gmail.com
-
-pkgbase=luafilesystem
-pkgname=(lua-filesystem lua51-filesystem)
-pkgver=1.6.3
-pkgrel=2
-pkgdesc='File System Library for the Lua Programming Language'
-arch=('i686' 'x86_64')
-url='http://www.keplerproject.org/luafilesystem/'
-license=('MIT')
-makedepends=(lua lua51)
-#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
-source=(https://github.com/keplerproject/luafilesystem/archive/v_${pkgver//./_}.tar.gz
- 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:16:42
  Author: anatolik
Revision: 132800

upgpkg: luaexpat 1.3.0-3

- move library to 5.3 specific location
- add lua5.2 library

Modified:
  luaexpat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:11:58 UTC (rev 132799)
+++ PKGBUILD2015-05-05 15:16:42 UTC (rev 132800)
@@ -3,23 +3,33 @@
 # Contributor: Lucas Hermann Negri kknd...@gmail.com
 
 pkgbase=luaexpat
-pkgname=(lua-expat lua51-expat)
+pkgname=(lua-expat lua51-expat lua52-expat)
 pkgver=1.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc='SAX XML parser based on the Expat library'
 arch=('i686' 'x86_64')
 url='http://matthewwild.co.uk/projects/luaexpat/'
 license=('MIT')
-makedepends=('gcc' 'lua' 'lua51' 'expat')
+makedepends=('gcc' 'lua' 'lua51' 'lua52' 'expat')
 source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;)
 md5sums=('3c20b5795e7107f847f8da844fbfe2da')
 
+prepare() {
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-52
+}
+
 build() {
   # 5.1
   msg2 Building $pkgbase with lua 5.1
-  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
-  cd $pkgbase-$pkgver-51
+  cd $srcdir/$pkgbase-$pkgver-51
   make LUA_V=5.1
+
+  # 5.2
+  msg2 Building $pkgbase with lua 5.2
+  cd $srcdir/$pkgbase-$pkgver-52
+  make LUA_V=5.2 CFLAGS='-DLUA_32BITS'
+
   # 5.3
   msg2 Building $pkgbase with lua 5.3
   cd $srcdir/$pkgbase-$pkgver
@@ -43,3 +53,11 @@
   make LUA_V=5.1 DESTDIR=$pkgdir install
   install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
 }
+
+package_lua52-expat() {
+  depends=('lua52' 'expat')
+
+  cd $pkgbase-$pkgver-52
+  make LUA_V=5.2 DESTDIR=$pkgdir install
+  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:17:20
  Author: anatolik
Revision: 132801

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

Added:
  luaexpat/repos/community-staging-i686/PKGBUILD
(from rev 132800, luaexpat/trunk/PKGBUILD)
  luaexpat/repos/community-staging-x86_64/PKGBUILD
(from rev 132800, luaexpat/trunk/PKGBUILD)
Deleted:
  luaexpat/repos/community-staging-i686/PKGBUILD
  luaexpat/repos/community-staging-i686/config.51
  luaexpat/repos/community-staging-i686/config.53
  luaexpat/repos/community-staging-x86_64/PKGBUILD
  luaexpat/repos/community-staging-x86_64/config.51
  luaexpat/repos/community-staging-x86_64/config.53

+
 /PKGBUILD  |  126 +++
 community-staging-i686/PKGBUILD|   51 --
 community-staging-i686/config.51   |   26 ---
 community-staging-i686/config.53   |   26 ---
 community-staging-x86_64/PKGBUILD  |   51 --
 community-staging-x86_64/config.51 |   26 ---
 community-staging-x86_64/config.53 |   26 ---
 7 files changed, 126 insertions(+), 206 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 15:16:42 UTC (rev 132800)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:17:20 UTC (rev 132801)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Lucas Hermann Negri kknd...@gmail.com
-
-pkgbase=luaexpat
-pkgname=(lua-expat lua51-expat)
-pkgver=1.3.0
-pkgrel=2
-pkgdesc='SAX XML parser based on the Expat library'
-arch=('i686' 'x86_64')
-url='http://matthewwild.co.uk/projects/luaexpat/'
-license=('MIT')
-makedepends=('gcc' 'lua' 'lua51' 'expat')
-source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;
-   'config.51'
-   'config.53')
-md5sums=('3c20b5795e7107f847f8da844fbfe2da'
- '64abbf5b602e0e31b68db2925a5e6b2f'
- '7d5618fe79b110c34fac530744d72495')
-
-build() {
-  # 5.1
-  msg2 Building $pkgbase with lua 5.1
-  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
-  cd $pkgbase-$pkgver-51
-#  cp -L $srcdir/config.51 config
-  make LUA_V=5.1
-  # 5.3
-  msg2 Building $pkgbase with lua 5.3
-  cd $srcdir/$pkgbase-$pkgver
-#  cp -L $srcdir/config.53 config
-  make LUA_V=5.3 CFLAGS='-DLUA_32BITS'
-}
-
-package_lua-expat() {
-  depends=('lua' 'expat')
-
-  cd $pkgbase-$pkgver
-  make LUA_V=5.3 DESTDIR=$pkgdir install
-  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
-}
-
-package_lua51-expat() {
-  depends=('lua51' 'expat')
-  replaces=('luaexpat')
-  conflicts=('luaexpat')
-
-  cd $pkgbase-$pkgver-51
-  make LUA_V=5.1 DESTDIR=$pkgdir install
-  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
-}

Copied: luaexpat/repos/community-staging-i686/PKGBUILD (from rev 132800, 
luaexpat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:17:20 UTC (rev 132801)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Lucas Hermann Negri kknd...@gmail.com
+
+pkgbase=luaexpat
+pkgname=(lua-expat lua51-expat lua52-expat)
+pkgver=1.3.0
+pkgrel=3
+pkgdesc='SAX XML parser based on the Expat library'
+arch=('i686' 'x86_64')
+url='http://matthewwild.co.uk/projects/luaexpat/'
+license=('MIT')
+makedepends=('gcc' 'lua' 'lua51' 'lua52' 'expat')
+source=(http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz;)
+md5sums=('3c20b5795e7107f847f8da844fbfe2da')
+
+prepare() {
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
+  cp -a $pkgbase-$pkgver $pkgbase-$pkgver-52
+}
+
+build() {
+  # 5.1
+  msg2 Building $pkgbase with lua 5.1
+  cd $srcdir/$pkgbase-$pkgver-51
+  make LUA_V=5.1
+
+  # 5.2
+  msg2 Building $pkgbase with lua 5.2
+  cd $srcdir/$pkgbase-$pkgver-52
+  make LUA_V=5.2 CFLAGS='-DLUA_32BITS'
+
+  # 5.3
+  msg2 Building $pkgbase with lua 5.3
+  cd $srcdir/$pkgbase-$pkgver
+  make LUA_V=5.3 CFLAGS='-DLUA_32BITS'
+}
+
+package_lua-expat() {
+  depends=('lua' 'expat')
+
+  cd $pkgbase-$pkgver
+  make LUA_V=5.3 DESTDIR=$pkgdir install
+  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua51-expat() {
+  depends=('lua51' 'expat')
+  replaces=('luaexpat')
+  conflicts=('luaexpat')
+
+  cd $pkgbase-$pkgver-51
+  make LUA_V=5.1 DESTDIR=$pkgdir install
+  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua52-expat() {
+  depends=('lua52' 'expat')
+
+  cd $pkgbase-$pkgver-52
+  make LUA_V=5.2 DESTDIR=$pkgdir install
+  install -Dm0644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}

Deleted: community-staging-i686/config.51

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:32:56
  Author: anatolik
Revision: 132805

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

Added:
  lua-bitop/repos/community-staging-i686/
  lua-bitop/repos/community-staging-i686/PKGBUILD
(from rev 132804, lua-bitop/trunk/PKGBUILD)
  lua-bitop/repos/community-staging-x86_64/
  lua-bitop/repos/community-staging-x86_64/PKGBUILD
(from rev 132804, lua-bitop/trunk/PKGBUILD)

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

Copied: lua-bitop/repos/community-staging-i686/PKGBUILD (from rev 132804, 
lua-bitop/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:32:56 UTC (rev 132805)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: Lucas Hermann Negri kknd...@gmail.com
+
+pkgbase=lua-bitop
+# BitOp has not been ported to Lua5.3 so no lua-bitop package
+pkgname=(lua51-bitop lua52-bitop)
+pkgver=1.0.2
+pkgrel=6
+pkgdesc='C extension adding bitwise operations on numbers'
+arch=('x86_64' 'i686')
+url='http://bitop.luajit.org/'
+makedepends=('lua' 'lua51' 'lua52')
+source=(http://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz;)
+md5sums=('d0c1080fe0c844e8477279668e2d0d06')
+license=('MIT')
+
+build() {
+  cp -a LuaBitOp-$pkgver LuaBitOp51-$pkgver
+  cp -a LuaBitOp-$pkgver LuaBitOp52-$pkgver
+
+  # msg2 'Building with lua 5.3'
+  # cd LuaBitOp-$pkgver
+  # make INCLUDES=' -I/usr/include' LUA='lua'
+
+  msg2 'Building with lua 5.2'
+  cd $srcdir/LuaBitOp52-$pkgver
+  make INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
+
+  msg2 'Building with lua 5.1'
+  cd $srcdir/LuaBitOp51-$pkgver
+  make INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
+}
+
+package_lua-bitop() {
+  depends=('lua')
+
+  cd LuaBitOp-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.3/bit.so
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  ln -s '../lua/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-bitop() {
+  depends=('lua51')
+  conflicts=('luabitop')
+  replaces=('luabitop')
+
+  cd LuaBitOp51-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.1/bit.so
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  ln -s '../lua51/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua52-bitop() {
+  depends=('lua52')
+
+  cd LuaBitOp52-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.2/bit.so
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  ln -s '../lua51/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+# vim:set ts=2 sw=2 et:

Copied: lua-bitop/repos/community-staging-x86_64/PKGBUILD (from rev 132804, 
lua-bitop/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 15:32:56 UTC (rev 132805)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: Lucas Hermann Negri kknd...@gmail.com
+
+pkgbase=lua-bitop
+# BitOp has not been ported to Lua5.3 so no lua-bitop package
+pkgname=(lua51-bitop lua52-bitop)
+pkgver=1.0.2
+pkgrel=6
+pkgdesc='C extension adding bitwise operations on numbers'
+arch=('x86_64' 'i686')
+url='http://bitop.luajit.org/'
+makedepends=('lua' 'lua51' 'lua52')
+source=(http://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz;)
+md5sums=('d0c1080fe0c844e8477279668e2d0d06')
+license=('MIT')
+
+build() {
+  cp -a LuaBitOp-$pkgver LuaBitOp51-$pkgver
+  cp -a LuaBitOp-$pkgver LuaBitOp52-$pkgver
+
+  # msg2 'Building with lua 5.3'
+  # cd LuaBitOp-$pkgver
+  # make INCLUDES=' -I/usr/include' LUA='lua'
+
+  msg2 'Building with lua 5.2'
+  cd $srcdir/LuaBitOp52-$pkgver
+  make INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
+
+  msg2 'Building with lua 5.1'
+  cd $srcdir/LuaBitOp51-$pkgver
+  make INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
+}
+
+package_lua-bitop() {
+  depends=('lua')
+
+  cd LuaBitOp-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.3/bit.so
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  ln -s '../lua/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-bitop() {
+  depends=('lua51')
+  conflicts=('luabitop')
+  replaces=('luabitop')
+
+  cd LuaBitOp51-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.1/bit.so
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  ln -s '../lua51/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua52-bitop() {
+  depends=('lua52')
+
+  cd LuaBitOp52-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.2/bit.so
+  install -dm 755 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:38:29
  Author: anatolik
Revision: 132810

archrelease: copy trunk to community-staging-any

Added:
  ldoc/repos/community-staging-any/
  ldoc/repos/community-staging-any/PKGBUILD
(from rev 132809, ldoc/trunk/PKGBUILD)

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

Copied: ldoc/repos/community-staging-any/PKGBUILD (from rev 132809, 
ldoc/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-05-05 15:38:29 UTC (rev 132810)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sébastien Luttringer
+
+pkgname=ldoc
+pkgver=1.4.3
+pkgrel=2
+pkgdesc='LuaDoc-compatible documentation generation system'
+arch=('any')
+url='http://stevedonovan.github.com/ldoc/'
+license=('custom')
+depends=('lua' 'lua-penlight')
+source=($pkgname-$pkgver.tar.gz::https://github.com/stevedonovan/ldoc/archive/$pkgver.tar.gz)
+md5sums=('eda6879140dce9435f5a264ef970a205')
+
+package() {
+  cd LDoc-$pkgver
+
+  # install library
+  install -dm755 $pkgdir/usr/share/lua/5.3
+  cp -a ldoc $pkgdir/usr/share/lua/5.3
+
+  # install binaries
+  install -Dm755 ldoc.lua $pkgdir/usr/bin/ldoc.lua
+  ln -s ldoc.lua $pkgdir/usr/bin/ldoc
+
+  # copy docs
+  install -Dm644 readme.md $pkgdir/usr/share/doc/$pkgname/readme.md
+  install -Dm644 doc/doc.md $pkgdir/usr/share/doc/$pkgname/doc.md
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:49:35
  Author: heftig
Revision: 238503

1.0.2

Modified:
  networkmanager-pptp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:49:03 UTC (rev 238502)
+++ PKGBUILD2015-05-05 15:49:35 UTC (rev 238503)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-pptp
-pkgver=1.0.0
+pkgver=1.0.2
 pkgrel=1
 pkgdesc=NetworkManager VPN plugin for pptp 
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 install=networkmanager-pptp.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/${pkgver::3}/NetworkManager-pptp-${pkgver}.tar.xz)
-sha256sums=('200d5c65cdae248d3b4d0daa76a4f8bc1432376ed4da7afedd5085bb0da7ee76')
+sha256sums=('37cb7c6064d1a65ea9b67bb9d31947c2434db3cfb55a2911481fa4e48e332017')
 
 build() {
   cd NetworkManager-pptp-${pkgver}


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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:50:00
  Author: heftig
Revision: 238504

1.0.2

Modified:
  networkmanager-vpnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:49:35 UTC (rev 238503)
+++ PKGBUILD2015-05-05 15:50:00 UTC (rev 238504)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=networkmanager-vpnc
-pkgver=1.0.0
+pkgver=1.0.2
 pkgrel=1
 pkgdesc=NetworkManager VPN plugin for vpnc
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 install=networkmanager-vpnc.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-vpnc/${pkgver::3}/NetworkManager-vpnc-${pkgver}.tar.xz)
-sha256sums=('5ed0413932cd2d6100dc8b95e11ce18c44a182d81aca1dfd0400a6e419359894')
+sha256sums=('3e17bfc505d304b3d21a784c06fc4b990cabdafd6886b47632496dfba0dea500')
 
 build() {
   cd NetworkManager-vpnc-${pkgver}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:32:19
  Author: anatolik
Revision: 132804

upgpkg: lua-bitop 1.0.2-6

- add lua5.2 library
- BitOp has not been ported to lua 5.3 (yet) so do not create lua-bitop 
package. Only lua51-bitop and lua52-bitop packages are created now.

Modified:
  lua-bitop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:20:49 UTC (rev 132803)
+++ PKGBUILD2015-05-05 15:32:19 UTC (rev 132804)
@@ -4,13 +4,14 @@
 # Contributor: Lucas Hermann Negri kknd...@gmail.com
 
 pkgbase=lua-bitop
-pkgname=(lua-bitop lua51-bitop)
+# BitOp has not been ported to Lua5.3 so no lua-bitop package
+pkgname=(lua51-bitop lua52-bitop)
 pkgver=1.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc='C extension adding bitwise operations on numbers'
 arch=('x86_64' 'i686')
 url='http://bitop.luajit.org/'
-makedepends=('lua' 'lua51')
+makedepends=('lua' 'lua51' 'lua52')
 source=(http://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz;)
 md5sums=('d0c1080fe0c844e8477279668e2d0d06')
 license=('MIT')
@@ -17,13 +18,18 @@
 
 build() {
   cp -a LuaBitOp-$pkgver LuaBitOp51-$pkgver
+  cp -a LuaBitOp-$pkgver LuaBitOp52-$pkgver
 
+  # msg2 'Building with lua 5.3'
+  # cd LuaBitOp-$pkgver
+  # make INCLUDES=' -I/usr/include' LUA='lua'
+
   msg2 'Building with lua 5.2'
-  cd LuaBitOp-$pkgver
-  make INCLUDES=' -I/usr/include' LUA='lua'
+  cd $srcdir/LuaBitOp52-$pkgver
+  make INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
 
   msg2 'Building with lua 5.1'
-  cd ../LuaBitOp51-$pkgver
+  cd $srcdir/LuaBitOp51-$pkgver
   make INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
 }
 
@@ -31,7 +37,7 @@
   depends=('lua')
 
   cd LuaBitOp-$pkgver
-  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.2/bit.so
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.3/bit.so
   install -dm 755 $pkgdir/usr/share/licenses/$pkgname
   ln -s '../lua/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
@@ -47,4 +53,12 @@
   ln -s '../lua51/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
+package_lua52-bitop() {
+  depends=('lua52')
+
+  cd LuaBitOp52-$pkgver
+  install -Dm 644 bit.so $pkgdir/usr/lib/lua/5.2/bit.so
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  ln -s '../lua51/LICENSE' $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
 # vim:set ts=2 sw=2 et:


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 16:46:50
  Author: anatolik
Revision: 132788

upgpkg: luafilesystem 1.6.3-3

- use lua5.3 specific lib dir
- add 5.2 package

Modified:
  luafilesystem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 14:09:34 UTC (rev 132787)
+++ PKGBUILD2015-05-05 14:46:50 UTC (rev 132788)
@@ -5,16 +5,17 @@
 # Contributor: Anders Bergh ande...@gmail.com
 
 pkgbase=luafilesystem
-pkgname=(lua-filesystem lua51-filesystem)
+pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
 pkgver=1.6.3
-pkgrel=2
+_tag=v_${pkgver//./_}
+pkgrel=3
 pkgdesc='File System Library for the Lua Programming Language'
 arch=('i686' 'x86_64')
 url='http://www.keplerproject.org/luafilesystem/'
 license=('MIT')
-makedepends=(lua lua51)
+makedepends=(lua lua51 lua52)
 
#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
-source=(https://github.com/keplerproject/luafilesystem/archive/v_${pkgver//./_}.tar.gz
+source=(luafilesystem-$_tag.tar.gz::https://github.com/keplerproject/luafilesystem/archive/$_tag.tar.gz
 LICENSE)
 md5sums=('d0552c7e5a082f5bb2865af63fb9dc95'
  'beb2b58c4b5c2782304a5b0267a5651b')
@@ -21,12 +22,18 @@
 
 build() {
   msg2 Building $pkgbase with Lua 5.1
-  cp -a $pkgbase-v_${pkgver//./_} $pkgbase-v_${pkgver//./_}-51
-  cd $pkgbase-v_${pkgver//./_}-51
+  cp -a $pkgbase-$_tag $pkgbase-$_tag-51
+  cd $pkgbase-$_tag-51
   make LUA_INC=/usr/include/lua5.1
 
   msg2 Building $pkgbase with Lua 5.2
-  cd $srcdir/$pkgbase-v_${pkgver//./_}
+  cd $srcdir
+  cp -a $pkgbase-$_tag $pkgbase-$_tag-52
+  cd $pkgbase-$_tag-52
+  make LUA_INC=/usr/include/lua5.2
+
+  msg2 Building $pkgbase with Lua 5.3
+  cd $srcdir/$pkgbase-$_tag
   make
 }
 
@@ -33,8 +40,8 @@
 package_lua-filesystem() {
   depends=('lua')
 
-  cd $pkgbase-v_${pkgver//./_}
-  make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
+  cd $pkgbase-$_tag
+  make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.3' install
   install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
@@ -43,7 +50,15 @@
   conflicts=('luafilesystem')
   replaces=('luafilesystem')
 
-  cd $pkgbase-v_${pkgver//./_}-51
+  cd $pkgbase-$_tag-51
   make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install
   install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
+
+package_lua52-filesystem() {
+  depends=('lua52')
+
+  cd $pkgbase-$_tag-52
+  make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
+  install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:03:02
  Author: anatolik
Revision: 132795

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

Added:
  luasec/repos/community-staging-i686/PKGBUILD
(from rev 132794, luasec/trunk/PKGBUILD)
  luasec/repos/community-staging-x86_64/PKGBUILD
(from rev 132794, luasec/trunk/PKGBUILD)
Deleted:
  luasec/repos/community-staging-i686/PKGBUILD
  luasec/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  160 
 community-staging-i686/PKGBUILD   |   60 -
 community-staging-x86_64/PKGBUILD |   60 -
 3 files changed, 160 insertions(+), 120 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 15:02:24 UTC (rev 132794)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:03:02 UTC (rev 132795)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Dwayne Bent db...@liqd.org
-# Contributor: Paul-Sebastian Manole brokenth...@gmail.com
-
-pkgbase=luasec
-pkgname=(lua-sec lua51-sec)
-pkgver=0.5
-pkgrel=2
-epoch=1
-pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
-arch=('i686' 'x86_64')
-url='https://github.com/brunoos/luasec/wiki'
-license=('MIT')
-makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket')
-options=('!buildflags')
-source=(https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
-md5sums=('0518f4524f399f33424c6f450e1d06db')
-
-prepare() {
-  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
-}
-
-build() {
-  msg2 'Building with lua 5.2'
-  cd luasec-luasec-$pkgver
-  make linux
-
-  msg2 'Building with lua 5.1'
-  cd ../luasec-luasec-$pkgver-51
-  find . -type f -name \*.[ch] -exec sed -i \
--e 's|include .lua.h.|include lua5.1/lua.h|g' \
--e 's|include .lualib.h.|include lua5.1/lualib.h|g' \
--e 's|include .luaconf.h.|include lua5.1/luaconf.h|g' \
--e 's|include .lauxlib.h.|include lua5.1/lauxlib.h|g' \
-{} \;
-  make linux
-}
-
-package_lua-sec() {
-  depends=('openssl' 'lua' 'lua-socket')
-
-  install -dm755 $pkgdir/usr/lib/lua/5.2
-  cd luasec-luasec-$pkgver
-  make LUACPATH=$pkgdir/usr/lib/lua/5.2 LUAPATH=$pkgdir/usr/share/lua/5.2 
install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua51-sec() {
-  depends=('openssl' 'lua51' 'lua51-socket')
-  conflicts=('luasec')
-  replaces=('luasec')
-
-  install -dm755 $pkgdir/usr/lib/lua/5.1
-  cd luasec-luasec-$pkgver-51
-  make LUACPATH=$pkgdir/usr/lib/lua/5.1 LUAPATH=$pkgdir/usr/share/lua/5.1 
install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: luasec/repos/community-staging-i686/PKGBUILD (from rev 132794, 
luasec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:03:02 UTC (rev 132795)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Dwayne Bent db...@liqd.org
+# Contributor: Paul-Sebastian Manole brokenth...@gmail.com
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec lua52-sec)
+pkgver=0.5
+pkgrel=3
+epoch=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
+options=('!buildflags')
+source=(https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
+md5sums=('0518f4524f399f33424c6f450e1d06db')
+
+prepare() {
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
+}
+
+build() {
+  msg2 'Building with lua 5.3'
+  cd $srcdir/luasec-luasec-$pkgver
+  make linux
+
+  msg2 'Building with lua 5.1'
+  cd $srcdir/luasec-luasec-$pkgver-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include lua5.1/lua.h|g' \
+-e 's|include .lualib.h.|include lua5.1/lualib.h|g' \
+-e 's|include .luaconf.h.|include lua5.1/luaconf.h|g' \
+-e 's|include .lauxlib.h.|include lua5.1/lauxlib.h|g' \
+{} \;
+  make linux
+
+  msg2 'Building with lua 5.2'
+  cd $srcdir/luasec-luasec-$pkgver-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include lua5.2/lua.h|g' \
+-e 's|include .lualib.h.|include lua5.2/lualib.h|g' \
+-e 's|include .luaconf.h.|include lua5.2/luaconf.h|g' \
+-e 's|include .lauxlib.h.|include lua5.2/lauxlib.h|g' \
+{} \;
+  make linux
+}
+
+package_lua-sec() {
+  depends=('openssl' 'lua' 'lua-socket')
+
+  install -dm755 $pkgdir/usr/lib/lua/5.3
+  cd luasec-luasec-$pkgver
+  make LUACPATH=$pkgdir/usr/lib/lua/5.3 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:02:24
  Author: anatolik
Revision: 132794

upgpkg: luasec 1:0.5-3

- move 5.3 libs to lua5.3 specific directory
- add library for lua5.2

Modified:
  luasec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:00:17 UTC (rev 132793)
+++ PKGBUILD2015-05-05 15:02:24 UTC (rev 132794)
@@ -4,15 +4,15 @@
 # Contributor: Paul-Sebastian Manole brokenth...@gmail.com
 
 pkgbase=luasec
-pkgname=(lua-sec lua51-sec)
+pkgname=(lua-sec lua51-sec lua52-sec)
 pkgver=0.5
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
 arch=('i686' 'x86_64')
 url='https://github.com/brunoos/luasec/wiki'
 license=('MIT')
-makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
 options=('!buildflags')
 source=(https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
 md5sums=('0518f4524f399f33424c6f450e1d06db')
@@ -19,15 +19,16 @@
 
 prepare() {
   cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
 }
 
 build() {
-  msg2 'Building with lua 5.2'
-  cd luasec-luasec-$pkgver
+  msg2 'Building with lua 5.3'
+  cd $srcdir/luasec-luasec-$pkgver
   make linux
 
   msg2 'Building with lua 5.1'
-  cd ../luasec-luasec-$pkgver-51
+  cd $srcdir/luasec-luasec-$pkgver-51
   find . -type f -name \*.[ch] -exec sed -i \
 -e 's|include .lua.h.|include lua5.1/lua.h|g' \
 -e 's|include .lualib.h.|include lua5.1/lualib.h|g' \
@@ -35,14 +36,24 @@
 -e 's|include .lauxlib.h.|include lua5.1/lauxlib.h|g' \
 {} \;
   make linux
+
+  msg2 'Building with lua 5.2'
+  cd $srcdir/luasec-luasec-$pkgver-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include lua5.2/lua.h|g' \
+-e 's|include .lualib.h.|include lua5.2/lualib.h|g' \
+-e 's|include .luaconf.h.|include lua5.2/luaconf.h|g' \
+-e 's|include .lauxlib.h.|include lua5.2/lauxlib.h|g' \
+{} \;
+  make linux
 }
 
 package_lua-sec() {
   depends=('openssl' 'lua' 'lua-socket')
 
-  install -dm755 $pkgdir/usr/lib/lua/5.2
+  install -dm755 $pkgdir/usr/lib/lua/5.3
   cd luasec-luasec-$pkgver
-  make LUACPATH=$pkgdir/usr/lib/lua/5.2 LUAPATH=$pkgdir/usr/share/lua/5.2 
install
+  make LUACPATH=$pkgdir/usr/lib/lua/5.3 LUAPATH=$pkgdir/usr/share/lua/5.3 
install
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
@@ -57,4 +68,13 @@
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
+package_lua52-sec() {
+  depends=('openssl' 'lua52' 'lua52-socket')
+
+  install -dm755 $pkgdir/usr/lib/lua/5.2
+  cd luasec-luasec-$pkgver-52
+  make LUACPATH=$pkgdir/usr/lib/lua/5.2 LUAPATH=$pkgdir/usr/share/lua/5.2 
install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
 # vim:set ts=2 sw=2 et:


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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:46:55
  Author: heftig
Revision: 238499

1.0.2

Modified:
  networkmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:45:34 UTC (rev 238498)
+++ PKGBUILD2015-05-05 15:46:55 UTC (rev 238499)
@@ -8,8 +8,8 @@
 
 pkgbase=networkmanager
 pkgname=(networkmanager libnm-glib)
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.0.2
+pkgrel=1
 pkgdesc=Network Management daemon
 arch=(i686 x86_64)
 license=(GPL2 LGPL2.1)
@@ -22,7 +22,7 @@
 
#source=(git://anongit.freedesktop.org/NetworkManager/NetworkManager#commit=93c1041
 
source=(http://ftp.gnome.org/pub/gnome/sources/NetworkManager/${pkgver:0:3}/NetworkManager-$pkgver.tar.xz
 NetworkManager.conf disable_set_hostname.patch)
-sha256sums=('3a66afec670c975edd9832e620b725a5f16ed267a1b9e1b2d51ef27250d85947'
+sha256sums=('359385707494bedbb48cfe0992ccfbcc4ac147dae1f7a47055c71e96439508ff'
 '759db295ddae7a6dc6b29211fc0ec08695f875584d456dd146d3679e2c33e2e3'
 '25056837ea92e559f09563ed817e3e0cd9333be861b8914e45f62ceaae2e0460')
 


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 16:09:34
  Author: spupykin
Revision: 132787

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

Added:
  redis/repos/community-i686/PKGBUILD
(from rev 132786, redis/trunk/PKGBUILD)
  redis/repos/community-i686/redis-2.8.11-use-system-jemalloc.patch
(from rev 132786, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-i686/redis.conf-sane-defaults.patch
(from rev 132786, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-i686/redis.install
(from rev 132786, redis/trunk/redis.install)
  redis/repos/community-i686/redis.logrotate
(from rev 132786, redis/trunk/redis.logrotate)
  redis/repos/community-i686/redis.service
(from rev 132786, redis/trunk/redis.service)
  redis/repos/community-x86_64/PKGBUILD
(from rev 132786, redis/trunk/PKGBUILD)
  redis/repos/community-x86_64/redis-2.8.11-use-system-jemalloc.patch
(from rev 132786, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
(from rev 132786, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-x86_64/redis.install
(from rev 132786, redis/trunk/redis.install)
  redis/repos/community-x86_64/redis.logrotate
(from rev 132786, redis/trunk/redis.logrotate)
  redis/repos/community-x86_64/redis.service
(from rev 132786, redis/trunk/redis.service)
Deleted:
  redis/repos/community-i686/PKGBUILD
  redis/repos/community-i686/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-i686/redis.conf-sane-defaults.patch
  redis/repos/community-i686/redis.install
  redis/repos/community-i686/redis.logrotate
  redis/repos/community-i686/redis.service
  redis/repos/community-x86_64/PKGBUILD
  redis/repos/community-x86_64/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
  redis/repos/community-x86_64/redis.install
  redis/repos/community-x86_64/redis.logrotate
  redis/repos/community-x86_64/redis.service

-+
 /PKGBUILD   |  102 ++
 /redis-2.8.11-use-system-jemalloc.patch |   30 
 /redis.conf-sane-defaults.patch |   62 
 /redis.install  |   16 ++
 /redis.logrotate|   10 +
 /redis.service  |   42 +
 community-i686/PKGBUILD |   51 ---
 community-i686/redis-2.8.11-use-system-jemalloc.patch   |   15 --
 community-i686/redis.conf-sane-defaults.patch   |   31 
 community-i686/redis.install|8 -
 community-i686/redis.logrotate  |5 
 community-i686/redis.service|   21 --
 community-x86_64/PKGBUILD   |   51 ---
 community-x86_64/redis-2.8.11-use-system-jemalloc.patch |   15 --
 community-x86_64/redis.conf-sane-defaults.patch |   31 
 community-x86_64/redis.install  |8 -
 community-x86_64/redis.logrotate|5 
 community-x86_64/redis.service  |   21 --
 18 files changed, 262 insertions(+), 262 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-05 14:09:10 UTC (rev 132786)
+++ community-i686/PKGBUILD 2015-05-05 14:09:34 UTC (rev 132787)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Jan-Erik Rediger badboy at archlinux dot us
-# Contributor: nofxx x@nick.com
-
-pkgname=redis
-pkgver=3.0.0
-pkgrel=1
-pkgdesc='Advanced key-value store'
-arch=('i686' 'x86_64')
-url='http://redis.io/'
-license=('BSD')
-depends=('jemalloc' 'grep' 'shadow')
-backup=('etc/redis.conf'
-'etc/logrotate.d/redis')
-install=redis.install
-source=(http://download.redis.io/releases/redis-$pkgver.tar.gz
-redis.service
-redis.logrotate
-redis.conf-sane-defaults.patch
-redis-2.8.11-use-system-jemalloc.patch)
-md5sums=('cd8487159459d7575ba2664cb2a4819e'
- 'b557e370dcf35d8844b77d278e7be0a5'
- '9e2d75b7a9dc421122d673fe520ef17f'
- 'b1beae6954b780da261b4056fd7f918a'
- '2ae176578f538e37a67a463258302bc6')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../redis.conf-sane-defaults.patch
-  patch -p1 -i ../redis-2.8.11-use-system-jemalloc.patch
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=$pkgdir/usr install
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/redis/LICENSE
-  install -Dm644 redis.conf $pkgdir/etc/redis.conf
-  install -Dm644 ../redis.service 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 16:59:39
  Author: anatolik
Revision: 132792

upgpkg: luasocket 3.0rc1-6

- use lua5.3 specific dirs for libraries
- add library for lua 5.2

Modified:
  luasocket/trunk/PKGBUILD

--+
 PKGBUILD |   42 +++---
 1 file changed, 31 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 14:50:24 UTC (rev 132791)
+++ PKGBUILD2015-05-05 14:59:39 UTC (rev 132792)
@@ -3,14 +3,14 @@
 # Contributor: Anders Bergh ande...@gmail.com
 
 pkgbase=luasocket
-pkgname=(lua-socket lua51-socket)
+pkgname=(lua-socket lua51-socket lua52-socket)
 pkgver=3.0rc1
-pkgrel=5
+pkgrel=6
 pkgdesc='Networking support library for the Lua language'
 arch=('i686' 'x86_64')
 url='https://github.com/diegonehab/luasocket'
 license=('MIT')
-makedepends=('lua' 'lua51')
+makedepends=('lua' 'lua51' 'lua52')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
 md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
@@ -23,12 +23,14 @@
 
 build() {
   cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
-  msg2 'Building with lua 5.2'
-  pushd luasocket-${pkgver/rc/-rc}-52
-  make LUAV=5.2
-  popd
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-51
+
+  msg2 'Building with lua 5.3'
+  cd $srcdir/luasocket-${pkgver/rc/-rc}
+  make LUAV=5.3
+
   msg2 'Building with lua 5.1'
-  cd luasocket-${pkgver/rc/-rc}
+  cd $srcdir/luasocket-${pkgver/rc/-rc}-51
   find . -type f -name \*.[ch] -exec sed -i \
 -e 's|include lua.h|include lua5.1/lua.h|g' \
 -e 's|include lualib.h|include lua5.1/lualib.h|g' \
@@ -36,12 +38,22 @@
 -e 's|include lauxlib.h|include lua5.1/lauxlib.h|g' \
 {} \;
   make LUAV=5.1
+
+  msg2 'Building with lua 5.2'
+  cd $srcdir/luasocket-${pkgver/rc/-rc}-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include lua.h|include lua5.2/lua.h|g' \
+-e 's|include lualib.h|include lua5.2/lualib.h|g' \
+-e 's|include luaconf.h|include lua5.2/luaconf.h|g' \
+-e 's|include lauxlib.h|include lua5.2/lauxlib.h|g' \
+{} \;
+  make LUAV=5.2
 }
 
 package_lua-socket() {
   depends=('lua')
-  cd luasocket-${pkgver/rc/-rc}-52
-  make DESTDIR=$pkgdir/ LUAV=5.2 prefix=/usr install-unix
+  cd luasocket-${pkgver/rc/-rc}
+  make DESTDIR=$pkgdir/ LUAV=5.3 prefix=/usr install-unix
   install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
@@ -50,7 +62,15 @@
   replaces=('luasocket')
   conflicts=('luasocket')
 
-  cd luasocket-${pkgver/rc/-rc}
+  cd luasocket-${pkgver/rc/-rc}-51
   make DESTDIR=$pkgdir/ LUAV=5.1 prefix=/usr install-unix
   install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
+
+package_lua52-socket() {
+  depends=('lua52')
+
+  cd luasocket-${pkgver/rc/-rc}-52
+  make DESTDIR=$pkgdir/ LUAV=5.2 prefix=/usr install-unix
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in open-vm-tools/trunk (vmware-vmblock-fuse.service)

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 17:34:18
  Author: spupykin
Revision: 132806

FS#44860

Modified:
  open-vm-tools/trunk/vmware-vmblock-fuse.service

-+
 vmware-vmblock-fuse.service |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: vmware-vmblock-fuse.service
===
--- vmware-vmblock-fuse.service 2015-05-05 15:32:56 UTC (rev 132805)
+++ vmware-vmblock-fuse.service 2015-05-05 15:34:18 UTC (rev 132806)
@@ -4,7 +4,7 @@
 
 [Service]
 Type=simple
-RuntimeDirectory=/run/vmblock-fuse
+RuntimeDirectory=vmblock-fuse
 RuntimeDirectoryMode=755
 ExecStart=/usr/bin/vmware-vmblock-fuse -d -f -o 
subtype=vmware-vmblock,default_permissions,allow_other /run/vmblock-fuse
 


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:43:53
  Author: anatolik
Revision: 132812

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

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

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

Copied: awesome/repos/community-staging-i686/PKGBUILD (from rev 132811, 
awesome/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:43:53 UTC (rev 132812)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Sébastien Luttringer
+# Contributor: xduugu
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Vesa Kaihlavirta
+
+pkgname=awesome
+pkgver=3.5.6
+pkgrel=2
+pkgdesc='Highly configurable framework window manager'
+arch=('i686' 'x86_64')
+url='http://awesome.naquadah.org/'
+license=('GPL2')
+depends=('cairo' 'dbus' 'gdk-pixbuf2' 'imlib2' 'libxdg-basedir' 'lua' 'lua-lgi'
+ 'pango' 'startup-notification' 'xcb-util-cursor' 'xcb-util-keysyms'
+ 'xcb-util-wm' 'xorg-xmessage')
+makedepends=('asciidoc' 'cmake' 'docbook-xsl' 'doxygen' 'imagemagick' 'ldoc' 
'xmlto')
+optdepends=('rlwrap: readline support for awesome-client'
+'dex: autostart your desktop files'
+'vicious: widgets for the Awesome window manager')
+provides=('notification-daemon')
+backup=('etc/xdg/awesome/rc.lua')
+source=($url/download/$pkgname-$pkgver.tar.xz)
+md5sums=('db1c31de752ab8e5f7aaa338718202af')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=RELEASE \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc \
+-DLUA_LIBRARY=/usr/lib/liblua.so.5.3
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 $srcdir/$pkgname-$pkgver/awesome.desktop \
+$pkgdir/usr/share/xsessions/awesome.desktop
+}

Copied: awesome/repos/community-staging-x86_64/PKGBUILD (from rev 132811, 
awesome/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 15:43:53 UTC (rev 132812)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Sébastien Luttringer
+# Contributor: xduugu
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Vesa Kaihlavirta
+
+pkgname=awesome
+pkgver=3.5.6
+pkgrel=2
+pkgdesc='Highly configurable framework window manager'
+arch=('i686' 'x86_64')
+url='http://awesome.naquadah.org/'
+license=('GPL2')
+depends=('cairo' 'dbus' 'gdk-pixbuf2' 'imlib2' 'libxdg-basedir' 'lua' 'lua-lgi'
+ 'pango' 'startup-notification' 'xcb-util-cursor' 'xcb-util-keysyms'
+ 'xcb-util-wm' 'xorg-xmessage')
+makedepends=('asciidoc' 'cmake' 'docbook-xsl' 'doxygen' 'imagemagick' 'ldoc' 
'xmlto')
+optdepends=('rlwrap: readline support for awesome-client'
+'dex: autostart your desktop files'
+'vicious: widgets for the Awesome window manager')
+provides=('notification-daemon')
+backup=('etc/xdg/awesome/rc.lua')
+source=($url/download/$pkgname-$pkgver.tar.xz)
+md5sums=('db1c31de752ab8e5f7aaa338718202af')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=RELEASE \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc \
+-DLUA_LIBRARY=/usr/lib/liblua.so.5.3
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 $srcdir/$pkgname-$pkgver/awesome.desktop \
+$pkgdir/usr/share/xsessions/awesome.desktop
+}


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 16:09:10
  Author: spupykin
Revision: 132786

upgpkg: redis 3.0.1-1

upd

Modified:
  redis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 12:48:19 UTC (rev 132785)
+++ PKGBUILD2015-05-05 14:09:10 UTC (rev 132786)
@@ -5,7 +5,7 @@
 # Contributor: nofxx x@nick.com
 
 pkgname=redis
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='Advanced key-value store'
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 redis.logrotate
 redis.conf-sane-defaults.patch
 redis-2.8.11-use-system-jemalloc.patch)
-md5sums=('cd8487159459d7575ba2664cb2a4819e'
+md5sums=('dd2bf1f65d75ed518313158086d4219b'
  'b557e370dcf35d8844b77d278e7be0a5'
  '9e2d75b7a9dc421122d673fe520ef17f'
  'b1beae6954b780da261b4056fd7f918a'


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:07:15
  Author: anatolik
Revision: 132797

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

Added:
  lua-zlib/repos/community-staging-i686/ChangeLog
(from rev 132796, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-staging-i686/PKGBUILD
(from rev 132796, lua-zlib/trunk/PKGBUILD)
  lua-zlib/repos/community-staging-x86_64/ChangeLog
(from rev 132796, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-staging-x86_64/PKGBUILD
(from rev 132796, lua-zlib/trunk/PKGBUILD)
Deleted:
  lua-zlib/repos/community-staging-i686/ChangeLog
  lua-zlib/repos/community-staging-i686/PKGBUILD
  lua-zlib/repos/community-staging-x86_64/ChangeLog
  lua-zlib/repos/community-staging-x86_64/PKGBUILD

+
 /ChangeLog |   84 ++
 /PKGBUILD  |  110 +++
 community-staging-i686/ChangeLog   |   42 -
 community-staging-i686/PKGBUILD|   43 -
 community-staging-x86_64/ChangeLog |   42 -
 community-staging-x86_64/PKGBUILD  |   43 -
 6 files changed, 194 insertions(+), 170 deletions(-)

Deleted: community-staging-i686/ChangeLog
===
--- community-staging-i686/ChangeLog2015-05-05 15:06:41 UTC (rev 132796)
+++ community-staging-i686/ChangeLog2015-05-05 15:07:15 UTC (rev 132797)
@@ -1,42 +0,0 @@
-2010-02-18  Dwayne Bent  db...@liqd.org
-
-   * PKGBUILD:
-   Actually build the library
-   [b994a1eae8e4] [tip]
-
-2010-02-15  Dwayne Bent  db...@liqd.org
-
-   * .hgtags:
-   Added tag v20100215-1 for changeset 82cf8c12f58d
-   [5e6e628919ec]
-
-   * ChangeLog, PKGBUILD:
-   Added ChangeLog
-   [82cf8c12f58d] [v20100215-1]
-
-   * PKGBUILD:
-   Install license file
-   [470c65e1d08b]
-
-   * PKGBUILD:
-   Updated email address
-   [cf9fdc7b9cc5]
-
-   * PKGBUILD:
-   Change package name to reflect the type of package this actually is
-   [39b61ef661d7]
-
-   * PKGBUILD:
-   Clean up PKGBUILD
-   [183b11d1286e]
-
-2009-11-26  Dwayne Bent  db...@liqd.org
-
-   * .hgtags:
-   Added tag v20091125-1 for changeset 8e6cc75fb38b
-   [72c8c117a64c]
-
-   * Makefile, PKGBUILD:
-   Initial commit
-   [8e6cc75fb38b] [v20091125-1]
-

Copied: lua-zlib/repos/community-staging-i686/ChangeLog (from rev 132796, 
lua-zlib/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-05-05 15:07:15 UTC (rev 132797)
@@ -0,0 +1,42 @@
+2010-02-18  Dwayne Bent  db...@liqd.org
+
+   * PKGBUILD:
+   Actually build the library
+   [b994a1eae8e4] [tip]
+
+2010-02-15  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20100215-1 for changeset 82cf8c12f58d
+   [5e6e628919ec]
+
+   * ChangeLog, PKGBUILD:
+   Added ChangeLog
+   [82cf8c12f58d] [v20100215-1]
+
+   * PKGBUILD:
+   Install license file
+   [470c65e1d08b]
+
+   * PKGBUILD:
+   Updated email address
+   [cf9fdc7b9cc5]
+
+   * PKGBUILD:
+   Change package name to reflect the type of package this actually is
+   [39b61ef661d7]
+
+   * PKGBUILD:
+   Clean up PKGBUILD
+   [183b11d1286e]
+
+2009-11-26  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20091125-1 for changeset 8e6cc75fb38b
+   [72c8c117a64c]
+
+   * Makefile, PKGBUILD:
+   Initial commit
+   [8e6cc75fb38b] [v20091125-1]
+

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 15:06:41 UTC (rev 132796)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:07:15 UTC (rev 132797)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=(lua-zlib lua51-zlib)
-pkgbase=lua-zlib
-epoch=2
-pkgver=0.4
-pkgrel=1
-url=http://github.com/brimworks/lua-zlib;
-pkgdesc='Simple streaming interface to zlib for Lua.'
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('cmake' 'lua' 'lua51' 'zlib' 'git')
-conflicts=('lua-lzlib')
-#source=(git://github.com/brimworks/lua-zlib.git)
-source=(lua-zlib-$pkgver.tar.gz::https://github.com/brimworks/lua-zlib/archive/v$pkgver.tar.gz;)
-md5sums=('1524ccc3a1c50c16a2955947a8f3b86b')
-
-build() {
-  cp -a $srcdir/lua-zlib-$pkgver $srcdir/lua51-zlib-$pkgver
-
-  cd $srcdir/lua-zlib-$pkgver
-  gcc -o zlib.so -O2 -fPIC -shared lua_zlib.c -llua -lz
-
-  cd $srcdir/lua51-zlib-$pkgver
-  gcc -o zlib.so -O2 -fPIC -shared -I/usr/include/lua5.1 lua_zlib.c -llua5.1 
-lz
-}
-
-package_lua-zlib() {
-  depends=('zlib' 'lua')
-
-  cd $srcdir/lua-zlib-$pkgver
-  install -Dm0755 zlib.so 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:11:58
  Author: anatolik
Revision: 132799

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

Added:
  lua-zlib/repos/community-staging-i686/ChangeLog
(from rev 132798, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-staging-i686/PKGBUILD
(from rev 132798, lua-zlib/trunk/PKGBUILD)
  lua-zlib/repos/community-staging-x86_64/ChangeLog
(from rev 132798, lua-zlib/trunk/ChangeLog)
  lua-zlib/repos/community-staging-x86_64/PKGBUILD
(from rev 132798, lua-zlib/trunk/PKGBUILD)
Deleted:
  lua-zlib/repos/community-staging-i686/ChangeLog
  lua-zlib/repos/community-staging-i686/PKGBUILD
  lua-zlib/repos/community-staging-x86_64/ChangeLog
  lua-zlib/repos/community-staging-x86_64/PKGBUILD

+
 /ChangeLog |   84 ++
 /PKGBUILD  |  110 +++
 community-staging-i686/ChangeLog   |   42 -
 community-staging-i686/PKGBUILD|   55 -
 community-staging-x86_64/ChangeLog |   42 -
 community-staging-x86_64/PKGBUILD  |   55 -
 6 files changed, 194 insertions(+), 194 deletions(-)

Deleted: community-staging-i686/ChangeLog
===
--- community-staging-i686/ChangeLog2015-05-05 15:11:24 UTC (rev 132798)
+++ community-staging-i686/ChangeLog2015-05-05 15:11:58 UTC (rev 132799)
@@ -1,42 +0,0 @@
-2010-02-18  Dwayne Bent  db...@liqd.org
-
-   * PKGBUILD:
-   Actually build the library
-   [b994a1eae8e4] [tip]
-
-2010-02-15  Dwayne Bent  db...@liqd.org
-
-   * .hgtags:
-   Added tag v20100215-1 for changeset 82cf8c12f58d
-   [5e6e628919ec]
-
-   * ChangeLog, PKGBUILD:
-   Added ChangeLog
-   [82cf8c12f58d] [v20100215-1]
-
-   * PKGBUILD:
-   Install license file
-   [470c65e1d08b]
-
-   * PKGBUILD:
-   Updated email address
-   [cf9fdc7b9cc5]
-
-   * PKGBUILD:
-   Change package name to reflect the type of package this actually is
-   [39b61ef661d7]
-
-   * PKGBUILD:
-   Clean up PKGBUILD
-   [183b11d1286e]
-
-2009-11-26  Dwayne Bent  db...@liqd.org
-
-   * .hgtags:
-   Added tag v20091125-1 for changeset 8e6cc75fb38b
-   [72c8c117a64c]
-
-   * Makefile, PKGBUILD:
-   Initial commit
-   [8e6cc75fb38b] [v20091125-1]
-

Copied: lua-zlib/repos/community-staging-i686/ChangeLog (from rev 132798, 
lua-zlib/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-05-05 15:11:58 UTC (rev 132799)
@@ -0,0 +1,42 @@
+2010-02-18  Dwayne Bent  db...@liqd.org
+
+   * PKGBUILD:
+   Actually build the library
+   [b994a1eae8e4] [tip]
+
+2010-02-15  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20100215-1 for changeset 82cf8c12f58d
+   [5e6e628919ec]
+
+   * ChangeLog, PKGBUILD:
+   Added ChangeLog
+   [82cf8c12f58d] [v20100215-1]
+
+   * PKGBUILD:
+   Install license file
+   [470c65e1d08b]
+
+   * PKGBUILD:
+   Updated email address
+   [cf9fdc7b9cc5]
+
+   * PKGBUILD:
+   Change package name to reflect the type of package this actually is
+   [39b61ef661d7]
+
+   * PKGBUILD:
+   Clean up PKGBUILD
+   [183b11d1286e]
+
+2009-11-26  Dwayne Bent  db...@liqd.org
+
+   * .hgtags:
+   Added tag v20091125-1 for changeset 8e6cc75fb38b
+   [72c8c117a64c]
+
+   * Makefile, PKGBUILD:
+   Initial commit
+   [8e6cc75fb38b] [v20091125-1]
+

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 15:11:24 UTC (rev 132798)
+++ community-staging-i686/PKGBUILD 2015-05-05 15:11:58 UTC (rev 132799)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=(lua-zlib lua51-zlib)
-pkgbase=lua-zlib
-epoch=2
-pkgver=0.4
-pkgrel=3
-url=http://github.com/brimworks/lua-zlib;
-pkgdesc='Simple streaming interface to zlib for Lua.'
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('cmake' 'lua' 'lua51' 'lua52' 'zlib' 'git')
-conflicts=('lua-lzlib')
-#source=(git://github.com/brimworks/lua-zlib.git)
-source=(lua-zlib-$pkgver.tar.gz::https://github.com/brimworks/lua-zlib/archive/v$pkgver.tar.gz;)
-md5sums=('1524ccc3a1c50c16a2955947a8f3b86b')
-
-build() {
-  cp -a $srcdir/lua-zlib-$pkgver $srcdir/lua51-zlib-$pkgver
-  cp -a $srcdir/lua-zlib-$pkgver $srcdir/lua52-zlib-$pkgver
-
-  cd $srcdir/lua-zlib-$pkgver
-  gcc -o zlib.so -O2 -fPIC -shared lua_zlib.c -llua -lz
-
-  cd $srcdir/lua51-zlib-$pkgver
-  gcc -o zlib.so -O2 -fPIC -shared -I/usr/include/lua5.1 lua_zlib.c -llua5.1 
-lz
-
-  cd $srcdir/lua52-zlib-$pkgver
-  gcc -o zlib.so -O2 -fPIC 

[arch-commits] Commit in lua-alt-getopt/repos/community-staging-any (4 files)

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:20:49
  Author: anatolik
Revision: 132803

archrelease: copy trunk to community-staging-any

Added:
  lua-alt-getopt/repos/community-staging-any/LICENSE
(from rev 132802, lua-alt-getopt/trunk/LICENSE)
  lua-alt-getopt/repos/community-staging-any/PKGBUILD
(from rev 132802, lua-alt-getopt/trunk/PKGBUILD)
Deleted:
  lua-alt-getopt/repos/community-staging-any/LICENSE
  lua-alt-getopt/repos/community-staging-any/PKGBUILD

--+
 LICENSE  |   14 
 PKGBUILD |   98 ++---
 2 files changed, 62 insertions(+), 50 deletions(-)

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

Copied: lua-alt-getopt/repos/community-staging-any/LICENSE (from rev 132802, 
lua-alt-getopt/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-05-05 15:20:49 UTC (rev 132803)
@@ -0,0 +1,7 @@
+Copyright © 2008 Lua.org, PUC-Rio.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the Software), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE. 

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-05 15:20:28 UTC (rev 132802)
+++ PKGBUILD2015-05-05 15:20:49 UTC (rev 132803)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Old Maintainer: Gustavo Alvarez sl1pk...@gmail.com
-# contributor: Cameron Banta cba...@gmail.com
-
-pkgbase=lua-alt-getopt
-pkgname=(lua-alt-getopt lua51-alt-getopt)
-pkgver=0.7.0
-pkgrel=6
-pkgdesc=Lua module for processing options similar to getopt_long(3) (5.1)
-license=('MIT')
-arch=('any')
-url=http://luaforge.net/projects/alt-getopt/;
-makedepends=('bmake' 'lua' 'lua51')
-source=(http://mova.org/~cheusov/pub/lua_alt_getopt/lua-alt-getopt-${pkgver}.tar.gz;
-'LICENSE')
-sha1sums=('431b590002f5fdced78e0745a9a283aefdd1dfa0'
-  'e471a511997528dd080d2997580499c37d06111a')
-
-build() {
-  cp -r ${pkgname}-${pkgver} build51
-  cp -r ${pkgname}-${pkgver} build52
-  cd $srcdir/build51
-  bmake LUAVER=5.1 PREFIX=/usr
-  cd $srcdir/build52
-  bmake LUAVER=5.2 PREFIX=/usr
-}
-
-package_lua51-alt-getopt() {
-  depends=('lua51')
-  cd $srcdir/build51
-  install -Dm755 alt_getopt ${pkgdir}/usr/bin/alt_getopt5.1
-  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.1/alt_getopt.lua
-  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_lua-alt-getopt() {
-  depends=('lua')
-  cd $srcdir/build52
-  install -Dm755 alt_getopt ${pkgdir}/usr/bin/alt_getopt
-  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.2/alt_getopt.lua
-  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: 

[arch-commits] Commit in lua-alt-getopt/trunk (PKGBUILD)

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:20:28
  Author: anatolik
Revision: 132802

upgpkg: lua-alt-getopt 0.7.0-7

- add lua52 specific package

Modified:
  lua-alt-getopt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:17:20 UTC (rev 132801)
+++ PKGBUILD2015-05-05 15:20:28 UTC (rev 132802)
@@ -4,14 +4,14 @@
 # contributor: Cameron Banta cba...@gmail.com
 
 pkgbase=lua-alt-getopt
-pkgname=(lua-alt-getopt lua51-alt-getopt)
+pkgname=(lua-alt-getopt lua51-alt-getopt lua52-alt-getopt)
 pkgver=0.7.0
-pkgrel=6
-pkgdesc=Lua module for processing options similar to getopt_long(3) (5.1)
+pkgrel=7
+pkgdesc=Lua module for processing options similar to getopt_long(3)
 license=('MIT')
 arch=('any')
 url=http://luaforge.net/projects/alt-getopt/;
-makedepends=('bmake' 'lua' 'lua51')
+makedepends=('bmake' 'lua' 'lua51' 'lua52')
 
source=(http://mova.org/~cheusov/pub/lua_alt_getopt/lua-alt-getopt-${pkgver}.tar.gz;
 'LICENSE')
 sha1sums=('431b590002f5fdced78e0745a9a283aefdd1dfa0'
@@ -20,10 +20,14 @@
 build() {
   cp -r ${pkgname}-${pkgver} build51
   cp -r ${pkgname}-${pkgver} build52
+  cp -r ${pkgname}-${pkgver} build53
+
   cd $srcdir/build51
   bmake LUAVER=5.1 PREFIX=/usr
   cd $srcdir/build52
   bmake LUAVER=5.2 PREFIX=/usr
+  cd $srcdir/build53
+  bmake LUAVER=5.3 PREFIX=/usr
 }
 
 package_lua51-alt-getopt() {
@@ -34,10 +38,18 @@
   install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
 
+package_lua52-alt-getopt() {
+  depends=('lua52')
+  cd $srcdir/build52
+  install -Dm755 alt_getopt ${pkgdir}/usr/bin/alt_getopt5.2
+  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.2/alt_getopt.lua
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
 package_lua-alt-getopt() {
   depends=('lua')
-  cd $srcdir/build52
+  cd $srcdir/build53
   install -Dm755 alt_getopt ${pkgdir}/usr/bin/alt_getopt
-  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.2/alt_getopt.lua
+  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.3/alt_getopt.lua
   install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:36:11
  Author: anatolik
Revision: 132807

Lua 5.3 rebuild

Modified:
  penlight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:34:18 UTC (rev 132806)
+++ PKGBUILD2015-05-05 15:36:11 UTC (rev 132807)
@@ -7,7 +7,7 @@
 pkgbase=penlight
 pkgname=('lua-penlight')
 pkgver=1.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua libraries focusing on input data handling'
 arch=('any')
 url='https://github.com/stevedonovan/penlight'
@@ -25,8 +25,8 @@
 package_lua-penlight() {
 
   cd Penlight-$pkgver
-  install -dm755 $pkgdir/usr/share/lua/5.2/pl
-  install -m644 lua/pl/* $pkgdir/usr/share/lua/5.2/pl
+  install -dm755 $pkgdir/usr/share/lua/5.3/pl
+  install -m644 lua/pl/* $pkgdir/usr/share/lua/5.3/pl
   # copy docs
   install -dm755 $pkgdir/usr/share/doc/$pkgname/{,manual,examples}
   install -m644 CONTRIBUTING.md CHANGES.md README.md 
$pkgdir/usr/share/doc/$pkgname


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 16:49:45
  Author: anatolik
Revision: 132790

upgpkg: luasql 2.3.0-3

- use 5.3 specific lib dir

Modified:
  luasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 14:47:48 UTC (rev 132789)
+++ PKGBUILD2015-05-05 14:49:45 UTC (rev 132790)
@@ -6,7 +6,7 @@
 pkgbase=luasql
 pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
 pkgver=2.3.0
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://www.keplerproject.org/luasql/'
 license=('MIT')
@@ -32,7 +32,7 @@
   replaces=('luasql-mysql')
 
   cd $pkgbase-$pkgver
-  install -Dm644 src/mysql.so $pkgdir/usr/lib/lua/5.2/luasql/mysql.so
+  install -Dm644 src/mysql.so $pkgdir/usr/lib/lua/5.3/luasql/mysql.so
   install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
 }
 
@@ -41,7 +41,7 @@
   depends=('lua' 'postgresql-libs')
 
   cd $pkgbase-$pkgver
-  install -Dm644 src/postgres.so $pkgdir/usr/lib/lua/5.2/luasql/postgres.so
+  install -Dm644 src/postgres.so $pkgdir/usr/lib/lua/5.3/luasql/postgres.so
   install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
 }
 
@@ -50,7 +50,7 @@
   depends=('lua' 'sqlite')
 
   cd $pkgbase-$pkgver
-  install -Dm644 src/sqlite3.so $pkgdir/usr/lib/lua/5.2/luasql/sqlite3.so
+  install -Dm644 src/sqlite3.so $pkgdir/usr/lib/lua/5.3/luasql/sqlite3.so
   install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
 }
 


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 16:50:24
  Author: anatolik
Revision: 132791

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

Added:
  luasql/repos/community-staging-i686/PKGBUILD
(from rev 132790, luasql/trunk/PKGBUILD)
  luasql/repos/community-staging-x86_64/PKGBUILD
(from rev 132790, luasql/trunk/PKGBUILD)
Deleted:
  luasql/repos/community-staging-i686/PKGBUILD
  luasql/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-staging-i686/PKGBUILD   |   57 --
 community-staging-x86_64/PKGBUILD |   57 --
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-05-05 14:49:45 UTC (rev 132790)
+++ community-staging-i686/PKGBUILD 2015-05-05 14:50:24 UTC (rev 132791)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sébastien Luttringer se...@archlinux.org
-# Contributor: Anders Bergh ande...@gmail.com
-
-pkgbase=luasql
-pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
-pkgver=2.3.0
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://www.keplerproject.org/luasql/'
-license=('MIT')
-makedepends=('lua' 'libmariadbclient' 'postgresql-libs' 'sqlite')
-source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;)
-md5sums=('af9f0f3a2313a1fcf88c40700092048d')
-
-build() {
-  cd $pkgbase-$pkgver
-  msg2 'Building sqlite support'
-  make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99 -DLUA_32BITS'
-  msg2 'Building PostgreSQL support'
-  make T=postgres PREFIX=/usr DRIVER_LIBS='-lpq' DRIVER_INCS='-fPIC 
-DLUA_32BITS'
-  msg2 'Building MySQL support'
-  make T=mysql PREFIX=/usr DRIVER_LIBS=$(mysql_config --libs) \
-DRIVER_INCS=$(mysql_config --include) -fPIC -DLUA_32BITS
-}
-
-package_lua-sql-mysql() {
-  pkgdesc='MySQL module for Lua'
-  depends=('lua' 'libmariadbclient')
-  conflicts=('luasql-mysql')
-  replaces=('luasql-mysql')
-
-  cd $pkgbase-$pkgver
-  install -Dm644 src/mysql.so $pkgdir/usr/lib/lua/5.2/luasql/mysql.so
-  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
-}
-
-package_lua-sql-postgres() {
-  pkgdesc='PostgreSQL module for Lua'
-  depends=('lua' 'postgresql-libs')
-
-  cd $pkgbase-$pkgver
-  install -Dm644 src/postgres.so $pkgdir/usr/lib/lua/5.2/luasql/postgres.so
-  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
-}
-
-package_lua-sql-sqlite() {
-  pkgdesc='SQLite module for Lua'
-  depends=('lua' 'sqlite')
-
-  cd $pkgbase-$pkgver
-  install -Dm644 src/sqlite3.so $pkgdir/usr/lib/lua/5.2/luasql/sqlite3.so
-  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
-}
-
-# vim:set ts=2 sw=2 et:

Copied: luasql/repos/community-staging-i686/PKGBUILD (from rev 132790, 
luasql/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 14:50:24 UTC (rev 132791)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sébastien Luttringer se...@archlinux.org
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasql
+pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
+pkgver=2.3.0
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://www.keplerproject.org/luasql/'
+license=('MIT')
+makedepends=('lua' 'libmariadbclient' 'postgresql-libs' 'sqlite')
+source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;)
+md5sums=('af9f0f3a2313a1fcf88c40700092048d')
+
+build() {
+  cd $pkgbase-$pkgver
+  msg2 'Building sqlite support'
+  make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99 -DLUA_32BITS'
+  msg2 'Building PostgreSQL support'
+  make T=postgres PREFIX=/usr DRIVER_LIBS='-lpq' DRIVER_INCS='-fPIC 
-DLUA_32BITS'
+  msg2 'Building MySQL support'
+  make T=mysql PREFIX=/usr DRIVER_LIBS=$(mysql_config --libs) \
+DRIVER_INCS=$(mysql_config --include) -fPIC -DLUA_32BITS
+}
+
+package_lua-sql-mysql() {
+  pkgdesc='MySQL module for Lua'
+  depends=('lua' 'libmariadbclient')
+  conflicts=('luasql-mysql')
+  replaces=('luasql-mysql')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/mysql.so $pkgdir/usr/lib/lua/5.3/luasql/mysql.so
+  install -Dm644 doc/us/license.html 
$pkgdir/usr/share/licenses/$pkgname/license.html
+}
+
+package_lua-sql-postgres() {
+  pkgdesc='PostgreSQL module for Lua'
+  depends=('lua' 'postgresql-libs')
+
+  cd $pkgbase-$pkgver
+  install -Dm644 src/postgres.so $pkgdir/usr/lib/lua/5.3/luasql/postgres.so
+  install -Dm644 doc/us/license.html 

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:38:10
  Author: anatolik
Revision: 132809

Lua 5.3 rebuild

Modified:
  ldoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:36:30 UTC (rev 132808)
+++ PKGBUILD2015-05-05 15:38:10 UTC (rev 132809)
@@ -5,7 +5,7 @@
 
 pkgname=ldoc
 pkgver=1.4.3
-pkgrel=1
+pkgrel=2
 pkgdesc='LuaDoc-compatible documentation generation system'
 arch=('any')
 url='http://stevedonovan.github.com/ldoc/'
@@ -18,8 +18,8 @@
   cd LDoc-$pkgver
 
   # install library
-  install -dm755 $pkgdir/usr/share/lua/5.2
-  cp -a ldoc $pkgdir/usr/share/lua/5.2
+  install -dm755 $pkgdir/usr/share/lua/5.3
+  cp -a ldoc $pkgdir/usr/share/lua/5.3
 
   # install binaries
   install -Dm755 ldoc.lua $pkgdir/usr/bin/ldoc.lua


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 17:43:19
  Author: anatolik
Revision: 132811

Lua5.3 rebuild

Modified:
  awesome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:38:29 UTC (rev 132810)
+++ PKGBUILD2015-05-05 15:43:19 UTC (rev 132811)
@@ -8,7 +8,7 @@
 
 pkgname=awesome
 pkgver=3.5.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Highly configurable framework window manager'
 arch=('i686' 'x86_64')
 url='http://awesome.naquadah.org/'
@@ -35,7 +35,7 @@
 -DCMAKE_BUILD_TYPE=RELEASE \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DSYSCONFDIR=/etc \
--DLUA_LIBRARY=/usr/lib/liblua.so.5.2
+-DLUA_LIBRARY=/usr/lib/liblua.so.5.3
   make
 }
 


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

2015-05-05 Thread Evangelos Foutras
Date: Tuesday, May 5, 2015 @ 20:07:25
  Author: foutrelis
Revision: 238513

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

Added:
  thunar/repos/extra-i686/PKGBUILD
(from rev 238512, thunar/trunk/PKGBUILD)
  thunar/repos/extra-i686/thunar.install
(from rev 238512, thunar/trunk/thunar.install)
  thunar/repos/extra-x86_64/PKGBUILD
(from rev 238512, thunar/trunk/PKGBUILD)
  thunar/repos/extra-x86_64/thunar.install
(from rev 238512, thunar/trunk/thunar.install)
Deleted:
  
thunar/repos/extra-i686/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch
  
thunar/repos/extra-i686/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch
  thunar/repos/extra-i686/PKGBUILD
  thunar/repos/extra-i686/thunar.install
  
thunar/repos/extra-x86_64/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch
  
thunar/repos/extra-x86_64/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch
  thunar/repos/extra-x86_64/PKGBUILD
  thunar/repos/extra-x86_64/thunar.install

--+
 /PKGBUILD| 
 118 ++
 /thunar.install  | 
  28 ++
 extra-i686/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch   | 
  31 --
 extra-i686/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch   | 
  29 --
 extra-i686/PKGBUILD  | 
  69 -
 extra-i686/thunar.install| 
  14 -
 extra-x86_64/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch | 
  31 --
 extra-x86_64/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch | 
  29 --
 extra-x86_64/PKGBUILD| 
  69 -
 extra-x86_64/thunar.install  | 
  14 -
 10 files changed, 146 insertions(+), 286 deletions(-)

Deleted: 
extra-i686/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch
===
--- extra-i686/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch  
2015-05-05 18:07:13 UTC (rev 238512)
+++ extra-i686/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch  
2015-05-05 18:07:25 UTC (rev 238513)
@@ -1,31 +0,0 @@
-From ea00375c7d041105033678d5515b651a34e1804d Mon Sep 17 00:00:00 2001
-From: Harald Judt h.j...@gmx.at
-Date: Thu, 23 Apr 2015 21:41:45 +0200
-Subject: [PATCH] Do not perform the complete folder reload in idle (bug
- #11849)
-
-This can cause an infinite loop as described in the bug report.

- thunar/thunar-folder.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/thunar/thunar-folder.c b/thunar/thunar-folder.c
-index 9e6fc17..2d70f52 100644
 a/thunar/thunar-folder.c
-+++ b/thunar/thunar-folder.c
-@@ -551,10 +551,10 @@ thunar_folder_finished (ExoJob   *job,
-   if (folder-reload_info)
- {
-   for (lp = folder-files; lp != NULL; lp = lp-next)
--thunar_file_reload_idle (lp-data);
-+thunar_file_reload (lp-data);
- 
-   /* reload folder information too */
--  thunar_file_reload_idle (folder-corresponding_file);
-+  thunar_file_reload (folder-corresponding_file);
- 
-   folder-reload_info = FALSE;
- }
--- 
-2.3.6
-

Deleted: 
extra-i686/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch
===
--- extra-i686/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch  
2015-05-05 18:07:13 UTC (rev 238512)
+++ extra-i686/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch  
2015-05-05 18:07:25 UTC (rev 238513)
@@ -1,29 +0,0 @@
-From fa3d7d32ec8b1614d4fc4afe733112b29c5c7593 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras evange...@foutrelis.com
-Date: Mon, 27 Apr 2015 11:55:12 +0300
-Subject: [PATCH] Update F5 binding for new ThunarWindow::reload signal
-
-In commit b839b29d6dfa57aab9c3cec97eca7624a483a45e (Extend reload
-functions to allow a full reload) an extra parameter was added to
-reload functions that specifies whether file information should be
-reloaded as well.

- thunar/thunar-window.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c
-index bc51b5e..e8b8b9d 100644
 a/thunar/thunar-window.c
-+++ b/thunar/thunar-window.c
-@@ -623,7 +623,7 @@ thunar_window_class_init (ThunarWindowClass *klass)
-   /* setup the key bindings for the windows */
-   binding_set = gtk_binding_set_by_class (klass);
-   gtk_binding_entry_add_signal (binding_set, GDK_BackSpace, 0, back, 0);
--  gtk_binding_entry_add_signal (binding_set, GDK_F5, 0, reload, 0);
-+  gtk_binding_entry_add_signal (binding_set, GDK_F5, 0, reload, 1, 
G_TYPE_BOOLEAN, TRUE);
-   

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

2015-05-05 Thread Evangelos Foutras
Date: Tuesday, May 5, 2015 @ 20:07:13
  Author: foutrelis
Revision: 238512

upgpkg: thunar 1.6.8-1

New upstream release.

Modified:
  thunar/trunk/PKGBUILD
Deleted:
  thunar/trunk/0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch
  thunar/trunk/0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch

-+
 0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch |   31 
--
 0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch |   29 
-
 PKGBUILD|   18 +
 3 files changed, 4 insertions(+), 74 deletions(-)

Deleted: 0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch
===
--- 0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch 
2015-05-05 17:40:41 UTC (rev 238511)
+++ 0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch 
2015-05-05 18:07:13 UTC (rev 238512)
@@ -1,31 +0,0 @@
-From ea00375c7d041105033678d5515b651a34e1804d Mon Sep 17 00:00:00 2001
-From: Harald Judt h.j...@gmx.at
-Date: Thu, 23 Apr 2015 21:41:45 +0200
-Subject: [PATCH] Do not perform the complete folder reload in idle (bug
- #11849)
-
-This can cause an infinite loop as described in the bug report.

- thunar/thunar-folder.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/thunar/thunar-folder.c b/thunar/thunar-folder.c
-index 9e6fc17..2d70f52 100644
 a/thunar/thunar-folder.c
-+++ b/thunar/thunar-folder.c
-@@ -551,10 +551,10 @@ thunar_folder_finished (ExoJob   *job,
-   if (folder-reload_info)
- {
-   for (lp = folder-files; lp != NULL; lp = lp-next)
--thunar_file_reload_idle (lp-data);
-+thunar_file_reload (lp-data);
- 
-   /* reload folder information too */
--  thunar_file_reload_idle (folder-corresponding_file);
-+  thunar_file_reload (folder-corresponding_file);
- 
-   folder-reload_info = FALSE;
- }
--- 
-2.3.6
-

Deleted: 0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch
===
--- 0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch 
2015-05-05 17:40:41 UTC (rev 238511)
+++ 0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch 
2015-05-05 18:07:13 UTC (rev 238512)
@@ -1,29 +0,0 @@
-From fa3d7d32ec8b1614d4fc4afe733112b29c5c7593 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras evange...@foutrelis.com
-Date: Mon, 27 Apr 2015 11:55:12 +0300
-Subject: [PATCH] Update F5 binding for new ThunarWindow::reload signal
-
-In commit b839b29d6dfa57aab9c3cec97eca7624a483a45e (Extend reload
-functions to allow a full reload) an extra parameter was added to
-reload functions that specifies whether file information should be
-reloaded as well.

- thunar/thunar-window.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c
-index bc51b5e..e8b8b9d 100644
 a/thunar/thunar-window.c
-+++ b/thunar/thunar-window.c
-@@ -623,7 +623,7 @@ thunar_window_class_init (ThunarWindowClass *klass)
-   /* setup the key bindings for the windows */
-   binding_set = gtk_binding_set_by_class (klass);
-   gtk_binding_entry_add_signal (binding_set, GDK_BackSpace, 0, back, 0);
--  gtk_binding_entry_add_signal (binding_set, GDK_F5, 0, reload, 0);
-+  gtk_binding_entry_add_signal (binding_set, GDK_F5, 0, reload, 1, 
G_TYPE_BOOLEAN, TRUE);
-   gtk_binding_entry_add_signal (binding_set, GDK_F9, 0, toggle-sidepane, 0);
-   gtk_binding_entry_add_signal (binding_set, GDK_F10, 0, toggle-menubar, 0);
-   gtk_binding_entry_add_signal (binding_set, GDK_KP_Add, GDK_CONTROL_MASK, 
zoom-in, 0);
--- 
-2.3.6
-

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 17:40:41 UTC (rev 238511)
+++ PKGBUILD2015-05-05 18:07:13 UTC (rev 238512)
@@ -3,8 +3,8 @@
 # Contributor: Andrew Simmons andrew.simm...@gmail.com
 
 pkgname=thunar
-pkgver=1.6.7
-pkgrel=2
+pkgver=1.6.8
+pkgrel=1
 pkgdesc=Modern file manager for Xfce
 arch=('i686' 'x86_64')
 url=http://thunar.xfce.org;
@@ -20,21 +20,11 @@
 'thunar-archive-plugin: create and deflate archives'
 'thunar-media-tags-plugin: view/edit id3/ogg tags')
 install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2
-0001-Do-not-perform-the-complete-folder-reload-in-idle-bu.patch
-0001-Update-F5-binding-for-new-ThunarWindow-reload-signal.patch)
-sha256sums=('e35f05d5413ffd26bfe866f47b1d199045e3b42912da47c831d3689e12336ee5'
-'08b0c01412b00c5d9011c8c3d03d436e57484538800179990e5742d49da2e43b'
-'5b7d66872b4bab7ee4ef6ef439280f7b2bbef83190f2a8f624713065f2038a49')
+source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)

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

2015-05-05 Thread Anatol Pomozov
Date: Wednesday, May 6, 2015 @ 00:08:08
  Author: anatolik
Revision: 238519

upgpkg: openmpi 1.8.5-1

Modified:
  openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 21:51:06 UTC (rev 238518)
+++ PKGBUILD2015-05-05 22:08:08 UTC (rev 238519)
@@ -3,7 +3,7 @@
 # Contributor: Stéphane Gaudreault steph...@archlinux.org
 
 pkgname=openmpi
-pkgver=1.8.4
+pkgver=1.8.5
 pkgrel=1
 pkgdesc='High performance message passing library (MPI)'
 arch=(i686 x86_64)
@@ -13,23 +13,13 @@
 makedepends=(inetutils valgrind gcc-fortran)
 optdepends=('gcc-fortran: fortran support')
 options=(staticlibs)
-source=(http://www.open-mpi.org/software/ompi/v1.8/downloads/${pkgname}-${pkgver}.tar.bz2
-system_ltdl.patch)
-sha1sums=('88ae39850fcf0db05ac20e35dd9e4cacc75bde4d'
-  'd5f8a3d463f1a1f29ca4725d6fb3b9f8c40799dc')
+source=(http://www.open-mpi.org/software/ompi/v1.8/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2e0408dbb033b0df21d1f95fffb872f2a8237de6')
 
-prepare() {
+build() {
cd $pkgname-$pkgver
 
-   # Make sure we use the system ltdl library rather than the ones in the 
tarball
-   rm -r opal/libltdl
-   patch -p1  ../system_ltdl.patch
./autogen.pl
-}
-
-build() {
-   cd $pkgname-$pkgver
-
./configure --prefix=/usr \
--sysconfdir=/etc/${pkgname} \
--enable-mpi-fortran=all \


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

2015-05-05 Thread Anatol Pomozov
Date: Wednesday, May 6, 2015 @ 00:08:39
  Author: anatolik
Revision: 238520

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

Added:
  openmpi/repos/testing-i686/
  openmpi/repos/testing-i686/PKGBUILD
(from rev 238519, openmpi/trunk/PKGBUILD)
  openmpi/repos/testing-i686/system_ltdl.patch
(from rev 238519, openmpi/trunk/system_ltdl.patch)
  openmpi/repos/testing-x86_64/
  openmpi/repos/testing-x86_64/PKGBUILD
(from rev 238519, openmpi/trunk/PKGBUILD)
  openmpi/repos/testing-x86_64/system_ltdl.patch
(from rev 238519, openmpi/trunk/system_ltdl.patch)

--+
 testing-i686/PKGBUILD|   67 +
 testing-i686/system_ltdl.patch   |   66 
 testing-x86_64/PKGBUILD  |   67 +
 testing-x86_64/system_ltdl.patch |   66 
 4 files changed, 266 insertions(+)

Copied: openmpi/repos/testing-i686/PKGBUILD (from rev 238519, 
openmpi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-05 22:08:39 UTC (rev 238520)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol dot pomozov at gmail
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=openmpi
+pkgver=1.8.5
+pkgrel=1
+pkgdesc='High performance message passing library (MPI)'
+arch=(i686 x86_64)
+url='http://www.open-mpi.org'
+license=(custom)
+depends=(libltdl hwloc)
+makedepends=(inetutils valgrind gcc-fortran)
+optdepends=('gcc-fortran: fortran support')
+options=(staticlibs)
+source=(http://www.open-mpi.org/software/ompi/v1.8/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('2e0408dbb033b0df21d1f95fffb872f2a8237de6')
+
+build() {
+   cd $pkgname-$pkgver
+
+   ./autogen.pl
+   ./configure --prefix=/usr \
+   --sysconfdir=/etc/${pkgname} \
+   --enable-mpi-fortran=all \
+   --libdir=/usr/lib/${pkgname} \
+   --with-threads=posix \
+   --enable-smp-locks \
+   --with-valgrind \
+   --enable-memchecker \
+   --enable-pretty-print-stacktrace \
+   --without-slurm \
+   --with-hwloc=/usr \
+   --with-libltdl=/usr  \
+   FC=/usr/bin/gfortran \
+   LDFLAGS=$LDFLAGS -Wl,-z,noexecstack
+
+   make
+}
+
+check() {
+   cd $pkgname-$pkgver
+
+   make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   # FS#28583
+   install -d -m 755 $pkgdir/usr/lib/pkgconfig
+   for i in ompi-c.pc ompi-cxx.pc ompi-f77.pc ompi-f90.pc ompi.pc; do
+  ln -sf /usr/lib/openmpi/pkgconfig/$i $pkgdir/usr/lib/pkgconfig/
+   done
+
+   # Openmpi's otfinfo conflicts with the one from texlive
+   mv $pkgdir/usr/bin/otfinfo{,mpi}
+
+   # Remove dangling symlink and useless file
+   rm $pkgdir/usr/share/vampirtrace/config.log
+
+   install -d -m 755 $pkgdir/etc/ld.so.conf.d
+   echo /usr/lib/$pkgname  $pkgdir/etc/ld.so.conf.d/$pkgname.conf
+
+   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openmpi/repos/testing-i686/system_ltdl.patch (from rev 238519, 
openmpi/trunk/system_ltdl.patch)
===
--- testing-i686/system_ltdl.patch  (rev 0)
+++ testing-i686/system_ltdl.patch  2015-05-05 22:08:39 UTC (rev 238520)
@@ -0,0 +1,66 @@
+diff --git a/config/ltdl.m4 b/config/ltdl.m4
+index ea76f4d..2f1cbfe 100644
+--- a/config/ltdl.m4
 b/config/ltdl.m4
+@@ -162,6 +162,8 @@ m4_defun([_LTDL_INSTALLABLE],
+   fi
+ fi
+ 
++enable_ltdl_install=no
++
+ # If configure.ac declared an installable ltdl, and the user didn't override
+ # with --disable-ltdl-install, we will install the shipped libltdl.
+ case $enable_ltdl_install in
+diff --git a/ompi/debuggers/Makefile.am b/ompi/debuggers/Makefile.am
+index 2adf3fd..5b22a91 100644
+--- a/ompi/debuggers/Makefile.am
 b/ompi/debuggers/Makefile.am
+@@ -46,8 +46,7 @@ headers = \
+ # Simple checks to ensure that the DSOs are functional
+ 
+ dlopen_test_SOURCES = dlopen_test.c
+-dlopen_test_CPPFLAGS = -I$(top_srcdir)/opal/libltdl
+-dlopen_test_LDADD = $(top_builddir)/opal/libltdl/libltdlc.la
++dlopen_test_LDADD = -lltdl
+ 
+ predefined_gap_test_SOURCES = predefined_gap_test.c
+ predefined_gap_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
+diff --git a/ompi/debuggers/dlopen_test.c b/ompi/debuggers/dlopen_test.c
+index 029a4ee..023afb8 100644
+--- a/ompi/debuggers/dlopen_test.c
 b/ompi/debuggers/dlopen_test.c
+@@ -13,7 +13,7 @@
+ #include string.h
+ #include stdlib.h
+ 
+-#include opal/libltdl/ltdl.h
++#include ltdl.h
+ 
+ static int do_test(void);
+ 
+diff --git a/test/support/components.c b/test/support/components.c
+index 41c4345..6b4b464 100644
+--- a/test/support/components.c
 

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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:54:16
  Author: heftig
Revision: 238507

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

Added:
  networkmanager-openconnect/repos/extra-i686/PKGBUILD
(from rev 238506, networkmanager-openconnect/trunk/PKGBUILD)
  networkmanager-openconnect/repos/extra-i686/networkmanager-openconnect.install
(from rev 238506, 
networkmanager-openconnect/trunk/networkmanager-openconnect.install)
  networkmanager-openconnect/repos/extra-x86_64/PKGBUILD
(from rev 238506, networkmanager-openconnect/trunk/PKGBUILD)
  
networkmanager-openconnect/repos/extra-x86_64/networkmanager-openconnect.install
(from rev 238506, 
networkmanager-openconnect/trunk/networkmanager-openconnect.install)
Deleted:
  networkmanager-openconnect/repos/extra-i686/PKGBUILD
  networkmanager-openconnect/repos/extra-i686/networkmanager-openconnect.install
  networkmanager-openconnect/repos/extra-x86_64/PKGBUILD
  
networkmanager-openconnect/repos/extra-x86_64/networkmanager-openconnect.install

-+
 /PKGBUILD   |   70 ++
 /networkmanager-openconnect.install |   32 ++
 extra-i686/PKGBUILD |   35 ---
 extra-i686/networkmanager-openconnect.install   |   16 -
 extra-x86_64/PKGBUILD   |   35 ---
 extra-x86_64/networkmanager-openconnect.install |   16 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 15:53:36 UTC (rev 238506)
+++ extra-i686/PKGBUILD 2015-05-05 15:54:16 UTC (rev 238507)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=networkmanager-openconnect
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=NetworkManager VPN integration for openconnect
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org/projects/NetworkManager/;
-depends=(networkmanager=${pkgver::6} 'openconnect' 'gtk3' 'libsecret')
-makedepends=('intltool')
-optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/${pkgver::3}/NetworkManager-openconnect-${pkgver}.tar.xz)
-sha256sums=('06f322f8efe9b882b19dcaa4314049171fd38701e902f688cbdcacfd21d23f5f')
-
-prepare() {
-  cd NetworkManager-openconnect-${pkgver}
-}
-
-build() {
-  cd NetworkManager-openconnect-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib/networkmanager \
-   --enable-more-warnings=yes \
-   --disable-static
-  make
-}
-
-package() {
-  cd NetworkManager-openconnect-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: networkmanager-openconnect/repos/extra-i686/PKGBUILD (from rev 238506, 
networkmanager-openconnect/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 15:54:16 UTC (rev 238507)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-openconnect
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=NetworkManager VPN integration for openconnect
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+depends=(networkmanager=${pkgver::6} 'openconnect' 'gtk3' 'libsecret')
+makedepends=('intltool')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/${pkgver::3}/NetworkManager-openconnect-${pkgver}.tar.xz)
+sha256sums=('120a055863841df1763d4c6b5de03e6f7180fa1a218f376ecc9c75a5862e600e')
+
+prepare() {
+  cd NetworkManager-openconnect-${pkgver}
+}
+
+build() {
+  cd NetworkManager-openconnect-${pkgver}
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib/networkmanager \
+   --enable-more-warnings=yes \
+   --disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-openconnect-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/networkmanager-openconnect.install
===
--- extra-i686/networkmanager-openconnect.install   2015-05-05 15:53:36 UTC 
(rev 238506)
+++ extra-i686/networkmanager-openconnect.install   2015-05-05 15:54:16 UTC 
(rev 238507)
@@ -1,16 +0,0 @@
-pkgname=networkmanager-openconnect
-
-post_install() {
-  getent group nm-openconnect /dev/null 21 || groupadd -g 104 nm-openconnect
-  getent passwd nm-openconnect  /dev/null 21 || useradd -u 104 -s 
/sbin/nologin -d / -M -c 'NetworkManager user for OpenConnect' -g 
nm-openconnect nm-openconnect
-  passwd -l nm-openconnect  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  getent passwd nm-openconnect /dev/null 21  

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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:52:30
  Author: heftig
Revision: 238505

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

Added:
  networkmanager/repos/extra-i686/NetworkManager.conf
(from rev 238504, networkmanager/trunk/NetworkManager.conf)
  networkmanager/repos/extra-i686/PKGBUILD
(from rev 238504, networkmanager/trunk/PKGBUILD)
  networkmanager/repos/extra-i686/disable_set_hostname.patch
(from rev 238504, networkmanager/trunk/disable_set_hostname.patch)
  networkmanager/repos/extra-i686/networkmanager.install
(from rev 238504, networkmanager/trunk/networkmanager.install)
  networkmanager/repos/extra-x86_64/NetworkManager.conf
(from rev 238504, networkmanager/trunk/NetworkManager.conf)
  networkmanager/repos/extra-x86_64/PKGBUILD
(from rev 238504, networkmanager/trunk/PKGBUILD)
  networkmanager/repos/extra-x86_64/disable_set_hostname.patch
(from rev 238504, networkmanager/trunk/disable_set_hostname.patch)
  networkmanager/repos/extra-x86_64/networkmanager.install
(from rev 238504, networkmanager/trunk/networkmanager.install)
Deleted:
  networkmanager/repos/extra-i686/NetworkManager.conf
  networkmanager/repos/extra-i686/PKGBUILD
  networkmanager/repos/extra-i686/disable_set_hostname.patch
  networkmanager/repos/extra-i686/networkmanager.install
  networkmanager/repos/extra-x86_64/NetworkManager.conf
  networkmanager/repos/extra-x86_64/PKGBUILD
  networkmanager/repos/extra-x86_64/disable_set_hostname.patch
  networkmanager/repos/extra-x86_64/networkmanager.install

-+
 /NetworkManager.conf|   20 ++
 /PKGBUILD   |  224 ++
 /disable_set_hostname.patch |   38 +
 /networkmanager.install |   18 ++
 extra-i686/NetworkManager.conf  |   10 -
 extra-i686/PKGBUILD |  112 ---
 extra-i686/disable_set_hostname.patch   |   19 --
 extra-i686/networkmanager.install   |9 -
 extra-x86_64/NetworkManager.conf|   10 -
 extra-x86_64/PKGBUILD   |  112 ---
 extra-x86_64/disable_set_hostname.patch |   19 --
 extra-x86_64/networkmanager.install |9 -
 12 files changed, 300 insertions(+), 300 deletions(-)

Deleted: extra-i686/NetworkManager.conf
===
--- extra-i686/NetworkManager.conf  2015-05-05 15:50:00 UTC (rev 238504)
+++ extra-i686/NetworkManager.conf  2015-05-05 15:52:30 UTC (rev 238505)
@@ -1,10 +0,0 @@
-[main]
-plugins=keyfile
-
-## Set static hostname
-#[keyfile]
-#hostname=foobar
-
-## HTTP-based connectivity check
-#[connectivity]
-#uri=http://nmcheck.gnome.org/check_network_status.txt

Copied: networkmanager/repos/extra-i686/NetworkManager.conf (from rev 238504, 
networkmanager/trunk/NetworkManager.conf)
===
--- extra-i686/NetworkManager.conf  (rev 0)
+++ extra-i686/NetworkManager.conf  2015-05-05 15:52:30 UTC (rev 238505)
@@ -0,0 +1,10 @@
+[main]
+plugins=keyfile
+
+## Set static hostname
+#[keyfile]
+#hostname=foobar
+
+## HTTP-based connectivity check
+#[connectivity]
+#uri=http://nmcheck.gnome.org/check_network_status.txt

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 15:50:00 UTC (rev 238504)
+++ extra-i686/PKGBUILD 2015-05-05 15:52:30 UTC (rev 238505)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Maintainer: Jan de Groot j...@archlinxu.org
-# Contributor: Wael Nasreddine gand...@siemens-mobiles.org
-# Contributor: Tor Krill t...@krill.nu
-# Contributor: Will Rea sillywi...@gmail.com
-# Contributor: Valentine Sinitsyn e_...@inbox.ru
-
-pkgbase=networkmanager
-pkgname=(networkmanager libnm-glib)
-pkgver=1.0.0
-pkgrel=2
-pkgdesc=Network Management daemon
-arch=(i686 x86_64)
-license=(GPL2 LGPL2.1)
-url=http://www.gnome.org/projects/NetworkManager/;
-_pppver=2.4.7
-makedepends=(intltool dhclient iptables gobject-introspection gtk-doc 
ppp=$_pppver
- modemmanager dbus-glib iproute2 libnl nss polkit wpa_supplicant 
libsoup
- systemd libmm-glib rp-pppoe libnewt libndp libteam vala)
-checkdepends=(libx11 python-gobject python-dbus)
-#source=(git://anongit.freedesktop.org/NetworkManager/NetworkManager#commit=93c1041
-source=(http://ftp.gnome.org/pub/gnome/sources/NetworkManager/${pkgver:0:3}/NetworkManager-$pkgver.tar.xz
-NetworkManager.conf disable_set_hostname.patch)
-sha256sums=('3a66afec670c975edd9832e620b725a5f16ed267a1b9e1b2d51ef27250d85947'
-'759db295ddae7a6dc6b29211fc0ec08695f875584d456dd146d3679e2c33e2e3'
-'25056837ea92e559f09563ed817e3e0cd9333be861b8914e45f62ceaae2e0460')
-
-prepare() {
-  cd NetworkManager-$pkgver
-  patch -Np1 -i ../disable_set_hostname.patch
-  NOCONFIGURE=1 

[arch-commits] Commit in network-manager-applet/repos (12 files)

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:53:36
  Author: heftig
Revision: 238506

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

Added:
  network-manager-applet/repos/extra-i686/PKGBUILD
(from rev 238505, network-manager-applet/trunk/PKGBUILD)
  network-manager-applet/repos/extra-i686/network-manager-applet.install
(from rev 238505, 
network-manager-applet/trunk/network-manager-applet.install)
  network-manager-applet/repos/extra-i686/nm-connection-editor.install
(from rev 238505, network-manager-applet/trunk/nm-connection-editor.install)
  network-manager-applet/repos/extra-x86_64/PKGBUILD
(from rev 238505, network-manager-applet/trunk/PKGBUILD)
  network-manager-applet/repos/extra-x86_64/network-manager-applet.install
(from rev 238505, 
network-manager-applet/trunk/network-manager-applet.install)
  network-manager-applet/repos/extra-x86_64/nm-connection-editor.install
(from rev 238505, network-manager-applet/trunk/nm-connection-editor.install)
Deleted:
  network-manager-applet/repos/extra-i686/PKGBUILD
  network-manager-applet/repos/extra-i686/network-manager-applet.install
  network-manager-applet/repos/extra-i686/nm-connection-editor.install
  network-manager-applet/repos/extra-x86_64/PKGBUILD
  network-manager-applet/repos/extra-x86_64/network-manager-applet.install
  network-manager-applet/repos/extra-x86_64/nm-connection-editor.install

-+
 /PKGBUILD   |  168 ++
 /network-manager-applet.install |   34 +
 /nm-connection-editor.install   |   24 +++
 extra-i686/PKGBUILD |   84 -
 extra-i686/network-manager-applet.install   |   17 --
 extra-i686/nm-connection-editor.install |   12 -
 extra-x86_64/PKGBUILD   |   84 -
 extra-x86_64/network-manager-applet.install |   17 --
 extra-x86_64/nm-connection-editor.install   |   12 -
 9 files changed, 226 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 15:52:30 UTC (rev 238505)
+++ extra-i686/PKGBUILD 2015-05-05 15:53:36 UTC (rev 238506)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Arjan Timmerman ar...@archlinux.org
-# Contributor: Wael Nasreddine gand...@siemens-mobiles.org
-# Contributor: Tor Krill t...@krill.nu
-# Contributor: Will Rea sillywi...@gmail.com
-
-pkgbase=network-manager-applet
-pkgname=(nm-connection-editor network-manager-applet)
-pkgver=1.0.0
-pkgrel=2
-pkgdesc=Applet for managing network connections
-arch=(i686 x86_64)
-license=(GPL2 LGPL2.1)
-url=http://www.gnome.org/projects/NetworkManager/;
-makedepends=(libnm-glib libsecret gtk3 gnome-icon-theme 
mobile-broadband-provider-info iso-codes
- libnotify libmm-glib intltool gobject-introspection)
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('5fede8d2060002c695fbba07e59cbc7db90a39a3378bb9690274c205d2503152')
-
-prepare() {
-  mkdir -p nma/etc/xdg nma/usr/bin \
-nma/usr/share/{applications,icons/hicolor/22x22/apps,man/man1,nm-applet}
-  cd $pkgbase-$pkgver
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib/networkmanager \
-  --disable-static \
-  --disable-maintainer-mode \
-  --disable-migration \
-  --with-modem-manager-1
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  make -k check
-}
-
-package_nm-connection-editor() {
-  pkgdesc=NetworkManager GUI connection editor
-  depends=(libnm-glib gtk3 mobile-broadband-provider-info iso-codes)
-  provides=(libnm-gtk=$pkgver-$pkgrel)
-  conflicts=(libnm-gtk)
-  replaces=(libnm-gtk)
-  install=nm-connection-editor.install
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=$pkgdir install
-
-### Split network-manager-applet
-  cd ../nma
-  mv $pkgdir/etc/xdg/autostart etc/xdg/
-  mv $pkgdir/usr/bin/nm-applet usr/bin/
-  mv $pkgdir/usr/share/GConf usr/share/
-
-  cd usr/share
-  mv $pkgdir/usr/share/applications/nm-applet.desktop applications/
-  mv $pkgdir/usr/share/man/man1/nm-applet.1 man/man1/
-  mv $pkgdir/usr/share/nm-applet/{{8021x,gsm-unlock,info}.ui,keyring.png} 
nm-applet/
-  
-  cd icons/hicolor/22x22
-  mv 
$pkgdir/usr/share/icons/hicolor/22x22/apps/nm-{adhoc,mb-roam,wwan-tower}.png 
apps/
-  mv 
$pkgdir/usr/share/icons/hicolor/22x22/apps/nm-{secure,vpn-active}-lock.png 
apps/
-  mv $pkgdir/usr/share/icons/hicolor/22x22/apps/nm-{signal,tech}-*.png apps/
-  mv $pkgdir/usr/share/icons/hicolor/22x22/apps/nm-*connecting*.png apps/
-}
-
-package_network-manager-applet() {
-  

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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 19:28:12
  Author: anatolik
Revision: 132814

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-05 17:27:30 UTC (rev 132813)
+++ community-i686/PKGBUILD 2015-05-05 17:28:12 UTC (rev 132814)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-pkgname=cmocka
-url='http://cmocka.org/'
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='an elegant unit testing framework for C with support for mock objects'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glibc)
-makedepends=(cmake)
-source=(http://git.cryptomilk.org/projects/cmocka.git/snapshot/cmocka-$pkgver.zip)
-sha1sums=('e4bcc4358549ca83ad792ae0d911194c800ab627')
-
-build() {
-  rm -rf build; mkdir build
-  cd build
-  cmake ../$pkgname-$pkgver -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_BUILD_TYPE=Release -DUNIT_TESTING=ON
-  make
-}
-
-check() {
-  cd build
-  make test
-}
-
-package() {
-  cd build
-  make install DESTDIR=$pkgdir
-}

Copied: cmocka/repos/community-i686/PKGBUILD (from rev 132813, 
cmocka/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-05 17:28:12 UTC (rev 132814)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+
+pkgname=cmocka
+url='http://cmocka.org/'
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='an elegant unit testing framework for C with support for mock objects'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glibc)
+makedepends=(cmake)
+source=(http://git.cryptomilk.org/projects/cmocka.git/snapshot/cmocka-$pkgver.zip)
+sha1sums=('f30bb65d52282331acd55cdd7c63ae6dddb1d28c')
+
+build() {
+  rm -rf build; mkdir build
+  cd build
+  cmake ../$pkgname-$pkgver -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_BUILD_TYPE=Release -DUNIT_TESTING=ON
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package() {
+  cd build
+  make install DESTDIR=$pkgdir
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-05 17:27:30 UTC (rev 132813)
+++ community-x86_64/PKGBUILD   2015-05-05 17:28:12 UTC (rev 132814)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-pkgname=cmocka
-url='http://cmocka.org/'
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='an elegant unit testing framework for C with support for mock objects'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glibc)
-makedepends=(cmake)
-source=(http://git.cryptomilk.org/projects/cmocka.git/snapshot/cmocka-$pkgver.zip)
-sha1sums=('e4bcc4358549ca83ad792ae0d911194c800ab627')
-
-build() {
-  rm -rf build; mkdir build
-  cd build
-  cmake ../$pkgname-$pkgver -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_BUILD_TYPE=Release -DUNIT_TESTING=ON
-  make
-}
-
-check() {
-  cd build
-  make test
-}
-
-package() {
-  cd build
-  make install DESTDIR=$pkgdir
-}

Copied: cmocka/repos/community-x86_64/PKGBUILD (from rev 132813, 
cmocka/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-05 17:28:12 UTC (rev 132814)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+
+pkgname=cmocka
+url='http://cmocka.org/'
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='an elegant unit testing framework for C with support for mock objects'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glibc)
+makedepends=(cmake)
+source=(http://git.cryptomilk.org/projects/cmocka.git/snapshot/cmocka-$pkgver.zip)
+sha1sums=('f30bb65d52282331acd55cdd7c63ae6dddb1d28c')
+
+build() {
+  rm -rf build; mkdir build
+  cd build
+  cmake ../$pkgname-$pkgver -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_BUILD_TYPE=Release -DUNIT_TESTING=ON
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package() {
+  cd build
+  make install DESTDIR=$pkgdir
+}


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

2015-05-05 Thread Anatol Pomozov
Date: Tuesday, May 5, 2015 @ 19:27:30
  Author: anatolik
Revision: 132813

upgpkg: cmocka 1.0.1-1

Modified:
  cmocka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:43:53 UTC (rev 132812)
+++ PKGBUILD2015-05-05 17:27:30 UTC (rev 132813)
@@ -3,7 +3,7 @@
 
 pkgname=cmocka
 url='http://cmocka.org/'
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc='an elegant unit testing framework for C with support for mock objects'
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 makedepends=(cmake)
 
source=(http://git.cryptomilk.org/projects/cmocka.git/snapshot/cmocka-$pkgver.zip)
-sha1sums=('e4bcc4358549ca83ad792ae0d911194c800ab627')
+sha1sums=('f30bb65d52282331acd55cdd7c63ae6dddb1d28c')
 
 build() {
   rm -rf build; mkdir build


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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:56:09
  Author: heftig
Revision: 238510

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

Added:
  networkmanager-vpnc/repos/extra-i686/PKGBUILD
(from rev 238509, networkmanager-vpnc/trunk/PKGBUILD)
  networkmanager-vpnc/repos/extra-i686/networkmanager-vpnc.install
(from rev 238509, networkmanager-vpnc/trunk/networkmanager-vpnc.install)
  networkmanager-vpnc/repos/extra-x86_64/PKGBUILD
(from rev 238509, networkmanager-vpnc/trunk/PKGBUILD)
  networkmanager-vpnc/repos/extra-x86_64/networkmanager-vpnc.install
(from rev 238509, networkmanager-vpnc/trunk/networkmanager-vpnc.install)
Deleted:
  networkmanager-vpnc/repos/extra-i686/PKGBUILD
  networkmanager-vpnc/repos/extra-i686/networkmanager-vpnc.install
  networkmanager-vpnc/repos/extra-x86_64/PKGBUILD
  networkmanager-vpnc/repos/extra-x86_64/networkmanager-vpnc.install

--+
 /PKGBUILD|   64 +
 /networkmanager-vpnc.install |   22 +
 extra-i686/PKGBUILD  |   32 --
 extra-i686/networkmanager-vpnc.install   |   11 
 extra-x86_64/PKGBUILD|   32 --
 extra-x86_64/networkmanager-vpnc.install |   11 
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 15:55:33 UTC (rev 238509)
+++ extra-i686/PKGBUILD 2015-05-05 15:56:09 UTC (rev 238510)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=networkmanager-vpnc
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=NetworkManager VPN plugin for vpnc
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org/projects/NetworkManager/;
-depends=('libnm-gtk' 'vpnc' 'hicolor-icon-theme' 'gtk3' 'libsecret')
-makedepends=('intltool')
-optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
-install=networkmanager-vpnc.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-vpnc/${pkgver::3}/NetworkManager-vpnc-${pkgver}.tar.xz)
-sha256sums=('5ed0413932cd2d6100dc8b95e11ce18c44a182d81aca1dfd0400a6e419359894')
-
-build() {
-  cd NetworkManager-vpnc-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --libexecdir=/usr/lib/networkmanager \
-   --enable-more-warnings=yes \
-   --disable-static
-  make
-}
-
-package() {
-  cd NetworkManager-vpnc-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: networkmanager-vpnc/repos/extra-i686/PKGBUILD (from rev 238509, 
networkmanager-vpnc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 15:56:09 UTC (rev 238510)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-vpnc
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=NetworkManager VPN plugin for vpnc
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+depends=('libnm-gtk' 'vpnc' 'hicolor-icon-theme' 'gtk3' 'libsecret')
+makedepends=('intltool')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+install=networkmanager-vpnc.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-vpnc/${pkgver::3}/NetworkManager-vpnc-${pkgver}.tar.xz)
+sha256sums=('3e17bfc505d304b3d21a784c06fc4b990cabdafd6886b47632496dfba0dea500')
+
+build() {
+  cd NetworkManager-vpnc-${pkgver}
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/networkmanager \
+   --enable-more-warnings=yes \
+   --disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-vpnc-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/networkmanager-vpnc.install
===
--- extra-i686/networkmanager-vpnc.install  2015-05-05 15:55:33 UTC (rev 
238509)
+++ extra-i686/networkmanager-vpnc.install  2015-05-05 15:56:09 UTC (rev 
238510)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -f -q -t /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: networkmanager-vpnc/repos/extra-i686/networkmanager-vpnc.install (from 
rev 238509, networkmanager-vpnc/trunk/networkmanager-vpnc.install)
===
--- extra-i686/networkmanager-vpnc.install  (rev 0)
+++ extra-i686/networkmanager-vpnc.install  2015-05-05 15:56:09 UTC (rev 
238510)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -f -q -t /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: extra-x86_64/PKGBUILD

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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:54:55
  Author: heftig
Revision: 238508

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

Added:
  networkmanager-openvpn/repos/extra-i686/PKGBUILD
(from rev 238507, networkmanager-openvpn/trunk/PKGBUILD)
  networkmanager-openvpn/repos/extra-i686/networkmanager-openvpn.install
(from rev 238507, 
networkmanager-openvpn/trunk/networkmanager-openvpn.install)
  networkmanager-openvpn/repos/extra-x86_64/PKGBUILD
(from rev 238507, networkmanager-openvpn/trunk/PKGBUILD)
  networkmanager-openvpn/repos/extra-x86_64/networkmanager-openvpn.install
(from rev 238507, 
networkmanager-openvpn/trunk/networkmanager-openvpn.install)
Deleted:
  networkmanager-openvpn/repos/extra-i686/PKGBUILD
  networkmanager-openvpn/repos/extra-i686/networkmanager-openvpn.install
  networkmanager-openvpn/repos/extra-x86_64/PKGBUILD
  networkmanager-openvpn/repos/extra-x86_64/networkmanager-openvpn.install

-+
 /PKGBUILD   |   60 ++
 /networkmanager-openvpn.install |   22 +
 extra-i686/PKGBUILD |   30 -
 extra-i686/networkmanager-openvpn.install   |   11 
 extra-x86_64/PKGBUILD   |   30 -
 extra-x86_64/networkmanager-openvpn.install |   11 
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 15:54:16 UTC (rev 238507)
+++ extra-i686/PKGBUILD 2015-05-05 15:54:55 UTC (rev 238508)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=networkmanager-openvpn
-pkgver=1.0.0
-pkgrel=2
-pkgdesc=NetworkManager VPN plugin for OpenVPN
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org/projects/NetworkManager/;
-depends=(libnm-gtk 'openvpn' 'gtk3' 'libsecret')
-makedepends=('intltool')
-optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
-install=networkmanager-openvpn.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openvpn/${pkgver::3}/NetworkManager-openvpn-${pkgver}.tar.xz)
-sha256sums=('d0ad918c8d3736b690f0ed031c03251829fa110aa339e0e531e47100551f1bf0')
-
-build() {
-  cd NetworkManager-openvpn-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/networkmanager \
---enable-more-warnings=yes \
---disable-static
-  make
-}
-
-package() {
-  cd NetworkManager-openvpn-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: networkmanager-openvpn/repos/extra-i686/PKGBUILD (from rev 238507, 
networkmanager-openvpn/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 15:54:55 UTC (rev 238508)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-openvpn
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=NetworkManager VPN plugin for OpenVPN
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+depends=(libnm-gtk 'openvpn' 'gtk3' 'libsecret')
+makedepends=('intltool')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+install=networkmanager-openvpn.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openvpn/${pkgver::3}/NetworkManager-openvpn-${pkgver}.tar.xz)
+sha256sums=('1643824bc7fdab42e1dab836bf81c328692295c86f146bde602eca093b394bb0')
+
+build() {
+  cd NetworkManager-openvpn-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/networkmanager \
+--enable-more-warnings=yes \
+--disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-openvpn-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/networkmanager-openvpn.install
===
--- extra-i686/networkmanager-openvpn.install   2015-05-05 15:54:16 UTC (rev 
238507)
+++ extra-i686/networkmanager-openvpn.install   2015-05-05 15:54:55 UTC (rev 
238508)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -f -q -t /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: networkmanager-openvpn/repos/extra-i686/networkmanager-openvpn.install 
(from rev 238507, networkmanager-openvpn/trunk/networkmanager-openvpn.install)
===
--- extra-i686/networkmanager-openvpn.install   (rev 0)
+++ extra-i686/networkmanager-openvpn.install   2015-05-05 15:54:55 UTC (rev 
238508)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -f -q -t /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: 

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

2015-05-05 Thread Jan Steffens
Date: Tuesday, May 5, 2015 @ 17:55:33
  Author: heftig
Revision: 238509

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

Added:
  networkmanager-pptp/repos/extra-i686/PKGBUILD
(from rev 238508, networkmanager-pptp/trunk/PKGBUILD)
  networkmanager-pptp/repos/extra-i686/networkmanager-pptp.install
(from rev 238508, networkmanager-pptp/trunk/networkmanager-pptp.install)
  networkmanager-pptp/repos/extra-x86_64/PKGBUILD
(from rev 238508, networkmanager-pptp/trunk/PKGBUILD)
  networkmanager-pptp/repos/extra-x86_64/networkmanager-pptp.install
(from rev 238508, networkmanager-pptp/trunk/networkmanager-pptp.install)
Deleted:
  networkmanager-pptp/repos/extra-i686/PKGBUILD
  networkmanager-pptp/repos/extra-i686/networkmanager-pptp.install
  networkmanager-pptp/repos/extra-x86_64/PKGBUILD
  networkmanager-pptp/repos/extra-x86_64/networkmanager-pptp.install

--+
 /PKGBUILD|   66 +
 /networkmanager-pptp.install |   22 +
 extra-i686/PKGBUILD  |   33 --
 extra-i686/networkmanager-pptp.install   |   11 
 extra-x86_64/PKGBUILD|   33 --
 extra-x86_64/networkmanager-pptp.install |   11 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-05 15:54:55 UTC (rev 238508)
+++ extra-i686/PKGBUILD 2015-05-05 15:55:33 UTC (rev 238509)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=networkmanager-pptp
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=NetworkManager VPN plugin for pptp 
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org/projects/NetworkManager/;
-_pppver=2.4.7
-depends=(networkmanager=${pkgver} 'pptpclient' 'gtk3' 'libgnome-keyring' 
ppp=$_pppver)
-makedepends=('intltool' 'network-manager-applet')
-optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
-install=networkmanager-pptp.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/${pkgver::3}/NetworkManager-pptp-${pkgver}.tar.xz)
-sha256sums=('200d5c65cdae248d3b4d0daa76a4f8bc1432376ed4da7afedd5085bb0da7ee76')
-
-build() {
-  cd NetworkManager-pptp-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/networkmanager \
---disable-static \
---enable-more-warnings=yes \
---with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
-  make
-}
-
-package() {
-  cd NetworkManager-pptp-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: networkmanager-pptp/repos/extra-i686/PKGBUILD (from rev 238508, 
networkmanager-pptp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-05 15:55:33 UTC (rev 238509)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-pptp
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=NetworkManager VPN plugin for pptp 
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+_pppver=2.4.7
+depends=(networkmanager=${pkgver} 'pptpclient' 'gtk3' 'libgnome-keyring' 
ppp=$_pppver)
+makedepends=('intltool' 'network-manager-applet')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+install=networkmanager-pptp.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/${pkgver::3}/NetworkManager-pptp-${pkgver}.tar.xz)
+sha256sums=('37cb7c6064d1a65ea9b67bb9d31947c2434db3cfb55a2911481fa4e48e332017')
+
+build() {
+  cd NetworkManager-pptp-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/networkmanager \
+--disable-static \
+--enable-more-warnings=yes \
+--with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
+  make
+}
+
+package() {
+  cd NetworkManager-pptp-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/networkmanager-pptp.install
===
--- extra-i686/networkmanager-pptp.install  2015-05-05 15:54:55 UTC (rev 
238508)
+++ extra-i686/networkmanager-pptp.install  2015-05-05 15:55:33 UTC (rev 
238509)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -f -q -t /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: networkmanager-pptp/repos/extra-i686/networkmanager-pptp.install (from 
rev 238508, networkmanager-pptp/trunk/networkmanager-pptp.install)
===
--- extra-i686/networkmanager-pptp.install  (rev 0)
+++ extra-i686/networkmanager-pptp.install  2015-05-05 15:55:33 UTC (rev 
238509)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -f 

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

2015-05-05 Thread Andreas Radke
Date: Tuesday, May 5, 2015 @ 19:40:41
  Author: andyrtr
Revision: 238511

prepare next release

Modified:
  gnutls/trunk/PKGBUILD
Deleted:
  gnutls/trunk/buildfix.diff

---+
 PKGBUILD  |   26 +++---
 buildfix.diff |   27 ---
 2 files changed, 11 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 15:56:09 UTC (rev 238510)
+++ PKGBUILD2015-05-05 17:40:41 UTC (rev 238511)
@@ -3,7 +3,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=gnutls
-pkgver=3.4.0
+pkgver=3.4.1
 pkgrel=1
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer
 arch=('i686' 'x86_64')
@@ -11,30 +11,26 @@
 url=http://www.gnutls.org/;
 install=gnutls.install
 options=('!zipman')
-depends=('gcc-libs' 'libidn' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
 optdepends=('guile: for use with Guile bindings')
-source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/${pkgname}-${pkgver}.tar.xz{,.sig}
-buildfix.diff)
-md5sums=('aa015c2666b031044edfb01b01980d84'
- 'SKIP'
- 'ffce1bd795445aaecf54100f44299fa7')
+source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('2d04f34fa25b45f9dcb9104c0394e12e'
+ 'SKIP')
 validpgpkeys=('0424D4EE81A0E3D119C6F835EDA21E94B565716F'
   '1F42418905D8206AA754CCDC29EE58B996865171')
# Simon Josefsson si...@josefsson.org
# Nikos Mavrogiannopoulos n...@gnutls.org
 
-prepare(){
+build() {
   cd ${pkgname}-${pkgver}
-  # buildfix 
https://gitlab.com/gnutls/gnutls/commit/7e63027a5caafa55dcca65c5b9bff3bf76c5a41c?view=inline
-  patch -Np1 -i ${srcdir}/buildfix.diff
-  autoreconf -vfi
-}
 
-build() {
-  cd ${pkgname}-${pkgver}
+  # disable libidn for security reasons:
+  # http://lists.gnupg.org/pipermail/gnutls-devel/2015-May/007582.html
+
   ./configure --prefix=/usr \
--with-zlib \
--disable-static \
+   --without-idn \
--enable-guile --with-guile-site-dir=no \

--with-default-trust-store-pkcs11=pkcs11:model=p11-kit-trust;manufacturer=PKCS%2311%20Kit
   make
@@ -42,7 +38,7 @@
 
 check() {
   cd ${pkgname}-${pkgver}
-  make check
+  make -j1 check
 }
 
 package() {

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


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:04:39
  Author: spupykin
Revision: 132754

FS#44853

Modified:
  squid/trunk/squid.install

---+
 squid.install |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: squid.install
===
--- squid.install   2015-05-04 20:31:55 UTC (rev 132753)
+++ squid.install   2015-05-05 10:04:39 UTC (rev 132754)
@@ -7,6 +7,6 @@
 post_upgrade() {
   post_install
   if [ `vercmp $2 3.5.4-1` -le 0 ]; then
-echo - Add 'dns_v4_first on' option into config unless you provider 
support ipv6!
+echo - Add 'dns_v4_first on' option into config unless your provider 
support ipv6!
   fi
 }


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:26:46
  Author: spupykin
Revision: 132756

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

Added:
  btanks/repos/community-staging-i686/
  btanks/repos/community-staging-i686/PKGBUILD
(from rev 132755, btanks/trunk/PKGBUILD)
  btanks/repos/community-staging-i686/btanks.install
(from rev 132755, btanks/trunk/btanks.install)
  btanks/repos/community-staging-i686/btanks_desktop
(from rev 132755, btanks/trunk/btanks_desktop)
  btanks/repos/community-staging-i686/btanks_script
(from rev 132755, btanks/trunk/btanks_script)
  btanks/repos/community-staging-i686/bted_script
(from rev 132755, btanks/trunk/bted_script)
  btanks/repos/community-staging-i686/gcc-4.6.patch
(from rev 132755, btanks/trunk/gcc-4.6.patch)
  btanks/repos/community-staging-i686/lua52.patch
(from rev 132755, btanks/trunk/lua52.patch)
  btanks/repos/community-staging-x86_64/
  btanks/repos/community-staging-x86_64/PKGBUILD
(from rev 132755, btanks/trunk/PKGBUILD)
  btanks/repos/community-staging-x86_64/btanks.install
(from rev 132755, btanks/trunk/btanks.install)
  btanks/repos/community-staging-x86_64/btanks_desktop
(from rev 132755, btanks/trunk/btanks_desktop)
  btanks/repos/community-staging-x86_64/btanks_script
(from rev 132755, btanks/trunk/btanks_script)
  btanks/repos/community-staging-x86_64/bted_script
(from rev 132755, btanks/trunk/bted_script)
  btanks/repos/community-staging-x86_64/gcc-4.6.patch
(from rev 132755, btanks/trunk/gcc-4.6.patch)
  btanks/repos/community-staging-x86_64/lua52.patch
(from rev 132755, btanks/trunk/lua52.patch)

-+
 community-staging-i686/PKGBUILD |   79 ++
 community-staging-i686/btanks.install   |7 ++
 community-staging-i686/btanks_desktop   |   10 +++
 community-staging-i686/btanks_script|6 ++
 community-staging-i686/bted_script  |6 ++
 community-staging-i686/gcc-4.6.patch|   70 ++
 community-staging-i686/lua52.patch  |   21 +++
 community-staging-x86_64/PKGBUILD   |   79 ++
 community-staging-x86_64/btanks.install |7 ++
 community-staging-x86_64/btanks_desktop |   10 +++
 community-staging-x86_64/btanks_script  |6 ++
 community-staging-x86_64/bted_script|6 ++
 community-staging-x86_64/gcc-4.6.patch  |   70 ++
 community-staging-x86_64/lua52.patch|   21 +++
 14 files changed, 398 insertions(+)

Copied: btanks/repos/community-staging-i686/PKGBUILD (from rev 132755, 
btanks/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 10:26:46 UTC (rev 132756)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Nick B Shirakawasuna at gmail _dot_ com
+
+pkgname=btanks
+pkgver=0.9.8083
+pkgrel=6
+pkgdesc=Fast 2d tank arcade game with multiplayer and split-screen modes.
+arch=('i686' 'x86_64')
+url=http://btanks.sourceforge.net;
+license=('GPL')
+depends=('expat' 'libgl' 'libsigc++2.0' 'libvorbis' 'lua' 'openal' 'sdl' 
'sdl_image'
+'smpeg' 'glu' btanks-data=$pkgver)
+makedepends=('scons' 'chrpath' 'mesa')
+source=(http://downloads.sourceforge.net/btanks/btanks-$pkgver.tar.bz2
+   btanks_desktop
+   btanks_script
+   bted_script
+   gcc-4.6.patch
+   lua52.patch)
+install=btanks.install
+md5sums=('49cb95c0eec47d3436c4fdf65e7c9d12'
+ 'a2ddeb1e79dff8d3fd702984c8d3aab5'
+ '07657cfa71b1de1d008cc5e3ade9749b'
+ '91a61c0f581ea27281bdaecb7a3cd58b'
+ 'b816c5f3ae2d6cd954c15569d4baf123'
+ 'e7af4af59255166bee530cbabd953226')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  sed -i '1,1i#include sys/types.h' mrt/base_file.h
+  patch -p1 $srcdir/gcc-4.6.patch
+  patch -p1 $srcdir/lua52.patch
+
+  python2 engine/sl08/sl08.py engine/sl08/sl08.h
+  scons
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  mkdir -p $pkgdir/usr/share/btanks
+  cp *.so btanks bted $pkgdir/usr/share/btanks/
+
+  # Install script
+  install -D -m755 $srcdir/bted_script $pkgdir/usr/bin/bted
+  install -D -m755 $srcdir/btanks_script $pkgdir/usr/bin/btanks
+
+  # Install desktop file
+  install -D -m644 $srcdir/btanks_desktop 
$pkgdir/usr/share/applications/btanks.desktop
+
+  # Install icon
+  install -D -m644 $srcdir/$pkgname-$pkgver/data/tiles/icon.png 
$pkgdir/usr/share/pixmaps/btanks.png
+
+  # Make settings saveable
+  touch $pkgdir/usr/share/btanks/bt.xml
+  chown :games $pkgdir/usr/share/btanks/bt.xml
+  chmod 664 $pkgdir/usr/share/btanks/bt.xml
+
+  # move executables, fix rpath
+  cd $pkgdir/usr/share/btanks
+  mkdir -p $pkgdir/usr/bin $pkgdir/usr/lib/btanks
+
+  mv btanks $pkgdir/usr/bin/btanks-bin
+  mv bted $pkgdir/usr/bin/bted-bin
+  mv *.so 

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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:26:20
  Author: spupykin
Revision: 132755

upgpkg: btanks 0.9.8083-6

upd

Modified:
  btanks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:04:39 UTC (rev 132754)
+++ PKGBUILD2015-05-05 10:26:20 UTC (rev 132755)
@@ -4,7 +4,7 @@
 
 pkgname=btanks
 pkgver=0.9.8083
-pkgrel=5
+pkgrel=6
 pkgdesc=Fast 2d tank arcade game with multiplayer and split-screen modes.
 arch=('i686' 'x86_64')
 url=http://btanks.sourceforge.net;


[arch-commits] Commit in calligra/trunk (PKGBUILD krita_psd.patch krita_psd2.patch)

2015-05-05 Thread Antonio Rojas
Date: Tuesday, May 5, 2015 @ 23:22:17
  Author: arojas
Revision: 238514

Update to 2.9.4

Modified:
  calligra/trunk/PKGBUILD
Deleted:
  calligra/trunk/krita_psd.patch
  calligra/trunk/krita_psd2.patch

--+
 PKGBUILD |   18 -
 krita_psd.patch  |   24 -
 krita_psd2.patch |  754 -
 3 files changed, 5 insertions(+), 791 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 18:07:25 UTC (rev 238513)
+++ PKGBUILD2015-05-05 21:22:17 UTC (rev 238514)
@@ -20,8 +20,8 @@
  'calligra-sheets'
  'calligra-stage'
  'calligra-words')
-pkgver=2.9.3
-pkgrel=3
+pkgver=2.9.4
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')
@@ -31,19 +31,11 @@
  'openjpeg' 'kdegraphics-okular' 'pstoedit' 'vc' 'libvisio'
  'libetonyek' 'libpqxx' 'libspnav' 'postgresql') # 'libqgit2'
 groups=('calligra')
-source=(http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.xz;
 'krita_psd.patch' 
-'krita_psd2.patch')
-md5sums=('9242b44eeeb7f13f72aeafb8e9365c07'
- '7f90c54dc15bfeaf14c58e74f3f4aae7'
- 'ed427b5a854d554e4028422fa03082aa')
+source=(http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('12bf6bd00de3d7b589c1b1cfebca8f91')
 
 prepare() {
-  mkdir build
-
-  cd $pkgbase-$pkgver
-# fix loading PSD files in Krita
-  patch -p1 -i $srcdir/krita_psd.patch
-  patch -p1 -l -i $srcdir/krita_psd2.patch
+  mkdir -p build
 }
 
 build() {

Deleted: krita_psd.patch
===
--- krita_psd.patch 2015-05-05 18:07:25 UTC (rev 238513)
+++ krita_psd.patch 2015-05-05 21:22:17 UTC (rev 238514)
@@ -1,24 +0,0 @@
-From: Dmitry Kazakov dimul...@gmail.com
-Date: Wed, 29 Apr 2015 11:04:40 +
-Subject: Fast and dirty fix for loading PSD files
-X-Git-Url: 
http://quickgit.kde.org/?p=calligra.gita=commitdiffh=223e938ca5c2bd4724b4e2d1e59f72971e2977bf

-Fast and dirty fix for loading PSD files
-
-PsdAdditionalLayerInfoBlock must know about the layers block size and not try 
to read
-it infinitely. So now just not signal errors, when it is finished.

-
-
 a/krita/plugins/formats/psd/psd_additional_layer_info_block.cpp
-+++ b/krita/plugins/formats/psd/psd_additional_layer_info_block.cpp
-@@ -41,7 +41,7 @@
- b = io-peek(4);
- if (b.size() != 4 || QString(b) != 8BIM) {
- error = No 8BIM marker for additional layer info block;
--return false;
-+return true;
- }
- else {
- io-seek(io-pos() + 4); // skip the 8BIM header we peeked ahead 
for
-

Deleted: krita_psd2.patch
===
--- krita_psd2.patch2015-05-05 18:07:25 UTC (rev 238513)
+++ krita_psd2.patch2015-05-05 21:22:17 UTC (rev 238514)
@@ -1,754 +0,0 @@
-From 039b58067e06eece1cc0c2788151b4a761847794 Mon Sep 17 00:00:00 2001
-From: Dmitry Kazakov dimul...@gmail.com
-Date: Wed, 29 Apr 2015 18:20:23 +0300
-Subject: [PATCH] Properly fix PsdAdditionalLayerInfoBlock
-
-This patch ports PsdAdditionalLayerInfoBlock class into ASL framework
-so that all the offsets will be correct all the time.
-
-Also parse lfx2 section into XML as a bonus :)

- krita/libpsd/CMakeLists.txt|   1 +
- krita/libpsd/asl/kis_asl_reader.cpp| 138 ++-
- krita/libpsd/asl/kis_asl_reader.h  |   1 +
- krita/libpsd/asl/kis_asl_reader_utils.cpp  |  73 ++
- krita/libpsd/asl/kis_asl_reader_utils.h| 122 +
- krita/libpsd/asl/kis_asl_writer_utils.h|   2 +-
- .../psd/psd_additional_layer_info_block.cpp| 147 ++---
- .../formats/psd/psd_additional_layer_info_block.h  |   3 +
- krita/plugins/formats/psd/tests/CMakeLists.txt |   6 +-
- .../formats/psd/tests/data/testing_psd_ls.psd  | Bin 0 - 272169 bytes
- krita/plugins/formats/psd/tests/kis_psd_test.cpp   |  17 +++
- krita/plugins/formats/psd/tests/kis_psd_test.h |   1 +
- 12 files changed, 332 insertions(+), 179 deletions(-)
- create mode 100644 krita/libpsd/asl/kis_asl_reader_utils.cpp
- create mode 100644 krita/libpsd/asl/kis_asl_reader_utils.h
- create mode 100644 krita/plugins/formats/psd/tests/data/testing_psd_ls.psd
-
-diff --git a/krita/libpsd/CMakeLists.txt b/krita/libpsd/CMakeLists.txt
-index c0beca3..ca3c48b 100644
 a/krita/libpsd/CMakeLists.txt
-+++ b/krita/libpsd/CMakeLists.txt
-@@ -7,6 +7,7 @@ set(libkispsd_LIB_SRCS
- psd_pattern.cpp
- 
- asl/kis_asl_reader.cpp
-+asl/kis_asl_reader_utils.cpp
- asl/kis_asl_xml_parser.cpp
- asl/kis_asl_object_catcher.cpp
- asl/kis_asl_callback_object_catcher.cpp
-diff --git a/krita/libpsd/asl/kis_asl_reader.cpp 

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

2015-05-05 Thread Antonio Rojas
Date: Tuesday, May 5, 2015 @ 23:32:53
  Author: arojas
Revision: 238517

archrelease: copy trunk to extra-any

Added:
  calligra-l10n/repos/extra-any/PKGBUILD
(from rev 238516, calligra-l10n/trunk/PKGBUILD)
Deleted:
  calligra-l10n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  214 ++---
 1 file changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-05 21:31:49 UTC (rev 238516)
+++ PKGBUILD2015-05-05 21:32:53 UTC (rev 238517)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgbase=calligra-l10n
-pkgver=2.9.3
-pkgrel=1
-pkgdesc=Localization for Calligra
-arch=('any')
-url='http://www.calligra-suite.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4' 'kdelibs')
-options=('docs')
-
-_languages=(
-  'bs Bosnian'
-  'ca Catalan'
-  'ca@valencia Catalan (Valencian)'
-  'cs Czech'
-  'da Danish'
-  'de German'
-  'el Greek'
-  'en_GB  British English'
-  'es Spanish'
-  'et Estonian'
-  'fi Finnish'
-  'fr French'
-  'gl Galician'
-  'hu Hungarian'
-  'it Italian'
-  'ja Japanese'
-  'kk Kazakh'
-  'nb Norwegian Bokmal'
-  'nl Dutch'
-  'pl Polish'
-  'pt Portuguese'
-  'pt_BR  Brazilian Portuguese'
-  'ru Russian'
-  'sk Slovak'
-  'sv Swedish'
-  'uk Ukrainian'
-  'zh_CN  Chinese Simplified'
-  'zh_TW  Chinese Traditional'
-)
-
-pkgname=()
-source=()
-
-for _lang in ${_languages[@]}; do
-  _locale=${_lang%% *}
-  _pkgname=calligra-l10n-${_locale,,}
-  
-  pkgname+=($_pkgname)
-  
source+=(http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-$_locale-${pkgver}.tar.xz;)
-  eval package_$_pkgname() {
-_package $_lang
-  }
-done
-
-md5sums=('3c7627839f77d3400c0a30ac37d3f3f0'
- 'd08b198e0067bd5cdeb3427156b78f31'
- '38f6412f07d1f7a6c3a2b673b08ce877'
- 'fa6dcaa9d1383bdf1dd0d1dcc357fb73'
- '7b4978bcab76f255afd240e00b1e7422'
- 'f6e970a14a33bbe8df680e4f00404ba0'
- 'c09cdbc712c4752e6351b3130d7f09a0'
- '4d6387b9b48909021716edd8428e1cd2'
- '19adb03876480cd46cfa08631ab0c714'
- 'f129516d83a89f757ca0bea5d8807ea0'
- '9c711e6d6e1b4059cb19ebc3ffb094b2'
- 'af6bd3d2a17d36be13fa0e25720d228b'
- '7a0411791618f6861f195f34d69b0300'
- '13e308e690006beba5cfef14807efbee'
- '1f6fa2b85a28c27504dde1419f21a6f6'
- '601acb26f8c6bf718f22ada6a5483cf5'
- '38b7bde1b22b7897b934dc94e7b2f612'
- 'c0e9deb4b4d143782ac7b55b47a3f9dc'
- '1259cc3ba2927ca7d64c216f51e55f59'
- '320d6cae2c91b571575a9d9495d71a58'
- 'd74825e82ac8ead660ca48b17c9ef787'
- 'd7b4da7fa722575334529c91bd4e7b14'
- '47de04130b223a2c726bc9ece98d1f98'
- '78334532879a20035b72d5eac58b397c'
- 'c39e73261ebaa1b22ebc82a52073fc2c'
- 'dc660171238fd9221201f73d0c622281'
- '4df00fe1c254a63d4fcd2cbb5e0700e8'
- '923edb520f9252a01df937bd1b974f6a')
-
-build() {
-  for _lang in ${_languages[@]}; do
-_locale=${_lang%% *}
-
-mkdir -p build/$_locale
-cd build/$_locale
-cmake $srcdir/$pkgbase-$_locale-$pkgver \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr
-make
-cd ../..
-  done
-}
-
-_package() {
-  pkgdesc=$2 localization for Calligra
-  cd build/$1
-  make DESTDIR=$pkgdir install
-}

Copied: calligra-l10n/repos/extra-any/PKGBUILD (from rev 238516, 
calligra-l10n/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-05 21:32:53 UTC (rev 238517)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgbase=calligra-l10n
+pkgver=2.9.4
+pkgrel=1
+pkgdesc=Localization for Calligra
+arch=('any')
+url='http://www.calligra-suite.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'kdelibs')
+options=('docs')
+
+_languages=(
+  'bs Bosnian'
+  'ca Catalan'
+  'ca@valencia Catalan (Valencian)'
+  'cs Czech'
+  'da Danish'
+  'de German'
+  'el Greek'
+  'en_GB  British English'
+  'es Spanish'
+  'et Estonian'
+  'fi Finnish'
+  'fr French'
+  'gl Galician'
+  'hu Hungarian'
+  'it Italian'
+  'ja Japanese'
+  'kk Kazakh'
+  'nb Norwegian Bokmal'
+  'nl Dutch'
+  'pl Polish'
+  'pt Portuguese'
+  'pt_BR  Brazilian Portuguese'
+  'ru Russian'
+  'sk Slovak'
+  'sv Swedish'
+  'uk Ukrainian'
+  'zh_CN  Chinese Simplified'
+  'zh_TW  Chinese Traditional'
+)
+
+pkgname=()
+source=()
+
+for _lang in ${_languages[@]}; do
+  _locale=${_lang%% *}
+  _pkgname=calligra-l10n-${_locale,,}
+  
+  

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

2015-05-05 Thread Alexander Rødseth
Date: Tuesday, May 5, 2015 @ 23:51:25
  Author: arodseth
Revision: 132816

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-05 21:49:55 UTC (rev 132815)
+++ community-i686/PKGBUILD 2015-05-05 21:51:25 UTC (rev 132816)
@@ -1,68 +0,0 @@
-# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Dominik Picheta morfeu...@gmail.com
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Jesus Alvarez jeezu...@gmail.com
-
-pkgname=nim
-pkgver=0.11.0
-pkgrel=1
-pkgdesc='Imperative, multi-paradigm, compiled programming language'
-arch=('x86_64' 'i686')
-url='http://nim-lang.org/'
-license=('MIT')
-makedepends=('git')
-options=('!emptydirs')
-source=($pkgname::git://github.com/Araq/Nimrod.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  rm build/empty.txt  rmdir build
-  git clone --depth=1 git://github.com/nimrod-code/csources build
-}
-
-build() {
-  cd $pkgname/build
-  sh build.sh
-  cd ..
-
-  ./bin/nim c koch
-  ./koch boot -d:release -d:useGnuReadline
-
-  export PATH=$srcdir/$pkgname/bin:$PATH
-
-  cd lib
-  nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-
-  cd ../tools
-  nim c -d:release nimgrep.nim
-}
-
-package() {
-  cd $pkgname
-
-  export PATH=$srcdir/$pkgname/bin:$PATH
-  
-  ./koch install $pkgdir
-
-  install -d $pkgdir/usr/share/nim/doc $pkgdir/usr/lib/nim \
-$pkgdir/etc $pkgdir/usr/bin
-
-  cd $pkgdir/nim
-  mv lib/* $pkgdir/usr/lib/nim/
-  mv config/* $pkgdir/etc/
-  cp -a $srcdir/$pkgname/lib/packages $pkgdir/usr/lib/nim/
-  mv bin/* $pkgdir/usr/bin/
-
-  cd $srcdir/$pkgname
-  rm -r $pkgdir/nim
-  mv examples web $pkgdir/usr/share/nim/doc/
-  mv doc/* $pkgdir/usr/share/nim/doc/
-  install -m644 lib/libnimrtl.so $pkgdir/usr/lib/libnimrtl.so
-  install -m755 tools/nimgrep $pkgdir/usr/bin/
-  install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nim/repos/community-i686/PKGBUILD (from rev 132815, nim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-05 21:51:25 UTC (rev 132816)
@@ -0,0 +1,68 @@
+# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Dominik Picheta morfeu...@gmail.com
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Jesus Alvarez jeezu...@gmail.com
+
+pkgname=nim
+pkgver=0.11.2
+pkgrel=1
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+arch=('x86_64' 'i686')
+url='http://nim-lang.org/'
+license=('MIT')
+makedepends=('git')
+options=('!emptydirs')
+source=($pkgname::git://github.com/Araq/Nimrod.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  rm build/empty.txt  rmdir build
+  git clone --depth=1 git://github.com/nimrod-code/csources build
+}
+
+build() {
+  cd $pkgname/build
+  sh build.sh
+  cd ..
+
+  ./bin/nim c koch
+  ./koch boot -d:release -d:useGnuReadline
+
+  export PATH=$srcdir/$pkgname/bin:$PATH
+
+  cd lib
+  nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
+
+  cd ../tools
+  nim c -d:release nimgrep.nim
+}
+
+package() {
+  cd $pkgname
+
+  export PATH=$srcdir/$pkgname/bin:$PATH
+  
+  ./koch install $pkgdir
+
+  install -d $pkgdir/usr/share/nim/doc $pkgdir/usr/lib/nim \
+$pkgdir/etc $pkgdir/usr/bin
+
+  cd $pkgdir/nim
+  mv lib/* $pkgdir/usr/lib/nim/
+  mv config/* $pkgdir/etc/
+  cp -a $srcdir/$pkgname/lib/packages $pkgdir/usr/lib/nim/
+  mv bin/* $pkgdir/usr/bin/
+
+  cd $srcdir/$pkgname
+  rm -r $pkgdir/nim
+  mv examples web $pkgdir/usr/share/nim/doc/
+  mv doc/* $pkgdir/usr/share/nim/doc/
+  install -m644 lib/libnimrtl.so $pkgdir/usr/lib/libnimrtl.so
+  install -m755 tools/nimgrep $pkgdir/usr/bin/
+  install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-05 21:49:55 UTC (rev 132815)
+++ community-x86_64/PKGBUILD   2015-05-05 21:51:25 UTC (rev 132816)
@@ -1,68 +0,0 @@
-# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
-# Maintainer: Alexander Rødseth 

[arch-commits] Commit in calligra/repos (64 files)

2015-05-05 Thread Antonio Rojas
Date: Tuesday, May 5, 2015 @ 23:25:48
  Author: arojas
Revision: 238515

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

Added:
  calligra/repos/extra-i686/PKGBUILD
(from rev 238514, calligra/trunk/PKGBUILD)
  calligra/repos/extra-i686/calligra-braindump.install
(from rev 238514, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-i686/calligra-extras.install
(from rev 238514, calligra/trunk/calligra-extras.install)
  calligra/repos/extra-i686/calligra-filters.install
(from rev 238514, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-i686/calligra-flow.install
(from rev 238514, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-i686/calligra-gemini.install
(from rev 238514, calligra/trunk/calligra-gemini.install)
  calligra/repos/extra-i686/calligra-karbon.install
(from rev 238514, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-i686/calligra-kexi.install
(from rev 238514, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-i686/calligra-krita.install
(from rev 238514, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-i686/calligra-plan.install
(from rev 238514, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-i686/calligra-plugins.install
(from rev 238514, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-i686/calligra-sheets.install
(from rev 238514, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-i686/calligra-stage.install
(from rev 238514, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-i686/calligra-words.install
(from rev 238514, calligra/trunk/calligra-words.install)
  calligra/repos/extra-i686/calligra.install
(from rev 238514, calligra/trunk/calligra.install)
  calligra/repos/extra-x86_64/PKGBUILD
(from rev 238514, calligra/trunk/PKGBUILD)
  calligra/repos/extra-x86_64/calligra-braindump.install
(from rev 238514, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-x86_64/calligra-extras.install
(from rev 238514, calligra/trunk/calligra-extras.install)
  calligra/repos/extra-x86_64/calligra-filters.install
(from rev 238514, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-x86_64/calligra-flow.install
(from rev 238514, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-x86_64/calligra-gemini.install
(from rev 238514, calligra/trunk/calligra-gemini.install)
  calligra/repos/extra-x86_64/calligra-karbon.install
(from rev 238514, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-x86_64/calligra-kexi.install
(from rev 238514, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-x86_64/calligra-krita.install
(from rev 238514, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-x86_64/calligra-plan.install
(from rev 238514, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-x86_64/calligra-plugins.install
(from rev 238514, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-x86_64/calligra-sheets.install
(from rev 238514, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-x86_64/calligra-stage.install
(from rev 238514, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-x86_64/calligra-words.install
(from rev 238514, calligra/trunk/calligra-words.install)
  calligra/repos/extra-x86_64/calligra.install
(from rev 238514, calligra/trunk/calligra.install)
Deleted:
  calligra/repos/extra-i686/PKGBUILD
  calligra/repos/extra-i686/calligra-braindump.install
  calligra/repos/extra-i686/calligra-extras.install
  calligra/repos/extra-i686/calligra-filters.install
  calligra/repos/extra-i686/calligra-flow.install
  calligra/repos/extra-i686/calligra-gemini.install
  calligra/repos/extra-i686/calligra-karbon.install
  calligra/repos/extra-i686/calligra-kexi.install
  calligra/repos/extra-i686/calligra-krita.install
  calligra/repos/extra-i686/calligra-plan.install
  calligra/repos/extra-i686/calligra-plugins.install
  calligra/repos/extra-i686/calligra-sheets.install
  calligra/repos/extra-i686/calligra-stage.install
  calligra/repos/extra-i686/calligra-words.install
  calligra/repos/extra-i686/calligra.install
  calligra/repos/extra-i686/krita_psd.patch
  calligra/repos/extra-i686/krita_psd2.patch
  calligra/repos/extra-x86_64/PKGBUILD
  calligra/repos/extra-x86_64/calligra-braindump.install
  calligra/repos/extra-x86_64/calligra-extras.install
  calligra/repos/extra-x86_64/calligra-filters.install
  calligra/repos/extra-x86_64/calligra-flow.install
  calligra/repos/extra-x86_64/calligra-gemini.install
  calligra/repos/extra-x86_64/calligra-karbon.install
  calligra/repos/extra-x86_64/calligra-kexi.install
  calligra/repos/extra-x86_64/calligra-krita.install
  calligra/repos/extra-x86_64/calligra-plan.install
  calligra/repos/extra-x86_64/calligra-plugins.install
  calligra/repos/extra-x86_64/calligra-sheets.install
  

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

2015-05-05 Thread Antonio Rojas
Date: Tuesday, May 5, 2015 @ 23:31:49
  Author: arojas
Revision: 238516

Update to 2.9.4

Modified:
  calligra-l10n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 21:25:48 UTC (rev 238515)
+++ PKGBUILD2015-05-05 21:31:49 UTC (rev 238516)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgbase=calligra-l10n
-pkgver=2.9.3
+pkgver=2.9.4
 pkgrel=1
 pkgdesc=Localization for Calligra
 arch=('any')
@@ -57,34 +57,34 @@
   }
 done
 
-md5sums=('3c7627839f77d3400c0a30ac37d3f3f0'
- 'd08b198e0067bd5cdeb3427156b78f31'
- '38f6412f07d1f7a6c3a2b673b08ce877'
- 'fa6dcaa9d1383bdf1dd0d1dcc357fb73'
- '7b4978bcab76f255afd240e00b1e7422'
- 'f6e970a14a33bbe8df680e4f00404ba0'
- 'c09cdbc712c4752e6351b3130d7f09a0'
- '4d6387b9b48909021716edd8428e1cd2'
- '19adb03876480cd46cfa08631ab0c714'
- 'f129516d83a89f757ca0bea5d8807ea0'
- '9c711e6d6e1b4059cb19ebc3ffb094b2'
- 'af6bd3d2a17d36be13fa0e25720d228b'
- '7a0411791618f6861f195f34d69b0300'
- '13e308e690006beba5cfef14807efbee'
- '1f6fa2b85a28c27504dde1419f21a6f6'
- '601acb26f8c6bf718f22ada6a5483cf5'
- '38b7bde1b22b7897b934dc94e7b2f612'
- 'c0e9deb4b4d143782ac7b55b47a3f9dc'
- '1259cc3ba2927ca7d64c216f51e55f59'
- '320d6cae2c91b571575a9d9495d71a58'
- 'd74825e82ac8ead660ca48b17c9ef787'
- 'd7b4da7fa722575334529c91bd4e7b14'
- '47de04130b223a2c726bc9ece98d1f98'
- '78334532879a20035b72d5eac58b397c'
- 'c39e73261ebaa1b22ebc82a52073fc2c'
- 'dc660171238fd9221201f73d0c622281'
- '4df00fe1c254a63d4fcd2cbb5e0700e8'
- '923edb520f9252a01df937bd1b974f6a')
+md5sums=('5c6459eb4dffe6bf9f75ad39f4648165'
+ 'f84bc429dcbf7c622338f68a0dd52773'
+ 'cb6f2273c4b7e7208c98e4f896e34fb2'
+ '71b04ece0bf73e0403fa6f318aa39f99'
+ '32d89d0b7c006c366f79cc63d6554a8e'
+ '54acdac0e6e2559f896ab8207b49341b'
+ '7d9c33670daa3d6faaa63158b678ac53'
+ '29eac1e253f83206effa198a5d6862e8'
+ 'b0143072e41a8b5de27157d4bff1fca8'
+ '6e8decc43bf0c2b7fcbd923c60ce6fc5'
+ '3085a1383b0698ba96ce81ab271f046b'
+ '108135435df5428c963509091cb02dc7'
+ '0a025604c602837ba7ff3ee438b47575'
+ '1f35e6863adc78931d9b1af2bbffba00'
+ 'a28cb1daa6acccd3b7a4981ef4e1ab85'
+ '3eb3b3c32ea80ed9a8e0c813438d4ca0'
+ '083ee522c5649874d87c512ba468ff31'
+ '636c381ddb937c3ca1d4128f5547c782'
+ '54748c2091e8e686e995c1a45c88b21c'
+ '0562dc6650d96702ee4f24a69ee8b644'
+ '325487455521a3d0bfa22340a65cf91a'
+ 'bc07c506e9e602fad8c0d2bd4fa74ef6'
+ '48c9c77c73a36c3beaf0cf4f5792461e'
+ '96235bed627011d3d2ba91794a6ad659'
+ 'ce531462a3e2af48353212f8a4062629'
+ '37f6d873659aed7cd32fa134877d865f'
+ '1a295eef214dc59b8a09d86e9e03269b'
+ '9a0269924fbd19cc8f21a4afe13987aa')
 
 build() {
   for _lang in ${_languages[@]}; do


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

2015-05-05 Thread Alexander Rødseth
Date: Tuesday, May 5, 2015 @ 23:49:55
  Author: arodseth
Revision: 132815

upgpkg: nim 0.11.2-1

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 17:28:12 UTC (rev 132814)
+++ PKGBUILD2015-05-05 21:49:55 UTC (rev 132815)
@@ -5,7 +5,7 @@
 # Contributor: Jesus Alvarez jeezu...@gmail.com
 
 pkgname=nim
-pkgver=0.11.0
+pkgver=0.11.2
 pkgrel=1
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
 arch=('x86_64' 'i686')


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:41
  Author: spupykin
Revision: 132765

upgpkg: luasec 1:0.5-2

upd

Modified:
  luasec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:51:38 UTC (rev 132764)
+++ PKGBUILD2015-05-05 10:51:41 UTC (rev 132765)
@@ -6,7 +6,7 @@
 pkgbase=luasec
 pkgname=(lua-sec lua51-sec)
 pkgver=0.5
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
 arch=('i686' 'x86_64')


[arch-commits] Commit in lua-alt-getopt/trunk (PKGBUILD)

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:14
  Author: spupykin
Revision: 132759

upgpkg: lua-alt-getopt 0.7.0-6

upd

Modified:
  lua-alt-getopt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:51:07 UTC (rev 132758)
+++ PKGBUILD2015-05-05 10:51:14 UTC (rev 132759)
@@ -6,7 +6,7 @@
 pkgbase=lua-alt-getopt
 pkgname=(lua-alt-getopt lua51-alt-getopt)
 pkgver=0.7.0
-pkgrel=5
+pkgrel=6
 pkgdesc=Lua module for processing options similar to getopt_long(3) (5.1)
 license=('MIT')
 arch=('any')


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:58
  Author: spupykin
Revision: 132767

upgpkg: luasocket 3.0rc1-5

upd

Modified:
  luasocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:51:53 UTC (rev 132766)
+++ PKGBUILD2015-05-05 10:51:58 UTC (rev 132767)
@@ -5,7 +5,7 @@
 pkgbase=luasocket
 pkgname=(lua-socket lua51-socket)
 pkgver=3.0rc1
-pkgrel=4
+pkgrel=5
 pkgdesc='Networking support library for the Lua language'
 arch=('i686' 'x86_64')
 url='https://github.com/diegonehab/luasocket'


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

2015-05-05 Thread Massimiliano Torromeo
Date: Tuesday, May 5, 2015 @ 12:51:35
  Author: mtorromeo
Revision: 132763

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-05 10:51:25 UTC (rev 132762)
+++ community-i686/PKGBUILD 2015-05-05 10:51:35 UTC (rev 132763)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=nmon
-pkgver=15d
-pkgrel=1
-pkgdesc=AIX  Linux Performance Monitoring tool
-arch=('i686' 'x86_64')
-url=http://nmon.sourceforge.net;
-license=('GPL')
-source=(http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c;)
-sha256sums=('2ccdd7448be35c2305254dc5b2e6a2a10f3fc0ca132269cf6669ebe6ea64ffea')
-
-build() {
-  cd ${srcdir}
-
-  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
-}
-
-package() {
-  cd ${srcdir}
-
-  install -D -m 0755 nmon ${pkgdir}/usr/bin/nmon
-}

Copied: nmon/repos/community-i686/PKGBUILD (from rev 132762, 
nmon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-05 10:51:35 UTC (rev 132763)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=nmon
+pkgver=15e
+pkgrel=1
+pkgdesc=AIX  Linux Performance Monitoring tool
+arch=('i686' 'x86_64')
+url=http://nmon.sourceforge.net;
+license=('GPL')
+source=(http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c;)
+sha256sums=('166354260d0749acff16a7b21c3518b4c85fa3a35db61c06537988a8069445fa')
+
+build() {
+  cd ${srcdir}
+  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -lm -g -D X86
+}
+
+package() {
+  cd ${srcdir}
+  install -D -m 0755 nmon ${pkgdir}/usr/bin/nmon
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-05 10:51:25 UTC (rev 132762)
+++ community-x86_64/PKGBUILD   2015-05-05 10:51:35 UTC (rev 132763)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=nmon
-pkgver=15d
-pkgrel=1
-pkgdesc=AIX  Linux Performance Monitoring tool
-arch=('i686' 'x86_64')
-url=http://nmon.sourceforge.net;
-license=('GPL')
-source=(http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c;)
-sha256sums=('2ccdd7448be35c2305254dc5b2e6a2a10f3fc0ca132269cf6669ebe6ea64ffea')
-
-build() {
-  cd ${srcdir}
-
-  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
-}
-
-package() {
-  cd ${srcdir}
-
-  install -D -m 0755 nmon ${pkgdir}/usr/bin/nmon
-}

Copied: nmon/repos/community-x86_64/PKGBUILD (from rev 132762, 
nmon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-05 10:51:35 UTC (rev 132763)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=nmon
+pkgver=15e
+pkgrel=1
+pkgdesc=AIX  Linux Performance Monitoring tool
+arch=('i686' 'x86_64')
+url=http://nmon.sourceforge.net;
+license=('GPL')
+source=(http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c;)
+sha256sums=('166354260d0749acff16a7b21c3518b4c85fa3a35db61c06537988a8069445fa')
+
+build() {
+  cd ${srcdir}
+  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -lm -g -D X86
+}
+
+package() {
+  cd ${srcdir}
+  install -D -m 0755 nmon ${pkgdir}/usr/bin/nmon
+}


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:53
  Author: spupykin
Revision: 132766

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

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

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

Copied: luasec/repos/community-staging-i686/PKGBUILD (from rev 132765, 
luasec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 10:51:53 UTC (rev 132766)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Dwayne Bent db...@liqd.org
+# Contributor: Paul-Sebastian Manole brokenth...@gmail.com
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec)
+pkgver=0.5
+pkgrel=2
+epoch=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket')
+options=('!buildflags')
+source=(https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
+md5sums=('0518f4524f399f33424c6f450e1d06db')
+
+prepare() {
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+}
+
+build() {
+  msg2 'Building with lua 5.2'
+  cd luasec-luasec-$pkgver
+  make linux
+
+  msg2 'Building with lua 5.1'
+  cd ../luasec-luasec-$pkgver-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include lua5.1/lua.h|g' \
+-e 's|include .lualib.h.|include lua5.1/lualib.h|g' \
+-e 's|include .luaconf.h.|include lua5.1/luaconf.h|g' \
+-e 's|include .lauxlib.h.|include lua5.1/lauxlib.h|g' \
+{} \;
+  make linux
+}
+
+package_lua-sec() {
+  depends=('openssl' 'lua' 'lua-socket')
+
+  install -dm755 $pkgdir/usr/lib/lua/5.2
+  cd luasec-luasec-$pkgver
+  make LUACPATH=$pkgdir/usr/lib/lua/5.2 LUAPATH=$pkgdir/usr/share/lua/5.2 
install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-sec() {
+  depends=('openssl' 'lua51' 'lua51-socket')
+  conflicts=('luasec')
+  replaces=('luasec')
+
+  install -dm755 $pkgdir/usr/lib/lua/5.1
+  cd luasec-luasec-$pkgver-51
+  make LUACPATH=$pkgdir/usr/lib/lua/5.1 LUAPATH=$pkgdir/usr/share/lua/5.1 
install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luasec/repos/community-staging-x86_64/PKGBUILD (from rev 132765, 
luasec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 10:51:53 UTC (rev 132766)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Dwayne Bent db...@liqd.org
+# Contributor: Paul-Sebastian Manole brokenth...@gmail.com
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec)
+pkgver=0.5
+pkgrel=2
+epoch=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket')
+options=('!buildflags')
+source=(https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
+md5sums=('0518f4524f399f33424c6f450e1d06db')
+
+prepare() {
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+}
+
+build() {
+  msg2 'Building with lua 5.2'
+  cd luasec-luasec-$pkgver
+  make linux
+
+  msg2 'Building with lua 5.1'
+  cd ../luasec-luasec-$pkgver-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include lua5.1/lua.h|g' \
+-e 's|include .lualib.h.|include lua5.1/lualib.h|g' \
+-e 's|include .luaconf.h.|include lua5.1/luaconf.h|g' \
+-e 's|include .lauxlib.h.|include lua5.1/lauxlib.h|g' \
+{} \;
+  make linux
+}
+
+package_lua-sec() {
+  depends=('openssl' 'lua' 'lua-socket')
+
+  install -dm755 $pkgdir/usr/lib/lua/5.2
+  cd luasec-luasec-$pkgver
+  make LUACPATH=$pkgdir/usr/lib/lua/5.2 LUAPATH=$pkgdir/usr/share/lua/5.2 
install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-sec() {
+  depends=('openssl' 'lua51' 'lua51-socket')
+  conflicts=('luasec')
+  replaces=('luasec')
+
+  install -dm755 $pkgdir/usr/lib/lua/5.1
+  cd luasec-luasec-$pkgver-51
+  make LUACPATH=$pkgdir/usr/lib/lua/5.1 LUAPATH=$pkgdir/usr/share/lua/5.1 
install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:38
  Author: spupykin
Revision: 132764

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

Added:
  luafilesystem/repos/community-staging-i686/
  luafilesystem/repos/community-staging-i686/LICENSE
(from rev 132762, luafilesystem/trunk/LICENSE)
  luafilesystem/repos/community-staging-i686/PKGBUILD
(from rev 132762, luafilesystem/trunk/PKGBUILD)
  luafilesystem/repos/community-staging-x86_64/
  luafilesystem/repos/community-staging-x86_64/LICENSE
(from rev 132762, luafilesystem/trunk/LICENSE)
  luafilesystem/repos/community-staging-x86_64/PKGBUILD
(from rev 132763, luafilesystem/trunk/PKGBUILD)

---+
 community-staging-i686/LICENSE|   22 
 community-staging-i686/PKGBUILD   |   49 
 community-staging-x86_64/LICENSE  |   22 
 community-staging-x86_64/PKGBUILD |   49 
 4 files changed, 142 insertions(+)

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

Copied: luafilesystem/repos/community-staging-i686/PKGBUILD (from rev 132762, 
luafilesystem/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 10:51:38 UTC (rev 132764)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luafilesystem
+pkgname=(lua-filesystem lua51-filesystem)
+pkgver=1.6.3
+pkgrel=2
+pkgdesc='File System Library for the Lua Programming Language'
+arch=('i686' 'x86_64')
+url='http://www.keplerproject.org/luafilesystem/'
+license=('MIT')
+makedepends=(lua lua51)
+#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
+source=(https://github.com/keplerproject/luafilesystem/archive/v_${pkgver//./_}.tar.gz
+LICENSE)
+md5sums=('d0552c7e5a082f5bb2865af63fb9dc95'
+ 'beb2b58c4b5c2782304a5b0267a5651b')
+
+build() {
+  msg2 Building $pkgbase with Lua 5.1
+  cp -a $pkgbase-v_${pkgver//./_} $pkgbase-v_${pkgver//./_}-51
+  cd $pkgbase-v_${pkgver//./_}-51
+  make LUA_INC=/usr/include/lua5.1
+
+  msg2 Building $pkgbase with Lua 5.2
+  cd $srcdir/$pkgbase-v_${pkgver//./_}
+  make
+}
+
+package_lua-filesystem() {
+  depends=('lua')
+
+  cd $pkgbase-v_${pkgver//./_}
+  make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
+  install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-filesystem() {
+  depends=('lua51')
+  conflicts=('luafilesystem')
+  replaces=('luafilesystem')
+
+  cd $pkgbase-v_${pkgver//./_}-51
+  make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install
+  install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: luafilesystem/repos/community-staging-x86_64/LICENSE (from rev 132762, 
luafilesystem/trunk/LICENSE)
===
--- community-staging-x86_64/LICENSE(rev 0)
+++ community-staging-x86_64/LICENSE2015-05-05 10:51:38 UTC (rev 132764)
@@ -0,0 +1,22 @@
+Copyright (C) 2004-2007 The Kepler Project.
+
+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 

[arch-commits] Commit in lua-alt-getopt/repos (3 files)

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:21
  Author: spupykin
Revision: 132761

archrelease: copy trunk to community-staging-any

Added:
  lua-alt-getopt/repos/community-staging-any/
  lua-alt-getopt/repos/community-staging-any/LICENSE
(from rev 132759, lua-alt-getopt/trunk/LICENSE)
  lua-alt-getopt/repos/community-staging-any/PKGBUILD
(from rev 132759, lua-alt-getopt/trunk/PKGBUILD)

--+
 LICENSE  |7 +++
 PKGBUILD |   43 +++
 2 files changed, 50 insertions(+)

Copied: lua-alt-getopt/repos/community-staging-any/LICENSE (from rev 132759, 
lua-alt-getopt/trunk/LICENSE)
===
--- community-staging-any/LICENSE   (rev 0)
+++ community-staging-any/LICENSE   2015-05-05 10:51:21 UTC (rev 132761)
@@ -0,0 +1,7 @@
+Copyright © 2008 Lua.org, PUC-Rio.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the Software), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE. 

Copied: lua-alt-getopt/repos/community-staging-any/PKGBUILD (from rev 132759, 
lua-alt-getopt/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-05-05 10:51:21 UTC (rev 132761)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Old Maintainer: Gustavo Alvarez sl1pk...@gmail.com
+# contributor: Cameron Banta cba...@gmail.com
+
+pkgbase=lua-alt-getopt
+pkgname=(lua-alt-getopt lua51-alt-getopt)
+pkgver=0.7.0
+pkgrel=6
+pkgdesc=Lua module for processing options similar to getopt_long(3) (5.1)
+license=('MIT')
+arch=('any')
+url=http://luaforge.net/projects/alt-getopt/;
+makedepends=('bmake' 'lua' 'lua51')
+source=(http://mova.org/~cheusov/pub/lua_alt_getopt/lua-alt-getopt-${pkgver}.tar.gz;
+'LICENSE')
+sha1sums=('431b590002f5fdced78e0745a9a283aefdd1dfa0'
+  'e471a511997528dd080d2997580499c37d06111a')
+
+build() {
+  cp -r ${pkgname}-${pkgver} build51
+  cp -r ${pkgname}-${pkgver} build52
+  cd $srcdir/build51
+  bmake LUAVER=5.1 PREFIX=/usr
+  cd $srcdir/build52
+  bmake LUAVER=5.2 PREFIX=/usr
+}
+
+package_lua51-alt-getopt() {
+  depends=('lua51')
+  cd $srcdir/build51
+  install -Dm755 alt_getopt ${pkgdir}/usr/bin/alt_getopt5.1
+  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.1/alt_getopt.lua
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_lua-alt-getopt() {
+  depends=('lua')
+  cd $srcdir/build52
+  install -Dm755 alt_getopt ${pkgdir}/usr/bin/alt_getopt
+  install -Dm664 alt_getopt.lua ${pkgdir}/usr/share/lua/5.2/alt_getopt.lua
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:50:53
  Author: spupykin
Revision: 132757

upgpkg: instead 2.2.3-2

upd

Modified:
  instead/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:26:46 UTC (rev 132756)
+++ PKGBUILD2015-05-05 10:50:53 UTC (rev 132757)
@@ -4,7 +4,7 @@
 
 pkgname=instead
 pkgver=2.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc=a quest interpreter
 arch=('i686' 'x86_64')
 url=http://sourceforge.net/projects/instead/;


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:25
  Author: spupykin
Revision: 132762

upgpkg: luafilesystem 1.6.3-2

upd

Modified:
  luafilesystem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:51:21 UTC (rev 132761)
+++ PKGBUILD2015-05-05 10:51:25 UTC (rev 132762)
@@ -7,7 +7,7 @@
 pkgbase=luafilesystem
 pkgname=(lua-filesystem lua51-filesystem)
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc='File System Library for the Lua Programming Language'
 arch=('i686' 'x86_64')
 url='http://www.keplerproject.org/luafilesystem/'


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

2015-05-05 Thread Massimiliano Torromeo
Date: Tuesday, May 5, 2015 @ 12:51:18
  Author: mtorromeo
Revision: 132760

upgpkg: nmon 15e-1

Updated to 15e

Modified:
  nmon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:51:14 UTC (rev 132759)
+++ PKGBUILD2015-05-05 10:51:18 UTC (rev 132760)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=nmon
-pkgver=15d
+pkgver=15e
 pkgrel=1
 pkgdesc=AIX  Linux Performance Monitoring tool
 arch=('i686' 'x86_64')
@@ -9,16 +9,14 @@
 url=http://nmon.sourceforge.net;
 license=('GPL')
 source=(http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c;)
-sha256sums=('2ccdd7448be35c2305254dc5b2e6a2a10f3fc0ca132269cf6669ebe6ea64ffea')
+sha256sums=('166354260d0749acff16a7b21c3518b4c85fa3a35db61c06537988a8069445fa')
 
 build() {
   cd ${srcdir}
-
-  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
+  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -lm -g -D X86
 }
 
 package() {
   cd ${srcdir}
-
   install -D -m 0755 nmon ${pkgdir}/usr/bin/nmon
 }


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:51:07
  Author: spupykin
Revision: 132758

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

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

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

Copied: instead/repos/community-staging-i686/PKGBUILD (from rev 132757, 
instead/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 10:51:07 UTC (rev 132758)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Peter Kosyh p.kosyhgmail.com
+
+pkgname=instead
+pkgver=2.2.3
+pkgrel=2
+pkgdesc=a quest interpreter
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/instead/;
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
+md5sums=('8bee01d435e240e4e7585e3b96393313')
+
+build() {
+  cd ${srcdir}/instead-${pkgver}
+  echo 2 | ./configure.sh
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${srcdir}/instead-${pkgver}
+  make DESTDIR=${pkgdir} PREFIX=/usr install
+
+  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
+}

Copied: instead/repos/community-staging-x86_64/PKGBUILD (from rev 132757, 
instead/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 10:51:07 UTC (rev 132758)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Peter Kosyh p.kosyhgmail.com
+
+pkgname=instead
+pkgver=2.2.3
+pkgrel=2
+pkgdesc=a quest interpreter
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/instead/;
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
+md5sums=('8bee01d435e240e4e7585e3b96393313')
+
+build() {
+  cd ${srcdir}/instead-${pkgver}
+  echo 2 | ./configure.sh
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${srcdir}/instead-${pkgver}
+  make DESTDIR=${pkgdir} PREFIX=/usr install
+
+  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
+}


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:52:12
  Author: spupykin
Revision: 132769

upgpkg: lxc 1:1.1.2-2

upd

Modified:
  lxc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:52:09 UTC (rev 132768)
+++ PKGBUILD2015-05-05 10:52:12 UTC (rev 132769)
@@ -8,7 +8,7 @@
 pkgname=lxc
 pkgver=1.1.2
 epoch=1
-pkgrel=1
+pkgrel=2
 pkgdesc=Linux Containers
 arch=('i686' 'x86_64')
 url=http://linuxcontainers.org;


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:52:09
  Author: spupykin
Revision: 132768

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

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

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

Copied: luasocket/repos/community-staging-i686/PKGBUILD (from rev 132767, 
luasocket/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 10:52:09 UTC (rev 132768)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasocket
+pkgname=(lua-socket lua51-socket)
+pkgver=3.0rc1
+pkgrel=5
+pkgdesc='Networking support library for the Lua language'
+arch=('i686' 'x86_64')
+url='https://github.com/diegonehab/luasocket'
+license=('MIT')
+makedepends=('lua' 'lua51')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
+   https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
+md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
+ '7936d598ea91632e7dcc7aebc93c7300')
+
+prepare() {
+  cd ${srcdir}/luasocket-${pkgver/rc/-rc}
+  patch -p1  ${srcdir}/396e9e5.patch
+}
+
+build() {
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
+  msg2 'Building with lua 5.2'
+  pushd luasocket-${pkgver/rc/-rc}-52
+  make LUAV=5.2
+  popd
+  msg2 'Building with lua 5.1'
+  cd luasocket-${pkgver/rc/-rc}
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include lua.h|include lua5.1/lua.h|g' \
+-e 's|include lualib.h|include lua5.1/lualib.h|g' \
+-e 's|include luaconf.h|include lua5.1/luaconf.h|g' \
+-e 's|include lauxlib.h|include lua5.1/lauxlib.h|g' \
+{} \;
+  make LUAV=5.1
+}
+
+package_lua-socket() {
+  depends=('lua')
+  cd luasocket-${pkgver/rc/-rc}-52
+  make DESTDIR=$pkgdir/ LUAV=5.2 prefix=/usr install-unix
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-socket() {
+  depends=('lua51')
+  replaces=('luasocket')
+  conflicts=('luasocket')
+
+  cd luasocket-${pkgver/rc/-rc}
+  make DESTDIR=$pkgdir/ LUAV=5.1 prefix=/usr install-unix
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: luasocket/repos/community-staging-x86_64/PKGBUILD (from rev 132767, 
luasocket/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-05 10:52:09 UTC (rev 132768)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasocket
+pkgname=(lua-socket lua51-socket)
+pkgver=3.0rc1
+pkgrel=5
+pkgdesc='Networking support library for the Lua language'
+arch=('i686' 'x86_64')
+url='https://github.com/diegonehab/luasocket'
+license=('MIT')
+makedepends=('lua' 'lua51')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
+   https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
+md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
+ '7936d598ea91632e7dcc7aebc93c7300')
+
+prepare() {
+  cd ${srcdir}/luasocket-${pkgver/rc/-rc}
+  patch -p1  ${srcdir}/396e9e5.patch
+}
+
+build() {
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
+  msg2 'Building with lua 5.2'
+  pushd luasocket-${pkgver/rc/-rc}-52
+  make LUAV=5.2
+  popd
+  msg2 'Building with lua 5.1'
+  cd luasocket-${pkgver/rc/-rc}
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include lua.h|include lua5.1/lua.h|g' \
+-e 's|include lualib.h|include lua5.1/lualib.h|g' \
+-e 's|include luaconf.h|include lua5.1/luaconf.h|g' \
+-e 's|include lauxlib.h|include lua5.1/lauxlib.h|g' \
+{} \;
+  make LUAV=5.1
+}
+
+package_lua-socket() {
+  depends=('lua')
+  cd luasocket-${pkgver/rc/-rc}-52
+  make DESTDIR=$pkgdir/ LUAV=5.2 prefix=/usr install-unix
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-socket() {
+  depends=('lua51')
+  replaces=('luasocket')
+  conflicts=('luasocket')
+
+  cd luasocket-${pkgver/rc/-rc}
+  make DESTDIR=$pkgdir/ LUAV=5.1 prefix=/usr install-unix
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 12:52:30
  Author: spupykin
Revision: 132770

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

Added:
  lxc/repos/community-staging-i686/
  lxc/repos/community-staging-i686/PKGBUILD
(from rev 132769, lxc/trunk/PKGBUILD)
  lxc/repos/community-staging-i686/lxc-auto.service
(from rev 132769, lxc/trunk/lxc-auto.service)
  lxc/repos/community-staging-i686/lxc.install
(from rev 132769, lxc/trunk/lxc.install)
  lxc/repos/community-staging-i686/lxc.service
(from rev 132769, lxc/trunk/lxc.service)
  lxc/repos/community-staging-i686/lxc.tmpfiles.d
(from rev 132769, lxc/trunk/lxc.tmpfiles.d)
  lxc/repos/community-staging-x86_64/
  lxc/repos/community-staging-x86_64/PKGBUILD
(from rev 132769, lxc/trunk/PKGBUILD)
  lxc/repos/community-staging-x86_64/lxc-auto.service
(from rev 132769, lxc/trunk/lxc-auto.service)
  lxc/repos/community-staging-x86_64/lxc.install
(from rev 132769, lxc/trunk/lxc.install)
  lxc/repos/community-staging-x86_64/lxc.service
(from rev 132769, lxc/trunk/lxc.service)
  lxc/repos/community-staging-x86_64/lxc.tmpfiles.d
(from rev 132769, lxc/trunk/lxc.tmpfiles.d)

---+
 community-staging-i686/PKGBUILD   |   77 
 community-staging-i686/lxc-auto.service   |   12 
 community-staging-i686/lxc.install|8 ++
 community-staging-i686/lxc.service|   12 
 community-staging-i686/lxc.tmpfiles.d |1 
 community-staging-x86_64/PKGBUILD |   77 
 community-staging-x86_64/lxc-auto.service |   12 
 community-staging-x86_64/lxc.install  |8 ++
 community-staging-x86_64/lxc.service  |   12 
 community-staging-x86_64/lxc.tmpfiles.d   |1 
 10 files changed, 220 insertions(+)

Copied: lxc/repos/community-staging-i686/PKGBUILD (from rev 132769, 
lxc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-05 10:52:30 UTC (rev 132770)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Zucchelli zukk...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+# Contributor: Jonathan Liu net...@gmail.com
+# Contributor: Jon Nordby jono...@gmail.com
+
+pkgname=lxc
+pkgver=1.1.2
+epoch=1
+pkgrel=2
+pkgdesc=Linux Containers
+arch=('i686' 'x86_64')
+url=http://linuxcontainers.org;
+depends=('bash' 'perl' 'libseccomp' 'libcap' 'python' 'cgmanager' 'rsync')
+makedepends=('docbook2x' 'lua')
+optdepends=('arch-install-scripts: for archlinux template'
+   'lua'
+   'lua-filesystem: lxc-top'
+   'lua-alt-getopt: lxc-top')
+license=('LGPL')
+install=lxc.install
+options=('emptydirs')
+backup=('etc/lxc/default.conf')
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
+source=(http://linuxcontainers.org/downloads/$pkgname-${pkgver}.tar.gz{,.asc}
+   lxc.tmpfiles.d
+   lxc.service
+   lxc-auto.service)
+md5sums=('3ebadacf5fe8bfe689fd7a09812b682c'
+ 'SKIP'
+ 'df94c9fb8a753011c86ee664e9f521ff'
+ '4b41aa53ee714c60f0309541d2e9ea15'
+ '5566d9bd868adf26b19d59f9f77bec95')
+
+prepare() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+  sed -i \
+-e 's|\\-//Davenport//DTD DocBook V3.0//EN\\|\\-//OASIS//DTD DocBook 
XML\\ \\http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\\;|' \
+configure.ac
+}
+
+build() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--libdir=/usr/lib \
+--sysconfdir=/etc \
+--disable-apparmor \
+--enable-seccomp \
+--enable-cgmanager \
+--enable-capabilities \
+--enable-lua \
+--with-init-script=systemd \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+
+  make DESTDIR=$pkgdir install
+  install -d -m755 $pkgdir/var/lib/lxc
+  install -d -m755 $pkgdir/usr/lib/lxc/rootfs/dev
+  install -D -m644 ${srcdir}/lxc.service 
${pkgdir}/usr/lib/systemd/system/lxc@.service
+  install -D -m644 ${srcdir}/lxc-auto.service 
${pkgdir}/usr/lib/systemd/system/lxc-auto.service
+  install -D -m644 ${srcdir}/lxc.tmpfiles.d 
${pkgdir}/usr/lib/tmpfiles.d/lxc.conf
+
+  cd doc
+  find . -type f -name '*.1' -exec install -D -m644 {} 
$pkgdir/usr/share/man/man1/{} \;
+  find . -type f -name '*.5' -exec install -D -m644 {} 
$pkgdir/usr/share/man/man5/{} \;
+  find . -type f -name '*.7' -exec install -D -m644 {} 
$pkgdir/usr/share/man/man7/{} \;
+}

Copied: lxc/repos/community-staging-i686/lxc-auto.service (from rev 132769, 
lxc/trunk/lxc-auto.service)
===
--- community-staging-i686/lxc-auto.service

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

2015-05-05 Thread Sergej Pupykin
Date: Tuesday, May 5, 2015 @ 13:29:41
  Author: spupykin
Revision: 132771

upgpkg: lua-zlib 2:0.4-1

upd

Modified:
  lua-zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-05 10:52:30 UTC (rev 132770)
+++ PKGBUILD2015-05-05 11:29:41 UTC (rev 132771)
@@ -3,7 +3,7 @@
 
 pkgname=(lua-zlib lua51-zlib)
 pkgbase=lua-zlib
-epoch=1
+epoch=2
 pkgver=0.4
 pkgrel=1
 url=http://github.com/brimworks/lua-zlib;


  1   2   >