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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:09:11
  Author: foutrelis
Revision: 252870

C++11 ABI rebuild

Modified:
  geeqie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:06:32 UTC (rev 252869)
+++ PKGBUILD2015-12-06 17:09:11 UTC (rev 252870)
@@ -4,7 +4,7 @@
 
 pkgname=geeqie
 pkgver=1.2.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A lightweight image browser and viewer"
 arch=('i686' 'x86_64')
 url="http://www.geeqie.org/;


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:07:38
  Author: foutrelis
Revision: 148936

C++11 ABI rebuild

Modified:
  rss-glx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:07:38 UTC (rev 148935)
+++ PKGBUILD2015-12-06 17:07:38 UTC (rev 148936)
@@ -5,7 +5,7 @@
 
 pkgname=rss-glx
 pkgver=0.9.1
-pkgrel=22
+pkgrel=23
 pkgdesc="The Really Slick Screensavers port to GLX"
 arch=('i686' 'x86_64')
 url="http://rss-glx.sourceforge.net/;


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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 18:17:48
  Author: fyan
Revision: 148954

C++11 ABI rebuild

Modified:
  pekwm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:17:38 UTC (rev 148953)
+++ PKGBUILD2015-12-06 17:17:48 UTC (rev 148954)
@@ -5,7 +5,7 @@
 
 pkgname=pekwm
 pkgver=0.1.17
-pkgrel=2
+pkgrel=3
 pkgdesc='Small, fast, functional, and flexible window manager'
 arch=('x86_64' 'i686')
 license=('GPL')


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:17:49
  Author: bpiotrowski
Revision: 148955

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

Added:
  lash/repos/community-staging-i686/
  lash/repos/community-staging-i686/PKGBUILD
(from rev 148953, lash/trunk/PKGBUILD)
  lash/repos/community-staging-i686/lash.install
(from rev 148953, lash/trunk/lash.install)
  lash/repos/community-staging-i686/makefile.patch
(from rev 148953, lash/trunk/makefile.patch)
  lash/repos/community-staging-x86_64/
  lash/repos/community-staging-x86_64/PKGBUILD
(from rev 148953, lash/trunk/PKGBUILD)
  lash/repos/community-staging-x86_64/lash.install
(from rev 148953, lash/trunk/lash.install)
  lash/repos/community-staging-x86_64/makefile.patch
(from rev 148953, lash/trunk/makefile.patch)

-+
 community-staging-i686/PKGBUILD |   39 ++
 community-staging-i686/lash.install |6 
 community-staging-i686/makefile.patch   |   14 ++
 community-staging-x86_64/PKGBUILD   |   39 ++
 community-staging-x86_64/lash.install   |6 
 community-staging-x86_64/makefile.patch |   14 ++
 6 files changed, 118 insertions(+)

Copied: lash/repos/community-staging-i686/PKGBUILD (from rev 148953, 
lash/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:17:49 UTC (rev 148955)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: DonVla 
+
+pkgname=lash
+pkgver=0.6.0~rc2
+_relver=0.6.0.594
+pkgrel=9
+pkgdesc="A session management system for JACK and ALSA"
+arch=('i686' 'x86_64')
+#url="http://lash-audio.org;
+url="http://lash.nongnu.org/;
+license=('GPL')
+depends=('dbus' 'gtk2' 'jack' 'libxml2' 'python2')
+install=$pkgname.install
+source=("http://download.savannah.gnu.org/releases/lash/${pkgname}-${pkgver}.tar.bz2;
+   "makefile.patch")
+md5sums=('af1dc4f4ceb284b1b0845de4f4c2fe47'
+ '24ceb7e3d008c25e1490102983165612')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${_relver}"
+  patch -p0 < "${srcdir}/makefile.patch"
+  # Python2 fixes
+  export PYTHON="python2"
+  sed -i "s#env python#&2#" clients/lash_control
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${_relver}"
+  export LDFLAGS="-ldl -lm"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${_relver}"
+  make DESTDIR=${pkgdir} install
+}

Copied: lash/repos/community-staging-i686/lash.install (from rev 148953, 
lash/trunk/lash.install)
===
--- community-staging-i686/lash.install (rev 0)
+++ community-staging-i686/lash.install 2015-12-06 17:17:49 UTC (rev 148955)
@@ -0,0 +1,6 @@
+post_install() {
+  printf "\n"
+  printf "==> You might need to add following line to your 
/etc/services(without quotes):\n"
+  printf "==> \"lash   14541/tcp   # LASH client/server protocol\"\n"
+  printf "\n"
+}

Copied: lash/repos/community-staging-i686/makefile.patch (from rev 148953, 
lash/trunk/makefile.patch)
===
--- community-staging-i686/makefile.patch   (rev 0)
+++ community-staging-i686/makefile.patch   2015-12-06 17:17:49 UTC (rev 
148955)
@@ -0,0 +1,14 @@
+--- docs/Makefile.in.orig  2008-11-09 22:45:28.0 +0100
 docs/Makefile.in   2011-07-23 17:12:26.0 +0200
+@@ -527,9 +527,9 @@
+ @HAVE_TEXI2HTML_TRUE@   mkdir -lash-manual-html-split; \
+ @HAVE_TEXI2HTML_TRUE@ fi
+ @HAVE_TEXI2HTML_TRUE@ cd lash-manual-html-one-page && \
+-@HAVE_TEXI2HTML_TRUE@   texi2html --number 
../$(top_srcdir)/docs/lash-manual.texi
++@HAVE_TEXI2HTML_TRUE@   texi2html --number-footnotes --number-sections 
../$(top_srcdir)/docs/lash-manual.texi
+ @HAVE_TEXI2HTML_TRUE@ cd lash-manual-html-split && \
+-@HAVE_TEXI2HTML_TRUE@   texi2html --number --split=chapter 
../$(top_srcdir)/docs/lash-manual.texi
++@HAVE_TEXI2HTML_TRUE@   texi2html --number-footnotes --number-sections 
--split=chapter ../$(top_srcdir)/docs/lash-manual.texi
+ @HAVE_TEXI2HTML_TRUE@ touch html-manual-stamp
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.

