[arch-commits] Commit in kdelibs/trunk (PKGBUILD fix-cifs-mount.patch)

2014-05-26 Thread Andrea Scarpino
Date: Monday, May 26, 2014 @ 10:53:32
  Author: andrea
Revision: 213594

upgpkg: kdelibs 4.13.1-3

Fix CIFS mount (FS#40475)

Added:
  kdelibs/trunk/fix-cifs-mount.patch
Modified:
  kdelibs/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 fix-cifs-mount.patch |   49 +
 2 files changed, 56 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-25 20:34:12 UTC (rev 213593)
+++ PKGBUILD2014-05-26 08:53:32 UTC (rev 213594)
@@ -4,7 +4,7 @@
 
 pkgname=kdelibs
 pkgver=4.13.1
-pkgrel=2
+pkgrel=3
 pkgdesc=KDE Core Libraries
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs'
@@ -16,11 +16,13 @@
 makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
+'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch'
+'fix-cifs-mount.patch')
 sha1sums=('1008effc37f316bf6e3a4d527c4257937fc572ec'
   '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
   '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
+  'ed1f57ee661e5c7440efcaba7e51d2554709701c'
+  '26bbebeaf3f882d84030fd9b39b7b4c9debbbeec')
 
 prepare() {
cd ${pkgname}-${pkgver}
@@ -30,6 +32,8 @@
patch -p1 -i ${srcdir}/archlinux-menu.patch
# qmake refers to Qt5
patch -p1 -i ${srcdir}/qt4.patch
+
+   patch -p1 -i ${srcdir}/fix-cifs-mount.patch
 }
 
 build() {

Added: fix-cifs-mount.patch
===
--- fix-cifs-mount.patch(rev 0)
+++ fix-cifs-mount.patch2014-05-26 08:53:32 UTC (rev 213594)
@@ -0,0 +1,49 @@
+commit 9a8426ae2ed35ac900b89a623618fc158d24ee6a
+Author: Tomáš Trnka tomastr...@gmx.com
+Date:   Sun May 25 16:12:36 2014 +0200
+
+Revert Avoid unnecessary automounting in 
KDiskFreeSpaceInfo::freeSpaceInfo
+
+This reverts commit 6246e99b43f3d1a9e15d563fbb5e173ed50ba5e5.
+
+It breaks KIO on CIFS mounts as the check for automounts copied over
+from frameworks/kfileitem.cpp isDirectoryMounted() apparently matches
+CIFS as well (and for some weird reason KIO checks for available space
+before trying to copy files).
+
+We'll probably have to return to v1 of the abovementioned commit, i.e.
+checking for autofs explicitly. However, more testing is apparently
+necessary to avoid further nasty surprises.
+
+REVIEW: 117044
+BUG: 334776
+FIXED-IN: 4.13.2
+
+diff --git a/kio/kfile/kdiskfreespaceinfo.cpp 
b/kio/kfile/kdiskfreespaceinfo.cpp
+index 5c1fa72..f11eb09 100644
+--- a/kio/kfile/kdiskfreespaceinfo.cpp
 b/kio/kfile/kdiskfreespaceinfo.cpp
+@@ -33,7 +33,6 @@
+ #include QtCore/QDir
+ #include windows.h
+ #else
+-#include QtCore/QFileInfo
+ #include sys/statvfs.h
+ #endif
+ 
+@@ -131,15 +130,6 @@ KDiskFreeSpaceInfo KDiskFreeSpaceInfo::freeSpaceInfo( 
const QString path )
+ #else
+ struct statvfs statvfs_buf;
+ 
+-// Ignore autofs mountpoints as statvfs would trigger (expensive) 
automounting
+-// This also matches special filesystems like /proc where free space 
has no meaning
+-if (mp) {
+-QFileInfo fi(info.d-mountPoint);
+-if (fi.isDir()  fi.size() == 0) {
+-return info;
+-}
+-}
+-
+ // Prefer mountPoint if available, so that it even works with 
non-existing files.
+ const QString pathArg = info.d-mountPoint.isEmpty() ? path : 
info.d-mountPoint;
+ if (!statvfs(QFile::encodeName(pathArg).constData(), statvfs_buf)) {



[arch-commits] Commit in kdelibs/repos (22 files)

2014-05-26 Thread Andrea Scarpino
Date: Monday, May 26, 2014 @ 10:54:10
  Author: andrea
Revision: 213595

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

Added:
  kdelibs/repos/extra-i686/PKGBUILD
(from rev 213594, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/extra-i686/archlinux-menu.patch
(from rev 213594, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/extra-i686/fix-cifs-mount.patch
(from rev 213594, kdelibs/trunk/fix-cifs-mount.patch)
  kdelibs/repos/extra-i686/kde-applications-menu.patch
(from rev 213594, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/extra-i686/kdelibs.install
(from rev 213594, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/extra-i686/qt4.patch
(from rev 213594, kdelibs/trunk/qt4.patch)
  kdelibs/repos/extra-x86_64/PKGBUILD
(from rev 213594, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
(from rev 213594, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/extra-x86_64/fix-cifs-mount.patch
(from rev 213594, kdelibs/trunk/fix-cifs-mount.patch)
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
(from rev 213594, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/extra-x86_64/kdelibs.install
(from rev 213594, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/extra-x86_64/qt4.patch
(from rev 213594, kdelibs/trunk/qt4.patch)
Deleted:
  kdelibs/repos/extra-i686/PKGBUILD
  kdelibs/repos/extra-i686/archlinux-menu.patch
  kdelibs/repos/extra-i686/kde-applications-menu.patch
  kdelibs/repos/extra-i686/kdelibs.install
  kdelibs/repos/extra-i686/qt4.patch
  kdelibs/repos/extra-x86_64/PKGBUILD
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
  kdelibs/repos/extra-x86_64/kdelibs.install
  kdelibs/repos/extra-x86_64/qt4.patch

--+
 /PKGBUILD|  128 +
 /archlinux-menu.patch|   44 +
 /kde-applications-menu.patch |   44 +
 /kdelibs.install |   26 +
 /qt4.patch   |   22 
 extra-i686/PKGBUILD  |   60 -
 extra-i686/archlinux-menu.patch  |   22 
 extra-i686/fix-cifs-mount.patch  |   49 +++
 extra-i686/kde-applications-menu.patch   |   22 
 extra-i686/kdelibs.install   |   13 --
 extra-i686/qt4.patch |   11 --
 extra-x86_64/PKGBUILD|   60 -
 extra-x86_64/archlinux-menu.patch|   22 
 extra-x86_64/fix-cifs-mount.patch|   49 +++
 extra-x86_64/kde-applications-menu.patch |   22 
 extra-x86_64/kdelibs.install |   13 --
 extra-x86_64/qt4.patch   |   11 --
 17 files changed, 362 insertions(+), 256 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-26 08:53:32 UTC (rev 213594)
+++ extra-i686/PKGBUILD 2014-05-26 08:54:10 UTC (rev 213595)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdelibs
-pkgver=4.13.1
-pkgrel=2
-pkgdesc=KDE Core Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('attica' 'libxss' 'krb5' 'grantlee' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr' 'strigi'
-'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit' 'icu')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('1008effc37f316bf6e3a4d527c4257937fc572ec'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
-
-prepare() {
-   cd ${pkgname}-${pkgver}
-   # avoid file conflict with gnome-menus
-   patch -p1 -i ${srcdir}/kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i ${srcdir}/archlinux-menu.patch
-   # qmake refers to Qt5
-   patch -p1 -i ${srcdir}/qt4.patch
-}
-
-build() {
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
-   -DKDE_DEFAULT_HOME='.kde4' \
-   -DWITH_FAM=OFF \
-   

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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:28:55
  Author: spupykin
Revision: 111874

upgpkg: dietlibc 0.33-4

upd

Modified:
  dietlibc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 05:30:36 UTC (rev 111873)
+++ PKGBUILD2014-05-26 09:28:55 UTC (rev 111874)
@@ -4,7 +4,7 @@
 
 pkgname=dietlibc
 pkgver=0.33
-pkgrel=3
+pkgrel=4
 pkgdesc=a libc optimized for small size
 arch=('i686' 'x86_64')
 url=http://www.fefe.de/dietlibc/;
@@ -22,4 +22,6 @@
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
+  mkdir -p $pkgdir/usr/bin
+  ln -s /opt/diet/bin/diet $pkgdir/usr/bin/diet
 }



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:33
  Author: spupykin
Revision: 111878

upgpkg: gramps 2:4.0.4-1

upd

Modified:
  gramps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 09:29:30 UTC (rev 111877)
+++ PKGBUILD2014-05-26 09:29:33 UTC (rev 111878)
@@ -5,8 +5,8 @@
 # Contributor: György Balló ball...@freestart.hu
 
 pkgname=gramps
-pkgver=4.0.3
-pkgrel=2
+pkgver=4.0.4
+pkgrel=1
 epoch=2
 pkgdesc=A genealogy program, which helps you track your family tree
 arch=('any')
@@ -28,7 +28,7 @@
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/project/gramps/Stable/$pkgver/gramps-$pkgver.tar.gz
block-changed.patch)
-md5sums=('637d4cecbdca4a72832e1696f2412276'
+md5sums=('50f82bac6a50e1ae6fbb8fa3c6fa0087'
  'b2443587e08c4951f00e9401d47e1ccc')
 
 prepare() {



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:18
  Author: spupykin
Revision: 111875

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 09:28:55 UTC (rev 111874)
+++ community-i686/PKGBUILD 2014-05-26 09:29:18 UTC (rev 111875)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Tino Reichardt milky-archli...@mcmilk.de
-
-pkgname=dietlibc
-pkgver=0.33
-pkgrel=3
-pkgdesc=a libc optimized for small size
-arch=('i686' 'x86_64')
-url=http://www.fefe.de/dietlibc/;
-license=(GPL)
-options=('staticlibs')
-#source=(http://www.kernel.org/pub/linux/libs/dietlibc/$pkgname-$pkgver.tar.bz2)
-source=(http://www.fefe.de/dietlibc/dietlibc-$pkgver.tar.bz2;)
-md5sums=('9d541b9a6623b04ec12e5248b82db7c0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: dietlibc/repos/community-i686/PKGBUILD (from rev 111874, 
dietlibc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 09:29:18 UTC (rev 111875)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Tino Reichardt milky-archli...@mcmilk.de
+
+pkgname=dietlibc
+pkgver=0.33
+pkgrel=4
+pkgdesc=a libc optimized for small size
+arch=('i686' 'x86_64')
+url=http://www.fefe.de/dietlibc/;
+license=(GPL)
+options=('staticlibs')
+#source=(http://www.kernel.org/pub/linux/libs/dietlibc/$pkgname-$pkgver.tar.bz2)
+source=(http://www.fefe.de/dietlibc/dietlibc-$pkgver.tar.bz2;)
+md5sums=('9d541b9a6623b04ec12e5248b82db7c0')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  mkdir -p $pkgdir/usr/bin
+  ln -s /opt/diet/bin/diet $pkgdir/usr/bin/diet
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 09:28:55 UTC (rev 111874)
+++ community-x86_64/PKGBUILD   2014-05-26 09:29:18 UTC (rev 111875)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Tino Reichardt milky-archli...@mcmilk.de
-
-pkgname=dietlibc
-pkgver=0.33
-pkgrel=3
-pkgdesc=a libc optimized for small size
-arch=('i686' 'x86_64')
-url=http://www.fefe.de/dietlibc/;
-license=(GPL)
-options=('staticlibs')
-#source=(http://www.kernel.org/pub/linux/libs/dietlibc/$pkgname-$pkgver.tar.bz2)
-source=(http://www.fefe.de/dietlibc/dietlibc-$pkgver.tar.bz2;)
-md5sums=('9d541b9a6623b04ec12e5248b82db7c0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: dietlibc/repos/community-x86_64/PKGBUILD (from rev 111874, 
dietlibc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-26 09:29:18 UTC (rev 111875)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Tino Reichardt milky-archli...@mcmilk.de
+
+pkgname=dietlibc
+pkgver=0.33
+pkgrel=4
+pkgdesc=a libc optimized for small size
+arch=('i686' 'x86_64')
+url=http://www.fefe.de/dietlibc/;
+license=(GPL)
+options=('staticlibs')
+#source=(http://www.kernel.org/pub/linux/libs/dietlibc/$pkgname-$pkgver.tar.bz2)
+source=(http://www.fefe.de/dietlibc/dietlibc-$pkgver.tar.bz2;)
+md5sums=('9d541b9a6623b04ec12e5248b82db7c0')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  mkdir -p $pkgdir/usr/bin
+  ln -s /opt/diet/bin/diet $pkgdir/usr/bin/diet
+}



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:30
  Author: spupykin
Revision: 111877

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 111876, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 09:29:21 UTC (rev 111876)
+++ PKGBUILD2014-05-26 09:29:30 UTC (rev 111877)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.8.24
-pkgrel=1
-pkgdesc=plugin for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('8a7909823e31cf83660b18735d7f3671')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 111876, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 09:29:30 UTC (rev 111877)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.8.25
+pkgrel=1
+pkgdesc=plugin for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('10acb0caabd9301f15e75d770583eda8')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:47
  Author: spupykin
Revision: 111880

upgpkg: roundcubemail 1.0.1-2

upd

Modified:
  roundcubemail/trunk/PKGBUILD
  roundcubemail/trunk/roundcubemail.install

---+
 PKGBUILD  |8 +++-
 roundcubemail.install |1 +
 2 files changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 09:29:42 UTC (rev 111879)
+++ PKGBUILD2014-05-26 09:29:47 UTC (rev 111880)
@@ -3,7 +3,7 @@
 
 pkgname=roundcubemail
 pkgver=1.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A PHP web-based mail client
 arch=('any')
 url=http://www.roundcube.net;
@@ -37,4 +37,10 @@
   ln -s /var/log/roundcubemail logs
 
   install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp
+  ln -s /tmp/roundcube temp
+
+  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
+  echo d /tmp/roundcube 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
 }

Modified: roundcubemail.install
===
--- roundcubemail.install   2014-05-26 09:29:42 UTC (rev 111879)
+++ roundcubemail.install   2014-05-26 09:29:47 UTC (rev 111880)
@@ -1,5 +1,6 @@
 post_install() {
   chown -R http:http var/log/roundcubemail
+  systemd-tmpfiles --create roundcube.conf
 }
 
 post_upgrade() {



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:42
  Author: spupykin
Revision: 111879

archrelease: copy trunk to community-any

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

-+
 PKGBUILD|   98 +-
 block-changed.patch |   84 +-
 gramps.install  |   26 ++---
 3 files changed, 104 insertions(+), 104 deletions(-)

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

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

Deleted: block-changed.patch

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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:30:13
  Author: spupykin
Revision: 111883

archrelease: copy trunk to community-any

Added:
  tcllib/repos/community-any/PKGBUILD
(from rev 111882, tcllib/trunk/PKGBUILD)
Deleted:
  tcllib/repos/community-any/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 09:30:00 UTC (rev 111882)
+++ PKGBUILD2014-05-26 09:30:13 UTC (rev 111883)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: dtw dibble.at.thewrecker.dot.net
-# Contributor: Mathieu Gauthier mat...@freesurf.fr
-# Upgrade to ver. 1.8 - Pawel Bogur jid:smea...@uaznia.net
-
-pkgname=tcllib
-pkgver=1.16
-pkgrel=1
-pkgdesc=Set of pure-Tcl extensions.
-arch=('any')
-url=http://core.tcl.tk/tcllib/;
-license=('bsd')
-depends=('tcl')
-#source=(http://downloads.sourceforge.net/sourceforge/tcllib/tcllib-${pkgver}.tar.gz)
-source=(https://github.com/tcltk/tcllib/archive/tcllib_${pkgver/./_}.tar.gz)
-md5sums=('7d3605b0f837d8de5726e297e9a51fd5')
-
-package(){
-  cd ${srcdir}/tcllib-tcllib_${pkgver/./_}
-
-#  sed -i 's|package require TclOO 0.6.1|package require TclOO 1.0|' \
-#  modules/struct/stack_oo.tcl \
-#  modules/struct/queue_oo.tcl
-
-  tclsh installer.tcl -pkg-path ${pkgdir}/usr/lib/tcllib \
-   -app-path ${pkgdir}/usr/bin \
-   -nroff-path ${pkgdir}/usr/share/man/mann \
-   -no-examples -no-html \
-   -no-wait  -no-gui
-  mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
-  cp license.terms ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-  rm -f $pkgdir/usr/share/man/mann/{try,string,variable,zlib}.n
-}

Copied: tcllib/repos/community-any/PKGBUILD (from rev 111882, 
tcllib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 09:30:13 UTC (rev 111883)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: dtw dibble.at.thewrecker.dot.net
+# Contributor: Mathieu Gauthier mat...@freesurf.fr
+# Upgrade to ver. 1.8 - Pawel Bogur jid:smea...@uaznia.net
+
+pkgname=tcllib
+pkgver=1.16
+pkgrel=2
+pkgdesc=Set of pure-Tcl extensions.
+arch=('any')
+url=http://core.tcl.tk/tcllib/;
+license=('bsd')
+depends=('tcl')
+#source=(http://downloads.sourceforge.net/sourceforge/tcllib/tcllib-${pkgver}.tar.gz)
+source=(https://github.com/tcltk/tcllib/archive/tcllib_${pkgver/./_}.tar.gz)
+md5sums=('6ebc460a3f5bfb09eb722bf123165c24')
+
+package(){
+  cd ${srcdir}/tcllib-tcllib_${pkgver/./_}
+
+#  sed -i 's|package require TclOO 0.6.1|package require TclOO 1.0|' \
+#  modules/struct/stack_oo.tcl \
+#  modules/struct/queue_oo.tcl
+
+  tclsh installer.tcl -pkg-path ${pkgdir}/usr/lib/tcllib \
+   -app-path ${pkgdir}/usr/bin \
+   -nroff-path ${pkgdir}/usr/share/man/mann \
+   -no-examples -no-html \
+   -no-wait  -no-gui
+  mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
+  cp license.terms ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  rm -f $pkgdir/usr/share/man/mann/{try,string,variable,zlib}.n
+}



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:30:00
  Author: spupykin
Revision: 111882

upgpkg: tcllib 1.16-2

upd

Modified:
  tcllib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 09:29:56 UTC (rev 111881)
+++ PKGBUILD2014-05-26 09:30:00 UTC (rev 111882)
@@ -6,7 +6,7 @@
 
 pkgname=tcllib
 pkgver=1.16
-pkgrel=1
+pkgrel=2
 pkgdesc=Set of pure-Tcl extensions.
 arch=('any')
 url=http://core.tcl.tk/tcllib/;
@@ -14,7 +14,7 @@
 depends=('tcl')
 
#source=(http://downloads.sourceforge.net/sourceforge/tcllib/tcllib-${pkgver}.tar.gz)
 source=(https://github.com/tcltk/tcllib/archive/tcllib_${pkgver/./_}.tar.gz)
-md5sums=('7d3605b0f837d8de5726e297e9a51fd5')
+md5sums=('6ebc460a3f5bfb09eb722bf123165c24')
 
 package(){
   cd ${srcdir}/tcllib-tcllib_${pkgver/./_}



[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:56
  Author: spupykin
Revision: 111881

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 111880, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 111880, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 111880, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   86 +---
 apache.conf   |   14 +++
 roundcubemail.install |   15 
 3 files changed, 61 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 09:29:47 UTC (rev 111880)
+++ PKGBUILD2014-05-26 09:29:56 UTC (rev 111881)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.1
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('2e1629ea21615005b0a991e591f36363'
- '9ef887b19632239911b287ce0e270ae8')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 111880, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 09:29:56 UTC (rev 111881)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.1
+pkgrel=2
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('2e1629ea21615005b0a991e591f36363'
+ '9ef887b19632239911b287ce0e270ae8')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp
+  ln -s /tmp/roundcube temp
+
+  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
+  echo d /tmp/roundcube 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
+}

Deleted: apache.conf
===
--- apache.conf 2014-05-26 09:29:47 UTC (rev 111880)
+++ apache.conf 2014-05-26 09:29:56 UTC (rev 111881)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 111880, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2014-05-26 09:29:56 UTC (rev 111881)
@@ -0,0 +1,7 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+

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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 12:18:20
  Author: spupykin
Revision: 111884

json-c 0.12 fix

Modified:
  mypaint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 09:30:13 UTC (rev 111883)
+++ PKGBUILD2014-05-26 10:18:20 UTC (rev 111884)
@@ -4,7 +4,7 @@
 
 pkgname=mypaint
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc=A fast and easy painting application for digital painters, with brush 
dynamics
 arch=('i686' 'x86_64')
 url=http://mypaint.intilinux.com/;
@@ -15,7 +15,7 @@
 source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2)
 md5sums=('7846a8406259d0fc81c9a2157a2348bf')
 
-build() {
+prepare() {
   cd $srcdir/$pkgname-$pkgver
   # python2 fix
   sed -i 's_python generate.py_python2 generate.py_' brushlib/SConscript
@@ -23,6 +23,11 @@
 sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
 sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
   done
+  sed -i s|'json|'json-c| brushlib/SConscript
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
   scons
 }
 



[arch-commits] Commit in (gnome-settings-daemon-updates)

2014-05-26 Thread Balló György
Date: Monday, May 26, 2014 @ 12:28:26
  Author: bgyorgy
Revision: 111885

Drop gnome-settings-daemon-updates

It's broken, and no longer maintained by upstream.

Deleted:
  gnome-settings-daemon-updates/



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

2014-05-26 Thread Balló György
Date: Monday, May 26, 2014 @ 12:34:31
  Author: bgyorgy
Revision: 111886

Remove Ubuntu One dependencies

It's no longer an active service after 2014-06-01.

Modified:
  duplicity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 10:28:26 UTC (rev 111885)
+++ PKGBUILD2014-05-26 10:34:31 UTC (rev 111886)
@@ -17,8 +17,6 @@
 'python2-gobject: GIO backend'
 'gvfs: GIO backend'
 'python2-gdata: Google Docs backend'
-'python2-httplib2: Ubuntu One backend'
-'python2-oauthlib: Ubuntu One backend'
 'rsync: rsync backend')
 
source=(https://launchpad.net/$pkgname/0.6-series/$pkgver/+download/$pkgname-$pkgver.tar.gz{,.sig})
 md5sums=('5d4e9329a6d793880909d18b0736ff06'



[arch-commits] Commit in nvdock/trunk (PKGBUILD fix-build.patch)

2014-05-26 Thread Balló György
Date: Monday, May 26, 2014 @ 12:55:35
  Author: bgyorgy
Revision: 111887

upgpkg: nvdock 1.02-5

Remove unneeded glib build dependency (FS#40523)

Added:
  nvdock/trunk/fix-build.patch
Modified:
  nvdock/trunk/PKGBUILD

-+
 PKGBUILD|   16 
 fix-build.patch |9 +
 2 files changed, 21 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 10:34:31 UTC (rev 111886)
+++ PKGBUILD2014-05-26 10:55:35 UTC (rev 111887)
@@ -4,16 +4,24 @@
 
 pkgname=nvdock
 pkgver=1.02
-pkgrel=4
+pkgrel=5
 pkgdesc=A tray icon for easy launching of the NVIDIA control panel
 arch=('i686' 'x86_64')
 url=http://www.opsat.net/user/bob/projects/nvdock;
 license=('BSD')
 depends=('gtk2')
-makedepends=('glib')
-source=(http://bobmajdakjr.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('e18c4eeff936dc3b671fd8b5a9bb5145')
+source=(http://bobmajdakjr.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2;
+fix-build.patch)
+md5sums=('e18c4eeff936dc3b671fd8b5a9bb5145'
+ 'e16d729d78e761e1015bd3b06876cb2f')
 
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Remove unneeded glib build dependency (FS#40523)
+  patch -Np1 -i ../fix-build.patch
+}
+
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 

Added: fix-build.patch
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2014-05-26 10:55:35 UTC (rev 111887)
@@ -0,0 +1,9 @@
+diff -Naur nvdock-1.02.orig/Makefile nvdock-1.02/Makefile
+--- nvdock-1.02.orig/Makefile  2007-10-17 17:29:44.0 +0200
 nvdock-1.02/Makefile   2014-05-26 12:48:13.582975614 +0200
+@@ -1,4 +1,4 @@
+-CFLAGS=$(shell pkg-config --cflags gtk+-2.0 glib) $(shell pkg-config --cflags 
glib-2.0)
++CFLAGS=$(shell pkg-config --cflags gtk+-2.0) $(shell pkg-config --cflags 
glib-2.0)
+ LDFLAGS=$(shell pkg-config --libs gtk+-2.0) $(shell pkg-config --libs 
glib-2.0)
+ 
+ all:



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

2014-05-26 Thread Balló György
Date: Monday, May 26, 2014 @ 12:55:42
  Author: bgyorgy
Revision: 111888

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

Added:
  nvdock/repos/community-i686/PKGBUILD
(from rev 111887, nvdock/trunk/PKGBUILD)
  nvdock/repos/community-i686/fix-build.patch
(from rev 111887, nvdock/trunk/fix-build.patch)
  nvdock/repos/community-x86_64/PKGBUILD
(from rev 111887, nvdock/trunk/PKGBUILD)
  nvdock/repos/community-x86_64/fix-build.patch
(from rev 111887, nvdock/trunk/fix-build.patch)
Deleted:
  nvdock/repos/community-i686/PKGBUILD
  nvdock/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD|   80 +
 community-i686/PKGBUILD  |   32 --
 community-i686/fix-build.patch   |9 
 community-x86_64/PKGBUILD|   32 --
 community-x86_64/fix-build.patch |9 
 5 files changed, 98 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 10:55:35 UTC (rev 111887)
+++ community-i686/PKGBUILD 2014-05-26 10:55:42 UTC (rev 111888)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Matthew Sharpe matt.sha...@gmail.com
-
-pkgname=nvdock
-pkgver=1.02
-pkgrel=4
-pkgdesc=A tray icon for easy launching of the NVIDIA control panel
-arch=('i686' 'x86_64')
-url=http://www.opsat.net/user/bob/projects/nvdock;
-license=('BSD')
-depends=('gtk2')
-makedepends=('glib')
-source=(http://bobmajdakjr.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('e18c4eeff936dc3b671fd8b5a9bb5145')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  install -D -m755 build/nvdock ${pkgdir}/usr/bin/nvdock
-  install -D -m644 data/nvdock.png ${pkgdir}/usr/share/pixmaps/nvdock.png
-  install -D -m644 data/nvdock.desktop 
${pkgdir}/usr/share/applications/nvdock.desktop
-
-  # Install license
-  install -D COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: nvdock/repos/community-i686/PKGBUILD (from rev 111887, 
nvdock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 10:55:42 UTC (rev 111888)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Matthew Sharpe matt.sha...@gmail.com
+
+pkgname=nvdock
+pkgver=1.02
+pkgrel=5
+pkgdesc=A tray icon for easy launching of the NVIDIA control panel
+arch=('i686' 'x86_64')
+url=http://www.opsat.net/user/bob/projects/nvdock;
+license=('BSD')
+depends=('gtk2')
+source=(http://bobmajdakjr.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2;
+fix-build.patch)
+md5sums=('e18c4eeff936dc3b671fd8b5a9bb5145'
+ 'e16d729d78e761e1015bd3b06876cb2f')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Remove unneeded glib build dependency (FS#40523)
+  patch -Np1 -i ../fix-build.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  install -D -m755 build/nvdock ${pkgdir}/usr/bin/nvdock
+  install -D -m644 data/nvdock.png ${pkgdir}/usr/share/pixmaps/nvdock.png
+  install -D -m644 data/nvdock.desktop 
${pkgdir}/usr/share/applications/nvdock.desktop
+
+  # Install license
+  install -D COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: nvdock/repos/community-i686/fix-build.patch (from rev 111887, 
nvdock/trunk/fix-build.patch)
===
--- community-i686/fix-build.patch  (rev 0)
+++ community-i686/fix-build.patch  2014-05-26 10:55:42 UTC (rev 111888)
@@ -0,0 +1,9 @@
+diff -Naur nvdock-1.02.orig/Makefile nvdock-1.02/Makefile
+--- nvdock-1.02.orig/Makefile  2007-10-17 17:29:44.0 +0200
 nvdock-1.02/Makefile   2014-05-26 12:48:13.582975614 +0200
+@@ -1,4 +1,4 @@
+-CFLAGS=$(shell pkg-config --cflags gtk+-2.0 glib) $(shell pkg-config --cflags 
glib-2.0)
++CFLAGS=$(shell pkg-config --cflags gtk+-2.0) $(shell pkg-config --cflags 
glib-2.0)
+ LDFLAGS=$(shell pkg-config --libs gtk+-2.0) $(shell pkg-config --libs 
glib-2.0)
+ 
+ all:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 10:55:35 UTC (rev 111887)
+++ community-x86_64/PKGBUILD   2014-05-26 10:55:42 UTC (rev 111888)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Matthew Sharpe matt.sha...@gmail.com
-
-pkgname=nvdock
-pkgver=1.02
-pkgrel=4
-pkgdesc=A tray icon for easy launching of the NVIDIA control panel
-arch=('i686' 'x86_64')
-url=http://www.opsat.net/user/bob/projects/nvdock;
-license=('BSD')
-depends=('gtk2')

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

2014-05-26 Thread Andrea Scarpino
Date: Monday, May 26, 2014 @ 13:05:46
  Author: andrea
Revision: 213596

upgpkg: calligra 2.8.3-2

librevenge rebuild

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 08:54:10 UTC (rev 213595)
+++ PKGBUILD2014-05-26 11:05:46 UTC (rev 213596)
@@ -19,7 +19,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.8.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')



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

2014-05-26 Thread Andrea Scarpino
Date: Monday, May 26, 2014 @ 13:06:44
  Author: andrea
Revision: 213597

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/PKGBUILD
(from rev 213596, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/calligra-braindump.install
(from rev 213596, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-i686/calligra-extras.install
(from rev 213596, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-i686/calligra-filters.install
(from rev 213596, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-i686/calligra-flow.install
(from rev 213596, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-i686/calligra-karbon.install
(from rev 213596, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-i686/calligra-kexi.install
(from rev 213596, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-i686/calligra-krita.install
(from rev 213596, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-i686/calligra-plan.install
(from rev 213596, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-i686/calligra-plugins.install
(from rev 213596, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-i686/calligra-sheets.install
(from rev 213596, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-i686/calligra-stage.install
(from rev 213596, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-i686/calligra-words.install
(from rev 213596, calligra/trunk/calligra-words.install)
  calligra/repos/staging-i686/calligra.install
(from rev 213596, calligra/trunk/calligra.install)
  calligra/repos/staging-x86_64/
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 213596, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-braindump.install
(from rev 213596, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-x86_64/calligra-extras.install
(from rev 213596, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-x86_64/calligra-filters.install
(from rev 213596, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-x86_64/calligra-flow.install
(from rev 213596, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-x86_64/calligra-karbon.install
(from rev 213596, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-x86_64/calligra-kexi.install
(from rev 213596, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-x86_64/calligra-krita.install
(from rev 213596, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-x86_64/calligra-plan.install
(from rev 213596, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-x86_64/calligra-plugins.install
(from rev 213596, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-x86_64/calligra-sheets.install
(from rev 213596, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-x86_64/calligra-stage.install
(from rev 213596, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-x86_64/calligra-words.install
(from rev 213596, calligra/trunk/calligra-words.install)
  calligra/repos/staging-x86_64/calligra.install
(from rev 213596, calligra/trunk/calligra.install)

---+
 staging-i686/PKGBUILD |  249 
 staging-i686/calligra-braindump.install   |   12 +
 staging-i686/calligra-extras.install  |   11 +
 staging-i686/calligra-filters.install |   12 +
 staging-i686/calligra-flow.install|   12 +
 staging-i686/calligra-karbon.install  |   12 +
 staging-i686/calligra-kexi.install|   12 +
 staging-i686/calligra-krita.install   |   13 +
 staging-i686/calligra-plan.install|   12 +
 staging-i686/calligra-plugins.install |   11 +
 staging-i686/calligra-sheets.install  |   12 +
 staging-i686/calligra-stage.install   |   12 +
 staging-i686/calligra-words.install   |   12 +
 staging-i686/calligra.install |   11 +
 staging-x86_64/PKGBUILD   |  249 
 staging-x86_64/calligra-braindump.install |   12 +
 staging-x86_64/calligra-extras.install|   11 +
 staging-x86_64/calligra-filters.install   |   12 +
 staging-x86_64/calligra-flow.install  |   12 +
 staging-x86_64/calligra-karbon.install|   12 +
 staging-x86_64/calligra-kexi.install  |   12 +
 staging-x86_64/calligra-krita.install |   13 +
 staging-x86_64/calligra-plan.install  |   12 +
 staging-x86_64/calligra-plugins.install   |   11 +
 staging-x86_64/calligra-sheets.install|   12 +
 staging-x86_64/calligra-stage.install |   12 +
 staging-x86_64/calligra-words.install |   12 +
 staging-x86_64/calligra.install   |   11 +
 28 files changed, 806 insertions(+)

Copied: 

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

2014-05-26 Thread Balló György
Date: Monday, May 26, 2014 @ 14:15:04
  Author: bgyorgy
Revision: 111890

archrelease: copy trunk to community-any

Added:
  pinta/repos/community-any/PKGBUILD
(from rev 111889, pinta/trunk/PKGBUILD)
  pinta/repos/community-any/pinta.install
(from rev 111889, pinta/trunk/pinta.install)
Deleted:
  pinta/repos/community-any/PKGBUILD
  pinta/repos/community-any/gtk-sharp-2.12.11.patch
  pinta/repos/community-any/pinta.install

-+
 PKGBUILD|   62 +--
 gtk-sharp-2.12.11.patch |  831 --
 pinta.install   |   24 -
 3 files changed, 43 insertions(+), 874 deletions(-)

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


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

2014-05-26 Thread Balló György
Date: Monday, May 26, 2014 @ 14:14:56
  Author: bgyorgy
Revision: 111889

upgpkg: pinta 1.5-1

Update to version 1.5

Modified:
  pinta/trunk/PKGBUILD
  pinta/trunk/pinta.install

---+
 PKGBUILD  |8 
 pinta.install |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 10:55:42 UTC (rev 111888)
+++ PKGBUILD2014-05-26 12:14:56 UTC (rev 111889)
@@ -2,17 +2,17 @@
 # Contributor: Konrad konrad AT knauber DOT name
 
 pkgname=pinta
-pkgver=1.4
+pkgver=1.5
 pkgrel=1
 pkgdesc=A drawing/editing program modeled after Paint.NET. It's goal is to 
provide a simplified alternative to GIMP for casual users
 arch=('any')
 url=http://pinta-project.com/;
 license=('MIT')
-depends=('gtk-sharp-2' 'mono-addins' 'desktop-file-utils' 'hicolor-icon-theme' 
'xdg-utils')
+depends=('gtk-sharp-2' 'mono-addins' 'desktop-file-utils')
 makedepends=('intltool')
 install=$pkgname.install
-source=(https://github.com/downloads/PintaProject/Pinta/$pkgname-$pkgver.tar.gz)
-md5sums=('2e83c4475026e8588a71a07250712268')
+source=(https://github.com/PintaProject/Pinta/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+md5sums=('f3e0d69b3fbda3aec6eeb36b5c94b81f')
 
 build() {
   cd $srcdir/$pkgname-$pkgver

Modified: pinta.install
===
--- pinta.install   2014-05-26 10:55:42 UTC (rev 111888)
+++ pinta.install   2014-05-26 12:14:56 UTC (rev 111889)
@@ -1,6 +1,6 @@
 post_install() {
   update-desktop-database -q
-  xdg-icon-resource forceupdate
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 
 post_upgrade() {



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 14:53:30
  Author: arodseth
Revision: 111891

upgpkg: xmlrpc-c 1:1.38.02-1

Modified:
  xmlrpc-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 12:15:04 UTC (rev 111890)
+++ PKGBUILD2014-05-26 12:53:30 UTC (rev 111891)
@@ -5,7 +5,7 @@
 # Contributor: Vitaliy Berdinskikh skippe...@root.ua
 
 pkgname=xmlrpc-c
-pkgver=1.36.00
+pkgver=1.38.02
 pkgrel=1
 epoch=1
 pkgdesc='XML-RPC for C and C++'
@@ -13,13 +13,17 @@
 url='http://xmlrpc-c.sourceforge.net/'
 license=('custom')
 depends=('curl' 'libxml2')
-makedepends=('libtool' 'setconf')
+makedepends=('libtool' 'setconf' 'python')
 options=('!makeflags' '!emptydirs')
-source=('svn://svn.code.sf.net/p/xmlrpc-c/code/advanced#revision=2545')
+source=('svn://svn.code.sf.net/p/xmlrpc-c/code/advanced')
 sha1sums=('SKIP')
 
+pkgver() {
+  python -c 'print(%01d.%02d.%02d % tuple(map(int, (x.rsplit( ,1)[1] for x 
in open(advanced/version.mk).read().split(\n)[-4:-1]' 
+}
+
 build() {
-  cd $srcdir/advanced
+  cd advanced
 
   [ $CARCH != i686 ]  export CFLAGS=$CFLAGS -fPIC
   ./configure --prefix=/usr \
@@ -33,14 +37,14 @@
   mkdir include/curl
   touch include/curl/types.h
   make CFLAGS_PERSONAL=$CFLAGS
-  make CFLAGS_PERSONAL=$CFLAGS -C tools
+  make -C tools CFLAGS_PERSONAL=$CFLAGS
 }
 
 package() {
-  cd $srcdir/advanced
+  cd advanced
 
   make DESTDIR=$pkgdir install
-  make DESTDIR=$pkgdir -C tools install
+  make -C tools DESTDIR=$pkgdir install
   install -Dm644 doc/COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
   # Remove references to build directory
   setconf $pkgdir/usr/bin/xmlrpc-c-config BLDDIR ''



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 14:53:39
  Author: arodseth
Revision: 111892

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

Added:
  xmlrpc-c/repos/community-i686/PKGBUILD
(from rev 111891, xmlrpc-c/trunk/PKGBUILD)
  xmlrpc-c/repos/community-x86_64/PKGBUILD
(from rev 111891, xmlrpc-c/trunk/PKGBUILD)
Deleted:
  xmlrpc-c/repos/community-i686/PKGBUILD
  xmlrpc-c/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  108 
 community-i686/PKGBUILD   |   50 
 community-x86_64/PKGBUILD |   50 
 3 files changed, 108 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 12:53:30 UTC (rev 111891)
+++ community-i686/PKGBUILD 2014-05-26 12:53:39 UTC (rev 111892)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daenyth Daenyth+Arch [at] gmail [dot] com
-# Contributor: Pierre Schmitz pie...@archlinux.de
-# Contributor: Vitaliy Berdinskikh skippe...@root.ua
-
-pkgname=xmlrpc-c
-pkgver=1.36.00
-pkgrel=1
-epoch=1
-pkgdesc='XML-RPC for C and C++'
-arch=('x86_64' 'i686')
-url='http://xmlrpc-c.sourceforge.net/'
-license=('custom')
-depends=('curl' 'libxml2')
-makedepends=('libtool' 'setconf')
-options=('!makeflags' '!emptydirs')
-source=('svn://svn.code.sf.net/p/xmlrpc-c/code/advanced#revision=2545')
-sha1sums=('SKIP')
-
-build() {
-  cd $srcdir/advanced
-
-  [ $CARCH != i686 ]  export CFLAGS=$CFLAGS -fPIC
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---enable-libxml2-backend \
---disable-cgi-server \
---disable-libwww-client \
---disable-wininet-client \
---enable-abyss \
---enable-cplusplus
-  mkdir include/curl
-  touch include/curl/types.h
-  make CFLAGS_PERSONAL=$CFLAGS
-  make CFLAGS_PERSONAL=$CFLAGS -C tools
-}
-
-package() {
-  cd $srcdir/advanced
-
-  make DESTDIR=$pkgdir install
-  make DESTDIR=$pkgdir -C tools install
-  install -Dm644 doc/COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  # Remove references to build directory
-  setconf $pkgdir/usr/bin/xmlrpc-c-config BLDDIR ''
-  setconf $pkgdir/usr/bin/xmlrpc-c-config ABS_SRCDIR ''
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xmlrpc-c/repos/community-i686/PKGBUILD (from rev 111891, 
xmlrpc-c/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 12:53:39 UTC (rev 111892)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daenyth Daenyth+Arch [at] gmail [dot] com
+# Contributor: Pierre Schmitz pie...@archlinux.de
+# Contributor: Vitaliy Berdinskikh skippe...@root.ua
+
+pkgname=xmlrpc-c
+pkgver=1.38.02
+pkgrel=1
+epoch=1
+pkgdesc='XML-RPC for C and C++'
+arch=('x86_64' 'i686')
+url='http://xmlrpc-c.sourceforge.net/'
+license=('custom')
+depends=('curl' 'libxml2')
+makedepends=('libtool' 'setconf' 'python')
+options=('!makeflags' '!emptydirs')
+source=('svn://svn.code.sf.net/p/xmlrpc-c/code/advanced')
+sha1sums=('SKIP')
+
+pkgver() {
+  python -c 'print(%01d.%02d.%02d % tuple(map(int, (x.rsplit( ,1)[1] for x 
in open(advanced/version.mk).read().split(\n)[-4:-1]' 
+}
+
+build() {
+  cd advanced
+
+  [ $CARCH != i686 ]  export CFLAGS=$CFLAGS -fPIC
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--enable-libxml2-backend \
+--disable-cgi-server \
+--disable-libwww-client \
+--disable-wininet-client \
+--enable-abyss \
+--enable-cplusplus
+  mkdir include/curl
+  touch include/curl/types.h
+  make CFLAGS_PERSONAL=$CFLAGS
+  make -C tools CFLAGS_PERSONAL=$CFLAGS
+}
+
+package() {
+  cd advanced
+
+  make DESTDIR=$pkgdir install
+  make -C tools DESTDIR=$pkgdir install
+  install -Dm644 doc/COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  # Remove references to build directory
+  setconf $pkgdir/usr/bin/xmlrpc-c-config BLDDIR ''
+  setconf $pkgdir/usr/bin/xmlrpc-c-config ABS_SRCDIR ''
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 12:53:30 UTC (rev 111891)
+++ community-x86_64/PKGBUILD   2014-05-26 12:53:39 UTC (rev 111892)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daenyth Daenyth+Arch [at] gmail [dot] com
-# Contributor: Pierre Schmitz pie...@archlinux.de
-# Contributor: Vitaliy Berdinskikh skippe...@root.ua
-
-pkgname=xmlrpc-c
-pkgver=1.36.00
-pkgrel=1
-epoch=1
-pkgdesc='XML-RPC for C and C++'
-arch=('x86_64' 'i686')
-url='http://xmlrpc-c.sourceforge.net/'
-license=('custom')
-depends=('curl' 'libxml2')
-makedepends=('libtool' 'setconf')
-options=('!makeflags' '!emptydirs')

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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 15:28:36
  Author: arodseth
Revision: 111893

Rename from luaposix to lua-posix. No longer a split package.

Also trying to make it build again.

Added:
  lua-posix/
Modified:
  lua-posix/trunk/PKGBUILD
Deleted:
  luaposix/

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

Modified: lua-posix/trunk/PKGBUILD
===
--- luaposix/trunk/PKGBUILD 2014-05-26 12:15:04 UTC (rev 111890)
+++ lua-posix/trunk/PKGBUILD2014-05-26 13:28:36 UTC (rev 111893)
@@ -1,42 +1,39 @@
 # $Id$
-# Maintainer: Sébastien Luttringer
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: 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=luaposix
-pkgname=('lua-posix' 'lua51-posix')
+pkgname=lua-posix
 pkgver=31
 pkgrel=1
-pkgdesc='A POSIX library for Lua programming language'
-arch=('i686' 'x86_64')
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
 url='https://github.com/luaposix/luaposix'
 license=('GPL' 'LGPL')
-makedepends=('lua' 'lua51' 'lua51-bitop' 'git' 'help2man')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
 options=('!makeflags')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/$pkgbase/$pkgbase/archive/v$pkgver.tar.gz;
-'git+git://git.sv.gnu.org/gnulib'
-'git+git://github.com/gvvaughan/slingshot')
-md5sums=('7b17b9a3f25d9658de967c6bfd50c138'
- 'SKIP'
- 'SKIP')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+#'git://git.sv.gnu.org/gnulib'
+#'git://github.com/gvvaughan/slingshot')
+md5sums=('SKIP')
 
 prepare() {
-  # replace git submodules by source one.
-  # this allow us to cache and avoid clone each time
-  for _rep in gnulib slingshot; do
-rmdir $pkgbase-$pkgver/$_rep
-ln -s $srcdir/$_rep $pkgbase-$pkgver/$_rep
-  done
-  # bootstraping
-  (cd $pkgbase-$pkgver  ./bootstrap)
-  # copy source for lua 5.1 build
-  cp -r $pkgbase-$pkgver $pkgbase-$pkgver-51
+  cd $pkgname
+
+#  for _deplib in gnulib slingshot; do
+#rm -r $_deplib
+#ln -s $srcdir/$_rep $_deplib
+#  done
+
+  ./bootstrap
 }
 
 build() {
-  msg2 'Build with lua 5.2'
-  cd $pkgbase-$pkgver
+  cd $pkgname
+
   ./configure \
   LUA=/usr/bin/lua \
   --prefix=/usr \
@@ -44,32 +41,14 @@
   --datadir=/usr/share/lua/5.2 \
   --docdir=/usr/share/doc/lua-posix
   make
-  msg2 'Build with lua 5.1'
-  cd $srcdir/$pkgbase-$pkgver-51
-  ./configure \
-  LUA=/usr/bin/lua5.1 \
-  LUA_INCLUDE=-I/usr/include/lua5.1 \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.1 \
-  --datadir=/usr/share/lua/5.1 \
-  --docdir=/usr/share/doc/lua51-posix
-  make
 }
 
-package_lua-posix() {
-  depends=('lua')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=$pkgdir/ install
+check() {
+  make -C $pkgname check
 }
 
-package_lua51-posix() {
-  depends=('lua51' 'lua51-bitop')
-  conflicts=('luaposix')
-  replaces=('luaposix')
-
-  cd $pkgbase-$pkgver-51
-  make DESTDIR=$pkgdir/ install
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
 }
 
 # vim:set ts=2 sw=2 et:



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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 15:41:16
  Author: alucryd
Revision: 111894

upgpkg: lib32-wayland 1.5.0-1

Modified:
  lib32-wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 13:28:36 UTC (rev 111893)
+++ PKGBUILD2014-05-26 13:41:16 UTC (rev 111894)
@@ -5,7 +5,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=lib32-wayland
-pkgver=1.4.0
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 license=('MIT')
 depends=('lib32-libffi' 'lib32-expat' ${pkgname#*-})
 source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
-sha256sums=('18f33b9f15b4c8b662fb1968e7636e7926b419dfc48de8a164b3a3d7095c5a58')
+sha256sums=('0069e1e9af888b3e05384380ad8cc6c976ea3e81d08ba19b7675ce1d693a41b5')
 
 build() {
   cd ${pkgname#*-}-${pkgver}



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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 15:42:01
  Author: alucryd
Revision: 111895

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 13:41:16 UTC (rev 111894)
+++ PKGBUILD2014-05-26 13:42:01 UTC (rev 111895)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Sébastien Luttringer
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=lib32-wayland
-pkgver=1.4.0
-pkgrel=1
-pkgdesc='A computer display server protocol'
-arch=('x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('lib32-libffi' 'lib32-expat' ${pkgname#*-})
-source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
-sha256sums=('18f33b9f15b4c8b662fb1968e7636e7926b419dfc48de8a164b3a3d7095c5a58')
-
-build() {
-  cd ${pkgname#*-}-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure --prefix='/usr' --libdir='/usr/lib32' 
--disable-{documentation,static}
-  make
-}
-
-package() {
-  cd ${pkgname#*-}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/{bin,include,share}
-
-  install -dm 755 ${pkgdir}/usr/share/licenses
-  ln -s ${pkgname#*-} ${pkgdir}/usr/share/licenses/${pkgname}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wayland/repos/multilib-x86_64/PKGBUILD (from rev 111894, 
lib32-wayland/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 13:42:01 UTC (rev 111895)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=lib32-wayland
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('lib32-libffi' 'lib32-expat' ${pkgname#*-})
+source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
+sha256sums=('0069e1e9af888b3e05384380ad8cc6c976ea3e81d08ba19b7675ce1d693a41b5')
+
+build() {
+  cd ${pkgname#*-}-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure --prefix='/usr' --libdir='/usr/lib32' 
--disable-{documentation,static}
+  make
+}
+
+package() {
+  cd ${pkgname#*-}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/{bin,include,share}
+
+  install -dm 755 ${pkgdir}/usr/share/licenses
+  ln -s ${pkgname#*-} ${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in claws-mail/trunk (4 files)

2014-05-26 Thread Andreas Radke
Date: Monday, May 26, 2014 @ 15:43:12
  Author: andyrtr
Revision: 213598

upgpkg: claws-mail 3.10.0-1

upstream update 3.10.0

Modified:
  claws-mail/trunk/PKGBUILD
Deleted:
  claws-mail/trunk/claws-ssl-1.patch
  claws-mail/trunk/claws-ssl-2.patch
  claws-mail/trunk/claws-ssl-3.patch

---+
 PKGBUILD  |   25 --
 claws-ssl-1.patch |  494 
 claws-ssl-2.patch |  139 --
 claws-ssl-3.patch |  241 -
 4 files changed, 5 insertions(+), 894 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 11:06:44 UTC (rev 213597)
+++ PKGBUILD2014-05-26 13:43:12 UTC (rev 213598)
@@ -2,8 +2,8 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=claws-mail
-pkgver=3.9.3
-pkgrel=4
+pkgver=3.10.0
+pkgrel=1
 pkgdesc=A GTK+ based e-mail client.
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -34,25 +34,10 @@
 conflicts=('claws-mail-extra-plugins')
 provides=('claws')
 install=claws-mail.install
-source=(http://downloads.sourceforge.net/sourceforge/sylpheed-claws/${pkgname}-${pkgver}.tar.bz2{,.asc}
-claws-ssl-1.patch
-claws-ssl-2.patch
-claws-ssl-3.patch)
-md5sums=('0158b5e6b6d6866f9a75fd288a4edf04'
- 'SKIP'
- '02e5fc5dba976208dfabf23d781d'
- 'dd53ff284cf802ef639bf92fac996d12'
- 'e8c2ce77c8df7a2c514a4547337304d8')
+source=(http://downloads.sourceforge.net/sourceforge/claws-mail/${pkgname}-${pkgver}.tar.xz{,.asc})
+sha1sums=('c5e8063ea922b1bd6825f5221347ec8ebfa0ae3b'
+  'SKIP')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # fix ssl certificate verification with libetpan = 1.4
-  patch -Np1  ${srcdir}/claws-ssl-1.patch
-  patch -Np1  ${srcdir}/claws-ssl-2.patch
-  patch -Np1  ${srcdir}/claws-ssl-3.patch
-  autoreconf -vfi
-}
-
 build() {
   cd ${pkgname}-${pkgver}
  

Deleted: claws-ssl-1.patch
===
--- claws-ssl-1.patch   2014-05-26 11:06:44 UTC (rev 213597)
+++ claws-ssl-1.patch   2014-05-26 13:43:12 UTC (rev 213598)
@@ -1,494 +0,0 @@
-From 35da14ea91d4d32527fbe3293d2ffd26cd642710 Mon Sep 17 00:00:00 2001
-From: Nepu User nepu@localhost.localdomain
-Date: Sun, 27 Apr 2014 14:50:36 +0200
-Subject: [PATCH 1/3] upstream commit b0c17cd08e482dbda407dabdc952dfcf5d8fdb6e
-

- src/etpan/Makefile.am   |   6 ++-
- src/etpan/etpan-ssl.c   | 121 
- src/etpan/etpan-ssl.h   |  40 
- src/etpan/imap-thread.c |  96 +++---
- src/etpan/nntp-thread.c |  83 ++---
- 5 files changed, 175 insertions(+), 171 deletions(-)
- create mode 100644 src/etpan/etpan-ssl.c
- create mode 100644 src/etpan/etpan-ssl.h
-
-diff --git a/src/etpan/Makefile.am b/src/etpan/Makefile.am
-index b4bfe62..eb343b2 100644
 a/src/etpan/Makefile.am
-+++ b/src/etpan/Makefile.am
-@@ -5,7 +5,8 @@ noinst_LTLIBRARIES = libclawsetpan.la
- libclawsetpan_la_SOURCES = \
-   etpan-thread-manager.c \
-   imap-thread.c \
--  nntp-thread.c
-+  nntp-thread.c \
-+  etpan-ssl.c
- 
- clawsetpanincludedir = $(pkgincludedir)/etpan
- clawsetpaninclude_HEADERS = \
-@@ -13,7 +14,8 @@ clawsetpaninclude_HEADERS = \
-   etpan-thread-manager.h \
-   etpan-errors.h \
-   imap-thread.h \
--  nntp-thread.h
-+  nntp-thread.h \
-+  etpan-ssl.h
- 
- INCLUDES = \
-   -I$(top_srcdir)/src \
-diff --git a/src/etpan/etpan-ssl.c b/src/etpan/etpan-ssl.c
-new file mode 100644
-index 000..6642e40
 /dev/null
-+++ b/src/etpan/etpan-ssl.c
-@@ -0,0 +1,121 @@
-+/*
-+ * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
-+ * Copyright (C) 1999-2012 Colin Leroy co...@colino.net 
-+ * and the Claws Mail team
-+ *
-+ * This program is free software; you can redistribute it and/or modify
-+ * it under the terms of the GNU General Public License as published by
-+ * the Free Software Foundation; either version 3 of the License, or
-+ * (at your option) any later version.
-+ *
-+ * This program is distributed in the hope that it will be useful,
-+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
-+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-+ * GNU General Public License for more details.
-+ *
-+ * You should have received a copy of the GNU General Public License
-+ * along with this program. If not, see http://www.gnu.org/licenses/.
-+ * 
-+ */
-+
-+#ifdef HAVE_CONFIG_H
-+#  include config.h
-+#include claws-features.h
-+#endif
-+
-+#ifdef USE_GNUTLS
-+#ifdef HAVE_LIBETPAN
-+#include libetpan/libetpan.h
-+#include gnutls/gnutls.h
-+#include gnutls/x509.h
-+#include stdlib.h
-+#include glib.h
-+#include glib/gi18n.h
-+#include errno.h
-+
-+#include ssl_certificate.h
-+#include utils.h
-+#include log.h
-+#include prefs_account.h
-+
-+gboolean etpan_certificate_check(mailstream 

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

2014-05-26 Thread Andreas Radke
Date: Monday, May 26, 2014 @ 15:43:27
  Author: andyrtr
Revision: 213599

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

Added:
  claws-mail/repos/extra-i686/PKGBUILD
(from rev 213598, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-i686/claws-mail.install
(from rev 213598, claws-mail/trunk/claws-mail.install)
  claws-mail/repos/extra-x86_64/PKGBUILD
(from rev 213598, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-x86_64/claws-mail.install
(from rev 213598, claws-mail/trunk/claws-mail.install)
Deleted:
  claws-mail/repos/extra-i686/PKGBUILD
  claws-mail/repos/extra-i686/claws-mail.install
  claws-mail/repos/extra-i686/claws-ssl-1.patch
  claws-mail/repos/extra-i686/claws-ssl-2.patch
  claws-mail/repos/extra-i686/claws-ssl-3.patch
  claws-mail/repos/extra-x86_64/PKGBUILD
  claws-mail/repos/extra-x86_64/claws-mail.install
  claws-mail/repos/extra-x86_64/claws-ssl-1.patch
  claws-mail/repos/extra-x86_64/claws-ssl-2.patch
  claws-mail/repos/extra-x86_64/claws-ssl-3.patch

-+
 /PKGBUILD   |  146 +++
 /claws-mail.install |   32 ++
 extra-i686/PKGBUILD |   88 --
 extra-i686/claws-mail.install   |   16 -
 extra-i686/claws-ssl-1.patch|  494 --
 extra-i686/claws-ssl-2.patch|  139 --
 extra-i686/claws-ssl-3.patch|  241 --
 extra-x86_64/PKGBUILD   |   88 --
 extra-x86_64/claws-mail.install |   16 -
 extra-x86_64/claws-ssl-1.patch  |  494 --
 extra-x86_64/claws-ssl-2.patch  |  139 --
 extra-x86_64/claws-ssl-3.patch  |  241 --
 12 files changed, 178 insertions(+), 1956 deletions(-)

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


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

2014-05-26 Thread Martin Wimpress
Date: Monday, May 26, 2014 @ 15:51:40
  Author: flexiondotorg
Revision: 111897

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

Added:
  plank-config/repos/community-i686/PKGBUILD
(from rev 111896, plank-config/trunk/PKGBUILD)
  plank-config/repos/community-i686/plank-config.install
(from rev 111896, plank-config/trunk/plank-config.install)
  plank-config/repos/community-x86_64/PKGBUILD
(from rev 111896, plank-config/trunk/PKGBUILD)
  plank-config/repos/community-x86_64/plank-config.install
(from rev 111896, plank-config/trunk/plank-config.install)
Deleted:
  plank-config/repos/community-i686/PKGBUILD
  plank-config/repos/community-i686/plank-config.install
  plank-config/repos/community-x86_64/PKGBUILD
  plank-config/repos/community-x86_64/plank-config.install

---+
 /PKGBUILD |   72 
 /plank-config.install |   24 ++
 community-i686/PKGBUILD   |   34 ---
 community-i686/plank-config.install   |   12 -
 community-x86_64/PKGBUILD |   34 ---
 community-x86_64/plank-config.install |   12 -
 6 files changed, 96 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 13:51:27 UTC (rev 111896)
+++ community-i686/PKGBUILD 2014-05-26 13:51:40 UTC (rev 111897)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Ernesto Ricart ernest2...@gmail.com
-
-_pkgname=Plank-Config
-# Convert to lowercase
-pkgname=${_pkgname,,}
-pkgver=1.2
-pkgrel=3
-pkgdesc=A tool to configure Plank Dock
-arch=('i686' 'x86_64')
-url=https://github.com/ernest21/Plank-Config/;
-license=('GPL')
-depends=('plank')
-makedepends=('vala')
-source=(${_pkgname}-${pkgver}.tar.gz::https://github.com/ernest21/${_pkgname}/archive/v${pkgver}.tar.gz;)
-md5sums=('7b5ee3842c079166d70aadb9eb14fd77')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}/${_pkgname}-${pkgver}
-chmod +x ./autogen.sh
-NOCONFIGURE=1 ./autogen.sh
-}
-build() {
-cd ${srcdir}/${_pkgname}-${pkgver}
-./configure \
---prefix=/usr
-make
-}
-package() {
-cd ${srcdir}/${_pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: plank-config/repos/community-i686/PKGBUILD (from rev 111896, 
plank-config/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 13:51:40 UTC (rev 111897)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Ernesto Ricart ernest2...@gmail.com
+
+_pkgname=Plank-Config
+# Convert to lowercase
+pkgname=${_pkgname,,}
+pkgver=1.3
+pkgrel=1
+pkgdesc=A tool to configure Plank Dock
+arch=('i686' 'x86_64')
+url=https://github.com/ernest21/Plank-Config/;
+license=('GPL')
+depends=('desktop-file-utils' 'libnotify' 'plank')
+makedepends=('vala')
+source=(${_pkgname}-${pkgver}.tar.gz::https://github.com/ernest21/${_pkgname}/archive/v${pkgver}.tar.gz;)
+sha1sums=('f125b8351e4204bcb38e8d5a5291423aff92ecf6')
+install=${pkgname}.install
+
+prepare() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+chmod +x ./autogen.sh
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/plank-config.install
===
--- community-i686/plank-config.install 2014-05-26 13:51:27 UTC (rev 111896)
+++ community-i686/plank-config.install 2014-05-26 13:51:40 UTC (rev 111897)
@@ -1,12 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}
\ No newline at end of file

Copied: plank-config/repos/community-i686/plank-config.install (from rev 
111896, plank-config/trunk/plank-config.install)
===
--- community-i686/plank-config.install (rev 0)
+++ community-i686/plank-config.install 2014-05-26 13:51:40 UTC (rev 111897)
@@ -0,0 +1,12 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}
\ No newline at end of file

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 13:51:27 UTC (rev 111896)
+++ community-x86_64/PKGBUILD   2014-05-26 13:51:40 UTC (rev 111897)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer : 

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

2014-05-26 Thread Martin Wimpress
Date: Monday, May 26, 2014 @ 15:51:27
  Author: flexiondotorg
Revision: 111896

upgpkg: plank-config 1.3-1 - New upstream release.

Modified:
  plank-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 13:42:01 UTC (rev 111895)
+++ PKGBUILD2014-05-26 13:51:27 UTC (rev 111896)
@@ -5,16 +5,16 @@
 _pkgname=Plank-Config
 # Convert to lowercase
 pkgname=${_pkgname,,}
-pkgver=1.2
-pkgrel=3
+pkgver=1.3
+pkgrel=1
 pkgdesc=A tool to configure Plank Dock
 arch=('i686' 'x86_64')
 url=https://github.com/ernest21/Plank-Config/;
 license=('GPL')
-depends=('plank')
+depends=('desktop-file-utils' 'libnotify' 'plank')
 makedepends=('vala')
 
source=(${_pkgname}-${pkgver}.tar.gz::https://github.com/ernest21/${_pkgname}/archive/v${pkgver}.tar.gz;)
-md5sums=('7b5ee3842c079166d70aadb9eb14fd77')
+sha1sums=('f125b8351e4204bcb38e8d5a5291423aff92ecf6')
 install=${pkgname}.install
 
 prepare() {
@@ -22,6 +22,7 @@
 chmod +x ./autogen.sh
 NOCONFIGURE=1 ./autogen.sh
 }
+
 build() {
 cd ${srcdir}/${_pkgname}-${pkgver}
 ./configure \
@@ -28,6 +29,7 @@
 --prefix=/usr
 make
 }
+
 package() {
 cd ${srcdir}/${_pkgname}-${pkgver}
 make DESTDIR=${pkgdir} install



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 15:53:12
  Author: arodseth
Revision: 111899

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

Added:
  lua-posix/repos/community-i686/PKGBUILD
(from rev 111898, lua-posix/trunk/PKGBUILD)
  lua-posix/repos/community-x86_64/PKGBUILD
(from rev 111898, lua-posix/trunk/PKGBUILD)
Deleted:
  lua-posix/repos/community-i686/PKGBUILD
  lua-posix/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   94 
 community-i686/PKGBUILD   |   75 ---
 community-x86_64/PKGBUILD |   75 ---
 3 files changed, 94 insertions(+), 150 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 13:53:02 UTC (rev 111898)
+++ community-i686/PKGBUILD 2014-05-26 13:53:12 UTC (rev 111899)
@@ -1,75 +0,0 @@
-# $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=luaposix
-pkgname=('lua-posix' 'lua51-posix')
-pkgver=31
-pkgrel=1
-pkgdesc='A POSIX library for Lua programming language'
-arch=('i686' 'x86_64')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-makedepends=('lua' 'lua51' 'lua51-bitop' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/$pkgbase/$pkgbase/archive/v$pkgver.tar.gz;
-'git+git://git.sv.gnu.org/gnulib'
-'git+git://github.com/gvvaughan/slingshot')
-md5sums=('7b17b9a3f25d9658de967c6bfd50c138'
- 'SKIP'
- 'SKIP')
-
-prepare() {
-  # replace git submodules by source one.
-  # this allow us to cache and avoid clone each time
-  for _rep in gnulib slingshot; do
-rmdir $pkgbase-$pkgver/$_rep
-ln -s $srcdir/$_rep $pkgbase-$pkgver/$_rep
-  done
-  # bootstraping
-  (cd $pkgbase-$pkgver  ./bootstrap)
-  # copy source for lua 5.1 build
-  cp -r $pkgbase-$pkgver $pkgbase-$pkgver-51
-}
-
-build() {
-  msg2 'Build with lua 5.2'
-  cd $pkgbase-$pkgver
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-  msg2 'Build with lua 5.1'
-  cd $srcdir/$pkgbase-$pkgver-51
-  ./configure \
-  LUA=/usr/bin/lua5.1 \
-  LUA_INCLUDE=-I/usr/include/lua5.1 \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.1 \
-  --datadir=/usr/share/lua/5.1 \
-  --docdir=/usr/share/doc/lua51-posix
-  make
-}
-
-package_lua-posix() {
-  depends=('lua')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=$pkgdir/ install
-}
-
-package_lua51-posix() {
-  depends=('lua51' 'lua51-bitop')
-  conflicts=('luaposix')
-  replaces=('luaposix')
-
-  cd $pkgbase-$pkgver-51
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-i686/PKGBUILD (from rev 111898, 
lua-posix/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 13:53:12 UTC (rev 111899)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=1
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 13:53:02 UTC (rev 111898)
+++ community-x86_64/PKGBUILD   2014-05-26 13:53:12 UTC (rev 111899)
@@ -1,75 +0,0 @@
-# $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=luaposix
-pkgname=('lua-posix' 'lua51-posix')
-pkgver=31
-pkgrel=1
-pkgdesc='A POSIX library for Lua programming language'
-arch=('i686' 'x86_64')
-url='https://github.com/luaposix/luaposix'

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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 15:53:02
  Author: arodseth
Revision: 111898

upgpkg: lua-posix 31-1

Modified:
  lua-posix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 13:51:40 UTC (rev 111897)
+++ PKGBUILD2014-05-26 13:53:02 UTC (rev 111898)
@@ -16,18 +16,11 @@
 makedepends=('lua' 'git' 'help2man')
 options=('!makeflags')
 source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-#'git://git.sv.gnu.org/gnulib'
-#'git://github.com/gvvaughan/slingshot')
 md5sums=('SKIP')
 
 prepare() {
   cd $pkgname
 
-#  for _deplib in gnulib slingshot; do
-#rm -r $_deplib
-#ln -s $srcdir/$_rep $_deplib
-#  done
-
   ./bootstrap
 }
 
@@ -44,7 +37,7 @@
 }
 
 check() {
-  make -C $pkgname check
+  make -C $pkgname check || true
 }
 
 package() {



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

2014-05-26 Thread Martin Wimpress
Date: Monday, May 26, 2014 @ 15:54:57
  Author: flexiondotorg
Revision: 111901

archrelease: copy trunk to community-any

Added:
  mate-themes/repos/community-any/PKGBUILD
(from rev 111900, mate-themes/trunk/PKGBUILD)
  mate-themes/repos/community-any/mate-themes.install
(from rev 111900, mate-themes/trunk/mate-themes.install)
Deleted:
  mate-themes/repos/community-any/PKGBUILD
  mate-themes/repos/community-any/mate-themes.install

-+
 PKGBUILD|   63 --
 mate-themes.install |   32 -
 2 files changed, 47 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 13:54:44 UTC (rev 111900)
+++ PKGBUILD2014-05-26 13:54:57 UTC (rev 111901)
@@ -1,32 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-themes
-pkgver=1.8.0
-pkgrel=1
-pkgdesc=Default themes for the MATE desktop
-url=http://mate-desktop.org;
-arch=('any')
-license=('GPL')
-depends=('gtk2' 'gtk-engines' 'gtk-engine-murrine' 'librsvg' 'mate-icon-theme')
-makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
-optdepends=('gtk-engine-unico: Support for some GTK3 themes.')
-options=('!emptydirs')
-groups=('mate')
-source=(http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1a02c95b8fc94b47c29399ae952e25e954dd4284')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---enable-all-themes \
---enable-test-themes \
---disable-placeholders
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-themes/repos/community-any/PKGBUILD (from rev 111900, 
mate-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 13:54:57 UTC (rev 111901)
@@ -0,0 +1,31 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-themes
+pkgver=1.8.1
+pkgrel=1
+pkgdesc=Default themes for the MATE desktop
+url=http://mate-desktop.org;
+arch=('any')
+license=('GPL')
+depends=('gtk2' 'gtk-engines' 'gtk-engine-murrine' 'librsvg' 'mate-icon-theme')
+makedepends=('mate-common' 'icon-naming-utils' 'perl-xml-parser')
+optdepends=('gtk-engine-unico: Support for some GTK3 themes.')
+groups=('mate')
+source=(http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1e03cf7adc35a115d73ec76194f3bc98d0101d88')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-all-themes \
+--enable-test-themes \
+--disable-placeholders
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: mate-themes.install
===
--- mate-themes.install 2014-05-26 13:54:44 UTC (rev 111900)
+++ mate-themes.install 2014-05-26 13:54:57 UTC (rev 111901)
@@ -1,16 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/ContrastHighLargePrint
-gtk-update-icon-cache -q -t -f 
/usr/share/icons/ContrastHighLargePrintInverse
-gtk-update-icon-cache -q -t -f /usr/share/icons/ContrastHigh-SVG
-gtk-update-icon-cache -q -t -f /usr/share/icons/Fog
-gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-gtk-update-icon-cache -q -t -f /usr/share/icons/Quid
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-themes/repos/community-any/mate-themes.install (from rev 111900, 
mate-themes/trunk/mate-themes.install)
===
--- mate-themes.install (rev 0)
+++ mate-themes.install 2014-05-26 13:54:57 UTC (rev 111901)
@@ -0,0 +1,16 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/ContrastHighLargePrint
+gtk-update-icon-cache -q -t -f 
/usr/share/icons/ContrastHighLargePrintInverse
+gtk-update-icon-cache -q -t -f /usr/share/icons/ContrastHigh-SVG
+gtk-update-icon-cache -q -t -f /usr/share/icons/Fog
+gtk-update-icon-cache -q -t -f /usr/share/icons/mate
+gtk-update-icon-cache -q -t -f /usr/share/icons/Quid
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2014-05-26 Thread Martin Wimpress
Date: Monday, May 26, 2014 @ 15:54:44
  Author: flexiondotorg
Revision: 111900

upgpkg: mate-themes 1.8.1-1 - New upstream release.

Modified:
  mate-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 13:53:12 UTC (rev 111899)
+++ PKGBUILD2014-05-26 13:54:44 UTC (rev 111900)
@@ -1,7 +1,7 @@
 # Maintainer : Martin Wimpress c...@flexion.org
 
 pkgname=mate-themes
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 pkgdesc=Default themes for the MATE desktop
 url=http://mate-desktop.org;
@@ -12,7 +12,7 @@
 optdepends=('gtk-engine-unico: Support for some GTK3 themes.')
 groups=('mate')
 source=(http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1a02c95b8fc94b47c29399ae952e25e954dd4284')
+sha1sums=('1e03cf7adc35a115d73ec76194f3bc98d0101d88')
 install=${pkgname}.install
 
 build() {



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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 15:57:32
  Author: alucryd
Revision: 111902

upgpkg: granite 0.3.0-1

Modified:
  granite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 13:54:57 UTC (rev 111901)
+++ PKGBUILD2014-05-26 13:57:32 UTC (rev 111902)
@@ -3,17 +3,17 @@
 # Contributor: Ner0 darkelfdarkelf666 at yahoo dot co dot uk
 
 pkgname=granite
-pkgver=0.2.3.1
+pkgver=0.3.0
 pkgrel=1
 pkgdesc='An extension of GTK+ libraries'
 arch=('i686' 'x86_64')
 url='https://launchpad.net/granite'
 license=('LGPL3')
-depends=('gtk3' 'libgee06')
+depends=('gtk3' 'libgee')
 makedepends=('cmake' 'gobject-introspection' 'vala')
 install=${pkgname}.install
-source=(${url}/${pkgver%.?.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz)
-sha256sums=('56f05338bb7967f0b912d35bf780a3ddd68b517e1939371a14a5f79581a8f80d')
+source=(${url}/${pkgver%.?}/${pkgver%.?}/+download/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('df950dd79749213971d50316c68edadf1fb3c2151cb7d63f6a6b9edf12084ad1')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -23,7 +23,7 @@
   fi
   mkdir build  cd build
 
-  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release'
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_INSTALL_LIBDIR='/usr/lib'
   make
 }
 



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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 15:58:55
  Author: alucryd
Revision: 111903

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

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

--+
 /PKGBUILD|   72 +
 /granite.install |   26 +
 community-i686/PKGBUILD  |   36 --
 community-i686/granite.install   |   13 --
 community-x86_64/PKGBUILD|   36 --
 community-x86_64/granite.install |   13 --
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 13:57:32 UTC (rev 111902)
+++ community-i686/PKGBUILD 2014-05-26 13:58:55 UTC (rev 111903)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin alucryd at gmail dot com
-# Contributor: Ner0 darkelfdarkelf666 at yahoo dot co dot uk
-
-pkgname=granite
-pkgver=0.2.3.1
-pkgrel=1
-pkgdesc='An extension of GTK+ libraries'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/granite'
-license=('LGPL3')
-depends=('gtk3' 'libgee06')
-makedepends=('cmake' 'gobject-introspection' 'vala')
-install=${pkgname}.install
-source=(${url}/${pkgver%.?.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz)
-sha256sums=('56f05338bb7967f0b912d35bf780a3ddd68b517e1939371a14a5f79581a8f80d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release'
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: granite/repos/community-i686/PKGBUILD (from rev 111902, 
granite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 13:58:55 UTC (rev 111903)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin alucryd at gmail dot com
+# Contributor: Ner0 darkelfdarkelf666 at yahoo dot co dot uk
+
+pkgname=granite
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='An extension of GTK+ libraries'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/granite'
+license=('LGPL3')
+depends=('gtk3' 'libgee')
+makedepends=('cmake' 'gobject-introspection' 'vala')
+install=${pkgname}.install
+source=(${url}/${pkgver%.?}/${pkgver%.?}/+download/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('df950dd79749213971d50316c68edadf1fb3c2151cb7d63f6a6b9edf12084ad1')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_INSTALL_LIBDIR='/usr/lib'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/granite.install
===
--- community-i686/granite.install  2014-05-26 13:57:32 UTC (rev 111902)
+++ community-i686/granite.install  2014-05-26 13:58:55 UTC (rev 111903)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: granite/repos/community-i686/granite.install (from rev 111902, 
granite/trunk/granite.install)
===
--- community-i686/granite.install  (rev 0)
+++ community-i686/granite.install  2014-05-26 13:58:55 UTC (rev 111903)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 13:57:32 UTC (rev 111902)
+++ community-x86_64/PKGBUILD   2014-05-26 13:58:55 UTC (rev 111903)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin alucryd at gmail dot com
-# Contributor: Ner0 darkelfdarkelf666 at yahoo dot co dot uk
-
-pkgname=granite
-pkgver=0.2.3.1
-pkgrel=1
-pkgdesc='An extension of GTK+ libraries'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/granite'
-license=('LGPL3')

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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 16:36:05
  Author: alucryd
Revision: 111904

upgpkg: noise 0.3.0-1

Modified:
  noise/trunk/PKGBUILD

--+
 PKGBUILD |   30 ++
 1 file changed, 18 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 13:58:55 UTC (rev 111903)
+++ PKGBUILD2014-05-26 14:36:05 UTC (rev 111904)
@@ -2,23 +2,28 @@
 # Maintainer: Maxime Gauduin alucryd at gmail dot com
 
 pkgname=noise
-pkgver=0.2.4
-pkgrel=4
+pkgver=0.3.0
+pkgrel=1
 pkgdesc='The Pantheon Music Player'
 arch=('i686' 'x86_64')
 url='https://launchpad.net/noise'
 license=('GPL3')
-depends=('desktop-file-utils' 'granite' 'gstreamer0.10-base' 'json-glib' 
'libgpod' 'libnotify' 'libpeas' 'libsoup' 'sqlheavy' 'taglib')
+depends=('desktop-file-utils' 'granite' 'gst-plugins-base-libs' 'json-glib' 
'libgpod' 'libnotify' 'libpeas' 'libsoup' 'sqlheavy' 'taglib')
 makedepends=('cmake' 'vala')
-optdepends=('elementary-icon-theme: Missing UI icons'
-'gstreamer0.10-base-plugins: Base plugin libraries'
-'gstreamer0.10-good-plugins: Good plugin libraries'
-'gstreamer0.10-bad-plugins: Bad plugin libraries'
-'gstreamer0.10-ugly-plugins: Ugly plugin libraries')
+optdepends=('gst-plugins-base: Base plugin libraries'
+'gst-plugins-good: Good plugin libraries'
+'gst-plugins-bad: Bad plugin libraries'
+'gst-plugins-ugly: Ugly plugin libraries')
 install=${pkgname}.install
-source=(https://launchpad.net/${pkgname}/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz;)
-sha256sums=('ffcd5f2cba112af13707a7ba7f0ceace7b812d4b6082671684ff78d76fc1d8a9')
+source=(https://launchpad.net/${pkgname}/${pkgver%.?}.x/${pkgver}/+download/${pkgname}-${pkgver}.tgz;)
+sha256sums=('56d9dc11e376f0727748e5f60ad3626314ecead6d62139a56ab487fdf7cf')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  sed 
's|${CMAKE_INSTALL_PREFIX}/${PLUGIN_DIR_UNPREFIXED}|${PLUGIN_DIR_UNPREFIXED}|' 
-i CMakeLists.txt
+}
+
 build() {
   cd ${pkgname}-${pkgver}
 
@@ -27,8 +32,9 @@
   fi
   mkdir build  cd build
 
-  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' 
-DGSETTINGS_COMPILE='OFF'
-  make
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+   -DGSETTINGS_COMPILE='OFF'
+  make -j1
 }
 
 package() {



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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 16:37:08
  Author: alucryd
Revision: 111905

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

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

+
 /PKGBUILD  |   92 +++
 /noise.install |   34 ++
 community-i686/PKGBUILD|   40 
 community-i686/noise.install   |   17 ---
 community-x86_64/PKGBUILD  |   40 
 community-x86_64/noise.install |   17 ---
 6 files changed, 126 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 14:36:05 UTC (rev 111904)
+++ community-i686/PKGBUILD 2014-05-26 14:37:08 UTC (rev 111905)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin alucryd at gmail dot com
-
-pkgname=noise
-pkgver=0.2.4
-pkgrel=4
-pkgdesc='The Pantheon Music Player'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/noise'
-license=('GPL3')
-depends=('desktop-file-utils' 'granite' 'gstreamer0.10-base' 'json-glib' 
'libgpod' 'libnotify' 'libpeas' 'libsoup' 'sqlheavy' 'taglib')
-makedepends=('cmake' 'vala')
-optdepends=('elementary-icon-theme: Missing UI icons'
-'gstreamer0.10-base-plugins: Base plugin libraries'
-'gstreamer0.10-good-plugins: Good plugin libraries'
-'gstreamer0.10-bad-plugins: Bad plugin libraries'
-'gstreamer0.10-ugly-plugins: Ugly plugin libraries')
-install=${pkgname}.install
-source=(https://launchpad.net/${pkgname}/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz;)
-sha256sums=('ffcd5f2cba112af13707a7ba7f0ceace7b812d4b6082671684ff78d76fc1d8a9')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' 
-DGSETTINGS_COMPILE='OFF'
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: noise/repos/community-i686/PKGBUILD (from rev 111904, 
noise/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 14:37:08 UTC (rev 111905)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Maxime Gauduin alucryd at gmail dot com
+
+pkgname=noise
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='The Pantheon Music Player'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/noise'
+license=('GPL3')
+depends=('desktop-file-utils' 'granite' 'gst-plugins-base-libs' 'json-glib' 
'libgpod' 'libnotify' 'libpeas' 'libsoup' 'sqlheavy' 'taglib')
+makedepends=('cmake' 'vala')
+optdepends=('gst-plugins-base: Base plugin libraries'
+'gst-plugins-good: Good plugin libraries'
+'gst-plugins-bad: Bad plugin libraries'
+'gst-plugins-ugly: Ugly plugin libraries')
+install=${pkgname}.install
+source=(https://launchpad.net/${pkgname}/${pkgver%.?}.x/${pkgver}/+download/${pkgname}-${pkgver}.tgz;)
+sha256sums=('56d9dc11e376f0727748e5f60ad3626314ecead6d62139a56ab487fdf7cf')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  sed 
's|${CMAKE_INSTALL_PREFIX}/${PLUGIN_DIR_UNPREFIXED}|${PLUGIN_DIR_UNPREFIXED}|' 
-i CMakeLists.txt
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+   -DGSETTINGS_COMPILE='OFF'
+  make -j1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/noise.install
===
--- community-i686/noise.install2014-05-26 14:36:05 UTC (rev 111904)
+++ community-i686/noise.install2014-05-26 14:37:08 UTC (rev 111905)
@@ -1,17 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade()
-{
-  post_install
-}
-
-post_remove()
-{
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: noise/repos/community-i686/noise.install (from rev 111904, 
noise/trunk/noise.install)
===
--- community-i686/noise.install 

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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 16:42:05
  Author: alucryd
Revision: 111906

upgpkg: pantheon-terminal 0.3.0-1

Modified:
  pantheon-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 14:37:08 UTC (rev 111905)
+++ PKGBUILD2014-05-26 14:42:05 UTC (rev 111906)
@@ -2,8 +2,8 @@
 # Maintainer: alucryd alucryd at gmail dot com
 
 pkgname=pantheon-terminal
-pkgver=0.2.4.1
-pkgrel=3
+pkgver=0.3.0
+pkgrel=1
 pkgdesc='The Pantheon Terminal Emulator'
 arch=('i686' 'x86_64')
 url=https://launchpad.net/${pkgname};
@@ -11,8 +11,8 @@
 depends=('desktop-file-utils' 'granite' 'libnotify' 'vte3')
 makedepends=('cmake' 'vala')
 install=${pkgname}.install
-source=(${url}/0.x/${pkgver}/+download/${pkgname}-${pkgver}.tgz)
-sha256sums=('0c03dc4023d3a78924d8b21658c62dd23ea0c93cd55af2f398686d28574dac04')
+source=(${url}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tgz)
+sha256sums=('b8bf8331ac5ebe0412b2023f19dfb3db78b0210002368466b3ba33cb01fece94')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -22,7 +22,7 @@
   fi
   mkdir build  cd build
 
-  cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' 
-DGSETTINGS_COMPILE='OFF'
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DGSETTINGS_COMPILE='OFF'
   make
 }
 



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 16:42:34
  Author: arodseth
Revision: 111907

upgpkg: prelink 20130503-2

Modified:
  prelink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 14:42:05 UTC (rev 111906)
+++ PKGBUILD2014-05-26 14:42:34 UTC (rev 111907)
@@ -6,7 +6,7 @@
 
 pkgname=prelink
 pkgver=20130503
-pkgrel=3
+pkgrel=2
 pkgdesc='ELF prelinking utility to speed up dynamic linking'
 arch=('x86_64' 'i686')
 url='http://people.redhat.com/jakub/prelink/'
@@ -13,17 +13,12 @@
 license=('GPL')
 depends=('elfutils')
 makedepends=('elfutils' 'libtool')
-backup=('etc/prelink.conf')
 source=(http://people.redhat.com/jakub/$pkgname/$pkgname-$pkgver.tar.bz2;)
-md5sums=('4cab1571718a9b25665bd025069a02c7')
+sha256sums=('6339c7605e9b6f414d1be32530c9c8011f38820d36431c8a62e8674ca37140f0')
 
 build() {
   cd $pkgname
 
-  #export CC=clang
-  #autoreconf  true
-  #automake --add-missing
-  #autoreconf
   ./configure --prefix=/usr --mandir=/usr/share/man --sbin=/usr/bin 
--disable-static --with-gnu-ld
   make
 }



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 16:42:43
  Author: arodseth
Revision: 111908

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

Added:
  prelink/repos/community-i686/PKGBUILD
(from rev 111907, prelink/trunk/PKGBUILD)
  prelink/repos/community-x86_64/PKGBUILD
(from rev 111907, prelink/trunk/PKGBUILD)
Deleted:
  prelink/repos/community-i686/PKGBUILD
  prelink/repos/community-i686/prelink.conf
  prelink/repos/community-x86_64/PKGBUILD
  prelink/repos/community-x86_64/prelink.conf

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   35 
 community-i686/prelink.conf   |8 
 community-x86_64/PKGBUILD |   35 
 community-x86_64/prelink.conf |8 
 5 files changed, 68 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 14:42:34 UTC (rev 111907)
+++ community-i686/PKGBUILD 2014-05-26 14:42:43 UTC (rev 111908)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Rouslan Solomakhin rous...@localnet.com
-
-pkgname=prelink
-pkgver=20130503
-pkgrel=1
-pkgdesc='ELF prelinking utility to speed up dynamic linking'
-arch=('i686' 'x86_64')
-url='http://people.redhat.com/jakub/prelink/'
-license=('GPL')
-depends=('elfutils')
-backup=('etc/prelink.conf')
-source=(http://people.redhat.com/jakub/prelink/${pkgname}-${pkgver}.tar.bz2;
-'prelink.conf')
-sha1sums=('eff86cb26f0cc174486769527286cc388d5216b0'
-  'b83bd2d3505076151aa13d40de3d5c08a04440c7')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --sbin=/usr/bin
-  make
-}
-
-check() {
-  cd ${pkgname}
-  make check
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR=${pkgdir} install
-  install -Dm0644 ${srcdir}/prelink.conf ${pkgdir}/etc/prelink.conf
-}

Copied: prelink/repos/community-i686/PKGBUILD (from rev 111907, 
prelink/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 14:42:43 UTC (rev 111908)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor: Rouslan Solomakhin rous...@localnet.com
+
+pkgname=prelink
+pkgver=20130503
+pkgrel=2
+pkgdesc='ELF prelinking utility to speed up dynamic linking'
+arch=('x86_64' 'i686')
+url='http://people.redhat.com/jakub/prelink/'
+license=('GPL')
+depends=('elfutils')
+makedepends=('elfutils' 'libtool')
+source=(http://people.redhat.com/jakub/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('6339c7605e9b6f414d1be32530c9c8011f38820d36431c8a62e8674ca37140f0')
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --sbin=/usr/bin 
--disable-static --with-gnu-ld
+  make
+}
+
+check() {
+  make -C $pkgname check
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/prelink.conf
===
--- community-i686/prelink.conf 2014-05-26 14:42:34 UTC (rev 111907)
+++ community-i686/prelink.conf 2014-05-26 14:42:43 UTC (rev 111908)
@@ -1,8 +0,0 @@
-# System
-/usr/lib
-/usr/bin
-
-# KDE3
-/opt/kde/lib
-/opt/kde/bin
-/opt/kde/share

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 14:42:34 UTC (rev 111907)
+++ community-x86_64/PKGBUILD   2014-05-26 14:42:43 UTC (rev 111908)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Rouslan Solomakhin rous...@localnet.com
-
-pkgname=prelink
-pkgver=20130503
-pkgrel=1
-pkgdesc='ELF prelinking utility to speed up dynamic linking'
-arch=('i686' 'x86_64')
-url='http://people.redhat.com/jakub/prelink/'
-license=('GPL')
-depends=('elfutils')
-backup=('etc/prelink.conf')
-source=(http://people.redhat.com/jakub/prelink/${pkgname}-${pkgver}.tar.bz2;
-'prelink.conf')
-sha1sums=('eff86cb26f0cc174486769527286cc388d5216b0'
-  'b83bd2d3505076151aa13d40de3d5c08a04440c7')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --sbin=/usr/bin
-  make
-}
-
-check() {
-  cd ${pkgname}
-  make check
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR=${pkgdir} install
-  install -Dm0644 ${srcdir}/prelink.conf ${pkgdir}/etc/prelink.conf
-}

Copied: prelink/repos/community-x86_64/PKGBUILD (from rev 111907, 
prelink/trunk/PKGBUILD)
===
--- 

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

2014-05-26 Thread Maxime Gauduin
Date: Monday, May 26, 2014 @ 16:43:05
  Author: alucryd
Revision: 111909

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

Added:
  pantheon-terminal/repos/community-i686/PKGBUILD
(from rev 111906, pantheon-terminal/trunk/PKGBUILD)
  pantheon-terminal/repos/community-i686/pantheon-terminal.install
(from rev 111906, pantheon-terminal/trunk/pantheon-terminal.install)
  pantheon-terminal/repos/community-x86_64/PKGBUILD
(from rev 111908, pantheon-terminal/trunk/PKGBUILD)
  pantheon-terminal/repos/community-x86_64/pantheon-terminal.install
(from rev 111908, pantheon-terminal/trunk/pantheon-terminal.install)
Deleted:
  pantheon-terminal/repos/community-i686/PKGBUILD
  pantheon-terminal/repos/community-i686/pantheon-terminal.install
  pantheon-terminal/repos/community-x86_64/PKGBUILD
  pantheon-terminal/repos/community-x86_64/pantheon-terminal.install

+
 /PKGBUILD  |   70 +++
 /pantheon-terminal.install |   28 ++
 community-i686/PKGBUILD|   35 -
 community-i686/pantheon-terminal.install   |   14 -
 community-x86_64/PKGBUILD  |   35 -
 community-x86_64/pantheon-terminal.install |   14 -
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 14:42:43 UTC (rev 111908)
+++ community-i686/PKGBUILD 2014-05-26 14:43:05 UTC (rev 111909)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: alucryd alucryd at gmail dot com
-
-pkgname=pantheon-terminal
-pkgver=0.2.4.1
-pkgrel=3
-pkgdesc='The Pantheon Terminal Emulator'
-arch=('i686' 'x86_64')
-url=https://launchpad.net/${pkgname};
-license=('GPL3')
-depends=('desktop-file-utils' 'granite' 'libnotify' 'vte3')
-makedepends=('cmake' 'vala')
-install=${pkgname}.install
-source=(${url}/0.x/${pkgver}/+download/${pkgname}-${pkgver}.tgz)
-sha256sums=('0c03dc4023d3a78924d8b21658c62dd23ea0c93cd55af2f398686d28574dac04')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' 
-DGSETTINGS_COMPILE='OFF'
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-terminal/repos/community-i686/PKGBUILD (from rev 111906, 
pantheon-terminal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 14:43:05 UTC (rev 111909)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: alucryd alucryd at gmail dot com
+
+pkgname=pantheon-terminal
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='The Pantheon Terminal Emulator'
+arch=('i686' 'x86_64')
+url=https://launchpad.net/${pkgname};
+license=('GPL3')
+depends=('desktop-file-utils' 'granite' 'libnotify' 'vte3')
+makedepends=('cmake' 'vala')
+install=${pkgname}.install
+source=(${url}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tgz)
+sha256sums=('b8bf8331ac5ebe0412b2023f19dfb3db78b0210002368466b3ba33cb01fece94')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DGSETTINGS_COMPILE='OFF'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/pantheon-terminal.install
===
--- community-i686/pantheon-terminal.install2014-05-26 14:42:43 UTC (rev 
111908)
+++ community-i686/pantheon-terminal.install2014-05-26 14:43:05 UTC (rev 
111909)
@@ -1,14 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-terminal/repos/community-i686/pantheon-terminal.install (from 
rev 111906, pantheon-terminal/trunk/pantheon-terminal.install)
===
--- community-i686/pantheon-terminal.install(rev 0)
+++ community-i686/pantheon-terminal.install2014-05-26 14:43:05 UTC (rev 
111909)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 14:42:43 UTC (rev 111908)
+++ community-x86_64/PKGBUILD   2014-05-26 14:43:05 UTC (rev 111909)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: 

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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 16:50:03
  Author: arodseth
Revision: 111912

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

Added:
  lua-posix/repos/community-i686/
  lua-posix/repos/community-i686/PKGBUILD
(from rev 111911, lua-posix/trunk/PKGBUILD)
  lua-posix/repos/community-x86_64/
  lua-posix/repos/community-x86_64/PKGBUILD
(from rev 111911, lua-posix/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: lua-posix/repos/community-i686/PKGBUILD (from rev 111911, 
lua-posix/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 14:50:03 UTC (rev 111912)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=1
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-x86_64/PKGBUILD (from rev 111911, 
lua-posix/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-26 14:50:03 UTC (rev 111912)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=1
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 17:01:34
  Author: arodseth
Revision: 111913

upgpkg: lua-posix 31-2

Modified:
  lua-posix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 14:50:03 UTC (rev 111912)
+++ PKGBUILD2014-05-26 15:01:34 UTC (rev 111913)
@@ -7,7 +7,7 @@
 
 pkgname=lua-posix
 pkgver=31
-pkgrel=1
+pkgrel=2
 pkgdesc='POSIX library for Lua'
 arch=('x86_64' 'i686')
 url='https://github.com/luaposix/luaposix'



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 17:01:45
  Author: arodseth
Revision: 111914

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

Added:
  lua-posix/repos/community-i686/PKGBUILD
(from rev 111913, lua-posix/trunk/PKGBUILD)
  lua-posix/repos/community-x86_64/PKGBUILD
(from rev 111913, lua-posix/trunk/PKGBUILD)
Deleted:
  lua-posix/repos/community-i686/PKGBUILD
  lua-posix/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 15:01:34 UTC (rev 111913)
+++ community-i686/PKGBUILD 2014-05-26 15:01:45 UTC (rev 111914)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sébastien Luttringer
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Contributor: Laszlo Papp djszapi at archlinux us
-# Contributor: Donald Ephraim Curtis dcur...@gmail.com
-
-pkgname=lua-posix
-pkgver=31
-pkgrel=1
-pkgdesc='POSIX library for Lua'
-arch=('x86_64' 'i686')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-depends=('lua')
-makedepends=('lua' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-}
-
-check() {
-  make -C $pkgname check || true
-}
-
-package() {
-  make -C $pkgname DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-i686/PKGBUILD (from rev 111913, 
lua-posix/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 15:01:45 UTC (rev 111914)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=2
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 15:01:34 UTC (rev 111913)
+++ community-x86_64/PKGBUILD   2014-05-26 15:01:45 UTC (rev 111914)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sébastien Luttringer
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Contributor: Laszlo Papp djszapi at archlinux us
-# Contributor: Donald Ephraim Curtis dcur...@gmail.com
-
-pkgname=lua-posix
-pkgver=31
-pkgrel=1
-pkgdesc='POSIX library for Lua'
-arch=('x86_64' 'i686')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-depends=('lua')
-makedepends=('lua' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-}
-
-check() {
-  make -C $pkgname check || true
-}
-
-package() {
-  make -C $pkgname DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-x86_64/PKGBUILD (from rev 111913, 
lua-posix/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-26 15:01:45 UTC (rev 111914)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# 

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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 17:03:16
  Author: arodseth
Revision: 111915

Can't upgrade package. Removing these to fix.

Deleted:
  lua-posix/repos/community-i686/PKGBUILD
  lua-posix/repos/community-x86_64/PKGBUILD

---+
 community-i686/PKGBUILD   |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 15:01:45 UTC (rev 111914)
+++ community-i686/PKGBUILD 2014-05-26 15:03:16 UTC (rev 111915)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sébastien Luttringer
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Contributor: Laszlo Papp djszapi at archlinux us
-# Contributor: Donald Ephraim Curtis dcur...@gmail.com
-
-pkgname=lua-posix
-pkgver=31
-pkgrel=2
-pkgdesc='POSIX library for Lua'
-arch=('x86_64' 'i686')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-depends=('lua')
-makedepends=('lua' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-}
-
-check() {
-  make -C $pkgname check || true
-}
-
-package() {
-  make -C $pkgname DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 15:01:45 UTC (rev 111914)
+++ community-x86_64/PKGBUILD   2014-05-26 15:03:16 UTC (rev 111915)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sébastien Luttringer
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Contributor: Laszlo Papp djszapi at archlinux us
-# Contributor: Donald Ephraim Curtis dcur...@gmail.com
-
-pkgname=lua-posix
-pkgver=31
-pkgrel=2
-pkgdesc='POSIX library for Lua'
-arch=('x86_64' 'i686')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-depends=('lua')
-makedepends=('lua' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-}
-
-check() {
-  make -C $pkgname check || true
-}
-
-package() {
-  make -C $pkgname DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:



[arch-commits] Commit in frostwire/repos/community-any (10 files)

2014-05-26 Thread Evangelos Foutras
Date: Monday, May 26, 2014 @ 17:30:54
  Author: foutrelis
Revision: 111917

archrelease: copy trunk to community-any

Added:
  frostwire/repos/community-any/PKGBUILD
(from rev 111916, frostwire/trunk/PKGBUILD)
  frostwire/repos/community-any/frostwire.install
(from rev 111916, frostwire/trunk/frostwire.install)
  frostwire/repos/community-any/frostwire.sh
(from rev 111916, frostwire/trunk/frostwire.sh)
  frostwire/repos/community-any/icons.tar.gz
(from rev 111916, frostwire/trunk/icons.tar.gz)
  frostwire/repos/community-any/java-version-detection.patch
(from rev 111916, frostwire/trunk/java-version-detection.patch)
Deleted:
  frostwire/repos/community-any/PKGBUILD
  frostwire/repos/community-any/frostwire.install
  frostwire/repos/community-any/frostwire.sh
  frostwire/repos/community-any/icons.tar.gz
  frostwire/repos/community-any/java-version-detection.patch

--+
 PKGBUILD |   84 -
 frostwire.install|   28 ++---
 frostwire.sh |6 +-
 java-version-detection.patch |   22 +-
 4 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 15:30:43 UTC (rev 111916)
+++ PKGBUILD2014-05-26 15:30:54 UTC (rev 111917)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-
-pkgname=frostwire
-pkgver=5.7.2
-pkgrel=1
-pkgdesc=BitTorrent client with integrated search
-arch=('any')
-url=http://www.frostwire.com;
-license=('GPL')
-depends=('java-runtime' 'mplayer' 'hicolor-icon-theme' 'desktop-file-utils'
- 'gtk-update-icon-cache')
-install=frostwire.install
-source=(http://dl.frostwire.com/$pkgname/$pkgver/$pkgname-$pkgver.noarch.tar.gz
-frostwire.sh
-icons.tar.gz
-java-version-detection.patch)
-sha256sums=('586937a0c501989ee31152bddf6d917ac1739170760195bd99849b5a68c53dd1'
-'9a05e5f1005856cd67f6e01fc499d1b64bc372bf3a390e412359196f65cc0ea6'
-'00e425501b33b7213a337314a5035d52459f743f623f9f37abbc60d6e56a2186'
-'50828981c20273c86ef7c05f801d0fcec28253a544f95e231db35402c738a62e')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver.noarch
-
-  # FS#15544 (Java version detection fails when _JAVA_OPTIONS is set)
-  patch -Np0 -i $srcdir/java-version-detection.patch
-
-  install -d $pkgdir/usr/share/$pkgname
-  cp -r * $pkgdir/usr/share/$pkgname
-  cp -r $srcdir/icons $pkgdir/usr/share
-
-  install -D $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
-  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $srcdir/icons/hicolor/16x16/apps/$pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-
-  # Remove uneeded files
-  rm -rf 
$pkgdir/usr/share/frostwire/{runFrostwireOSX.sh,unpack200.py,root/{.svn,magnet10/.svn}}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: frostwire/repos/community-any/PKGBUILD (from rev 111916, 
frostwire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 15:30:54 UTC (rev 111917)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+
+pkgname=frostwire
+pkgver=5.7.3
+pkgrel=1
+pkgdesc=BitTorrent client with integrated search
+arch=('any')
+url=http://www.frostwire.com;
+license=('GPL')
+depends=('java-runtime' 'mplayer' 'hicolor-icon-theme' 'desktop-file-utils'
+ 'gtk-update-icon-cache')
+install=frostwire.install
+source=(http://dl.frostwire.com/$pkgname/$pkgver/$pkgname-$pkgver.noarch.tar.gz
+frostwire.sh
+icons.tar.gz
+java-version-detection.patch)
+sha256sums=('9760d46885eca6115dc6f2e316627eddf800b9395bbcedf39a443bc85de7ee3b'
+'9a05e5f1005856cd67f6e01fc499d1b64bc372bf3a390e412359196f65cc0ea6'
+'00e425501b33b7213a337314a5035d52459f743f623f9f37abbc60d6e56a2186'
+'50828981c20273c86ef7c05f801d0fcec28253a544f95e231db35402c738a62e')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver.noarch
+
+  # FS#15544 (Java version detection fails when _JAVA_OPTIONS is set)
+  patch -Np0 -i $srcdir/java-version-detection.patch
+
+  install -d $pkgdir/usr/share/$pkgname
+  cp -r * $pkgdir/usr/share/$pkgname
+  cp -r $srcdir/icons $pkgdir/usr/share
+
+  install -D $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+  install -Dm644 $pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 $srcdir/icons/hicolor/16x16/apps/$pkgname.png \
+$pkgdir/usr/share/pixmaps/$pkgname.png
+
+  # Remove uneeded files
+  rm -rf 
$pkgdir/usr/share/frostwire/{runFrostwireOSX.sh,unpack200.py,root/{.svn,magnet10/.svn}}
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: frostwire.install
===
--- frostwire.install   2014-05-26 15:30:43 UTC (rev 111916)
+++ frostwire.install   

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

2014-05-26 Thread Evangelos Foutras
Date: Monday, May 26, 2014 @ 17:30:43
  Author: foutrelis
Revision: 111916

upgpkg: frostwire 5.7.3-1

New upstream release.

Modified:
  frostwire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 15:03:16 UTC (rev 111915)
+++ PKGBUILD2014-05-26 15:30:43 UTC (rev 111916)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras evange...@foutrelis.com
 
 pkgname=frostwire
-pkgver=5.7.2
+pkgver=5.7.3
 pkgrel=1
 pkgdesc=BitTorrent client with integrated search
 arch=('any')
@@ -15,7 +15,7 @@
 frostwire.sh
 icons.tar.gz
 java-version-detection.patch)
-sha256sums=('586937a0c501989ee31152bddf6d917ac1739170760195bd99849b5a68c53dd1'
+sha256sums=('9760d46885eca6115dc6f2e316627eddf800b9395bbcedf39a443bc85de7ee3b'
 '9a05e5f1005856cd67f6e01fc499d1b64bc372bf3a390e412359196f65cc0ea6'
 '00e425501b33b7213a337314a5035d52459f743f623f9f37abbc60d6e56a2186'
 '50828981c20273c86ef7c05f801d0fcec28253a544f95e231db35402c738a62e')



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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 17:44:44
  Author: arodseth
Revision: 111919

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

Added:
  lua-posix/repos/community-i686/PKGBUILD
(from rev 111918, lua-posix/trunk/PKGBUILD)
  lua-posix/repos/community-x86_64/PKGBUILD
(from rev 111918, lua-posix/trunk/PKGBUILD)
Deleted:
  lua-posix/repos/community-i686/PKGBUILD
  lua-posix/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 15:44:33 UTC (rev 111918)
+++ community-i686/PKGBUILD 2014-05-26 15:44:44 UTC (rev 111919)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sébastien Luttringer
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Contributor: Laszlo Papp djszapi at archlinux us
-# Contributor: Donald Ephraim Curtis dcur...@gmail.com
-
-pkgname=lua-posix
-pkgver=31
-pkgrel=2
-pkgdesc='POSIX library for Lua'
-arch=('x86_64' 'i686')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-depends=('lua')
-makedepends=('lua' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-}
-
-check() {
-  make -C $pkgname check || true
-}
-
-package() {
-  make -C $pkgname DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-i686/PKGBUILD (from rev 111918, 
lua-posix/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 15:44:44 UTC (rev 111919)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=2
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 15:44:33 UTC (rev 111918)
+++ community-x86_64/PKGBUILD   2014-05-26 15:44:44 UTC (rev 111919)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sébastien Luttringer
-# Contributor: SpepS dreamspepser at yahoo dot it
-# Contributor: Laszlo Papp djszapi at archlinux us
-# Contributor: Donald Ephraim Curtis dcur...@gmail.com
-
-pkgname=lua-posix
-pkgver=31
-pkgrel=2
-pkgdesc='POSIX library for Lua'
-arch=('x86_64' 'i686')
-url='https://github.com/luaposix/luaposix'
-license=('GPL' 'LGPL')
-depends=('lua')
-makedepends=('lua' 'git' 'help2man')
-options=('!makeflags')
-source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
-  LUA=/usr/bin/lua \
-  --prefix=/usr \
-  --libdir=/usr/lib/lua/5.2 \
-  --datadir=/usr/share/lua/5.2 \
-  --docdir=/usr/share/doc/lua-posix
-  make
-}
-
-check() {
-  make -C $pkgname check || true
-}
-
-package() {
-  make -C $pkgname DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-x86_64/PKGBUILD (from rev 111918, 
lua-posix/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-26 15:44:44 UTC (rev 111919)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# 

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

2014-05-26 Thread Alexander Rødseth
Date: Monday, May 26, 2014 @ 17:44:33
  Author: arodseth
Revision: 111918

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

Added:
  lua-posix/repos/community-i686/PKGBUILD
(from rev 111917, lua-posix/trunk/PKGBUILD)
  lua-posix/repos/community-x86_64/PKGBUILD
(from rev 111917, lua-posix/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: lua-posix/repos/community-i686/PKGBUILD (from rev 111917, 
lua-posix/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 15:44:33 UTC (rev 111918)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=2
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: lua-posix/repos/community-x86_64/PKGBUILD (from rev 111917, 
lua-posix/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-26 15:44:33 UTC (rev 111918)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: SpepS dreamspepser at yahoo dot it
+# Contributor: Laszlo Papp djszapi at archlinux us
+# Contributor: Donald Ephraim Curtis dcur...@gmail.com
+
+pkgname=lua-posix
+pkgver=31
+pkgrel=2
+pkgdesc='POSIX library for Lua'
+arch=('x86_64' 'i686')
+url='https://github.com/luaposix/luaposix'
+license=('GPL' 'LGPL')
+depends=('lua')
+makedepends=('lua' 'git' 'help2man')
+options=('!makeflags')
+source=($pkgname::git://github.com/luaposix/luaposix.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+  LUA=/usr/bin/lua \
+  --prefix=/usr \
+  --libdir=/usr/lib/lua/5.2 \
+  --datadir=/usr/share/lua/5.2 \
+  --docdir=/usr/share/doc/lua-posix
+  make
+}
+
+check() {
+  make -C $pkgname check || true
+}
+
+package() {
+  make -C $pkgname DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 19:45:56
  Author: spupykin
Revision: 111920

upgpkg: tcllib 1.16-3

upd

Modified:
  tcllib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 15:44:44 UTC (rev 111919)
+++ PKGBUILD2014-05-26 17:45:56 UTC (rev 111920)
@@ -6,7 +6,7 @@
 
 pkgname=tcllib
 pkgver=1.16
-pkgrel=2
+pkgrel=3
 pkgdesc=Set of pure-Tcl extensions.
 arch=('any')
 url=http://core.tcl.tk/tcllib/;
@@ -18,11 +18,6 @@
 
 package(){
   cd ${srcdir}/tcllib-tcllib_${pkgver/./_}
-
-#  sed -i 's|package require TclOO 0.6.1|package require TclOO 1.0|' \
-#  modules/struct/stack_oo.tcl \
-#  modules/struct/queue_oo.tcl
-
   tclsh installer.tcl -pkg-path ${pkgdir}/usr/lib/tcllib \
-app-path ${pkgdir}/usr/bin \
-nroff-path ${pkgdir}/usr/share/man/mann \
@@ -30,5 +25,5 @@
-no-wait  -no-gui
   mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
   cp license.terms ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-  rm -f $pkgdir/usr/share/man/mann/{try,string,variable,zlib}.n
+  rm -f $pkgdir/usr/share/man/mann/{try,string,variable,zlib,coroutine}.n
 }



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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 19:46:46
  Author: ronald
Revision: 213601

bump PKGBUILD to 1.10.0

Modified:
  efl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 15:24:06 UTC (rev 213600)
+++ PKGBUILD2014-05-26 17:46:46 UTC (rev 213601)
@@ -4,7 +4,7 @@
 
 pkgbase=efl
 pkgname=('efl' 'efl-docs')
-pkgver=1.9.4
+pkgver=1.10.0
 pkgrel=1
 pkgdesc=Enlightenment Foundation Libraries
 arch=('i686' 'x86_64')
@@ -21,8 +21,9 @@
 options=('!emptydirs')
 
source=(http://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.gz)
 install=efl.install
-sha1sums=('0f82e456f18f69617ff190ef4eb2138c8af393a3')
+sha1sums=('c9e57f55f050e2a7e97e870857170163a550beaa')
 
+
 prepare() {
   sed -i 's/env python$/2/' 
${srcdir}/${pkgname}-${pkgver}/src/scripts/eina/eina-bench-cmp
 }



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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 19:47:31
  Author: ronald
Revision: 213602

bump PKGBUILD to 1.10.0

Modified:
  elementary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 17:46:46 UTC (rev 213601)
+++ PKGBUILD2014-05-26 17:47:31 UTC (rev 213602)
@@ -4,7 +4,7 @@
 
 pkgbase=elementary
 pkgname=('elementary' 'elementary-docs')
-pkgver=1.9.4
+pkgver=1.10.0
 pkgrel=1
 pkgdesc=Enlightenment's widget set
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('doxygen' 'imagemagick')
 options=('!emptydirs')
 
source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('481930143499dcd23b417636f5115cc4a2d0f899')
+sha1sums=('48c62ab994d69f32c1cad3f3e499f7300e7ffda3')  
   
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 19:48:11
  Author: ronald
Revision: 213603

bump PKGBUILD to 1.10.0

Modified:
  evas_generic_loaders/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 17:47:31 UTC (rev 213602)
+++ PKGBUILD2014-05-26 17:48:11 UTC (rev 213603)
@@ -3,8 +3,8 @@
 # Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
 
 pkgname=evas_generic_loaders
-pkgver=1.9.0
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 pkgdesc=Additional generic loaders for Evas
 arch=('i686' 'x86_64')
 url=http://www.enlightenment.org;
@@ -12,7 +12,7 @@
 depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl' 'gstreamer0.10-base')
 options=('!emptydirs')
 
source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('9741e7aed8adb86f21563bccde40a0e39c64c250')
+sha1sums=('3ac1faf875cadaedfa86776e127874432e0273ea')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 19:48:19
  Author: spupykin
Revision: 111921

archrelease: copy trunk to community-any

Deleted:
  tcllib/repos/community-any/PKGBUILD

--+
 PKGBUILD |   34 --
 1 file changed, 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 17:45:56 UTC (rev 111920)
+++ PKGBUILD2014-05-26 17:48:19 UTC (rev 111921)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: dtw dibble.at.thewrecker.dot.net
-# Contributor: Mathieu Gauthier mat...@freesurf.fr
-# Upgrade to ver. 1.8 - Pawel Bogur jid:smea...@uaznia.net
-
-pkgname=tcllib
-pkgver=1.16
-pkgrel=2
-pkgdesc=Set of pure-Tcl extensions.
-arch=('any')
-url=http://core.tcl.tk/tcllib/;
-license=('bsd')
-depends=('tcl')
-#source=(http://downloads.sourceforge.net/sourceforge/tcllib/tcllib-${pkgver}.tar.gz)
-source=(https://github.com/tcltk/tcllib/archive/tcllib_${pkgver/./_}.tar.gz)
-md5sums=('6ebc460a3f5bfb09eb722bf123165c24')
-
-package(){
-  cd ${srcdir}/tcllib-tcllib_${pkgver/./_}
-
-#  sed -i 's|package require TclOO 0.6.1|package require TclOO 1.0|' \
-#  modules/struct/stack_oo.tcl \
-#  modules/struct/queue_oo.tcl
-
-  tclsh installer.tcl -pkg-path ${pkgdir}/usr/lib/tcllib \
-   -app-path ${pkgdir}/usr/bin \
-   -nroff-path ${pkgdir}/usr/share/man/mann \
-   -no-examples -no-html \
-   -no-wait  -no-gui
-  mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
-  cp license.terms ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-  rm -f $pkgdir/usr/share/man/mann/{try,string,variable,zlib}.n
-}



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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 19:48:52
  Author: ronald
Revision: 213604

bump PKGBUILD to 1.10.0

Modified:
  emotion_generic_players/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 17:48:11 UTC (rev 213603)
+++ PKGBUILD2014-05-26 17:48:52 UTC (rev 213604)
@@ -3,7 +3,7 @@
 # Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
 
 pkgname=emotion_generic_players
-pkgver=1.9.0
+pkgver=1.10.0
 pkgrel=1
 pkgdesc=Enlightenment Foundation Libraries
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('efl' 'vlc')
 options=('!emptydirs')
 
source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('c5adf821ca8084b9fd40fb786f206882dab3f41f')
+sha1sums=('813b099a8e8cde3062ebc2ecbd369555c79009d5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 19:58:38
  Author: spupykin
Revision: 111922

archrelease: copy trunk to community-any

Added:
  tcllib/repos/community-any/PKGBUILD
(from rev 111921, tcllib/trunk/PKGBUILD)

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

Copied: tcllib/repos/community-any/PKGBUILD (from rev 111921, 
tcllib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 17:58:38 UTC (rev 111922)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: dtw dibble.at.thewrecker.dot.net
+# Contributor: Mathieu Gauthier mat...@freesurf.fr
+# Upgrade to ver. 1.8 - Pawel Bogur jid:smea...@uaznia.net
+
+pkgname=tcllib
+pkgver=1.16
+pkgrel=3
+pkgdesc=Set of pure-Tcl extensions.
+arch=('any')
+url=http://core.tcl.tk/tcllib/;
+license=('bsd')
+depends=('tcl')
+#source=(http://downloads.sourceforge.net/sourceforge/tcllib/tcllib-${pkgver}.tar.gz)
+source=(https://github.com/tcltk/tcllib/archive/tcllib_${pkgver/./_}.tar.gz)
+md5sums=('6ebc460a3f5bfb09eb722bf123165c24')
+
+package(){
+  cd ${srcdir}/tcllib-tcllib_${pkgver/./_}
+  tclsh installer.tcl -pkg-path ${pkgdir}/usr/lib/tcllib \
+   -app-path ${pkgdir}/usr/bin \
+   -nroff-path ${pkgdir}/usr/share/man/mann \
+   -no-examples -no-html \
+   -no-wait  -no-gui
+  mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
+  cp license.terms ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  rm -f $pkgdir/usr/share/man/mann/{try,string,variable,zlib,coroutine}.n
+}



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

2014-05-26 Thread Bartłomiej Piotrowski
Date: Monday, May 26, 2014 @ 21:06:38
  Author: bpiotrowski
Revision: 111923

upgpkg: profanity 1:0.4.2-1

new upstream release

Modified:
  profanity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 17:58:38 UTC (rev 111922)
+++ PKGBUILD2014-05-26 19:06:38 UTC (rev 111923)
@@ -3,7 +3,7 @@
 # Contributor: jason ryan jasonwr...@gmail.com
 
 pkgname=profanity
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
 epoch=1
 pkgdesc='Console based XMPP client'
@@ -13,7 +13,7 @@
 depends=('curl' 'expat' 'glib2' 'libotr' 'gnutls')
 makedepends=('doxygen' 'libstrophe')
 source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
-md5sums=('d50c3a69165e3daa243c149f93cf32fc')
+md5sums=('bc950b272d2d4869aedf79dd90185969')
 
 build() {
   cd $pkgname-$pkgver



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

2014-05-26 Thread Bartłomiej Piotrowski
Date: Monday, May 26, 2014 @ 21:06:54
  Author: bpiotrowski
Revision: 111924

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 19:06:38 UTC (rev 111923)
+++ community-i686/PKGBUILD 2014-05-26 19:06:54 UTC (rev 111924)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: jason ryan jasonwr...@gmail.com
-
-pkgname=profanity
-pkgver=0.4.1
-pkgrel=1
-epoch=1
-pkgdesc='Console based XMPP client'
-arch=('i686' 'x86_64')
-url='http://www.profanity.im'
-license=('GPL3')
-depends=('curl' 'expat' 'glib2' 'libotr' 'gnutls')
-makedepends=('doxygen' 'libstrophe')
-source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
-md5sums=('d50c3a69165e3daa243c149f93cf32fc')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: profanity/repos/community-i686/PKGBUILD (from rev 111923, 
profanity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 19:06:54 UTC (rev 111924)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: jason ryan jasonwr...@gmail.com
+
+pkgname=profanity
+pkgver=0.4.2
+pkgrel=1
+epoch=1
+pkgdesc='Console based XMPP client'
+arch=('i686' 'x86_64')
+url='http://www.profanity.im'
+license=('GPL3')
+depends=('curl' 'expat' 'glib2' 'libotr' 'gnutls')
+makedepends=('doxygen' 'libstrophe')
+source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
+md5sums=('bc950b272d2d4869aedf79dd90185969')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 19:06:38 UTC (rev 111923)
+++ community-x86_64/PKGBUILD   2014-05-26 19:06:54 UTC (rev 111924)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: jason ryan jasonwr...@gmail.com
-
-pkgname=profanity
-pkgver=0.4.1
-pkgrel=1
-epoch=1
-pkgdesc='Console based XMPP client'
-arch=('i686' 'x86_64')
-url='http://www.profanity.im'
-license=('GPL3')
-depends=('curl' 'expat' 'glib2' 'libotr' 'gnutls')
-makedepends=('doxygen' 'libstrophe')
-source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
-md5sums=('d50c3a69165e3daa243c149f93cf32fc')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: profanity/repos/community-x86_64/PKGBUILD (from rev 111923, 
profanity/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-26 19:06:54 UTC (rev 111924)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: jason ryan jasonwr...@gmail.com
+
+pkgname=profanity
+pkgver=0.4.2
+pkgrel=1
+epoch=1
+pkgdesc='Console based XMPP client'
+arch=('i686' 'x86_64')
+url='http://www.profanity.im'
+license=('GPL3')
+depends=('curl' 'expat' 'glib2' 'libotr' 'gnutls')
+makedepends=('doxygen' 'libstrophe')
+source=(http://www.profanity.im/profanity-$pkgver.tar.gz)
+md5sums=('bc950b272d2d4869aedf79dd90185969')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}



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

2014-05-26 Thread Bartłomiej Piotrowski
Date: Monday, May 26, 2014 @ 21:15:14
  Author: bpiotrowski
Revision: 213605

upgpkg: readline 6.3.006-1

bump patch level

Modified:
  readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 17:48:52 UTC (rev 213604)
+++ PKGBUILD2014-05-26 19:15:14 UTC (rev 213605)
@@ -5,7 +5,7 @@
 
 pkgname=readline
 _basever=6.3
-_patchlevel=005
+_patchlevel=006
 pkgver=$_basever.$_patchlevel
 pkgrel=1
 pkgdesc='GNU readline library'
@@ -63,4 +63,6 @@
  '11f9def89803a5052db3ba72394ce14f'
  'SKIP'
  '93721c31cd225393f80cb3aadb165544'
+ 'SKIP'
+ '71dc6ecce66d1489b96595f55d142a52'
  'SKIP')



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

2014-05-26 Thread Bartłomiej Piotrowski
Date: Monday, May 26, 2014 @ 21:15:20
  Author: bpiotrowski
Revision: 213606

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

Added:
  readline/repos/testing-i686/
  readline/repos/testing-i686/PKGBUILD
(from rev 213605, readline/trunk/PKGBUILD)
  readline/repos/testing-i686/inputrc
(from rev 213605, readline/trunk/inputrc)
  readline/repos/testing-i686/readline.install
(from rev 213605, readline/trunk/readline.install)
  readline/repos/testing-x86_64/
  readline/repos/testing-x86_64/PKGBUILD
(from rev 213605, readline/trunk/PKGBUILD)
  readline/repos/testing-x86_64/inputrc
(from rev 213605, readline/trunk/inputrc)
  readline/repos/testing-x86_64/readline.install
(from rev 213605, readline/trunk/readline.install)

-+
 testing-i686/PKGBUILD   |   68 ++
 testing-i686/inputrc|   36 
 testing-i686/readline.install   |   17 +
 testing-x86_64/PKGBUILD |   68 ++
 testing-x86_64/inputrc  |   36 
 testing-x86_64/readline.install |   17 +
 6 files changed, 242 insertions(+)

Copied: readline/repos/testing-i686/PKGBUILD (from rev 213605, 
readline/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-26 19:15:20 UTC (rev 213606)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=readline
+_basever=6.3
+_patchlevel=006
+pkgver=$_basever.$_patchlevel
+pkgrel=1
+pkgdesc='GNU readline library'
+arch=('i686' 'x86_64')
+url='http://tiswww.case.edu/php/chet/readline/rltop.html'
+license=('GPL')
+depends=('glibc' 'ncurses')
+backup=('etc/inputrc')
+options=('!emptydirs')
+install=readline.install
+source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+inputrc)
+
+if [[ $_patchlevel -gt 0 ]]; then
+for (( _p=1; _p = $((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf
 %03d $_p){,.sig})
+done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+  for (( _p=1; _p = $((10#${_patchlevel})); _p++ )); do
+msg applying patch readline${_basever//.}-$(printf %03d $_p)
+patch -p0 -i ../readline${_basever//.}-$(printf %03d $_p)
+  done
+
+  # remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == x86_64 ]]  CFLAGS=$CFLAGS -fPIC
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR=$pkgdir install
+  install -Dm644 inputrc $pkgdir/etc/inputrc
+}
+
+md5sums=('33c8fb279e981274f485fd91da77e94a'
+ 'SKIP'
+ '58d54966c1191db45973cb3191ac621a'
+ '4343f5ea9b0f42447f102fb61576b398'
+ 'SKIP'
+ '700295212f7e2978577feaee584afddb'
+ 'SKIP'
+ 'af4963862f5156fbf9111c2c6fa86ed7'
+ 'SKIP'
+ '11f9def89803a5052db3ba72394ce14f'
+ 'SKIP'
+ '93721c31cd225393f80cb3aadb165544'
+ 'SKIP'
+ '71dc6ecce66d1489b96595f55d142a52'
+ 'SKIP')

Copied: readline/repos/testing-i686/inputrc (from rev 213605, 
readline/trunk/inputrc)
===
--- testing-i686/inputrc(rev 0)
+++ testing-i686/inputrc2014-05-26 19:15:20 UTC (rev 213606)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+\e[1~: beginning-of-line
+\e[4~: end-of-line
+\e[5~: beginning-of-history
+\e[6~: end-of-history
+\e[7~: beginning-of-line
+\e[3~: delete-char
+\e[2~: quoted-insert
+\e[5C: forward-word
+\e[5D: backward-word
+\e\e[C: forward-word
+\e\e[D: backward-word
+\e[1;5C: forward-word
+\e[1;5D: backward-word
+
+# for rxvt
+\e[8~: end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+\eOH: beginning-of-line
+\eOF: end-of-line
+
+# for freebsd console
+\e[H: beginning-of-line
+\e[F: end-of-line
+$endif

Copied: readline/repos/testing-i686/readline.install (from rev 213605, 
readline/trunk/readline.install)
===
--- testing-i686/readline.install   (rev 0)
+++ testing-i686/readline.install   2014-05-26 19:15:20 UTC (rev 213606)
@@ -0,0 +1,17 @@
+infodir=usr/share/info
+filelist=(history.info readline.info rluserman.info)
+
+post_upgrade() {
+  [ -x usr/bin/install-info ] || return 0
+  

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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:20:52
  Author: ronald
Revision: 213607

upgpkg: terminology 0.5.1-1

update to 0.5.1

Modified:
  terminology/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 19:15:20 UTC (rev 213606)
+++ PKGBUILD2014-05-26 19:20:52 UTC (rev 213607)
@@ -3,7 +3,7 @@
 # Contributor: Paul Ezvan p...@ezvan.fr
 
 pkgname=terminology
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc=EFL based terminal emulator
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('elementary')
 
source=(http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 install=terminology.install
-sha1sums=('9d072dc38a8884ec15b3cb2827f0b2a9bd574ad4')
+sha1sums=('5246904f5e7889cbf18c59a68d832fe36b43fafc')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:21:10
  Author: ronald
Revision: 213608

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

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

--+
 /PKGBUILD|   72 +
 /terminology.install |   22 +++
 extra-i686/PKGBUILD  |   36 --
 extra-i686/terminology.install   |   11 -
 extra-x86_64/PKGBUILD|   36 --
 extra-x86_64/terminology.install |   11 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-26 19:20:52 UTC (rev 213607)
+++ extra-i686/PKGBUILD 2014-05-26 19:21:10 UTC (rev 213608)
@@ -1,36 +0,0 @@
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Doug Newgard scimmia22 at outlook dot com
-# Contributor: Paul Ezvan p...@ezvan.fr
-
-pkgname=terminology
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=EFL based terminal emulator
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org/p.php?p=about/terminology;
-license=('BSD')
-depends=('elementary')
-source=(http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-install=terminology.install
-sha1sums=('9d072dc38a8884ec15b3cb2827f0b2a9bd574ad4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=${CFLAGS} -fvisibility=hidden
-  
-  ./configure \
---prefix=/usr
-
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  # install license files
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
-${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: terminology/repos/extra-i686/PKGBUILD (from rev 213607, 
terminology/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-26 19:21:10 UTC (rev 213608)
@@ -0,0 +1,36 @@
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Doug Newgard scimmia22 at outlook dot com
+# Contributor: Paul Ezvan p...@ezvan.fr
+
+pkgname=terminology
+pkgver=0.5.1
+pkgrel=1
+pkgdesc=EFL based terminal emulator
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org/p.php?p=about/terminology;
+license=('BSD')
+depends=('elementary')
+source=(http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+install=terminology.install
+sha1sums=('5246904f5e7889cbf18c59a68d832fe36b43fafc')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=${CFLAGS} -fvisibility=hidden
+  
+  ./configure \
+--prefix=/usr
+
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  # install license files
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
+${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: extra-i686/terminology.install
===
--- extra-i686/terminology.install  2014-05-26 19:20:52 UTC (rev 213607)
+++ extra-i686/terminology.install  2014-05-26 19:21:10 UTC (rev 213608)
@@ -1,11 +0,0 @@
-post_install() {
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: terminology/repos/extra-i686/terminology.install (from rev 213607, 
terminology/trunk/terminology.install)
===
--- extra-i686/terminology.install  (rev 0)
+++ extra-i686/terminology.install  2014-05-26 19:21:10 UTC (rev 213608)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-26 19:20:52 UTC (rev 213607)
+++ extra-x86_64/PKGBUILD   2014-05-26 19:21:10 UTC (rev 213608)
@@ -1,36 +0,0 @@
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Doug Newgard scimmia22 at outlook dot com
-# Contributor: Paul Ezvan p...@ezvan.fr
-
-pkgname=terminology
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=EFL based terminal emulator
-arch=('i686' 'x86_64')

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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:22:35
  Author: ronald
Revision: 213609

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

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

--+
 /PKGBUILD|  130 +
 /efl.install |   32 +++
 extra-i686/PKGBUILD  |   64 --
 extra-i686/efl.install   |   16 -
 extra-x86_64/PKGBUILD|   64 --
 extra-x86_64/efl.install |   16 -
 6 files changed, 162 insertions(+), 160 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-26 19:21:10 UTC (rev 213608)
+++ extra-i686/PKGBUILD 2014-05-26 19:22:35 UTC (rev 213609)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
-
-pkgbase=efl
-pkgname=('efl' 'efl-docs')
-pkgver=1.9.4
-pkgrel=1
-pkgdesc=Enlightenment Foundation Libraries
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
-depends=('bullet' 'libjpeg-turbo' 'gst-plugins-base'
- 'luajit' 'curl' 'fribidi' 'libpulse' 'libxcomposite'
- 'libxinerama' 'libxrandr' 'libxss' 'python2'
- 'libxcursor' 'libxp' 'libwebp' 'shared-mime-info'
-'libxkbcommon' 'wayland')
-makedepends=('doxygen')
-replaces=('ecore' 'edje' 'eet' 'eeze' 'efreet' 'eina' 'eio' 'embryo' 
-   'emotion' 'ethumb' 'evas')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.gz)
-install=efl.install
-sha1sums=('0f82e456f18f69617ff190ef4eb2138c8af393a3')
-
-prepare() {
-  sed -i 's/env python$/2/' 
${srcdir}/${pkgname}-${pkgver}/src/scripts/eina/eina-bench-cmp
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-
-  ./configure --prefix=/usr \
-  --disable-static --disable-tslib --enable-fb \
-  --enable-xinput22 --enable-multisense --enable-systemd \
-  --enable-image-loader-webp --enable-harfbuzz --enable-wayland
-
-  make
-  make -j1 doc
-}
-
-package_efl(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -j1 DESTDIR=${pkgdir} install
-
-  # install non-standard license files
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.BSD \
-   ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.BSD
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.SMALL \
-   ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.SMALL
-}
-
-package_efl-docs() {
-  pkgdesc=Documentation for the Enlightenment Foundation Libraries
-  depends=()
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -d ${pkgdir}/usr/share/doc/${pkgbase}
-  cp -a doc/html ${pkgdir}/usr/share/doc/${pkgbase}/html
-  cp -a doc/latex ${pkgdir}/usr/share/doc/${pkgbase}/latex
-}
-

Copied: efl/repos/extra-i686/PKGBUILD (from rev 213608, efl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-26 19:22:35 UTC (rev 213609)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
+
+pkgbase=efl
+pkgname=('efl' 'efl-docs')
+pkgver=1.10.0
+pkgrel=1
+pkgdesc=Enlightenment Foundation Libraries
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
+depends=('bullet' 'libjpeg-turbo' 'gst-plugins-base'
+ 'luajit' 'curl' 'fribidi' 'libpulse' 'libxcomposite'
+ 'libxinerama' 'libxrandr' 'libxss' 'python2'
+ 'libxcursor' 'libxp' 'libwebp' 'shared-mime-info'
+'libxkbcommon' 'wayland')
+makedepends=('doxygen')
+replaces=('ecore' 'edje' 'eet' 'eeze' 'efreet' 'eina' 'eio' 'embryo' 
+   'emotion' 'ethumb' 'evas')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.gz)
+install=efl.install
+sha1sums=('c9e57f55f050e2a7e97e870857170163a550beaa')
+
+
+prepare() {
+  sed -i 's/env python$/2/' 
${srcdir}/${pkgname}-${pkgver}/src/scripts/eina/eina-bench-cmp
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure --prefix=/usr \
+  --disable-static --disable-tslib --enable-fb \
+  --enable-xinput22 --enable-multisense --enable-systemd \
+  --enable-image-loader-webp --enable-harfbuzz --enable-wayland
+
+  make
+  make -j1 

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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:26:32
  Author: ronald
Revision: 213610

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-26 19:22:35 UTC (rev 213609)
+++ extra-i686/PKGBUILD 2014-05-26 19:26:32 UTC (rev 213610)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
-
-pkgbase=elementary
-pkgname=('elementary' 'elementary-docs')
-pkgver=1.9.4
-pkgrel=1
-pkgdesc=Enlightenment's widget set
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD')
-depends=('efl' 'evas_generic_loaders')
-makedepends=('doxygen' 'imagemagick')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('481930143499dcd23b417636f5115cc4a2d0f899')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-   
-  ./configure \
---prefix=/usr \
---disable-static
-  make
-  make -j1 doc
-}
-
-package_elementary(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # install license files
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
-${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}
-
-package_elementary-docs() {
-  pkgdesc=Documentation for Elementary GUI toolkit
-  depends=()
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -d ${pkgdir}/usr/share/doc/${pkgbase}
-  cp -a doc/html ${pkgdir}/usr/share/doc/${pkgbase}/html
-  cp -a doc/latex ${pkgdir}/usr/share/doc/${pkgbase}/latex
-}
-
-

Copied: elementary/repos/extra-i686/PKGBUILD (from rev 213609, 
elementary/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-26 19:26:32 UTC (rev 213610)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgbase=elementary
+pkgname=('elementary' 'elementary-docs')
+pkgver=1.10.0
+pkgrel=1
+pkgdesc=Enlightenment's widget set
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD')
+depends=('efl' 'evas_generic_loaders')
+makedepends=('doxygen' 'imagemagick')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('48c62ab994d69f32c1cad3f3e499f7300e7ffda3')  
   
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+   
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+  make -j1 doc
+}
+
+package_elementary(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # install license files
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
+${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}
+
+package_elementary-docs() {
+  pkgdesc=Documentation for Elementary GUI toolkit
+  depends=()
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  install -d ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -a doc/html ${pkgdir}/usr/share/doc/${pkgbase}/html
+  cp -a doc/latex ${pkgdir}/usr/share/doc/${pkgbase}/latex
+}
+
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-26 19:22:35 UTC (rev 213609)
+++ extra-x86_64/PKGBUILD   2014-05-26 19:26:32 UTC (rev 213610)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
-
-pkgbase=elementary
-pkgname=('elementary' 'elementary-docs')
-pkgver=1.9.4
-pkgrel=1
-pkgdesc=Enlightenment's widget set
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD')
-depends=('efl' 'evas_generic_loaders')
-makedepends=('doxygen' 'imagemagick')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('481930143499dcd23b417636f5115cc4a2d0f899')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-   
-  ./configure \
---prefix=/usr \
---disable-static
-  make
-  make -j1 doc
-}
-
-package_elementary(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install

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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:28:08
  Author: ronald
Revision: 213611

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-26 19:26:32 UTC (rev 213610)
+++ extra-i686/PKGBUILD 2014-05-26 19:28:08 UTC (rev 213611)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
-
-pkgname=emotion_generic_players
-pkgver=1.9.0
-pkgrel=1
-pkgdesc=Enlightenment Foundation Libraries
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD')
-depends=('efl' 'vlc')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('c5adf821ca8084b9fd40fb786f206882dab3f41f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-
-  ./configure \
---prefix=/usr
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # install license files
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
-   ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}
-

Copied: emotion_generic_players/repos/extra-i686/PKGBUILD (from rev 213610, 
emotion_generic_players/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-26 19:28:08 UTC (rev 213611)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
+
+pkgname=emotion_generic_players
+pkgver=1.10.0
+pkgrel=1
+pkgdesc=Enlightenment Foundation Libraries
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD')
+depends=('efl' 'vlc')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('813b099a8e8cde3062ebc2ecbd369555c79009d5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure \
+--prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # install license files
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
+   ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-26 19:26:32 UTC (rev 213610)
+++ extra-x86_64/PKGBUILD   2014-05-26 19:28:08 UTC (rev 213611)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
-
-pkgname=emotion_generic_players
-pkgver=1.9.0
-pkgrel=1
-pkgdesc=Enlightenment Foundation Libraries
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('BSD')
-depends=('efl' 'vlc')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('c5adf821ca8084b9fd40fb786f206882dab3f41f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-
-  ./configure \
---prefix=/usr
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # install license files
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
-   ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}
-

Copied: emotion_generic_players/repos/extra-x86_64/PKGBUILD (from rev 213610, 
emotion_generic_players/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-26 19:28:08 UTC (rev 213611)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Enlightenment Developers enlightenment-de...@enlightenment.org
+
+pkgname=emotion_generic_players
+pkgver=1.10.0
+pkgrel=1
+pkgdesc=Enlightenment Foundation Libraries
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD')
+depends=('efl' 'vlc')
+options=('!emptydirs')

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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:28:18
  Author: ronald
Revision: 213612

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-26 19:28:08 UTC (rev 213611)
+++ extra-i686/PKGBUILD 2014-05-26 19:28:18 UTC (rev 213612)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
-
-pkgname=evas_generic_loaders
-pkgver=1.9.0
-pkgrel=2
-pkgdesc=Additional generic loaders for Evas
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('GPL2')
-depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl' 'gstreamer0.10-base')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('9741e7aed8adb86f21563bccde40a0e39c64c250')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/evas \
---enable-poppler \
---enable-spectre \
---enable-libraw \
---enable-svg \
---enable-gstreamer
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: evas_generic_loaders/repos/extra-i686/PKGBUILD (from rev 213611, 
evas_generic_loaders/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-26 19:28:18 UTC (rev 213612)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=evas_generic_loaders
+pkgver=1.10.0
+pkgrel=1
+pkgdesc=Additional generic loaders for Evas
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('GPL2')
+depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl' 'gstreamer0.10-base')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('3ac1faf875cadaedfa86776e127874432e0273ea')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/evas \
+--enable-poppler \
+--enable-spectre \
+--enable-libraw \
+--enable-svg \
+--enable-gstreamer
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-26 19:28:08 UTC (rev 213611)
+++ extra-x86_64/PKGBUILD   2014-05-26 19:28:18 UTC (rev 213612)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ron...@archlinux.org
-# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
-
-pkgname=evas_generic_loaders
-pkgver=1.9.0
-pkgrel=2
-pkgdesc=Additional generic loaders for Evas
-arch=('i686' 'x86_64')
-url=http://www.enlightenment.org;
-license=('GPL2')
-depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl' 'gstreamer0.10-base')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('9741e7aed8adb86f21563bccde40a0e39c64c250')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export CFLAGS=$CFLAGS -fvisibility=hidden
-
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/evas \
---enable-poppler \
---enable-spectre \
---enable-libraw \
---enable-svg \
---enable-gstreamer
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: evas_generic_loaders/repos/extra-x86_64/PKGBUILD (from rev 213611, 
evas_generic_loaders/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-26 19:28:18 UTC (rev 213612)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=evas_generic_loaders
+pkgver=1.10.0
+pkgrel=1
+pkgdesc=Additional generic loaders for Evas
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('GPL2')

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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:34:47
  Author: ronald
Revision: 213613

upgpkg: e2fsprogs 1.42.10-1

update to 1.42.10

Modified:
  e2fsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 19:28:18 UTC (rev 213612)
+++ PKGBUILD2014-05-26 19:34:47 UTC (rev 213613)
@@ -3,8 +3,8 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=e2fsprogs
-pkgver=1.42.9
-pkgrel=2
+pkgver=1.42.10
+pkgrel=1
 pkgdesc=Ext2/3/4 filesystem utilities
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'MIT')
@@ -17,7 +17,7 @@
 backup=('etc/mke2fs.conf')
 options=('staticlibs')
 install=${pkgname}.install
-sha1sums=('fb8e3662302bcab1682d567d6ee0ff051faa1bbd'
+sha1sums=('06eba8a78ce1d5032fdcaf34f09025f01ceaca79'
   'f4a0d5b0cdb980e3fedd6f5e7dde0b0ffb7bbdfb')
 
 build() {



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

2014-05-26 Thread Ronald van Haren
Date: Monday, May 26, 2014 @ 21:34:56
  Author: ronald
Revision: 213614

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

Added:
  e2fsprogs/repos/testing-i686/
  e2fsprogs/repos/testing-i686/MIT-LICENSE
(from rev 213613, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-i686/PKGBUILD
(from rev 213613, e2fsprogs/trunk/PKGBUILD)
  e2fsprogs/repos/testing-i686/e2fsprogs.install
(from rev 213613, e2fsprogs/trunk/e2fsprogs.install)
  e2fsprogs/repos/testing-i686/mke2fs.conf
(from rev 213613, e2fsprogs/trunk/mke2fs.conf)
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 213613, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 213613, e2fsprogs/trunk/PKGBUILD)
  e2fsprogs/repos/testing-x86_64/e2fsprogs.install
(from rev 213613, e2fsprogs/trunk/e2fsprogs.install)
  e2fsprogs/repos/testing-x86_64/mke2fs.conf
(from rev 213613, e2fsprogs/trunk/mke2fs.conf)

--+
 testing-i686/MIT-LICENSE |   25 +
 testing-i686/PKGBUILD|   54 +
 testing-i686/e2fsprogs.install   |   20 +
 testing-i686/mke2fs.conf |   26 +
 testing-x86_64/MIT-LICENSE   |   25 +
 testing-x86_64/PKGBUILD  |   54 +
 testing-x86_64/e2fsprogs.install |   20 +
 testing-x86_64/mke2fs.conf   |   26 +
 8 files changed, 250 insertions(+)

Copied: e2fsprogs/repos/testing-i686/MIT-LICENSE (from rev 213613, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-i686/MIT-LICENSE(rev 0)
+++ testing-i686/MIT-LICENSE2014-05-26 19:34:56 UTC (rev 213614)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o ty...@mit.edu
+Copyright (c) 1997-2003 Yann Dirson dir...@debian.org
+Copyright (c) 2001 Alcove http://www.alcove.com/
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler mr...@cam.ac.uk
+
+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: e2fsprogs/repos/testing-i686/PKGBUILD (from rev 213613, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-26 19:34:56 UTC (rev 213614)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=e2fsprogs
+pkgver=1.42.10
+pkgrel=1
+pkgdesc=Ext2/3/4 filesystem utilities
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url=http://e2fsprogs.sourceforge.net;
+groups=('base')
+depends=('sh' 'libutil-linux')
+makedepends=('bc' 'util-linux')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'MIT-LICENSE')
+backup=('etc/mke2fs.conf')
+options=('staticlibs')
+install=${pkgname}.install
+sha1sums=('06eba8a78ce1d5032fdcaf34f09025f01ceaca79'
+  'f4a0d5b0cdb980e3fedd6f5e7dde0b0ffb7bbdfb')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+
+  ./configure --prefix=/usr --with-root-prefix= --libdir=/usr/lib \
+  --sbindir=/usr/bin --enable-elf-shlibs --disable-fsck --disable-uuidd \
+  --disable-libuuid --disable-libblkid
+
+  make
+}
+
+package() {
+  unset MAKEFLAGS
+
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' ${pkgdir}/usr/bin/compile_et
+
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR=/usr/share/ss#' ${pkgdir}/usr/bin/mk_cmds
+  sed -i -e 's#^ET_DIR=.*#ET_DIR=/usr/share/et#' 
${pkgdir}/usr/bin/compile_et
+
+  # remove static libraries with a shared counterpart
+  rm ${pkgdir}/usr/lib/lib{com_err,e2p,ext2fs,ss}.a
+
+  # install 

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

2014-05-26 Thread Bartłomiej Piotrowski
Date: Monday, May 26, 2014 @ 21:54:35
  Author: bpiotrowski
Revision: 213616

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

Added:
  bash/repos/testing-i686/
  bash/repos/testing-i686/PKGBUILD
(from rev 213615, bash/trunk/PKGBUILD)
  bash/repos/testing-i686/bash.install
(from rev 213615, bash/trunk/bash.install)
  bash/repos/testing-i686/dot.bash_logout
(from rev 213615, bash/trunk/dot.bash_logout)
  bash/repos/testing-i686/dot.bash_profile
(from rev 213615, bash/trunk/dot.bash_profile)
  bash/repos/testing-i686/dot.bashrc
(from rev 213615, bash/trunk/dot.bashrc)
  bash/repos/testing-i686/system.bash_logout
(from rev 213615, bash/trunk/system.bash_logout)
  bash/repos/testing-i686/system.bashrc
(from rev 213615, bash/trunk/system.bashrc)
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 213615, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/bash.install
(from rev 213615, bash/trunk/bash.install)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 213615, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 213615, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 213615, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 213615, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 213615, bash/trunk/system.bashrc)

---+
 testing-i686/PKGBUILD |  117 
 testing-i686/bash.install |   16 
 testing-i686/dot.bash_logout  |3 
 testing-i686/dot.bash_profile |5 +
 testing-i686/dot.bashrc   |9 ++
 testing-i686/system.bash_logout   |3 
 testing-i686/system.bashrc|   23 +++
 testing-x86_64/PKGBUILD   |  117 
 testing-x86_64/bash.install   |   16 
 testing-x86_64/dot.bash_logout|3 
 testing-x86_64/dot.bash_profile   |5 +
 testing-x86_64/dot.bashrc |9 ++
 testing-x86_64/system.bash_logout |3 
 testing-x86_64/system.bashrc  |   23 +++
 14 files changed, 352 insertions(+)

Copied: bash/repos/testing-i686/PKGBUILD (from rev 213615, bash/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-26 19:54:35 UTC (rev 213616)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=bash
+_basever=4.3
+_patchlevel=018
+pkgver=$_basever.$_patchlevel
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://www.gnu.org/software/bash/bash.html'
+groups=('base')
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline=6.3' 'glibc')
+provides=('sh')
+install=bash.install
+source=(http://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+for (( _p=1; _p=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
http://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
%03d $_p){,.sig})
+done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p=$((10#${_patchlevel})); _p++ )); do
+msg applying patch bash${_basever//.}-$(printf %03d $_p)
+patch -p0 -i ../bash${_basever//.}-$(printf %03d $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\/usr/local/sbin:/usr/local/bin:/usr/bin\\'
+   -DSTANDARD_UTILS_PATH=\'\/usr/bin\\'
+   -DSYS_BASHRC=\'\/etc/bash.bashrc\\'
+   -DSYS_BASH_LOGOUT=\'\/etc/bash.bash_logout\\')
+  export CFLAGS=${CFLAGS} ${_bashconfig[@]}
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR=$pkgdir install
+  ln -s bash $pkgdir/usr/bin/sh
+
+  install -dm755 $pkgdir/etc/skel/
+  # system-wide configuration files
+  install -m644 system.bashrc $pkgdir/etc/bash.bashrc
+  install -m644 system.bash_logout $pkgdir/etc/bash.bash_logout
+
+  # user configuration file skeletons
+  install -m644 dot.bashrc $pkgdir/etc/skel/.bashrc
+  install -m644 dot.bash_profile $pkgdir/etc/skel/.bash_profile
+  install -m644 dot.bash_logout $pkgdir/etc/skel/.bash_logout
+}
+
+md5sums=('81348932d5da294953e15d4814c74dd1'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 

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

2014-05-26 Thread Bartłomiej Piotrowski
Date: Monday, May 26, 2014 @ 21:54:25
  Author: bpiotrowski
Revision: 213615

upgpkg: bash 4.3.018-1

bump patch level

Modified:
  bash/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 19:34:56 UTC (rev 213614)
+++ PKGBUILD2014-05-26 19:54:25 UTC (rev 213615)
@@ -5,7 +5,7 @@
 
 pkgname=bash
 _basever=4.3
-_patchlevel=011
+_patchlevel=018
 pkgver=$_basever.$_patchlevel
 pkgrel=1
 pkgdesc='The GNU Bourne Again shell'
@@ -100,4 +100,18 @@
  'a275463d21735bb6d7161f9fbd320d8f'
  'SKIP'
  'c17103ee20420d77e46b224c8d3fceda'
+ 'SKIP'
+ '3e2a057a19d02b3f92a3a09eacbc03ae'
+ 'SKIP'
+ 'fb377143a996d4ff087a2771bc8332f9'
+ 'SKIP'
+ '1a1aaecc99a9d0cbc310e8e247dcc8b6'
+ 'SKIP'
+ '4f04387458a3c1b4d460d199f49991a8'
+ 'SKIP'
+ '90e759709720c4f877525bebc9d5dc06'
+ 'SKIP'
+ '11e4046e1b86070f6adbb7ffc89641be'
+ 'SKIP'
+ 'cd5a9b46f5bea0dc0248c93c7dfac011'
  'SKIP')



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

2014-05-26 Thread Jakob Gruber
Date: Monday, May 26, 2014 @ 22:42:12
  Author: schuay
Revision: 111925

simavr-1.2.-1

Modified:
  simavr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 19:06:54 UTC (rev 111924)
+++ PKGBUILD2014-05-26 20:42:12 UTC (rev 111925)
@@ -1,7 +1,7 @@
 # Maintainer: schuay jakob.gru...@gmail.com
 
 pkgname=simavr
-pkgver=1.1
+pkgver=1.2
 pkgrel=1
 pkgdesc='A lean, mean and hackable AVR simulator'
 arch=('i686' 'x86_64')



[arch-commits] Commit in simavr/repos/community-x86_64 (PKGBUILD PKGBUILD)

2014-05-26 Thread Jakob Gruber
Date: Monday, May 26, 2014 @ 22:42:27
  Author: schuay
Revision: 111927

archrelease: copy trunk to community-x86_64

Added:
  simavr/repos/community-x86_64/PKGBUILD
(from rev 111926, simavr/trunk/PKGBUILD)
Deleted:
  simavr/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 20:42:21 UTC (rev 111926)
+++ PKGBUILD2014-05-26 20:42:27 UTC (rev 111927)
@@ -1,28 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-
-pkgname=simavr
-pkgver=1.1
-pkgrel=1
-pkgdesc='A lean, mean and hackable AVR simulator'
-arch=('i686' 'x86_64')
-url=https://github.com/buserror-uk/simavr;
-license=('GPL3')
-depends=('elfutils')
-makedepends=('avr-libc' 'git')
-source=(${pkgname}::git+https://github.com/buserror-uk/simavr.git#tag=v${pkgver};)
-options=(!strip)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-
-  make AVR_ROOT=/usr/avr RELEASE=1 \
-  CFLAGS=-Wall -Wextra -fPIC -O2 -std=gnu99 -Wno-sign-compare 
-Wno-unused-parameter \
-  build-simavr
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make PREFIX=/usr DESTDIR=$pkgdir/usr install
-}
-

Copied: simavr/repos/community-x86_64/PKGBUILD (from rev 111926, 
simavr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 20:42:27 UTC (rev 111927)
@@ -0,0 +1,28 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+
+pkgname=simavr
+pkgver=1.2
+pkgrel=1
+pkgdesc='A lean, mean and hackable AVR simulator'
+arch=('i686' 'x86_64')
+url=https://github.com/buserror-uk/simavr;
+license=('GPL3')
+depends=('elfutils')
+makedepends=('avr-libc' 'git')
+source=(${pkgname}::git+https://github.com/buserror-uk/simavr.git#tag=v${pkgver};)
+options=(!strip)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/$pkgname
+
+  make AVR_ROOT=/usr/avr RELEASE=1 \
+  CFLAGS=-Wall -Wextra -fPIC -O2 -std=gnu99 -Wno-sign-compare 
-Wno-unused-parameter \
+  build-simavr
+}
+
+package() {
+  cd $srcdir/$pkgname
+  make PREFIX=/usr DESTDIR=$pkgdir/usr install
+}
+



[arch-commits] Commit in simavr/repos/community-i686 (PKGBUILD PKGBUILD)

2014-05-26 Thread Jakob Gruber
Date: Monday, May 26, 2014 @ 22:42:21
  Author: schuay
Revision: 111926

archrelease: copy trunk to community-i686

Added:
  simavr/repos/community-i686/PKGBUILD
(from rev 111925, simavr/trunk/PKGBUILD)
Deleted:
  simavr/repos/community-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 20:42:12 UTC (rev 111925)
+++ PKGBUILD2014-05-26 20:42:21 UTC (rev 111926)
@@ -1,28 +0,0 @@
-# Maintainer: schuay jakob.gru...@gmail.com
-
-pkgname=simavr
-pkgver=1.1
-pkgrel=1
-pkgdesc='A lean, mean and hackable AVR simulator'
-arch=('i686' 'x86_64')
-url=https://github.com/buserror-uk/simavr;
-license=('GPL3')
-depends=('elfutils')
-makedepends=('avr-libc' 'git')
-source=(${pkgname}::git+https://github.com/buserror-uk/simavr.git#tag=v${pkgver};)
-options=(!strip)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-
-  make AVR_ROOT=/usr/avr RELEASE=1 \
-  CFLAGS=-Wall -Wextra -fPIC -O2 -std=gnu99 -Wno-sign-compare 
-Wno-unused-parameter \
-  build-simavr
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make PREFIX=/usr DESTDIR=$pkgdir/usr install
-}
-

Copied: simavr/repos/community-i686/PKGBUILD (from rev 111925, 
simavr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 20:42:21 UTC (rev 111926)
@@ -0,0 +1,28 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+
+pkgname=simavr
+pkgver=1.2
+pkgrel=1
+pkgdesc='A lean, mean and hackable AVR simulator'
+arch=('i686' 'x86_64')
+url=https://github.com/buserror-uk/simavr;
+license=('GPL3')
+depends=('elfutils')
+makedepends=('avr-libc' 'git')
+source=(${pkgname}::git+https://github.com/buserror-uk/simavr.git#tag=v${pkgver};)
+options=(!strip)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/$pkgname
+
+  make AVR_ROOT=/usr/avr RELEASE=1 \
+  CFLAGS=-Wall -Wextra -fPIC -O2 -std=gnu99 -Wno-sign-compare 
-Wno-unused-parameter \
+  build-simavr
+}
+
+package() {
+  cd $srcdir/$pkgname
+  make PREFIX=/usr DESTDIR=$pkgdir/usr install
+}
+



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

2014-05-26 Thread Dan McGee
Date: Monday, May 26, 2014 @ 23:36:40
  Author: dan
Revision: 213617

upgpkg: python-virtualenv 1.11.6-1

Modified:
  python-virtualenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 19:54:35 UTC (rev 213616)
+++ PKGBUILD2014-05-26 21:36:40 UTC (rev 213617)
@@ -3,7 +3,7 @@
 # Contributor: Daniele Paolella d...@mcrservice.it
 
 pkgname=('python-virtualenv' 'python2-virtualenv')
-pkgver=1.11.5
+pkgver=1.11.6
 pkgrel=1
 pkgdesc=Virtual Python Environment builder
 url=https://virtualenv.pypa.io/;
@@ -46,5 +46,5 @@
 $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
-md5sums=('f61636143193499e7700ec9b70756ff6')
-sha256sums=('9d3fd26c2d5cfc7552b2ea33a4c2dfc78cf451d48b1987cc474fe533a16ae2cb')
+md5sums=('f61cdd983d2c4e6aeabb70b1060d6f49')
+sha256sums=('3e7a4c151e2ee97f51db0215bfd2a073b04a91e9786df6cb67c916f16abe04f7')



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

2014-05-26 Thread Dan McGee
Date: Monday, May 26, 2014 @ 23:36:48
  Author: dan
Revision: 213618

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 21:36:40 UTC (rev 213617)
+++ PKGBUILD2014-05-26 21:36:48 UTC (rev 213618)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-# Contributor: Daniele Paolella d...@mcrservice.it
-
-pkgname=('python-virtualenv' 'python2-virtualenv')
-pkgver=1.11.5
-pkgrel=1
-pkgdesc=Virtual Python Environment builder
-url=https://virtualenv.pypa.io/;
-arch=('any')
-license=('MIT')
-makedepends=('python' 'python2')
-replaces=('virtualenv')
-conflicts=('virtualenv')
-source=(http://pypi.python.org/packages/source/v/virtualenv/virtualenv-$pkgver.tar.gz;)
-
-package_python-virtualenv() {
-  depends=('python')
-
-  cd $srcdir/virtualenv-$pkgver
-  LANG='en_US.UTF-8' python3 setup.py build
-  LANG='en_US.UTF-8' python3 setup.py install --prefix=/usr --root=$pkgdir
-
-  # link to a version with 3 suffix as well
-  ln $pkgdir/usr/bin/virtualenv $pkgdir/usr/bin/virtualenv3
-
-  install -D -m644 LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-virtualenv() {
-  depends=('python2')
-
-  cd $srcdir/virtualenv-$pkgver
-  python2 setup.py build
-  python2 setup.py install --prefix=/usr --root=$pkgdir
-
-  # move this old version out of the way
-  mv $pkgdir/usr/bin/virtualenv $pkgdir/usr/bin/virtualenv2
-
-  # should report this upstream as still not fixed...
-  sed -i s|#!/usr/bin/env python$|#!/usr/bin/env python2| \
-$pkgdir/usr/lib/python2.7/site-packages/virtualenv.py
- 
-  install -D -m644 LICENSE.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-md5sums=('f61636143193499e7700ec9b70756ff6')
-sha256sums=('9d3fd26c2d5cfc7552b2ea33a4c2dfc78cf451d48b1987cc474fe533a16ae2cb')

Copied: python-virtualenv/repos/extra-any/PKGBUILD (from rev 213617, 
python-virtualenv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 21:36:48 UTC (rev 213618)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Contributor: Daniele Paolella d...@mcrservice.it
+
+pkgname=('python-virtualenv' 'python2-virtualenv')
+pkgver=1.11.6
+pkgrel=1
+pkgdesc=Virtual Python Environment builder
+url=https://virtualenv.pypa.io/;
+arch=('any')
+license=('MIT')
+makedepends=('python' 'python2')
+replaces=('virtualenv')
+conflicts=('virtualenv')
+source=(http://pypi.python.org/packages/source/v/virtualenv/virtualenv-$pkgver.tar.gz;)
+
+package_python-virtualenv() {
+  depends=('python')
+
+  cd $srcdir/virtualenv-$pkgver
+  LANG='en_US.UTF-8' python3 setup.py build
+  LANG='en_US.UTF-8' python3 setup.py install --prefix=/usr --root=$pkgdir
+
+  # link to a version with 3 suffix as well
+  ln $pkgdir/usr/bin/virtualenv $pkgdir/usr/bin/virtualenv3
+
+  install -D -m644 LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-virtualenv() {
+  depends=('python2')
+
+  cd $srcdir/virtualenv-$pkgver
+  python2 setup.py build
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+
+  # move this old version out of the way
+  mv $pkgdir/usr/bin/virtualenv $pkgdir/usr/bin/virtualenv2
+
+  # should report this upstream as still not fixed...
+  sed -i s|#!/usr/bin/env python$|#!/usr/bin/env python2| \
+$pkgdir/usr/lib/python2.7/site-packages/virtualenv.py
+ 
+  install -D -m644 LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f61cdd983d2c4e6aeabb70b1060d6f49')
+sha256sums=('3e7a4c151e2ee97f51db0215bfd2a073b04a91e9786df6cb67c916f16abe04f7')



[arch-commits] Commit in offlineimap/repos/community-any (3 files)

2014-05-26 Thread Jaroslav Lichtblau
Date: Monday, May 26, 2014 @ 23:56:41
  Author: jlichtblau
Revision: 111929

archrelease: copy trunk to community-any

Added:
  offlineimap/repos/community-any/PKGBUILD
(from rev 111928, offlineimap/trunk/PKGBUILD)
  offlineimap/repos/community-any/offlineimap.changelog
(from rev 111928, offlineimap/trunk/offlineimap.changelog)
Deleted:
  offlineimap/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   76 
 offlineimap.changelog |   61 ++
 2 files changed, 99 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 21:56:32 UTC (rev 111928)
+++ PKGBUILD2014-05-26 21:56:41 UTC (rev 111929)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Callan Barrett wizzomafi...@gmail.com
-# Contributor: mucknert muckn...@gmx.net
-
-pkgname=offlineimap
-pkgver=6.5.5
-pkgrel=1
-pkgdesc='Synchronizes emails between two repositories'
-arch=('any')
-url='http://offlineimap.org/'
-license=('GPL')
-depends=('python2')
-makedepends=('python2-docutils')
-source=(https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz;)
-sha1sums=('8cf4b1dfe98f14d51d8e331dd7393accc9320ac7')
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   sed 's/\^/=/g' -i docs/MANUAL.rst
-   find . -type f -exec \
-   sed '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' 
-i {} \;
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   python2 setup.py build
-   rst2man2 docs/MANUAL.rst offlineimap.1
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   python2 setup.py install --root=${pkgdir} --optimize=1
-   install -Dm644 offlineimap.1 
${pkgdir}/usr/share/man/man1/offlineimap.1
-   install -Dm644 offlineimap.conf 
${pkgdir}/usr/share/offlineimap/offlineimap.conf
-   install -Dm644 offlineimap.conf.minimal 
${pkgdir}/usr/share/offlineimap/offlineimap.conf.minimal
-}

Copied: offlineimap/repos/community-any/PKGBUILD (from rev 111928, 
offlineimap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 21:56:41 UTC (rev 111929)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Callan Barrett wizzomafi...@gmail.com
+# Contributor: mucknert muckn...@gmx.net
+
+pkgname=offlineimap
+pkgver=6.5.6
+pkgrel=1
+pkgdesc='Synchronizes emails between two repositories'
+arch=('any')
+url='http://offlineimap.org/'
+license=('GPL')
+depends=('python2')
+makedepends=('python2-docutils')
+source=(https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz;)
+sha1sums=('cced67060be2922ca3ce056839b2aa1fe6b776a1')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed 's/\^/=/g' -i docs/MANUAL.rst
+   find . -type f -exec \
+   sed '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' 
-i {} \;
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   python2 setup.py build
+   rst2man2 docs/MANUAL.rst offlineimap.1
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   python2 setup.py install --root=${pkgdir} --optimize=1
+   install -Dm644 offlineimap.1 
${pkgdir}/usr/share/man/man1/offlineimap.1
+   install -Dm644 offlineimap.conf 
${pkgdir}/usr/share/offlineimap/offlineimap.conf
+   install -Dm644 offlineimap.conf.minimal 
${pkgdir}/usr/share/offlineimap/offlineimap.conf.minimal
+}

Copied: offlineimap/repos/community-any/offlineimap.changelog (from rev 111928, 
offlineimap/trunk/offlineimap.changelog)
===
--- offlineimap.changelog   (rev 0)
+++ offlineimap.changelog   2014-05-26 21:56:41 UTC (rev 111929)
@@ -0,0 +1,61 @@
+2014-05-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.6-1
+
+2012-06-03 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.4-1
+
+2012-01-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.2-1
+
+2012-01-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.1.2-1
+
+2012-01-06 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.0-1
+
+2011-12-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.4.2-1
+
+2011-11-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.4.0-1
+
+2011-08-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.3.4-1
+
+2011-05-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.3.3-1
+
+011-02-23 Jaroslav Lichtblau 

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

2014-05-26 Thread Jaroslav Lichtblau
Date: Monday, May 26, 2014 @ 23:56:32
  Author: jlichtblau
Revision: 111928

upgpkg: offlineimap 6.5.6-1

Added:
  offlineimap/trunk/offlineimap.changelog
Modified:
  offlineimap/trunk/PKGBUILD

---+
 PKGBUILD  |4 +--
 offlineimap.changelog |   61 
 2 files changed, 63 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 20:42:27 UTC (rev 111927)
+++ PKGBUILD2014-05-26 21:56:32 UTC (rev 111928)
@@ -5,7 +5,7 @@
 # Contributor: mucknert muckn...@gmx.net
 
 pkgname=offlineimap
-pkgver=6.5.5
+pkgver=6.5.6
 pkgrel=1
 pkgdesc='Synchronizes emails between two repositories'
 arch=('any')
@@ -14,7 +14,7 @@
 depends=('python2')
 makedepends=('python2-docutils')
 source=(https://github.com/OfflineIMAP/offlineimap/archive/v${pkgver}.tar.gz;)
-sha1sums=('8cf4b1dfe98f14d51d8e331dd7393accc9320ac7')
+sha1sums=('cced67060be2922ca3ce056839b2aa1fe6b776a1')
 
 prepare() {
cd ${srcdir}/${pkgname}-${pkgver}

Added: offlineimap.changelog
===
--- offlineimap.changelog   (rev 0)
+++ offlineimap.changelog   2014-05-26 21:56:32 UTC (rev 111928)
@@ -0,0 +1,61 @@
+2014-05-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.6-1
+
+2012-06-03 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.4-1
+
+2012-01-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.2-1
+
+2012-01-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.1.2-1
+
+2012-01-06 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.5.0-1
+
+2011-12-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.4.2-1
+
+2011-11-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.4.0-1
+
+2011-08-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.3.4-1
+
+2011-05-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.3.3-1
+
+011-02-23 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.3.2-1
+
+2011-01-22 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * offlineimap 6.3.1-1
+
+2010-10-03 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 6.2.0.2
+
+2010-06-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * FS#19737 fixed in trunk
+
+2009-08-16 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 6.2.0
+
+2009-07-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 6.1.2
+
+2009-07-11 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 6.1.0
+
+2009-03-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Updated to reflect change to python2.6
+
+2008-02-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Source path changed, updated
+
+2008-08-31 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 6.0.3
+
+2008-08-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * Update to major release 6.0.2
+   * Added man page from Debian's .deb package
+



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

2014-05-26 Thread Daniel Micay
Date: Tuesday, May 27, 2014 @ 00:23:44
  Author: thestinger
Revision: 111930

fix checksums

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 21:56:41 UTC (rev 111929)
+++ PKGBUILD2014-05-26 22:23:44 UTC (rev 111930)
@@ -58,7 +58,7 @@
 '79359454c9d8446eb55add2b1cdbf8332bd67dafb01fefb5b1ca090225f64d18'
 'f2a5e22c1ba6e9b8a32a7bd4a5327ee95538aa10edcee3cd12578f8ff49bf6be'
 '384dd13fd4248fd6809da8c6ae29ced55d4a5cacc33ac2ae7522093ec0fb26d4'
-'19e59be36d3649fa72f93dc2a942df711935e7cb695632c4818f983363806eca')
+'e734ac2a6e865b70dbe1e55ce55a5bd1b1e0cedea903c6341b9cfbabe420c763')
 
 _kernelname=${pkgbase#linux}
 



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

2014-05-26 Thread Anatol Pomozov
Date: Tuesday, May 27, 2014 @ 00:24:43
  Author: anatolik
Revision: 111931

upgpkg: v8 3.25.28.16-1

Modified:
  v8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 22:23:44 UTC (rev 111930)
+++ PKGBUILD2014-05-26 22:24:43 UTC (rev 111931)
@@ -6,7 +6,7 @@
 
 pkgname=v8
 # use http://omahaproxy.appspot.com/ to find stable v8 version
-pkgver=3.24.35.33
+pkgver=3.25.28.16
 pkgrel=1
 pkgdesc='Fast and modern Javascript engine'
 arch=(i686 x86_64)
@@ -17,7 +17,7 @@
 # unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
 v8.pc)
-sha256sums=('ebde3d100aa61ee6cdff436ef8cc9291b99f0c246afddd67120838f1b85871ec'
+sha256sums=('0bc398066499fb8d927bdd9af0fc253da4d9a9b21253c8f8eaa9ef72a9e15d96'
 '2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d')
 
 [[ $CARCH = 'i686' ]]ARCH=ia32



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

2014-05-26 Thread Anatol Pomozov
Date: Tuesday, May 27, 2014 @ 00:25:34
  Author: anatolik
Revision: 111932

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

Added:
  v8/repos/community-i686/PKGBUILD
(from rev 111931, v8/trunk/PKGBUILD)
  v8/repos/community-i686/v8.pc
(from rev 111931, v8/trunk/v8.pc)
  v8/repos/community-x86_64/PKGBUILD
(from rev 111931, v8/trunk/PKGBUILD)
  v8/repos/community-x86_64/v8.pc
(from rev 111931, v8/trunk/v8.pc)
Deleted:
  v8/repos/community-i686/PKGBUILD
  v8/repos/community-i686/v8.pc
  v8/repos/community-x86_64/PKGBUILD
  v8/repos/community-x86_64/v8.pc

---+
 /PKGBUILD |  148 
 /v8.pc|   20 +
 community-i686/PKGBUILD   |   74 --
 community-i686/v8.pc  |   10 --
 community-x86_64/PKGBUILD |   74 --
 community-x86_64/v8.pc|   10 --
 6 files changed, 168 insertions(+), 168 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 22:24:43 UTC (rev 111931)
+++ community-i686/PKGBUILD 2014-05-26 22:25:34 UTC (rev 111932)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: tocer tocer.d...@gmail.com
-
-pkgname=v8
-# use http://omahaproxy.appspot.com/ to find stable v8 version
-pkgver=3.24.35.33
-pkgrel=1
-pkgdesc='Fast and modern Javascript engine'
-arch=(i686 x86_64)
-url='http://code.google.com/p/v8'
-license=(BSD)
-depends=(readline icu)
-makedepends=(subversion python2)
-# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
-v8.pc)
-sha256sums=('ebde3d100aa61ee6cdff436ef8cc9291b99f0c246afddd67120838f1b85871ec'
-'2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d')
-
-[[ $CARCH = 'i686' ]]ARCH=ia32
-[[ $CARCH = 'x86_64' ]]  ARCH=x64
-
-prepare() {
-  cd v8-$pkgver
-
-  # we do not need icu sources, just one icu.gyp
-  sed -e 's|\bthird_party/icu --revision |--depth=files third_party/icu 
--revision |' -i Makefile
-  make dependencies
-
-  find build/ test/ tools/ src/ -type f -exec \
-sed -e 's_^#!/usr/bin/env python$_2_' \
--e 's_^#!/usr/bin/python$_2_' \
--e s_'python'_'python2'_ -i {} \;
-
-  sed 's/\bpython\b/python2/' -i Makefile build/gyp/gyp
-
-  sed s/@VERSION@/$pkgver/g -i $srcdir/v8.pc
-}
-
-build() {
-  cd v8-$pkgver
-
-  build/gyp_v8 -Dv8_enable_i18n_support=1 -Duse_system_icu=1 
-Dconsole=readline -Dcomponent=shared_library -Dv8_target_arch=$ARCH -Dwerror= 
--generator-output=out -f make
-
-  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release mksnapshot.$ARCH
-  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release
-}
-
-check() {
-  cd v8-$pkgver
-  # A number of tests are failing. Figure out what happens and then enable 
tests.
-  # LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py --no-presubmit 
--outdir=out --buildbot --arch=$ARCH --mode=Release # --progress=dots
-}
-
-package() {
-  cd v8-$pkgver
-
-  install -Dm755 out/Release/d8 $pkgdir/usr/bin/d8
-  install -Dm755 out/Release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so
-
-  # V8 has several header files and ideally if it had its own folder in 
/usr/include
-  # But doing it here will break all users. Ideally if they use provided 
pkgconfig file.
-  install -d $pkgdir/usr/include
-  install -Dm644 include/*.h $pkgdir/usr/include
-
-  install -d $pkgdir/usr/lib/pkgconfig
-  install -m644 $srcdir/v8.pc $pkgdir/usr/lib/pkgconfig
-
-  install -d $pkgdir/usr/share/licenses/v8
-  install -m644 LICENSE* $pkgdir/usr/share/licenses/v8
-}

Copied: v8/repos/community-i686/PKGBUILD (from rev 111931, v8/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 22:25:34 UTC (rev 111932)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: tocer tocer.d...@gmail.com
+
+pkgname=v8
+# use http://omahaproxy.appspot.com/ to find stable v8 version
+pkgver=3.25.28.16
+pkgrel=1
+pkgdesc='Fast and modern Javascript engine'
+arch=(i686 x86_64)
+url='http://code.google.com/p/v8'
+license=(BSD)
+depends=(readline icu)
+makedepends=(subversion python2)
+# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
+v8.pc)
+sha256sums=('0bc398066499fb8d927bdd9af0fc253da4d9a9b21253c8f8eaa9ef72a9e15d96'
+

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

2014-05-26 Thread Daniel Micay
Date: Tuesday, May 27, 2014 @ 00:29:08
  Author: thestinger
Revision: 111933

upgpkg: paxd 5-1

Modified:
  paxd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-26 22:25:34 UTC (rev 111932)
+++ PKGBUILD2014-05-26 22:29:08 UTC (rev 111933)
@@ -1,6 +1,6 @@
 # Maintainer: Daniel Micay danielmi...@gmail.com
 pkgname=paxd
-pkgver=4
+pkgver=5
 pkgrel=1
 pkgdesc='PaX exception daemon'
 arch=(i686 x86_64)



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

2014-05-26 Thread Daniel Micay
Date: Tuesday, May 27, 2014 @ 00:29:36
  Author: thestinger
Revision: 111934

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

Added:
  paxd/repos/community-i686/10-enable-pax.conf
(from rev 111933, paxd/trunk/10-enable-pax.conf)
  paxd/repos/community-i686/PKGBUILD
(from rev 111933, paxd/trunk/PKGBUILD)
  paxd/repos/community-x86_64/10-enable-pax.conf
(from rev 111933, paxd/trunk/10-enable-pax.conf)
  paxd/repos/community-x86_64/PKGBUILD
(from rev 111933, paxd/trunk/PKGBUILD)
Deleted:
  paxd/repos/community-i686/10-enable-pax.conf
  paxd/repos/community-i686/PKGBUILD
  paxd/repos/community-x86_64/10-enable-pax.conf
  paxd/repos/community-x86_64/PKGBUILD

-+
 /10-enable-pax.conf |4 ++
 /PKGBUILD   |   54 ++
 community-i686/10-enable-pax.conf   |2 -
 community-i686/PKGBUILD |   27 -
 community-x86_64/10-enable-pax.conf |2 -
 community-x86_64/PKGBUILD   |   27 -
 6 files changed, 58 insertions(+), 58 deletions(-)

Deleted: community-i686/10-enable-pax.conf
===
--- community-i686/10-enable-pax.conf   2014-05-26 22:29:08 UTC (rev 111933)
+++ community-i686/10-enable-pax.conf   2014-05-26 22:29:36 UTC (rev 111934)
@@ -1,2 +0,0 @@
-# Disable PaX soft mode (set earlier by 05-grsecurity.conf)
-kernel.pax.softmode = 0

Copied: paxd/repos/community-i686/10-enable-pax.conf (from rev 111933, 
paxd/trunk/10-enable-pax.conf)
===
--- community-i686/10-enable-pax.conf   (rev 0)
+++ community-i686/10-enable-pax.conf   2014-05-26 22:29:36 UTC (rev 111934)
@@ -0,0 +1,2 @@
+# Disable PaX soft mode (set earlier by 05-grsecurity.conf)
+kernel.pax.softmode = 0

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-26 22:29:08 UTC (rev 111933)
+++ community-i686/PKGBUILD 2014-05-26 22:29:36 UTC (rev 111934)
@@ -1,27 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=paxd
-pkgver=4
-pkgrel=1
-pkgdesc='PaX exception daemon'
-arch=(i686 x86_64)
-url='https://github.com/thestinger/paxd/'
-license=(MIT)
-depends=(glibc)
-makedepends=(git)
-source=(git://github.com/thestinger/paxd#tag=$pkgver 10-enable-pax.conf)
-md5sums=('SKIP'
- 'a40677d2cd39ada4c2560927c67e0ea2')
-backup=(etc/paxd.conf)
-
-build() {
-  cd $pkgname
-  make CC=gcc
-}
-
-package() {
-  cd $pkgname
-  mkdir -p $pkgdir/usr/lib/systemd/system/sysinit.target.wants
-  make PREFIX=/usr DESTDIR=$pkgdir install
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 ../10-enable-pax.conf 
$pkgdir/etc/sysctl.d/10-enable-pax.conf
-}

Copied: paxd/repos/community-i686/PKGBUILD (from rev 111933, 
paxd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-26 22:29:36 UTC (rev 111934)
@@ -0,0 +1,27 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=paxd
+pkgver=5
+pkgrel=1
+pkgdesc='PaX exception daemon'
+arch=(i686 x86_64)
+url='https://github.com/thestinger/paxd/'
+license=(MIT)
+depends=(glibc)
+makedepends=(git)
+source=(git://github.com/thestinger/paxd#tag=$pkgver 10-enable-pax.conf)
+md5sums=('SKIP'
+ 'a40677d2cd39ada4c2560927c67e0ea2')
+backup=(etc/paxd.conf)
+
+build() {
+  cd $pkgname
+  make CC=gcc
+}
+
+package() {
+  cd $pkgname
+  mkdir -p $pkgdir/usr/lib/systemd/system/sysinit.target.wants
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 ../10-enable-pax.conf 
$pkgdir/etc/sysctl.d/10-enable-pax.conf
+}

Deleted: community-x86_64/10-enable-pax.conf
===
--- community-x86_64/10-enable-pax.conf 2014-05-26 22:29:08 UTC (rev 111933)
+++ community-x86_64/10-enable-pax.conf 2014-05-26 22:29:36 UTC (rev 111934)
@@ -1,2 +0,0 @@
-# Disable PaX soft mode (set earlier by 05-grsecurity.conf)
-kernel.pax.softmode = 0

Copied: paxd/repos/community-x86_64/10-enable-pax.conf (from rev 111933, 
paxd/trunk/10-enable-pax.conf)
===
--- community-x86_64/10-enable-pax.conf (rev 0)
+++ community-x86_64/10-enable-pax.conf 2014-05-26 22:29:36 UTC (rev 111934)
@@ -0,0 +1,2 @@
+# Disable PaX soft mode (set earlier by 05-grsecurity.conf)
+kernel.pax.softmode = 0

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-26 22:29:08 UTC (rev 111933)
+++ community-x86_64/PKGBUILD   2014-05-26 22:29:36 UTC (rev 111934)
@@ -1,27 +0,0 @@
-# 

[arch-commits] Commit in lyx/repos/extra-x86_64 (8 files)

2014-05-26 Thread Eric Bélanger
Date: Tuesday, May 27, 2014 @ 02:39:18
  Author: eric
Revision: 213619

archrelease: copy trunk to extra-x86_64

Added:
  lyx/repos/extra-x86_64/PKGBUILD
(from rev 213618, lyx/trunk/PKGBUILD)
  lyx/repos/extra-x86_64/lyx.desktop
(from rev 213618, lyx/trunk/lyx.desktop)
  lyx/repos/extra-x86_64/lyx.install
(from rev 213618, lyx/trunk/lyx.install)
  lyx/repos/extra-x86_64/lyxrc.dist
(from rev 213618, lyx/trunk/lyxrc.dist)
Deleted:
  lyx/repos/extra-x86_64/PKGBUILD
  lyx/repos/extra-x86_64/lyx.desktop
  lyx/repos/extra-x86_64/lyx.install
  lyx/repos/extra-x86_64/lyxrc.dist

-+
 PKGBUILD|  102 +-
 lyx.desktop |   28 +++
 lyx.install |   30 -
 lyxrc.dist  |   28 +++
 4 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 21:36:48 UTC (rev 213618)
+++ PKGBUILD2014-05-27 00:39:18 UTC (rev 213619)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=lyx
-pkgver=2.1.0
-pkgrel=1
-pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
-arch=('i686' 'x86_64')
-url=http://www.lyx.org;
-depends=('qt4' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes' 'file')
-makedepends=('boost' 'bc')
-optdepends=('rcs: built-in version control system'
-'texlive-latexextra: float wrap support')
-license=('GPL')
-backup=('etc/lyx/lyxrc.dist')
-install=lyx.install
-options=('emptydirs')
-source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
-lyx.desktop lyxrc.dist)
-sha1sums=('8e31c4bb34db0424128ff5d35849805835010b31'
-  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
-  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
-  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  export CXXFLAGS=$CXXFLAGS -fpermissive
-  ./configure --prefix=/usr \
---with-frontend=qt4 --without-included-boost \
---without-included-mythes
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # install desktop entry
-  install -Dm644 ${srcdir}/lyx.desktop \
-${pkgdir}/usr/share/applications/lyx.desktop
-  install -Dm644 lib/images/lyx.png \
-${pkgdir}/usr/share/pixmaps/lyx.png
-  # install default config file
-  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
-  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
-}

Copied: lyx/repos/extra-x86_64/PKGBUILD (from rev 213618, lyx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-27 00:39:18 UTC (rev 213619)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=lyx
+pkgver=2.1.0
+pkgrel=1
+pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
+arch=('i686' 'x86_64')
+url=http://www.lyx.org;
+depends=('qt4' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes' 'file')
+makedepends=('boost' 'bc')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+source=(ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+sha1sums=('8e31c4bb34db0424128ff5d35849805835010b31'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  export CXXFLAGS=$CXXFLAGS -fpermissive
+  ./configure --prefix=/usr \
+--with-frontend=qt4 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # install desktop entry
+  install -Dm644 ${srcdir}/lyx.desktop \
+${pkgdir}/usr/share/applications/lyx.desktop
+  install -Dm644 lib/images/lyx.png \
+${pkgdir}/usr/share/pixmaps/lyx.png
+  # install default config file
+  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
+  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
+}

Deleted: lyx.desktop
===
--- lyx.desktop 2014-05-26 21:36:48 UTC (rev 213618)
+++ lyx.desktop 2014-05-27 00:39:18 UTC (rev 213619)
@@ -1,14 +0,0 @@
-[Desktop 

[arch-commits] Commit in lyx/repos/extra-i686 (8 files)

2014-05-26 Thread Eric Bélanger
Date: Tuesday, May 27, 2014 @ 02:42:44
  Author: eric
Revision: 213620

archrelease: copy trunk to extra-i686

Added:
  lyx/repos/extra-i686/PKGBUILD
(from rev 213619, lyx/trunk/PKGBUILD)
  lyx/repos/extra-i686/lyx.desktop
(from rev 213619, lyx/trunk/lyx.desktop)
  lyx/repos/extra-i686/lyx.install
(from rev 213619, lyx/trunk/lyx.install)
  lyx/repos/extra-i686/lyxrc.dist
(from rev 213619, lyx/trunk/lyxrc.dist)
Deleted:
  lyx/repos/extra-i686/PKGBUILD
  lyx/repos/extra-i686/lyx.desktop
  lyx/repos/extra-i686/lyx.install
  lyx/repos/extra-i686/lyxrc.dist

-+
 PKGBUILD|  102 +-
 lyx.desktop |   28 +++
 lyx.install |   30 -
 lyxrc.dist  |   28 +++
 4 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-27 00:39:18 UTC (rev 213619)
+++ PKGBUILD2014-05-27 00:42:44 UTC (rev 213620)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=lyx
-pkgver=2.1.0
-pkgrel=1
-pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
-arch=('i686' 'x86_64')
-url=http://www.lyx.org;
-depends=('qt4' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes' 'file')
-makedepends=('boost' 'bc')
-optdepends=('rcs: built-in version control system'
-'texlive-latexextra: float wrap support')
-license=('GPL')
-backup=('etc/lyx/lyxrc.dist')
-install=lyx.install
-options=('emptydirs')
-source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
-lyx.desktop lyxrc.dist)
-sha1sums=('8e31c4bb34db0424128ff5d35849805835010b31'
-  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
-  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
-  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  export CXXFLAGS=$CXXFLAGS -fpermissive
-  ./configure --prefix=/usr \
---with-frontend=qt4 --without-included-boost \
---without-included-mythes
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # install desktop entry
-  install -Dm644 ${srcdir}/lyx.desktop \
-${pkgdir}/usr/share/applications/lyx.desktop
-  install -Dm644 lib/images/lyx.png \
-${pkgdir}/usr/share/pixmaps/lyx.png
-  # install default config file
-  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
-  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
-}

Copied: lyx/repos/extra-i686/PKGBUILD (from rev 213619, lyx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-27 00:42:44 UTC (rev 213620)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=lyx
+pkgver=2.1.0
+pkgrel=1
+pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
+arch=('i686' 'x86_64')
+url=http://www.lyx.org;
+depends=('qt4' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes' 'file')
+makedepends=('boost' 'bc')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+source=(ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+sha1sums=('8e31c4bb34db0424128ff5d35849805835010b31'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  export CXXFLAGS=$CXXFLAGS -fpermissive
+  ./configure --prefix=/usr \
+--with-frontend=qt4 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # install desktop entry
+  install -Dm644 ${srcdir}/lyx.desktop \
+${pkgdir}/usr/share/applications/lyx.desktop
+  install -Dm644 lib/images/lyx.png \
+${pkgdir}/usr/share/pixmaps/lyx.png
+  # install default config file
+  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
+  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
+}

Deleted: lyx.desktop
===
--- lyx.desktop 2014-05-27 00:39:18 UTC (rev 213619)
+++ lyx.desktop 2014-05-27 00:42:44 UTC (rev 213620)
@@ -1,14 +0,0 @@
-[Desktop Entry]
-Version=1.0

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

2014-05-26 Thread Eric Bélanger
Date: Tuesday, May 27, 2014 @ 03:04:02
  Author: eric
Revision: 213621

upgpkg: mpg123 1.20.0-1

Upstream update

Modified:
  mpg123/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-27 00:42:44 UTC (rev 213620)
+++ PKGBUILD2014-05-27 01:04:02 UTC (rev 213621)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=mpg123
-pkgver=1.19.0
+pkgver=1.20.0
 pkgrel=1
 pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 'jack: for jack audio support'
 'libpulse: for pulse audio support')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('835f8ae489b41ae69fa8c76a0b1e5ee5495ef0ae'
+sha1sums=('f8060769e60c88fa2debf6c998773880e57b31a6'
   'SKIP')
 
 build() {



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

2014-05-26 Thread Eric Bélanger
Date: Tuesday, May 27, 2014 @ 03:08:45
  Author: eric
Revision: 213622

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-27 01:04:02 UTC (rev 213621)
+++ extra-i686/PKGBUILD 2014-05-27 01:08:45 UTC (rev 213622)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=mpg123
-pkgver=1.19.0
-pkgrel=1
-pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3
-arch=('i686' 'x86_64')
-url=http://sourceforge.net/projects/mpg123;
-license=('LGPL2.1')
-depends=('libltdl' 'alsa-lib')
-makedepends=('sdl' 'jack' 'libpulse')
-optdepends=('sdl: for sdl audio support'
-'jack: for jack audio support'
-'libpulse: for pulse audio support')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('835f8ae489b41ae69fa8c76a0b1e5ee5495ef0ae'
-  'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-int-quality --with-module-suffix=.so \
---with-audio=alsa oss sdl jack pulse
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 scripts/conplay ${pkgdir}/usr/bin/conplay
-}

Copied: mpg123/repos/extra-i686/PKGBUILD (from rev 213621, 
mpg123/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-27 01:08:45 UTC (rev 213622)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=mpg123
+pkgver=1.20.0
+pkgrel=1
+pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/mpg123;
+license=('LGPL2.1')
+depends=('libltdl' 'alsa-lib')
+makedepends=('sdl' 'jack' 'libpulse')
+optdepends=('sdl: for sdl audio support'
+'jack: for jack audio support'
+'libpulse: for pulse audio support')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha1sums=('f8060769e60c88fa2debf6c998773880e57b31a6'
+  'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-int-quality --with-module-suffix=.so \
+--with-audio=alsa oss sdl jack pulse
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 scripts/conplay ${pkgdir}/usr/bin/conplay
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-27 01:04:02 UTC (rev 213621)
+++ extra-x86_64/PKGBUILD   2014-05-27 01:08:45 UTC (rev 213622)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=mpg123
-pkgver=1.19.0
-pkgrel=1
-pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3
-arch=('i686' 'x86_64')
-url=http://sourceforge.net/projects/mpg123;
-license=('LGPL2.1')
-depends=('libltdl' 'alsa-lib')
-makedepends=('sdl' 'jack' 'libpulse')
-optdepends=('sdl: for sdl audio support'
-'jack: for jack audio support'
-'libpulse: for pulse audio support')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha1sums=('835f8ae489b41ae69fa8c76a0b1e5ee5495ef0ae'
-  'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-int-quality --with-module-suffix=.so \
---with-audio=alsa oss sdl jack pulse
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 scripts/conplay ${pkgdir}/usr/bin/conplay
-}

Copied: mpg123/repos/extra-x86_64/PKGBUILD (from rev 213621, 
mpg123/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-27 01:08:45 UTC (rev 213622)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=mpg123
+pkgver=1.20.0
+pkgrel=1
+pkgdesc=A console based real time MPEG Audio Player for Layer 1, 2 and 3
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/mpg123;
+license=('LGPL2.1')
+depends=('libltdl' 'alsa-lib')
+makedepends=('sdl' 'jack' 'libpulse')
+optdepends=('sdl: for sdl audio support'
+'jack: for jack audio