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

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 11:25:00
  Author: foutrelis
Revision: 135935

upgpkg: mod_perl 2.0.9-2

- Update mod_perl to 2.0.9 in [community] with versioned dep on Perl.
- Remove mod_perl from [community-testing]; it's incompatible with Perl 5.22.

Modified:
  mod_perl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 09:21:14 UTC (rev 135934)
+++ PKGBUILD2015-06-28 09:25:00 UTC (rev 135935)
@@ -5,7 +5,7 @@
 
 pkgname=mod_perl
 pkgver=2.0.9
-pkgrel=1
+pkgrel=2
 pkgdesc='Apache module that embeds the Perl interpreter within the server'
 arch=(i686 x86_64)
 url='http://perl.apache.org/'
@@ -40,4 +40,12 @@
 package() {
   cd mod_perl-$pkgver
   make 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;
 }


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

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 11:25:11
  Author: foutrelis
Revision: 135936

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 09:25:00 UTC (rev 135935)
+++ community-i686/PKGBUILD 2015-06-28 09:25:11 UTC (rev 135936)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Firmicus francois.archlinux.org
-# Contributor: Tom K t...@runbox.com
-
-pkgname=mod_perl
-pkgver=2.0.8
-pkgrel=4
-pkgdesc='Apache module that embeds the Perl interpreter within the server'
-arch=(i686 x86_64)
-url='http://perl.apache.org/'
-license=(APACHE)
-depends=(perl apache db apr-util perl-linux-pid)
-makedepends=(subversion)
-options=(!emptydirs)
-# upstream from http://apache.org/dist/perl/$pkgname-$pkgver.tar.gz is not 
ready for apache 2.4 yet
-# See the discussion 
http://mail-archives.apache.org/mod_mbox/perl-modperl/201402.mbox/thread
-# But trunk seems almost ready for Apache 2.4
-# http://mail-archives.apache.org/mod_mbox/perl-modperl/201408.mbox/browser
-source=(mod_perl::svn+http://svn.apache.org/repos/asf/perl/modperl/trunk#revision=1654615)
-sha256sums=('SKIP')
-
-build() {
-  cd mod_perl
-  perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/bin/apxs
-  make
-}
-
-check() {
-  cd mod_perl
-  # tests are very flaky
-  # make test
-}
-
-package() {
-  cd mod_perl
-  make install DESTDIR=$pkgdir
-}

Copied: mod_perl/repos/community-i686/PKGBUILD (from rev 135935, 
mod_perl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 09:25:11 UTC (rev 135936)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer:
+# Contributor: Firmicus francois.archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=mod_perl
+pkgver=2.0.9
+pkgrel=2
+pkgdesc='Apache module that embeds the Perl interpreter within the server'
+arch=(i686 x86_64)
+url='http://perl.apache.org/'
+license=(APACHE)
+depends=(perl apache db apr-util perl-linux-pid)
+options=(!emptydirs)
+source=(http://apache.org/dist/perl/mod_perl-2.0.9.tar.gz{,.asc}
+
undefined_symbol.patch::http://pkgs.fedoraproject.org/cgit/mod_perl.git/plain/mod_perl-2.0.4-inline.patch?h=f22)
+validpgpkeys=(2026E6A4A6A4483E61BA6F3FAB34BA0040E92ECE)
+sha256sums=('0260f26ab771c1c95fadc67544b3400e420bb30b8a77565d2d02ad05498ef52b'
+'SKIP'
+'08cd008e25d3eee44f477c744f50e574e2cb9853556d268ba06e8b3cb33341e4')
+
+prepare() {
+  cd mod_perl-$pkgver
+  # FS#45392
+  patch -p1  ../undefined_symbol.patch
+}
+
+build() {
+  cd mod_perl-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/bin/apxs
+  make
+}
+
+check() {
+  cd mod_perl-$pkgver
+  # tests are very flaky
+  # make test
+}
+
+package() {
+  cd mod_perl-$pkgver
+  make 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: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 09:25:00 UTC (rev 135935)
+++ community-x86_64/PKGBUILD   2015-06-28 09:25:11 UTC (rev 135936)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Firmicus francois.archlinux.org
-# Contributor: Tom K t...@runbox.com
-
-pkgname=mod_perl
-pkgver=2.0.8
-pkgrel=4
-pkgdesc='Apache module that embeds the Perl interpreter within the server'
-arch=(i686 x86_64)
-url='http://perl.apache.org/'
-license=(APACHE)
-depends=(perl apache db apr-util perl-linux-pid)
-makedepends=(subversion)
-options=(!emptydirs)
-# upstream from http://apache.org/dist/perl/$pkgname-$pkgver.tar.gz is not 
ready for apache 2.4 yet
-# See the discussion 
http://mail-archives.apache.org/mod_mbox/perl-modperl/201402.mbox/thread
-# But trunk seems almost ready for Apache 2.4
-# http://mail-archives.apache.org/mod_mbox/perl-modperl/201408.mbox/browser
-source=(mod_perl::svn+http://svn.apache.org/repos/asf/perl/modperl/trunk#revision=1654615)
-sha256sums=('SKIP')
-
-build() {
-  cd mod_perl
-  perl Makefile.PL INSTALLDIRS=vendor 

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

2015-06-28 Thread Giovanni Scafora
Date: Sunday, June 28, 2015 @ 12:29:36
  Author: giovanni
Revision: 241372

upgpkg: mkvtoolnix 8.1.0-1

upstream release

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 09:55:22 UTC (rev 241371)
+++ PKGBUILD2015-06-28 10:29:36 UTC (rev 241372)
@@ -4,7 +4,7 @@
 
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=8.0.0
+pkgver=8.1.0
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -12,7 +12,7 @@
 makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
  'boost-libs' 'lzo' 'xdg-utils' 'boost' 'ruby')
 
source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
-md5sums=('c93f23fd4f91b25566dcd07684bce01a')
+md5sums=('bfa4032eb8d43b349ee458f8234b5fe3')
 
 prepare() {
   cd ${srcdir}/${pkgbase}-${pkgver}


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

2015-06-28 Thread Giovanni Scafora
Date: Sunday, June 28, 2015 @ 12:29:45
  Author: giovanni
Revision: 241373

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

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

-+
 /PKGBUILD   |  194 ++
 /mkvtoolnix.install |   30 +
 extra-i686/PKGBUILD |   97 ---
 extra-i686/mkvtoolnix.install   |   15 --
 extra-x86_64/PKGBUILD   |   97 ---
 extra-x86_64/mkvtoolnix.install |   15 --
 6 files changed, 224 insertions(+), 224 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-28 10:29:36 UTC (rev 241372)
+++ extra-i686/PKGBUILD 2015-06-28 10:29:45 UTC (rev 241373)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: xduugu xdu...@gmx.com
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=8.0.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo' 'xdg-utils' 'boost' 'ruby')
-source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
-md5sums=('c93f23fd4f91b25566dcd07684bce01a')
-
-prepare() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # Disable automagic curl dep used for online update checking
-  sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS= CURL_LIBS=
-
-  export CFLAGS=${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-  export CXXFLAGS=${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-
-  # Sets number of threads for a parallel build
-  export DRAKETHREADS=4
-
-  autoreconf -vfi
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # XXX: Temporary define to build against boost 1.58
-  # https://github.com/mbunkus/mkvtoolnix/issues/1172
-  CXXFLAGS+=' -DBOOST_CODECVT_DO_LENGTH_CONST=const'
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --disable-gui
-  ./drake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib
-  ./drake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - CLI 
version
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  ./drake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli ${pkgdir}/usr/bin/mkvinfo
-
-  rm -rf ${pkgdir}/usr/bin/mmg
-  rm -rf ${pkgdir}/usr/share/man/de/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/applications
-  rm -rf ${pkgdir}/usr/share/icons
-  rm -rf ${pkgdir}/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - wxGTK GUI
-  depends=(mkvtoolnix-cli=${pkgver} 'wxgtk' 'xdg-utils' 'desktop-file-utils')
-  install=mkvtoolnix.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  ./drake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkv*
-  install -Dm755 src/mkvinfo ${pkgdir}/usr/bin/mkvinfo-gtk
-  sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
${pkgdir}/usr/share/applications/mkvinfo.desktop
-
-  rm -rf ${pkgdir}/usr/share/doc
-  rm -rf ${pkgdir}/usr/share/locale
-  rm -rf ${pkgdir}/usr/share/man/de/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 241372, 
mkvtoolnix/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-28 10:29:45 UTC (rev 241373)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: xduugu xdu...@gmx.com
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgver=8.1.0

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:02:56
  Author: bgyorgy
Revision: 136018

upgpkg: cinnamon-translations 2.6.3-1

Update to version 2.6.3

Modified:
  cinnamon-translations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 10:58:41 UTC (rev 136017)
+++ PKGBUILD2015-06-28 11:02:56 UTC (rev 136018)
@@ -2,7 +2,7 @@
 # Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
 
 pkgname=cinnamon-translations
-pkgver=2.6.2
+pkgver=2.6.3
 pkgrel=1
 pkgdesc=Translations for Cinnamon and Nemo
 arch=(any)
@@ -9,7 +9,7 @@
 url=http://cinnamon.linuxmint.com/;
 license=('GPL2')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
-sha256sums=('8cbf6114a8b0b19ea0755f4527414661712b5d58fefa057593b4a05a2d1c1f03')
+sha256sums=('3b86b3f16e3afb9dff31506b431c95251d87b9390c5d2290c5896331b2ec91fe')
 
 build() {
cd ${pkgname}-${pkgver}


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:03:01
  Author: bgyorgy
Revision: 136019

archrelease: copy trunk to community-any

Added:
  cinnamon-translations/repos/community-any/PKGBUILD
(from rev 136018, cinnamon-translations/trunk/PKGBUILD)
Deleted:
  cinnamon-translations/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 11:02:56 UTC (rev 136018)
+++ PKGBUILD2015-06-28 11:03:01 UTC (rev 136019)
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD 98057 2013-10-05 02:33:20Z faidoc $
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-
-pkgname=cinnamon-translations
-pkgver=2.6.2
-pkgrel=1
-pkgdesc=Translations for Cinnamon and Nemo
-arch=(any)
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
-sha256sums=('8cbf6114a8b0b19ea0755f4527414661712b5d58fefa057593b4a05a2d1c1f03')
-
-build() {
-   cd ${pkgname}-${pkgver}
-   make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  
-  install -m 0755 -d ${pkgdir}/usr/share/locale/ 
-  cp -Rp usr/share/locale/* ${pkgdir}/usr/share/locale/
-}

Copied: cinnamon-translations/repos/community-any/PKGBUILD (from rev 136018, 
cinnamon-translations/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 11:03:01 UTC (rev 136019)
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 98057 2013-10-05 02:33:20Z faidoc $
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+
+pkgname=cinnamon-translations
+pkgver=2.6.3
+pkgrel=1
+pkgdesc=Translations for Cinnamon and Nemo
+arch=(any)
+url=http://cinnamon.linuxmint.com/;
+license=('GPL2')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-translations/archive/${pkgver}.tar.gz;)
+sha256sums=('3b86b3f16e3afb9dff31506b431c95251d87b9390c5d2290c5896331b2ec91fe')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  
+  install -m 0755 -d ${pkgdir}/usr/share/locale/ 
+  cp -Rp usr/share/locale/* ${pkgdir}/usr/share/locale/
+}


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:18:09
  Author: bgyorgy
Revision: 136026

upgpkg: cinnamon-screensaver 2.6.4-1

Update to version 2.6.4

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:14:15 UTC (rev 136025)
+++ PKGBUILD2015-06-28 11:18:09 UTC (rev 136026)
@@ -4,7 +4,7 @@
 # Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-screensaver
-pkgver=2.6.3
+pkgver=2.6.4
 pkgrel=1
 pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('intltool' 'gnome-common')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
cinnamon-screensaver.pam)
-sha256sums=('cef3e6ccbb77e91f7e4ef04115b45696c5b6070b8517a60c8782b1f0a67a348a'
+sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
 'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
 
 build() {


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:18:16
  Author: bgyorgy
Revision: 136027

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

Added:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
(from rev 136026, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
(from rev 136026, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 136026, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam
(from rev 136026, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
Deleted:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam

---+
 /PKGBUILD |   70 
 /cinnamon-screensaver.pam |   12 
 community-i686/PKGBUILD   |   35 --
 community-i686/cinnamon-screensaver.pam   |6 --
 community-x86_64/PKGBUILD |   35 --
 community-x86_64/cinnamon-screensaver.pam |6 --
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:18:09 UTC (rev 136026)
+++ community-i686/PKGBUILD 2015-06-28 11:18:16 UTC (rev 136027)
@@ -1,35 +0,0 @@
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-screensaver
-pkgver=2.6.3
-pkgrel=1
-pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
-arch=('i686' 'x86_64')
-license=('GPL')
-url=https://github.com/linuxmint/cinnamon-screensaver;
-backup=(etc/pam.d/cinnamon-screensaver)
-depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk' 'python')
-makedepends=('intltool' 'gnome-common')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
-   cinnamon-screensaver.pam)
-sha256sums=('cef3e6ccbb77e91f7e4ef04115b45696c5b6070b8517a60c8782b1f0a67a348a'
-'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-   --libexecdir=/usr/lib/cinnamon-screensaver \
-   --localstatedir=/var \
-   --with-mit-ext --with-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
-}

Copied: cinnamon-screensaver/repos/community-i686/PKGBUILD (from rev 136026, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 11:18:16 UTC (rev 136027)
@@ -0,0 +1,35 @@
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-screensaver
+pkgver=2.6.4
+pkgrel=1
+pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=https://github.com/linuxmint/cinnamon-screensaver;
+backup=(etc/pam.d/cinnamon-screensaver)
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk' 'python')
+makedepends=('intltool' 'gnome-common')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
+   cinnamon-screensaver.pam)
+sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+   --libexecdir=/usr/lib/cinnamon-screensaver \
+   --localstatedir=/var \
+   --with-mit-ext --with-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
+}

Deleted: community-i686/cinnamon-screensaver.pam
===
--- community-i686/cinnamon-screensaver.pam 2015-06-28 11:18:09 UTC (rev 
136026)
+++ community-i686/cinnamon-screensaver.pam 2015-06-28 11:18:16 UTC (rev 
136027)
@@ -1,6 +0,0 @@
-#%PAM-1.0
-auth   include system-auth
-auth   optional 

[arch-commits] Commit in nemo/trunk (PKGBUILD desktop-theme.patch)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 12:48:06
  Author: bgyorgy
Revision: 136014

upgpkg: nemo 2.6.7-1

Update to version 2.6.7, remove unneeded patch

Modified:
  nemo/trunk/PKGBUILD
Deleted:
  nemo/trunk/desktop-theme.patch

-+
 PKGBUILD|   14 +
 desktop-theme.patch |  131 --
 2 files changed, 3 insertions(+), 142 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 10:46:39 UTC (rev 136013)
+++ PKGBUILD2015-06-28 10:48:06 UTC (rev 136014)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=2.6.5
+pkgver=2.6.7
 pkgrel=1
 pkgdesc=Cinnamon file manager (Nautilus fork)
 arch=('i686' 'x86_64')
@@ -14,10 +14,8 @@
 makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
 options=('!emptydirs')
 install=nemo.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
-desktop-theme.patch)
-sha256sums=('1a7f91498fdcb8a75b0eb4e06ab50541e8178d3b91af274af4e2d5fcfe845e2d'
-'565aaf8275bc255c89dce44dca3e353e35d093411558aa278b4f52dd49f9d57d')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
+sha256sums=('a4fe464c82b6b86b51ab050341b16dabc652c326789dae450f267a8edfb94fc3')
 
 prepare() {
   cd linuxmint-nemo-*
@@ -25,12 +23,6 @@
   # Python2 fix
   find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
 
-  # Add application-specific theme for Adwaita
-  patch -Np1 -i ../desktop-theme.patch
-
-  # Fix build
-  #sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
-
   # Rename 'Files' app name to avoid having the same as nautilus
   sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
 }

Deleted: desktop-theme.patch
===
--- desktop-theme.patch 2015-06-28 10:46:39 UTC (rev 136013)
+++ desktop-theme.patch 2015-06-28 10:48:06 UTC (rev 136014)
@@ -1,131 +0,0 @@
-From 64ad6c0a96b46a9d86d9a8babac1298c18d5fc1f Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= ballog...@gmail.com
-Date: Sat, 22 Nov 2014 21:23:25 +0100
-Subject: [PATCH] Add application-specific theme for Adwaita
-
-Based on this patch for Nautilus:
-https://git.gnome.org/browse/nautilus/commit/?id=3fd7e847d531fbbfc4ebba24864bdd0f8b81c750

- src/Adwaita.css| 26 +
- src/nemo-application.c | 52 ++
- src/nemo.gresource.xml |  1 +
- 3 files changed, 79 insertions(+)
- create mode 100644 src/Adwaita.css
-
-diff --git a/src/Adwaita.css b/src/Adwaita.css
-new file mode 100644
-index 000..d8b1f0c
 /dev/null
-+++ b/src/Adwaita.css
-@@ -0,0 +1,26 @@
-+.nemo-canvas-item {
-+border-radius: 5px;
-+}
-+
-+.nemo-desktop.nemo-canvas-item {
-+color: @theme_selected_fg_color;
-+text-shadow: 1px 1px black;
-+}
-+
-+.nemo-desktop.nemo-canvas-item:active {
-+color: @theme_text_color;
-+}
-+
-+.nemo-desktop.nemo-canvas-item:selected {
-+color: @theme_selected_fg_color;
-+}
-+
-+.nemo-desktop.nemo-canvas-item:active,
-+.nemo-desktop.nemo-canvas-item:prelight,
-+.nemo-desktop.nemo-canvas-item:selected {
-+text-shadow: none;
-+}
-+
-+.nemo-desktop.nemo-canvas-item:selected:backdrop {
-+color: @theme_unfocused_selected_fg_color;
-+}
-diff --git a/src/nemo-application.c b/src/nemo-application.c
-index b3e8945..e5dd014 100644
 a/src/nemo-application.c
-+++ b/src/nemo-application.c
-@@ -1041,6 +1041,56 @@ out_a:
- }
- 
- static void
-+theme_changed (GtkSettings *settings)
-+{
-+  static GtkCssProvider *adwaita_provider = NULL;
-+  gchar *theme;
-+  GdkScreen *screen;
-+
-+  g_object_get (settings, gtk-theme-name, theme, NULL);
-+  screen = gdk_screen_get_default ();
-+
-+  if (g_str_equal (theme, Adwaita))
-+  {
-+  if (adwaita_provider == NULL)
-+  {
-+  GFile *file;
-+
-+  adwaita_provider = gtk_css_provider_new ();
-+  file = g_file_new_for_uri 
(resource:///org/nemo/Adwaita.css);
-+  gtk_css_provider_load_from_file (adwaita_provider, 
file, NULL);
-+  g_object_unref (file);
-+  }
-+
-+  gtk_style_context_add_provider_for_screen (screen,
-+ GTK_STYLE_PROVIDER 
(adwaita_provider),
-+ 
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
-+  }
-+  else if (adwaita_provider != NULL)
-+  {
-+  gtk_style_context_remove_provider_for_screen (screen,
-+
GTK_STYLE_PROVIDER (adwaita_provider));
-+  g_clear_object (adwaita_provider);
-+  }
-+
-+  g_free (theme);
-+}
-+
-+static void

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 12:48:13
  Author: bgyorgy
Revision: 136015

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

Added:
  nemo/repos/community-i686/PKGBUILD
(from rev 136014, nemo/trunk/PKGBUILD)
  nemo/repos/community-i686/nemo.install
(from rev 136014, nemo/trunk/nemo.install)
  nemo/repos/community-x86_64/PKGBUILD
(from rev 136014, nemo/trunk/PKGBUILD)
  nemo/repos/community-x86_64/nemo.install
(from rev 136014, nemo/trunk/nemo.install)
Deleted:
  nemo/repos/community-i686/PKGBUILD
  nemo/repos/community-i686/desktop-theme.patch
  nemo/repos/community-i686/nemo.install
  nemo/repos/community-x86_64/PKGBUILD
  nemo/repos/community-x86_64/desktop-theme.patch
  nemo/repos/community-x86_64/nemo.install

--+
 /PKGBUILD|   94 +++
 /nemo.install|   28 +++
 community-i686/PKGBUILD  |   55 -
 community-i686/desktop-theme.patch   |  131 -
 community-i686/nemo.install  |   14 ---
 community-x86_64/PKGBUILD|   55 -
 community-x86_64/desktop-theme.patch |  131 -
 community-x86_64/nemo.install|   14 ---
 8 files changed, 122 insertions(+), 400 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 10:48:06 UTC (rev 136014)
+++ community-i686/PKGBUILD 2015-06-28 10:48:13 UTC (rev 136015)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=2.6.5
-pkgrel=1
-pkgdesc=Cinnamon file manager (Nautilus fork)
-arch=('i686' 'x86_64')
-url=https://github.com/linuxmint/nemo;
-license=('GPL')
-depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
- 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations')
-makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
-options=('!emptydirs')
-install=nemo.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
-desktop-theme.patch)
-sha256sums=('1a7f91498fdcb8a75b0eb4e06ab50541e8178d3b91af274af4e2d5fcfe845e2d'
-'565aaf8275bc255c89dce44dca3e353e35d093411558aa278b4f52dd49f9d57d')
-
-prepare() {
-  cd linuxmint-nemo-*
-
-  # Python2 fix
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Add application-specific theme for Adwaita
-  patch -Np1 -i ../desktop-theme.patch
-
-  # Fix build
-  #sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
-
-  # Rename 'Files' app name to avoid having the same as nautilus
-  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
-}
-
-build() {
-  cd linuxmint-nemo-*
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/nemo \
-  --disable-update-mimedb \
-  --disable-tracker \
-  --disable-gtk-doc-html \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd linuxmint-nemo-*
-
-  make DESTDIR=$pkgdir/ install
-}

Copied: nemo/repos/community-i686/PKGBUILD (from rev 136014, 
nemo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 10:48:13 UTC (rev 136015)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.6.7
+pkgrel=1
+pkgdesc=Cinnamon file manager (Nautilus fork)
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/nemo;
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
+ 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 
'python2-gobject' 'python2-polib')
+options=('!emptydirs')
+install=nemo.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;)
+sha256sums=('a4fe464c82b6b86b51ab050341b16dabc652c326789dae450f267a8edfb94fc3')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Rename 'Files' app name to avoid having the same as nautilus
+  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
+}
+
+build() {
+  cd linuxmint-nemo-*
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nemo \
+  --disable-update-mimedb \
+  --disable-tracker \
+  --disable-gtk-doc-html \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/desktop-theme.patch

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 12:58:41
  Author: bgyorgy
Revision: 136017

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 10:58:33 UTC (rev 136016)
+++ community-i686/PKGBUILD 2015-06-28 10:58:41 UTC (rev 136017)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Ionut Biru ib...@archlinux.org
-
-pkgname=cjs
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Javascript Bindings for Cinnamon
-arch=(i686 x86_64)
-url=https://github.com/linuxmint/cjs;
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js dbus-glib)
-makedepends=(gnome-common python2 gobject-introspection)
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
-sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
-   verbump.py
-
-  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Needs a display
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cjs/repos/community-i686/PKGBUILD (from rev 136016, cjs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 10:58:41 UTC (rev 136017)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Ionut Biru ib...@archlinux.org
+
+pkgname=cjs
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=Javascript Bindings for Cinnamon
+arch=(i686 x86_64)
+url=https://github.com/linuxmint/cjs;
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js dbus-glib)
+makedepends=(gnome-common python2 gobject-introspection)
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
+sha256sums=('742e5a98281c3aff3127113352e920151468fd3c55214aa9c9ed09704efa70a0')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
+   verbump.py
+
+  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Needs a display
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 10:58:33 UTC (rev 136016)
+++ community-x86_64/PKGBUILD   2015-06-28 10:58:41 UTC (rev 136017)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Ionut Biru ib...@archlinux.org
-
-pkgname=cjs
-pkgver=2.6.0
-pkgrel=1
-pkgdesc=Javascript Bindings for Cinnamon
-arch=(i686 x86_64)
-url=https://github.com/linuxmint/cjs;
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js dbus-glib)
-makedepends=(gnome-common python2 gobject-introspection)
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
-sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's|#! /usr/bin/env python|#! /usr/bin/env python2|' \
-   verbump.py
-
-  ./autogen.sh --prefix=/usr --disable-static --libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # Needs a display
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cjs/repos/community-x86_64/PKGBUILD (from rev 136016, 
cjs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-28 10:58:41 UTC (rev 136017)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Ionut Biru ib...@archlinux.org
+
+pkgname=cjs
+pkgver=2.6.2
+pkgrel=1
+pkgdesc=Javascript Bindings for Cinnamon
+arch=(i686 x86_64)
+url=https://github.com/linuxmint/cjs;
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js dbus-glib)
+makedepends=(gnome-common 

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

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 13:13:26
  Author: jlichtblau
Revision: 136022

upgpkg: postgis 2.1.5-3 - gdal 2.0.0 rebuild

Modified:
  postgis/trunk/PKGBUILD
  postgis/trunk/postgis.changelog

---+
 PKGBUILD  |4 +---
 postgis.changelog |3 +++
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:10:19 UTC (rev 136021)
+++ PKGBUILD2015-06-28 11:13:26 UTC (rev 136022)
@@ -5,7 +5,7 @@
 
 pkgname=postgis
 pkgver=2.1.5
-pkgrel=2
+pkgrel=3
 pkgdesc=Adds support for geographic objects to PostgreSQL
 arch=('i686' 'x86_64')
 url=http://postgis.net/;
@@ -27,5 +27,3 @@
 
   make DESTDIR=${pkgdir} install
 }
-
-# vim: ts=2 sw=2 et:

Modified: postgis.changelog
===
--- postgis.changelog   2015-06-28 11:10:19 UTC (rev 136021)
+++ postgis.changelog   2015-06-28 11:13:26 UTC (rev 136022)
@@ -1,3 +1,6 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-2 gdal 2.0.0 rebuild
+
 2015-03-14 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.1.5-2 proj soname rebuild
 


[arch-commits] Commit in postgis/repos (3 files)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 13:13:36
  Author: jlichtblau
Revision: 136023

archrelease: copy trunk to community-staging-x86_64

Added:
  postgis/repos/community-staging-x86_64/
  postgis/repos/community-staging-x86_64/PKGBUILD
(from rev 136022, postgis/trunk/PKGBUILD)
  postgis/repos/community-staging-x86_64/postgis.changelog
(from rev 136022, postgis/trunk/postgis.changelog)

---+
 PKGBUILD  |   29 +
 postgis.changelog |   50 ++
 2 files changed, 79 insertions(+)

Copied: postgis/repos/community-staging-x86_64/PKGBUILD (from rev 136022, 
postgis/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-28 11:13:36 UTC (rev 136023)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=postgis
+pkgver=2.1.5
+pkgrel=3
+pkgdesc=Adds support for geographic objects to PostgreSQL
+arch=('i686' 'x86_64')
+url=http://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c' 'proj')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0d0e27f72f12b8dba456fbde25ed0f6913f42baf57332a7f1b9bbc6f29fddbf4')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: postgis/repos/community-staging-x86_64/postgis.changelog (from rev 
136022, postgis/trunk/postgis.changelog)
===
--- community-staging-x86_64/postgis.changelog  (rev 0)
+++ community-staging-x86_64/postgis.changelog  2015-06-28 11:13:36 UTC (rev 
136023)
@@ -0,0 +1,50 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-2 gdal 2.0.0 rebuild
+
+2015-03-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-2 proj soname rebuild
+
+2015-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.4-1
+
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.3-1
+
+2014-04-02 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.2-1
+
+2013-11-11 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.1-1
+
+2013-08-22 Maxime Gauduin aluc...@gmail.com
+* postgis-2.1.0-1
+* Fixes FS#35816
+
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.0.3-1
+
+2013-01-05 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.0.2-1
+
+2012-09-24 Dan McGee d...@archlinux.org
+* Rebuild for PostgreSQL 9.2.x
+* Update to minor release 2.0.1
+
+2012-05-31 Andrea Scarpino and...@archlinux.org
+* Add JSON-C support
+* Build utils (FS#25836)
+
+2012-05-31 Andrea Scarpino and...@archlinux.org
+* Update to major release 2.0.0-1
+
+2011-10-26 Jaroslav Lichtblau svetlemo...@archlinux.org
+* FS#26159 fix in postgis-1.5.3-2
+
+2010-10-30 Jaroslav Lichtblau svetlemo...@archlinux.org
+* Update to major release 1.5.2
+
+2010-03-21 Jaroslav Lichtblau svetlemo...@archlinux.org
+* Update to major release 1.5.1


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:14:15
  Author: bgyorgy
Revision: 136025

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

Added:
  cinnamon-session/repos/community-i686/PKGBUILD
(from rev 136024, cinnamon-session/trunk/PKGBUILD)
  cinnamon-session/repos/community-i686/cinnamon-session.install
(from rev 136024, cinnamon-session/trunk/cinnamon-session.install)
  cinnamon-session/repos/community-i686/timeout.patch
(from rev 136024, cinnamon-session/trunk/timeout.patch)
  cinnamon-session/repos/community-x86_64/PKGBUILD
(from rev 136024, cinnamon-session/trunk/PKGBUILD)
  cinnamon-session/repos/community-x86_64/cinnamon-session.install
(from rev 136024, cinnamon-session/trunk/cinnamon-session.install)
  cinnamon-session/repos/community-x86_64/timeout.patch
(from rev 136024, cinnamon-session/trunk/timeout.patch)
Deleted:
  cinnamon-session/repos/community-i686/PKGBUILD
  cinnamon-session/repos/community-i686/cinnamon-session.install
  cinnamon-session/repos/community-i686/timeout.patch
  cinnamon-session/repos/community-x86_64/PKGBUILD
  cinnamon-session/repos/community-x86_64/cinnamon-session.install
  cinnamon-session/repos/community-x86_64/timeout.patch

---+
 /PKGBUILD |   80 
 /cinnamon-session.install |   24 
 /timeout.patch|   48 
 community-i686/PKGBUILD   |   40 --
 community-i686/cinnamon-session.install   |   12 
 community-i686/timeout.patch  |   24 
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/cinnamon-session.install |   12 
 community-x86_64/timeout.patch|   24 
 9 files changed, 152 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:14:06 UTC (rev 136024)
+++ community-i686/PKGBUILD 2015-06-28 11:14:15 UTC (rev 136025)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-session
-pkgver=2.6.2
-pkgrel=1
-pkgdesc=The Cinnamon Session Handler
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(dbus-glib cinnamon-desktop libsm libcanberra)
-makedepends=(intltool mesa json-glib xtrans gnome-common)
-options=('!emptydirs')
-install=cinnamon-session.install
-url=https://github.com/linuxmint/cinnamon-session;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
-timeout.patch)
-sha256sums=('42ea718b77240ff24061203bc03ba6af7d51bcba2323b0bb73a56870e232cb92'
-'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Increase timeout, for slow machines
-  patch -Np1 -i ../timeout.patch
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/cinnamon-session \
-  --disable-schemas-compile --enable-systemd --disable-gconf
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-session/repos/community-i686/PKGBUILD (from rev 136024, 
cinnamon-session/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 11:14:15 UTC (rev 136025)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-session
+pkgver=2.6.3
+pkgrel=1
+pkgdesc=The Cinnamon Session Handler
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(dbus-glib cinnamon-desktop libsm libcanberra)
+makedepends=(intltool mesa json-glib xtrans gnome-common)
+options=('!emptydirs')
+install=cinnamon-session.install
+url=https://github.com/linuxmint/cinnamon-session;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
+timeout.patch)
+sha256sums=('391db79472cbd6c1546cec5e7e8e82f2a465fea92cda019fca14f7c54cfa4dc1'
+'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/cinnamon-session \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-session.install

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:14:06
  Author: bgyorgy
Revision: 136024

upgpkg: cinnamon-session 2.6.3-1

Update to version 2.6.3

Modified:
  cinnamon-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:13:36 UTC (rev 136023)
+++ PKGBUILD2015-06-28 11:14:06 UTC (rev 136024)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-session
-pkgver=2.6.2
+pkgver=2.6.3
 pkgrel=1
 pkgdesc=The Cinnamon Session Handler
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 url=https://github.com/linuxmint/cinnamon-session;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
 timeout.patch)
-sha256sums=('42ea718b77240ff24061203bc03ba6af7d51bcba2323b0bb73a56870e232cb92'
+sha256sums=('391db79472cbd6c1546cec5e7e8e82f2a465fea92cda019fca14f7c54cfa4dc1'
 'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
 
 prepare() {


[arch-commits] Commit in qlandkartegt/repos (5 files)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 13:20:06
  Author: jlichtblau
Revision: 136028

archrelease: copy trunk to community-staging-i686

Added:
  qlandkartegt/repos/community-staging-i686/
  qlandkartegt/repos/community-staging-i686/PKGBUILD
(from rev 136027, qlandkartegt/trunk/PKGBUILD)
  qlandkartegt/repos/community-staging-i686/qlandkartegt-mimetypes.xml
(from rev 136027, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
  qlandkartegt/repos/community-staging-i686/qlandkartegt.changelog
(from rev 136027, qlandkartegt/trunk/qlandkartegt.changelog)
  qlandkartegt/repos/community-staging-i686/qlandkartegt.install
(from rev 136027, qlandkartegt/trunk/qlandkartegt.install)

+
 PKGBUILD   |   45 +++
 qlandkartegt-mimetypes.xml |7 +++
 qlandkartegt.changelog |   84 +++
 qlandkartegt.install   |7 +++
 4 files changed, 143 insertions(+)

Copied: qlandkartegt/repos/community-staging-i686/PKGBUILD (from rev 136027, 
qlandkartegt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-28 11:20:06 UTC (rev 136028)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Matthias Maennich a...@maennich.net
+# Contributor: boe...@gmx.de
+
+pkgname=qlandkartegt
+pkgver=1.8.1
+pkgrel=4
+pkgdesc=Use your GPS with Linux
+arch=('i686' 'x86_64')
+url=http://www.qlandkarte.org/;
+license=('GPL')
+depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu'
+ 'postgresql-libs' 'shared-mime-info' 'qtwebkit' 'proj')
+makedepends=('cmake' 'garmindev' 'mesa')
+optdepends=('garmindev: to connect garmin devices')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-mimetypes.xml)
+sha256sums=('9e0605ab8f4cbd27741b507f252f08370e9ccca4e05ec35878256c59b22a9be7'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
+
+prepare() {
+  cd ${srcdir}
+  mkdir build
+}
+
+build() {
+  cd ${srcdir}/build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/$pkgname-mimetypes.xml \
+${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
+}

Copied: qlandkartegt/repos/community-staging-i686/qlandkartegt-mimetypes.xml 
(from rev 136027, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
===
--- community-staging-i686/qlandkartegt-mimetypes.xml   
(rev 0)
+++ community-staging-i686/qlandkartegt-mimetypes.xml   2015-06-28 11:20:06 UTC 
(rev 136028)
@@ -0,0 +1,7 @@
+?xml version=1.0?
+mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'
+  mime-type type=application/vnd.qlandkartegt.qlb
+commentQLandkarteGT File/comment
+glob pattern=*.qlb/
+  /mime-type
+/mime-info

Copied: qlandkartegt/repos/community-staging-i686/qlandkartegt.changelog (from 
rev 136027, qlandkartegt/trunk/qlandkartegt.changelog)
===
--- community-staging-i686/qlandkartegt.changelog   
(rev 0)
+++ community-staging-i686/qlandkartegt.changelog   2015-06-28 11:20:06 UTC 
(rev 136028)
@@ -0,0 +1,84 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.1-4 gdal 2.0.0 rebuild
+
+2015-03-10 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.1-1
+
+2015-02-09 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.0-1
+
+2014-07-13 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.7-1
+
+2014-02-22 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.6-1
+
+2013-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.5-1
+
+2013-09-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.4-1
+
+2013-09-02 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.3-1
+
+2013-07-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.1-1
+
+2013-03-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.0-1
+
+2012-12-04 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.6.0-1
+
+2012-10-22 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.5.3-1
+
+2012-09-06 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.5.1-1
+
+2012-07-07 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.5.0-1
+
+2012-05-24 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.4.2-1
+
+2012-05-20 

[arch-commits] Commit in cinnamon/repos (20 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:51:40
  Author: bgyorgy
Revision: 136033

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 136032, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 136032, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/default-theme.patch
(from rev 136032, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-i686/gnome-3.14.patch
(from rev 136032, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-i686/set_wheel.patch
(from rev 136032, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 136032, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 136032, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 136032, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/gnome-3.14.patch
(from rev 136032, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-x86_64/set_wheel.patch
(from rev 136032, cinnamon/trunk/set_wheel.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/default-theme.patch
  cinnamon/repos/community-i686/gnome-3.14.patch
  cinnamon/repos/community-i686/set_wheel.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/gnome-3.14.patch
  cinnamon/repos/community-x86_64/set_wheel.patch

--+
 /PKGBUILD|  178 +
 /cinnamon.install|   24 
 /default-theme.patch |   50 +
 /gnome-3.14.patch|   24 
 /set_wheel.patch |  112 
 community-i686/PKGBUILD  |   89 
 community-i686/cinnamon.install  |   12 --
 community-i686/default-theme.patch   |   25 
 community-i686/gnome-3.14.patch  |   25 
 community-i686/set_wheel.patch   |   17 ---
 community-x86_64/PKGBUILD|   89 
 community-x86_64/cinnamon.install|   12 --
 community-x86_64/default-theme.patch |   25 
 community-x86_64/gnome-3.14.patch|   25 
 community-x86_64/set_wheel.patch |   17 ---
 15 files changed, 388 insertions(+), 336 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:51:28 UTC (rev 136032)
+++ community-i686/PKGBUILD 2015-06-28 11:51:40 UTC (rev 136033)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: M0Rf30
-# Contributor: unifiedlinux
-# Contributor: CReimer
-
-pkgname=cinnamon
-pkgver=2.6.9
-pkgrel=1
-pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
-arch=('i686' 'x86_64')
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
- 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
- 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
- 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
- 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
- 'network-manager-applet' 'nemo' 'polkit-gnome' 'python3')
-makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
-options=('!emptydirs')
-install=${pkgname}.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
-set_wheel.patch
-gnome-3.14.patch
-default-theme.patch)
-sha256sums=('9bed52d586480b888a414af6e306c2d8d6cf536aeb49e65304b8f3e2e422e756'
-'0f6a4055fc70f727b90c3d97ebc99f6bf3028b8cc7189736d8e0f1dac6fac137'
-'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058'
-'566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
-
-prepare() {
-  cd ${srcdir}/Cinnamon*
-
-  # Python2 fix
-  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Use wheel group instread of sudo
-  patch -Np1 -i ../set_wheel.patch
-
-  # Some fixes for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-
-  # Set default theme to 'cinnamon'
-  patch -Np1 -i ../default-theme.patch
-
-  # Add polkit agent to required components
-  sed -i 

[arch-commits] Commit in cinnamon/trunk (PKGBUILD gnome-3.14.patch set_wheel.patch)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:51:28
  Author: bgyorgy
Revision: 136032

upgpkg: cinnamon 2.6.11-1

Update to version 2.6.11

Modified:
  cinnamon/trunk/PKGBUILD
  cinnamon/trunk/gnome-3.14.patch
  cinnamon/trunk/set_wheel.patch

--+
 PKGBUILD |   10 +-
 gnome-3.14.patch |   13 -
 set_wheel.patch  |   45 ++---
 3 files changed, 47 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:33:42 UTC (rev 136031)
+++ PKGBUILD2015-06-28 11:51:28 UTC (rev 136032)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=2.6.9
+pkgver=2.6.11
 pkgrel=1
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
  'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
  'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
  'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
- 'network-manager-applet' 'nemo' 'polkit-gnome' 'python3')
+ 'network-manager-applet' 'nemo' 'polkit-gnome')
 makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gobject-introspection')
 options=('!emptydirs')
 install=${pkgname}.install
@@ -25,9 +25,9 @@
 set_wheel.patch
 gnome-3.14.patch
 default-theme.patch)
-sha256sums=('9bed52d586480b888a414af6e306c2d8d6cf536aeb49e65304b8f3e2e422e756'
-'0f6a4055fc70f727b90c3d97ebc99f6bf3028b8cc7189736d8e0f1dac6fac137'
-'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058'
+sha256sums=('ff81da04f076bd978e3a8d9001656ab60cd95a945603827f67214cb113f3fff6'
+'2f0fec7d733aa19be426a0e1aecff1af451183de038d2868a2ee3195f227956e'
+'5ecce3c1617c0479ef972904944e5a58d24de31d00a527d44921e2a44d91'
 '566585873f38a79ec248b916645a2e081abec3c6d4df2c34339cde1f35375cc5')
 
 prepare() {

Modified: gnome-3.14.patch
===
--- gnome-3.14.patch2015-06-28 11:33:42 UTC (rev 136031)
+++ gnome-3.14.patch2015-06-28 11:51:28 UTC (rev 136032)
@@ -1,16 +1,3 @@
-diff -Naur Cinnamon-2.2.16.orig/data/theme/cinnamon.css 
Cinnamon-2.2.16/data/theme/cinnamon.css
 Cinnamon-2.2.16.orig/data/theme/cinnamon.css   2014-08-12 
13:00:36.0 +0200
-+++ Cinnamon-2.2.16/data/theme/cinnamon.css2014-10-01 02:51:45.859630151 
+0200
-@@ -1445,7 +1445,8 @@
- .applet-icon:hover,
- .applet-box:hover  .applet-icon {
-   color: #fff;
--  icon-shadow: white 0px 0px 3px;
-+/* Broken with GNOME 3.14 (icon-size is not honoured)
-+ *icon-shadow: white 0px 0px 3px;*/
- }
- 
- /* ===
 diff -Naur 
Cinnamon-2.2.16.orig/files/usr/lib/cinnamon-settings/modules/cs_themes.py 
Cinnamon-2.2.16/files/usr/lib/cinnamon-settings/modules/cs_themes.py
 --- Cinnamon-2.2.16.orig/files/usr/lib/cinnamon-settings/modules/cs_themes.py  
2014-08-12 13:00:36.0 +0200
 +++ Cinnamon-2.2.16/files/usr/lib/cinnamon-settings/modules/cs_themes.py   
2014-10-01 02:52:56.897767729 +0200

Modified: set_wheel.patch
===
--- set_wheel.patch 2015-06-28 11:33:42 UTC (rev 136031)
+++ set_wheel.patch 2015-06-28 11:51:28 UTC (rev 136032)
@@ -1,6 +1,45 @@
 --- a/files/usr/lib/cinnamon-settings-users/cinnamon-settings-users.py
 +++ b/files/usr/lib/cinnamon-settings-users/cinnamon-settings-users.py
-@@ -745,11 +738,11 @@ class Module:
+@@ -145,12 +145,11 @@ class EditableEntry (Gtk.Notebook):
+ 
+ class PasswordDialog(Gtk.Dialog):
+ 
+-def __init__ (self, user, password_mask, group_mask):
++def __init__ (self, user, password_mask):
+ super(PasswordDialog, self).__init__()
+ 
+ self.user = user
+ self.password_mask = password_mask
+-self.group_mask = group_mask
+ 
+ self.set_modal(True)
+ self.set_skip_taskbar_hint(True)
+@@ -216,14 +215,7 @@ class PasswordDialog(Gtk.Dialog):
+ def change_password(self):
+ newpass = self.new_password.get_text()
+ self.user.set_password(newpass, )
+-mask = self.group_mask.get_text()
+-if nopasswdlogin in mask:
+-os.system(gpasswd -d '%s' nopasswdlogin % 
self.user.get_user_name())
+-mask = mask.split(, )
+-mask.remove(nopasswdlogin)
+-mask = , .join(mask)
+-self.group_mask.set_text(mask)
+-
self.password_mask.set_text(u'\u2022\u2022\u2022\u2022\u2022\u2022')
++  self.password_mask.set_text(u'\u2022\u2022\u2022\u2022\u2022\u2022')
+ self.destroy()  
+ 
+ def set_passwords_visibility(self):
+@@ -517,7 +509,7 @@ class Module:
+ 

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:52:52
  Author: bgyorgy
Revision: 136034

upgpkg: python2-futures 3.0.3-1

Update to version 3.0.3

Modified:
  python2-futures/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:51:40 UTC (rev 136033)
+++ PKGBUILD2015-06-28 11:52:52 UTC (rev 136034)
@@ -5,7 +5,7 @@
 
 pkgname=python2-futures
 _pkgname=futures
-pkgver=3.0.2
+pkgver=3.0.3
 pkgrel=1
 pkgdesc=Backport of the concurrent.futures package from Python 3.2
 arch=('any')
@@ -14,7 +14,7 @@
 depends=('python2')
 
source=(http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz;
  LICENSE)
-md5sums=('42aaf1e4de48d6e871d77dc1f9d96d5a'
+md5sums=('32171f72af7e80c266310794adc4db46'
  'dd6708d05936d3f6c4e20ed14c87b5e3')
 
 build() {


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:53:17
  Author: bgyorgy
Revision: 136035

archrelease: copy trunk to community-any

Added:
  python2-futures/repos/community-any/LICENSE
(from rev 136034, python2-futures/trunk/LICENSE)
  python2-futures/repos/community-any/PKGBUILD
(from rev 136034, python2-futures/trunk/PKGBUILD)
Deleted:
  python2-futures/repos/community-any/LICENSE
  python2-futures/repos/community-any/PKGBUILD

--+
 LICENSE  |   42 +-
 PKGBUILD |   60 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-06-28 11:52:52 UTC (rev 136034)
+++ LICENSE 2015-06-28 11:53:17 UTC (rev 136035)
@@ -1,21 +0,0 @@
-Copyright 2009 Brian Quinlan. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without 
modification,
-are permitted provided that the following conditions are met:
-
-   1. Redistributions of source code must retain the above copyright notice,
-  this list of conditions and the following disclaimer.
-   2. Redistributions in binary form must reproduce the above copyright notice,
-  this list of conditions and the following disclaimer in the documentation
-  and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY BRIAN QUINLAN AS IS AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT
-HALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file

Copied: python2-futures/repos/community-any/LICENSE (from rev 136034, 
python2-futures/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-06-28 11:53:17 UTC (rev 136035)
@@ -0,0 +1,21 @@
+Copyright 2009 Brian Quinlan. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+
+   1. Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.
+   2. Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY BRIAN QUINLAN AS IS AND ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT
+HALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 11:52:52 UTC (rev 136034)
+++ PKGBUILD2015-06-28 11:53:17 UTC (rev 136035)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-
-pkgname=python2-futures
-_pkgname=futures
-pkgver=3.0.2
-pkgrel=1
-pkgdesc=Backport of the concurrent.futures package from Python 3.2
-arch=('any')
-url=https://github.com/agronholm/pythonfutures;
-license=('BSD')
-depends=('python2')
-source=(http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz;
- LICENSE)
-md5sums=('42aaf1e4de48d6e871d77dc1f9d96d5a'
- 'dd6708d05936d3f6c4e20ed14c87b5e3')
-
-build() {
-  cd $_pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python2 setup.py install --root $pkgdir --optimize=1
-
-  install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python2-futures/repos/community-any/PKGBUILD (from rev 136034, 
python2-futures/trunk/PKGBUILD)

[arch-commits] Commit in (dvd-slideshow)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 14:51:23
  Author: jlichtblau
Revision: 136039

dvd-slideshow removed from [community] due to FS#45154

Deleted:
  dvd-slideshow/


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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 15:11:55
  Author: arodseth
Revision: 136041

archrelease: copy trunk to community-any

Added:
  eclipse-cdt/repos/community-any/PKGBUILD
(from rev 136040, eclipse-cdt/trunk/PKGBUILD)
Deleted:
  eclipse-cdt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 13:11:47 UTC (rev 136040)
+++ PKGBUILD2015-06-28 13:11:55 UTC (rev 136041)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Raimar Bühmann rai...@buehmann.de
-
-pkgname=eclipse-cdt
-pkgver=8.6.0
-pkgrel=1
-pkgdesc='C/C++ Plugin for Eclipse'
-arch=('any')
-url='http://www.eclipse.org/cdt'
-license=('EPL')
-depends=('eclipse' 'libxtst')
-source=(http://ftp.snt.utwente.nl/pub/software/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
-sha1sums=('6363c3eece78277cc6b6748bb4eba0166db30a6a')
-
-package() {
-  d=$pkgdir/usr/share/eclipse/dropins/cdt/eclipse
-  install -d $d
-  cp -a features $d
-  cp -a plugins $d
-}
-
-# vim:set ts=2 sw=2 et:

Copied: eclipse-cdt/repos/community-any/PKGBUILD (from rev 136040, 
eclipse-cdt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 13:11:55 UTC (rev 136041)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Raimar Bühmann rai...@buehmann.de
+
+pkgname=eclipse-cdt
+pkgver=8.7.0
+pkgrel=1
+pkgdesc='C/C++ Plugin for Eclipse'
+arch=('any')
+url='http://www.eclipse.org/cdt'
+license=('EPL')
+depends=('eclipse' 'libxtst')
+source=(http://ftp.snt.utwente.nl/pub/software/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
+sha1sums=('0ef0ea5c249f687160ef0f562bb6b34245016bd1')
+
+package() {
+  d=$pkgdir/usr/share/eclipse/dropins/cdt/eclipse
+  install -d $d
+  cp -a features $d
+  cp -a plugins $d
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 15:11:47
  Author: arodseth
Revision: 136040

upgpkg: eclipse-cdt 8.7.0-1

Modified:
  eclipse-cdt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 12:51:23 UTC (rev 136039)
+++ PKGBUILD2015-06-28 13:11:47 UTC (rev 136040)
@@ -5,7 +5,7 @@
 # Contributor: Raimar Bühmann rai...@buehmann.de
 
 pkgname=eclipse-cdt
-pkgver=8.6.0
+pkgver=8.7.0
 pkgrel=1
 pkgdesc='C/C++ Plugin for Eclipse'
 arch=('any')
@@ -13,7 +13,7 @@
 license=('EPL')
 depends=('eclipse' 'libxtst')
 
source=(http://ftp.snt.utwente.nl/pub/software/eclipse/tools/cdt/releases/${pkgver%.*}/cdt-$pkgver.zip;)
-sha1sums=('6363c3eece78277cc6b6748bb4eba0166db30a6a')
+sha1sums=('0ef0ea5c249f687160ef0f562bb6b34245016bd1')
 
 package() {
   d=$pkgdir/usr/share/eclipse/dropins/cdt/eclipse


[arch-commits] Commit in qlandkartegt/repos (5 files)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 12:46:39
  Author: jlichtblau
Revision: 136013

archrelease: copy trunk to community-staging-x86_64

Added:
  qlandkartegt/repos/community-staging-x86_64/
  qlandkartegt/repos/community-staging-x86_64/PKGBUILD
(from rev 136012, qlandkartegt/trunk/PKGBUILD)
  qlandkartegt/repos/community-staging-x86_64/qlandkartegt-mimetypes.xml
(from rev 136012, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
  qlandkartegt/repos/community-staging-x86_64/qlandkartegt.changelog
(from rev 136012, qlandkartegt/trunk/qlandkartegt.changelog)
  qlandkartegt/repos/community-staging-x86_64/qlandkartegt.install
(from rev 136012, qlandkartegt/trunk/qlandkartegt.install)

+
 PKGBUILD   |   45 +++
 qlandkartegt-mimetypes.xml |7 +++
 qlandkartegt.changelog |   84 +++
 qlandkartegt.install   |7 +++
 4 files changed, 143 insertions(+)

Copied: qlandkartegt/repos/community-staging-x86_64/PKGBUILD (from rev 136012, 
qlandkartegt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-28 10:46:39 UTC (rev 136013)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Matthias Maennich a...@maennich.net
+# Contributor: boe...@gmx.de
+
+pkgname=qlandkartegt
+pkgver=1.8.1
+pkgrel=4
+pkgdesc=Use your GPS with Linux
+arch=('i686' 'x86_64')
+url=http://www.qlandkarte.org/;
+license=('GPL')
+depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu'
+ 'postgresql-libs' 'shared-mime-info' 'qtwebkit' 'proj')
+makedepends=('cmake' 'garmindev' 'mesa')
+optdepends=('garmindev: to connect garmin devices')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-mimetypes.xml)
+sha256sums=('9e0605ab8f4cbd27741b507f252f08370e9ccca4e05ec35878256c59b22a9be7'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
+
+prepare() {
+  cd ${srcdir}
+  mkdir build
+}
+
+build() {
+  cd ${srcdir}/build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/$pkgname-mimetypes.xml \
+${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml
+}

Copied: qlandkartegt/repos/community-staging-x86_64/qlandkartegt-mimetypes.xml 
(from rev 136012, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
===
--- community-staging-x86_64/qlandkartegt-mimetypes.xml 
(rev 0)
+++ community-staging-x86_64/qlandkartegt-mimetypes.xml 2015-06-28 10:46:39 UTC 
(rev 136013)
@@ -0,0 +1,7 @@
+?xml version=1.0?
+mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'
+  mime-type type=application/vnd.qlandkartegt.qlb
+commentQLandkarteGT File/comment
+glob pattern=*.qlb/
+  /mime-type
+/mime-info

Copied: qlandkartegt/repos/community-staging-x86_64/qlandkartegt.changelog 
(from rev 136012, qlandkartegt/trunk/qlandkartegt.changelog)
===
--- community-staging-x86_64/qlandkartegt.changelog 
(rev 0)
+++ community-staging-x86_64/qlandkartegt.changelog 2015-06-28 10:46:39 UTC 
(rev 136013)
@@ -0,0 +1,84 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.1-4 gdal 2.0.0 rebuild
+
+2015-03-10 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.1-1
+
+2015-02-09 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.0-1
+
+2014-07-13 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.7-1
+
+2014-02-22 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.6-1
+
+2013-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.5-1
+
+2013-09-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.4-1
+
+2013-09-02 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.3-1
+
+2013-07-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.1-1
+
+2013-03-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.7.0-1
+
+2012-12-04 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.6.0-1
+
+2012-10-22 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.5.3-1
+
+2012-09-06 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.5.1-1
+
+2012-07-07 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.5.0-1
+
+2012-05-24 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.4.2-1
+

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

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 12:46:25
  Author: jlichtblau
Revision: 136012

upgpkg: qlandkartegt 1.8.1-4 - gdal 2.0.0 rebuild

Modified:
  qlandkartegt/trunk/PKGBUILD
  qlandkartegt/trunk/qlandkartegt.changelog

+
 PKGBUILD   |6 +++---
 qlandkartegt.changelog |3 +++
 2 files changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 09:57:02 UTC (rev 136011)
+++ PKGBUILD2015-06-28 10:46:25 UTC (rev 136012)
@@ -5,13 +5,13 @@
 
 pkgname=qlandkartegt
 pkgver=1.8.1
-pkgrel=3
+pkgrel=4
 pkgdesc=Use your GPS with Linux
 arch=('i686' 'x86_64')
 url=http://www.qlandkarte.org/;
 license=('GPL')
-depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu' 
'postgresql-libs'
- 'shared-mime-info' 'qtwebkit' 'proj')
+depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu'
+ 'postgresql-libs' 'shared-mime-info' 'qtwebkit' 'proj')
 makedepends=('cmake' 'garmindev' 'mesa')
 optdepends=('garmindev: to connect garmin devices')
 install=$pkgname.install

Modified: qlandkartegt.changelog
===
--- qlandkartegt.changelog  2015-06-28 09:57:02 UTC (rev 136011)
+++ qlandkartegt.changelog  2015-06-28 10:46:25 UTC (rev 136012)
@@ -1,3 +1,6 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * qlandkartegt 1.8.1-4 gdal 2.0.0 rebuild
+
 2015-03-10 Jaroslav Lichtblau svetlemo...@archlinux.org
* qlandkartegt 1.8.1-1
 


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 12:58:33
  Author: bgyorgy
Revision: 136016

upgpkg: cjs 2.6.2-1

Update to version 2.6.2

Modified:
  cjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 10:48:13 UTC (rev 136015)
+++ PKGBUILD2015-06-28 10:58:33 UTC (rev 136016)
@@ -3,7 +3,7 @@
 # Contributor: Ionut Biru ib...@archlinux.org
 
 pkgname=cjs
-pkgver=2.6.0
+pkgver=2.6.2
 pkgrel=1
 pkgdesc=Javascript Bindings for Cinnamon
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 depends=(cairo gobject-introspection-runtime js dbus-glib)
 makedepends=(gnome-common python2 gobject-introspection)
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cjs/archive/${pkgver}.tar.gz;)
-sha256sums=('bb65b7238eabb265de256d6de0a183018a4ec28b7d161d439a809875ca6e2927')
+sha256sums=('742e5a98281c3aff3127113352e920151468fd3c55214aa9c9ed09704efa70a0')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in postgis/repos (3 files)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 13:24:53
  Author: jlichtblau
Revision: 136029

archrelease: copy trunk to community-staging-i686

Added:
  postgis/repos/community-staging-i686/
  postgis/repos/community-staging-i686/PKGBUILD
(from rev 136028, postgis/trunk/PKGBUILD)
  postgis/repos/community-staging-i686/postgis.changelog
(from rev 136028, postgis/trunk/postgis.changelog)

---+
 PKGBUILD  |   29 +
 postgis.changelog |   50 ++
 2 files changed, 79 insertions(+)

Copied: postgis/repos/community-staging-i686/PKGBUILD (from rev 136028, 
postgis/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-28 11:24:53 UTC (rev 136029)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=postgis
+pkgver=2.1.5
+pkgrel=3
+pkgdesc=Adds support for geographic objects to PostgreSQL
+arch=('i686' 'x86_64')
+url=http://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c' 'proj')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0d0e27f72f12b8dba456fbde25ed0f6913f42baf57332a7f1b9bbc6f29fddbf4')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: postgis/repos/community-staging-i686/postgis.changelog (from rev 
136028, postgis/trunk/postgis.changelog)
===
--- community-staging-i686/postgis.changelog(rev 0)
+++ community-staging-i686/postgis.changelog2015-06-28 11:24:53 UTC (rev 
136029)
@@ -0,0 +1,50 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-2 gdal 2.0.0 rebuild
+
+2015-03-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-2 proj soname rebuild
+
+2015-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.4-1
+
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.3-1
+
+2014-04-02 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.2-1
+
+2013-11-11 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.1-1
+
+2013-08-22 Maxime Gauduin aluc...@gmail.com
+* postgis-2.1.0-1
+* Fixes FS#35816
+
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.0.3-1
+
+2013-01-05 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.0.2-1
+
+2012-09-24 Dan McGee d...@archlinux.org
+* Rebuild for PostgreSQL 9.2.x
+* Update to minor release 2.0.1
+
+2012-05-31 Andrea Scarpino and...@archlinux.org
+* Add JSON-C support
+* Build utils (FS#25836)
+
+2012-05-31 Andrea Scarpino and...@archlinux.org
+* Update to major release 2.0.0-1
+
+2011-10-26 Jaroslav Lichtblau svetlemo...@archlinux.org
+* FS#26159 fix in postgis-1.5.3-2
+
+2010-10-30 Jaroslav Lichtblau svetlemo...@archlinux.org
+* Update to major release 1.5.2
+
+2010-03-21 Jaroslav Lichtblau svetlemo...@archlinux.org
+* Update to major release 1.5.1


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:33:33
  Author: bgyorgy
Revision: 136030

upgpkg: cinnamon-desktop 2.6.5-1

Update to version 2.6.5

Modified:
  cinnamon-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:24:53 UTC (rev 136029)
+++ PKGBUILD2015-06-28 11:33:33 UTC (rev 136030)
@@ -3,8 +3,8 @@
 # Contributor:  Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-desktop
-pkgver=2.6.4
-pkgrel=2
+pkgver=2.6.5
+pkgrel=1
 pkgdesc=Library with common API for various Cinnamon modules
 arch=(i686 x86_64)
 license=(GPL LGPL)
@@ -14,7 +14,7 @@
 install=cinnamon-desktop.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
 gnome-3.14.patch)
-sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
+sha256sums=('a004790f46d1960592f9462cbf6d394d9a5c66b31bb13cc295ed8acb1135924a'
 'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
 
 prepare() {
@@ -38,4 +38,4 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
-}
\ No newline at end of file
+}


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

2015-06-28 Thread Bartłomiej Piotrowski
Date: Sunday, June 28, 2015 @ 10:52:58
  Author: bpiotrowski
Revision: 241307

upgpkg: lvm2 2.02.122-1

new upstream release

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-27 23:47:26 UTC (rev 241306)
+++ PKGBUILD2015-06-28 08:52:58 UTC (rev 241307)
@@ -4,7 +4,7 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.121
+pkgver=2.02.122
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://sourceware.org/lvm2/;
@@ -17,7 +17,7 @@
 sd-lvm2_install
 11-dm-initramfs.rules
 lvm2-make-sockets-static.patch)
-sha1sums=('618b94b01a719afa9ba1714f584c912658211615'
+sha1sums=('77cb6d767e075f80e6eebe3d402739ed5795afbd'
   'SKIP'
   '40ef991650555b904e73bcc3f344d736722e27ca'
   'ff0fdf0a3005a41acd4b36865056109effc3474b'
@@ -55,7 +55,7 @@
   cd ../LVM2-initramfs
   ./configure $CONFIGUREOPTS --enable-udev-systemd-background-jobs=no
   cd udev
-  make 69-dm-lvm-metad.rules  
+  make 69-dm-lvm-metad.rules
 }
 
 package_device-mapper() {


[arch-commits] Commit in lvm2/repos (28 files)

2015-06-28 Thread Bartłomiej Piotrowski
Date: Sunday, June 28, 2015 @ 10:53:25
  Author: bpiotrowski
Revision: 241308

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

Added:
  lvm2/repos/testing-i686/11-dm-initramfs.rules
(from rev 241307, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-i686/PKGBUILD
(from rev 241307, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-i686/lvm2-make-sockets-static.patch
(from rev 241307, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-i686/lvm2.install
(from rev 241307, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-i686/lvm2_hook
(from rev 241307, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-i686/lvm2_install
(from rev 241307, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-i686/sd-lvm2_install
(from rev 241307, lvm2/trunk/sd-lvm2_install)
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 241307, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 241307, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2-make-sockets-static.patch
(from rev 241307, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-x86_64/lvm2.install
(from rev 241307, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-x86_64/lvm2_hook
(from rev 241307, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 241307, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-x86_64/sd-lvm2_install
(from rev 241307, lvm2/trunk/sd-lvm2_install)
Deleted:
  lvm2/repos/testing-i686/11-dm-initramfs.rules
  lvm2/repos/testing-i686/PKGBUILD
  lvm2/repos/testing-i686/lvm2-make-sockets-static.patch
  lvm2/repos/testing-i686/lvm2.install
  lvm2/repos/testing-i686/lvm2_hook
  lvm2/repos/testing-i686/lvm2_install
  lvm2/repos/testing-i686/sd-lvm2_install
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
  lvm2/repos/testing-x86_64/PKGBUILD
  lvm2/repos/testing-x86_64/lvm2-make-sockets-static.patch
  lvm2/repos/testing-x86_64/lvm2.install
  lvm2/repos/testing-x86_64/lvm2_hook
  lvm2/repos/testing-x86_64/lvm2_install
  lvm2/repos/testing-x86_64/sd-lvm2_install

---+
 /11-dm-initramfs.rules|6 
 /PKGBUILD |  206 
 /lvm2-make-sockets-static.patch   |   40 
 /lvm2.install |   50 +
 /lvm2_hook|   24 ++
 /lvm2_install |   68 +++
 /sd-lvm2_install  |   64 +++
 testing-i686/11-dm-initramfs.rules|3 
 testing-i686/PKGBUILD |  103 
 testing-i686/lvm2-make-sockets-static.patch   |   20 --
 testing-i686/lvm2.install |   25 --
 testing-i686/lvm2_hook|   12 -
 testing-i686/lvm2_install |   34 ---
 testing-i686/sd-lvm2_install  |   32 ---
 testing-x86_64/11-dm-initramfs.rules  |3 
 testing-x86_64/PKGBUILD   |  103 
 testing-x86_64/lvm2-make-sockets-static.patch |   20 --
 testing-x86_64/lvm2.install   |   25 --
 testing-x86_64/lvm2_hook  |   12 -
 testing-x86_64/lvm2_install   |   34 ---
 testing-x86_64/sd-lvm2_install|   32 ---
 21 files changed, 458 insertions(+), 458 deletions(-)

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


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

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 10:32:38
  Author: foutrelis
Revision: 135932

Lock to specified commit to avoid breakage

Modified:
  opencollada/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-27 23:13:16 UTC (rev 135931)
+++ PKGBUILD2015-06-28 08:32:38 UTC (rev 135932)
@@ -2,6 +2,7 @@
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 pkgname=opencollada
 pkgver=20140108
+_commit=f99d59e73e56
 pkgrel=1
 pkgdesc=Stream based reader and writer library for COLLADA files
 arch=(i686 x86_64)
@@ -10,7 +11,7 @@
 depends=('libxml2' 'pcre')
 makedepends=('git' 'cmake')
 source=('opencollada.conf'
-'git://github.com/KhronosGroup/OpenCOLLADA.git')
+git://github.com/KhronosGroup/OpenCOLLADA.git#commit=$_commit)
 md5sums=('5f7e9d79ab86756648b648ee5ed6ce1d'
  'SKIP')
 


[arch-commits] Commit in (mod_perl)

2015-06-28 Thread Anatol Pomozov
Date: Sunday, June 28, 2015 @ 17:51:35
  Author: anatolik
Revision: 136044

FS#45392: mod_perl moved to AUR

Deleted:
  mod_perl/


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 15:22:41
  Author: bgyorgy
Revision: 136042

upgpkg: nemo-extensions 2.6.0-2

Fix FS#45198 and FS#45248

Modified:
  nemo-extensions/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 13:11:55 UTC (rev 136041)
+++ PKGBUILD2015-06-28 13:22:41 UTC (rev 136042)
@@ -13,7 +13,7 @@
#'nemo-rabbitvcs'
 pkgver=2.6.0
 _pkgver=2.6.x
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL2')
 url=https://github.com/linuxmint/nemo-extensions;
@@ -37,6 +37,10 @@
 
   # GPG version in testing
   patch -Np1 -i ../gpgversion.patch
+
+  # Fix path for nemo-python
+  sed -i 's|libdirsuffix=/i386-linux-gnu/|libdirsuffix=|' 
nemo-python/m4/python.m4
+
 }
 
 build() {
@@ -112,6 +116,7 @@
   make DESTDIR=${pkgdir} install
 
   # seahorse-tool is already in seahorse-nautilus package
+  make -C data DESTDIR=${pkgdir} uninstall
   make -C tool DESTDIR=${pkgdir} uninstall
 }
 


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 15:22:50
  Author: bgyorgy
Revision: 136043

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

Added:
  nemo-extensions/repos/community-i686/PKGBUILD
(from rev 136042, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-i686/gpgversion.patch
(from rev 136042, nemo-extensions/trunk/gpgversion.patch)
  nemo-extensions/repos/community-i686/nemo-pastebin.install
(from rev 136042, nemo-extensions/trunk/nemo-pastebin.install)
  nemo-extensions/repos/community-x86_64/PKGBUILD
(from rev 136042, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-x86_64/gpgversion.patch
(from rev 136042, nemo-extensions/trunk/gpgversion.patch)
  nemo-extensions/repos/community-x86_64/nemo-pastebin.install
(from rev 136042, nemo-extensions/trunk/nemo-pastebin.install)
Deleted:
  nemo-extensions/repos/community-i686/PKGBUILD
  nemo-extensions/repos/community-i686/gpgversion.patch
  nemo-extensions/repos/community-i686/nemo-pastebin.install
  nemo-extensions/repos/community-x86_64/PKGBUILD
  nemo-extensions/repos/community-x86_64/gpgversion.patch
  nemo-extensions/repos/community-x86_64/nemo-pastebin.install

+
 /PKGBUILD  |  370 +++
 /gpgversion.patch  |   22 +
 /nemo-pastebin.install |   22 +
 community-i686/PKGBUILD|  180 ---
 community-i686/gpgversion.patch|   11 
 community-i686/nemo-pastebin.install   |   11 
 community-x86_64/PKGBUILD  |  180 ---
 community-x86_64/gpgversion.patch  |   11 
 community-x86_64/nemo-pastebin.install |   11 
 9 files changed, 414 insertions(+), 404 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 13:22:41 UTC (rev 136042)
+++ community-i686/PKGBUILD 2015-06-28 13:22:50 UTC (rev 136043)
@@ -1,180 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-
-pkgbase=nemo-extensions
-pkgname=('nemo-fileroller'
-'nemo-preview'
-'nemo-python'
-'nemo-share'
-'nemo-seahorse')
-   #'nemo-media-columns'
-   #'nemo-pastebin'
-   #'nemo-compare'
-   #'nemo-rabbitvcs'
-pkgver=2.6.0
-_pkgver=2.6.x
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=https://github.com/linuxmint/nemo-extensions;
-depends=(nemo file-roller cjs clutter-gtk clutter-gst2 gst-plugins-good 
libmusicbrainz5
- evince gtksourceview3 webkitgtk python2-gobject seahorse-nautilus 
samba)
-makedepends=(gconf gnome-common gtk-doc intltool gobject-introspection) # 
python2-distutils-extra
-options=('!emptydirs')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/linuxmint/nemo-extensions/archive/${_pkgver}.tar.gz;
-gpgversion.patch)
-sha256sums=('222a9c96644c3dd22171a97721c11d9bc08e1d27b0c168179947bb94edc824cf'
-'187b9c1d684b81abac7ef3095882cfe859bd50570e554d45fcfdbf6e50455b86')
-
-prepare() {
-  cd ${pkgbase}-${_pkgver}
-
-  # Python2 fix
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Fix nemo-preview build
-  sed -i '/AM_GNU_GETTEXT/d' nemo-preview/configure.ac
-
-  # GPG version in testing
-  patch -Np1 -i ../gpgversion.patch
-}
-
-build() {
-  cd ${pkgbase}-${_pkgver}
-
-  _configure_pkgs=nemo-fileroller nemo-seahorse nemo-share
-  for dir in ${_configure_pkgs}
-  do
-pushd ${dir}
-autoreconf -fi
-./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
---disable-static --disable-schemas-compile
-make
-popd
-  done
-
-  _autogen_pkgs=nemo-preview nemo-python
-  for dir in ${_autogen_pkgs}
-  do
-pushd ${dir}
-./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
- --disable-static --disable-schemas-compile
-make
-popd
-  done
-
-# # nemo-pastebin
-# cd nemo-pastebin
-# python2 ./setup.py build --build-base ${srcdir}/build/ || return 1
-# cd ..
-
-   # nemo-media-columns
-   # Nothing to do here
-   # Required python2-pypdf from AUR
-
-   # nemo-compare
-   # cd nemo-compare
-
-# nemo-rabbitvcs
-# Nothing to do here
-
-}
-
-package_nemo-fileroller(){
-  pkgdesc=File archiver extension for Nemo
-  depends=(nemo file-roller)
-
-  cd ${pkgbase}-${_pkgver}/nemo-fileroller
-  make DESTDIR=${pkgdir} install
-}
-
-package_nemo-preview(){
-  pkgdesc=(GtkClutter and Javascript-based quick previewer for Nemo)
-  depends=(nemo cjs clutter-gtk clutter-gst2 libmusicbrainz5 evince 
gtksourceview3 webkitgtk)
-
-  cd ${pkgbase}-${_pkgver}/nemo-preview
-  make DESTDIR=${pkgdir} install
-}
-
-package_nemo-python() {
-  pkgdesc=Python2 binding for Nemo components
-  depends=(nemo python2-gobject)
-
-  cd ${pkgbase}-${_pkgver}/nemo-python

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

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 18:18:14
  Author: eworm
Revision: 136045

upgpkg: mysql-workbench 6.3.4-2

gdal 2.0.0 rebuild

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 15:51:35 UTC (rev 136044)
+++ PKGBUILD2015-06-28 16:18:14 UTC (rev 136045)
@@ -7,7 +7,7 @@
 
 pkgname=mysql-workbench
 pkgver=6.3.4
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform, visual database design tool developed by MySQL'
 arch=('i686' 'x86_64')
 url='https://www.mysql.com/products/workbench/'


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

2015-06-28 Thread Felix Yan
Date: Sunday, June 28, 2015 @ 18:46:44
  Author: fyan
Revision: 136047

archrelease: copy trunk to community-any

Added:
  skk-jisyo/repos/community-any/PKGBUILD
(from rev 136046, skk-jisyo/trunk/PKGBUILD)
  skk-jisyo/repos/community-any/skk-jisyo.install
(from rev 136046, skk-jisyo/trunk/skk-jisyo.install)
Deleted:
  skk-jisyo/repos/community-any/PKGBUILD
  skk-jisyo/repos/community-any/skk-jisyo.install

---+
 PKGBUILD  |   62 ++--
 skk-jisyo.install |   20 
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 16:46:33 UTC (rev 136046)
+++ PKGBUILD2015-06-28 16:46:44 UTC (rev 136047)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: jeneshicc jenesh...@gmail.com
-
-pkgname=skk-jisyo
-pkgver=20150621
-pkgrel=1
-pkgdesc=Dictionaries for the SKK Japanese input method
-arch=('any')
-url=http://openlab.ring.gr.jp/skk/;
-optdepends=('skktools: Dictionary maintenabce tools')
-license=('GPL')
-install=${pkgname}.install
-source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
-
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
-
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
-
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
-
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('1094cb67fee991f1196679a83e2fad8e'
- 'e24063430ffc2b7bc85ea297ee134f5d'
- '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
- '53407c1d74036759a7db1fa07dd8e5d4'
- 'efb7f415213e6bdcdffc3a9a2e262f19')
-
-package() {
-  cd $srcdir
-
-  for t in L jinmei geo propernoun station; do
-install -D -m 644 $srcdir/SKK-JISYO.$t.$pkgver 
$pkgdir/usr/share/skk/SKK-JISYO.$t
-  done
-}

Copied: skk-jisyo/repos/community-any/PKGBUILD (from rev 136046, 
skk-jisyo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 16:46:44 UTC (rev 136047)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: jeneshicc jenesh...@gmail.com
+
+pkgname=skk-jisyo
+pkgver=20150628
+pkgrel=1
+pkgdesc=Dictionaries for the SKK Japanese input method
+arch=('any')
+url=http://openlab.ring.gr.jp/skk/;
+optdepends=('skktools: Dictionary maintenabce tools')
+license=('GPL')
+install=${pkgname}.install
+source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
+
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
+
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
+
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
+
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
+md5sums=('2df2b83c42b45ea83ef3e5e1298bd2e9'
+ 'e24063430ffc2b7bc85ea297ee134f5d'
+ '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
+ '53407c1d74036759a7db1fa07dd8e5d4'
+ 'efb7f415213e6bdcdffc3a9a2e262f19')
+
+package() {
+  cd $srcdir
+
+  for t in L jinmei geo propernoun station; do
+install -D -m 644 $srcdir/SKK-JISYO.$t.$pkgver 
$pkgdir/usr/share/skk/SKK-JISYO.$t
+  done
+}

Deleted: skk-jisyo.install
===
--- skk-jisyo.install   2015-06-28 16:46:33 UTC (rev 136046)
+++ skk-jisyo.install   2015-06-28 16:46:44 UTC (rev 136047)
@@ -1,10 +0,0 @@
-post_install() {
-  echo  If you want to merge dictionaries, use skktools
-  echo  For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:
-  echo  % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo  SKK-JISYO.XL
-}
-
-post_upgrade() {
-  post_install $1
-}
-# vim:set ts=2 sw=2 et:

Copied: skk-jisyo/repos/community-any/skk-jisyo.install (from rev 136046, 
skk-jisyo/trunk/skk-jisyo.install)
===
--- skk-jisyo.install   (rev 0)
+++ skk-jisyo.install   2015-06-28 16:46:44 UTC (rev 136047)
@@ -0,0 +1,10 @@
+post_install() {
+  echo  If you want to merge dictionaries, use skktools
+  echo  For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:
+  echo  % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo  SKK-JISYO.XL
+}
+
+post_upgrade() {
+  post_install $1
+}
+# vim:set ts=2 sw=2 et:


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

2015-06-28 Thread Felix Yan
Date: Sunday, June 28, 2015 @ 18:46:33
  Author: fyan
Revision: 136046

upgpkg: skk-jisyo 20150628-1

Modified:
  skk-jisyo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 16:18:14 UTC (rev 136045)
+++ PKGBUILD2015-06-28 16:46:33 UTC (rev 136046)
@@ -3,7 +3,7 @@
 # Contributor: jeneshicc jenesh...@gmail.com
 
 pkgname=skk-jisyo
-pkgver=20150621
+pkgver=20150628
 pkgrel=1
 pkgdesc=Dictionaries for the SKK Japanese input method
 arch=('any')
@@ -16,7 +16,7 @@
 
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
 
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
 
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('1094cb67fee991f1196679a83e2fad8e'
+md5sums=('2df2b83c42b45ea83ef3e5e1298bd2e9'
  'e24063430ffc2b7bc85ea297ee134f5d'
  '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
  '53407c1d74036759a7db1fa07dd8e5d4'


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

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 16:35:53
  Author: foutrelis
Revision: 241374

Set timezone to CET to work around a test failure

https://bugs.documentfoundation.org/show_bug.cgi?id=92396

Modified:
  libvisio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 10:29:45 UTC (rev 241373)
+++ PKGBUILD2015-06-28 14:35:53 UTC (rev 241374)
@@ -24,7 +24,9 @@
 
 check() {
   cd $pkgname-$pkgver
-  make -k check
+  # Need to set timezone to CET to work around a test failure
+  # https://bugs.documentfoundation.org/show_bug.cgi?id=92396
+  make -k check TZ=CET
 }
 
 package() {


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

2015-06-28 Thread Andreas Radke
Date: Sunday, June 28, 2015 @ 18:50:57
  Author: andyrtr
Revision: 241375

upgpkg: cups-filters 1.0.70-1

upstream update 1.0.70

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 14:35:53 UTC (rev 241374)
+++ PKGBUILD2015-06-28 16:50:57 UTC (rev 241375)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=cups-filters
-pkgver=1.0.69
+pkgver=1.0.70
 pkgrel=1
 pkgdesc=OpenPrinting CUPS Filters
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 provides=('foomatic-filters')
 replaces=('foomatic-filters')
 conflicts=('foomatic-filters')
-md5sums=('914939cf0380ce04a91597a6f666c812')
+md5sums=('5afe1bca041c905ec8861d1a6ffbc634')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in cinnamon-settings-daemon/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:10:19
  Author: bgyorgy
Revision: 136021

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

Added:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
(from rev 136020, cinnamon-settings-daemon/trunk/PKGBUILD)
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
(from rev 136020, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 136020, cinnamon-settings-daemon/trunk/PKGBUILD)
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install
(from rev 136020, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
Deleted:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install

---+
 /PKGBUILD |   82 
 /cinnamon-settings-daemon.install |   24 +
 community-i686/PKGBUILD   |   41 --
 community-i686/cinnamon-settings-daemon.install   |   12 --
 community-x86_64/PKGBUILD |   41 --
 community-x86_64/cinnamon-settings-daemon.install |   12 --
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:10:12 UTC (rev 136020)
+++ community-i686/PKGBUILD 2015-06-28 11:10:19 UTC (rev 136021)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-settings-daemon
-pkgver=2.6.2
-pkgrel=2
-pkgdesc=The Cinnamon Settings daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
- 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom'
- 'libgudev')
-makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
-options=('!emptydirs')
-install=cinnamon-settings-daemon.install
-url=https://github.com/linuxmint/cinnamon-settings-daemon;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-settings-daemon/repos/community-i686/PKGBUILD (from rev 
136020, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 11:10:19 UTC (rev 136021)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-settings-daemon
+pkgver=2.6.3
+pkgrel=1
+pkgdesc=The Cinnamon Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
+ 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom'
+ 'libgudev')
+makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
+options=('!emptydirs')
+install=cinnamon-settings-daemon.install
+url=https://github.com/linuxmint/cinnamon-settings-daemon;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
+sha256sums=('b71a515f9eed5efd35ef134f291a9dd9674d81026b23c85377493b53ec1cf0ae')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-settings-daemon.install
===
--- community-i686/cinnamon-settings-daemon.install 2015-06-28 11:10:12 UTC 
(rev 136020)
+++ community-i686/cinnamon-settings-daemon.install 2015-06-28 11:10:19 

[arch-commits] Commit in cinnamon-settings-daemon/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:10:12
  Author: bgyorgy
Revision: 136020

upgpkg: cinnamon-settings-daemon 2.6.3-1

Update to version 2.6.3

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:03:01 UTC (rev 136019)
+++ PKGBUILD2015-06-28 11:10:12 UTC (rev 136020)
@@ -3,8 +3,8 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-settings-daemon
-pkgver=2.6.2
-pkgrel=2
+pkgver=2.6.3
+pkgrel=1
 pkgdesc=The Cinnamon Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -16,7 +16,7 @@
 install=cinnamon-settings-daemon.install
 url=https://github.com/linuxmint/cinnamon-settings-daemon;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('a97b85a2f9aafdc9c7c7facc97e422d7bc9531a920ac2e685fd82c56c01d8dec')
+sha256sums=('b71a515f9eed5efd35ef134f291a9dd9674d81026b23c85377493b53ec1cf0ae')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 13:33:42
  Author: bgyorgy
Revision: 136031

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

Added:
  cinnamon-desktop/repos/community-i686/PKGBUILD
(from rev 136030, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
(from rev 136030, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
(from rev 136030, cinnamon-desktop/trunk/gnome-3.14.patch)
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 136030, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
(from rev 136030, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch
(from rev 136030, cinnamon-desktop/trunk/gnome-3.14.patch)
Deleted:
  cinnamon-desktop/repos/community-i686/PKGBUILD
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch

---+
 /PKGBUILD |   82 
 /cinnamon-desktop.install |   22 +++
 /gnome-3.14.patch |   48 
 community-i686/PKGBUILD   |   41 --
 community-i686/cinnamon-desktop.install   |   11 ---
 community-i686/gnome-3.14.patch   |   24 
 community-x86_64/PKGBUILD |   41 --
 community-x86_64/cinnamon-desktop.install |   11 ---
 community-x86_64/gnome-3.14.patch |   24 
 9 files changed, 152 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 11:33:33 UTC (rev 136030)
+++ community-i686/PKGBUILD 2015-06-28 11:33:42 UTC (rev 136031)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
-# Contributor:  Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-desktop
-pkgver=2.6.4
-pkgrel=2
-pkgdesc=Library with common API for various Cinnamon modules
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(gtk3 libxkbfile python2 glib2 libgsystem)
-makedepends=(intltool gobject-introspection gnome-common python2)
-url=https://github.com/linuxmint/cinnamon-desktop;
-install=cinnamon-desktop.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
-gnome-3.14.patch)
-sha256sums=('d40fc57202408476ff0bfa191958f16de07cf4c00d911bef57c3107c8e483970'
-'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Update configuration for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-  # Arch uses systemd
-  sed -i 's|false|true|g' 
schemas/org.cinnamon.desktop.session.gschema.xml.in.in
-  # Fix build failure 
-  sed -i 's|subdir-objects||g' configure.ac
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
\ No newline at end of file

Copied: cinnamon-desktop/repos/community-i686/PKGBUILD (from rev 136030, 
cinnamon-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 11:33:42 UTC (rev 136031)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.6.5
+pkgrel=1
+pkgdesc=Library with common API for various Cinnamon modules
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxkbfile python2 glib2 libgsystem)
+makedepends=(intltool gobject-introspection gnome-common python2)
+url=https://github.com/linuxmint/cinnamon-desktop;
+install=cinnamon-desktop.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
+gnome-3.14.patch)
+sha256sums=('a004790f46d1960592f9462cbf6d394d9a5c66b31bb13cc295ed8acb1135924a'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+  # Arch uses systemd
+  sed -i 's|false|true|g' 
schemas/org.cinnamon.desktop.session.gschema.xml.in.in
+  # Fix build failure 
+  sed -i 's|subdir-objects||g' configure.ac
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 14:20:11
  Author: bgyorgy
Revision: 136036

upgpkg: cinnamon-screensaver 2.6.4-2

Use python2 for webkit screensaver

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 11:53:17 UTC (rev 136035)
+++ PKGBUILD2015-06-28 12:20:11 UTC (rev 136036)
@@ -5,13 +5,13 @@
 
 pkgname=cinnamon-screensaver
 pkgver=2.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
 arch=('i686' 'x86_64')
 license=('GPL')
 url=https://github.com/linuxmint/cinnamon-screensaver;
 backup=(etc/pam.d/cinnamon-screensaver)
-depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk' 'python')
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'python2-gobject' 'webkit2gtk')
 makedepends=('intltool' 'gnome-common')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
cinnamon-screensaver.pam)
@@ -18,6 +18,12 @@
 sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
 'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' data/screensavers/*/main
+}
+
 build() {
   cd $pkgname-$pkgver
 


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 14:20:19
  Author: bgyorgy
Revision: 136037

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

Added:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
(from rev 136036, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
(from rev 136036, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 136036, cinnamon-screensaver/trunk/PKGBUILD)
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam
(from rev 136036, cinnamon-screensaver/trunk/cinnamon-screensaver.pam)
Deleted:
  cinnamon-screensaver/repos/community-i686/PKGBUILD
  cinnamon-screensaver/repos/community-i686/cinnamon-screensaver.pam
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
  cinnamon-screensaver/repos/community-x86_64/cinnamon-screensaver.pam

---+
 /PKGBUILD |   82 
 /cinnamon-screensaver.pam |   12 
 community-i686/PKGBUILD   |   35 ---
 community-i686/cinnamon-screensaver.pam   |6 --
 community-x86_64/PKGBUILD |   35 ---
 community-x86_64/cinnamon-screensaver.pam |6 --
 6 files changed, 94 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 12:20:11 UTC (rev 136036)
+++ community-i686/PKGBUILD 2015-06-28 12:20:19 UTC (rev 136037)
@@ -1,35 +0,0 @@
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-screensaver
-pkgver=2.6.4
-pkgrel=1
-pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
-arch=('i686' 'x86_64')
-license=('GPL')
-url=https://github.com/linuxmint/cinnamon-screensaver;
-backup=(etc/pam.d/cinnamon-screensaver)
-depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'webkit2gtk' 'python')
-makedepends=('intltool' 'gnome-common')
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
-   cinnamon-screensaver.pam)
-sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
-'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-   --libexecdir=/usr/lib/cinnamon-screensaver \
-   --localstatedir=/var \
-   --with-mit-ext --with-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
-}

Copied: cinnamon-screensaver/repos/community-i686/PKGBUILD (from rev 136036, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 12:20:19 UTC (rev 136037)
@@ -0,0 +1,41 @@
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-screensaver
+pkgver=2.6.4
+pkgrel=2
+pkgdesc=Screensaver designed to integrate well with the Cinnamon desktop.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=https://github.com/linuxmint/cinnamon-screensaver;
+backup=(etc/pam.d/cinnamon-screensaver)
+depends=('cinnamon-desktop' 'cinnamon-translations' 'dbus-glib' 'libgnomekbd' 
'python2-gobject' 'webkit2gtk')
+makedepends=('intltool' 'gnome-common')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/cinnamon-screensaver/archive/$pkgver.tar.gz
+   cinnamon-screensaver.pam)
+sha256sums=('b5da1cd64ab20e52582088c1fa8ac79741b1a17cc018a8f370936d9707dbbbde'
+'c34925177c883dc4935408a4679e984855b14ef18a208bb5c7c3e5be3817619a')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' data/screensavers/*/main
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+   --libexecdir=/usr/lib/cinnamon-screensaver \
+   --localstatedir=/var \
+   --with-mit-ext --with-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../cinnamon-screensaver.pam 
$pkgdir/etc/pam.d/cinnamon-screensaver
+}

Deleted: community-i686/cinnamon-screensaver.pam
===
--- community-i686/cinnamon-screensaver.pam 2015-06-28 12:20:11 UTC (rev 
136036)
+++ community-i686/cinnamon-screensaver.pam 

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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 22:16:28
  Author: arodseth
Revision: 136062

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:16:16 UTC (rev 136061)
+++ community-i686/PKGBUILD 2015-06-28 20:16:28 UTC (rev 136062)
@@ -1,28 +0,0 @@
-# Maintainer: Alexander F Rødseth rods...@gmail.com
-
-pkgname=nimble
-pkgver=0.6
-epoch=1
-pkgrel=1
-pkgdesc='Package manager for the Nim programming language'
-arch=('x86_64' 'i686')
-url='https://github.com/nimrod-code/nimble'
-license=('BSD')
-makedepends=('nim' 'git')
-source=(git://github.com/nimrod-code/nimble.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname/src/
-
-  nim c -d:release nimble.nim
-}
-
-package() {
-  cd $pkgname
-
-  install -Dm755 src/nimble $pkgdir/usr/bin/nimble
-  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nimble/repos/community-i686/PKGBUILD (from rev 136061, 
nimble/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:16:28 UTC (rev 136062)
@@ -0,0 +1,28 @@
+# Maintainer: Alexander F Rødseth rods...@gmail.com
+
+pkgname=nimble
+pkgver=0.6.2
+epoch=1
+pkgrel=1
+pkgdesc='Package manager for the Nim programming language'
+arch=('x86_64' 'i686')
+url='https://github.com/nimrod-code/nimble'
+license=('BSD')
+makedepends=('nim' 'git')
+source=(git://github.com/nimrod-code/nimble.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname/src/
+
+  nim c -d:release nimble.nim
+}
+
+package() {
+  cd $pkgname
+
+  install -Dm755 src/nimble $pkgdir/usr/bin/nimble
+  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 20:16:16 UTC (rev 136061)
+++ community-x86_64/PKGBUILD   2015-06-28 20:16:28 UTC (rev 136062)
@@ -1,28 +0,0 @@
-# Maintainer: Alexander F Rødseth rods...@gmail.com
-
-pkgname=nimble
-pkgver=0.6
-epoch=1
-pkgrel=1
-pkgdesc='Package manager for the Nim programming language'
-arch=('x86_64' 'i686')
-url='https://github.com/nimrod-code/nimble'
-license=('BSD')
-makedepends=('nim' 'git')
-source=(git://github.com/nimrod-code/nimble.git#tag=v$pkgver)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname/src/
-
-  nim c -d:release nimble.nim
-}
-
-package() {
-  cd $pkgname
-
-  install -Dm755 src/nimble $pkgdir/usr/bin/nimble
-  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nimble/repos/community-x86_64/PKGBUILD (from rev 136061, 
nimble/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-28 20:16:28 UTC (rev 136062)
@@ -0,0 +1,28 @@
+# Maintainer: Alexander F Rødseth rods...@gmail.com
+
+pkgname=nimble
+pkgver=0.6.2
+epoch=1
+pkgrel=1
+pkgdesc='Package manager for the Nim programming language'
+arch=('x86_64' 'i686')
+url='https://github.com/nimrod-code/nimble'
+license=('BSD')
+makedepends=('nim' 'git')
+source=(git://github.com/nimrod-code/nimble.git#tag=v$pkgver)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname/src/
+
+  nim c -d:release nimble.nim
+}
+
+package() {
+  cd $pkgname
+
+  install -Dm755 src/nimble $pkgdir/usr/bin/nimble
+  install -Dm644 license.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 22:16:16
  Author: arodseth
Revision: 136061

upgpkg: nimble 1:0.6.2-1

Modified:
  nimble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:14:25 UTC (rev 136060)
+++ PKGBUILD2015-06-28 20:16:16 UTC (rev 136061)
@@ -1,7 +1,7 @@
 # Maintainer: Alexander F Rødseth rods...@gmail.com
 
 pkgname=nimble
-pkgver=0.6
+pkgver=0.6.2
 epoch=1
 pkgrel=1
 pkgdesc='Package manager for the Nim programming language'


[arch-commits] Commit in mate-media/trunk (PKGBUILD mate-media-gstreamer.install)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:45:15
  Author: bgyorgy
Revision: 136069

upgpkg: mate-media 1.10.0-2

Remove unused dependencies

Modified:
  mate-media/trunk/PKGBUILD
Deleted:
  mate-media/trunk/mate-media-gstreamer.install

--+
 PKGBUILD |8 
 mate-media-gstreamer.install |   12 
 2 files changed, 4 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:32:14 UTC (rev 136068)
+++ PKGBUILD2015-06-28 20:45:15 UTC (rev 136069)
@@ -4,13 +4,13 @@
 _pkgbase=mate-media
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools  (GTK2 version)
+pkgdesc=MATE Media Tools (GTK2 version)
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gtk2' 'libcanberra-pulse' 'libmatemixer' 'libunique' 'marco=1.10' 
'mate-desktop=1.10')
-makedepends=('mate-common' 'mate-panel=1.10' 'mate-settings-daemon=1.10')
+depends=('gtk2' 'libcanberra' 'libmatemixer' 'libunique' 'mate-desktop=1.10')
+makedepends=('mate-common')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
 groups=('mate-extra')
 replaces=(${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)

Deleted: mate-media-gstreamer.install
===
--- mate-media-gstreamer.install2015-06-28 20:32:14 UTC (rev 136068)
+++ mate-media-gstreamer.install2015-06-28 20:45:15 UTC (rev 136069)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}


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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 22:50:07
  Author: arodseth
Revision: 136074

upgpkg: nuitka 0.5.13.2-1

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:49:59 UTC (rev 136073)
+++ PKGBUILD2015-06-28 20:50:07 UTC (rev 136074)
@@ -3,7 +3,7 @@
 # Contributor: Panagiotis Mavrogiorgos (pmav99)  (gmail)
 
 pkgname=nuitka
-pkgver=0.5.13.1
+pkgver=0.5.13.2
 pkgrel=1
 pkgdesc='Python to native compiler'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python' 'scons')
 options=('!emptydirs')
 source=(http://nuitka.net/releases/Nuitka-$pkgver.tar.gz;)
-sha256sums=('67dcbe8bc696dff3672f32b50ce07027089aff522d4f1964978219d6e94e4162')
+sha256sums=('bd1cdb9a12980fe63bedbcc895f0aa87ca8082f9520070c690a7f8cc21ebb787')
 
 package() {
   cd Nuitka-$pkgver


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

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 22:49:59
  Author: jlichtblau
Revision: 136073

upgpkg: syncthing 0.11.11-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:47:37 UTC (rev 136072)
+++ PKGBUILD2015-06-28 20:49:59 UTC (rev 136073)
@@ -6,7 +6,7 @@
 # Contributor: korjjj korjjj+...@gmail.com
 
 pkgname=syncthing
-pkgver=0.11.10
+pkgver=0.11.11
 pkgrel=1
 pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
 url=http://syncthing.net/;


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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 22:50:16
  Author: arodseth
Revision: 136075

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 136074, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 20:50:07 UTC (rev 136074)
+++ PKGBUILD2015-06-28 20:50:16 UTC (rev 136075)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Panagiotis Mavrogiorgos (pmav99)  (gmail)
-
-pkgname=nuitka
-pkgver=0.5.13.1
-pkgrel=1
-pkgdesc='Python to native compiler'
-arch=('any')
-url='http://nuitka.net/'
-license=('APACHE')
-makedepends=('scons')
-depends=('python' 'scons')
-options=('!emptydirs')
-source=(http://nuitka.net/releases/Nuitka-$pkgver.tar.gz;)
-sha256sums=('67dcbe8bc696dff3672f32b50ce07027089aff522d4f1964978219d6e94e4162')
-
-package() {
-  cd Nuitka-$pkgver
-
-  python setup.py install --root=$pkgdir --optimize=1
-} 
-
-# getver: nuitka.net/pages/download.html
-# vim: sw=2 ts=2 et:

Copied: nuitka/repos/community-any/PKGBUILD (from rev 136074, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 20:50:16 UTC (rev 136075)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Panagiotis Mavrogiorgos (pmav99)  (gmail)
+
+pkgname=nuitka
+pkgver=0.5.13.2
+pkgrel=1
+pkgdesc='Python to native compiler'
+arch=('any')
+url='http://nuitka.net/'
+license=('APACHE')
+makedepends=('scons')
+depends=('python' 'scons')
+options=('!emptydirs')
+source=(http://nuitka.net/releases/Nuitka-$pkgver.tar.gz;)
+sha256sums=('bd1cdb9a12980fe63bedbcc895f0aa87ca8082f9520070c690a7f8cc21ebb787')
+
+package() {
+  cd Nuitka-$pkgver
+
+  python setup.py install --root=$pkgdir --optimize=1
+} 
+
+# getver: nuitka.net/pages/download.html
+# vim: sw=2 ts=2 et:


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

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 22:50:37
  Author: jlichtblau
Revision: 136076

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 136075, syncthing/trunk/PKGBUILD)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 20:50:16 UTC (rev 136075)
+++ PKGBUILD2015-06-28 20:50:37 UTC (rev 136076)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.11.10
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MPL')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
-sha1sums=('SKIP')
-
-prepare() {
-  cd ${srcdir}
-  mkdir -p 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-x86_64/PKGBUILD (from rev 136075, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 20:50:37 UTC (rev 136076)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.11
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPL')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
+sha1sums=('SKIP')
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p 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
+  

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:55:21
  Author: bgyorgy
Revision: 136077

upgpkg: mate-desktop 1.10.0-1

This package no longer contains help files (moved to mate-user-guide)

Modified:
  mate-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:50:37 UTC (rev 136076)
+++ PKGBUILD2015-06-28 20:55:21 UTC (rev 136077)
@@ -11,7 +11,6 @@
 license=('GPL' 'LGPL')
 depends=('dconf' 'gtk2' 'gtk3' 'startup-notification')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz;)
 sha1sums=('ec52966a5f47730c16a9a9c6c1b95b73d7afee84')
 install=${pkgbase}.install


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

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 22:58:52
  Author: jlichtblau
Revision: 136078

archrelease: copy trunk to community-i686

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 136077, syncthing/trunk/PKGBUILD)
Deleted:
  syncthing/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 20:55:21 UTC (rev 136077)
+++ PKGBUILD2015-06-28 20:58:52 UTC (rev 136078)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.11.10
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MPL')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
-sha1sums=('SKIP')
-
-prepare() {
-  cd ${srcdir}
-  mkdir -p 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 136077, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 20:58:52 UTC (rev 136078)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.11
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPL')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
+sha1sums=('SKIP')
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p 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
+  

[arch-commits] Commit in (4 files)

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 23:03:12
  Author: eworm
Revision: 136079

initial import of xcursors-comix 0.8.2-3

Added:
  xcursor-comix/
  xcursor-comix/repos/
  xcursor-comix/trunk/
  xcursor-comix/trunk/PKGBUILD

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

Added: xcursor-comix/trunk/PKGBUILD
===
--- xcursor-comix/trunk/PKGBUILD(rev 0)
+++ xcursor-comix/trunk/PKGBUILD2015-06-28 21:03:12 UTC (rev 136079)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Christian Hesse a...@eworm.de
+# Contributor: Dariusz Górecki darek@gmail.com
+# Contributor: Juan Diego Tascon
+
+pkgname=xcursor-comix
+pkgver=0.8.2
+pkgrel=3
+pkgdesc=Comix X Cursor Theme
+url=http://www.kde-look.org/content/show.php/ComixCursors?content=32627;
+depends=('libxcursor')
+license=('GPL')
+arch=(any)
+source=(http://www.limitland.de/downloads/comixcursors/ComixCursors-${pkgver}.tar.bz2;)
+sha256sums=('3109e4d19d930a6a2a5c3422ebaaa2002640169118f9b12c042bb64995f3ec31')
+
+package() {
+   mkdir -p ${pkgdir}/usr/share/icons
+   cp -R ${srcdir}/ComixCursors-[A-Z]* ${pkgdir}/usr/share/icons/
+}
+


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


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

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 23:04:15
  Author: eworm
Revision: 136080

archrelease: copy trunk to community-any

Added:
  xcursor-comix/repos/community-any/
  xcursor-comix/repos/community-any/PKGBUILD
(from rev 136079, xcursor-comix/trunk/PKGBUILD)

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

Copied: xcursor-comix/repos/community-any/PKGBUILD (from rev 136079, 
xcursor-comix/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-06-28 21:04:15 UTC (rev 136080)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Christian Hesse a...@eworm.de
+# Contributor: Dariusz Górecki darek@gmail.com
+# Contributor: Juan Diego Tascon
+
+pkgname=xcursor-comix
+pkgver=0.8.2
+pkgrel=3
+pkgdesc=Comix X Cursor Theme
+url=http://www.kde-look.org/content/show.php/ComixCursors?content=32627;
+depends=('libxcursor')
+license=('GPL')
+arch=(any)
+source=(http://www.limitland.de/downloads/comixcursors/ComixCursors-${pkgver}.tar.bz2;)
+sha256sums=('3109e4d19d930a6a2a5c3422ebaaa2002640169118f9b12c042bb64995f3ec31')
+
+package() {
+   mkdir -p ${pkgdir}/usr/share/icons
+   cp -R ${srcdir}/ComixCursors-[A-Z]* ${pkgdir}/usr/share/icons/
+}
+


[arch-commits] Commit in mate-control-center-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:15:58
  Author: bgyorgy
Revision: 136083

upgpkg: mate-control-center-gtk3 1.10.0-3

Remove unused dependency on caja-gtk3

Modified:
  mate-control-center-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:05:04 UTC (rev 136082)
+++ PKGBUILD2015-06-28 21:15:58 UTC (rev 136083)
@@ -4,13 +4,13 @@
 _pkgbase=mate-control-center
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The Control Center for MATE (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja-gtk3=1.10' 'dbus-glib' 'dconf' 'desktop-file-utils' 
'gsettings-desktop-schemas'
- 'gtk3' 'mate-desktop-gtk3=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon-gtk3=1.10'
+depends=('dbus-glib' 'dconf' 'desktop-file-utils' 'gsettings-desktop-schemas' 
'gtk3'
+ 'mate-desktop-gtk3=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon-gtk3=1.10'
  'marco-gtk3=1.10' 'libgtop' 'libmatekbd-gtk3=1.10' 'libunique3' 
'librsvg' 'libxss'
  'libxt' 'startup-notification')
 makedepends=('docbook2x' 'mate-common' 'yelp-tools')


[arch-commits] Commit in mate-control-center-gtk3/repos (14 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:16:08
  Author: bgyorgy
Revision: 136084

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

Added:
  
mate-control-center-gtk3/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center-gtk3/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center-gtk3/repos/community-i686/PKGBUILD
(from rev 136083, mate-control-center-gtk3/trunk/PKGBUILD)
  mate-control-center-gtk3/repos/community-i686/mate-control-center.install
(from rev 136083, 
mate-control-center-gtk3/trunk/mate-control-center.install)
  
mate-control-center-gtk3/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center-gtk3/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136083, 
mate-control-center-gtk3/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136083, mate-control-center-gtk3/trunk/PKGBUILD)
  mate-control-center-gtk3/repos/community-x86_64/mate-control-center.install
(from rev 136083, 
mate-control-center-gtk3/trunk/mate-control-center.install)
Deleted:
  
mate-control-center-gtk3/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center-gtk3/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center-gtk3/repos/community-i686/PKGBUILD
  
mate-control-center-gtk3/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center-gtk3/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center-gtk3/repos/community-x86_64/PKGBUILD

--+
 /0001_fix_keyboard_and_mouse_properties_windows.diff |  216 
++
 /0002_adjust_mate-about-me_dialog_window.diff|   26 +
 /PKGBUILD|  106 

 community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff   |  108 
-
 community-i686/0002_adjust_mate-about-me_dialog_window.diff  |   13 
 community-i686/PKGBUILD  |   53 --
 community-i686/mate-control-center.install   |   14 
 community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff |  108 
-
 community-x86_64/0002_adjust_mate-about-me_dialog_window.diff|   13 
 community-x86_64/PKGBUILD|   53 --
 community-x86_64/mate-control-center.install |   14 
 11 files changed, 376 insertions(+), 348 deletions(-)

Deleted: community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
===
--- community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff  
2015-06-28 21:15:58 UTC (rev 136083)
+++ community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff  
2015-06-28 21:16:08 UTC (rev 136084)
@@ -1,108 +0,0 @@
-diff --git a/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui 
b/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui
-index 2de4c9b..1df1fa7 100644
 a/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui
-+++ b/capplets/keyboard/mate-keyboard-properties-layout-chooser.ui
-@@ -6,7 +6,7 @@
- property name=visibleTrue/property
- property name=border_width5/property
- property name=title translatable=yesChoose a Layout/property
--property name=default_width670/property
-+property name=default_width900/property
- property name=default_height350/property
- property name=type_hintdialog/property
- child internal-child=vbox
-@@ -27,9 +27,9 @@
- child
-   object class=GtkAlignment id=alignment1
- property name=visibleTrue/property
--property name=top_padding3/property
--property name=bottom_padding3/property
--property name=left_padding3/property
-+property name=top_padding6/property
-+property name=bottom_padding6/property
-+property name=left_padding10/property
- property name=right_padding6/property
- child
-   object class=GtkTable id=table1
-@@ -107,10 +107,10 @@
- child
-   object class=GtkAlignment id=alignment2
- property name=visibleTrue/property
--property 

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:26:13
  Author: bgyorgy
Revision: 136087

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

Added:
  engrampa/repos/community-i686/PKGBUILD
(from rev 136086, engrampa/trunk/PKGBUILD)
  engrampa/repos/community-i686/engrampa.install
(from rev 136086, engrampa/trunk/engrampa.install)
  engrampa/repos/community-i686/fr-rpm-bsdtar.patch
(from rev 136086, engrampa/trunk/fr-rpm-bsdtar.patch)
  engrampa/repos/community-x86_64/PKGBUILD
(from rev 136086, engrampa/trunk/PKGBUILD)
  engrampa/repos/community-x86_64/engrampa.install
(from rev 136086, engrampa/trunk/engrampa.install)
  engrampa/repos/community-x86_64/fr-rpm-bsdtar.patch
(from rev 136086, engrampa/trunk/fr-rpm-bsdtar.patch)
Deleted:
  engrampa/repos/community-i686/PKGBUILD
  engrampa/repos/community-i686/engrampa.install
  engrampa/repos/community-i686/fr-rpm-bsdtar.patch
  engrampa/repos/community-x86_64/PKGBUILD
  engrampa/repos/community-x86_64/engrampa.install
  engrampa/repos/community-x86_64/fr-rpm-bsdtar.patch

--+
 /PKGBUILD|   96 ++
 /engrampa.install|   26 +++
 /fr-rpm-bsdtar.patch |  120 +
 community-i686/PKGBUILD  |   47 
 community-i686/engrampa.install  |   13 ---
 community-i686/fr-rpm-bsdtar.patch   |   60 
 community-x86_64/PKGBUILD|   47 
 community-x86_64/engrampa.install|   13 ---
 community-x86_64/fr-rpm-bsdtar.patch |   60 
 9 files changed, 242 insertions(+), 240 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 21:26:05 UTC (rev 136086)
+++ community-i686/PKGBUILD 2015-06-28 21:26:13 UTC (rev 136087)
@@ -1,47 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=engrampa
-pkgname=(${_pkgbase})
-pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=Archive manipulator for MATE (GTK2 version)
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bzip2' 'caja=1.10' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 
'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
-'zip: for ZIP archives' 'unzip: for ZIP archives'
-'p7zip: 7zip compression utility' 'arj: for ARJ archives'
-'unace: extraction tool for the proprietary ace archive format'
-'yelp: for reading MATE help documents')
-groups=('mate-extra')
-conflicts=(${_pkgbase}-gtk3)
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
-fr-rpm-bsdtar.patch)
-sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
-  '219b05a979bf6f249aaae27964f02345fd81168d')
-install=${_pkgbase}.install
-
-prepare() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-# This patch 'depends' on libarchive
-patch -Np1 -i ${srcdir}/fr-rpm-bsdtar.patch
-}
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=2.0 \
---disable-static \
---disable-packagekit
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: engrampa/repos/community-i686/PKGBUILD (from rev 136086, 
engrampa/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 21:26:13 UTC (rev 136087)
@@ -0,0 +1,48 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=engrampa
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=2
+pkgdesc=Archive manipulator for MATE (GTK2 version)
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bzip2' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 'tar')
+makedepends=('caja=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja: file archiver extension'
+'unrar: for RAR uncompression'
+'zip: for ZIP archives' 'unzip: for ZIP archives'
+'p7zip: 7zip compression utility' 'arj: for ARJ archives'
+'unace: extraction tool for the proprietary ace archive format'
+'yelp: for reading MATE help documents')
+groups=('mate-extra')
+conflicts=(${_pkgbase}-gtk3)
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
+fr-rpm-bsdtar.patch)
+sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
+  '219b05a979bf6f249aaae27964f02345fd81168d')
+install=${_pkgbase}.install
+
+prepare() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+# This patch 'depends' on libarchive
+patch -Np1 -i ${srcdir}/fr-rpm-bsdtar.patch
+}
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:26:05
  Author: bgyorgy
Revision: 136086

upgpkg: engrampa 1.10.0-2

Remove unused dependency on caja

Modified:
  engrampa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:25:03 UTC (rev 136085)
+++ PKGBUILD2015-06-28 21:26:05 UTC (rev 136086)
@@ -4,14 +4,15 @@
 _pkgbase=engrampa
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Archive manipulator for MATE (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('bzip2' 'caja=1.10' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 
'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
+depends=('bzip2' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 'tar')
+makedepends=('caja=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja: file archiver extension'
+'unrar: for RAR uncompression'
 'zip: for ZIP archives' 'unzip: for ZIP archives'
 'p7zip: 7zip compression utility' 'arj: for ARJ archives'
 'unace: extraction tool for the proprietary ace archive format'


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:28:10
  Author: bgyorgy
Revision: 136089

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

Added:
  engrampa-gtk3/repos/community-i686/PKGBUILD
(from rev 136088, engrampa-gtk3/trunk/PKGBUILD)
  engrampa-gtk3/repos/community-i686/engrampa.install
(from rev 136088, engrampa-gtk3/trunk/engrampa.install)
  engrampa-gtk3/repos/community-i686/fr-rpm-bsdtar.patch
(from rev 136088, engrampa-gtk3/trunk/fr-rpm-bsdtar.patch)
  engrampa-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136088, engrampa-gtk3/trunk/PKGBUILD)
  engrampa-gtk3/repos/community-x86_64/engrampa.install
(from rev 136088, engrampa-gtk3/trunk/engrampa.install)
  engrampa-gtk3/repos/community-x86_64/fr-rpm-bsdtar.patch
(from rev 136088, engrampa-gtk3/trunk/fr-rpm-bsdtar.patch)
Deleted:
  engrampa-gtk3/repos/community-i686/PKGBUILD
  engrampa-gtk3/repos/community-i686/engrampa.install
  engrampa-gtk3/repos/community-i686/fr-rpm-bsdtar.patch
  engrampa-gtk3/repos/community-x86_64/PKGBUILD
  engrampa-gtk3/repos/community-x86_64/engrampa.install
  engrampa-gtk3/repos/community-x86_64/fr-rpm-bsdtar.patch

--+
 /PKGBUILD|   98 ++
 /engrampa.install|   26 +++
 /fr-rpm-bsdtar.patch |  120 +
 community-i686/PKGBUILD  |   48 -
 community-i686/engrampa.install  |   13 ---
 community-i686/fr-rpm-bsdtar.patch   |   60 
 community-x86_64/PKGBUILD|   48 -
 community-x86_64/engrampa.install|   13 ---
 community-x86_64/fr-rpm-bsdtar.patch |   60 
 9 files changed, 244 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 21:28:02 UTC (rev 136088)
+++ community-i686/PKGBUILD 2015-06-28 21:28:10 UTC (rev 136089)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=engrampa
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=Archive manipulator for MATE (GTK3 version [EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bzip2' 'caja-gtk3=1.10' 'desktop-file-utils' 'gtk3' 'gzip' 
'libarchive' 'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
-'zip: for ZIP archives' 'unzip: for ZIP archives'
-'p7zip: 7zip compression utility' 'arj: for ARJ archives'
-'unace: extraction tool for the proprietary ace archive format'
-'yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
-fr-rpm-bsdtar.patch)
-sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
-  '219b05a979bf6f249aaae27964f02345fd81168d')
-install=${_pkgbase}.install
-
-prepare() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-# This patch 'depends' on libarchive
-patch -Np1 -i ${srcdir}/fr-rpm-bsdtar.patch
-}
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=3.0 \
---disable-static \
---disable-packagekit
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: engrampa-gtk3/repos/community-i686/PKGBUILD (from rev 136088, 
engrampa-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 21:28:10 UTC (rev 136089)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=engrampa
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=2
+pkgdesc=Archive manipulator for MATE (GTK3 version [EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bzip2' 'desktop-file-utils' 'gtk3' 'gzip' 'libarchive' 'tar')
+makedepends=('caja-gtk3=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja-gtk3: file archiver extension'
+'unrar: for RAR uncompression'
+'zip: for ZIP archives' 'unzip: for ZIP archives'
+'p7zip: 7zip compression utility' 'arj: for ARJ archives'
+'unace: extraction tool for the proprietary ace archive format'
+'yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;
+fr-rpm-bsdtar.patch)
+sha1sums=('bca7140ac1715620fc2336ef6352df8a6f9d927b'
+  '219b05a979bf6f249aaae27964f02345fd81168d')
+install=${_pkgbase}.install
+
+prepare() {
+cd 

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:28:02
  Author: bgyorgy
Revision: 136088

upgpkg: engrampa-gtk3 1.10.0-2

Remove unused dependency on caja-gtk3

Modified:
  engrampa-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:26:13 UTC (rev 136087)
+++ PKGBUILD2015-06-28 21:28:02 UTC (rev 136088)
@@ -5,14 +5,15 @@
 _pkgbase=engrampa
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Archive manipulator for MATE (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('bzip2' 'caja-gtk3=1.10' 'desktop-file-utils' 'gtk3' 'gzip' 
'libarchive' 'tar')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('unrar: for RAR uncompression'
+depends=('bzip2' 'desktop-file-utils' 'gtk3' 'gzip' 'libarchive' 'tar')
+makedepends=('caja-gtk3=1.10' 'mate-common' 'yelp-tools')
+optdepends=('caja-gtk3: file archiver extension'
+'unrar: for RAR uncompression'
 'zip: for ZIP archives' 'unzip: for ZIP archives'
 'p7zip: 7zip compression utility' 'arj: for ARJ archives'
 'unace: extraction tool for the proprietary ace archive format'


[arch-commits] Commit in lightdm-kde-greeter/trunk (PKGBUILD)

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 22:06:44
  Author: foutrelis
Revision: 136056

Fix source URL

Modified:
  lightdm-kde-greeter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 19:22:38 UTC (rev 136055)
+++ PKGBUILD2015-06-28 20:06:44 UTC (rev 136056)
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'automoc4')
 backup=('etc/lightdm/lightdm-kde-greeter.conf'
 'etc/dbus-1/system.d/org.kde.kcontrol.kcmlightdm.conf')
-source=(ftp://ftp.kde.org/pub/kde/unstable/${pkgname%-*}/src/${pkgname%%-*}-${pkgver}.tar.bz2;
+source=(http://download.kde.org/unstable/${pkgname%-*}/src/${pkgname%%-*}-${pkgver}.tar.bz2;
 'findlightdm.patch'
 'lightdm-kde-greeter.conf')
 sha256sums=('7948ef6a5f6639abd61be02cbdf886823b0d227b4411361737d1a44cca606b09'


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:09:13
  Author: bgyorgy
Revision: 136057

upgpkg: mate-sensors-applet 1.10.2-2

Move libxnvctrl to makedepends as it's a static library

Modified:
  mate-sensors-applet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:06:44 UTC (rev 136056)
+++ PKGBUILD2015-06-28 20:09:13 UTC (rev 136057)
@@ -4,14 +4,13 @@
 _pkgbase=mate-sensors-applet
 pkgname=(${_pkgbase})
 pkgver=${_ver}.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
+depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'lm_sensors' 
'mate-panel=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra')
 conflicts=(${_pkgbase}-gtk3)


[arch-commits] Commit in mate-sensors-applet/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:09:20
  Author: bgyorgy
Revision: 136058

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

Added:
  mate-sensors-applet/repos/community-i686/PKGBUILD
(from rev 136057, mate-sensors-applet/trunk/PKGBUILD)
  mate-sensors-applet/repos/community-i686/mate-sensors-applet.install
(from rev 136057, mate-sensors-applet/trunk/mate-sensors-applet.install)
  mate-sensors-applet/repos/community-x86_64/PKGBUILD
(from rev 136057, mate-sensors-applet/trunk/PKGBUILD)
  mate-sensors-applet/repos/community-x86_64/mate-sensors-applet.install
(from rev 136057, mate-sensors-applet/trunk/mate-sensors-applet.install)
Deleted:
  mate-sensors-applet/repos/community-i686/PKGBUILD
  mate-sensors-applet/repos/community-i686/mate-sensors-applet.install
  mate-sensors-applet/repos/community-x86_64/PKGBUILD
  mate-sensors-applet/repos/community-x86_64/mate-sensors-applet.install

--+
 /PKGBUILD|   68 +
 /mate-sensors-applet.install |   24 
 community-i686/PKGBUILD  |   35 
 community-i686/mate-sensors-applet.install   |   12 
 community-x86_64/PKGBUILD|   35 
 community-x86_64/mate-sensors-applet.install |   12 
 6 files changed, 92 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:09:13 UTC (rev 136057)
+++ community-i686/PKGBUILD 2015-06-28 20:09:20 UTC (rev 136058)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-sensors-applet
-pkgname=(${_pkgbase})
-pkgver=${_ver}.2
-pkgrel=1
-pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK2 version)
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra')
-conflicts=(${_pkgbase}-gtk3)
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=2.0 \
---disable-static
-  make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-sensors-applet/repos/community-i686/PKGBUILD (from rev 136057, 
mate-sensors-applet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:09:20 UTC (rev 136058)
@@ -0,0 +1,34 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-sensors-applet
+pkgname=(${_pkgbase})
+pkgver=${_ver}.2
+pkgrel=2
+pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK2 version)
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus' 'gtk2' 'libatasmart' 'libnotify' 'lm_sensors' 
'mate-panel=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra')
+conflicts=(${_pkgbase}-gtk3)
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=2.0 \
+--disable-static
+  make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-sensors-applet.install
===
--- community-i686/mate-sensors-applet.install  2015-06-28 20:09:13 UTC (rev 
136057)
+++ community-i686/mate-sensors-applet.install  2015-06-28 20:09:20 UTC (rev 
136058)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-sensors-applet/repos/community-i686/mate-sensors-applet.install 
(from rev 136057, mate-sensors-applet/trunk/mate-sensors-applet.install)
===
--- 

[arch-commits] Commit in mate-sensors-applet-gtk3/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:14:25
  Author: bgyorgy
Revision: 136060

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

Added:
  mate-sensors-applet-gtk3/repos/community-i686/PKGBUILD
(from rev 136059, mate-sensors-applet-gtk3/trunk/PKGBUILD)
  mate-sensors-applet-gtk3/repos/community-i686/mate-sensors-applet.install
(from rev 136059, 
mate-sensors-applet-gtk3/trunk/mate-sensors-applet.install)
  mate-sensors-applet-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136059, mate-sensors-applet-gtk3/trunk/PKGBUILD)
  mate-sensors-applet-gtk3/repos/community-x86_64/mate-sensors-applet.install
(from rev 136059, 
mate-sensors-applet-gtk3/trunk/mate-sensors-applet.install)
Deleted:
  mate-sensors-applet-gtk3/repos/community-i686/PKGBUILD
  mate-sensors-applet-gtk3/repos/community-i686/mate-sensors-applet.install
  mate-sensors-applet-gtk3/repos/community-x86_64/PKGBUILD
  mate-sensors-applet-gtk3/repos/community-x86_64/mate-sensors-applet.install

--+
 /PKGBUILD|   68 +
 /mate-sensors-applet.install |   24 
 community-i686/PKGBUILD  |   35 
 community-i686/mate-sensors-applet.install   |   12 
 community-x86_64/PKGBUILD|   35 
 community-x86_64/mate-sensors-applet.install |   12 
 6 files changed, 92 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:14:17 UTC (rev 136059)
+++ community-i686/PKGBUILD 2015-06-28 20:14:25 UTC (rev 136060)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-sensors-applet
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.2
-pkgrel=1
-pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK3 version 
[EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus' 'gtk3' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel-gtk3=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=3.0 \
---disable-static
-  make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-sensors-applet-gtk3/repos/community-i686/PKGBUILD (from rev 
136059, mate-sensors-applet-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:14:25 UTC (rev 136060)
@@ -0,0 +1,34 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-sensors-applet
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.2
+pkgrel=2
+pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK3 version 
[EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus' 'gtk3' 'libatasmart' 'libnotify'  'lm_sensors' 
'mate-panel-gtk3=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('d5dab31c42db7ebcd38cf31e8a9f2faef0da5ebc')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=3.0 \
+--disable-static
+  make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-sensors-applet.install
===
--- community-i686/mate-sensors-applet.install  2015-06-28 20:14:17 UTC (rev 
136059)
+++ community-i686/mate-sensors-applet.install  2015-06-28 20:14:25 UTC (rev 
136060)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: 
mate-sensors-applet-gtk3/repos/community-i686/mate-sensors-applet.install (from 
rev 136059, 

[arch-commits] Commit in mate-sensors-applet-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:14:17
  Author: bgyorgy
Revision: 136059

upgpkg: mate-sensors-applet-gtk3 1.10.2-2

Move libxnvctrl to makedepends as it's a static library

Modified:
  mate-sensors-applet-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:09:20 UTC (rev 136058)
+++ PKGBUILD2015-06-28 20:14:17 UTC (rev 136059)
@@ -4,14 +4,13 @@
 _pkgbase=mate-sensors-applet
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE Panel applet to display readings from hardware sensors, 
including CPU temperature, fan speeds and voltage readings. (GTK3 version 
[EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus' 'gtk3' 'libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors'
- 'mate-panel-gtk3=1.10')
-makedepends=('docbook-xml' 'mate-common' 'rarian' 'yelp-tools')
+depends=('dbus' 'gtk3' 'libatasmart' 'libnotify'  'lm_sensors' 
'mate-panel-gtk3=1.10')
+makedepends=('docbook-xml' 'libxnvctrl' 'mate-common' 'rarian' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase})


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:25:32
  Author: bgyorgy
Revision: 136063

upgpkg: mate-panel 1.10.0-3

Remove unused dependencies

Modified:
  mate-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:16:28 UTC (rev 136062)
+++ PKGBUILD2015-06-28 20:25:32 UTC (rev 136063)
@@ -4,14 +4,14 @@
 _pkgbase=mate-panel
 pkgname=${_pkgbase}
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The MATE Panel (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja=1.10' 'dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 
'libice'
- 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco=1.10'
- 'mate-menus=1.10' 'mate-desktop=1.10' 'mate-session-manager=1.10')
+depends=('dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 'libice'
+ 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop=1.10')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:25:40
  Author: bgyorgy
Revision: 136064

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

Added:
  mate-panel/repos/community-i686/PKGBUILD
(from rev 136063, mate-panel/trunk/PKGBUILD)
  mate-panel/repos/community-i686/mate-panel.install
(from rev 136063, mate-panel/trunk/mate-panel.install)
  mate-panel/repos/community-x86_64/PKGBUILD
(from rev 136063, mate-panel/trunk/PKGBUILD)
  mate-panel/repos/community-x86_64/mate-panel.install
(from rev 136063, mate-panel/trunk/mate-panel.install)
Deleted:
  mate-panel/repos/community-i686/PKGBUILD
  mate-panel/repos/community-i686/mate-panel.install
  mate-panel/repos/community-x86_64/PKGBUILD
  mate-panel/repos/community-x86_64/mate-panel.install

-+
 /PKGBUILD   |   78 ++
 /mate-panel.install |   24 ++
 community-i686/PKGBUILD |   39 -
 community-i686/mate-panel.install   |   12 -
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/mate-panel.install |   12 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:25:32 UTC (rev 136063)
+++ community-i686/PKGBUILD 2015-06-28 20:25:40 UTC (rev 136064)
@@ -1,39 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-panel
-pkgname=${_pkgbase}
-pkgver=${_ver}.0
-pkgrel=2
-pkgdesc=The MATE Panel (GTK2 version)
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('caja=1.10' 'dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 
'libice'
- 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco=1.10'
- 'mate-menus=1.10' 'mate-desktop=1.10' 'mate-session-manager=1.10')
-makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate')
-conflicts=(${_pkgbase}-gtk3)
-sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---localstatedir=/var \
---with-gtk=2.0 \
---enable-introspection \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-panel/repos/community-i686/PKGBUILD (from rev 136063, 
mate-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:25:40 UTC (rev 136064)
@@ -0,0 +1,39 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-panel
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=3
+pkgdesc=The MATE Panel (GTK2 version)
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'gtk2' 'libwnck' 'libcanberra' 'libice'
+ 'libmateweather=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop=1.10')
+makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate')
+conflicts=(${_pkgbase}-gtk3)
+sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--enable-introspection \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-panel.install
===
--- community-i686/mate-panel.install   2015-06-28 20:25:32 UTC (rev 136063)
+++ community-i686/mate-panel.install   2015-06-28 20:25:40 UTC (rev 136064)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-panel/repos/community-i686/mate-panel.install (from rev 136063, 
mate-panel/trunk/mate-panel.install)
===
--- community-i686/mate-panel.install   (rev 0)
+++ community-i686/mate-panel.install   2015-06-28 20:25:40 UTC (rev 

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

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 22:28:10
  Author: eworm
Revision: 136065

initial import of xfmpc 0.2.2-5

Added:
  xfmpc/
  xfmpc/repos/
  xfmpc/trunk/
  xfmpc/trunk/PKGBUILD

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

Added: xfmpc/trunk/PKGBUILD
===
--- xfmpc/trunk/PKGBUILD(rev 0)
+++ xfmpc/trunk/PKGBUILD2015-06-28 20:28:10 UTC (rev 136065)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Christian Hesse a...@eworm.de
+# Contributor:  TDY t...@gmx.com
+# Contributor: Marc St-Laurent mstlaur...@canada.com
+
+pkgname=xfmpc
+pkgver=0.2.2
+pkgrel=5
+pkgdesc=A graphical GTK+ MPD client focusing on low footprint
+arch=('i686' 'x86_64')
+url=http://goodies.xfce.org/projects/applications/xfmpc/;
+license=('GPL')
+depends=('libxfce4ui' 'libmpd')
+makedepends=('intltool')
+source=(http://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('ed0cc2940bd5928bb30fab1531c22185a97bd0cc5beacd9e3be4d4cd994a6862')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}
+


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


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:30:08
  Author: bgyorgy
Revision: 136066

upgpkg: mate-panel-gtk3 1.10.0-3

Remove unused dependencies

Modified:
  mate-panel-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:28:10 UTC (rev 136065)
+++ PKGBUILD2015-06-28 20:30:08 UTC (rev 136066)
@@ -4,14 +4,14 @@
 _pkgbase=mate-panel
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja-gtk3=1.10' 'dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 
'libice'
- 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco-gtk3=1.10'
- 'mate-menus=1.10' 'mate-desktop-gtk3=1.10' 
'mate-session-manager-gtk3=1.10')
+depends=('dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 'libice'
+ 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
 makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)


[arch-commits] Commit in mate-panel-gtk3/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:30:16
  Author: bgyorgy
Revision: 136067

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

Added:
  mate-panel-gtk3/repos/community-i686/PKGBUILD
(from rev 136066, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-i686/mate-panel.install
(from rev 136066, mate-panel-gtk3/trunk/mate-panel.install)
  mate-panel-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136066, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-x86_64/mate-panel.install
(from rev 136066, mate-panel-gtk3/trunk/mate-panel.install)
Deleted:
  mate-panel-gtk3/repos/community-i686/PKGBUILD
  mate-panel-gtk3/repos/community-i686/mate-panel.install
  mate-panel-gtk3/repos/community-x86_64/PKGBUILD
  mate-panel-gtk3/repos/community-x86_64/mate-panel.install

-+
 /PKGBUILD   |   78 ++
 /mate-panel.install |   24 ++
 community-i686/PKGBUILD |   39 -
 community-i686/mate-panel.install   |   12 -
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/mate-panel.install |   12 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:30:08 UTC (rev 136066)
+++ community-i686/PKGBUILD 2015-06-28 20:30:16 UTC (rev 136067)
@@ -1,39 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-panel
-pkgname=${_pkgbase}-gtk3
-pkgver=${_ver}.0
-pkgrel=2
-pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('caja-gtk3=1.10' 'dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 
'libice'
- 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau' 
'marco-gtk3=1.10'
- 'mate-menus=1.10' 'mate-desktop-gtk3=1.10' 
'mate-session-manager-gtk3=1.10')
-makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-gtk3')
-conflicts=(${_pkgbase})
-sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---localstatedir=/var \
---with-gtk=3.0 \
---enable-introspection \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-panel-gtk3/repos/community-i686/PKGBUILD (from rev 136066, 
mate-panel-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:30:16 UTC (rev 136067)
@@ -0,0 +1,39 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-panel
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=3
+pkgdesc=The MATE Panel (GTK3 version [EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'gtk3' 'libwnck3' 'libcanberra' 'libice'
+ 'libmateweather-gtk3=1.10' 'librsvg' 'libsm' 'libsoup' 'libxau'
+ 'mate-menus=1.10' 'mate-desktop-gtk3=1.10')
+makedepends=('gobject-introspection' 'mate-common' 'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate-gtk3')
+conflicts=(${_pkgbase})
+sha1sums=('632d7127fba8c5fa76f5dd951db89325c6ca3f89')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-introspection \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-panel.install
===
--- community-i686/mate-panel.install   2015-06-28 20:30:08 UTC (rev 136066)
+++ community-i686/mate-panel.install   2015-06-28 20:30:16 UTC (rev 136067)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-panel-gtk3/repos/community-i686/mate-panel.install (from rev 
136066, mate-panel-gtk3/trunk/mate-panel.install)

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

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 22:32:14
  Author: eworm
Revision: 136068

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

Added:
  xfmpc/repos/community-i686/
  xfmpc/repos/community-i686/PKGBUILD
(from rev 136067, xfmpc/trunk/PKGBUILD)
  xfmpc/repos/community-x86_64/
  xfmpc/repos/community-x86_64/PKGBUILD
(from rev 136067, xfmpc/trunk/PKGBUILD)

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

Copied: xfmpc/repos/community-i686/PKGBUILD (from rev 136067, 
xfmpc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:32:14 UTC (rev 136068)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Christian Hesse a...@eworm.de
+# Contributor:  TDY t...@gmx.com
+# Contributor: Marc St-Laurent mstlaur...@canada.com
+
+pkgname=xfmpc
+pkgver=0.2.2
+pkgrel=5
+pkgdesc=A graphical GTK+ MPD client focusing on low footprint
+arch=('i686' 'x86_64')
+url=http://goodies.xfce.org/projects/applications/xfmpc/;
+license=('GPL')
+depends=('libxfce4ui' 'libmpd')
+makedepends=('intltool')
+source=(http://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('ed0cc2940bd5928bb30fab1531c22185a97bd0cc5beacd9e3be4d4cd994a6862')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}
+

Copied: xfmpc/repos/community-x86_64/PKGBUILD (from rev 136067, 
xfmpc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-28 20:32:14 UTC (rev 136068)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Christian Hesse a...@eworm.de
+# Contributor:  TDY t...@gmx.com
+# Contributor: Marc St-Laurent mstlaur...@canada.com
+
+pkgname=xfmpc
+pkgver=0.2.2
+pkgrel=5
+pkgdesc=A graphical GTK+ MPD client focusing on low footprint
+arch=('i686' 'x86_64')
+url=http://goodies.xfce.org/projects/applications/xfmpc/;
+license=('GPL')
+depends=('libxfce4ui' 'libmpd')
+makedepends=('intltool')
+source=(http://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('ed0cc2940bd5928bb30fab1531c22185a97bd0cc5beacd9e3be4d4cd994a6862')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}
+


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:45:23
  Author: bgyorgy
Revision: 136070

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

Added:
  mate-media/repos/community-i686/PKGBUILD
(from rev 136069, mate-media/trunk/PKGBUILD)
  mate-media/repos/community-x86_64/PKGBUILD
(from rev 136069, mate-media/trunk/PKGBUILD)
Deleted:
  mate-media/repos/community-i686/PKGBUILD
  mate-media/repos/community-i686/mate-media-gstreamer.install
  mate-media/repos/community-x86_64/PKGBUILD
  mate-media/repos/community-x86_64/mate-media-gstreamer.install

---+
 /PKGBUILD |   70 
 community-i686/PKGBUILD   |   35 
 community-i686/mate-media-gstreamer.install   |   12 
 community-x86_64/PKGBUILD |   35 
 community-x86_64/mate-media-gstreamer.install |   12 
 5 files changed, 70 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:45:15 UTC (rev 136069)
+++ community-i686/PKGBUILD 2015-06-28 20:45:23 UTC (rev 136070)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase})
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools  (GTK2 version)
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'libcanberra-pulse' 'libmatemixer' 'libunique' 'marco=1.10' 
'mate-desktop=1.10')
-makedepends=('mate-common' 'mate-panel=1.10' 'mate-settings-daemon=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra')
-replaces=(${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-conflicts=(${_pkgbase}-gtk3 ${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${_pkgbase} \
---localstatedir=/var \
---with-gtk=2.0 \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-media/repos/community-i686/PKGBUILD (from rev 136069, 
mate-media/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:45:23 UTC (rev 136070)
@@ -0,0 +1,35 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-media
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=2
+url=http://mate-desktop.org;
+pkgdesc=MATE Media Tools (GTK2 version)
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk2' 'libcanberra' 'libmatemixer' 'libunique' 'mate-desktop=1.10')
+makedepends=('mate-common')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate-extra')
+replaces=(${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
+conflicts=(${_pkgbase}-gtk3 ${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
+sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/mate-media-gstreamer.install
===
--- community-i686/mate-media-gstreamer.install 2015-06-28 20:45:15 UTC (rev 
136069)
+++ community-i686/mate-media-gstreamer.install 2015-06-28 20:45:23 UTC (rev 
136070)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/mate
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 20:45:15 UTC (rev 136069)
+++ community-x86_64/PKGBUILD   2015-06-28 20:45:23 UTC (rev 136070)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase})
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools  (GTK2 version)
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk2' 'libcanberra-pulse' 'libmatemixer' 'libunique' 'marco=1.10' 
'mate-desktop=1.10')
-makedepends=('mate-common' 'mate-panel=1.10' 'mate-settings-daemon=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra')
-replaces=(${_pkgbase}-gstreamer 

[arch-commits] Commit in mate-media-gtk3/repos (4 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:47:37
  Author: bgyorgy
Revision: 136072

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

Added:
  mate-media-gtk3/repos/community-i686/PKGBUILD
(from rev 136071, mate-media-gtk3/trunk/PKGBUILD)
  mate-media-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136071, mate-media-gtk3/trunk/PKGBUILD)
Deleted:
  mate-media-gtk3/repos/community-i686/PKGBUILD
  mate-media-gtk3/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 20:47:28 UTC (rev 136071)
+++ community-i686/PKGBUILD 2015-06-28 20:47:37 UTC (rev 136072)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk3' 'libcanberra-pulse' 'libmatemixer' 'libunique3' 
'marco-gtk3=1.10'
- 'mate-desktop-gtk3=1.10')
-makedepends=('mate-common' 'mate-panel-gtk3=1.10' 
'mate-settings-daemon-gtk3=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${_pkgbase} \
---localstatedir=/var \
---with-gtk=3.0 \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-media-gtk3/repos/community-i686/PKGBUILD (from rev 136071, 
mate-media-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 20:47:37 UTC (rev 136072)
@@ -0,0 +1,34 @@
+# Maintainer : Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-media
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=2
+url=http://mate-desktop.org;
+pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk3' 'libcanberra' 'libmatemixer' 'libunique3' 
'mate-desktop-gtk3=1.10')
+makedepends=('mate-common')
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
+sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--disable-static
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-28 20:47:28 UTC (rev 136071)
+++ community-x86_64/PKGBUILD   2015-06-28 20:47:37 UTC (rev 136072)
@@ -1,35 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-media
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-url=http://mate-desktop.org;
-pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtk3' 'libcanberra-pulse' 'libmatemixer' 'libunique3' 
'marco-gtk3=1.10'
- 'mate-desktop-gtk3=1.10')
-makedepends=('mate-common' 'mate-panel-gtk3=1.10' 
'mate-settings-daemon-gtk3=1.10')
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)
-sha1sums=('702b6aa48312eb58891b6cca887bd112e7f0b86c')
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${_pkgbase} \
---localstatedir=/var \
---with-gtk=3.0 \
---disable-static
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make DESTDIR=${pkgdir} install
-}

Copied: mate-media-gtk3/repos/community-x86_64/PKGBUILD (from rev 136071, 
mate-media-gtk3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-28 20:47:37 UTC (rev 

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 22:47:28
  Author: bgyorgy
Revision: 136071

upgpkg: mate-media-gtk3 1.10.0-2

Remove unused dependencies

Modified:
  mate-media-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 20:45:23 UTC (rev 136070)
+++ PKGBUILD2015-06-28 20:47:28 UTC (rev 136071)
@@ -4,14 +4,13 @@
 _pkgbase=mate-media
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
-pkgrel=1
+pkgrel=2
 url=http://mate-desktop.org;
 pkgdesc=MATE Media Tools (GTK3 version [EXPERIMENTAL])
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gtk3' 'libcanberra-pulse' 'libmatemixer' 'libunique3' 
'marco-gtk3=1.10'
- 'mate-desktop-gtk3=1.10')
-makedepends=('mate-common' 'mate-panel-gtk3=1.10' 
'mate-settings-daemon-gtk3=1.10')
+depends=('gtk3' 'libcanberra' 'libmatemixer' 'libunique3' 
'mate-desktop-gtk3=1.10')
+makedepends=('mate-common')
 
source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase}${_pkgbase}-gstreamer ${_pkgbase}-pulseaudio)


[arch-commits] Commit in opencv/trunk (PKGBUILD pkgconfig.patch x86_asmfix.patch)

2015-06-28 Thread Ray Rashif
Date: Sunday, June 28, 2015 @ 22:56:50
  Author: schiv
Revision: 241385

upgpkg: opencv 3.0.0-1

upstream major release; lots of changes

Modified:
  opencv/trunk/PKGBUILD
Deleted:
  opencv/trunk/pkgconfig.patch
  opencv/trunk/x86_asmfix.patch

--+
 PKGBUILD |   66 ++---
 pkgconfig.patch  |   35 
 x86_asmfix.patch |   46 
 3 files changed, 28 insertions(+), 119 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 19:23:32 UTC (rev 241384)
+++ PKGBUILD2015-06-28 20:56:50 UTC (rev 241385)
@@ -4,29 +4,27 @@
 
 pkgbase=opencv
 pkgname=('opencv' 'opencv-samples')
-pkgver=2.4.10
-pkgrel=3
+_contrib=opencv_contrib
+pkgver=3.0.0
+pkgrel=1
 pkgdesc=Open Source Computer Vision Library
 arch=('i686' 'x86_64')
 license=('BSD')
 url=http://opencv.org/;
-depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext')
-makedepends=('cmake' 'python2-numpy' 'mesa' 'eigen2')
+depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394'
+  'gtkglext' 'libwebp' 'libgphoto2')
+makedepends=('cmake' 'python2-numpy' 'python-numpy' 'mesa' 'eigen' 'git')
 optdepends=('opencv-samples'
 'eigen2'
 'libcl: For coding with OpenCL'
-'python2-numpy: Python 2.x interface')
+'python2-numpy: Python 2.x interface'
+'python-numpy: Python 3.x interface')
 source=(http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip;
-'pkgconfig.patch'
-'fsh.patch'
-'x86_asmfix.patch')
-md5sums=('ec63952d3a3dff965d5fdde765926821'
- 'c7cea48ed7d4f729ebdb9673bac41bd3'
- 'c597598d142dd34d0eb4af7d6e9779d8'
- 'b937d3589a62666f17f6dc93e0109717')
+
$_contrib-$pkgver::git+https://github.com/Itseez/$_contrib.git#tag=$pkgver;)
+md5sums=('09004c275d8092cbdf5b61675cecd399'
+ 'SKIP')
 
-_cmakeopts=('-D WITH_OPENCL=ON'
-'-D WITH_OPENGL=ON'
+_cmakeopts=('-D WITH_OPENGL=ON'
 '-D WITH_TBB=ON'
 '-D WITH_XINE=ON'
 '-D WITH_GSTREAMER=OFF'
@@ -33,9 +31,10 @@
 '-D BUILD_WITH_DEBUG_INFO=OFF'
 '-D BUILD_TESTS=OFF'
 '-D BUILD_PERF_TESTS=OFF'
-'-D BUILD_EXAMPLES=ON'
+'-D INSTALL_TESTS=ON'
 '-D INSTALL_C_EXAMPLES=ON'
 '-D INSTALL_PYTHON_EXAMPLES=ON'
+-D OPENCV_EXTRA_MODULES_PATH=$srcdir/$_contrib/modules
 '-D CMAKE_BUILD_TYPE=Release'
 '-D CMAKE_INSTALL_PREFIX=/usr'
 '-D CMAKE_SKIP_RPATH=ON')
@@ -49,34 +48,25 @@
 # all x64 CPUs support SSE2 but not SSE3
 [[ $CARCH = 'x86_64' ]]  _cmakeopts+=('-D ENABLE_SSE3=OFF')
 
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
+#prepare() {
+#  cd $srcdir/$pkgname-$pkgver
+#
+#  # TODO: this is mostly upstream frei0r; they hardcode the path
+#  #msg2 Hack-fixing folder naming inconsistency (downstream)
+#  # see http://code.opencv.org/issues/2512
+#  # and https://bugs.archlinux.org/task/32342
+#  #patch -Np1 -i $srcdir/fsh.patch
+#
+#  # no longer including docs, see https://bugs.archlinux.org/task/34185
+#  # python2 compatibility for generating (html) docs
+#  #sed -i 's/sphinx-build/sphinx-build2/' cmake/OpenCVDetectPython.cmake
+#}
 
-  msg2 Applying backported fix for x86 ASM breakage
-  # see https://github.com/Itseez/opencv/pull/3331
-  patch -Np1 -i $srcdir/x86_asmfix.patch
-
-  msg2 Fixing broken pkg-config (downstream)
-  # see https://bugs.archlinux.org/task/32430
-  # and http://code.opencv.org/issues/1925
-  patch -Np1 -i $srcdir/pkgconfig.patch
-
-  # TODO: this is mostly upstream frei0r; they hardcode the path
-  #msg2 Hack-fixing folder naming inconsistency (downstream)
-  # see http://code.opencv.org/issues/2512
-  # and https://bugs.archlinux.org/task/32342
-  #patch -Np1 -i $srcdir/fsh.patch
-
-  # no longer including docs, see https://bugs.archlinux.org/task/34185
-  # python2 compatibility for generating (html) docs
-  #sed -i 's/sphinx-build/sphinx-build2/' cmake/OpenCVDetectPython.cmake
-}
-
 build() {
   cd $srcdir/$pkgname-$pkgver
 
+  export LDFLAGS+=,-z,noexecstack
   cmake ${_cmakeopts[@]} .
-
   make
 }
 

Deleted: pkgconfig.patch
===
--- pkgconfig.patch 2015-06-28 19:23:32 UTC (rev 241384)
+++ pkgconfig.patch 2015-06-28 20:56:50 UTC (rev 241385)
@@ -1,35 +0,0 @@
-diff -baur opencv-2.4.7.orig/cmake/OpenCVGenPkgconfig.cmake 
opencv-2.4.7/cmake/OpenCVGenPkgconfig.cmake
 opencv-2.4.7.orig/cmake/OpenCVGenPkgconfig.cmake   2013-11-12 
20:31:27.253763202 +
-+++ opencv-2.4.7/cmake/OpenCVGenPkgconfig.cmake2013-11-12 
20:41:48.936262732 +
-@@ -10,7 +10,7 @@
- # 
---
- set(prefix  ${CMAKE_INSTALL_PREFIX})
- set(exec_prefix 

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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:04:53
  Author: bgyorgy
Revision: 136081

upgpkg: mate-control-center 1.10.0-3

Remove unused dependency on caja

Modified:
  mate-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:04:15 UTC (rev 136080)
+++ PKGBUILD2015-06-28 21:04:53 UTC (rev 136081)
@@ -4,13 +4,13 @@
 _pkgbase=mate-control-center
 pkgname=${_pkgbase}
 pkgver=${_ver}.0
-pkgrel=2
+pkgrel=3
 pkgdesc=The Control Center for MATE (GTK2 version)
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja=1.10' 'dbus-glib' 'dconf' 'desktop-file-utils' 
'gsettings-desktop-schemas'
- 'gtk2' 'mate-desktop=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon=1.10'
+depends=('dbus-glib' 'dconf' 'desktop-file-utils' 'gsettings-desktop-schemas' 
'gtk2'
+ 'mate-desktop=1.10' 'mate-icon-theme' 'mate-menus=1.10' 
'mate-settings-daemon=1.10'
  'marco=1.10' 'libgtop' 'libmatekbd=1.10' 'libunique' 'librsvg' 
'libxss'
  'libxt' 'startup-notification')
 makedepends=('docbook2x' 'mate-common' 'yelp-tools')


[arch-commits] Commit in mate-control-center/repos (16 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:05:04
  Author: bgyorgy
Revision: 136082

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

Added:
  
mate-control-center/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136081, 
mate-control-center/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136081, 
mate-control-center/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center/repos/community-i686/PKGBUILD
(from rev 136081, mate-control-center/trunk/PKGBUILD)
  mate-control-center/repos/community-i686/mate-control-center.install
(from rev 136081, mate-control-center/trunk/mate-control-center.install)
  
mate-control-center/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
(from rev 136081, 
mate-control-center/trunk/0001_fix_keyboard_and_mouse_properties_windows.diff)
  
mate-control-center/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
(from rev 136081, 
mate-control-center/trunk/0002_adjust_mate-about-me_dialog_window.diff)
  mate-control-center/repos/community-x86_64/PKGBUILD
(from rev 136081, mate-control-center/trunk/PKGBUILD)
  mate-control-center/repos/community-x86_64/mate-control-center.install
(from rev 136081, mate-control-center/trunk/mate-control-center.install)
Deleted:
  
mate-control-center/repos/community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center/repos/community-i686/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center/repos/community-i686/PKGBUILD
  mate-control-center/repos/community-i686/mate-control-center.install
  
mate-control-center/repos/community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff
  
mate-control-center/repos/community-x86_64/0002_adjust_mate-about-me_dialog_window.diff
  mate-control-center/repos/community-x86_64/PKGBUILD
  mate-control-center/repos/community-x86_64/mate-control-center.install

--+
 /0001_fix_keyboard_and_mouse_properties_windows.diff |  216 
++
 /0002_adjust_mate-about-me_dialog_window.diff|   26 +
 /PKGBUILD|  106 

 /mate-control-center.install |   28 +
 community-i686/0001_fix_keyboard_and_mouse_properties_windows.diff   |  108 
-
 community-i686/0002_adjust_mate-about-me_dialog_window.diff  |   13 
 community-i686/PKGBUILD  |   53 --
 community-i686/mate-control-center.install   |   14 
 community-x86_64/0001_fix_keyboard_and_mouse_properties_windows.diff |  108 
-
 community-x86_64/0002_adjust_mate-about-me_dialog_window.diff|   13 
 community-x86_64/PKGBUILD|   53 --
 community-x86_64/mate-control-center.install |   14 
 12 files changed, 376 insertions(+), 376 deletions(-)

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


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

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 23:25:03
  Author: eworm
Revision: 136085

use upstream patch

Modified:
  oath-toolkit/trunk/PKGBUILD
Deleted:
  oath-toolkit/trunk/0001-fix-make-check-on-32-bit-systems.patch

-+
 0001-fix-make-check-on-32-bit-systems.patch |   43 --
 PKGBUILD|4 +-
 2 files changed, 2 insertions(+), 45 deletions(-)

Deleted: 0001-fix-make-check-on-32-bit-systems.patch
===
--- 0001-fix-make-check-on-32-bit-systems.patch 2015-06-28 21:16:08 UTC (rev 
136084)
+++ 0001-fix-make-check-on-32-bit-systems.patch 2015-06-28 21:25:03 UTC (rev 
136085)
@@ -1,43 +0,0 @@
-From 547065646f96d8e7a3b88ebc03b0fd35294e9d11 Mon Sep 17 00:00:00 2001
-From: Christian Hesse m...@eworm.de
-Date: Mon, 25 May 2015 17:34:19 +0200
-Subject: [PATCH 1/1] fix make check on 32 bit systems
-
-Some tests break with time_t limited to 32 bit. The test code has
-exception, but bad values. Update the values to what we expect and make
-tests pass.
-
-Signed-off-by: Christian Hesse m...@eworm.de

- liboath/tests/tst_totp_algo.c | 8 
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/liboath/tests/tst_totp_algo.c b/liboath/tests/tst_totp_algo.c
-index 019efb9..f56be1f 100644
 a/liboath/tests/tst_totp_algo.c
-+++ b/liboath/tests/tst_totp_algo.c
-@@ -131,8 +131,8 @@ main (void)
-   if (strcmp (otp, tv[i].sha256otp) != 0)
-   {
- printf (otp[%ld] got %s expected2 %s\n, i, otp, tv[i].sha256otp);
--if (strcmp (otp, 82762030) == 0
-- strcmp (tv[i].sha256otp, 65353130) == 0)
-+if (strcmp (otp, 11281421) == 0
-+ strcmp (tv[i].sha256otp, 77737706) == 0)
-   printf (Mismatch due to 32-bit time_t...\n);
- else
-   return 1;
-@@ -153,8 +153,8 @@ main (void)
-   if (strcmp (otp, tv[i].sha512otp) != 0)
-   {
- printf (otp[%ld] got %s expected2 %s\n, i, otp, tv[i].sha512otp);
--if (strcmp (otp, 82762030) == 0
-- strcmp (tv[i].sha512otp, 65353130) == 0)
-+if (strcmp (otp, 29833534) == 0
-+ strcmp (tv[i].sha512otp, 47863826) == 0)
-   printf (Mismatch due to 32-bit time_t...\n);
- else
-   return 1;
--- 
-2.4.1
-

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:16:08 UTC (rev 136084)
+++ PKGBUILD2015-06-28 21:25:03 UTC (rev 136085)
@@ -13,10 +13,10 @@
 depends=('glibc' 'pam' 'xmlsec')
 validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
 
source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}
-'0001-fix-make-check-on-32-bit-systems.patch')
+ 
'0001-fix-make-check-on-32-bit-systems.patch::http://git.savannah.gnu.org/cgit/oath-toolkit.git/patch/?id=1cd97516756d3e9d71c4072164bda9070625f9ee')
 md5sums=('f19f1c47eb7d1c609b3e244876b9ce63'
  'SKIP'
- 'd3c1a32357fb27f67a82bffd08331062')
+ '239e0e8f0905e84202e79ab11b85ebb7')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:42:20
  Author: bgyorgy
Revision: 136091

upgpkg: atril-gtk3 1.10.0-1

7z and rar files are supported via bsdtar now

Modified:
  atril-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:42:03 UTC (rev 136090)
+++ PKGBUILD2015-06-28 21:42:20 UTC (rev 136091)
@@ -17,9 +17,7 @@
 optdepends=('caja-gtk3: Document Properties extension'
 'djvulibre: DjVu support'
 'libgxps: XPS support'
-'p7zip: cbz and cb7 compressed comic books'
 'texlive-bin: DVI support'
-'unrar: cbr compressed comic books'
 'yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
 conflicts=(${_pkgbase})


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

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 23:42:03
  Author: bgyorgy
Revision: 136090

upgpkg: atril 1.10.0-1

7z and rar files are supported via bsdtar now

Modified:
  atril/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 21:28:10 UTC (rev 136089)
+++ PKGBUILD2015-06-28 21:42:03 UTC (rev 136090)
@@ -16,9 +16,7 @@
 optdepends=('caja: Document Properties extension'
 'djvulibre: DjVu support'
 'libgxps: XPS support'
-'p7zip: cbz and cb7 compressed comic books'
 'texlive-bin: DVI support'
-'unrar: cbr compressed comic books'
 'yelp: for reading MATE help documents')
 groups=('mate-extra')
 conflicts=(${_pkgbase}-gtk3)


[arch-commits] Commit in bup/trunk (PKGBUILD python2.patch)

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 23:48:51
  Author: arodseth
Revision: 136092

upgpkg: bup 0.27-1

Modified:
  bup/trunk/PKGBUILD
Deleted:
  bup/trunk/python2.patch

---+
 PKGBUILD  |   34 
 python2.patch | 7699 
 2 files changed, 21 insertions(+), 7712 deletions(-)

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


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

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 23:49:01
  Author: arodseth
Revision: 136093

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

Added:
  bup/repos/community-i686/PKGBUILD
(from rev 136092, bup/trunk/PKGBUILD)
  bup/repos/community-i686/avoid-using-pandoc.patch
(from rev 136092, bup/trunk/avoid-using-pandoc.patch)
  bup/repos/community-x86_64/PKGBUILD
(from rev 136092, bup/trunk/PKGBUILD)
  bup/repos/community-x86_64/avoid-using-pandoc.patch
(from rev 136092, bup/trunk/avoid-using-pandoc.patch)
Deleted:
  bup/repos/community-i686/PKGBUILD
  bup/repos/community-i686/avoid-using-pandoc.patch
  bup/repos/community-i686/python2.patch
  bup/repos/community-x86_64/PKGBUILD
  bup/repos/community-x86_64/avoid-using-pandoc.patch
  bup/repos/community-x86_64/python2.patch

---+
 /PKGBUILD |  108 
 /avoid-using-pandoc.patch |   62 
 community-i686/PKGBUILD   |   37 
 community-i686/avoid-using-pandoc.patch   |   31 
 community-i686/python2.patch  | 7699 
 community-x86_64/PKGBUILD |   37 
 community-x86_64/avoid-using-pandoc.patch |   31 
 community-x86_64/python2.patch| 7699 
 8 files changed, 170 insertions(+), 15534 deletions(-)

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


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

2015-06-28 Thread Ray Rashif
Date: Sunday, June 28, 2015 @ 23:54:30
  Author: schiv
Revision: 241386

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

Added:
  opencv/repos/staging-i686/
  opencv/repos/staging-i686/PKGBUILD
(from rev 241385, opencv/trunk/PKGBUILD)
  opencv/repos/staging-i686/fsh.patch
(from rev 241385, opencv/trunk/fsh.patch)
  opencv/repos/staging-x86_64/
  opencv/repos/staging-x86_64/PKGBUILD
(from rev 241385, opencv/trunk/PKGBUILD)
  opencv/repos/staging-x86_64/fsh.patch
(from rev 241385, opencv/trunk/fsh.patch)

--+
 staging-i686/PKGBUILD|  108 +++
 staging-i686/fsh.patch   |  136 +
 staging-x86_64/PKGBUILD  |  108 +++
 staging-x86_64/fsh.patch |  136 +
 4 files changed, 488 insertions(+)

Copied: opencv/repos/staging-i686/PKGBUILD (from rev 241385, 
opencv/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-06-28 21:54:30 UTC (rev 241386)
@@ -0,0 +1,108 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgbase=opencv
+pkgname=('opencv' 'opencv-samples')
+_contrib=opencv_contrib
+pkgver=3.0.0
+pkgrel=1
+pkgdesc=Open Source Computer Vision Library
+arch=('i686' 'x86_64')
+license=('BSD')
+url=http://opencv.org/;
+depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394'
+  'gtkglext' 'libwebp' 'libgphoto2')
+makedepends=('cmake' 'python2-numpy' 'python-numpy' 'mesa' 'eigen' 'git')
+optdepends=('opencv-samples'
+'eigen2'
+'libcl: For coding with OpenCL'
+'python2-numpy: Python 2.x interface'
+'python-numpy: Python 3.x interface')
+source=(http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip;
+
$_contrib-$pkgver::git+https://github.com/Itseez/$_contrib.git#tag=$pkgver;)
+md5sums=('09004c275d8092cbdf5b61675cecd399'
+ 'SKIP')
+
+_cmakeopts=('-D WITH_OPENGL=ON'
+'-D WITH_TBB=ON'
+'-D WITH_XINE=ON'
+'-D WITH_GSTREAMER=OFF'
+'-D BUILD_WITH_DEBUG_INFO=OFF'
+'-D BUILD_TESTS=OFF'
+'-D BUILD_PERF_TESTS=OFF'
+'-D INSTALL_TESTS=ON'
+'-D INSTALL_C_EXAMPLES=ON'
+'-D INSTALL_PYTHON_EXAMPLES=ON'
+-D OPENCV_EXTRA_MODULES_PATH=$srcdir/$_contrib/modules
+'-D CMAKE_BUILD_TYPE=Release'
+'-D CMAKE_INSTALL_PREFIX=/usr'
+'-D CMAKE_SKIP_RPATH=ON')
+
+# SSE only available from Pentium 3 onwards (i686 is way older)
+[[ $CARCH = 'i686' ]]  \
+  _cmakeopts+=('-D ENABLE_SSE=OFF'
+   '-D ENABLE_SSE2=OFF'
+   '-D ENABLE_SSE3=OFF')
+
+# all x64 CPUs support SSE2 but not SSE3
+[[ $CARCH = 'x86_64' ]]  _cmakeopts+=('-D ENABLE_SSE3=OFF')
+
+#prepare() {
+#  cd $srcdir/$pkgname-$pkgver
+#
+#  # TODO: this is mostly upstream frei0r; they hardcode the path
+#  #msg2 Hack-fixing folder naming inconsistency (downstream)
+#  # see http://code.opencv.org/issues/2512
+#  # and https://bugs.archlinux.org/task/32342
+#  #patch -Np1 -i $srcdir/fsh.patch
+#
+#  # no longer including docs, see https://bugs.archlinux.org/task/34185
+#  # python2 compatibility for generating (html) docs
+#  #sed -i 's/sphinx-build/sphinx-build2/' cmake/OpenCVDetectPython.cmake
+#}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  export LDFLAGS+=,-z,noexecstack
+  cmake ${_cmakeopts[@]} .
+  make
+}
+
+package_opencv() {
+  options=('staticlibs')
+
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # install license file
+  install -Dm644 $srcdir/$pkgname-$pkgver/LICENSE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  cd $pkgdir/usr/share
+
+  # separate samples package; also be -R friendly
+  if [[ -d OpenCV/samples ]]; then
+mv OpenCV/samples $srcdir/$pkgname-samples
+mv OpenCV $pkgname # otherwise folder naming is inconsistent
+  elif [[ ! -d OpenCV ]]; then
+warning Directory naming issue; samples package may not be built!
+  fi
+}
+
+package_opencv-samples() {
+  pkgdesc+= (samples)
+  depends=(opencv=$pkgver) # sample codes change with lib/API
+  unset optdepends
+
+  mkdir -p $pkgdir/usr/share/opencv
+  cp -r $srcdir/opencv-samples $pkgdir/usr/share/opencv/samples
+
+  # install license file
+  install -Dm644 $srcdir/opencv-$pkgver/LICENSE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: opencv/repos/staging-i686/fsh.patch (from rev 241385, 
opencv/trunk/fsh.patch)
===
--- staging-i686/fsh.patch  (rev 0)
+++ staging-i686/fsh.patch  2015-06-28 21:54:30 UTC (rev 241386)
@@ -0,0 +1,136 @@
+diff -baur opencv-2.4.7.orig/cmake/OpenCVGenPkgconfig.cmake 

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

2015-06-28 Thread Christian Hesse
Date: Sunday, June 28, 2015 @ 18:57:26
  Author: eworm
Revision: 136048

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

Added:
  mysql-workbench/repos/community-staging-i686/
  
mysql-workbench/repos/community-staging-i686/0001-mysql-workbench-no-check-for-updates.patch
(from rev 136047, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
  
mysql-workbench/repos/community-staging-i686/0007-mysql-workbench-no-set-gtid-purged.patch
(from rev 136047, 
mysql-workbench/trunk/0007-mysql-workbench-no-set-gtid-purged.patch)
  
mysql-workbench/repos/community-staging-i686/0009-mysql-workbench-gnome-keyring.patch
(from rev 136047, 
mysql-workbench/trunk/0009-mysql-workbench-gnome-keyring.patch)
  mysql-workbench/repos/community-staging-i686/0010-mysql-workbench-object.patch
(from rev 136047, mysql-workbench/trunk/0010-mysql-workbench-object.patch)
  mysql-workbench/repos/community-staging-i686/PKGBUILD
(from rev 136047, mysql-workbench/trunk/PKGBUILD)
  mysql-workbench/repos/community-staging-i686/arch_linux_profile.xml
(from rev 136047, mysql-workbench/trunk/arch_linux_profile.xml)
  mysql-workbench/repos/community-staging-i686/mysql-workbench.install
(from rev 136047, mysql-workbench/trunk/mysql-workbench.install)
  mysql-workbench/repos/community-staging-x86_64/
  
mysql-workbench/repos/community-staging-x86_64/0001-mysql-workbench-no-check-for-updates.patch
(from rev 136047, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
  
mysql-workbench/repos/community-staging-x86_64/0007-mysql-workbench-no-set-gtid-purged.patch
(from rev 136047, 
mysql-workbench/trunk/0007-mysql-workbench-no-set-gtid-purged.patch)
  
mysql-workbench/repos/community-staging-x86_64/0009-mysql-workbench-gnome-keyring.patch
(from rev 136047, 
mysql-workbench/trunk/0009-mysql-workbench-gnome-keyring.patch)
  
mysql-workbench/repos/community-staging-x86_64/0010-mysql-workbench-object.patch
(from rev 136047, mysql-workbench/trunk/0010-mysql-workbench-object.patch)
  mysql-workbench/repos/community-staging-x86_64/PKGBUILD
(from rev 136047, mysql-workbench/trunk/PKGBUILD)
  mysql-workbench/repos/community-staging-x86_64/arch_linux_profile.xml
(from rev 136047, mysql-workbench/trunk/arch_linux_profile.xml)
  mysql-workbench/repos/community-staging-x86_64/mysql-workbench.install
(from rev 136047, mysql-workbench/trunk/mysql-workbench.install)

--+
 community-staging-i686/0001-mysql-workbench-no-check-for-updates.patch   |   
21 ++
 community-staging-i686/0007-mysql-workbench-no-set-gtid-purged.patch |   
29 +++
 community-staging-i686/0009-mysql-workbench-gnome-keyring.patch  |   
17 +
 community-staging-i686/0010-mysql-workbench-object.patch |   
24 ++
 community-staging-i686/PKGBUILD  |   
91 ++
 community-staging-i686/mysql-workbench.install   |   
14 +
 community-staging-x86_64/0001-mysql-workbench-no-check-for-updates.patch |   
21 ++
 community-staging-x86_64/0007-mysql-workbench-no-set-gtid-purged.patch   |   
29 +++
 community-staging-x86_64/0009-mysql-workbench-gnome-keyring.patch|   
17 +
 community-staging-x86_64/0010-mysql-workbench-object.patch   |   
24 ++
 community-staging-x86_64/PKGBUILD|   
91 ++
 community-staging-x86_64/mysql-workbench.install |   
14 +
 12 files changed, 392 insertions(+)

Copied: 
mysql-workbench/repos/community-staging-i686/0001-mysql-workbench-no-check-for-updates.patch
 (from rev 136047, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
===
--- community-staging-i686/0001-mysql-workbench-no-check-for-updates.patch  
(rev 0)
+++ community-staging-i686/0001-mysql-workbench-no-check-for-updates.patch  
2015-06-28 16:57:26 UTC (rev 136048)
@@ -0,0 +1,21 @@
+diff --git a/res/wbdata/main_menu.xml b/res/wbdata/main_menu.xml
+index a32256c..08d9a21 100644
+--- a/res/wbdata/main_menu.xml
 b/res/wbdata/main_menu.xml
+@@ -2900,6 +2900,7 @@ value type=object struct-name=app.MenuItem 
id=com.mysql.wb.menu.view.fkhili
+   value type=string key=itemTypeaction/value
+ /value
+ 
++  !-- We build a package that should be updated via pacman, so disable 
this check.
+ value type=object struct-name=app.MenuItem 
id=com.mysql.wb.menu.separator.help.checkver
+   value type=string key=itemTypeseparator/value
+ /value
+@@ -2910,7 +2911,7 @@ value type=object struct-name=app.MenuItem 
id=com.mysql.wb.menu.view.fkhili
+   value type=string key=namecheckUpdate/value
+   value type=string 
key=commandplugin:wb.tools.checkForUpdates/value
+   value type=string 

[arch-commits] Commit in tomcat8/repos/extra-any (10 files)

2015-06-28 Thread Guillaume Alaux
Date: Sunday, June 28, 2015 @ 20:47:38
  Author: guillaume
Revision: 241383

archrelease: copy trunk to extra-any

Added:
  tomcat8/repos/extra-any/PKGBUILD
(from rev 241382, tomcat8/trunk/PKGBUILD)
  tomcat8/repos/extra-any/systemd_sysusers.d_tomcat8.conf
(from rev 241382, tomcat8/trunk/systemd_sysusers.d_tomcat8.conf)
  tomcat8/repos/extra-any/systemd_tmpfiles.d_tomcat8.conf
(from rev 241382, tomcat8/trunk/systemd_tmpfiles.d_tomcat8.conf)
  tomcat8/repos/extra-any/systemd_tomcat8.service
(from rev 241382, tomcat8/trunk/systemd_tomcat8.service)
  tomcat8/repos/extra-any/tomcat8.install
(from rev 241382, tomcat8/trunk/tomcat8.install)
Deleted:
  tomcat8/repos/extra-any/PKGBUILD
  tomcat8/repos/extra-any/systemd_sysusers.d_tomcat8.conf
  tomcat8/repos/extra-any/systemd_tmpfiles.d_tomcat8.conf
  tomcat8/repos/extra-any/systemd_tomcat8.service
  tomcat8/repos/extra-any/tomcat8.install

-+
 PKGBUILD|  156 +++---
 systemd_sysusers.d_tomcat8.conf |2 
 systemd_tmpfiles.d_tomcat8.conf |   10 +-
 systemd_tomcat8.service |   66 
 tomcat8.install |   38 -
 5 files changed, 136 insertions(+), 136 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 18:47:02 UTC (rev 241382)
+++ PKGBUILD2015-06-28 18:47:38 UTC (rev 241383)
@@ -1,78 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=tomcat8
-pkgver=8.0.22
-pkgrel=1
-pkgdesc='Open source implementation of the Java Servlet 3.1 and JavaServer 
Pages 2.3 technologies'
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-depends=('java-runtime=7' 'java-jsvc' 'java-commons-daemon' 'eclipse-ecj')
-optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-backup=(etc/${pkgname}/catalina.policy
-etc/${pkgname}/catalina.properties
-etc/${pkgname}/context.xml
-etc/${pkgname}/logging.properties
-etc/${pkgname}/server.xml
-etc/${pkgname}/tomcat-users.xml
-etc/${pkgname}/web.xml)
-install=${pkgname}.install
-source=(http://archive.apache.org/dist/tomcat/tomcat-8/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
-systemd_${pkgname}.service
-systemd_sysusers.d_${pkgname}.conf
-systemd_tmpfiles.d_${pkgname}.conf)
-
-sha256sums=('cb163576d03f45981bf025b62b46e71c3c634584daa4662fc721d37d46989eff'
-'d44056248b7cdd6671fd4de08a9453b3bd1a83980343d249a99b74939d46f4d4'
-'02e7a1edb82ed117629189806d40c2c7b70ec994ecbafc11cb7dc7eec35af216'
-'0dc1fdb537d3488756755f3fb713a9638597d4c68596f6f94f2707e8363cf5e2')
-
-_gid_log=19
-_gid_tomcat=57
-_uid_tomcat=57
-
-package() {
-  cd ${srcdir}/apache-tomcat-${pkgver}
-
-  # Tomcat general files
-  install -dm755 ${pkgdir}/usr/share/{,java/}${pkgname}
-  cp -r bin ${pkgdir}/usr/share/${pkgname}
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm 
${pkgdir}/usr/share/${pkgname}/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  ln -s /usr/share/java/commons-daemon.jar 
${pkgdir}/usr/share/${pkgname}/bin/commons-daemon.jar
-
-  install -m644 lib/* ${pkgdir}/usr/share/java/${pkgname}
-  # eclipse-ecj is packaged on its own
-  rm ${pkgdir}/usr/share/java/${pkgname}/ecj-*.jar
-  ln -s ../eclipse-ecj.jar ${pkgdir}/usr/share/java/${pkgname}/ecj.jar
-
-  ln -s /usr/share/java/${pkgname} ${pkgdir}/usr/share/${pkgname}/lib
-
-  # We log through systemd but this would still be required for stock Tomcat 
logging
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_log} 
${pkgdir}/var/log/${pkgname}
-  ln -s /var/log/${pkgname} ${pkgdir}/usr/share/${pkgname}/logs
-  touch ${pkgdir}/var/log/${pkgname}/catalina.{out,err}
-  chgrp ${_gid_log} ${pkgdir}/var/log/${pkgname}/catalina.{out,err}
-
-  install -dm775 ${pkgdir}/etc/${pkgname}
-  install -g ${_gid_tomcat} -m640 conf/* ${pkgdir}/etc/${pkgname}
-  install -d -g ${_gid_tomcat} -m775 ${pkgdir}/etc/${pkgname}/Catalina
-  ln -s /etc/${pkgname} ${pkgdir}/usr/share/${pkgname}/conf
-
-  install -dm775 ${pkgdir}/var/lib/${pkgname}
-  cp -r webapps ${pkgdir}/var/lib/${pkgname}
-  chown -R ${_uid_tomcat}:${_gid_tomcat} ${pkgdir}/var/lib/${pkgname}
-  chmod 775 ${pkgdir}/var/lib/${pkgname}/webapps
-  ln -s /var/lib/${pkgname}/webapps ${pkgdir}/usr/share/${pkgname}/webapps
-
-  install -dm1777 ${pkgdir}/var/tmp
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
${pkgdir}/var/tmp/${pkgname}/{temp,work}
-  ln -s /var/tmp/${pkgname}/temp ${pkgdir}/usr/share/${pkgname}/temp
-  ln -s /var/tmp/${pkgname}/work ${pkgdir}/usr/share/${pkgname}/work
-
-  install -Dm644 ${srcdir}/systemd_${pkgname}.service \
- ${pkgdir}/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 ${srcdir}/systemd_sysusers.d_${pkgname}.conf \
- ${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf
-  install -Dm644 

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

2015-06-28 Thread Guillaume Alaux
Date: Sunday, June 28, 2015 @ 20:47:02
  Author: guillaume
Revision: 241382

Upstream release 8.0.23

Modified:
  tomcat8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 17:03:42 UTC (rev 241381)
+++ PKGBUILD2015-06-28 18:47:02 UTC (rev 241382)
@@ -1,6 +1,6 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=tomcat8
-pkgver=8.0.22
+pkgver=8.0.23
 pkgrel=1
 pkgdesc='Open source implementation of the Java Servlet 3.1 and JavaServer 
Pages 2.3 technologies'
 arch=('any')
@@ -21,7 +21,7 @@
 systemd_sysusers.d_${pkgname}.conf
 systemd_tmpfiles.d_${pkgname}.conf)
 
-sha256sums=('cb163576d03f45981bf025b62b46e71c3c634584daa4662fc721d37d46989eff'
+sha256sums=('c98b19a1edaaef2859991f304d0ec8f29c5ccacc6d63a0bc8bf7078d63191a38'
 'd44056248b7cdd6671fd4de08a9453b3bd1a83980343d249a99b74939d46f4d4'
 '02e7a1edb82ed117629189806d40c2c7b70ec994ecbafc11cb7dc7eec35af216'
 '0dc1fdb537d3488756755f3fb713a9638597d4c68596f6f94f2707e8363cf5e2')


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

2015-06-28 Thread Andreas Radke
Date: Sunday, June 28, 2015 @ 18:51:12
  Author: andyrtr
Revision: 241376

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

Added:
  cups-filters/repos/extra-i686/PKGBUILD
(from rev 241375, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/extra-x86_64/PKGBUILD
(from rev 241375, cups-filters/trunk/PKGBUILD)
Deleted:
  cups-filters/repos/extra-i686/PKGBUILD
  cups-filters/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-28 16:50:57 UTC (rev 241375)
+++ extra-i686/PKGBUILD 2015-06-28 16:51:12 UTC (rev 241376)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=cups-filters
-pkgver=1.0.69
-pkgrel=1
-pkgdesc=OpenPrinting CUPS Filters
-arch=('i686' 'x86_64')
-url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
-license=('GPL')
-depends=('lcms2' 'poppler' 'qpdf')
-makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
-optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
-   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
-   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
-   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
-backup=(etc/fonts/conf.d/99pdftoopvp.conf
-etc/cups/cups-browsed.conf)
-source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
-provides=('foomatic-filters')
-replaces=('foomatic-filters')
-conflicts=('foomatic-filters')
-md5sums=('914939cf0380ce04a91597a6f666c812')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr  \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---with-rcdir=no \
---enable-avahi \
---with-browseremoteprotocols=DNSSD,CUPS \
---with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-  
-  # add upstream systemd support file
-  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i s|cups.service|org.cups.cupsd.service|g 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  
-  # use lp group from cups pkg FS#36769
-  chgrp -R lp ${pkgdir}/etc/cups
-}

Copied: cups-filters/repos/extra-i686/PKGBUILD (from rev 241375, 
cups-filters/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-28 16:51:12 UTC (rev 241376)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=cups-filters
+pkgver=1.0.70
+pkgrel=1
+pkgdesc=OpenPrinting CUPS Filters
+arch=('i686' 'x86_64')
+url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('5afe1bca041c905ec8861d1a6ffbc634')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 

[arch-commits] Commit in xf86-input-vmmouse/trunk (PKGBUILD)

2015-06-28 Thread Andreas Radke
Date: Sunday, June 28, 2015 @ 19:03:03
  Author: andyrtr
Revision: 241379

upgpkg: xf86-input-vmmouse 13.1.0-1

upstream update 13.1.0

Modified:
  xf86-input-vmmouse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 16:55:25 UTC (rev 241378)
+++ PKGBUILD2015-06-28 17:03:03 UTC (rev 241379)
@@ -2,18 +2,18 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-input-vmmouse
-pkgver=13.0.0
-pkgrel=5
+pkgver=13.1.0
+pkgrel=1
 pkgdesc=X.org VMWare Mouse input driver
 arch=(i686 x86_64)
 license=('custom')
 url=http://xorg.freedesktop.org/;
-depends=('glibc' 'sh')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
+depends=('glibc' 'libsystemd' 'sh')
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21.1' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21.1' 
'X-ABI-XINPUT_VERSION=22')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('04cfb60366008d4db815c550d8fb8d0a4270c75fa7a20fa3bddc9ecbd355612c')
+sha256sums=('0af558957ac1be1b2863712c2475de8f4d7f14921fd01ded2e2fde4921b19319')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in xf86-input-vmmouse/repos (4 files)

2015-06-28 Thread Andreas Radke
Date: Sunday, June 28, 2015 @ 19:03:14
  Author: andyrtr
Revision: 241380

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

Added:
  xf86-input-vmmouse/repos/extra-i686/PKGBUILD
(from rev 241379, xf86-input-vmmouse/trunk/PKGBUILD)
  xf86-input-vmmouse/repos/extra-x86_64/PKGBUILD
(from rev 241379, xf86-input-vmmouse/trunk/PKGBUILD)
Deleted:
  xf86-input-vmmouse/repos/extra-i686/PKGBUILD
  xf86-input-vmmouse/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-28 17:03:03 UTC (rev 241379)
+++ extra-i686/PKGBUILD 2015-06-28 17:03:14 UTC (rev 241380)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-vmmouse
-pkgver=13.0.0
-pkgrel=5
-pkgdesc=X.org VMWare Mouse input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc' 'sh')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('04cfb60366008d4db815c550d8fb8d0a4270c75fa7a20fa3bddc9ecbd355612c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-udev-rules-dir=/usr/lib/udev/rules.d
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-  rm -rfv ${pkgdir}/usr/{lib,share}/hal
-}

Copied: xf86-input-vmmouse/repos/extra-i686/PKGBUILD (from rev 241379, 
xf86-input-vmmouse/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-28 17:03:14 UTC (rev 241380)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-vmmouse
+pkgver=13.1.0
+pkgrel=1
+pkgdesc=X.org VMWare Mouse input driver
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('glibc' 'libsystemd' 'sh')
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21.1' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21.1' 
'X-ABI-XINPUT_VERSION=22')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('0af558957ac1be1b2863712c2475de8f4d7f14921fd01ded2e2fde4921b19319')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-udev-rules-dir=/usr/lib/udev/rules.d
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+  rm -rfv ${pkgdir}/usr/{lib,share}/hal
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-28 17:03:03 UTC (rev 241379)
+++ extra-x86_64/PKGBUILD   2015-06-28 17:03:14 UTC (rev 241380)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-input-vmmouse
-pkgver=13.0.0
-pkgrel=5
-pkgdesc=X.org VMWare Mouse input driver
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('glibc' 'sh')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('04cfb60366008d4db815c550d8fb8d0a4270c75fa7a20fa3bddc9ecbd355612c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-udev-rules-dir=/usr/lib/udev/rules.d
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-  rm -rfv ${pkgdir}/usr/{lib,share}/hal
-}

Copied: xf86-input-vmmouse/repos/extra-x86_64/PKGBUILD (from rev 241379, 
xf86-input-vmmouse/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-28 17:03:14 UTC (rev 241380)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-input-vmmouse
+pkgver=13.1.0
+pkgrel=1
+pkgdesc=X.org VMWare Mouse input driver

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

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 19:03:42
  Author: foutrelis
Revision: 241381

Fix missing dependency on hunspell

Modified:
  lokalize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 17:03:14 UTC (rev 241380)
+++ PKGBUILD2015-06-28 17:03:42 UTC (rev 241381)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 groups=('kde-applications' 'kdesdk')
-depends=('kross')
+depends=('kross' 'hunspell')
 makedepends=('extra-cmake-modules' 'python' 'kdoctools')
 install=${pkgname}.install
 conflicts=('kdesdk-lokalize')


[arch-commits] Commit in mate-user-share-gtk3/trunk (PKGBUILD)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 20:00:04
  Author: bgyorgy
Revision: 136049

upgpkg: mate-user-share-gtk3 1.10.0-2

Really build with GTK3 instead of GTK2

Modified:
  mate-user-share-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 16:57:26 UTC (rev 136048)
+++ PKGBUILD2015-06-28 18:00:04 UTC (rev 136049)
@@ -4,12 +4,12 @@
 _pkgbase=mate-user-share
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=User level public file sharing via WebDAV for MATE.
+pkgrel=2
+pkgdesc=User level public file sharing via WebDAV for MATE. (GTK3 version 
[EXPERIMENTAL])
 url=http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus-glib' 'dconf' 'libunique' 'mod_dnssd')
+depends=('dbus-glib' 'dconf' 'libunique3' 'mod_dnssd')
 makedepends=('caja-gtk3=1.10' 'libcanberra' 'libnotify' 'mate-common' 
'yelp-tools')
 optdepends=('yelp: for reading MATE help documents')
 groups=('mate-extra-gtk3')
@@ -24,6 +24,7 @@
 --prefix=/usr \
 --libexec=/usr/lib/${_pkgbase} \
 --sysconfdir=/etc \
+--with-gtk=3.0 \
 --disable-static \
 --disable-bluetooth
 make


[arch-commits] Commit in mate-user-share-gtk3/repos (8 files)

2015-06-28 Thread Balló György
Date: Sunday, June 28, 2015 @ 20:00:13
  Author: bgyorgy
Revision: 136050

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

Added:
  mate-user-share-gtk3/repos/community-i686/PKGBUILD
(from rev 136049, mate-user-share-gtk3/trunk/PKGBUILD)
  mate-user-share-gtk3/repos/community-i686/mate-user-share.install
(from rev 136049, mate-user-share-gtk3/trunk/mate-user-share.install)
  mate-user-share-gtk3/repos/community-x86_64/PKGBUILD
(from rev 136049, mate-user-share-gtk3/trunk/PKGBUILD)
  mate-user-share-gtk3/repos/community-x86_64/mate-user-share.install
(from rev 136049, mate-user-share-gtk3/trunk/mate-user-share.install)
Deleted:
  mate-user-share-gtk3/repos/community-i686/PKGBUILD
  mate-user-share-gtk3/repos/community-i686/mate-user-share.install
  mate-user-share-gtk3/repos/community-x86_64/PKGBUILD
  mate-user-share-gtk3/repos/community-x86_64/mate-user-share.install

--+
 /PKGBUILD|   74 +
 /mate-user-share.install |   26 ++
 community-i686/PKGBUILD  |   37 --
 community-i686/mate-user-share.install   |   13 -
 community-x86_64/PKGBUILD|   37 --
 community-x86_64/mate-user-share.install |   13 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-28 18:00:04 UTC (rev 136049)
+++ community-i686/PKGBUILD 2015-06-28 18:00:13 UTC (rev 136050)
@@ -1,37 +0,0 @@
-# $Id$
-#Maintainer: Martin Wimpress c...@flexion.org
-
-_ver=1.10
-_pkgbase=mate-user-share
-pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.0
-pkgrel=1
-pkgdesc=User level public file sharing via WebDAV for MATE.
-url=http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus-glib' 'dconf' 'libunique' 'mod_dnssd')
-makedepends=('caja-gtk3=1.10' 'libcanberra' 'libnotify' 'mate-common' 
'yelp-tools')
-optdepends=('yelp: for reading MATE help documents')
-groups=('mate-extra-gtk3')
-conflicts=(${_pkgbase})
-source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('2f6dd6a05e6c1894272b6a0d7348e709196bb947')
-install=${_pkgbase}.install
-
-build() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr \
---libexec=/usr/lib/${_pkgbase} \
---sysconfdir=/etc \
---disable-static \
---disable-bluetooth
-make
-}
-
-package() {
-cd ${srcdir}/${_pkgbase}-${pkgver}
-make  DESTDIR=${pkgdir} install
-rm -f ${pkgdir}/usr/share/mate-user-share/dav_user_2.0.conf
-}

Copied: mate-user-share-gtk3/repos/community-i686/PKGBUILD (from rev 136049, 
mate-user-share-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-28 18:00:13 UTC (rev 136050)
@@ -0,0 +1,37 @@
+#Maintainer: Martin Wimpress c...@flexion.org
+
+_ver=1.10
+_pkgbase=mate-user-share
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=2
+pkgdesc=User level public file sharing via WebDAV for MATE. (GTK3 version 
[EXPERIMENTAL])
+url=http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'dconf' 'libunique3' 'mod_dnssd')
+makedepends=('caja-gtk3=1.10' 'libcanberra' 'libnotify' 'mate-common' 
'yelp-tools')
+optdepends=('yelp: for reading MATE help documents')
+groups=('mate-extra-gtk3')
+conflicts=(${_pkgbase})
+source=(http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('2f6dd6a05e6c1894272b6a0d7348e709196bb947')
+install=${_pkgbase}.install
+
+build() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--libexec=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-gtk=3.0 \
+--disable-static \
+--disable-bluetooth
+make
+}
+
+package() {
+cd ${srcdir}/${_pkgbase}-${pkgver}
+make  DESTDIR=${pkgdir} install
+rm -f ${pkgdir}/usr/share/mate-user-share/dav_user_2.0.conf
+}

Deleted: community-i686/mate-user-share.install
===
--- community-i686/mate-user-share.install  2015-06-28 18:00:04 UTC (rev 
136049)
+++ community-i686/mate-user-share.install  2015-06-28 18:00:13 UTC (rev 
136050)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-user-share-gtk3/repos/community-i686/mate-user-share.install (from 
rev 136049, mate-user-share-gtk3/trunk/mate-user-share.install)

[arch-commits] Commit in cloc/repos/community-any (PKGBUILD PKGBUILD perl522.patch)

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 21:22:38
  Author: foutrelis
Revision: 136055

archrelease: copy trunk to community-any

Added:
  cloc/repos/community-any/PKGBUILD
(from rev 136054, cloc/trunk/PKGBUILD)
  cloc/repos/community-any/perl522.patch
(from rev 136054, cloc/trunk/perl522.patch)
Deleted:
  cloc/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   49 +--
 perl522.patch |   70 
 2 files changed, 97 insertions(+), 22 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 19:22:29 UTC (rev 136054)
+++ PKGBUILD2015-06-28 19:22:38 UTC (rev 136055)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Diogo Ferreira di...@underdev.org
-
-pkgname=cloc
-pkgver=1.62
-pkgrel=1
-pkgdesc=Count Lines of Code
-arch=('any')
-url=http://cloc.sourceforge.net/;
-license=('GPL')
-depends=('perl')
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/v$pkgver/$pkgname-$pkgver.pl)
-sha256sums=('fa3793b576895cde2acae26a49447bf0c55ab3f79bdacfb00a88fc1d255c2570')
-
-package() {
-  cd $srcdir
-
-  install -D $pkgname-$pkgver.pl $pkgdir/usr/bin/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cloc/repos/community-any/PKGBUILD (from rev 136054, cloc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 19:22:38 UTC (rev 136055)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Diogo Ferreira di...@underdev.org
+
+pkgname=cloc
+pkgver=1.64
+pkgrel=1
+pkgdesc=Count Lines of Code
+arch=('any')
+url=http://cloc.sourceforge.net/;
+license=('GPL')
+depends=('perl')
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/v$pkgver/$pkgname-$pkgver.pl
+perl522.patch)
+sha256sums=('79edea7ea1f442b1632001e23418193ae4571810e60de8bd25e491036d60eb3d'
+'57e73b9b18376edc6c37426cb3cfca1e84ae49b4ede52e21a6ae2b8aa17b949b')
+
+package() {
+  cd $srcdir
+
+  install -D $pkgname-$pkgver.pl $pkgdir/usr/bin/$pkgname
+
+  # https://sourceforge.net/p/cloc/bugs/135/
+  patch -N -i perl522.patch $pkgdir/usr/bin/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:

Copied: cloc/repos/community-any/perl522.patch (from rev 136054, 
cloc/trunk/perl522.patch)
===
--- perl522.patch   (rev 0)
+++ perl522.patch   2015-06-28 19:22:38 UTC (rev 136055)
@@ -0,0 +1,70 @@
+--- /usr/bin/cloc  2015-06-29 01:53:16.0 +0800
 cloc-1.64.pl   2015-06-29 02:11:09.849082768 +0800
+@@ -1281,8 +1281,8 @@
+ $not_Filters_by_Language_Lang_LR = 1;
+ }
+ } else {
+-if (!defined(@{$Filters_by_Language{$Lang_L} }) or
+-!defined(@{$Filters_by_Language{$Lang_R} })) {
++if (!(@{$Filters_by_Language{$Lang_L} }) or
++!(@{$Filters_by_Language{$Lang_R} })) {
+ $not_Filters_by_Language_Lang_LR = 1;
+ }
+ }
+@@ -1618,7 +1618,7 @@
+ $Ignored{$file} = --exclude-lang=$Language{$file};
+ next;
+ }
+-my $Filters_by_Language_Language_file = !defined 
@{$Filters_by_Language{$Language{$file}} };
++my $Filters_by_Language_Language_file = 
!@{$Filters_by_Language{$Language{$file}} };
+ if ($Filters_by_Language_Language_file) {
+ if ($Language{$file} eq (unknown)) {
+ $Ignored{$file} = language unknown (#1);
+@@ -1759,7 +1759,7 @@
+ if ($PERL_516) {
+ next unless 
@{$rhaa_Filters_by_Language-{$1}};
+ } else {
+-next unless defined 
@{$rhaa_Filters_by_Language-{$1}};
++next unless @{$rhaa_Filters_by_Language-{$1}};
+ }
+ # above test necessary to avoid trying to sum reports
+ # of reports (which have no language breakdown).
+@@ -3259,7 +3259,7 @@
+ } # 1}}}
+ sub print_language_filters { # {{{1
+ my ($language,) = @_;
+-if (!defined @{$Filters_by_Language{$language}}) {
++if (!@{$Filters_by_Language{$language}}) {
+ warn Unknown language: $language\n;
+ warn Use --show-lang to list all defined languages.\n;
+ return;
+@@ -4623,7 +4623,7 @@
+ 
+   open (FILE, $file);
+   while (FILE) {
+-if (m/^\\begin{code}/) { close FILE; return 2; }
++if (m/^\\begin\{code}/) { close FILE; return 2; }
+ if (m/^\s/) { close FILE; return 1; }
+   }
+ 
+@@ -4652,9 +4652,9 @@
+ if (!s/^//) { s/.*//; }
+ } elsif ($literate == 2) {
+ if ($inlitblock) {
+-if (m/^\\end{code}/) { s/.*//; $inlitblock = 0; }
++if 

[arch-commits] Commit in cloc/trunk (PKGBUILD perl522.patch)

2015-06-28 Thread Evangelos Foutras
Date: Sunday, June 28, 2015 @ 21:22:29
  Author: foutrelis
Revision: 136054

upgpkg: cloc 1.64-1

New upstream release.

Added:
  cloc/trunk/perl522.patch
Modified:
  cloc/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ++--
 perl522.patch |   70 
 2 files changed, 78 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 19:07:29 UTC (rev 136053)
+++ PKGBUILD2015-06-28 19:22:29 UTC (rev 136054)
@@ -3,7 +3,7 @@
 # Contributor: Diogo Ferreira di...@underdev.org
 
 pkgname=cloc
-pkgver=1.62
+pkgver=1.64
 pkgrel=1
 pkgdesc=Count Lines of Code
 arch=('any')
@@ -10,13 +10,18 @@
 url=http://cloc.sourceforge.net/;
 license=('GPL')
 depends=('perl')
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/v$pkgver/$pkgname-$pkgver.pl)
-sha256sums=('fa3793b576895cde2acae26a49447bf0c55ab3f79bdacfb00a88fc1d255c2570')
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/v$pkgver/$pkgname-$pkgver.pl
+perl522.patch)
+sha256sums=('79edea7ea1f442b1632001e23418193ae4571810e60de8bd25e491036d60eb3d'
+'57e73b9b18376edc6c37426cb3cfca1e84ae49b4ede52e21a6ae2b8aa17b949b')
 
 package() {
   cd $srcdir
 
   install -D $pkgname-$pkgver.pl $pkgdir/usr/bin/$pkgname
+
+  # https://sourceforge.net/p/cloc/bugs/135/
+  patch -N -i perl522.patch $pkgdir/usr/bin/$pkgname
 }
 
 # vim:set ts=2 sw=2 et:

Added: perl522.patch
===
--- perl522.patch   (rev 0)
+++ perl522.patch   2015-06-28 19:22:29 UTC (rev 136054)
@@ -0,0 +1,70 @@
+--- /usr/bin/cloc  2015-06-29 01:53:16.0 +0800
 cloc-1.64.pl   2015-06-29 02:11:09.849082768 +0800
+@@ -1281,8 +1281,8 @@
+ $not_Filters_by_Language_Lang_LR = 1;
+ }
+ } else {
+-if (!defined(@{$Filters_by_Language{$Lang_L} }) or
+-!defined(@{$Filters_by_Language{$Lang_R} })) {
++if (!(@{$Filters_by_Language{$Lang_L} }) or
++!(@{$Filters_by_Language{$Lang_R} })) {
+ $not_Filters_by_Language_Lang_LR = 1;
+ }
+ }
+@@ -1618,7 +1618,7 @@
+ $Ignored{$file} = --exclude-lang=$Language{$file};
+ next;
+ }
+-my $Filters_by_Language_Language_file = !defined 
@{$Filters_by_Language{$Language{$file}} };
++my $Filters_by_Language_Language_file = 
!@{$Filters_by_Language{$Language{$file}} };
+ if ($Filters_by_Language_Language_file) {
+ if ($Language{$file} eq (unknown)) {
+ $Ignored{$file} = language unknown (#1);
+@@ -1759,7 +1759,7 @@
+ if ($PERL_516) {
+ next unless 
@{$rhaa_Filters_by_Language-{$1}};
+ } else {
+-next unless defined 
@{$rhaa_Filters_by_Language-{$1}};
++next unless @{$rhaa_Filters_by_Language-{$1}};
+ }
+ # above test necessary to avoid trying to sum reports
+ # of reports (which have no language breakdown).
+@@ -3259,7 +3259,7 @@
+ } # 1}}}
+ sub print_language_filters { # {{{1
+ my ($language,) = @_;
+-if (!defined @{$Filters_by_Language{$language}}) {
++if (!@{$Filters_by_Language{$language}}) {
+ warn Unknown language: $language\n;
+ warn Use --show-lang to list all defined languages.\n;
+ return;
+@@ -4623,7 +4623,7 @@
+ 
+   open (FILE, $file);
+   while (FILE) {
+-if (m/^\\begin{code}/) { close FILE; return 2; }
++if (m/^\\begin\{code}/) { close FILE; return 2; }
+ if (m/^\s/) { close FILE; return 1; }
+   }
+ 
+@@ -4652,9 +4652,9 @@
+ if (!s/^//) { s/.*//; }
+ } elsif ($literate == 2) {
+ if ($inlitblock) {
+-if (m/^\\end{code}/) { s/.*//; $inlitblock = 0; }
++if (m/^\\end\{code}/) { s/.*//; $inlitblock = 0; }
+ } elsif (!$inlitblock) {
+-if (m/^\\begin{code}/) { s/.*//; $inlitblock = 1; }
++if (m/^\\begin\{code}/) { s/.*//; $inlitblock = 1; }
+ else { s/.*//; }
+ }
+ }
+@@ -6582,7 +6582,7 @@
+ my $language = $rh_Language_by_Extension-{$ext};
+ next if defined $extension_collisions{$language};
+ next if $seen_it{$language};
+-if (!defined @{$rhaa_Filters_by_Language-{$language}}) {
++if (!@{$rhaa_Filters_by_Language-{$language}}) {
+ $OK = 0;
+ warn Missing language filter for $language\n;
+ }


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

2015-06-28 Thread Andreas Radke
Date: Sunday, June 28, 2015 @ 18:55:25
  Author: andyrtr
Revision: 241378

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

Added:
  ding-libs/repos/testing-i686/
  ding-libs/repos/testing-i686/PKGBUILD
(from rev 241377, ding-libs/trunk/PKGBUILD)
  ding-libs/repos/testing-x86_64/
  ding-libs/repos/testing-x86_64/PKGBUILD
(from rev 241377, ding-libs/trunk/PKGBUILD)

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

Copied: ding-libs/repos/testing-i686/PKGBUILD (from rev 241377, 
ding-libs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-28 16:55:25 UTC (rev 241378)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Mantas M. graw...@gmail.com
+
+pkgname=ding-libs
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='D is not GLib' utility libraries
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/sssd/;
+license=('GPL3' 'LGPL3')
+depends=('glibc')
+makedepends=('doxygen')
+checkdepends=('check')
+source=(https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
+sha1sums=('da27caf664d696b011924a799117fb39ef357653'
+  'SKIP')
+validpgpkeys=('7B54CAE8A03D66F3D70A5B516F5A90EB44FBC7C7') # Pavel Reichl 
prei...@redhat.com
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make all docs
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+} 

Copied: ding-libs/repos/testing-x86_64/PKGBUILD (from rev 241377, 
ding-libs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-28 16:55:25 UTC (rev 241378)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Mantas M. graw...@gmail.com
+
+pkgname=ding-libs
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='D is not GLib' utility libraries
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/sssd/;
+license=('GPL3' 'LGPL3')
+depends=('glibc')
+makedepends=('doxygen')
+checkdepends=('check')
+source=(https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
+sha1sums=('da27caf664d696b011924a799117fb39ef357653'
+  'SKIP')
+validpgpkeys=('7B54CAE8A03D66F3D70A5B516F5A90EB44FBC7C7') # Pavel Reichl 
prei...@redhat.com
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make all docs
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+} 


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

2015-06-28 Thread Andreas Radke
Date: Sunday, June 28, 2015 @ 18:55:16
  Author: andyrtr
Revision: 241377

upgpkg: ding-libs 0.5.0-1

upstream update 0.5.0

Modified:
  ding-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 16:51:12 UTC (rev 241376)
+++ PKGBUILD2015-06-28 16:55:16 UTC (rev 241377)
@@ -4,8 +4,8 @@
 # Contributor: Mantas M. graw...@gmail.com
 
 pkgname=ding-libs
-pkgver=0.4.0
-pkgrel=3
+pkgver=0.5.0
+pkgrel=1
 pkgdesc='D is not GLib' utility libraries
 arch=('i686' 'x86_64')
 url=https://fedorahosted.org/sssd/;
@@ -14,7 +14,7 @@
 makedepends=('doxygen')
 checkdepends=('check')
 
source=(https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
-sha1sums=('38d9ebb0e44dfb7a8d97c2f650a586260c8909f9'
+sha1sums=('da27caf664d696b011924a799117fb39ef357653'
   'SKIP')
 validpgpkeys=('7B54CAE8A03D66F3D70A5B516F5A90EB44FBC7C7') # Pavel Reichl 
prei...@redhat.com
 


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

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 20:58:36
  Author: jlichtblau
Revision: 136051

upgpkg: tilda 1.2.4-1 - new upstream release

Modified:
  tilda/trunk/PKGBUILD
  tilda/trunk/tilda.changelog

-+
 PKGBUILD|6 +++---
 tilda.changelog |   23 +--
 2 files changed, 16 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-28 18:00:13 UTC (rev 136050)
+++ PKGBUILD2015-06-28 18:58:36 UTC (rev 136051)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=tilda
-pkgver=1.2.2
+pkgver=1.2.4
 pkgrel=1
 pkgdesc=A Gtk based drop down terminal for Linux and Unix
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('vte290' 'confuse')
 changelog=$pkgname.changelog
 source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
-sha256sums=('855ab15423e3de8106975fab2185af4380caeb1bb4c2d0bc60b7674d29f0f4d7')
+sha256sums=('1f7b52c5d8cfd9038ad2e41fc633fce935f420fa657ed15e3942722c8570751e')
 
 build() {
   cd $pkgname-$pkgname-$pkgver

Modified: tilda.changelog
===
--- tilda.changelog 2015-06-28 18:00:13 UTC (rev 136050)
+++ tilda.changelog 2015-06-28 18:58:36 UTC (rev 136051)
@@ -1,22 +1,25 @@
-2014-10-31 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.4-1
+
+2014-10-31 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.2.2-1
 
-2014-10-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-10-17 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.2.1-1
 
-2014-10-16 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.2-1
 
-2014-09-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-09-26 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.1.13-1
 
-2014-06-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-06-05 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.1.12-1
 
-2013-12-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-12-14 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.1.10-1
 
-2013-11-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-11-17 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.1.8-1
 
 2013-08-22 Maxime Gauduin aluc...@gmail.com
@@ -23,13 +26,13 @@
   * tilda 1.1.7-3
   * Fixes FS#36542, FS#36516 and FS#36543
 
-2013-08-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-08-08 Jaroslav Lichtblau svetlemo...@archlinux.org
   * tilda 1.1.7-1
 
-2012-06-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2012-06-02 Jaroslav Lichtblau svetlemo...@archlinux.org
   * FS#29754 fixed
 
-2011-08-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2011-08-28 Jaroslav Lichtblau svetlemo...@archlinux.org
   * FS#25762 fixed
 
 2008-04-29 Mateusz Herych heni...@gmail.com


[arch-commits] Commit in tilda/repos/community-x86_64 (4 files)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 20:58:51
  Author: jlichtblau
Revision: 136052

archrelease: copy trunk to community-x86_64

Added:
  tilda/repos/community-x86_64/PKGBUILD
(from rev 136051, tilda/trunk/PKGBUILD)
  tilda/repos/community-x86_64/tilda.changelog
(from rev 136051, tilda/trunk/tilda.changelog)
Deleted:
  tilda/repos/community-x86_64/PKGBUILD
  tilda/repos/community-x86_64/tilda.changelog

-+
 PKGBUILD|   61 ++---
 tilda.changelog |   89 +++---
 2 files changed, 76 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 18:58:36 UTC (rev 136051)
+++ PKGBUILD2015-06-28 18:58:51 UTC (rev 136052)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=tilda
-pkgver=1.2.2
-pkgrel=1
-pkgdesc=A Gtk based drop down terminal for Linux and Unix
-arch=('i686' 'x86_64')
-url=https://github.com/lanoxx/tilda;
-license=('GPL')
-depends=('vte290' 'confuse')
-changelog=$pkgname.changelog
-source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
-sha256sums=('13d482eb18a59266118146d0d3212d761290da608b8651aa3a2bfdf3f8ca0fb5')
-
-build() {
-  cd $pkgname-$pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}
-sha256sums=('855ab15423e3de8106975fab2185af4380caeb1bb4c2d0bc60b7674d29f0f4d7')

Copied: tilda/repos/community-x86_64/PKGBUILD (from rev 136051, 
tilda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 18:58:51 UTC (rev 136052)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=tilda
+pkgver=1.2.4
+pkgrel=1
+pkgdesc=A Gtk based drop down terminal for Linux and Unix
+arch=('i686' 'x86_64')
+url=https://github.com/lanoxx/tilda;
+license=('GPL')
+depends=('vte290' 'confuse')
+changelog=$pkgname.changelog
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha256sums=('1f7b52c5d8cfd9038ad2e41fc633fce935f420fa657ed15e3942722c8570751e')
+
+build() {
+  cd $pkgname-$pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: tilda.changelog
===
--- tilda.changelog 2015-06-28 18:58:36 UTC (rev 136051)
+++ tilda.changelog 2015-06-28 18:58:51 UTC (rev 136052)
@@ -1,43 +0,0 @@
-2014-10-31 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.2.2-1
-
-2014-10-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.2.1-1
-
-2014-10-16 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.2-1
-
-2014-09-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.13-1
-
-2014-06-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.12-1
-
-2013-12-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.10-1
-
-2013-11-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.8-1
-
-2013-08-22 Maxime Gauduin aluc...@gmail.com
-  * tilda 1.1.7-3
-  * Fixes FS#36542, FS#36516 and FS#36543
-
-2013-08-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.7-1
-
-2012-06-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * FS#29754 fixed
-
-2011-08-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * FS#25762 fixed
-
-2008-04-29 Mateusz Herych heni...@gmail.com
-  * Updated for x86_64 - 0.9.6
-
-2008-04-28 Douglas Soares de Andrade d...@aur.archlinux.org
-  * Updated for i686 - 0.9.6
-
-2007-12-30 Douglas Soares de Andrade d...@aur.archlinux.org
-  * Updated to newer version - 0.9.5
-

Copied: tilda/repos/community-x86_64/tilda.changelog (from rev 136051, 
tilda/trunk/tilda.changelog)
===
--- tilda.changelog (rev 0)
+++ tilda.changelog 2015-06-28 18:58:51 UTC (rev 136052)
@@ -0,0 +1,46 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.4-1
+
+2014-10-31 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.2-1
+
+2014-10-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.1-1
+
+2014-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2-1
+
+2014-09-26 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.1.13-1
+
+2014-06-05 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.1.12-1
+
+2013-12-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 

[arch-commits] Commit in tilda/repos/community-i686 (4 files)

2015-06-28 Thread Jaroslav Lichtblau
Date: Sunday, June 28, 2015 @ 21:07:29
  Author: jlichtblau
Revision: 136053

archrelease: copy trunk to community-i686

Added:
  tilda/repos/community-i686/PKGBUILD
(from rev 136052, tilda/trunk/PKGBUILD)
  tilda/repos/community-i686/tilda.changelog
(from rev 136052, tilda/trunk/tilda.changelog)
Deleted:
  tilda/repos/community-i686/PKGBUILD
  tilda/repos/community-i686/tilda.changelog

-+
 PKGBUILD|   60 ++--
 tilda.changelog |   89 +++---
 2 files changed, 76 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-28 18:58:51 UTC (rev 136052)
+++ PKGBUILD2015-06-28 19:07:29 UTC (rev 136053)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=tilda
-pkgver=1.2.2
-pkgrel=1
-pkgdesc=A Gtk based drop down terminal for Linux and Unix
-arch=('i686' 'x86_64')
-url=https://github.com/lanoxx/tilda;
-license=('GPL')
-depends=('vte290' 'confuse')
-changelog=$pkgname.changelog
-source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
-sha256sums=('855ab15423e3de8106975fab2185af4380caeb1bb4c2d0bc60b7674d29f0f4d7')
-
-build() {
-  cd $pkgname-$pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: tilda/repos/community-i686/PKGBUILD (from rev 136052, 
tilda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-28 19:07:29 UTC (rev 136053)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=tilda
+pkgver=1.2.4
+pkgrel=1
+pkgdesc=A Gtk based drop down terminal for Linux and Unix
+arch=('i686' 'x86_64')
+url=https://github.com/lanoxx/tilda;
+license=('GPL')
+depends=('vte290' 'confuse')
+changelog=$pkgname.changelog
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha256sums=('1f7b52c5d8cfd9038ad2e41fc633fce935f420fa657ed15e3942722c8570751e')
+
+build() {
+  cd $pkgname-$pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: tilda.changelog
===
--- tilda.changelog 2015-06-28 18:58:51 UTC (rev 136052)
+++ tilda.changelog 2015-06-28 19:07:29 UTC (rev 136053)
@@ -1,43 +0,0 @@
-2014-10-31 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.2.2-1
-
-2014-10-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.2.1-1
-
-2014-10-16 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.2-1
-
-2014-09-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.13-1
-
-2014-06-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.12-1
-
-2013-12-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.10-1
-
-2013-11-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.8-1
-
-2013-08-22 Maxime Gauduin aluc...@gmail.com
-  * tilda 1.1.7-3
-  * Fixes FS#36542, FS#36516 and FS#36543
-
-2013-08-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * tilda 1.1.7-1
-
-2012-06-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * FS#29754 fixed
-
-2011-08-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-  * FS#25762 fixed
-
-2008-04-29 Mateusz Herych heni...@gmail.com
-  * Updated for x86_64 - 0.9.6
-
-2008-04-28 Douglas Soares de Andrade d...@aur.archlinux.org
-  * Updated for i686 - 0.9.6
-
-2007-12-30 Douglas Soares de Andrade d...@aur.archlinux.org
-  * Updated to newer version - 0.9.5
-

Copied: tilda/repos/community-i686/tilda.changelog (from rev 136052, 
tilda/trunk/tilda.changelog)
===
--- tilda.changelog (rev 0)
+++ tilda.changelog 2015-06-28 19:07:29 UTC (rev 136053)
@@ -0,0 +1,46 @@
+2015-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.4-1
+
+2014-10-31 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.2-1
+
+2014-10-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2.1-1
+
+2014-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.2-1
+
+2014-09-26 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.1.13-1
+
+2014-06-05 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.1.12-1
+
+2013-12-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.1.10-1
+
+2013-11-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+  * tilda 1.1.8-1
+

  1   2   >