Copied: lash/repos/community-staging-x86_64/PKGBUILD (from rev 148953, 
lash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:17:49 UTC (rev 148955)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: DonVla 
+
+pkgname=lash
+pkgver=0.6.0~rc2

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:17:32
  Author: foutrelis
Revision: 148952

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

Added:
  botan/repos/community-staging-i686/
  botan/repos/community-staging-i686/PKGBUILD
(from rev 148951, botan/trunk/PKGBUILD)
  botan/repos/community-staging-i686/botan.key
(from rev 148951, botan/trunk/botan.key)
  botan/repos/community-staging-x86_64/
  botan/repos/community-staging-x86_64/PKGBUILD
(from rev 148951, botan/trunk/PKGBUILD)
  botan/repos/community-staging-x86_64/botan.key
(from rev 148951, botan/trunk/botan.key)

+
 community-staging-i686/PKGBUILD|   48 +++
 community-staging-i686/botan.key   |   35 +
 community-staging-x86_64/PKGBUILD  |   48 +++
 community-staging-x86_64/botan.key |   35 +
 4 files changed, 166 insertions(+)

Copied: botan/repos/community-staging-i686/PKGBUILD (from rev 148951, 
botan/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:17:32 UTC (rev 148952)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: d'Ronin 
+# Contributor: Hexchain Tong 
+
+pkgname=botan
+pkgver=1.11.24
+pkgrel=2
+pkgdesc='Crypto library written in C++'
+license=('BSD')
+arch=('x86_64' 'i686')
+url='http://botan.randombit.net/'
+depends=('gcc-libs' 'sh' 'asio')
+makedepends=('python' 'asio' 'git')
+source=("http://botan.randombit.net/releases/Botan-${pkgver}.tgz"{,.asc})
+#source=("git://github.com/randombit/botan.git#commit=8e19ecf11c")
+md5sums=('9281c80751d066bf09d4303223325761'
+ 'SKIP')
+# Botan Distribution Key. To import: gpg --import botan.key
+validpgpkeys=('621DAF6411E1851C4CF9A2E16211EBF1EFBADFBC')
+
+build() {
+  cd "${pkgname^}-$pkgver"
+
+  python configure.py \
+--prefix=/usr \
+--destdir="$pkgdir/usr"
+  make
+}
+
+check() {
+  cd "${pkgname^}-$pkgver"
+
+  ./botan-test
+}
+
+package() {
+  cd "${pkgname^}-$pkgver"
+
+  make DESTDIR="$pkgdir/usr" install
+  find "$pkgdir/usr/share/doc" -type f -exec chmod 0644 {} \;
+  install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: botan.randombit.net
+# vim:set ts=2 sw=2 et:

Copied: botan/repos/community-staging-i686/botan.key (from rev 148951, 
botan/trunk/botan.key)
===
--- community-staging-i686/botan.key(rev 0)
+++ community-staging-i686/botan.key2015-12-06 17:17:32 UTC (rev 148952)
@@ -0,0 +1,35 @@
+pub   2048R/EFBADFBC 2004-10-30
+  Key fingerprint = 621D AF64 11E1 851C 4CF9  A2E1 6211 EBF1 EFBA DFBC
+uid  Botan Distribution Key
+
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: GnuPG v2.0.17 (GNU/Linux)
+
+mQELBEGD1j0BCADHxPJkPcjJE+4Dlisx2hVc0Dj6JI1MSLrkM8R+2bOhVUSferxP
+T1EMPhfrAdOHTAloyvRThJztnZsNKqfLL49GGcBLdEGAVNks1pG37Teze5Lx1XIu
+zJFrozL2sqBy5C6nHpFgd1tcD68Rah2wp0u2cR9owXf1IqKdEfuo661+MTv7wTB1
+4hKV75nB7ZO6676SEZRILYM+7RJwKAKEmEPJc6hEf94VXn9ecNzaTlHgYkjhz9db
+LOd3od9XvuUw+LMR1dwBqMxbvR90MiXjbedDEkbArcZB9YOAIvEX/lC3qaW4XJt4
+iwHWl/YVZEfALcvQywe2CDrH5hO794wd9MpBAAYptBZCb3RhbiBEaXN0cmlidXRp
+b24gS2V5iQEqBBMBAgAUAhsDAh4BAheABQJKfFpnBBUKCQgACgkQYhHr8e+637xk
+PQf/aOi78XenwwvFrwXOVIVTdZIf8rK1zJksf26h09UD8uVV6z5iiTcpn86+eN9p
+6Ar8IH3tD+JuFnPSwZ/r9MNC2XZwenYo4Gb14jqM6/9hBe328vmeM4Y1G7bD4HrL
+kgV5WEyokqm3zbp3FBLr3Vh68TAC5JB9aHevra+cCA2u3vBNI3YUM5z4TdO150P3
+J00whkqImQEUni8bgxvllBLFM+uhucsX3HZWkoDEpotbg8yd0bqMkiPEyMr1OnJq
+eDVDMrB5wnyLgLFfRAAw3mopM0C1PNOAHr/BIYiaDHX2OwnOfep8rMDoRVf2Ge0D
+DBgsJJ6LduQHLeg403SHWL2F6YkCHAQTAQIABgUCQYPWUgAKCRBcD5boTsFta+r9
+EACWVis7YcaGkKKgRB/5ox8rM36XVhMXdh/hnnGHt5rapbbRRkRHRcWU8WIcFO1A
+59+TfwNNd8gN1MEt/5aX5KHWVKHBDexJgIxm6Dm1pisYHf/dnYQPM18hmqqwNlKY
+97hFkPpHd7enrtc/SvGbQhhLXYlpwBrdMl76e9xJLnnrRQksxegGPo8cr+C9HTs1
+Lwa8zzBxyBwYBYX+0moDkDShEhuXx6mEOXrGvQanJuIvpoIwGH+62E65MbJGlwWp
+w/MAtm2jFhBIhGV0bqJCFp9zIgdNgfskBaPr0oilbuJQZqP0Iqe/6CCt4XkS51yW
+ZqxjLAFpEpvDec4PGw3witKf/koGon9X8C035+nEjLBrWy18Q91vw2USyLI+mm9d
+iMAS8pY2gomfxBO2VwYHJryZykjCYQkccRA1tHteRj4gqTObo0Ak47y5MnplTWwi
+40oP7K2cfhCRBmMioxmYES4xsHEupfRBo3xr1Jq9q0t688WTT1NXHPMPoueF9mKZ
+Cf2pa9aHsqBmWTm3sCaNQKGubCDBEUmJUyndmSatJyYM7NVYoUp6EfqMACFuTNdB
+sjKMh7aWVikQpbJDfA1BIU3lZeqgjgrghVAWkEOBfhG0IVZj+RVCJpsqoTJ8asY2
+VreArSCyr/VnLEnfuH/QpgvCiCbepo3E34DJt4SaAOO2ZohGBBARAgAGBQJMGVc1
+AAoJEKY/LL36AvvMgsoAn2G7kXd09BF7ffk1Sfh174SVrvM9AKC7+R7x0+yV3SCd
+JkkUOo3xR5cOxw==
+=1QuR
+-END PGP PUBLIC KEY BLOCK-

Copied: botan/repos/community-staging-x86_64/PKGBUILD (from rev 148951, 

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:17:23
  Author: foutrelis
Revision: 148951

C++11 ABI rebuild

Modified:
  botan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:16:30 UTC (rev 148950)
+++ PKGBUILD2015-12-06 17:17:23 UTC (rev 148951)
@@ -7,7 +7,7 @@
 
 pkgname=botan
 pkgver=1.11.24
-pkgrel=1
+pkgrel=2
 pkgdesc='Crypto library written in C++'
 license=('BSD')
 arch=('x86_64' 'i686')


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:17:38
  Author: bpiotrowski
Revision: 148953

C++11 ABI rebuild

Modified:
  lash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:17:32 UTC (rev 148952)
+++ PKGBUILD2015-12-06 17:17:38 UTC (rev 148953)
@@ -5,7 +5,7 @@
 pkgname=lash
 pkgver=0.6.0~rc2
 _relver=0.6.0.594
-pkgrel=8
+pkgrel=9
 pkgdesc="A session management system for JACK and ALSA"
 arch=('i686' 'x86_64')
 #url="http://lash-audio.org;


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:16:30
  Author: bpiotrowski
Revision: 148950

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

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

+
 community-staging-i686/PKGBUILD|   34 +++
 community-staging-i686/medit.install   |   11 ++
 community-staging-x86_64/PKGBUILD  |   34 +++
 community-staging-x86_64/medit.install |   11 ++
 4 files changed, 90 insertions(+)

Copied: medit/repos/community-staging-i686/PKGBUILD (from rev 148949, 
medit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:16:30 UTC (rev 148950)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=medit
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A GTK text editor"
+arch=('i686' 'x86_64')
+url="http://mooedit.sourceforge.net;
+options=('!emptydirs')
+license=('GPL')
+depends=('pygtk' 'libxml2' 'pcre' 'libsm' 'python2' 'gtk2' 'gcc-libs' 'gamin')
+optdepends=('ctags' 'vte: terminal emulator')
+makedepends=(pkg-config perl-xml-parser intltool gcc-objc)
+install=medit.install
+source=(http://downloads.sourceforge.net/mooedit/medit-$pkgver.tar.bz2)
+md5sums=('8388a8e275d0e1fa6cd19f7bb081279a')
+
+build() {
+  cd $srcdir/medit-$pkgver
+  export PYTHON=/usr/bin/python2
+  [ -f Makefile ] || ./configure --prefix=/usr --with-fam
+  make
+}
+
+package() {
+  cd $srcdir/medit-$pkgver
+  make DESTDIR=${pkgdir} install
+  cd ${pkgdir}/usr/share/medit-1/language-specs
+  sed -i "s|*.sh|*.sh;PKGBUILD|" sh.lang
+  rm -rf $pkgdir/usr/share/mime
+  rm -rf $pkgdir/usr/share/icons/hicolor/icon-theme.cache
+}

Copied: medit/repos/community-staging-i686/medit.install (from rev 148949, 
medit/trunk/medit.install)
===
--- community-staging-i686/medit.install(rev 0)
+++ community-staging-i686/medit.install2015-12-06 17:16:30 UTC (rev 
148950)
@@ -0,0 +1,11 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}

Copied: medit/repos/community-staging-x86_64/PKGBUILD (from rev 148949, 
medit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:16:30 UTC (rev 148950)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=medit
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A GTK text editor"
+arch=('i686' 'x86_64')
+url="http://mooedit.sourceforge.net;
+options=('!emptydirs')
+license=('GPL')
+depends=('pygtk' 'libxml2' 'pcre' 'libsm' 'python2' 'gtk2' 'gcc-libs' 'gamin')
+optdepends=('ctags' 'vte: terminal emulator')
+makedepends=(pkg-config perl-xml-parser intltool gcc-objc)
+install=medit.install
+source=(http://downloads.sourceforge.net/mooedit/medit-$pkgver.tar.bz2)
+md5sums=('8388a8e275d0e1fa6cd19f7bb081279a')
+
+build() {
+  cd $srcdir/medit-$pkgver
+  export PYTHON=/usr/bin/python2
+  [ -f Makefile ] || ./configure --prefix=/usr --with-fam
+  make
+}
+
+package() {
+  cd $srcdir/medit-$pkgver
+  make DESTDIR=${pkgdir} install
+  cd ${pkgdir}/usr/share/medit-1/language-specs
+  sed -i "s|*.sh|*.sh;PKGBUILD|" sh.lang
+  rm -rf $pkgdir/usr/share/mime
+  rm -rf $pkgdir/usr/share/icons/hicolor/icon-theme.cache
+}

Copied: medit/repos/community-staging-x86_64/medit.install (from rev 148949, 
medit/trunk/medit.install)
===
--- community-staging-x86_64/medit.install  (rev 0)
+++ community-staging-x86_64/medit.install  2015-12-06 17:16:30 UTC (rev 
148950)
@@ -0,0 +1,11 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:16:22
  Author: bpiotrowski
Revision: 148949

C++11 ABI rebuild

Modified:
  medit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:16:00 UTC (rev 148948)
+++ PKGBUILD2015-12-06 17:16:22 UTC (rev 148949)
@@ -4,7 +4,7 @@
 
 pkgname=medit
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A GTK text editor"
 arch=('i686' 'x86_64')
 url="http://mooedit.sourceforge.net;


[arch-commits] Commit in hex-a-hop/trunk (PKGBUILD)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:18:40
  Author: bpiotrowski
Revision: 148957

C++11 ABI rebuild

Modified:
  hex-a-hop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:18:14 UTC (rev 148956)
+++ PKGBUILD2015-12-06 17:18:40 UTC (rev 148957)
@@ -4,7 +4,7 @@
 
 pkgname=hex-a-hop
 pkgver=1.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Hex-a-hop is a puzzle game based on hexagonal tiles'
 arch=('i686' 'x86_64')
 url='http://hexahop.sourceforge.net/'


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

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 18:29:54
  Author: arojas
Revision: 148978

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

Added:
  ppsspp/repos/community-staging-i686/
  ppsspp/repos/community-staging-i686/PKGBUILD
(from rev 148977, ppsspp/trunk/PKGBUILD)
  ppsspp/repos/community-staging-i686/ppsspp-ffmpeg.patch
(from rev 148977, ppsspp/trunk/ppsspp-ffmpeg.patch)
  ppsspp/repos/community-staging-i686/ppsspp-gcc5.1.patch
(from rev 148977, ppsspp/trunk/ppsspp-gcc5.1.patch)
  ppsspp/repos/community-staging-i686/ppsspp.desktop
(from rev 148977, ppsspp/trunk/ppsspp.desktop)
  ppsspp/repos/community-staging-x86_64/
  ppsspp/repos/community-staging-x86_64/PKGBUILD
(from rev 148977, ppsspp/trunk/PKGBUILD)
  ppsspp/repos/community-staging-x86_64/ppsspp-ffmpeg.patch
(from rev 148977, ppsspp/trunk/ppsspp-ffmpeg.patch)
  ppsspp/repos/community-staging-x86_64/ppsspp-gcc5.1.patch
(from rev 148977, ppsspp/trunk/ppsspp-gcc5.1.patch)
  ppsspp/repos/community-staging-x86_64/ppsspp.desktop
(from rev 148977, ppsspp/trunk/ppsspp.desktop)

--+
 community-staging-i686/PKGBUILD  |   84 +++
 community-staging-i686/ppsspp-ffmpeg.patch   |  180 +
 community-staging-i686/ppsspp-gcc5.1.patch   |   40 +
 community-staging-i686/ppsspp.desktop|9 +
 community-staging-x86_64/PKGBUILD|   84 +++
 community-staging-x86_64/ppsspp-ffmpeg.patch |  180 +
 community-staging-x86_64/ppsspp-gcc5.1.patch |   40 +
 community-staging-x86_64/ppsspp.desktop  |9 +
 8 files changed, 626 insertions(+)

Copied: ppsspp/repos/community-staging-i686/PKGBUILD (from rev 148977, 
ppsspp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:29:54 UTC (rev 148978)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ben Reedy 
+# Contributor: Clement Guerin 
+# Contributor: Thiago Kenji Okada 
+
+pkgbase=ppsspp
+pkgname=('ppsspp' 'ppsspp-qt')
+pkgver=1.1.1
+pkgrel=2
+pkgdesc='A PSP emulator written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ppsspp.org/'
+license=('GPL2')
+depends=('ffmpeg' 'sdl2')
+makedepends=('cmake' 'git' 'glu' 'qt5-tools')
+source=("git+https://github.com/hrydgard/ppsspp.git#tag=v${pkgver};
+'git+https://github.com/hrydgard/ppsspp-lang.git#commit=c0db1fc'
+
'ppsspp-armips::git+https://github.com/Kingcom/armips.git#commit=a0b878f'
+'ppsspp.desktop')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'1c332702d0aeced07df7e12ba8530bc3f19a52bc76c355f6c84c141becfd46d8')
+
+prepare() {
+  cd ppsspp
+
+  for submodule in lang ext/armips; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../ppsspp-${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  for ui in sdl qt; do
+if [[ -d build-$ui ]]; then
+  rm -rf build-$ui
+fi
+mkdir build-$ui
+  done
+}
+
+build() {
+  cd ppsspp/build-sdl
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_SKIP_RPATH='TRUE' \
+-DUSE_SYSTEM_FFMPEG='TRUE'
+  make
+
+  cd ../build-qt
+
+  qmake-qt5 CONFIG+='release' CONFIG+='system_ffmpeg' ../Qt/PPSSPPQt.pro
+  make
+}
+
+package_ppsspp() {
+  conflicts=('ppsspp-qt')
+
+  cd ppsspp/build-sdl
+
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps,ppsspp}}
+  install -m 755 PPSSPPSDL "${pkgdir}"/usr/bin/ppsspp
+  cp -dr --no-preserve='ownership' assets "${pkgdir}"/usr/share/ppsspp/
+  install -m 644 ../assets/unix-icons/icon-512.svg 
"${pkgdir}"/usr/share/pixmaps/ppsspp.svg
+  install -m 644 ../../ppsspp.desktop "${pkgdir}"/usr/share/applications/
+}
+
+package_ppsspp-qt() {
+  depends+=('qt5-base')
+  provides=('ppsspp')
+  conflicts=('ppsspp')
+
+  cd ppsspp/build-qt
+
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps}}
+  install -m 755 ppsspp "${pkgdir}"/usr/bin/
+  install -m 644 ../assets/unix-icons/icon-512.svg 
"${pkgdir}"/usr/share/pixmaps/ppsspp.svg
+  install -m 644 ../../ppsspp.desktop "${pkgdir}"/usr/share/applications/
+}
+
+# vim: ts=2 sw=2 et:

Copied: ppsspp/repos/community-staging-i686/ppsspp-ffmpeg.patch (from rev 
148977, ppsspp/trunk/ppsspp-ffmpeg.patch)
===
--- community-staging-i686/ppsspp-ffmpeg.patch  (rev 0)
+++ community-staging-i686/ppsspp-ffmpeg.patch  2015-12-06 17:29:54 UTC (rev 
148978)
@@ -0,0 +1,180 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a1a2543..4d19fa4 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -394,145 +394,20 @@ 

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

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 18:29:35
  Author: arojas
Revision: 148977

C++11 ABI rebuild

Modified:
  ppsspp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:28:31 UTC (rev 148976)
+++ PKGBUILD2015-12-06 17:29:35 UTC (rev 148977)
@@ -8,7 +8,7 @@
 pkgbase=ppsspp
 pkgname=('ppsspp' 'ppsspp-qt')
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A PSP emulator written in C++'
 arch=('i686' 'x86_64')
 url='http://www.ppsspp.org/'


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:28:18
  Author: bpiotrowski
Revision: 148975

C++11 ABI rebuild

Modified:
  blobby2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:26:53 UTC (rev 148974)
+++ PKGBUILD2015-12-06 17:28:18 UTC (rev 148975)
@@ -5,7 +5,7 @@
 pkgname=blobby2
 pkgver=1.0
 arch=('x86_64' 'i686')
-pkgrel=1
+pkgrel=2
 pkgdesc="A beach ball game with blobs of goo"
 url="http://sourceforge.net/projects/blobby/;
 license=('GPL')


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:28:31
  Author: bpiotrowski
Revision: 148976

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

Added:
  blobby2/repos/community-staging-i686/
  blobby2/repos/community-staging-i686/PKGBUILD
(from rev 148975, blobby2/trunk/PKGBUILD)
  blobby2/repos/community-staging-i686/blobby2.desktop
(from rev 148975, blobby2/trunk/blobby2.desktop)
  blobby2/repos/community-staging-i686/blobby2.png
(from rev 148975, blobby2/trunk/blobby2.png)
  blobby2/repos/community-staging-i686/ostream-include.patch
(from rev 148975, blobby2/trunk/ostream-include.patch)
  blobby2/repos/community-staging-x86_64/
  blobby2/repos/community-staging-x86_64/PKGBUILD
(from rev 148975, blobby2/trunk/PKGBUILD)
  blobby2/repos/community-staging-x86_64/blobby2.desktop
(from rev 148975, blobby2/trunk/blobby2.desktop)
  blobby2/repos/community-staging-x86_64/blobby2.png
(from rev 148975, blobby2/trunk/blobby2.png)
  blobby2/repos/community-staging-x86_64/ostream-include.patch
(from rev 148975, blobby2/trunk/ostream-include.patch)

+
 community-staging-i686/PKGBUILD|   47 +++
 community-staging-i686/blobby2.desktop |   11 +
 community-staging-i686/ostream-include.patch   |   10 
 community-staging-x86_64/PKGBUILD  |   47 +++
 community-staging-x86_64/blobby2.desktop   |   11 +
 community-staging-x86_64/ostream-include.patch |   10 
 6 files changed, 136 insertions(+)

Copied: blobby2/repos/community-staging-i686/PKGBUILD (from rev 148975, 
blobby2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:28:31 UTC (rev 148976)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Urs Wolfer 
+
+pkgname=blobby2
+pkgver=1.0
+arch=('x86_64' 'i686')
+pkgrel=2
+pkgdesc="A beach ball game with blobs of goo"
+url="http://sourceforge.net/projects/blobby/;
+license=('GPL')
+depends=('sdl2' 'physfs' 'libgl')
+makedepends=('cmake' 'boost' 'mesa' 'zip')
+source=(http://downloads.sourceforge.net/blobby/$pkgname-linux-$pkgver.tar.gz
+ostream-include.patch
+$pkgname.desktop
+$pkgname.png)
+md5sums=('a6c89ae64693490385fa05c0a01b0a3b'
+ '926f1e5760769548562c2a569fe18196'
+ 'ab05bed794ee78db693fd3036393275a'
+ 'c1bc427b41a0a3facd771ac83c7fb412')
+
+prepare() {
+  cd $srcdir/blobby-$pkgver
+  patch -Np2 -i ../ostream-include.patch # r1542 upstream
+  sed -i "s|data|/usr/share/blobby|g" src/main.cpp
+  sed -i "s|file\(filename\)|file(\"/usr/share/blobby\" + filename|g" 
src/main.cpp
+}
+
+build() {
+  cd $srcdir/blobby-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/blobby-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 data/Icon.bmp ${pkgdir}/usr/share/blobby/Icon.bmp
+
+  # install .desktop file and icon
+  install -dm755 $pkgdir/usr/share/{applications,pixmaps}
+  install -m644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications
+  install -m644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps
+}

Copied: blobby2/repos/community-staging-i686/blobby2.desktop (from rev 148975, 
blobby2/trunk/blobby2.desktop)
===
--- community-staging-i686/blobby2.desktop  (rev 0)
+++ community-staging-i686/blobby2.desktop  2015-12-06 17:28:31 UTC (rev 
148976)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Blobby Volley 2
+Exec=blobby
+Icon=blobby2
+Terminal=false
+Type=Application
+Categories=Game;ArcadeGame;
+StartupNotify=false
+Comment=Volley game with network support
+GenericName=Volley Game

Copied: blobby2/repos/community-staging-i686/blobby2.png (from rev 148975, 
blobby2/trunk/blobby2.png)
===
(Binary files differ)

Copied: blobby2/repos/community-staging-i686/ostream-include.patch (from rev 
148975, blobby2/trunk/ostream-include.patch)
===
--- community-staging-i686/ostream-include.patch
(rev 0)
+++ community-staging-i686/ostream-include.patch2015-12-06 17:28:31 UTC 
(rev 148976)
@@ -0,0 +1,10 @@
+--- a/trunk/src/NetworkMessage.cpp
 b/trunk/src/NetworkMessage.cpp
+@@ -23,6 +23,7 @@
+ 
+ /* includes */
+ #include 
++#include 
+ 
+ #include "UserConfig.h"
+ #include "SpeedController.h"

Copied: blobby2/repos/community-staging-x86_64/PKGBUILD (from rev 148975, 
blobby2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 

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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:43:06
  Author: bluewind
Revision: 148994

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

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

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

Copied: ripperx/repos/community-staging-i686/PKGBUILD (from rev 148993, 
ripperx/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:43:06 UTC (rev 148994)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: dorphell 
+
+pkgname=ripperx
+pkgver=2.8.0
+pkgrel=2
+pkgdesc="GTK program to rip and encode mp3 files"
+arch=(i686 x86_64)
+url="http://ripperx.sourceforge.net/;
+depends=('gtk2' 'taglib')
+license=('GPL')
+source=(http://downloads.sourceforge.net/project/ripperx/ripperx/$pkgver/ripperx-$pkgver.tar.bz2)
+md5sums=('51ac9ec0fddef9d2e951232a60d23bcd')
+
+prepare() {
+  cd $srcdir/ripperx-$pkgver
+  sed -i 's|Icon=.*|Icon=ripperX.xpm|g' ripperX.desktop
+  echo "Categories=GTK;GNOME;AudioVideo;DiscBurning;" >>ripperX.desktop
+  patch ripperX.pc.in < includedir=@includedir@
+EOF
+  sed -i 's/.*gtk_cpp_workaround.h.*//g' \
+src/config_window_handler.c \
+src/select_frame_handler.c \
+src/status_frame_handler.c
+}
+
+build() {
+  cd $srcdir/ripperx-$pkgver
+  CFLAGS="-fpermissive" ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/ripperx-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm0644 ripperX.desktop 
$pkgdir/usr/share/applications/ripperX.desktop
+  install -Dm0644 src/xpms/ripperX-icon.xpm $pkgdir/usr/share/icons/ripperX.xpm
+}

Copied: ripperx/repos/community-staging-x86_64/PKGBUILD (from rev 148993, 
ripperx/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:43:06 UTC (rev 148994)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: dorphell 
+
+pkgname=ripperx
+pkgver=2.8.0
+pkgrel=2
+pkgdesc="GTK program to rip and encode mp3 files"
+arch=(i686 x86_64)
+url="http://ripperx.sourceforge.net/;
+depends=('gtk2' 'taglib')
+license=('GPL')
+source=(http://downloads.sourceforge.net/project/ripperx/ripperx/$pkgver/ripperx-$pkgver.tar.bz2)
+md5sums=('51ac9ec0fddef9d2e951232a60d23bcd')
+
+prepare() {
+  cd $srcdir/ripperx-$pkgver
+  sed -i 's|Icon=.*|Icon=ripperX.xpm|g' ripperX.desktop
+  echo "Categories=GTK;GNOME;AudioVideo;DiscBurning;" >>ripperX.desktop
+  patch ripperX.pc.in < includedir=@includedir@
+EOF
+  sed -i 's/.*gtk_cpp_workaround.h.*//g' \
+src/config_window_handler.c \
+src/select_frame_handler.c \
+src/status_frame_handler.c
+}
+
+build() {
+  cd $srcdir/ripperx-$pkgver
+  CFLAGS="-fpermissive" ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/ripperx-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm0644 ripperX.desktop 
$pkgdir/usr/share/applications/ripperX.desktop
+  install -Dm0644 src/xpms/ripperX-icon.xpm $pkgdir/usr/share/icons/ripperX.xpm
+}


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:43:00
  Author: bluewind
Revision: 148993

C++11 ABI rebuild

Modified:
  ripperx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:40:48 UTC (rev 148992)
+++ PKGBUILD2015-12-06 17:43:00 UTC (rev 148993)
@@ -4,7 +4,7 @@
 
 pkgname=ripperx
 pkgver=2.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GTK program to rip and encode mp3 files"
 arch=(i686 x86_64)
 url="http://ripperx.sourceforge.net/;


[arch-commits] Commit in qt-at-spi/trunk (PKGBUILD)

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 18:43:32
  Author: arojas
Revision: 148995

Get sources from quickgit

Modified:
  qt-at-spi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:43:06 UTC (rev 148994)
+++ PKGBUILD2015-12-06 17:43:32 UTC (rev 148995)
@@ -11,24 +11,24 @@
 license=('LGPL')
 depends=('at-spi2-core' 'qt4>=4.8')
 options=('!libtool')
-source=($pkgname-$pkgver.tar.gz::https://gitorious.org/$pkgname/$pkgname/archive-tarball/v$pkgver
+source=("$pkgname-$pkgver.tar.gz::http://quickgit.kde.org/?p=qtatspi.git=snapshot=f0fb5fd1=tgz;
 qt-accessibility.sh)
-md5sums=('16c9dcfe01ec4bc6ed0b05b7ffc411c3'
+md5sums=('622b5f48a0c7e88d6378055845667be5'
  'f0c8551ed54f5d4e5daf7ddac9189aaa')
 
 build() {
-   cd "$srcdir/$pkgname-$pkgname"
+   cd qtatspi
qmake-qt4
make
 }
 
 check() {
-   cd "$srcdir/$pkgname-$pkgname"
+   cd qtatspi
make -k check
 }
 
 package() {
-   cd "$srcdir/$pkgname-$pkgname"
+   cd qtatspi
make INSTALL_ROOT="$pkgdir" install
install -D -m755 "$srcdir/qt-accessibility.sh" 
"$pkgdir/etc/profile.d/qt-accessibility.sh"
 }


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

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 18:42:03
  Author: arojas
Revision: 252896

C++11 ABI rebuild

Modified:
  smplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:41:36 UTC (rev 252895)
+++ PKGBUILD2015-12-06 17:42:03 UTC (rev 252896)
@@ -6,7 +6,7 @@
 
 pkgname=smplayer
 pkgver=15.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A complete front-end for MPlayer"
 arch=('i686' 'x86_64')
 url="http://smplayer.sourceforge.net/;


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:54:51
  Author: bluewind
Revision: 252911

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

Added:
  wpa_supplicant_gui/repos/staging-i686/
  wpa_supplicant_gui/repos/staging-i686/PKGBUILD
(from rev 252910, wpa_supplicant_gui/trunk/PKGBUILD)
  wpa_supplicant_gui/repos/staging-x86_64/
  wpa_supplicant_gui/repos/staging-x86_64/PKGBUILD
(from rev 252910, wpa_supplicant_gui/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   29 +
 staging-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: wpa_supplicant_gui/repos/staging-i686/PKGBUILD (from rev 252910, 
wpa_supplicant_gui/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:54:51 UTC (rev 252911)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wpa_supplicant_gui
+pkgver=2.5
+pkgrel=3
+pkgdesc="A Qt frontend to wpa_supplicant"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('qt5-base' "wpa_supplicant")
+license=('GPL')
+source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz;)
+sha256sums=('cce55bae483b364eae55c35ba567c279be442ed8bab5b80a3c7fb0d057b9b316')
+
+build() {
+  cd wpa_supplicant-${pkgver}
+  cd wpa_supplicant/wpa_gui-qt4
+  qmake-qt5 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" 
QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS"
+  make
+}
+
+package() {
+  cd "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/wpa_gui-qt4"
+  install -Dm755 wpa_gui "${pkgdir}/usr/bin/wpa_gui"
+  install -Dm644 icons/wpa_gui.svg "${pkgdir}/usr/share/pixmaps/wpa_gui.svg"
+  install -Dm644 wpa_gui.desktop 
"${pkgdir}/usr/share/applications/wpa_gui.desktop"
+  install -Dm644 
"${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/doc/docbook/wpa_gui.8" \
+ "${pkgdir}/usr/share/man/man8/wpa_gui.8"
+}

Copied: wpa_supplicant_gui/repos/staging-x86_64/PKGBUILD (from rev 252910, 
wpa_supplicant_gui/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:54:51 UTC (rev 252911)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wpa_supplicant_gui
+pkgver=2.5
+pkgrel=3
+pkgdesc="A Qt frontend to wpa_supplicant"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('qt5-base' "wpa_supplicant")
+license=('GPL')
+source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz;)
+sha256sums=('cce55bae483b364eae55c35ba567c279be442ed8bab5b80a3c7fb0d057b9b316')
+
+build() {
+  cd wpa_supplicant-${pkgver}
+  cd wpa_supplicant/wpa_gui-qt4
+  qmake-qt5 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" 
QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS"
+  make
+}
+
+package() {
+  cd "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/wpa_gui-qt4"
+  install -Dm755 wpa_gui "${pkgdir}/usr/bin/wpa_gui"
+  install -Dm644 icons/wpa_gui.svg "${pkgdir}/usr/share/pixmaps/wpa_gui.svg"
+  install -Dm644 wpa_gui.desktop 
"${pkgdir}/usr/share/applications/wpa_gui.desktop"
+  install -Dm644 
"${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/doc/docbook/wpa_gui.8" \
+ "${pkgdir}/usr/share/man/man8/wpa_gui.8"
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:54:26
  Author: foutrelis
Revision: 149017

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

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

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

Copied: gsimplecal/repos/community-staging-i686/PKGBUILD (from rev 149016, 
gsimplecal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:54:26 UTC (rev 149017)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: 
+# Contributor: Jonathan Steel 
+# Contributor: DrZaius 
+# Contributor: Victor Feight 
+
+pkgname=gsimplecal
+pkgver=2.1
+pkgrel=2
+pkgdesc="Simple and lightweight GTK calendar"
+arch=('i686' 'x86_64')
+url="http://dmedvinsky.github.com/$pkgname;
+license=('BSD')
+depends=('gtk3')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dmedvinsky/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('170ac0bdc8663d97dec436e45b195491')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Copied: gsimplecal/repos/community-staging-x86_64/PKGBUILD (from rev 149016, 
gsimplecal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:54:26 UTC (rev 149017)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: 
+# Contributor: Jonathan Steel 
+# Contributor: DrZaius 
+# Contributor: Victor Feight 
+
+pkgname=gsimplecal
+pkgver=2.1
+pkgrel=2
+pkgdesc="Simple and lightweight GTK calendar"
+arch=('i686' 'x86_64')
+url="http://dmedvinsky.github.com/$pkgname;
+license=('BSD')
+depends=('gtk3')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dmedvinsky/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('170ac0bdc8663d97dec436e45b195491')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:54:17
  Author: foutrelis
Revision: 149016

C++11 ABI rebuild

Modified:
  gsimplecal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:53:28 UTC (rev 149015)
+++ PKGBUILD2015-12-06 17:54:17 UTC (rev 149016)
@@ -6,7 +6,7 @@
 
 pkgname=gsimplecal
 pkgver=2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple and lightweight GTK calendar"
 arch=('i686' 'x86_64')
 url="http://dmedvinsky.github.com/$pkgname;


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:54:46
  Author: bluewind
Revision: 252910

C++11 ABI rebuild

Modified:
  wpa_supplicant_gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:53:11 UTC (rev 252909)
+++ PKGBUILD2015-12-06 17:54:46 UTC (rev 252910)
@@ -3,7 +3,7 @@
 
 pkgname=wpa_supplicant_gui
 pkgver=2.5
-pkgrel=2
+pkgrel=3
 pkgdesc="A Qt frontend to wpa_supplicant"
 url="http://hostap.epitest.fi/wpa_supplicant;
 arch=('i686' 'x86_64')


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:57:23
  Author: bluewind
Revision: 149021

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

Added:
  unetbootin/repos/community-staging-i686/
  unetbootin/repos/community-staging-i686/PKGBUILD
(from rev 149020, unetbootin/trunk/PKGBUILD)
  unetbootin/repos/community-staging-i686/org.archlinux.pkexec.unetbootin.policy
(from rev 149020, unetbootin/trunk/org.archlinux.pkexec.unetbootin.policy)
  unetbootin/repos/community-staging-i686/unetbootin.install
(from rev 149020, unetbootin/trunk/unetbootin.install)
  unetbootin/repos/community-staging-i686/unetbootin.sh
(from rev 149020, unetbootin/trunk/unetbootin.sh)
  unetbootin/repos/community-staging-i686/unetbootin_polkit.sh
(from rev 149020, unetbootin/trunk/unetbootin_polkit.sh)
  unetbootin/repos/community-staging-x86_64/
  unetbootin/repos/community-staging-x86_64/PKGBUILD
(from rev 149020, unetbootin/trunk/PKGBUILD)
  
unetbootin/repos/community-staging-x86_64/org.archlinux.pkexec.unetbootin.policy
(from rev 149020, unetbootin/trunk/org.archlinux.pkexec.unetbootin.policy)
  unetbootin/repos/community-staging-x86_64/unetbootin.install
(from rev 149020, unetbootin/trunk/unetbootin.install)
  unetbootin/repos/community-staging-x86_64/unetbootin.sh
(from rev 149020, unetbootin/trunk/unetbootin.sh)
  unetbootin/repos/community-staging-x86_64/unetbootin_polkit.sh
(from rev 149020, unetbootin/trunk/unetbootin_polkit.sh)

---+
 community-staging-i686/PKGBUILD   |   66 
 community-staging-i686/unetbootin.install |   13 
 community-staging-i686/unetbootin.sh  |3 +
 community-staging-i686/unetbootin_polkit.sh   |   11 
 community-staging-x86_64/PKGBUILD |   66 
 community-staging-x86_64/unetbootin.install   |   13 
 community-staging-x86_64/unetbootin.sh|3 +
 community-staging-x86_64/unetbootin_polkit.sh |   11 
 8 files changed, 186 insertions(+)

Copied: unetbootin/repos/community-staging-i686/PKGBUILD (from rev 149020, 
unetbootin/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:57:23 UTC (rev 149021)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Det 
+# Contributor: Godane aka Christopher Rogers 
+# Contributor: Michai Coman 
+
+pkgname=unetbootin
+pkgver=613
+pkgrel=2
+arch=('x86_64' 'i686')
+license=('GPL')
+pkgdesc='Create bootable Live USB drives'
+url='https://unetbootin.github.io'
+depends=('syslinux' 'p7zip' 'qt4' 'mtools')
+makedepends=('setconf' 'git')
+optdepends=('polkit: run unetbootin directly from menu'
+'zenity: display an error if no authentication agent is found')
+install="$pkgname.install"
+source=("git://github.com/$pkgname/$pkgname.git#tag=$pkgver"
+'org.archlinux.pkexec.unetbootin.policy'
+'unetbootin_polkit.sh'
+'unetbootin.sh')
+sha256sums=('SKIP'
+'fa9bb53d90cb10a0ab8dd317ed6a3506b228b0e26ed2ed8b108b5990f641641a'
+'6399c6a44b270a4ec67a36e3914c7c2f47a9008efb0133a33f92d9ad4284cc57'
+'c59c486c0e74fbb23b842c28328937d8c2f8bbf00428711e33dec900a3a7140c')
+
+prepare() {
+  cd unetbootin/src/unetbootin
+
+  setconf unetbootin.desktop Exec /usr/bin/unetbootin_polkit
+}
+
+build() {
+  cd unetbootin/src/unetbootin
+
+  ./build-nostatic 1> output.log 2> error.log
+}
+
+package() {
+  cd unetbootin/src/unetbootin
+
+  install -d "$pkgdir/usr/share/$pkgname"
+  install -m644 "$pkgname"_*.qm "$pkgdir/usr/share/$pkgname/"
+  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname.elf"
+
+  # Application shortcut
+  install -Dm644 "$pkgname.desktop" \
+"$pkgdir/usr/share/applications/$pkgname.desktop"
+  for i in 16 22 24 32 48 256; do
+install -Dm644 "${pkgname}_${i}.png" \
+  "$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$pkgname.png"
+  done
+
+  cd "$srcdir"
+
+  install -m755 "${pkgname}_polkit.sh" "$pkgdir/usr/bin/${pkgname}_polkit"
+  install -m755 "${pkgname}.sh" "$pkgdir/usr/bin/${pkgname}"
+
+  # Polkit policy
+  install -Dm644 'org.archlinux.pkexec.unetbootin.policy' \
+"$pkgdir/usr/share/polkit-1/actions/org.archlinux.pkexec.unetbootin.policy"
+}
+
+# getver: -u 12 github.com/unetbootin/unetbootin
+# vim:set ts=2 sw=2 et:

Copied: 
unetbootin/repos/community-staging-i686/org.archlinux.pkexec.unetbootin.policy 
(from rev 149020, unetbootin/trunk/org.archlinux.pkexec.unetbootin.policy)
===
(Binary files differ)

Copied: unetbootin/repos/community-staging-i686/unetbootin.install (from rev 
149020, unetbootin/trunk/unetbootin.install)

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:56:05
  Author: foutrelis
Revision: 149018

C++11 ABI rebuild

Modified:
  libalkimia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:54:26 UTC (rev 149017)
+++ PKGBUILD2015-12-06 17:56:05 UTC (rev 149018)
@@ -4,7 +4,7 @@
 
 pkgname=libalkimia
 pkgver=4.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC."
 depends=('kdelibs')
 makedepends=('cmake' 'automoc4' 'doxygen')


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:56:13
  Author: foutrelis
Revision: 149019

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

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

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

Copied: libalkimia/repos/community-staging-i686/PKGBUILD (from rev 149018, 
libalkimia/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:56:13 UTC (rev 149019)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+# Contributor: gumper 
+
+pkgname=libalkimia
+pkgver=4.3.2
+pkgrel=3
+pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC."
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'doxygen')
+url=('http://kde-apps.org/content/show.php/libalkimia?content=137323')
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://kde-apps.org/CONTENT/content-files/137323-libalkimia-$pkgver.tar.bz2;)
+md5sums=('8d7b529c7be5f72ae1cbb02e818e9b79')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-Wno-dev
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+ 
+  make DESTDIR="${pkgdir}" install  
+}
+

Copied: libalkimia/repos/community-staging-x86_64/PKGBUILD (from rev 149018, 
libalkimia/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:56:13 UTC (rev 149019)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+# Contributor: gumper 
+
+pkgname=libalkimia
+pkgver=4.3.2
+pkgrel=3
+pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC."
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'doxygen')
+url=('http://kde-apps.org/content/show.php/libalkimia?content=137323')
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://kde-apps.org/CONTENT/content-files/137323-libalkimia-$pkgver.tar.bz2;)
+md5sums=('8d7b529c7be5f72ae1cbb02e818e9b79')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-Wno-dev
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+ 
+  make DESTDIR="${pkgdir}" install  
+}
+


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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 18:56:27
  Author: fyan
Revision: 252912

C++11 ABI rebuild

Modified:
  kdegraphics-mobipocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:54:51 UTC (rev 252911)
+++ PKGBUILD2015-12-06 17:56:27 UTC (rev 252912)
@@ -4,7 +4,7 @@
 
 pkgname=kdegraphics-mobipocket
 pkgver=15.08.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A collection of plugins to handle mobipocket files"
 url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket;
 arch=('i686' 'x86_64')


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:23:37
  Author: foutrelis
Revision: 149036

C++11 ABI rebuild

Modified:
  librecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:20:10 UTC (rev 149035)
+++ PKGBUILD2015-12-06 18:23:37 UTC (rev 149036)
@@ -6,7 +6,7 @@
 
 pkgname=librecad
 pkgver=2.0.8
-pkgrel=3
+pkgrel=4
 pkgdesc='A 2D CAD drawing tool based on the community edition of QCad'
 arch=('i686' 'x86_64')
 url='http://www.librecad.org/'


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:23:45
  Author: foutrelis
Revision: 149037

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

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

---+
 community-staging-i686/PKGBUILD   |   63 
 community-staging-i686/librecad.install   |   13 +
 community-staging-x86_64/PKGBUILD |   63 
 community-staging-x86_64/librecad.install |   13 +
 4 files changed, 152 insertions(+)

Copied: librecad/repos/community-staging-i686/PKGBUILD (from rev 149036, 
librecad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 18:23:45 UTC (rev 149037)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: mickele  (librecad-git PKGBUILD)
+# Contributor: Ilmari Repo  (librecad-svn PKGBUILD)
+# Contributor: GazJ Gary James  (CADuntu 
PKGBUILD)
+
+pkgname=librecad
+pkgver=2.0.8
+pkgrel=4
+pkgdesc='A 2D CAD drawing tool based on the community edition of QCad'
+arch=('i686' 'x86_64')
+url='http://www.librecad.org/'
+license=('GPL')
+depends=('qt5-base' 'qt5-svg' 'qt5-tools' 'libxcb' 'muparser')
+makedepends=('boost' 'imagemagick' 'librsvg')
+conflicts=('librecad-git')
+replaces=('librecad-svn' 'caduntu' 'caduntu-svn')
+install=librecad.install
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreCAD/LibreCAD/archive/${pkgver}.tar.gz;)
+sha256sums=('ddf654a29369d0b6e275584eb769c5d682957cb34babd004d1c71206cd080f34')
+
+build() {
+   cd "${srcdir}/LibreCAD-${pkgver}"
+
+   # fix version string
+   sed -i "/^SCMREVISION/c SCMREVISION=\"${pkgver}\"" librecad/src/src.pro
+
+   export CPPFLAGS="-std=c++0x"
+   qmake-qt5 librecad.pro
+   make
+}
+
+package() {
+   cd "${srcdir}/LibreCAD-${pkgver}"
+
+   # executables
+   install -D -m0755 unix/librecad "${pkgdir}/usr/bin/librecad"
+   install -D -m0755 unix/ttf2lff "${pkgdir}/usr/bin/ttf2lff"
+
+   # desktop file and man pages
+   install -D -m0644 desktop/librecad.desktop 
"${pkgdir}/usr/share/applications/librecad.desktop"
+   install -D -m0644 desktop/librecad.1 
"${pkgdir}/usr/share/man/man1/librecad.1"
+
+   # documentation
+   install -D -m0644 librecad/support/doc/README 
"${pkgdir}/usr/share/doc/librecad/index.README"
+   install -D -m0644 librecad/support/doc/index.html 
"${pkgdir}/usr/share/doc/librecad/index.html"
+   install -D -m0644 librecad/support/doc/style.css 
"${pkgdir}/usr/share/doc/librecad/style.css"
+   install -D -m0644 librecad/support/doc/img/librecadlogo.png 
"${pkgdir}/usr/share/doc/librecad/img/librecadlogo.png"
+
+   # icons
+   for SIZE in 16 24 32 48 64 96 128; do
+   convert -scale ${SIZE} \
+   desktop/graphics_icons_and_splash/Icon\ 
LibreCAD/Icon_Librecad.svg \
+   ${srcdir}/librecad.png
+   install -D -m0644 ${srcdir}/librecad.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/librecad.png"
+   done
+   install -D -m0644 desktop/graphics_icons_and_splash/Icon\ 
LibreCAD/Icon_Librecad.svg 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/librecad.svg"
+
+   # resources
+   mkdir -p "${pkgdir}/usr/share/librecad/"
+   cp -r unix/resources/{library,patterns,fonts,qm} 
"${pkgdir}/usr/share/librecad/"
+}
+

Copied: librecad/repos/community-staging-i686/librecad.install (from rev 
149036, librecad/trunk/librecad.install)
===
--- community-staging-i686/librecad.install (rev 0)
+++ community-staging-i686/librecad.install 2015-12-06 18:23:45 UTC (rev 
149037)
@@ -0,0 +1,13 @@
+post_install() {
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
+

Copied: librecad/repos/community-staging-x86_64/PKGBUILD (from rev 149036, 
librecad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 18:23:45 UTC (rev 149037)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# 

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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:31:10
  Author: bluewind
Revision: 149044

C++11 ABI rebuild

Modified:
  libtaginfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:29:04 UTC (rev 149043)
+++ PKGBUILD2015-12-06 18:31:10 UTC (rev 149044)
@@ -3,7 +3,7 @@
 
 pkgname=libtaginfo
 pkgver=0.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Library for reading media metadata"
 arch=('i686' 'x86_64')
 url="https://bitbucket.org/shuerhaaken/libtaginfo;


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:29:22
  Author: foutrelis
Revision: 252926

C++11 ABI rebuild

Modified:
  libmusicbrainz5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:26:02 UTC (rev 252925)
+++ PKGBUILD2015-12-06 18:29:22 UTC (rev 252926)
@@ -3,7 +3,7 @@
 
 pkgname=libmusicbrainz5
 pkgver=5.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Library That Provides Access to the MusicBrainz Server"
 arch=('i686' 'x86_64')
 url='http://musicbrainz.org/doc/libmusicbrainz'


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:29:00
  Author: bluewind
Revision: 149042

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

Added:
  rethinkdb/repos/community-staging-i686/
  rethinkdb/repos/community-staging-i686/PKGBUILD
(from rev 149041, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-i686/rethinkdb-tmpfile.conf
(from rev 149041, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-i686/rethinkdb.install
(from rev 149041, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-i686/rethinkdb.service
(from rev 149041, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-staging-x86_64/
  rethinkdb/repos/community-staging-x86_64/PKGBUILD
(from rev 149041, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-x86_64/rethinkdb-tmpfile.conf
(from rev 149041, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.install
(from rev 149041, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.service
(from rev 149041, rethinkdb/trunk/rethinkdb.service)

-+
 community-staging-i686/PKGBUILD |   69 ++
 community-staging-i686/rethinkdb-tmpfile.conf   |1 
 community-staging-i686/rethinkdb.install|   22 +++
 community-staging-i686/rethinkdb.service|   12 +++
 community-staging-x86_64/PKGBUILD   |   69 ++
 community-staging-x86_64/rethinkdb-tmpfile.conf |1 
 community-staging-x86_64/rethinkdb.install  |   22 +++
 community-staging-x86_64/rethinkdb.service  |   12 +++
 8 files changed, 208 insertions(+)

Copied: rethinkdb/repos/community-staging-i686/PKGBUILD (from rev 149041, 
rethinkdb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 18:29:00 UTC (rev 149042)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.2.1
+_tag=rethinkdb-$pkgver
+pkgrel=2
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+)
+sha256sums=('6611b4e62020a68c23e0a1f0a517b97677e0358c261a3e188d14b02b014a2c9e'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-staging-i686/rethinkdb-tmpfile.conf (from rev 
149041, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- community-staging-i686/rethinkdb-tmpfile.conf   
(rev 0)
+++ community-staging-i686/rethinkdb-tmpfile.conf   2015-12-06 18:29:00 UTC 
(rev 149042)
@@ -0,0 +1 @@
+d /run/rethinkdb 0755 rethinkdb rethinkdb -
\ No newline at end of file

Copied: 

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:29:31
  Author: foutrelis
Revision: 252927

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

Added:
  libmusicbrainz5/repos/staging-i686/
  libmusicbrainz5/repos/staging-i686/PKGBUILD
(from rev 252926, libmusicbrainz5/trunk/PKGBUILD)
  libmusicbrainz5/repos/staging-x86_64/
  libmusicbrainz5/repos/staging-x86_64/PKGBUILD
(from rev 252926, libmusicbrainz5/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   31 +++
 staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libmusicbrainz5/repos/staging-i686/PKGBUILD (from rev 252926, 
libmusicbrainz5/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 18:29:31 UTC (rev 252927)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libmusicbrainz5
+pkgver=5.1.0
+pkgrel=2
+pkgdesc="Library That Provides Access to the MusicBrainz Server"
+arch=('i686' 'x86_64')
+url='http://musicbrainz.org/doc/libmusicbrainz'
+license=('LGPL2.1')
+depends=('neon' 'libxml2')
+makedepends=('cmake')
+source=("https://github.com/metabrainz/libmusicbrainz/releases/download/release-${pkgver}/libmusicbrainz-$pkgver.tar.gz;)
+md5sums=('4cc5556aa40ff7ab8f8cb83965535bc3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../libmusicbrainz-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libmusicbrainz5/repos/staging-x86_64/PKGBUILD (from rev 252926, 
libmusicbrainz5/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 18:29:31 UTC (rev 252927)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libmusicbrainz5
+pkgver=5.1.0
+pkgrel=2
+pkgdesc="Library That Provides Access to the MusicBrainz Server"
+arch=('i686' 'x86_64')
+url='http://musicbrainz.org/doc/libmusicbrainz'
+license=('LGPL2.1')
+depends=('neon' 'libxml2')
+makedepends=('cmake')
+source=("https://github.com/metabrainz/libmusicbrainz/releases/download/release-${pkgver}/libmusicbrainz-$pkgver.tar.gz;)
+md5sums=('4cc5556aa40ff7ab8f8cb83965535bc3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../libmusicbrainz-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 16:22:26
  Author: fyan
Revision: 148859

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

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

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-12-06 15:21:55 UTC (rev 148858)
+++ community-staging-i686/PKGBUILD 2015-12-06 15:22:26 UTC (rev 148859)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel Velasquez 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=aria2
-pkgver=1.19.2
-pkgrel=2
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
-checkdepends=('cppunit')
-source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
-sha256sums=('3605486dd495cd8c2f672b7d0b763397989d831396862f15730697ebcf0ad53e')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # add bash completion
-  install -d "$pkgdir"/usr/share/bash-completion/completions
-  install -m644 "$pkgdir"/usr/share/doc/aria2/bash_completion/aria2c \
-"$pkgdir"/usr/share/bash-completion/completions
-  rm -rf "$pkgdir"/usr/share/doc/aria2/bash_completion
-}

Copied: aria2/repos/community-staging-i686/PKGBUILD (from rev 148858, 
aria2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 15:22:26 UTC (rev 148859)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel Velasquez 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=aria2
+pkgver=1.19.3
+pkgrel=1
+pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
+arch=('i686' 'x86_64')
+url='http://aria2.sourceforge.net/'
+license=('GPL')
+depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
+checkdepends=('cppunit')
+source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
+sha256sums=('6abcc6c28437a519cc1016736cb446ed38db360cb9828c4a7105526ea82299e3')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # add bash completion
+  install -d "$pkgdir"/usr/share/bash-completion/completions
+  install -m644 "$pkgdir"/usr/share/doc/aria2/bash_completion/aria2c \
+"$pkgdir"/usr/share/bash-completion/completions
+  rm -rf "$pkgdir"/usr/share/doc/aria2/bash_completion
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2015-12-06 15:21:55 UTC (rev 148858)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 15:22:26 UTC (rev 148859)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel Velasquez 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=aria2
-pkgver=1.19.2
-pkgrel=2
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
-checkdepends=('cppunit')

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

2015-12-06 Thread Jaroslav Lichtblau
Date: Sunday, December 6, 2015 @ 16:54:40
  Author: jlichtblau
Revision: 148861

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

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

+
 /PKGBUILD  |  132 +++
 /syncthing.install |   24 ++
 community-i686/PKGBUILD|   66 -
 community-i686/syncthing.install   |   12 ---
 community-x86_64/PKGBUILD  |   66 -
 community-x86_64/syncthing.install |   12 ---
 6 files changed, 156 insertions(+), 156 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-06 15:54:15 UTC (rev 148860)
+++ community-i686/PKGBUILD 2015-12-06 15:54:40 UTC (rev 148861)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Maintainer : Jaroslav Lichtblau 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=syncthing
-pkgver=0.12.6
-pkgrel=1
-pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-arch=('i686' 'x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-install=$pkgname.install
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
-sha1sums=('SKIP')
-
-prepare() {
-  cd "${srcdir}"
-  install -d "src/github.com/syncthing"
-  mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}"
-}
-
-build() {
-  export GOPATH="${srcdir}"
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  if [ ${CARCH}" == "i686" ] ; then
-  go run build.go -no-upgrade -goarch 386 build
-  if [ ${CARCH}" == "x86_64" ] ; then
-  go run build.go -no-upgrade -goarch amd64 build
-  else
-  go run build.go -no-upgrade build
-  fi
-}
-
-check() {
-  export GOPATH="${srcdir}"
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  #go run build.go -no-upgrade test
-}
-
-package() {
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-# license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-# man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 148860, 
syncthing/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-06 15:54:40 UTC (rev 148861)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Maintainer : Jaroslav Lichtblau 
+# Contributor: Sauyon Lee 
+# Contributor: Kevin MacMartin 
+# Contributor: korjjj 
+
+pkgname=syncthing
+pkgver=0.12.7
+pkgrel=1
+pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
+arch=('i686' 'x86_64')
+url="http://syncthing.net/;
+license=('MPL')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+install=$pkgname.install
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
+sha1sums=('SKIP')
+
+prepare() {
+  cd "${srcdir}"
+  install -d "src/github.com/syncthing"
+  mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}"
+}
+
+build() {
+  export GOPATH="${srcdir}"
+  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
+  if [ ${CARCH}" == "i686" ] ; then
+  go run build.go -no-upgrade -goarch 

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

2015-12-06 Thread Jaroslav Lichtblau
Date: Sunday, December 6, 2015 @ 16:54:15
  Author: jlichtblau
Revision: 148860

upgpkg: syncthing 0.12.7-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 15:22:26 UTC (rev 148859)
+++ PKGBUILD2015-12-06 15:54:15 UTC (rev 148860)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=syncthing
-pkgver=0.12.6
+pkgver=0.12.7
 pkgrel=1
 pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
 arch=('i686' 'x86_64')


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:22:39
  Author: foutrelis
Revision: 148865

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

Added:
  mgba/repos/community-staging-i686/
  mgba/repos/community-staging-i686/PKGBUILD
(from rev 148864, mgba/trunk/PKGBUILD)
  mgba/repos/community-staging-i686/mgba.desktop
(from rev 148864, mgba/trunk/mgba.desktop)
  mgba/repos/community-staging-i686/mgba.install
(from rev 148864, mgba/trunk/mgba.install)
  mgba/repos/community-staging-x86_64/
  mgba/repos/community-staging-x86_64/PKGBUILD
(from rev 148864, mgba/trunk/PKGBUILD)
  mgba/repos/community-staging-x86_64/mgba.desktop
(from rev 148864, mgba/trunk/mgba.desktop)
  mgba/repos/community-staging-x86_64/mgba.install
(from rev 148864, mgba/trunk/mgba.install)

---+
 community-staging-i686/PKGBUILD   |   66 
 community-staging-i686/mgba.desktop   |   10 
 community-staging-i686/mgba.install   |   11 +
 community-staging-x86_64/PKGBUILD |   66 
 community-staging-x86_64/mgba.desktop |   10 
 community-staging-x86_64/mgba.install |   11 +
 6 files changed, 174 insertions(+)

Copied: mgba/repos/community-staging-i686/PKGBUILD (from rev 148864, 
mgba/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:22:39 UTC (rev 148865)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer:  Jonathan Steel 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Duck Hunt 
+
+pkgbase=mgba
+pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
+pkgver=0.3.1
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://mgba.io'
+license=('custom:MPL2')
+makedepends=('cmake' 'qt5-multimedia' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
+ 'ffmpeg' 'imagemagick' 'desktop-file-utils')
+install=$pkgbase.install
+source=($pkgbase-$pkgver.tar.gz::https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
+mgba.desktop)
+md5sums=('870f516bd5433f01fec4fa4c26079e0f'
+ '8639165ead14363de45c0f9db3b7d97a')
+
+prepare() {
+  [[ ! -d build ]] && mkdir build || rm -rf build
+
+  cd mgba-$pkgver/res
+  convert mgba-1024.png -resize 256x256 mgba-256.png
+}
+
+build() {
+  cd build
+  cmake "$srcdir"/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_libmgba() {
+  pkgdesc='Shared library of mGBA'
+  depends=('zlib' 'libpng' 'libzip' 'libedit' 'ffmpeg' 'imagemagick')
+
+  cmake -DCOMPONENT=libmgba mgba-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" \
+-P build/cmake_install.cmake
+  install -Dm644 mgba-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_mgba-sdl() {
+  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy'
+  depends=('libmgba' 'sdl2')
+
+  cmake -DCOMPONENT=mgba-sdl mgba-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" 
\
+-P build/cmake_install.cmake
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s /usr/share/licenses/libmgba/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_mgba-qt() {
+  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy. Qt5 UI.'
+  depends=('libmgba' 'qt5-multimedia' 'sdl2')
+
+  cmake -DCOMPONENT=mgba-qt mgba-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" \
+-P build/cmake_install.cmake
+
+  desktop-file-install mgba.desktop --dir "$pkgdir"/usr/share/applications/
+  install -Dm644 mgba-$pkgver/res/mgba-256.png 
"$pkgdir"/usr/share/pixmaps/mgba.png
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s /usr/share/licenses/libmgba/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: mgba/repos/community-staging-i686/mgba.desktop (from rev 148864, 
mgba/trunk/mgba.desktop)
===
--- community-staging-i686/mgba.desktop (rev 0)
+++ community-staging-i686/mgba.desktop 2015-12-06 16:22:39 UTC (rev 148865)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Version=1.0
+Name=mGBA
+Comment=mGBA Game Boy Advance Emulator
+Icon=mgba.png
+Exec=mgba-qt
+Categories=Game;Emulator;
+Terminal=false
+StartupNotify=false

Copied: mgba/repos/community-staging-i686/mgba.install (from rev 148864, 
mgba/trunk/mgba.install)
===
--- community-staging-i686/mgba.install (rev 0)
+++ community-staging-i686/mgba.install 2015-12-06 16:22:39 UTC (rev 148865)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: mgba/repos/community-staging-x86_64/PKGBUILD (from rev 148864, 
mgba/trunk/PKGBUILD)

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:22:27
  Author: foutrelis
Revision: 148864

C++11 ABI rebuild

Modified:
  mgba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:22:26 UTC (rev 148863)
+++ PKGBUILD2015-12-06 16:22:27 UTC (rev 148864)
@@ -6,7 +6,7 @@
 pkgbase=mgba
 pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
 pkgver=0.3.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://mgba.io'
 license=('custom:MPL2')


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 17:23:52
  Author: bluewind
Revision: 148866

C++11 ABI rebuild

Modified:
  atanks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:22:39 UTC (rev 148865)
+++ PKGBUILD2015-12-06 16:23:52 UTC (rev 148866)
@@ -5,7 +5,7 @@
 
 pkgname=atanks
 pkgver=6.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Atomic Tanks"
 url="http://atanks.sourceforge.net;
 license=('GPL')


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 17:22:26
  Author: bluewind
Revision: 148863

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

Added:
  tea/repos/community-staging-i686/
  tea/repos/community-staging-i686/PKGBUILD
(from rev 148862, tea/trunk/PKGBUILD)
  tea/repos/community-staging-i686/tea.desktop
(from rev 148862, tea/trunk/tea.desktop)
  tea/repos/community-staging-i686/tea.install
(from rev 148862, tea/trunk/tea.install)
  tea/repos/community-staging-x86_64/
  tea/repos/community-staging-x86_64/PKGBUILD
(from rev 148862, tea/trunk/PKGBUILD)
  tea/repos/community-staging-x86_64/tea.desktop
(from rev 148862, tea/trunk/tea.desktop)
  tea/repos/community-staging-x86_64/tea.install
(from rev 148862, tea/trunk/tea.install)

--+
 community-staging-i686/PKGBUILD  |   39 +
 community-staging-i686/tea.desktop   |   10 
 community-staging-i686/tea.install   |4 +++
 community-staging-x86_64/PKGBUILD|   39 +
 community-staging-x86_64/tea.desktop |   10 
 community-staging-x86_64/tea.install |4 +++
 6 files changed, 106 insertions(+)

Copied: tea/repos/community-staging-i686/PKGBUILD (from rev 148862, 
tea/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:22:26 UTC (rev 148863)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Michal Kaliszka 
+# Contributor: Zsolt Varadi 
+
+pkgname=tea
+pkgver=41.1.0
+pkgrel=2
+pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions."
+arch=('i686' 'x86_64')
+url="http://semiletov.org/tea/;
+license=('GPL')
+depends=('qt4' 'aspell' 'hunspell')
+install=tea.install
+source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
+tea.desktop)
+md5sums=('8a41da9884f98b8ca6f57296243f8fbc'
+ '377ace3363124f4c086de0babb820761')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+#  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
+  sed -i 's|/usr/local|/usr|g' src.pro
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  qmake-qt4
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -Dm644 "${srcdir}/tea.desktop" 
"${pkgdir}/usr/share/applications/tea.desktop"
+  install -Dm644 icons/tea_icon_v2.png "${pkgdir}/usr/share/pixmaps/tea.png"
+}

Copied: tea/repos/community-staging-i686/tea.desktop (from rev 148862, 
tea/trunk/tea.desktop)
===
--- community-staging-i686/tea.desktop  (rev 0)
+++ community-staging-i686/tea.desktop  2015-12-06 16:22:26 UTC (rev 148863)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Tea
+Comment=A small programmer's QT editor
+Exec=tea %U
+Terminal=false
+Type=Application
+StartupNotify=true
+Icon=tea.png
+Categories=Application;Utility;TextEditor;

Copied: tea/repos/community-staging-i686/tea.install (from rev 148862, 
tea/trunk/tea.install)
===
--- community-staging-i686/tea.install  (rev 0)
+++ community-staging-i686/tea.install  2015-12-06 16:22:26 UTC (rev 148863)
@@ -0,0 +1,4 @@
+post_upgrade() {
+  echo ""
+  echo "for the old GTK branch of TEA install teagtk"
+}

Copied: tea/repos/community-staging-x86_64/PKGBUILD (from rev 148862, 
tea/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:22:26 UTC (rev 148863)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Michal Kaliszka 
+# Contributor: Zsolt Varadi 
+
+pkgname=tea
+pkgver=41.1.0
+pkgrel=2
+pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions."
+arch=('i686' 'x86_64')
+url="http://semiletov.org/tea/;
+license=('GPL')
+depends=('qt4' 'aspell' 'hunspell')
+install=tea.install
+source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
+tea.desktop)
+md5sums=('8a41da9884f98b8ca6f57296243f8fbc'
+ '377ace3363124f4c086de0babb820761')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+#  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
+  sed -i 's|/usr/local|/usr|g' src.pro

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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 17:23:57
  Author: bluewind
Revision: 148867

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

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

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

Copied: atanks/repos/community-staging-i686/PKGBUILD (from rev 148866, 
atanks/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:23:57 UTC (rev 148867)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jacek Poplawski 
+# Contributor: Charlie Cox 
+
+pkgname=atanks
+pkgver=6.2
+pkgrel=2
+pkgdesc="Atomic Tanks"
+url="http://atanks.sourceforge.net;
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('sed')
+depends=('allegro4' 'gcc-libs')
+source=("http://downloads.sourceforge.net/project/atanks/atanks/atanks-${pkgver}/atanks-${pkgver}.tar.gz;)
+md5sums=('8f2f3a43848828c221ff51d8bdc44dcf')
+
+build() {
+  cd atanks-${pkgver}
+  make
+}
+
+package() {
+  cd atanks-${pkgver}
+  make DESTDIR=${pkgdir} INSTALL="install -c" install
+
+  sed -i 's/^Name=atanks/Name=Atomic Tanks/' atanks.desktop
+  sed -i 's/^Categories=Game;/Categories=Game;StrategyGame;/' atanks.desktop
+
+  install -Dm644 atanks.desktop $pkgdir/usr/share/applications/atanks.desktop
+  install -Dm644 atanks.png $pkgdir/usr/share/pixmaps/atanks.png
+}

Copied: atanks/repos/community-staging-x86_64/PKGBUILD (from rev 148866, 
atanks/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:23:57 UTC (rev 148867)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jacek Poplawski 
+# Contributor: Charlie Cox 
+
+pkgname=atanks
+pkgver=6.2
+pkgrel=2
+pkgdesc="Atomic Tanks"
+url="http://atanks.sourceforge.net;
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('sed')
+depends=('allegro4' 'gcc-libs')
+source=("http://downloads.sourceforge.net/project/atanks/atanks/atanks-${pkgver}/atanks-${pkgver}.tar.gz;)
+md5sums=('8f2f3a43848828c221ff51d8bdc44dcf')
+
+build() {
+  cd atanks-${pkgver}
+  make
+}
+
+package() {
+  cd atanks-${pkgver}
+  make DESTDIR=${pkgdir} INSTALL="install -c" install
+
+  sed -i 's/^Name=atanks/Name=Atomic Tanks/' atanks.desktop
+  sed -i 's/^Categories=Game;/Categories=Game;StrategyGame;/' atanks.desktop
+
+  install -Dm644 atanks.desktop $pkgdir/usr/share/applications/atanks.desktop
+  install -Dm644 atanks.png $pkgdir/usr/share/pixmaps/atanks.png
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:23:37
  Author: foutrelis
Revision: 252843

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

Added:
  kdeaccessibility-kaccessible/repos/staging-i686/
  kdeaccessibility-kaccessible/repos/staging-i686/PKGBUILD
(from rev 252842, kdeaccessibility-kaccessible/trunk/PKGBUILD)
  kdeaccessibility-kaccessible/repos/staging-x86_64/
  kdeaccessibility-kaccessible/repos/staging-x86_64/PKGBUILD
(from rev 252842, kdeaccessibility-kaccessible/trunk/PKGBUILD)

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

Copied: kdeaccessibility-kaccessible/repos/staging-i686/PKGBUILD (from rev 
252842, kdeaccessibility-kaccessible/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 16:23:37 UTC (rev 252843)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kaccessible
+pkgver=15.08.3
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
+url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdelibs' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
+sha1sums=('0e199a5b1e494115c29783d57621869d53bb1ad7')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kaccessible-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeaccessibility-kaccessible/repos/staging-x86_64/PKGBUILD (from rev 
252842, kdeaccessibility-kaccessible/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 16:23:37 UTC (rev 252843)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kaccessible
+pkgver=15.08.3
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
+url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdelibs' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
+sha1sums=('0e199a5b1e494115c29783d57621869d53bb1ad7')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kaccessible-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:23:29
  Author: foutrelis
Revision: 252842

C++11 ABI rebuild

Modified:
  kdeaccessibility-kaccessible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:22:07 UTC (rev 252841)
+++ PKGBUILD2015-12-06 16:23:29 UTC (rev 252842)
@@ -4,7 +4,7 @@
 
 pkgname=kdeaccessibility-kaccessible
 pkgver=15.08.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
 url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible'


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

2015-12-06 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 17:35:39
  Author: allan
Revision: 148889

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

Added:
  fox-devel/repos/community-staging-i686/
  fox-devel/repos/community-staging-i686/PKGBUILD
(from rev 14, fox-devel/trunk/PKGBUILD)
  fox-devel/repos/community-staging-x86_64/
  fox-devel/repos/community-staging-x86_64/PKGBUILD
(from rev 14, fox-devel/trunk/PKGBUILD)

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

Copied: fox-devel/repos/community-staging-i686/PKGBUILD (from rev 14, 
fox-devel/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:35:39 UTC (rev 148889)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Dany Martineau 
+
+pkgname=fox-devel
+pkgver=1.7.52
+pkgrel=2
+pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
+arch=('i686' 'x86_64')
+url="http://www.fox-toolkit.org/;
+license=('LGPL' 'custom')
+depends=('glu' 'libsm' 'libtiff' 'libxcursor' 'libxft' 'libxi' 'libxrandr')
+makedepends=('mesa')
+provides=("fox=$pkgver")
+source=("${url/www/ftp}pub/fox-$pkgver.tar.gz")
+md5sums=('9a36d2523ba1f3027ceb45a4ed2123e7')
+
+build() {
+  cd fox-$pkgver
+  ./configure   --prefix=/usr \
+--enable-static=no \
+--enable-release \
+--with-xft=yes \
+--with-opengl=yes \
+--with-xim \
+--with-xshm \
+--with-shape \
+--with-xcursor \
+--with-xrender \
+--with-xrandr \
+--with-xfixes \
+--with-xinput
+  make
+}
+
+package() {
+  cd fox-$pkgver
+  make DESTDIR="$pkgdir/" install
+
+  # license
+  install -Dm644 LICENSE_ADDENDUM "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # rename apps to prevent conflicts with fox
+  for _f in `find $pkgdir/usr/bin -type f`; do
+mv $_f $_f-1.7
+  done;
+  for _f in `find $pkgdir/usr/share/man -type f`; do
+mv $_f `dirname $_f`/`basename $_f .1`-1.7.1
+  done;
+}

Copied: fox-devel/repos/community-staging-x86_64/PKGBUILD (from rev 14, 
fox-devel/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:35:39 UTC (rev 148889)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Dany Martineau 
+
+pkgname=fox-devel
+pkgver=1.7.52
+pkgrel=2
+pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
+arch=('i686' 'x86_64')
+url="http://www.fox-toolkit.org/;
+license=('LGPL' 'custom')
+depends=('glu' 'libsm' 'libtiff' 'libxcursor' 'libxft' 'libxi' 'libxrandr')
+makedepends=('mesa')
+provides=("fox=$pkgver")
+source=("${url/www/ftp}pub/fox-$pkgver.tar.gz")
+md5sums=('9a36d2523ba1f3027ceb45a4ed2123e7')
+
+build() {
+  cd fox-$pkgver
+  ./configure   --prefix=/usr \
+--enable-static=no \
+--enable-release \
+--with-xft=yes \
+--with-opengl=yes \
+--with-xim \
+--with-xshm \
+--with-shape \
+--with-xcursor \
+--with-xrender \
+--with-xrandr \
+--with-xfixes \
+--with-xinput
+  make
+}
+
+package() {
+  cd fox-$pkgver
+  make DESTDIR="$pkgdir/" install
+
+  # license
+  install -Dm644 LICENSE_ADDENDUM "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # rename apps to prevent conflicts with fox
+  for _f in `find $pkgdir/usr/bin -type f`; do
+mv $_f $_f-1.7
+  done;
+  for _f in `find $pkgdir/usr/share/man -type f`; do
+mv $_f `dirname $_f`/`basename $_f .1`-1.7.1
+  done;
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:35:54
  Author: foutrelis
Revision: 148890

C++11 ABI rebuild

Modified:
  highlight/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:35:39 UTC (rev 148889)
+++ PKGBUILD2015-12-06 16:35:54 UTC (rev 148890)
@@ -4,7 +4,7 @@
 pkgbase=highlight
 pkgname=(highlight highlight-gui)
 pkgver=3.23
-pkgrel=1
+pkgrel=2
 url="http://www.andre-simon.de/doku/highlight/highlight.html;
 license=('GPL')
 arch=('i686' 'x86_64')


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

2015-12-06 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 17:34:31
  Author: allan
Revision: 14

C++11 ABI rebuild

Modified:
  fox-devel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:33:49 UTC (rev 148887)
+++ PKGBUILD2015-12-06 16:34:31 UTC (rev 14)
@@ -4,7 +4,7 @@
 
 pkgname=fox-devel
 pkgver=1.7.52
-pkgrel=1
+pkgrel=2
 pkgdesc="Free Objects for X: GUI Toolkit for C++, development version."
 arch=('i686' 'x86_64')
 url="http://www.fox-toolkit.org/;


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:45:28
  Author: foutrelis
Revision: 148902

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

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

+
 community-staging-i686/PKGBUILD|   48 +++
 community-staging-i686/scite.install   |   13 
 community-staging-x86_64/PKGBUILD  |   48 +++
 community-staging-x86_64/scite.install |   13 
 4 files changed, 122 insertions(+)

Copied: scite/repos/community-staging-i686/PKGBUILD (from rev 148901, 
scite/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:45:28 UTC (rev 148902)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Thomas S Hatch 
+# Contributor: Corrado 'bardo' Primier 
+# Contributor: Jochem Kossen 
+# Contributor: Daniel J Griffiths 
+
+pkgname=scite
+pkgver=3.6.2
+pkgrel=2
+pkgdesc='Editor with facilities for building and running programs'
+arch=('x86_64' 'i686')
+url='http://www.scintilla.org/SciTE.html'
+license=('custom:scite')
+depends=('desktop-file-utils' 'gtk2')
+makedepends=('setconf')
+backup=('usr/share/scite/SciTEGlobal.properties')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz;)
+sha256sums=('6530d0d86c72485b815663e3b2c2987d59779340a71632ed8bb97a43530737a3')
+
+prepare() {
+  if [ $?CXXBASEFLAGS == 1 ]; then
+sed '0,/CXXTFLAGS=/s//nop=/' -i scite/gtk/makefile
+setconf scite/gtk/makefile CXXTFLAGS "-DNDEBUG ${CXXFLAGS} $(CXXBASEFLAGS)"
+  fi
+  sed '0,/CXXFLAGS=/s//nop=/' -i scintilla/gtk/makefile
+  setconf scintilla/gtk/makefile CXXFLAGS \
+"-DNDEBUG ${CXXFLAGS} \$(CXXBASEFLAGS) \$(THREADFLAGS)"
+  setconf scintilla/gtk/makefile CXXBASEFLAGS \
+"-Wno-missing-braces -Wno-char-subscripts ${CXXFLAGS} -DGTK -DSCI_LEXER 
\$(INCLUDEDIRS)"
+}
+
+build() {
+  make -C "scintilla/gtk"
+  make -C "$pkgname/gtk"
+}
+
+package() {
+  make -C "$pkgname/gtk" DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname/License.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-scite"
+  install -Dm644 "scintilla/License.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-scintilla"
+  ln -sf "/usr/bin/SciTE" "$pkgdir/usr/bin/scite"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: scite/repos/community-staging-i686/scite.install (from rev 148901, 
scite/trunk/scite.install)
===
--- community-staging-i686/scite.install(rev 0)
+++ community-staging-i686/scite.install2015-12-06 16:45:28 UTC (rev 
148902)
@@ -0,0 +1,13 @@
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Copied: scite/repos/community-staging-x86_64/PKGBUILD (from rev 148901, 
scite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:45:28 UTC (rev 148902)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Thomas S Hatch 
+# Contributor: Corrado 'bardo' Primier 
+# Contributor: Jochem Kossen 
+# Contributor: Daniel J Griffiths 
+
+pkgname=scite
+pkgver=3.6.2
+pkgrel=2
+pkgdesc='Editor with facilities for building and running programs'
+arch=('x86_64' 'i686')
+url='http://www.scintilla.org/SciTE.html'
+license=('custom:scite')
+depends=('desktop-file-utils' 'gtk2')
+makedepends=('setconf')
+backup=('usr/share/scite/SciTEGlobal.properties')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz;)
+sha256sums=('6530d0d86c72485b815663e3b2c2987d59779340a71632ed8bb97a43530737a3')
+
+prepare() {
+  if [ $?CXXBASEFLAGS == 1 ]; then
+sed '0,/CXXTFLAGS=/s//nop=/' -i scite/gtk/makefile
+setconf scite/gtk/makefile CXXTFLAGS "-DNDEBUG ${CXXFLAGS} $(CXXBASEFLAGS)"
+  fi
+  sed '0,/CXXFLAGS=/s//nop=/' -i scintilla/gtk/makefile
+  setconf scintilla/gtk/makefile CXXFLAGS 

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:45:21
  Author: foutrelis
Revision: 148901

C++11 ABI rebuild

Modified:
  scite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:43:41 UTC (rev 148900)
+++ PKGBUILD2015-12-06 16:45:21 UTC (rev 148901)
@@ -7,7 +7,7 @@
 
 pkgname=scite
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Editor with facilities for building and running programs'
 arch=('x86_64' 'i686')
 url='http://www.scintilla.org/SciTE.html'


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:49:35
  Author: foutrelis
Revision: 148903

C++11 ABI rebuild

Modified:
  mednafen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:45:28 UTC (rev 148902)
+++ PKGBUILD2015-12-06 16:49:35 UTC (rev 148903)
@@ -8,7 +8,7 @@
 
 pkgname=mednafen
 pkgver=0.9.38.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Command-line multi-system gaming emulator"
 url="http://mednafen.fobby.net;
 license=('GPL2')


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:50:48
  Author: foutrelis
Revision: 148907

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

Added:
  cgal/repos/community-staging-i686/
  cgal/repos/community-staging-i686/PKGBUILD
(from rev 148905, cgal/trunk/PKGBUILD)
  cgal/repos/community-staging-x86_64/
  cgal/repos/community-staging-x86_64/PKGBUILD
(from rev 148906, cgal/trunk/PKGBUILD)

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

Copied: cgal/repos/community-staging-i686/PKGBUILD (from rev 148905, 
cgal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:50:48 UTC (rev 148907)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dmitriy Morozov 
+
+pkgname=cgal
+pkgver=4.7
+pkgrel=2
+pkgdesc="Computational Geometry Algorithms Library"
+arch=('i686' 'x86_64')
+url="http://www.cgal.org;
+license=('GPL' 'LGPL')
+source=(https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.7/CGAL-$pkgver.tar.xz)
+depends=('mpfr' 'boost-libs' 'gmp' 'mesa' 'glu')
+optdepends=('qt5-svg: for CGAL_Qt5'
+'eigen: for some packages, see the CGAL manual')
+makedepends=('cmake' 'qt5-svg' 'eigen' 'boost')
+md5sums=('623d91fb2ab0a35049dc6098a0f235cc')
+
+# consider building with swig for python stuff
+# https://gforge.inria.fr/frs/?group_id=52  for _pkgid
+
+build() {
+  cd "$srcdir/CGAL-$pkgver"
+  mkdir build
+  cd build
+  cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/CGAL-$pkgver/build"
+  make install DESTDIR="$pkgdir"
+
+  # The tarball still has all these licenses included
+  for _license in LICENSE{,.FREE_USE,.GPL,.LGPL}; do
+install -D -m644 "$srcdir/CGAL-$pkgver/$_license" 
"$pkgdir/usr/share/licenses/$pkgname/$_license"
+  done
+}
+

Copied: cgal/repos/community-staging-x86_64/PKGBUILD (from rev 148906, 
cgal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:50:48 UTC (rev 148907)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dmitriy Morozov 
+
+pkgname=cgal
+pkgver=4.7
+pkgrel=2
+pkgdesc="Computational Geometry Algorithms Library"
+arch=('i686' 'x86_64')
+url="http://www.cgal.org;
+license=('GPL' 'LGPL')
+source=(https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.7/CGAL-$pkgver.tar.xz)
+depends=('mpfr' 'boost-libs' 'gmp' 'mesa' 'glu')
+optdepends=('qt5-svg: for CGAL_Qt5'
+'eigen: for some packages, see the CGAL manual')
+makedepends=('cmake' 'qt5-svg' 'eigen' 'boost')
+md5sums=('623d91fb2ab0a35049dc6098a0f235cc')
+
+# consider building with swig for python stuff
+# https://gforge.inria.fr/frs/?group_id=52  for _pkgid
+
+build() {
+  cd "$srcdir/CGAL-$pkgver"
+  mkdir build
+  cd build
+  cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/CGAL-$pkgver/build"
+  make install DESTDIR="$pkgdir"
+
+  # The tarball still has all these licenses included
+  for _license in LICENSE{,.FREE_USE,.GPL,.LGPL}; do
+install -D -m644 "$srcdir/CGAL-$pkgver/$_license" 
"$pkgdir/usr/share/licenses/$pkgname/$_license"
+  done
+}
+


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:50:44
  Author: foutrelis
Revision: 148906

C++11 ABI rebuild

Modified:
  stk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:50:40 UTC (rev 148905)
+++ PKGBUILD2015-12-06 16:50:44 UTC (rev 148906)
@@ -4,7 +4,7 @@
 
 pkgname=stk
 pkgver=4.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='The Synthesis ToolKit in C++'
 arch=('i686' 'x86_64')
 url='http://ccrma.stanford.edu/software/stk/'


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:50:40
  Author: foutrelis
Revision: 148905

C++11 ABI rebuild

Modified:
  cgal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:49:43 UTC (rev 148904)
+++ PKGBUILD2015-12-06 16:50:40 UTC (rev 148905)
@@ -4,7 +4,7 @@
 
 pkgname=cgal
 pkgver=4.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Computational Geometry Algorithms Library"
 arch=('i686' 'x86_64')
 url="http://www.cgal.org;


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 17:49:43
  Author: foutrelis
Revision: 148904

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

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

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

Copied: mednafen/repos/community-staging-i686/PKGBUILD (from rev 148903, 
mednafen/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:49:43 UTC (rev 148904)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: megadriver 
+# Contributor: Angel Velasquez 
+# Contributor: Daenyth 
+# Contributor: kagan 
+# Contributor: Hans-Kristian Arntzen 
+
+pkgname=mednafen
+pkgver=0.9.38.7
+pkgrel=2
+pkgdesc="Command-line multi-system gaming emulator"
+url="http://mednafen.fobby.net;
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('libsndfile' 'sdl' 'zlib')
+makedepends=('mesa' 'glu')
+source=(http://mednafen.fobby.net/releases/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('e49c6b4c0c8278bc01c63cba9b54498c')
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  for i in ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS \
+   README{,.DOS,.PORTING} TODO; do
+install -Dm644 $i "$pkgdir"/usr/share/doc/$pkgname/$i
+  done
+}

Copied: mednafen/repos/community-staging-x86_64/PKGBUILD (from rev 148903, 
mednafen/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:49:43 UTC (rev 148904)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: megadriver 
+# Contributor: Angel Velasquez 
+# Contributor: Daenyth 
+# Contributor: kagan 
+# Contributor: Hans-Kristian Arntzen 
+
+pkgname=mednafen
+pkgver=0.9.38.7
+pkgrel=2
+pkgdesc="Command-line multi-system gaming emulator"
+url="http://mednafen.fobby.net;
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('libsndfile' 'sdl' 'zlib')
+makedepends=('mesa' 'glu')
+source=(http://mednafen.fobby.net/releases/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('e49c6b4c0c8278bc01c63cba9b54498c')
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  for i in ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS \
+   README{,.DOS,.PORTING} TODO; do
+install -Dm644 $i "$pkgdir"/usr/share/doc/$pkgname/$i
+  done
+}


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:10:25
  Author: bpiotrowski
Revision: 252873

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

Added:
  dssi/repos/staging-i686/
  dssi/repos/staging-i686/PKGBUILD
(from rev 252872, dssi/trunk/PKGBUILD)
  dssi/repos/staging-i686/license.txt
(from rev 252872, dssi/trunk/license.txt)
  dssi/repos/staging-x86_64/
  dssi/repos/staging-x86_64/PKGBUILD
(from rev 252872, dssi/trunk/PKGBUILD)
  dssi/repos/staging-x86_64/license.txt
(from rev 252872, dssi/trunk/license.txt)

+
 staging-i686/PKGBUILD  |   37 
 staging-i686/license.txt   |   77 +++
 staging-x86_64/PKGBUILD|   37 
 staging-x86_64/license.txt |   77 +++
 4 files changed, 228 insertions(+)

Copied: dssi/repos/staging-i686/PKGBUILD (from rev 252872, dssi/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:10:25 UTC (rev 252873)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: damir 
+# Contributor: Pajaro
+
+pkgname=dssi
+pkgver=1.1.1
+pkgrel=8
+pkgdesc="An API for audio processing plugins & softsynths with UIs"
+arch=('i686' 'x86_64')
+url="http://dssi.sourceforge.net/;
+license=('LGPL' 'BSD' 'custom')
+depends=('liblo>=0.28' 'jack')
+makedepends=('ladspa' 'qt4')
+optdepends=('qt4: example plugins')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
+'license.txt')
+md5sums=('619ab73c883b02dc37ddb37001591f8b'
+ '258ca4d0ca28c5c4d4675147621fac18')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir/license.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dssi/repos/staging-i686/license.txt (from rev 252872, 
dssi/trunk/license.txt)
===
--- staging-i686/license.txt(rev 0)
+++ staging-i686/license.txt2015-12-06 17:10:25 UTC (rev 252873)
@@ -0,0 +1,77 @@
+Licensing
+-
+
+The DSSI API itself (dssi.h) is licensed under the GNU Lesser General
+Public License.  See COPYING for details.
+
+The jack-dssi-host is provided under a BSD-style license.  This means
+you can do anything you want with it so long as you retain the
+copyright attribution and license information.  See the source files
+for details.
+
+Licensing for the files in the examples directory may vary: please
+check the individual files for details.  Most of them are in the
+public domain, which means you can use them for anything you want.
+
+
+
+/* jack-dssi-host.c
+ *
+ * DSSI Soft Synth Interface
+ *
+ * This is a host for DSSI plugins.  It listens for MIDI events on an
+ * ALSA sequencer port, delivers them to DSSI synths and outputs the
+ * result via JACK.
+ *
+ * This program expects the names of up to 16 DSSI synth plugins, in
+ * the form ':',* to be provided on the command line.
+ * If just '' is provided, the first plugin in the DLL is
+ * is used.  MIDI channels are assigned to each plugin instance, in
+ * order, beginning with channel 0 (zero-based).  A plugin may be
+ * easily instantiated multiple times by preceding its name and label
+ * with a dash followed immediately by the desired number of instances,
+ * e.g. '-3 my_plugins.so:zoomy' would create three instances of the
+ * 'zoomy' plugin.
+ */
+
+/*
+ * Copyright 2004, 2009 Chris Cannam, Steve Harris and Sean Bolton.
+ * 
+ * Permission to use, copy, modify, distribute, and sell this software
+ * for any purpose is hereby granted without fee, provided that the
+ * above copyright notice and this permission notice are included in
+ * all copies or substantial portions of the software.
+ */
+
+
+/*
+ *  This program is in the public domain
+ *
+ *  $Id: dssi_osc_send.c,v 1.5 2004/07/04 22:24:51 smbolton Exp $
+ */
+
+/*
+ *  This program is in the public domain
+ *
+ *  $Id: dssi_osc_update.c,v 1.6 2005/10/12 17:08:26 smbolton Exp $
+ */
+
+/* less_trivial_synth.c
+
+   DSSI Soft Synth Interface
+   Constructed by Chris Cannam, Steve Harris and Sean Bolton
+
+   This is an example DSSI synth plugin written by Steve Harris.
+
+   This example file is in the public domain.
+*/
+
+/* trivial_sampler.c
+
+   DSSI Soft Synth Interface
+   Constructed by Chris Cannam, Steve Harris and Sean Bolton
+
+   A straightforward DSSI plugin sampler.
+
+   This example file is in the public domain.
+*/

Copied: dssi/repos/staging-x86_64/PKGBUILD (from rev 252872, 
dssi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:10:33
  Author: foutrelis
Revision: 252875

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

Added:
  libmygpo-qt/repos/staging-i686/
  libmygpo-qt/repos/staging-i686/PKGBUILD
(from rev 252874, libmygpo-qt/trunk/PKGBUILD)
  libmygpo-qt/repos/staging-x86_64/
  libmygpo-qt/repos/staging-x86_64/PKGBUILD
(from rev 252874, libmygpo-qt/trunk/PKGBUILD)

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

Copied: libmygpo-qt/repos/staging-i686/PKGBUILD (from rev 252874, 
libmygpo-qt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:10:33 UTC (rev 252875)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+
+pkgname=libmygpo-qt
+pkgver=1.0.8
+pkgrel=2
+pkgdesc="A C++/Qt client library for gpodder.net"
+arch=('i686' 'x86_64')
+url="http://wiki.gpodder.org/wiki/Libmygpo-qt;
+license=('LGPL2.1')
+depends=('qjson')
+makedepends=('cmake' 'doxygen')
+source=("http://stefan.derkits.at/files/${pkgname}/${pkgname}.${pkgver}.tar.gz;)
+md5sums=('cb67c86919171d6d2356dfb59c3b9571')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}.${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: libmygpo-qt/repos/staging-x86_64/PKGBUILD (from rev 252874, 
libmygpo-qt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:10:33 UTC (rev 252875)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+
+pkgname=libmygpo-qt
+pkgver=1.0.8
+pkgrel=2
+pkgdesc="A C++/Qt client library for gpodder.net"
+arch=('i686' 'x86_64')
+url="http://wiki.gpodder.org/wiki/Libmygpo-qt;
+license=('LGPL2.1')
+depends=('qjson')
+makedepends=('cmake' 'doxygen')
+source=("http://stefan.derkits.at/files/${pkgname}/${pkgname}.${pkgver}.tar.gz;)
+md5sums=('cb67c86919171d6d2356dfb59c3b9571')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}.${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:09:20
  Author: bpiotrowski
Revision: 148940

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

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

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

Copied: cppcheck/repos/community-staging-i686/PKGBUILD (from rev 148939, 
cppcheck/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:09:20 UTC (rev 148940)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+
+pkgname=cppcheck
+pkgver=1.71
+pkgrel=2
+pkgdesc="A tool for static C/C++ code analysis"
+arch=('i686' 'x86_64')
+url="http://cppcheck.wiki.sourceforge.net/;
+license=('GPL')
+depends=('qt5-base' 'python-pygments')
+makedepends=('docbook-xsl' 'qt5-tools' 'python')
+source=($pkgname-$pkgver.tar.gz::https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
+sha1sums=('d2ce4d0955148e3511a527a9c4a7efa9d467015c')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   # Unicode fix
+   
+   LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes
+
+   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.78.1/manpages/docbook.xsl 
CFGDIR=/usr/share/cppcheck/cfg man
+
+   cd gui
+   lrelease gui.pro
+   qmake HAVE_RULES=yes
+   make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg HAVE_RULES=yes
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+
+   #LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes test
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   LANG='en_US.UTF-8' make DESTDIR=${pkgdir} CFGDIR=/usr/share/cppcheck/cfg 
SRCDIR=build HAVE_RULES=yes install 
+
+   install -D -p -m 644 cppcheck.1 "${pkgdir}"/usr/share/man/man1/cppcheck.1
+
+   # GUI
+   install -m755 gui/cppcheck-gui "${pkgdir}"/usr/bin
+
+   install -d "${pkgdir}"/usr/share/cppcheck/cfg
+   install -D ./cfg/* -t "${pkgdir}"/usr/share/cppcheck/cfg
+
+   install -d "${pkgdir}"/usr/share/cppcheck/cfg/lang
+   install -D gui/*.qm -t "${pkgdir}"/usr/share/cppcheck/cfg/lang/
+}

Copied: cppcheck/repos/community-staging-x86_64/PKGBUILD (from rev 148939, 
cppcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:09:20 UTC (rev 148940)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+
+pkgname=cppcheck
+pkgver=1.71
+pkgrel=2
+pkgdesc="A tool for static C/C++ code analysis"
+arch=('i686' 'x86_64')
+url="http://cppcheck.wiki.sourceforge.net/;
+license=('GPL')
+depends=('qt5-base' 'python-pygments')
+makedepends=('docbook-xsl' 'qt5-tools' 'python')
+source=($pkgname-$pkgver.tar.gz::https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
+sha1sums=('d2ce4d0955148e3511a527a9c4a7efa9d467015c')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   # Unicode fix
+   
+   LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes
+
+   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.78.1/manpages/docbook.xsl 
CFGDIR=/usr/share/cppcheck/cfg man
+
+   cd gui
+   lrelease gui.pro
+   qmake HAVE_RULES=yes
+   make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg HAVE_RULES=yes
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+
+   #LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes test
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   LANG='en_US.UTF-8' make DESTDIR=${pkgdir} CFGDIR=/usr/share/cppcheck/cfg 
SRCDIR=build HAVE_RULES=yes install 
+
+   install -D -p -m 644 cppcheck.1 "${pkgdir}"/usr/share/man/man1/cppcheck.1
+
+   # GUI
+   install -m755 gui/cppcheck-gui "${pkgdir}"/usr/bin
+
+   install -d "${pkgdir}"/usr/share/cppcheck/cfg
+   install -D ./cfg/* -t "${pkgdir}"/usr/share/cppcheck/cfg
+
+   install -d "${pkgdir}"/usr/share/cppcheck/cfg/lang
+   install -D gui/*.qm -t "${pkgdir}"/usr/share/cppcheck/cfg/lang/
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:09:33
  Author: foutrelis
Revision: 252871

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

Added:
  geeqie/repos/staging-i686/
  geeqie/repos/staging-i686/PKGBUILD
(from rev 252870, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-i686/fix-fullscreen.patch
(from rev 252870, geeqie/trunk/fix-fullscreen.patch)
  geeqie/repos/staging-i686/geeqie.install
(from rev 252870, geeqie/trunk/geeqie.install)
  geeqie/repos/staging-x86_64/
  geeqie/repos/staging-x86_64/PKGBUILD
(from rev 252870, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-x86_64/fix-fullscreen.patch
(from rev 252870, geeqie/trunk/fix-fullscreen.patch)
  geeqie/repos/staging-x86_64/geeqie.install
(from rev 252870, geeqie/trunk/geeqie.install)

-+
 staging-i686/PKGBUILD   |   37 +++
 staging-i686/fix-fullscreen.patch   |  107 ++
 staging-i686/geeqie.install |   11 +++
 staging-x86_64/PKGBUILD |   37 +++
 staging-x86_64/fix-fullscreen.patch |  107 ++
 staging-x86_64/geeqie.install   |   11 +++
 6 files changed, 310 insertions(+)

Copied: geeqie/repos/staging-i686/PKGBUILD (from rev 252870, 
geeqie/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:09:33 UTC (rev 252871)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Contributor: Lukas Jirkovsky 
+
+pkgname=geeqie
+pkgver=1.2.2
+pkgrel=3
+pkgdesc="A lightweight image browser and viewer"
+arch=('i686' 'x86_64')
+url="http://www.geeqie.org/;
+license=('GPL2')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
+optdepends=('librsvg: SVG rendering'
+   'fbida: for jpeg rotation'
+   'exiv2: for tiff and png rotation')
+install=geeqie.install
+source=(http://www.geeqie.org/${pkgname}-${pkgver}.tar.xz
+fix-fullscreen.patch)
+sha1sums=('9dd094707d7bf7389eb62a218ff7bc86339fc995'
+  'dab15bbda9b329f663276b25bf1989b410596644')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../fix-fullscreen.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: geeqie/repos/staging-i686/fix-fullscreen.patch (from rev 252870, 
geeqie/trunk/fix-fullscreen.patch)
===
--- staging-i686/fix-fullscreen.patch   (rev 0)
+++ staging-i686/fix-fullscreen.patch   2015-12-06 17:09:33 UTC (rev 252871)
@@ -0,0 +1,107 @@
+diff -Naur old/src/fullscreen.c new/src/fullscreen.c
+--- old/src/fullscreen.c   2015-08-16 16:37:58.132952447 +0900
 new/src/fullscreen.c   2015-08-16 16:43:30.031882508 +0900
+@@ -210,10 +210,6 @@
+void (*stop_func)(FullScreenData *, gpointer), 
gpointer stop_data)
+ {
+   FullScreenData *fs;
+-  GdkScreen *screen;
+-  gint x, y;
+-  gint w, h;
+-  GdkGeometry geometry;
+   GdkWindow *gdkwin;
+ 
+   if (!window || !imd) return NULL;
+@@ -229,14 +225,9 @@
+   fs->stop_data = stop_data;
+ 
+   DEBUG_1("full screen requests screen %d", options->fullscreen.screen);
+-  fullscreen_prefs_get_geometry(options->fullscreen.screen, window, , 
, , ,
+-, >same_region);
+ 
+   fs->window = window_new(GTK_WINDOW_TOPLEVEL, "fullscreen", NULL, NULL, 
_("Full screen"));
+ 
+-  /* this requests no decorations, if you still have them complain to the 
window manager author(s) */
+-  gtk_window_set_decorated(GTK_WINDOW(fs->window), FALSE);
+-
+   if (options->fullscreen.screen < 0)
+   {
+   /* If we want control of the window size and position this is 
not what we want.
+@@ -246,9 +237,42 @@
+   }
+   else
+   {
+-  gtk_window_set_screen(GTK_WINDOW(fs->window), screen);
++  GdkScreen *screen;
++  gint x, y;
++  gint w, h;
++  GdkGeometry geometry;
++
++  fullscreen_prefs_get_geometry(options->fullscreen.screen, 
window, , , , ,
++, >same_region);
++
+   if (options->fullscreen.above)
+   gtk_window_set_keep_above(GTK_WINDOW(fs->window), TRUE);
++
++  gtk_window_set_screen(GTK_WINDOW(fs->window), screen);
++  gtk_window_set_decorated(GTK_WINDOW(fs->window), FALSE);
++  gtk_window_set_resizable(GTK_WINDOW(fs->window), FALSE);
++  gtk_container_set_border_width(GTK_CONTAINER(fs->window), 0);
++
++  

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:10:45
  Author: foutrelis
Revision: 252876

C++11 ABI rebuild

Modified:
  liblastfm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:10:33 UTC (rev 252875)
+++ PKGBUILD2015-12-06 17:10:45 UTC (rev 252876)
@@ -5,7 +5,7 @@
 
 pkgname=liblastfm
 pkgver=1.0.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A Qt4 C++ library for the Last.fm webservices"
 arch=('i686' 'x86_64')
 url='https://github.com/lastfm/liblastfm/'


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:10:53
  Author: foutrelis
Revision: 252877

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

Added:
  liblastfm/repos/staging-i686/
  liblastfm/repos/staging-i686/PKGBUILD
(from rev 252876, liblastfm/trunk/PKGBUILD)
  liblastfm/repos/staging-x86_64/
  liblastfm/repos/staging-x86_64/PKGBUILD
(from rev 252876, liblastfm/trunk/PKGBUILD)

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

Copied: liblastfm/repos/staging-i686/PKGBUILD (from rev 252876, 
liblastfm/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:10:53 UTC (rev 252877)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: XazZ 
+
+pkgname=liblastfm
+pkgver=1.0.9
+pkgrel=2
+pkgdesc="A Qt4 C++ library for the Last.fm webservices"
+arch=('i686' 'x86_64')
+url='https://github.com/lastfm/liblastfm/'
+license=('GPL3')
+depends=('qt4' 'fftw' 'libsamplerate')
+makedepends=('cmake')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/lastfm/${pkgname}/tarball/${pkgver};)
+sha1sums=('cd8c6f160529dbf9e0566973a8f37130c83a78c0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../lastfm-${pkgname}-* \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DBUILD_TESTS=OFF
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: liblastfm/repos/staging-x86_64/PKGBUILD (from rev 252876, 
liblastfm/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:10:53 UTC (rev 252877)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: XazZ 
+
+pkgname=liblastfm
+pkgver=1.0.9
+pkgrel=2
+pkgdesc="A Qt4 C++ library for the Last.fm webservices"
+arch=('i686' 'x86_64')
+url='https://github.com/lastfm/liblastfm/'
+license=('GPL3')
+depends=('qt4' 'fftw' 'libsamplerate')
+makedepends=('cmake')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/lastfm/${pkgname}/tarball/${pkgver};)
+sha1sums=('cd8c6f160529dbf9e0566973a8f37130c83a78c0')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../lastfm-${pkgname}-* \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DBUILD_TESTS=OFF
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:11:26
  Author: bpiotrowski
Revision: 148941

C++11 ABI rebuild

Modified:
  libqtxdg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:09:20 UTC (rev 148940)
+++ PKGBUILD2015-12-06 17:11:26 UTC (rev 148941)
@@ -3,7 +3,7 @@
 
 pkgname=libqtxdg
 pkgver=1.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Library providing freedesktop.org XDG specs implementations for Qt."
 arch=("i686" "x86_64")
 url="http://lxqt.org;


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:11:36
  Author: bpiotrowski
Revision: 148942

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

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

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

Copied: libqtxdg/repos/community-staging-i686/PKGBUILD (from rev 148941, 
libqtxdg/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:11:36 UTC (rev 148942)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=libqtxdg
+pkgver=1.3.0
+pkgrel=3
+pkgdesc="Library providing freedesktop.org XDG specs implementations for Qt."
+arch=("i686" "x86_64")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("libsm" "libxkbcommon-x11" "qt5-base")
+makedepends=("cmake")
+source=(
+   "https://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=(
+   "850cad7c25412f70ccc997d1f3013a788d35deae42d9c1376556dc779ea92a89"
+   "SKIP"
+)
+validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}

Copied: libqtxdg/repos/community-staging-x86_64/PKGBUILD (from rev 148941, 
libqtxdg/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:11:36 UTC (rev 148942)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=libqtxdg
+pkgver=1.3.0
+pkgrel=3
+pkgdesc="Library providing freedesktop.org XDG specs implementations for Qt."
+arch=("i686" "x86_64")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("libsm" "libxkbcommon-x11" "qt5-base")
+makedepends=("cmake")
+source=(
+   "https://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=(
+   "850cad7c25412f70ccc997d1f3013a788d35deae42d9c1376556dc779ea92a89"
+   "SKIP"
+)
+validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:10:26
  Author: foutrelis
Revision: 252874

C++11 ABI rebuild

Modified:
  libmygpo-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:10:25 UTC (rev 252873)
+++ PKGBUILD2015-12-06 17:10:26 UTC (rev 252874)
@@ -4,7 +4,7 @@
 
 pkgname=libmygpo-qt
 pkgver=1.0.8
-pkgrel=1
+pkgrel=2
 pkgdesc="A C++/Qt client library for gpodder.net"
 arch=('i686' 'x86_64')
 url="http://wiki.gpodder.org/wiki/Libmygpo-qt;


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:10:17
  Author: bpiotrowski
Revision: 252872

C++11 ABI rebuild

Modified:
  dssi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:09:33 UTC (rev 252871)
+++ PKGBUILD2015-12-06 17:10:17 UTC (rev 252872)
@@ -5,7 +5,7 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=7
+pkgrel=8
 pkgdesc="An API for audio processing plugins & softsynths with UIs"
 arch=('i686' 'x86_64')
 url="http://dssi.sourceforge.net/;


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:09:12
  Author: bpiotrowski
Revision: 148939

C++11 ABI rebuild

Modified:
  cppcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:07:50 UTC (rev 148938)
+++ PKGBUILD2015-12-06 17:09:12 UTC (rev 148939)
@@ -3,7 +3,7 @@
 
 pkgname=cppcheck
 pkgver=1.71
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for static C/C++ code analysis"
 arch=('i686' 'x86_64')
 url="http://cppcheck.wiki.sourceforge.net/;


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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 18:21:58
  Author: fyan
Revision: 148967

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

Added:
  ibus-unikey/repos/community-staging-i686/
  ibus-unikey/repos/community-staging-i686/PKGBUILD
(from rev 148965, ibus-unikey/trunk/PKGBUILD)
  ibus-unikey/repos/community-staging-x86_64/
  ibus-unikey/repos/community-staging-x86_64/PKGBUILD
(from rev 148966, ibus-unikey/trunk/PKGBUILD)

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

Copied: ibus-unikey/repos/community-staging-i686/PKGBUILD (from rev 148965, 
ibus-unikey/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:21:58 UTC (rev 148967)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Trương Xuân Tính 
+
+pkgname=ibus-unikey
+pkgver=0.6.1
+pkgrel=4
+pkgdesc='IBus module for Vietnamese Keyboard'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://code.google.com/p/ibus-unikey/'
+depends=('ibus')
+makedepends=('intltool')
+source=("http://ibus-unikey.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3bae6df0d4609a8c438c246030b9a61e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: ibus-unikey/repos/community-staging-x86_64/PKGBUILD (from rev 148966, 
ibus-unikey/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:21:58 UTC (rev 148967)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Trương Xuân Tính 
+
+pkgname=ibus-unikey
+pkgver=0.6.1
+pkgrel=4
+pkgdesc='IBus module for Vietnamese Keyboard'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://code.google.com/p/ibus-unikey/'
+depends=('ibus')
+makedepends=('intltool')
+source=("http://ibus-unikey.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3bae6df0d4609a8c438c246030b9a61e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}


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

2015-12-06 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 18:21:49
  Author: allan
Revision: 148966

C++11 ABI rebuild

Modified:
  widelands/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:21:16 UTC (rev 148965)
+++ PKGBUILD2015-12-06 17:21:49 UTC (rev 148966)
@@ -6,7 +6,7 @@
 pkgname=widelands
 pkgver=18
 _realver=build${pkgver}
-pkgrel=4
+pkgrel=5
 pkgdesc="A realtime strategy game with emphasis on economy and transport"
 arch=('i686' 'x86_64')
 url="http://widelands.org/;


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

2015-12-06 Thread Allan McRae
Date: Sunday, December 6, 2015 @ 18:23:22
  Author: allan
Revision: 148970

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 148968, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 148969, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 148969, widelands/trunk/widelands.png)
  widelands/repos/community-staging-i686/widelands.sh
(from rev 148969, widelands/trunk/widelands.sh)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 148969, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 148969, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 148969, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/widelands.sh
(from rev 148969, widelands/trunk/widelands.sh)

+
 community-staging-i686/PKGBUILD|   51 +++
 community-staging-i686/widelands.desktop   |8 
 community-staging-i686/widelands.sh|3 +
 community-staging-x86_64/PKGBUILD  |   51 +++
 community-staging-x86_64/widelands.desktop |8 
 community-staging-x86_64/widelands.sh  |3 +
 6 files changed, 124 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 148968, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:23:22 UTC (rev 148970)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=18
+_realver=build${pkgver}
+pkgrel=5
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/;
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 
'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/${_realver}/build-${pkgver}/+download/$pkgname-$_realver-src.tar.bz2;
+$pkgname.desktop
+$pkgname.png
+$pkgname.sh)
+md5sums=('01efe8db8cd25ffeb4f82b8b4ab6652e'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_DATADIR=share/$pkgname \
+-DWL_INSTALL_BINDIR=bin
+make
+}
+
+package() {
+depends=(${depends[@]} 'widelands-data')
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+rm -r 
$pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+# Install bin, icon and desktop file
+#install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+#install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 
148969, widelands/trunk/widelands.desktop)
===
--- community-staging-i686/widelands.desktop(rev 0)
+++ community-staging-i686/widelands.desktop2015-12-06 17:23:22 UTC (rev 
148970)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-i686/widelands.png (from rev 148969, 
widelands/trunk/widelands.png)
===
(Binary files differ)

Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 148969, 
widelands/trunk/widelands.sh)
===
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2015-12-06 17:23:22 UTC (rev 148970)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 148969, 
widelands/trunk/PKGBUILD)

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:21:59
  Author: foutrelis
Revision: 148968

C++11 ABI rebuild

Modified:
  tuxcards/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:21:58 UTC (rev 148967)
+++ PKGBUILD2015-12-06 17:21:59 UTC (rev 148968)
@@ -3,7 +3,7 @@
 
 pkgname=tuxcards
 pkgver=2.2.1
-pkgrel=4
+pkgrel=5
 pkgdesc="A hierarchical notebook to enter and manage notes and ideas in a 
structured manner"
 arch=('i686' 'x86_64')
 url="http://www.tuxcards.de;


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:22:07
  Author: foutrelis
Revision: 148969

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

Added:
  tuxcards/repos/community-staging-i686/
  tuxcards/repos/community-staging-i686/PKGBUILD
(from rev 148968, tuxcards/trunk/PKGBUILD)
  tuxcards/repos/community-staging-i686/tuxcards.desktop
(from rev 148968, tuxcards/trunk/tuxcards.desktop)
  tuxcards/repos/community-staging-x86_64/
  tuxcards/repos/community-staging-x86_64/PKGBUILD
(from rev 148968, tuxcards/trunk/PKGBUILD)
  tuxcards/repos/community-staging-x86_64/tuxcards.desktop
(from rev 148968, tuxcards/trunk/tuxcards.desktop)

---+
 community-staging-i686/PKGBUILD   |   32 
 community-staging-i686/tuxcards.desktop   |   10 
 community-staging-x86_64/PKGBUILD |   32 
 community-staging-x86_64/tuxcards.desktop |   10 
 4 files changed, 84 insertions(+)

Copied: tuxcards/repos/community-staging-i686/PKGBUILD (from rev 148968, 
tuxcards/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:22:07 UTC (rev 148969)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=tuxcards
+pkgver=2.2.1
+pkgrel=5
+pkgdesc="A hierarchical notebook to enter and manage notes and ideas in a 
structured manner"
+arch=('i686' 'x86_64')
+url="http://www.tuxcards.de;
+license=('GPL')
+depends=('qt4')
+source=(http://www.tuxcards.de/src/tuxcards-${pkgver}/${pkgname}-${pkgver}.tar.gz
 tuxcards.desktop)
+sha1sums=('c0410f28b51d58b4f372ffae0ce0d2a7329f2c45'
+  '565419ac6b24d61fc038462a783cb80d44b4fe7e')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  sed -i 's|/usr/local/doc/tuxcards/flowers/|/usr/share/tuxcards/flowers/|' 
src/CTuxCardsConfiguration.cpp
+  qmake-qt4 tuxcards.pro
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  install -D -m755 tuxcards "${pkgdir}/usr/bin/tuxcards"
+  install -D -m644 src/icons/lo16-app-tuxcards.png 
"${pkgdir}/usr/share/icons/locolor/16x16/apps/tuxcards.png"
+  install -D -m644 src/icons/lo32-app-tuxcards.png 
"${pkgdir}/usr/share/icons/locolor/32x32/apps/tuxcards.png"
+  install -D -m644 "${srcdir}/tuxcards.desktop" 
"${pkgdir}/usr/share/applications/tuxcards.desktop"
+  install -D -m644 src/translations/tuxcards_de.qm 
"${pkgdir}/usr/share/tuxcards/i18/tuxcards_de.qm"
+  install -d "${pkgdir}/usr/share/tuxcards/flowers/"
+  install -m644 src/gui/cactusbar/flowers/*.gif 
"${pkgdir}/usr/share/tuxcards/flowers/"
+}

Copied: tuxcards/repos/community-staging-i686/tuxcards.desktop (from rev 
148968, tuxcards/trunk/tuxcards.desktop)
===
--- community-staging-i686/tuxcards.desktop (rev 0)
+++ community-staging-i686/tuxcards.desktop 2015-12-06 17:22:07 UTC (rev 
148969)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=Tuxcards
+Comment=Manage notes and ideas in tree structures
+Icon=/usr/share/icons/locolor/32x32/apps/tuxcards.png
+Exec=tuxcards
+Terminal=false
+Type=Application
+StartupNotify=true
+Categories=Application;Office;Utility
+Encoding=UTF-8

Copied: tuxcards/repos/community-staging-x86_64/PKGBUILD (from rev 148968, 
tuxcards/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:22:07 UTC (rev 148969)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=tuxcards
+pkgver=2.2.1
+pkgrel=5
+pkgdesc="A hierarchical notebook to enter and manage notes and ideas in a 
structured manner"
+arch=('i686' 'x86_64')
+url="http://www.tuxcards.de;
+license=('GPL')
+depends=('qt4')
+source=(http://www.tuxcards.de/src/tuxcards-${pkgver}/${pkgname}-${pkgver}.tar.gz
 tuxcards.desktop)
+sha1sums=('c0410f28b51d58b4f372ffae0ce0d2a7329f2c45'
+  '565419ac6b24d61fc038462a783cb80d44b4fe7e')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  sed -i 's|/usr/local/doc/tuxcards/flowers/|/usr/share/tuxcards/flowers/|' 
src/CTuxCardsConfiguration.cpp
+  qmake-qt4 tuxcards.pro
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  install -D -m755 tuxcards "${pkgdir}/usr/bin/tuxcards"
+  install -D -m644 src/icons/lo16-app-tuxcards.png 
"${pkgdir}/usr/share/icons/locolor/16x16/apps/tuxcards.png"
+  install -D -m644 src/icons/lo32-app-tuxcards.png 
"${pkgdir}/usr/share/icons/locolor/32x32/apps/tuxcards.png"
+  install -D -m644 "${srcdir}/tuxcards.desktop" 
"${pkgdir}/usr/share/applications/tuxcards.desktop"
+  install -D -m644 src/translations/tuxcards_de.qm 
"${pkgdir}/usr/share/tuxcards/i18/tuxcards_de.qm"
+  install -d "${pkgdir}/usr/share/tuxcards/flowers/"
+  install -m644 

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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 18:31:03
  Author: fyan
Revision: 252883

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

Added:
  dasher/repos/staging-i686/
  dasher/repos/staging-i686/PKGBUILD
(from rev 252882, dasher/trunk/PKGBUILD)
  dasher/repos/staging-i686/dasher.install
(from rev 252882, dasher/trunk/dasher.install)
  dasher/repos/staging-i686/error-format-security.patch
(from rev 252882, dasher/trunk/error-format-security.patch)
  dasher/repos/staging-i686/fix-binutils-gold.patch
(from rev 252882, dasher/trunk/fix-binutils-gold.patch)
  dasher/repos/staging-x86_64/
  dasher/repos/staging-x86_64/PKGBUILD
(from rev 252882, dasher/trunk/PKGBUILD)
  dasher/repos/staging-x86_64/dasher.install
(from rev 252882, dasher/trunk/dasher.install)
  dasher/repos/staging-x86_64/error-format-security.patch
(from rev 252882, dasher/trunk/error-format-security.patch)
  dasher/repos/staging-x86_64/fix-binutils-gold.patch
(from rev 252882, dasher/trunk/fix-binutils-gold.patch)

+
 staging-i686/PKGBUILD  |   38 +++
 staging-i686/dasher.install|   22 +++
 staging-i686/error-format-security.patch   |   12 
 staging-i686/fix-binutils-gold.patch   |   28 +++
 staging-x86_64/PKGBUILD|   38 +++
 staging-x86_64/dasher.install  |   22 +++
 staging-x86_64/error-format-security.patch |   12 
 staging-x86_64/fix-binutils-gold.patch |   28 +++
 8 files changed, 200 insertions(+)

Copied: dasher/repos/staging-i686/PKGBUILD (from rev 252882, 
dasher/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:31:03 UTC (rev 252883)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: damir 
+
+pkgname=dasher
+pkgver=4.11
+pkgrel=3
+pkgdesc="Information-efficient text-entry interface, driven by natural 
continuous pointing gestures"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('at-spi' 'gnome-speech' 'hicolor-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils' 'libgnomeui')
+url="http://www.gnome.org;
+options=('!emptydirs')
+install=dasher.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/4.11/${pkgname}-${pkgver}.tar.bz2
+error-format-security.patch
+fix-binutils-gold.patch)
+sha256sums=('fb21cc4ef606e10a8e5deffebe8695a376eabb0766d7d1bdf80abc5f03f4fed2'
+'7aeba2667972e408f38b8337f972ff589f05cdf244dec5674f138fc5110405df'
+'f9e2a661e6d0b873e9a5d491b1b70f3a05ea4edda693e078e2e206451c265daf')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/error-format-security.patch"
+  patch -Np1 -i "${srcdir}/fix-binutils-gold.patch"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-scrollkeeper --enable-speech
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
+  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain dasher ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Copied: dasher/repos/staging-i686/dasher.install (from rev 252882, 
dasher/trunk/dasher.install)
===
--- staging-i686/dasher.install (rev 0)
+++ staging-i686/dasher.install 2015-12-06 17:31:03 UTC (rev 252883)
@@ -0,0 +1,22 @@
+pkgname=dasher
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Copied: dasher/repos/staging-i686/error-format-security.patch (from rev 252882, 
dasher/trunk/error-format-security.patch)
===
--- staging-i686/error-format-security.patch(rev 0)
+++ staging-i686/error-format-security.patch2015-12-06 17:31:03 UTC (rev 
252883)
@@ -0,0 +1,12 @@
+Index: dasher-4.11/Src/Gtk2/game_mode_helper.cpp
+===
+--- dasher-4.11.orig/Src/Gtk2/game_mode_helper.cpp 2009-12-18 
13:40:29.0 -0500
 dasher-4.11/Src/Gtk2/game_mode_helper.cpp  2011-11-11 12:33:12.349741593 
-0500
+@@ -324,6 +324,7 @@
+  GTK_DIALOG_MODAL,
+  GTK_MESSAGE_INFO,
+  GTK_BUTTONS_OK,
++ 

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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 18:30:15
  Author: fyan
Revision: 252882

C++11 ABI rebuild

Modified:
  dasher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:26:51 UTC (rev 252881)
+++ PKGBUILD2015-12-06 17:30:15 UTC (rev 252882)
@@ -3,7 +3,7 @@
 
 pkgname=dasher
 pkgver=4.11
-pkgrel=2
+pkgrel=3
 pkgdesc="Information-efficient text-entry interface, driven by natural 
continuous pointing gestures"
 arch=('i686' 'x86_64')
 license=('GPL')


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:30:16
  Author: bpiotrowski
Revision: 148980

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

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

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-i686/sfml.install   |3 ++
 community-staging-x86_64/PKGBUILD |   40 
 community-staging-x86_64/sfml.install |3 ++
 4 files changed, 86 insertions(+)

Copied: sfml/repos/community-staging-i686/PKGBUILD (from rev 148979, 
sfml/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:30:16 UTC (rev 148980)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ondrej Martinak 
+
+pkgname=sfml
+pkgver=2.3.2
+pkgrel=3
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
+makedepends=('mesa' 'cmake' 'doxygen' 'git')
+install=sfml.install
+source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/SFML
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd "$srcdir"/SFML/build
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.4/Modules/FindSFML.cmake"
+
+  install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Copied: sfml/repos/community-staging-i686/sfml.install (from rev 148979, 
sfml/trunk/sfml.install)
===
--- community-staging-i686/sfml.install (rev 0)
+++ community-staging-i686/sfml.install 2015-12-06 17:30:16 UTC (rev 148980)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
+}

Copied: sfml/repos/community-staging-x86_64/PKGBUILD (from rev 148979, 
sfml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:30:16 UTC (rev 148980)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ondrej Martinak 
+
+pkgname=sfml
+pkgver=2.3.2
+pkgrel=3
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
+makedepends=('mesa' 'cmake' 'doxygen' 'git')
+install=sfml.install
+source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/SFML
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd "$srcdir"/SFML/build
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.4/Modules/FindSFML.cmake"
+
+  install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Copied: sfml/repos/community-staging-x86_64/sfml.install (from rev 148979, 
sfml/trunk/sfml.install)
===
--- community-staging-x86_64/sfml.install   (rev 0)
+++ community-staging-x86_64/sfml.install   2015-12-06 17:30:16 UTC (rev 
148980)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
+}


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:30:03
  Author: bpiotrowski
Revision: 148979

C++11 ABI rebuild

Modified:
  sfml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:29:54 UTC (rev 148978)
+++ PKGBUILD2015-12-06 17:30:03 UTC (rev 148979)
@@ -4,7 +4,7 @@
 
 pkgname=sfml
 pkgver=2.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
 arch=('i686' 'x86_64')
 url='http://www.sfml-dev.org/'


[arch-commits] Commit in yubikey-personalization-gui/trunk (PKGBUILD)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:40:41
  Author: bpiotrowski
Revision: 148991

C++11 ABI rebuild

Modified:
  yubikey-personalization-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:40:13 UTC (rev 148990)
+++ PKGBUILD2015-12-06 17:40:41 UTC (rev 148991)
@@ -3,7 +3,7 @@
 
 pkgname=yubikey-personalization-gui
 pkgver=3.1.23
-pkgrel=1
+pkgrel=2
 pkgdesc='Yubico YubiKey Personalization GUI'
 arch=('i686' 'x86_64')
 url='https://github.com/Yubico/yubikey-personalization-gui'


[arch-commits] Commit in yubikey-personalization-gui/repos (6 files)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:40:48
  Author: bpiotrowski
Revision: 148992

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

Added:
  yubikey-personalization-gui/repos/community-staging-i686/
  yubikey-personalization-gui/repos/community-staging-i686/PKGBUILD
(from rev 148991, yubikey-personalization-gui/trunk/PKGBUILD)
  
yubikey-personalization-gui/repos/community-staging-i686/yubikey-personalization-gui.install
(from rev 148991, 
yubikey-personalization-gui/trunk/yubikey-personalization-gui.install)
  yubikey-personalization-gui/repos/community-staging-x86_64/
  yubikey-personalization-gui/repos/community-staging-x86_64/PKGBUILD
(from rev 148991, yubikey-personalization-gui/trunk/PKGBUILD)
  
yubikey-personalization-gui/repos/community-staging-x86_64/yubikey-personalization-gui.install
(from rev 148991, 
yubikey-personalization-gui/trunk/yubikey-personalization-gui.install)

--+
 community-staging-i686/PKGBUILD  |   51 ++
 community-staging-i686/yubikey-personalization-gui.install   |   15 ++
 community-staging-x86_64/PKGBUILD|   51 ++
 community-staging-x86_64/yubikey-personalization-gui.install |   15 ++
 4 files changed, 132 insertions(+)

Copied: yubikey-personalization-gui/repos/community-staging-i686/PKGBUILD (from 
rev 148991, yubikey-personalization-gui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 17:40:48 UTC (rev 148992)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=yubikey-personalization-gui
+pkgver=3.1.23
+pkgrel=2
+pkgdesc='Yubico YubiKey Personalization GUI'
+arch=('i686' 'x86_64')
+url='https://github.com/Yubico/yubikey-personalization-gui'
+license=('BSD')
+depends=('yubikey-personalization' 'qt5-base' 'libxkbcommon-x11')
+makedepends=('git' 'imagemagick')
+provides=('yubikey-personalization-tool')
+conflicts=('yubikey-personalization-tool')
+install=yubikey-personalization-gui.install
+source=("git://github.com/Yubico/yubikey-personalization-gui.git#tag=yubikey-personalization-gui-${pkgver}")
+sha256sums=('SKIP')
+
+build() {
+   cd yubikey-personalization-gui/
+
+   qmake-qt5 "CONFIG += debian"
+   make
+}
+
+check() {
+   cd yubikey-personalization-gui/
+
+   make check
+}
+
+package() {
+   cd yubikey-personalization-gui/
+
+   install -D -m0755 build/release/yubikey-personalization-gui 
"${pkgdir}/usr/bin/yubikey-personalization-gui"
+   install -D -m0644 resources/lin/yubikey-personalization-gui.1 
"${pkgdir}/usr/share/man/man1/yubikey-personalization-gui.1"
+
+   install -D -m0644 resources/lin/yubikey-personalization-gui.desktop 
"${pkgdir}/usr/share/applications/yubikey-personalization-gui.desktop"
+
+   install -D -m0644 resources/lin/yubikey-personalization-gui.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/apps/yubikey-personalization-gui.png"
+   for SIZE in 16 24 32 48 64 96; do
+   convert -scale ${SIZE} \
+   resources/lin/yubikey-personalization-gui.png \
+   ${srcdir}/yubikey-personalization-gui.png
+   install -D -m0644 ${srcdir}/yubikey-personalization-gui.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/yubikey-personalization-gui.png"
+   done
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubikey-personalization-gui/COPYING"
+   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubikey-personalization-gui/README"
+}
+

Copied: 
yubikey-personalization-gui/repos/community-staging-i686/yubikey-personalization-gui.install
 (from rev 148991, 
yubikey-personalization-gui/trunk/yubikey-personalization-gui.install)
===
--- community-staging-i686/yubikey-personalization-gui.install  
(rev 0)
+++ community-staging-i686/yubikey-personalization-gui.install  2015-12-06 
17:40:48 UTC (rev 148992)
@@ -0,0 +1,15 @@
+post_install() {
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-desktop-database -q
+}
+
+post_remove() {
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-desktop-database -q
+}
+

Copied: yubikey-personalization-gui/repos/community-staging-x86_64/PKGBUILD 
(from rev 148991, yubikey-personalization-gui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 17:40:48 UTC (rev 148992)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: 

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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:41:29
  Author: bpiotrowski
Revision: 252894

C++11 ABI rebuild

Modified:
  apricots/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:37:53 UTC (rev 252893)
+++ PKGBUILD2015-12-06 17:41:29 UTC (rev 252894)
@@ -3,7 +3,7 @@
 
 pkgname=apricots
 pkgver=0.2.6
-pkgrel=6
+pkgrel=7
 pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers"
 arch=("i686" "x86_64")
 license=('GPL')


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

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 18:42:16
  Author: arojas
Revision: 252897

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

Added:
  smplayer/repos/staging-i686/
  smplayer/repos/staging-i686/PKGBUILD
(from rev 252896, smplayer/trunk/PKGBUILD)
  smplayer/repos/staging-i686/smplayer.install
(from rev 252896, smplayer/trunk/smplayer.install)
  smplayer/repos/staging-x86_64/
  smplayer/repos/staging-x86_64/PKGBUILD
(from rev 252896, smplayer/trunk/PKGBUILD)
  smplayer/repos/staging-x86_64/smplayer.install
(from rev 252896, smplayer/trunk/smplayer.install)

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

Copied: smplayer/repos/staging-i686/PKGBUILD (from rev 252896, 
smplayer/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:42:16 UTC (rev 252897)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: Alessio 'mOLOk' Bolognino 
+# Contributor: shamrok 
+
+pkgname=smplayer
+pkgver=15.11.0
+pkgrel=2
+pkgdesc="A complete front-end for MPlayer"
+arch=('i686' 'x86_64')
+url="http://smplayer.sourceforge.net/;
+license=('GPL')
+depends=('qt5-script' 'mplayer' 'hicolor-icon-theme' 'libxkbcommon-x11')
+makedepends=('qt5-tools')
+optdepends=('smplayer-themes: icon themes collection'
+'smplayer-skins: skin themes collection'
+'smtube: browse and play youtube videos'
+'mpv: for using mpv instead of mplayer')
+install=smplayer.install
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('e6f459f640908df2403381a39a27cdba')
+
+build() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr \
+DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
+QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DOC_PATH=/usr/share/doc/smplayer \
+DESTDIR="$pkgdir" PREFIX="/usr" install
+}

Copied: smplayer/repos/staging-i686/smplayer.install (from rev 252896, 
smplayer/trunk/smplayer.install)
===
--- staging-i686/smplayer.install   (rev 0)
+++ staging-i686/smplayer.install   2015-12-06 17:42:16 UTC (rev 252897)
@@ -0,0 +1,12 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: smplayer/repos/staging-x86_64/PKGBUILD (from rev 252896, 
smplayer/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:42:16 UTC (rev 252897)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: Alessio 'mOLOk' Bolognino 
+# Contributor: shamrok 
+
+pkgname=smplayer
+pkgver=15.11.0
+pkgrel=2
+pkgdesc="A complete front-end for MPlayer"
+arch=('i686' 'x86_64')
+url="http://smplayer.sourceforge.net/;
+license=('GPL')
+depends=('qt5-script' 'mplayer' 'hicolor-icon-theme' 'libxkbcommon-x11')
+makedepends=('qt5-tools')
+optdepends=('smplayer-themes: icon themes collection'
+'smplayer-skins: skin themes collection'
+'smtube: browse and play youtube videos'
+'mpv: for using mpv instead of mplayer')
+install=smplayer.install
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('e6f459f640908df2403381a39a27cdba')
+
+build() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr \
+DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
+QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DOC_PATH=/usr/share/doc/smplayer \
+DESTDIR="$pkgdir" PREFIX="/usr" install
+}

Copied: smplayer/repos/staging-x86_64/smplayer.install (from rev 252896, 
smplayer/trunk/smplayer.install)
===
--- staging-x86_64/smplayer.install (rev 0)
+++ staging-x86_64/smplayer.install 2015-12-06 17:42:16 UTC (rev 252897)
@@ -0,0 +1,12 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:41:36
  Author: bpiotrowski
Revision: 252895

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

Added:
  apricots/repos/staging-i686/
  apricots/repos/staging-i686/PKGBUILD
(from rev 252894, apricots/trunk/PKGBUILD)
  apricots/repos/staging-i686/apricots-0.2.6-freealut.patch
(from rev 252894, apricots/trunk/apricots-0.2.6-freealut.patch)
  apricots/repos/staging-x86_64/
  apricots/repos/staging-x86_64/PKGBUILD
(from rev 252894, apricots/trunk/PKGBUILD)
  apricots/repos/staging-x86_64/apricots-0.2.6-freealut.patch
(from rev 252894, apricots/trunk/apricots-0.2.6-freealut.patch)

--+
 staging-i686/PKGBUILD|   28 ++
 staging-i686/apricots-0.2.6-freealut.patch   |   65 +
 staging-x86_64/PKGBUILD  |   28 ++
 staging-x86_64/apricots-0.2.6-freealut.patch |   65 +
 4 files changed, 186 insertions(+)

Copied: apricots/repos/staging-i686/PKGBUILD (from rev 252894, 
apricots/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:41:36 UTC (rev 252895)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Damir Perisa 
+
+pkgname=apricots
+pkgver=0.2.6
+pkgrel=7
+pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers"
+arch=("i686" "x86_64")
+license=('GPL')
+url="http://www.fishies.org.uk/apricots.html;
+depends=('gcc-libs' 'openal' 'sdl' 'freealut')
+#source=("http://www.fishies.org.uk/$pkgname-$pkgver.tar.gz;
+source=("https://sources.archlinux.org/other/apricots/$pkgname-$pkgver.tar.gz;
+"apricots-0.2.6-freealut.patch")
+md5sums=('910828d717e46d8cbd9c24f702d09fbc'
+ '5f9f74082dfe162ab3ba51f6ec628f99')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p0 -i $srcdir/apricots-0.2.6-freealut.patch
+  ./configure --prefix=/usr
+  make LIBTOOL='/usr/bin/libtool'
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}

Copied: apricots/repos/staging-i686/apricots-0.2.6-freealut.patch (from rev 
252894, apricots/trunk/apricots-0.2.6-freealut.patch)
===
--- staging-i686/apricots-0.2.6-freealut.patch  (rev 0)
+++ staging-i686/apricots-0.2.6-freealut.patch  2015-12-06 17:41:36 UTC (rev 
252895)
@@ -0,0 +1,65 @@
+--- apricots/apricots.cpp
 apricots/apricots.cpp
+@@ -16,6 +16,7 @@
+ int main(int, char**){
+ #endif
+ 
++atexit(SDL_Quit);
+   // Initialize data
+   gamedata g;
+   init_data(g);
+
+--- apricots/sampleio.cpp
 apricots/sampleio.cpp
+@@ -74,12 +74,9 @@
+   alListenerfv(AL_ORIENTATION, front );
+ 
+   // Load in samples
+-  ALvoid* data = malloc(5 * (512 * 3) * 1024);
+   alGenBuffers(numsamples, samples);
+ 
+   for (int i = 0; i < numsamples; i++){
+-ALsizei freq;
+-ALboolean fileok;
+ // Evil OpenAL portability fix done here
+ #ifdef _WIN32
+ ALenum format;
+@@ -87,15 +84,12 @@
+ alutLoadWAVFile(filenames[i],);
+ fileok = (alGetError() == AL_NO_ERROR);
+ #else
+-ALsizei format;
+-ALsizei trash;
+-fileok = alutLoadWAV(filenames[i],);
++  samples[i] = alutCreateBufferFromFile(filenames[i]);
+ #endif
+-if (!fileok){
++if (samples[i] == AL_NONE){
+   cerr << "sampleio: could not open " << filenames[i] << endl;
+   exit(1);
+ } 
+-alBufferData(samples[i], format, data, filelen, freq);
+   }
+ 
+   // Generate Sources
+@@ -107,7 +101,6 @@
+ alSourcefv(sources[j], AL_ORIENTATION, back );
+   }
+   
+-  free(data);
+   
+ }
+ 
+
+--- configure.in
 configure.in
+@@ -100,7 +100,8 @@
+ 
+ dnl Check for OpenAL
+ AC_CHECK_HEADER(AL/al.h,[CXXFLAGS="$CXXFLAGS -DAP_AUDIO_OPENAL"])
+-AC_CHECK_LIB( openal, alutInit)
++AC_CHECK_LIB( openal, alGetError)
++AC_CHECK_LIB( alut, alutInit)
+ 
+ KDE_CHECK_EXTRA_LIBS
+ all_libraries="$all_libraries $USER_LDFLAGS"

Copied: apricots/repos/staging-x86_64/PKGBUILD (from rev 252894, 
apricots/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:41:36 UTC (rev 252895)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Damir Perisa 
+
+pkgname=apricots
+pkgver=0.2.6
+pkgrel=7
+pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers"
+arch=("i686" "x86_64")
+license=('GPL')
+url="http://www.fishies.org.uk/apricots.html;
+depends=('gcc-libs' 'openal' 'sdl' 'freealut')
+#source=("http://www.fishies.org.uk/$pkgname-$pkgver.tar.gz;
+source=("https://sources.archlinux.org/other/apricots/$pkgname-$pkgver.tar.gz;
+"apricots-0.2.6-freealut.patch")
+md5sums=('910828d717e46d8cbd9c24f702d09fbc'
+ 

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:51:45
  Author: foutrelis
Revision: 252904

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

Added:
  kwidgetsaddons/repos/staging-i686/
  kwidgetsaddons/repos/staging-i686/PKGBUILD
(from rev 252903, kwidgetsaddons/trunk/PKGBUILD)
  kwidgetsaddons/repos/staging-x86_64/
  kwidgetsaddons/repos/staging-x86_64/PKGBUILD
(from rev 252903, kwidgetsaddons/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   36 
 staging-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kwidgetsaddons/repos/staging-i686/PKGBUILD (from rev 252903, 
kwidgetsaddons/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:51:45 UTC (rev 252904)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwidgetsaddons
+pkgver=5.16.0
+pkgrel=2
+pkgdesc='Addons to QtWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('44c43dd0430cfc2e7b83331c63d74613')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kwidgetsaddons/repos/staging-x86_64/PKGBUILD (from rev 252903, 
kwidgetsaddons/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:51:45 UTC (rev 252904)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwidgetsaddons
+pkgver=5.16.0
+pkgrel=2
+pkgdesc='Addons to QtWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('44c43dd0430cfc2e7b83331c63d74613')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:51:38
  Author: foutrelis
Revision: 252903

C++11 ABI rebuild

Modified:
  kwidgetsaddons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:51:33 UTC (rev 252902)
+++ PKGBUILD2015-12-06 17:51:38 UTC (rev 252903)
@@ -4,7 +4,7 @@
 
 pkgname=kwidgetsaddons
 pkgver=5.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Addons to QtWidgets'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:51:11
  Author: foutrelis
Revision: 252901

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

Added:
  libmm-qt/repos/staging-i686/
  libmm-qt/repos/staging-i686/PKGBUILD
(from rev 252900, libmm-qt/trunk/PKGBUILD)
  libmm-qt/repos/staging-i686/fix-build.patch
(from rev 252900, libmm-qt/trunk/fix-build.patch)
  libmm-qt/repos/staging-x86_64/
  libmm-qt/repos/staging-x86_64/PKGBUILD
(from rev 252900, libmm-qt/trunk/PKGBUILD)
  libmm-qt/repos/staging-x86_64/fix-build.patch
(from rev 252900, libmm-qt/trunk/fix-build.patch)

+
 staging-i686/PKGBUILD  |   31 +++
 staging-i686/fix-build.patch   |   22 ++
 staging-x86_64/PKGBUILD|   31 +++
 staging-x86_64/fix-build.patch |   22 ++
 4 files changed, 106 insertions(+)

Copied: libmm-qt/repos/staging-i686/PKGBUILD (from rev 252900, 
libmm-qt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 17:51:11 UTC (rev 252901)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libmm-qt
+pkgver=1.0.1
+pkgrel=3
+pkgdesc='Qt-only wrapper for ModemManager DBus API'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/extragear/libs/libmm-qt'
+license=('LGPL')
+depends=('qt4' 'modemmanager')
+makedepends=('cmake' 'doxygen')
+source=("http://download.kde.org/unstable/modemmanager-qt/${pkgver}/src/${pkgname}-${pkgver}-1.tar.xz;)
+md5sums=('1ee1c7754cbb4fdf484ac2648d7263e0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: libmm-qt/repos/staging-i686/fix-build.patch (from rev 252900, 
libmm-qt/trunk/fix-build.patch)
===
--- staging-i686/fix-build.patch(rev 0)
+++ staging-i686/fix-build.patch2015-12-06 17:51:11 UTC (rev 252901)
@@ -0,0 +1,22 @@
+From: David Faure 
+Date: Thu, 09 Jan 2014 19:41:48 +
+Subject: modem.cpp:169:1: error: no return statement in function returning 
non-void [-Werror=return-type]
+X-Git-Tag: v1.0.1
+X-Git-Url: 
http://quickgit.kde.org/?p=libmm-qt.git=commitdiff=1d7f3e5d5eb4bb4fba741736049c229b48b6815c
+---
+modem.cpp:169:1: error: no return statement in function returning non-void 
[-Werror=return-type]
+---
+
+
+--- a/modem.cpp
 b/modem.cpp
+@@ -165,7 +165,7 @@
+ QString ModemManager::Modem::command(const QString , uint timeout)
+ {
+ Q_D(Modem);
+-d->modemIface.Command(cmd, timeout);
++return d->modemIface.Command(cmd, timeout);
+ }
+ 
+ QString ModemManager::Modem::simPath() const
+

Copied: libmm-qt/repos/staging-x86_64/PKGBUILD (from rev 252900, 
libmm-qt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 17:51:11 UTC (rev 252901)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libmm-qt
+pkgver=1.0.1
+pkgrel=3
+pkgdesc='Qt-only wrapper for ModemManager DBus API'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/extragear/libs/libmm-qt'
+license=('LGPL')
+depends=('qt4' 'modemmanager')
+makedepends=('cmake' 'doxygen')
+source=("http://download.kde.org/unstable/modemmanager-qt/${pkgver}/src/${pkgname}-${pkgver}-1.tar.xz;)
+md5sums=('1ee1c7754cbb4fdf484ac2648d7263e0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: libmm-qt/repos/staging-x86_64/fix-build.patch (from rev 252900, 
libmm-qt/trunk/fix-build.patch)
===
--- staging-x86_64/fix-build.patch  (rev 0)
+++ staging-x86_64/fix-build.patch  2015-12-06 17:51:11 UTC (rev 252901)
@@ -0,0 +1,22 @@
+From: David Faure 
+Date: Thu, 09 Jan 2014 19:41:48 +
+Subject: modem.cpp:169:1: error: no return statement in function returning 
non-void [-Werror=return-type]
+X-Git-Tag: v1.0.1
+X-Git-Url: 
http://quickgit.kde.org/?p=libmm-qt.git=commitdiff=1d7f3e5d5eb4bb4fba741736049c229b48b6815c
+---
+modem.cpp:169:1: error: no return statement in function returning non-void 
[-Werror=return-type]
+---
+
+
+--- a/modem.cpp
 b/modem.cpp
+@@ -165,7 +165,7 @@
+ QString ModemManager::Modem::command(const QString , uint timeout)
+ {
+ Q_D(Modem);
+-d->modemIface.Command(cmd, timeout);
++

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 18:51:04
  Author: foutrelis
Revision: 252900

C++11 ABI rebuild

Modified:
  libmm-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:49:58 UTC (rev 252899)
+++ PKGBUILD2015-12-06 17:51:04 UTC (rev 252900)
@@ -3,7 +3,7 @@
 
 pkgname=libmm-qt
 pkgver=1.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Qt-only wrapper for ModemManager DBus API'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/extragear/libs/libmm-qt'


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:51:33
  Author: bluewind
Revision: 252902

C++11 ABI rebuild

Modified:
  portsmf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:51:11 UTC (rev 252901)
+++ PKGBUILD2015-12-06 17:51:33 UTC (rev 252902)
@@ -3,7 +3,7 @@
 
 pkgname=portsmf
 pkgver=228
-pkgrel=1
+pkgrel=2
 pkgdesc="Portable library for reading/writing Standard MIDI Files"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/p/portmedia/wiki/portsmf/;


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 18:49:50
  Author: bluewind
Revision: 252898

C++11 ABI rebuild

Modified:
  audiofile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:42:16 UTC (rev 252897)
+++ PKGBUILD2015-12-06 17:49:50 UTC (rev 252898)
@@ -4,7 +4,7 @@
 
 pkgname=audiofile
 pkgver=0.3.6
-pkgrel=2
+pkgrel=3
 pkgdesc="Silicon Graphics Audio File Library"
 arch=('i686' 'x86_64')
 url="http://www.68k.org/~michael/audiofile/;


[arch-commits] Commit in nemo-qml-plugin-notifications/repos (4 files)

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:02:12
  Author: bluewind
Revision: 149031

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

Added:
  nemo-qml-plugin-notifications/repos/community-staging-i686/
  nemo-qml-plugin-notifications/repos/community-staging-i686/PKGBUILD
(from rev 149030, nemo-qml-plugin-notifications/trunk/PKGBUILD)
  nemo-qml-plugin-notifications/repos/community-staging-x86_64/
  nemo-qml-plugin-notifications/repos/community-staging-x86_64/PKGBUILD
(from rev 149030, nemo-qml-plugin-notifications/trunk/PKGBUILD)

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

Copied: nemo-qml-plugin-notifications/repos/community-staging-i686/PKGBUILD 
(from rev 149030, nemo-qml-plugin-notifications/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 18:02:12 UTC (rev 149031)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=nemo-qml-plugin-notifications
+pkgver=1.0.9
+pkgrel=2
+pkgdesc="Notifications plugin for Nemo Mobile"
+arch=('i686' 'x86_64')
+url="https://github.com/nemomobile/nemo-qml-plugin-notifications;
+license=('BSD')
+depends=('qt5-declarative')
+makedepends=('git')
+source=("git+https://github.com/nemomobile/nemo-qml-plugin-notifications.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd nemo-qml-plugin-notifications
+
+  qmake-qt5
+  make
+}
+
+package() {
+  cd nemo-qml-plugin-notifications
+
+  make INSTALL_ROOT="${pkgdir}" install
+}

Copied: nemo-qml-plugin-notifications/repos/community-staging-x86_64/PKGBUILD 
(from rev 149030, nemo-qml-plugin-notifications/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 18:02:12 UTC (rev 149031)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=nemo-qml-plugin-notifications
+pkgver=1.0.9
+pkgrel=2
+pkgdesc="Notifications plugin for Nemo Mobile"
+arch=('i686' 'x86_64')
+url="https://github.com/nemomobile/nemo-qml-plugin-notifications;
+license=('BSD')
+depends=('qt5-declarative')
+makedepends=('git')
+source=("git+https://github.com/nemomobile/nemo-qml-plugin-notifications.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd nemo-qml-plugin-notifications
+
+  qmake-qt5
+  make
+}
+
+package() {
+  cd nemo-qml-plugin-notifications
+
+  make INSTALL_ROOT="${pkgdir}" install
+}


[arch-commits] Commit in nemo-qml-plugin-notifications/trunk (PKGBUILD)

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:02:07
  Author: bluewind
Revision: 149030

C++11 ABI rebuild

Modified:
  nemo-qml-plugin-notifications/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:01:12 UTC (rev 149029)
+++ PKGBUILD2015-12-06 18:02:07 UTC (rev 149030)
@@ -3,7 +3,7 @@
 
 pkgname=nemo-qml-plugin-notifications
 pkgver=1.0.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Notifications plugin for Nemo Mobile"
 arch=('i686' 'x86_64')
 url="https://github.com/nemomobile/nemo-qml-plugin-notifications;


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:01:04
  Author: foutrelis
Revision: 149028

C++11 ABI rebuild

Modified:
  boinctui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:00:30 UTC (rev 149027)
+++ PKGBUILD2015-12-06 18:01:04 UTC (rev 149028)
@@ -3,7 +3,7 @@
 
 pkgname=boinctui
 pkgver=2.3.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Curses based fullscreen BOINC manager"
 arch=('i686' 'x86_64')
 url="http://boinctui.googlecode.com/;


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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 19:25:36
  Author: fyan
Revision: 252924

C++11 ABI rebuild

Modified:
  easytag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:07:35 UTC (rev 252923)
+++ PKGBUILD2015-12-06 18:25:36 UTC (rev 252924)
@@ -6,7 +6,7 @@
 
 pkgname=easytag
 pkgver=2.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Simple application for viewing and editing tags in audio files'
 arch=('i686' 'x86_64')
 license=('GPL')


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:33:40
  Author: foutrelis
Revision: 252930

C++11 ABI rebuild

Modified:
  hefur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:32:52 UTC (rev 252929)
+++ PKGBUILD2015-12-06 18:33:40 UTC (rev 252930)
@@ -4,7 +4,7 @@
 
 pkgname=hefur
 pkgver=0.4
-pkgrel=7
+pkgrel=8
 pkgdesc='A standalone and lightweight BitTorrent tracker'
 arch=('i686' 'x86_64')
 url='http://github.com/abique/hefur'


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:33:51
  Author: foutrelis
Revision: 252932

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

Added:
  hefur/repos/staging-i686/
  hefur/repos/staging-i686/PKGBUILD
(from rev 252930, hefur/trunk/PKGBUILD)
  hefur/repos/staging-i686/hefur.install
(from rev 252930, hefur/trunk/hefur.install)
  hefur/repos/staging-i686/hefurd.service
(from rev 252930, hefur/trunk/hefurd.service)
  hefur/repos/staging-i686/tmpfiles.conf
(from rev 252930, hefur/trunk/tmpfiles.conf)
  hefur/repos/staging-x86_64/
  hefur/repos/staging-x86_64/PKGBUILD
(from rev 252931, hefur/trunk/PKGBUILD)
  hefur/repos/staging-x86_64/hefur.install
(from rev 252931, hefur/trunk/hefur.install)
  hefur/repos/staging-x86_64/hefurd.service
(from rev 252931, hefur/trunk/hefurd.service)
  hefur/repos/staging-x86_64/tmpfiles.conf
(from rev 252931, hefur/trunk/tmpfiles.conf)

---+
 staging-i686/PKGBUILD |   36 
 staging-i686/hefur.install|   12 
 staging-i686/hefurd.service   |   12 
 staging-i686/tmpfiles.conf|1 +
 staging-x86_64/PKGBUILD   |   36 
 staging-x86_64/hefur.install  |   12 
 staging-x86_64/hefurd.service |   12 
 staging-x86_64/tmpfiles.conf  |1 +
 8 files changed, 122 insertions(+)

Copied: hefur/repos/staging-i686/PKGBUILD (from rev 252930, 
hefur/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 18:33:51 UTC (rev 252932)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.4
+pkgrel=8
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('i686' 'x86_64')
+url='http://github.com/abique/hefur'
+license=('MIT')
+makedepends=('cmake')
+depends=('gnutls' 'xz' 'protobuf')
+install='hefur.install'
+source=("https://github.com/downloads/abique/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+'hefurd.service' 'tmpfiles.conf')
+md5sums=('f0461363f38105140a1f119a3b97d818'
+ '3107be29769b8afde3574dc6e31d5b6a'
+ '09c64ca9b66f7c7877a5a2ce81c0dcff')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   DESTDIR=${pkgdir} make install
+   install -D -m644 ${srcdir}/hefurd.service 
${pkgdir}/usr/lib/systemd/system/hefurd.service
+   install -D -m644 ${srcdir}/tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/hefurd.conf
+   install -D -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE 
${pkgdir}/usr/share/licenses/hefur/LICENSE
+   install -d -m755 ${pkgdir}/var/lib/hefurd
+}

Copied: hefur/repos/staging-i686/hefur.install (from rev 252930, 
hefur/trunk/hefur.install)
===
--- staging-i686/hefur.install  (rev 0)
+++ staging-i686/hefur.install  2015-12-06 18:33:51 UTC (rev 252932)
@@ -0,0 +1,12 @@
+post_install() {
+   if [ ! `grep hefur /etc/group` ]; then
+   groupadd -r hefur &>/dev/null;
+   fi
+
+   id hefur &>/dev/null || \
+   useradd -r -g hefur -d /var/lib/hefurd -s /usr/bin/nologin hefur
+}
+
+post_upgrade() {
+   post_install
+}

Copied: hefur/repos/staging-i686/hefurd.service (from rev 252930, 
hefur/trunk/hefurd.service)
===
--- staging-i686/hefurd.service (rev 0)
+++ staging-i686/hefurd.service 2015-12-06 18:33:51 UTC (rev 252932)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Hefur BitTorrent tracker
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/hefurd -torrent-dir /var/lib/hefurd
+User=hefur
+Group=hefur
+CPUSchedulingPolicy=batch
+
+[Install]
+WantedBy=multi-user.target

Copied: hefur/repos/staging-i686/tmpfiles.conf (from rev 252930, 
hefur/trunk/tmpfiles.conf)
===
--- staging-i686/tmpfiles.conf  (rev 0)
+++ staging-i686/tmpfiles.conf  2015-12-06 18:33:51 UTC (rev 252932)
@@ -0,0 +1 @@
+d /run/hefur - hefur hefur -

Copied: hefur/repos/staging-x86_64/PKGBUILD (from rev 252931, 
hefur/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 18:33:51 UTC (rev 252932)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.4
+pkgrel=8
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('i686' 

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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:33:53
  Author: bluewind
Revision: 252933

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

Added:
  icewm/repos/staging-i686/
  icewm/repos/staging-i686/PKGBUILD
(from rev 252931, icewm/trunk/PKGBUILD)
  icewm/repos/staging-i686/icewm-1.3.8-remain_power.patch
(from rev 252931, icewm/trunk/icewm-1.3.8-remain_power.patch)
  icewm/repos/staging-i686/icewm-1.3.8-shutdown-reboot-command.patch
(from rev 252931, icewm/trunk/icewm-1.3.8-shutdown-reboot-command.patch)
  icewm/repos/staging-i686/icewm-cpustatus.patch
(from rev 252931, icewm/trunk/icewm-cpustatus.patch)
  icewm/repos/staging-i686/ignore_workarea_hints.patch
(from rev 252931, icewm/trunk/ignore_workarea_hints.patch)
  icewm/repos/staging-x86_64/
  icewm/repos/staging-x86_64/PKGBUILD
(from rev 252931, icewm/trunk/PKGBUILD)
  icewm/repos/staging-x86_64/icewm-1.3.8-remain_power.patch
(from rev 252931, icewm/trunk/icewm-1.3.8-remain_power.patch)
  icewm/repos/staging-x86_64/icewm-1.3.8-shutdown-reboot-command.patch
(from rev 252931, icewm/trunk/icewm-1.3.8-shutdown-reboot-command.patch)
  icewm/repos/staging-x86_64/icewm-cpustatus.patch
(from rev 252931, icewm/trunk/icewm-cpustatus.patch)
  icewm/repos/staging-x86_64/ignore_workarea_hints.patch
(from rev 252931, icewm/trunk/ignore_workarea_hints.patch)

--+
 staging-i686/PKGBUILD|   40 
 staging-i686/icewm-1.3.8-remain_power.patch  |   32 ++
 staging-i686/icewm-1.3.8-shutdown-reboot-command.patch   |   13 ++
 staging-i686/icewm-cpustatus.patch   |   45 +
 staging-i686/ignore_workarea_hints.patch |   62 +
 staging-x86_64/PKGBUILD  |   40 
 staging-x86_64/icewm-1.3.8-remain_power.patch|   32 ++
 staging-x86_64/icewm-1.3.8-shutdown-reboot-command.patch |   13 ++
 staging-x86_64/icewm-cpustatus.patch |   45 +
 staging-x86_64/ignore_workarea_hints.patch   |   62 +
 10 files changed, 384 insertions(+)

Copied: icewm/repos/staging-i686/PKGBUILD (from rev 252931, 
icewm/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 18:33:53 UTC (rev 252933)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=icewm
+pkgver=1.3.8
+pkgrel=4
+pkgdesc="A Window Manager designed for speed, usability, and consistency"
+arch=('i686' 'x86_64')
+url="http://www.icewm.org/;
+license=('LGPL')
+depends=('libxrandr' 'libxft' 'libsm' 'libxinerama' 'gdk-pixbuf2')
+makedepends=('xorg-mkfontdir')
+source=(http://downloads.sourceforge.net/sourceforge/icewm/${pkgname}-${pkgver}.tar.gz
+ignore_workarea_hints.patch icewm-cpustatus.patch 
icewm-1.3.8-shutdown-reboot-command.patch
+icewm-1.3.8-remain_power.patch)
+sha1sums=('dc9155227129be14aced00c24c572356e0fa5cd8'
+  '88b4b198827d6590901c2c8bdba8826d928f6f1a'
+  '0f4a02153496dadd26742f6bd3bdc166d7eafaed'
+  'd85d35b756ca2d5283f10de9d9bca23d39c68f6f'
+  '1c5e7361bec5f4775da86f663ecb397e711b8486')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}/ignore_workarea_hints.patch"
+  patch -p2 -i "${srcdir}/icewm-cpustatus.patch"
+  patch -p1 -i "${srcdir}/icewm-1.3.8-shutdown-reboot-command.patch"
+  patch -p1 -i "${srcdir}/icewm-1.3.8-remain_power.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--enable-shaped-decorations --enable-gradients
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install install-man install-docs install-desktop
+}

Copied: icewm/repos/staging-i686/icewm-1.3.8-remain_power.patch (from rev 
252931, icewm/trunk/icewm-1.3.8-remain_power.patch)
===
--- staging-i686/icewm-1.3.8-remain_power.patch (rev 0)
+++ staging-i686/icewm-1.3.8-remain_power.patch 2015-12-06 18:33:53 UTC (rev 
252933)
@@ -0,0 +1,32 @@
+--- icewm-1.3.8-orig/src/aapm.cc   2013-11-17 17:54:39.0 +0100
 icewm-1.3.8/src/aapm.cc2014-05-30 21:50:54.131868164 +0200
+@@ -614,6 +614,11 @@
+ }
+ strcat3(buf, "/sys/class/power_supply/", BATname, "/current_now", 
sizeof(buf));
+ fd = fopen(buf, "r");
++if (fd == NULL) {
++  strcat3(buf, "/sys/class/power_supply/", BATname, "/power_now", 
sizeof(buf));
++  fd = fopen(buf, "r");
++  }
++
+ if (fd != NULL && fgets(buf, sizeof(buf), fd)) {
+ //In case it contains non-numeric value
+ if (sscanf(buf,"%d", ) <= 0) {
+@@ -697,7 +703,7 @@
+batCount++;
+ }
+ 
+-if 

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:32:52
  Author: foutrelis
Revision: 252929

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

Added:
  gtkmathview/repos/staging-i686/
  gtkmathview/repos/staging-i686/PKGBUILD
(from rev 252928, gtkmathview/trunk/PKGBUILD)
  gtkmathview/repos/staging-i686/gtkmathview-0.8.0-cond-t1.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-cond-t1.patch)
  gtkmathview/repos/staging-i686/gtkmathview-0.8.0-gcc43.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-gcc43.patch)
  gtkmathview/repos/staging-i686/gtkmathview-0.8.0-gcc47.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-gcc47.patch)
  gtkmathview/repos/staging-i686/gtkmathview-0.8.0-includes.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-includes.patch)
  gtkmathview/repos/staging-x86_64/
  gtkmathview/repos/staging-x86_64/PKGBUILD
(from rev 252928, gtkmathview/trunk/PKGBUILD)
  gtkmathview/repos/staging-x86_64/gtkmathview-0.8.0-cond-t1.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-cond-t1.patch)
  gtkmathview/repos/staging-x86_64/gtkmathview-0.8.0-gcc43.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-gcc43.patch)
  gtkmathview/repos/staging-x86_64/gtkmathview-0.8.0-gcc47.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-gcc47.patch)
  gtkmathview/repos/staging-x86_64/gtkmathview-0.8.0-includes.patch
(from rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-includes.patch)

-+
 staging-i686/PKGBUILD   |   48 +++
 staging-i686/gtkmathview-0.8.0-cond-t1.patch|   22 +++
 staging-i686/gtkmathview-0.8.0-gcc43.patch  |   56 ++
 staging-i686/gtkmathview-0.8.0-gcc47.patch  |   67 ++
 staging-i686/gtkmathview-0.8.0-includes.patch   |   12 +++
 staging-x86_64/PKGBUILD |   48 +++
 staging-x86_64/gtkmathview-0.8.0-cond-t1.patch  |   22 +++
 staging-x86_64/gtkmathview-0.8.0-gcc43.patch|   56 ++
 staging-x86_64/gtkmathview-0.8.0-gcc47.patch|   67 ++
 staging-x86_64/gtkmathview-0.8.0-includes.patch |   12 +++
 10 files changed, 410 insertions(+)

Copied: gtkmathview/repos/staging-i686/PKGBUILD (from rev 252928, 
gtkmathview/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 18:32:52 UTC (rev 252929)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jan de Groot 
+
+pkgname=gtkmathview
+pkgver=0.8.0
+pkgrel=5
+pkgdesc="C++ rendering engine for MathML documents"
+arch=('i686' 'x86_64')
+url="http://helm.cs.unibo.it/mml-widget/;
+license=('LGPL3')
+depends=('popt' 'gtk2' 't1lib' 'gmetadom' 'pangox-compat')
+source=(http://helm.cs.unibo.it/mml-widget/sources/${pkgname}-${pkgver}.tar.gz
+gtkmathview-0.8.0-gcc43.patch
+gtkmathview-0.8.0-cond-t1.patch
+gtkmathview-0.8.0-gcc47.patch
+gtkmathview-0.8.0-includes.patch)
+md5sums=('b53564e553728d4b69f7d366dfeb5299'
+ '92eb2870c1922cbebd5566900cde220b'
+ 'a79a27e00908e75712bc9453b669fe61'
+ '8c8620aee002b30975e1e175ef9af7a7'
+ '4fc8daefbf27d49067b0c66bba54f428')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/gtkmathview-0.8.0-gcc43.patch
+  patch -Np1 -i ${srcdir}/gtkmathview-0.8.0-gcc47.patch
+  patch -Np1 -i ${srcdir}/gtkmathview-0.8.0-includes.patch
+  patch -Np1 -i ${srcdir}/gtkmathview-0.8.0-cond-t1.patch
+  
+  # AM_BINRELOC missing, just ignore
+  echo 'AC_DEFUN([AM_BINRELOC], [])' > acinclude.m4
+  autoreconf -if
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--disable-static
+  make LIBTOOL=/usr/bin/libtool
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir}/ install
+}
+

Copied: gtkmathview/repos/staging-i686/gtkmathview-0.8.0-cond-t1.patch (from 
rev 252928, gtkmathview/trunk/gtkmathview-0.8.0-cond-t1.patch)
===
--- staging-i686/gtkmathview-0.8.0-cond-t1.patch
(rev 0)
+++ staging-i686/gtkmathview-0.8.0-cond-t1.patch2015-12-06 18:32:52 UTC 
(rev 252929)
@@ -0,0 +1,22 @@
+diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN 
gtkmathview-0.8.0.old/src/backend/ps/PS_StreamRenderingContext.cc 
gtkmathview-0.8.0/src/backend/ps/PS_StreamRenderingContext.cc
+--- gtkmathview-0.8.0.old/src/backend/ps/PS_StreamRenderingContext.cc  
2007-08-17 06:02:40.0 -0400
 gtkmathview-0.8.0/src/backend/ps/PS_StreamRenderingContext.cc  
2008-06-26 14:46:31.0 -0400
+@@ -24,7 +24,6 @@
+ #include "PS_StreamRenderingContext.hh"
+ #include "String.hh"
+ #include "FontDataBase.hh"

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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:31:15
  Author: bluewind
Revision: 149045

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

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

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

Copied: libtaginfo/repos/community-staging-i686/PKGBUILD (from rev 149044, 
libtaginfo/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 18:31:15 UTC (rev 149045)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libtaginfo
+pkgver=0.2.1
+pkgrel=2
+pkgdesc="Library for reading media metadata"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/shuerhaaken/libtaginfo;
+depends=('taglib' 'gcc-libs')
+license=('GPL2')
+source=("https://bitbucket.org/shuerhaaken/libtaginfo/downloads/$pkgname-$pkgver.tar.gz;)
+sha512sums=('f1a79b1f7ea12bce10c82c0a4106f855c95b6efeef25e7548fc629d4f8977f50fe62637426a53ec0333902d5e2a81980c189719d030d7f85897ecfa8cbb1ba41')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+

Copied: libtaginfo/repos/community-staging-x86_64/PKGBUILD (from rev 149044, 
libtaginfo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 18:31:15 UTC (rev 149045)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libtaginfo
+pkgver=0.2.1
+pkgrel=2
+pkgdesc="Library for reading media metadata"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/shuerhaaken/libtaginfo;
+depends=('taglib' 'gcc-libs')
+license=('GPL2')
+source=("https://bitbucket.org/shuerhaaken/libtaginfo/downloads/$pkgname-$pkgver.tar.gz;)
+sha512sums=('f1a79b1f7ea12bce10c82c0a4106f855c95b6efeef25e7548fc629d4f8977f50fe62637426a53ec0333902d5e2a81980c189719d030d7f85897ecfa8cbb1ba41')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:32:39
  Author: foutrelis
Revision: 252928

C++11 ABI rebuild

Modified:
  gtkmathview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:29:31 UTC (rev 252927)
+++ PKGBUILD2015-12-06 18:32:39 UTC (rev 252928)
@@ -4,7 +4,7 @@
 
 pkgname=gtkmathview
 pkgver=0.8.0
-pkgrel=4
+pkgrel=5
 pkgdesc="C++ rendering engine for MathML documents"
 arch=('i686' 'x86_64')
 url="http://helm.cs.unibo.it/mml-widget/;


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:40:13
  Author: bluewind
Revision: 252942

C++11 ABI rebuild

Modified:
  kcodecs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 18:39:11 UTC (rev 252941)
+++ PKGBUILD2015-12-06 18:40:13 UTC (rev 252942)
@@ -4,7 +4,7 @@
 
 pkgname=kcodecs
 pkgver=5.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Provide a collection of methods to manipulate strings using various 
encodings'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/kcodecs'


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

2015-12-06 Thread Florian Pritz
Date: Sunday, December 6, 2015 @ 19:40:18
  Author: bluewind
Revision: 252943

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

Added:
  kcodecs/repos/staging-i686/
  kcodecs/repos/staging-i686/PKGBUILD
(from rev 252942, kcodecs/trunk/PKGBUILD)
  kcodecs/repos/staging-x86_64/
  kcodecs/repos/staging-x86_64/PKGBUILD
(from rev 252942, kcodecs/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   36 
 staging-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kcodecs/repos/staging-i686/PKGBUILD (from rev 252942, 
kcodecs/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 18:40:18 UTC (rev 252943)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcodecs
+pkgver=5.16.0
+pkgrel=2
+pkgdesc='Provide a collection of methods to manipulate strings using various 
encodings'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcodecs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c33c270efadf19c86aa7058effb611ba')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kcodecs/repos/staging-x86_64/PKGBUILD (from rev 252942, 
kcodecs/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 18:40:18 UTC (rev 252943)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcodecs
+pkgver=5.16.0
+pkgrel=2
+pkgdesc='Provide a collection of methods to manipulate strings using various 
encodings'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcodecs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c33c270efadf19c86aa7058effb611ba')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in kdevelop-pg-qt/repos (6 files)

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 19:39:11
  Author: foutrelis
Revision: 252941

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

Added:
  kdevelop-pg-qt/repos/staging-i686/
  kdevelop-pg-qt/repos/staging-i686/PKGBUILD
(from rev 252940, kdevelop-pg-qt/trunk/PKGBUILD)
  kdevelop-pg-qt/repos/staging-i686/fix-build.patch
(from rev 252940, kdevelop-pg-qt/trunk/fix-build.patch)
  kdevelop-pg-qt/repos/staging-x86_64/
  kdevelop-pg-qt/repos/staging-x86_64/PKGBUILD
(from rev 252940, kdevelop-pg-qt/trunk/PKGBUILD)
  kdevelop-pg-qt/repos/staging-x86_64/fix-build.patch
(from rev 252940, kdevelop-pg-qt/trunk/fix-build.patch)

+
 staging-i686/PKGBUILD  |   36 
 staging-i686/fix-build.patch   | 2410 +++
 staging-x86_64/PKGBUILD|   36 
 staging-x86_64/fix-build.patch | 2410 +++
 4 files changed, 4892 insertions(+)

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


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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 16:15:36
  Author: fyan
Revision: 252833

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

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

--+
 /PKGBUILD|   88 +
 /perl-xml-libxml.install |   32 
 extra-i686/PKGBUILD  |   44 
 extra-i686/perl-xml-libxml.install   |   16 --
 extra-x86_64/PKGBUILD|   44 
 extra-x86_64/perl-xml-libxml.install |   16 --
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-06 15:15:05 UTC (rev 252832)
+++ extra-i686/PKGBUILD 2015-12-06 15:15:36 UTC (rev 252833)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jonathan Steel 
-# Contributor: Justin "juster" Davis 
-# Contributor: François Charette 
-
-pkgname=perl-xml-libxml
-pkgver=2.0122
-pkgrel=1
-pkgdesc="Interface to the libxml library"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-checkdepends=('perl-test-pod' 'perl-test-leaktrace')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('8bf504427a44ed6b84be807b55684271')
-
-build() {
-  cd "$srcdir"/XML-LibXML-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "$srcdir"/XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd "$srcdir"/XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR="$pkgdir"/
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-xml-libxml/repos/extra-i686/PKGBUILD (from rev 252832, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-06 15:15:36 UTC (rev 252833)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Steel 
+# Contributor: Justin "juster" Davis 
+# Contributor: François Charette 
+
+pkgname=perl-xml-libxml
+pkgver=2.0123
+pkgrel=1
+pkgdesc="Interface to the libxml library"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+checkdepends=('perl-test-pod' 'perl-test-leaktrace')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+md5sums=('c9eb502f8aa2586c4a4dce3c784a2a0b')
+
+build() {
+  cd "$srcdir"/XML-LibXML-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir"/XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd "$srcdir"/XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR="$pkgdir"/
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-i686/perl-xml-libxml.install
===
--- extra-i686/perl-xml-libxml.install  2015-12-06 15:15:05 UTC (rev 252832)
+++ extra-i686/perl-xml-libxml.install  2015-12-06 15:15:36 UTC (rev 252833)
@@ -1,16 +0,0 @@

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

2015-12-06 Thread Felix Yan
Date: Sunday, December 6, 2015 @ 16:15:05
  Author: fyan
Revision: 252832

upgpkg: perl-xml-libxml 2.0123-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 15:09:57 UTC (rev 252831)
+++ PKGBUILD2015-12-06 15:15:05 UTC (rev 252832)
@@ -5,7 +5,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-xml-libxml
-pkgver=2.0122
+pkgver=2.0123
 pkgrel=1
 pkgdesc="Interface to the libxml library"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 options=('!emptydirs')
 install=perl-xml-libxml.install
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('8bf504427a44ed6b84be807b55684271')
+md5sums=('c9eb502f8aa2586c4a4dce3c784a2a0b')
 
 build() {
   cd "$srcdir"/XML-LibXML-$pkgver


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

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 17:25:46
  Author: arojas
Revision: 148873

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

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

+
 community-staging-i686/PKGBUILD|   49 +++
 community-staging-i686/geany.install   |   14 
 community-staging-x86_64/PKGBUILD  |   49 +++
 community-staging-x86_64/geany.install |   14 
 4 files changed, 126 insertions(+)

Copied: geany/repos/community-staging-i686/PKGBUILD (from rev 148872, 
geany/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:25:46 UTC (rev 148873)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Angel Velasquez  
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.26
+pkgrel=2
+pkgdesc='Fast and lightweight IDE'
+arch=('x86_64' 'i686')
+url='http://www.geany.org/'
+license=('GPL')
+depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('perl-xml-parser' 'setconf' 'intltool')
+optdepends=('geany-plugins: various extra features'
+'vte: terminal support'
+'python2')
+install="$pkgname.install"
+source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('e38530e87c577e1e9806be3b40e08fb9ee321eb1abc6361ddacdad89c825f90d')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # Python2 fix
+   sed -i '0,/on/s//on2/' data/templates/files/main.py
+
+  # Syntax highlighting for PKGBUILD files
+  sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+
+  # Fix for FS#10318
+  setconf geany.desktop MimeType ''
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: -u 7 geany.org/Documentation/ReleaseNotes
+# vim:set ts=2 sw=2 et:

Copied: geany/repos/community-staging-i686/geany.install (from rev 148872, 
geany/trunk/geany.install)
===
--- community-staging-i686/geany.install(rev 0)
+++ community-staging-i686/geany.install2015-12-06 16:25:46 UTC (rev 
148873)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Copied: geany/repos/community-staging-x86_64/PKGBUILD (from rev 148872, 
geany/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:25:46 UTC (rev 148873)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Angel Velasquez  
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.26
+pkgrel=2
+pkgdesc='Fast and lightweight IDE'
+arch=('x86_64' 'i686')
+url='http://www.geany.org/'
+license=('GPL')
+depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('perl-xml-parser' 'setconf' 'intltool')
+optdepends=('geany-plugins: various extra features'
+'vte: terminal support'
+'python2')
+install="$pkgname.install"
+source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('e38530e87c577e1e9806be3b40e08fb9ee321eb1abc6361ddacdad89c825f90d')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # Python2 fix
+   sed -i '0,/on/s//on2/' data/templates/files/main.py
+
+  # Syntax highlighting for PKGBUILD files
+  sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+
+  # Fix for FS#10318
+  setconf geany.desktop MimeType ''
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: -u 7 geany.org/Documentation/ReleaseNotes
+# vim:set ts=2 sw=2 et:

Copied: geany/repos/community-staging-x86_64/geany.install (from rev 148872, 
geany/trunk/geany.install)

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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 17:25:57
  Author: bpiotrowski
Revision: 148875

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

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

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

Copied: instead-launcher/repos/community-staging-i686/PKGBUILD (from rev 
148874, instead-launcher/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-06 16:25:57 UTC (rev 148875)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Peter Kosyh 
+
+pkgname=instead-launcher
+pkgver=0.6.1
+pkgrel=5
+pkgdesc="launcher and games downloader for INSTEAD quest interpreter"
+arch=('i686' 'x86_64')
+url="http://instead-launcher.googlecode.com/;
+license=('GPL')
+makedepends=('sed' 'qt4')
+source=(http://instead-launcher.googlecode.com/files/instead-launcher_$pkgver.tar.gz)
+md5sums=('b2136e535dbb77eacb79e3357dc2a173')
+
+build() {
+  cd $srcdir/instead-launcher-$pkgver
+  sed -i 's|/usr/local/bin/sdl-instead|/usr/bin/sdl-instead|g' platform.cpp
+  qmake-qt4 PREFIX=/usr
+  make
+}
+
+package() {
+  depends=('qt4' 'instead')
+  cd $srcdir/instead-launcher-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+}

Copied: instead-launcher/repos/community-staging-x86_64/PKGBUILD (from rev 
148874, instead-launcher/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-06 16:25:57 UTC (rev 148875)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Peter Kosyh 
+
+pkgname=instead-launcher
+pkgver=0.6.1
+pkgrel=5
+pkgdesc="launcher and games downloader for INSTEAD quest interpreter"
+arch=('i686' 'x86_64')
+url="http://instead-launcher.googlecode.com/;
+license=('GPL')
+makedepends=('sed' 'qt4')
+source=(http://instead-launcher.googlecode.com/files/instead-launcher_$pkgver.tar.gz)
+md5sums=('b2136e535dbb77eacb79e3357dc2a173')
+
+build() {
+  cd $srcdir/instead-launcher-$pkgver
+  sed -i 's|/usr/local/bin/sdl-instead|/usr/bin/sdl-instead|g' platform.cpp
+  qmake-qt4 PREFIX=/usr
+  make
+}
+
+package() {
+  depends=('qt4' 'instead')
+  cd $srcdir/instead-launcher-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+}


<    1   2   3   4   5   6   7   8   9   10   >