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

2015-02-14 Thread Allan McRae
Date: Sunday, February 15, 2015 @ 06:00:01
  Author: allan
Revision: 231404

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

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 231403, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 231403, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 231403, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 231403, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   36 
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   36 
 testing-x86_64/gmp.install |   20 
 4 files changed, 112 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 231403, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=6.0.0
+pkgrel=2
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}a.tar.xz{,.sig})
+md5sums=('1e6da4e434553d2811437aa42c7f7c76'
+ 'SKIP')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 231403, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 231403, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=6.0.0
+pkgrel=2
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}a.tar.xz{,.sig})
+md5sums=('1e6da4e434553d2811437aa42c7f7c76'
+ 'SKIP')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 231403, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}


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

2015-02-14 Thread Allan McRae
Date: Sunday, February 15, 2015 @ 05:58:55
  Author: allan
Revision: 231403

upgpkg: gmp 6.0.0-2

build fat libraries - includes processor specific optimisation (FS#43027)

Modified:
  gmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 23:43:47 UTC (rev 231402)
+++ PKGBUILD2015-02-15 04:58:55 UTC (rev 231403)
@@ -4,7 +4,7 @@
 
 pkgname=gmp
 pkgver=6.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A free library for arbitrary precision arithmetic
 arch=('i686' 'x86_64')
 url=http://gmplib.org/;
@@ -11,7 +11,7 @@
 depends=('gcc-libs' 'sh')
 license=('LGPL3' 'GPL')
 install=gmp.install
-source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}a.tar.xz{,.sig})
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}a.tar.xz{,.sig})
 md5sums=('1e6da4e434553d2811437aa42c7f7c76'
  'SKIP')
 validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
@@ -20,7 +20,8 @@
   cd ${srcdir}/${pkgname}-${pkgver}
 
   ./configure --build=${CHOST} \
---prefix=/usr --enable-cxx
+--prefix=/usr \
+--enable-fat --enable-cxx
   make
 }
 


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

2015-02-14 Thread Sven-Hendrik Haase
Date: Sunday, February 15, 2015 @ 06:52:31
  Author: svenstaro
Revision: 127738

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

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

---+
 /PKGBUILD |   60 
 /love.install |   26 +
 community-i686/PKGBUILD   |   30 
 community-i686/love.install   |   13 
 community-x86_64/PKGBUILD |   30 
 community-x86_64/love.install |   13 
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-15 05:52:22 UTC (rev 127737)
+++ community-i686/PKGBUILD 2015-02-15 05:52:31 UTC (rev 127738)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Linus Sjögren thel...@unreliablepollution.net
-# Contributor: Eric Forgeot  http://anamnese.online.fr , dreeze
-pkgname=love
-pkgver=0.9.1
-pkgrel=1
-pkgdesc=An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences
-arch=(i686 x86_64)
-url=http://love2d.org/;
-license=('zlib')
-depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
-install=love.install
-source=(https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz;)
-md5sums=('3a4b6b98a8c6e85ddb217d58b2e05e4d')
-
-build() {
-  cd $srcdir/love-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/love-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm0644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: love/repos/community-i686/PKGBUILD (from rev 127737, 
love/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-15 05:52:31 UTC (rev 127738)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Linus Sjögren thel...@unreliablepollution.net
+# Contributor: Eric Forgeot  http://anamnese.online.fr , dreeze
+pkgname=love
+pkgver=0.9.2
+pkgrel=1
+pkgdesc=An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences
+arch=(i686 x86_64)
+url=http://love2d.org/;
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
+install=love.install
+source=(https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz;)
+md5sums=('9b84711bc5842d3cc985a2062da437ad')
+
+build() {
+  cd $srcdir/love-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/love-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm0644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/love.install
===
--- community-i686/love.install 2015-02-15 05:52:22 UTC (rev 127737)
+++ community-i686/love.install 2015-02-15 05:52:31 UTC (rev 127738)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_remove() {
-  post_install 
-}
-
-post_upgrade() {
-  post_install
-}

Copied: love/repos/community-i686/love.install (from rev 127737, 
love/trunk/love.install)
===
--- community-i686/love.install (rev 0)
+++ community-i686/love.install 2015-02-15 05:52:31 UTC (rev 127738)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_remove() {
+  post_install 
+}
+
+post_upgrade() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-15 05:52:22 UTC (rev 127737)
+++ community-x86_64/PKGBUILD   2015-02-15 05:52:31 UTC (rev 127738)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: 

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

2015-02-14 Thread Sven-Hendrik Haase
Date: Sunday, February 15, 2015 @ 06:52:22
  Author: svenstaro
Revision: 127737

upgpkg: love 0.9.2-1

upstream release 0.9.2

Modified:
  love/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-15 00:29:01 UTC (rev 127736)
+++ PKGBUILD2015-02-15 05:52:22 UTC (rev 127737)
@@ -2,7 +2,7 @@
 # Contributor: Linus Sjögren thel...@unreliablepollution.net
 # Contributor: Eric Forgeot  http://anamnese.online.fr , dreeze
 pkgname=love
-pkgver=0.9.1
+pkgver=0.9.2
 pkgrel=1
 pkgdesc=An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
 install=love.install
 
source=(https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz;)
-md5sums=('3a4b6b98a8c6e85ddb217d58b2e05e4d')
+md5sums=('9b84711bc5842d3cc985a2062da437ad')
 
 build() {
   cd $srcdir/love-$pkgver


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

2015-02-14 Thread Guillaume Alaux
Date: Saturday, February 14, 2015 @ 12:19:10
  Author: guillaume
Revision: 231389

Report latest changes from tomcat7/8

- Create 'tomcat' user throught systemd
- Do not remove 'tomcat' user after package removal
- Fix /var/tmp/tomcat6 rights

Added:
  tomcat6/trunk/systemd_sysusers.d_tomcat6.conf
Modified:
  tomcat6/trunk/PKGBUILD
  tomcat6/trunk/tomcat6.install

-+
 PKGBUILD|   13 ++---
 systemd_sysusers.d_tomcat6.conf |1 +
 tomcat6.install |   24 
 3 files changed, 15 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 06:06:25 UTC (rev 231388)
+++ PKGBUILD2015-02-14 11:19:10 UTC (rev 231389)
@@ -1,7 +1,7 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=tomcat6
 pkgver=6.0.43
-pkgrel=1
+pkgrel=2
 pkgdesc='Open source implementation of the Java Servlet 2.5 and JavaServer 
Pages 2.1 technologies'
 arch=('any')
 url='http://tomcat.apache.org/'
@@ -18,8 +18,8 @@
 install=${pkgname}.install
 
source=(http://archive.apache.org/dist/tomcat/tomcat-6/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
 systemd_${pkgname}.service
-systemd_tmpfiles.d_${pkgname}.conf
-${pkgname}.install)
+systemd_sysusers.d_${pkgname}.conf
+systemd_tmpfiles.d_${pkgname}.conf)
 
 sha256sums=('8952239e20856714fd3ae0ae88aa57e69f50c196091c39ec033906109f67b068'
 'df31fc3e41164bc7888516eebadb6f38fbbfe5882b8489928f8944237a3942a1'
@@ -61,6 +61,7 @@
   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
@@ -70,6 +71,12 @@
 
   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 ${srcdir}/systemd_tmpfiles.d_${pkgname}.conf \
  ${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf
 }
+sha256sums=('8952239e20856714fd3ae0ae88aa57e69f50c196091c39ec033906109f67b068'
+'df31fc3e41164bc7888516eebadb6f38fbbfe5882b8489928f8944237a3942a1'
+'59307049dab88a7adeb3b0a8e5c77a6e5950b48482be09650d899222c521b589'
+'07b9ff0686134b3256cda8b5253b91ba23f54b547640729e2382c3c12067ea80')

Added: systemd_sysusers.d_tomcat6.conf
===
--- systemd_sysusers.d_tomcat6.conf (rev 0)
+++ systemd_sysusers.d_tomcat6.conf 2015-02-14 11:19:10 UTC (rev 231389)
@@ -0,0 +1 @@
+u tomcat 66 Tomcat 6 user /usr/share/tomcat6

Modified: tomcat6.install
===
--- tomcat6.install 2015-02-14 06:06:25 UTC (rev 231388)
+++ tomcat6.install 2015-02-14 11:19:10 UTC (rev 231389)
@@ -1,16 +1,6 @@
-_pkgname='tomcat6'
-_gid_tomcat_name='tomcat'
-_gid_tomcat=66
-_uid_tomcat_name='tomcat'
-_uid_tomcat=66
-
 post_install() {
-  if ! getent group ${_gid_tomcat_name} /dev/null 21; then
-groupadd -g ${_gid_tomcat} ${_gid_tomcat_name}
-  fi
-  if ! getent passwd ${_uid_tomcat_name} /dev/null 21; then
-useradd  -u ${_uid_tomcat} -g ${_gid_tomcat_name} -d 
/usr/share/${_pkgname} -s /bin/false ${_uid_tomcat_name}
-  fi
+systemd-sysusers tomcat6.conf
+systemd-tmpfiles --create tomcat6.conf
 
   if [ -f lib/modules/$(uname -r)/kernel/security/capability.ko ]; then
 echo 'It appears that your current kernel has linux security'
@@ -24,12 +14,6 @@
 }
 
 pre_remove() {
-  if getent passwd ${_uid_tomcat_name}  /dev/null 21; then
-userdel ${_uid_tomcat_name}
-  fi
-  if getent group ${_gid_tomcat_name}  /dev/null 21; then
-groupdel ${_gid_tomcat_name}
-  fi
-
-  echo To fully clean Tomcat's file, consider removing directories 
/var/{lib,tmp,log}/${_pkgname}
+  echo Leftover files may reside in /var/{lib,tmp,log}/tomcat6
+  echo If you remove them, you may also want to remove user and group 
'tomcat'
 }


[arch-commits] Commit in tomcat6/repos/extra-any (9 files)

2015-02-14 Thread Guillaume Alaux
Date: Saturday, February 14, 2015 @ 12:22:12
  Author: guillaume
Revision: 231390

archrelease: copy trunk to extra-any

Added:
  tomcat6/repos/extra-any/PKGBUILD
(from rev 231389, tomcat6/trunk/PKGBUILD)
  tomcat6/repos/extra-any/systemd_sysusers.d_tomcat6.conf
(from rev 231389, tomcat6/trunk/systemd_sysusers.d_tomcat6.conf)
  tomcat6/repos/extra-any/systemd_tmpfiles.d_tomcat6.conf
(from rev 231389, tomcat6/trunk/systemd_tmpfiles.d_tomcat6.conf)
  tomcat6/repos/extra-any/systemd_tomcat6.service
(from rev 231389, tomcat6/trunk/systemd_tomcat6.service)
  tomcat6/repos/extra-any/tomcat6.install
(from rev 231389, tomcat6/trunk/tomcat6.install)
Deleted:
  tomcat6/repos/extra-any/PKGBUILD
  tomcat6/repos/extra-any/systemd_tmpfiles.d_tomcat6.conf
  tomcat6/repos/extra-any/systemd_tomcat6.service
  tomcat6/repos/extra-any/tomcat6.install

-+
 PKGBUILD|  157 +++---
 systemd_sysusers.d_tomcat6.conf |1 
 systemd_tmpfiles.d_tomcat6.conf |6 -
 systemd_tomcat6.service |   66 +++
 tomcat6.install |   54 -
 5 files changed, 138 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-14 11:19:10 UTC (rev 231389)
+++ PKGBUILD2015-02-14 11:22:12 UTC (rev 231390)
@@ -1,75 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=tomcat6
-pkgver=6.0.43
-pkgrel=1
-pkgdesc='Open source implementation of the Java Servlet 2.5 and JavaServer 
Pages 2.1 technologies'
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-depends=('java-runtime=5' '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-6/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
-systemd_${pkgname}.service
-systemd_tmpfiles.d_${pkgname}.conf
-${pkgname}.install)
-
-sha256sums=('8952239e20856714fd3ae0ae88aa57e69f50c196091c39ec033906109f67b068'
-'df31fc3e41164bc7888516eebadb6f38fbbfe5882b8489928f8944237a3942a1'
-'07b9ff0686134b3256cda8b5253b91ba23f54b547640729e2382c3c12067ea80'
-'16046fc93a569cb817994ac251bbf464659286c39c2d9a5a2f52030d94a50dd0')
-
-_gid_log=19
-_gid_tomcat=66
-_uid_tomcat=66
-
-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}
-  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_tmpfiles.d_${pkgname}.conf \
- ${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf
-}

Copied: tomcat6/repos/extra-any/PKGBUILD (from rev 231389, 
tomcat6/trunk/PKGBUILD)

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

2015-02-14 Thread Gaetan Bisson
Date: Saturday, February 14, 2015 @ 18:10:13
  Author: bisson
Revision: 231391

upstream update

Modified:
  dcraw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 11:22:12 UTC (rev 231390)
+++ PKGBUILD2015-02-14 17:10:13 UTC (rev 231391)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Kieslich tob...@justdreams.de
 
 pkgname=dcraw
-pkgver=9.22
+pkgver=9.23.0
 pkgrel=1
 pkgdesc='Decodes any raw image from any digital camera'
 url='http://www.cybercom.net/~dcoffin/dcraw/'
@@ -12,7 +12,7 @@
 license=('custom')
 depends=('lcms2' 'jasper')
 
source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('aa012da4c7c295146cee22c3e3869b069e55d164')
+sha1sums=('6821b898e7e0a23c010937adcc50097e51bdf9d7')
 
 build() {
cd ${srcdir}/${pkgname}


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 18:41:36
  Author: jleclanche
Revision: 127695

liblxqt: Fix missing qt5-tools dependency

Modified:
  liblxqt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 17:33:09 UTC (rev 127694)
+++ PKGBUILD2015-02-14 17:41:36 UTC (rev 127695)
@@ -3,13 +3,13 @@
 
 pkgname=liblxqt
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Common base library for LXQt components.
 arch=(i686 x86_64)
 url=http://lxqt.org;
 license=(GPL2)
 depends=(kwindowsystem libqtxdg)
-makedepends=(cmake)
+makedepends=(cmake qt5-tools)
 source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
 sha256sums=(b4f0941bcb8839163aed5c332a26d05650a8d75be241cb39c702f9bd15fe4d52)
 


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:02:38
  Author: jleclanche
Revision: 127700

lxqt-qtplugin: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-qtplugin/
  lxqt-qtplugin/repos/
  lxqt-qtplugin/trunk/
  lxqt-qtplugin/trunk/PKGBUILD

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

Added: lxqt-qtplugin/trunk/PKGBUILD
===
--- lxqt-qtplugin/trunk/PKGBUILD(rev 0)
+++ lxqt-qtplugin/trunk/PKGBUILD2015-02-14 19:02:38 UTC (rev 127700)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-qtplugin
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt platform integration for Qt
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake liblxqt qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(7bc715d55ccf7b4356dc89b23f441b79b2a79a523efdb67bc4a81acaa86243c5)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


[arch-commits] Commit in pari/trunk (PKGBUILD err_handle.patch)

2015-02-14 Thread Gaetan Bisson
Date: Saturday, February 14, 2015 @ 18:19:15
  Author: bisson
Revision: 127692

add err_handle patch for sage-5.6

Added:
  pari/trunk/err_handle.patch
Modified:
  pari/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++--
 err_handle.patch |  105 +
 2 files changed, 111 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 06:19:35 UTC (rev 127691)
+++ PKGBUILD2015-02-14 17:19:15 UTC (rev 127692)
@@ -3,7 +3,7 @@
 
 pkgname=pari
 pkgver=2.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Computer algebra system designed for fast computations in number 
theory'
 url='http://pari.math.u-bordeaux.fr/'
 license=('GPL')
@@ -11,13 +11,15 @@
 depends=('gmp' 'readline' 'libx11')
 makedepends=('perl' 'texlive-core')
 optdepends=('perl: gphelp, tex2mail')
-validpgpkeys=('42028EA404A2E9D80AC453148F0E7C2B4522E387')
-source=(http://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha1sums=('27ef49c39860055ff97608bc323bff2afda1aa51' 'SKIP')
+source=(http://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${pkgver}.tar.gz;
+'err_handle.patch')
+sha1sums=('27ef49c39860055ff97608bc323bff2afda1aa51'
+  '182066ab765eddb0b7fd98b441c158304545f5ec')
 
 prepare() {
cd ${srcdir}/${pkgname}-${pkgver}
sed 's/\$addlib64//g' -i config/get_libpth
+   patch -p1 -i ../err_handle.patch # sage-5.6 uses this¸ from upstream 
trunk
 }
 
 build() {

Added: err_handle.patch
===
--- err_handle.patch(rev 0)
+++ err_handle.patch2015-02-14 17:19:15 UTC (rev 127692)
@@ -0,0 +1,105 @@
+Add cb_pari_err_handle() callback
+
+Backported from upstream commits
+e9e659dc9ecb5ca6a8296c7922528a4ecbb89cb0
+26a7ae0f42918407febe9901ded41faf26ef43a6
+
+diff -ru src/src/headers/paricom.h b/src/headers/paricom.h
+--- src/src/headers/paricom.h  2014-03-25 09:59:21.0 +0100
 b/src/headers/paricom.h2015-01-13 19:41:47.430885048 +0100
+@@ -81,6 +81,7 @@
+ extern int  (*cb_pari_whatnow)(PariOUT *out, const char *, int);
+ extern void (*cb_pari_sigint)(void);
+ extern int (*cb_pari_handle_exception)(long);
++extern int (*cb_pari_err_handle)(GEN);
+ extern void (*cb_pari_pre_recover)(long);
+ extern void (*cb_pari_err_recover)(long);
+ extern const char *pari_library_path;
+diff -ru src/src/language/init.c b/src/language/init.c
+--- src/src/language/init.c2015-01-13 19:40:30.643622993 +0100
 b/src/language/init.c  2015-01-13 19:41:47.431884833 +0100
+@@ -87,6 +87,7 @@
+ 
+ void (*cb_pari_ask_confirm)(const char *);
+ int  (*cb_pari_handle_exception)(long);
++int  (*cb_pari_err_handle)(GEN);
+ int  (*cb_pari_whatnow)(PariOUT *out, const char *, int);
+ void (*cb_pari_sigint)(void);
+ void (*cb_pari_pre_recover)(long);
+@@ -732,6 +733,8 @@
+ static void
+ dflt_err_recover(long errnum) { (void) errnum; pari_exit(); }
+ 
++static int pari_err_display(GEN err);
++
+ /* initialize PARI data. Initialize [new|old]fun to NULL for default set. */
+ void
+ pari_init_opts(size_t parisize, ulong maxprime, ulong init_opts)
+@@ -739,6 +742,8 @@
+   ulong u;
+ 
+   cb_pari_whatnow = NULL;
++  cb_pari_handle_exception = NULL;
++  cb_pari_err_handle = pari_err_display;
+   cb_pari_pre_recover = NULL;
+   cb_pari_sigint = dflt_sigint_fun;
+   if (init_optsINIT_JMPm) cb_pari_err_recover = dflt_err_recover;
+@@ -887,9 +892,6 @@
+   evalstate_reset();
+   killallfiles();
+   pari_init_errcatch();
+-  out_puts(pariErr, \n);
+-  pariErr-flush();
+-
+   cb_pari_err_recover(numerr);
+ }
+ 
+@@ -1266,21 +1268,22 @@
+   return NULL; /*NOT REACHED*/
+ }
+ 
+-static void
++static int
+ pari_err_display(GEN err)
+ {
+   long numerr=err_get_num(err);
++  err_init();
+   if (numerr==e_SYNTAX)
+   {
+ const char *msg = GSTR(gel(err,2));
+ const char *s = (const char *) gmael(err,3,1);
+ const char *entry = (const char *) gmael(err,3,2);
+ print_errcontext(pariErr, msg, s, entry);
+-return;
+   }
+   else
+   {
+ char *s = pari_err2str(err);
++closure_err(0);
+ err_init_msg(numerr, e_USER);
+ pariErr-puts(s);
+ if (numerr==e_NOTFUNC)
+@@ -1295,6 +1298,8 @@
+ }
+ pari_free(s);
+   }
++  out_term_color(pariErr, c_NONE);
++  pariErr-flush(); return 0;
+ }
+ 
+ void
+@@ -1315,12 +1320,9 @@
+   global_err_data = E;
+   if (*iferr_env) longjmp(*iferr_env, numerr);
+   mt_err_recover(numerr);
+-  err_init();
+-  if (numerr != e_SYNTAX) closure_err(0);
+-  pari_err_display(E);
+-  out_term_color(pariErr, c_NONE);
+   va_end(ap);
+-  pariErr-flush();
++  if (cb_pari_err_handle 
++  cb_pari_err_handle(E)) return;
+   if (cb_pari_handle_exception 
+   cb_pari_handle_exception(numerr)) return;
+   err_recover(numerr);


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 19:31:10
  Author: jleclanche
Revision: 127698

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

Added:
  liblxqt-mount/repos/community-i686/
  liblxqt-mount/repos/community-i686/PKGBUILD
(from rev 127697, liblxqt-mount/trunk/PKGBUILD)
  liblxqt-mount/repos/community-x86_64/
  liblxqt-mount/repos/community-x86_64/PKGBUILD
(from rev 127697, liblxqt-mount/trunk/PKGBUILD)

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

Copied: liblxqt-mount/repos/community-i686/PKGBUILD (from rev 127697, 
liblxqt-mount/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 18:31:10 UTC (rev 127698)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt-mount
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt library used to manage removable devices.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: liblxqt-mount/repos/community-x86_64/PKGBUILD (from rev 127697, 
liblxqt-mount/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 18:31:10 UTC (rev 127698)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt-mount
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt library used to manage removable devices.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:16:02
  Author: jleclanche
Revision: 127701

lxqt-globalkeys: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-globalkeys/
  lxqt-globalkeys/repos/
  lxqt-globalkeys/trunk/
  lxqt-globalkeys/trunk/PKGBUILD

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

Added: lxqt-globalkeys/trunk/PKGBUILD
===
--- lxqt-globalkeys/trunk/PKGBUILD  (rev 0)
+++ lxqt-globalkeys/trunk/PKGBUILD  2015-02-14 19:16:02 UTC (rev 127701)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-globalkeys
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt daemon and library for global keyboard shortcuts registration.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(45292e125e8cc2f18afa7d358366ade670c8d73871caf04f4536a4be985d9f12)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 18:33:09
  Author: jleclanche
Revision: 127694

Upstream release 0.9 (Moved from AUR)

Added:
  liblxqt/
  liblxqt/repos/
  liblxqt/trunk/
  liblxqt/trunk/PKGBUILD

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

Added: liblxqt/trunk/PKGBUILD
===
--- liblxqt/trunk/PKGBUILD  (rev 0)
+++ liblxqt/trunk/PKGBUILD  2015-02-14 17:33:09 UTC (rev 127694)
@@ -0,0 +1,29 @@
+# $
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=Common base library for LXQt components.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(kwindowsystem libqtxdg)
+makedepends=(cmake)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(b4f0941bcb8839163aed5c332a26d05650a8d75be241cb39c702f9bd15fe4d52)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 19:30:37
  Author: jleclanche
Revision: 127697

Upstream release 0.9 (Moved from AUR)

Added:
  liblxqt-mount/
  liblxqt-mount/repos/
  liblxqt-mount/trunk/
  liblxqt-mount/trunk/PKGBUILD

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

Added: liblxqt-mount/trunk/PKGBUILD
===
--- liblxqt-mount/trunk/PKGBUILD(rev 0)
+++ liblxqt-mount/trunk/PKGBUILD2015-02-14 18:30:37 UTC (rev 127697)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt-mount
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt library used to manage removable devices.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Gaetan Bisson
Date: Saturday, February 14, 2015 @ 18:11:36
  Author: bisson
Revision: 231392

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-14 17:10:13 UTC (rev 231391)
+++ extra-i686/PKGBUILD 2015-02-14 17:11:36 UTC (rev 231392)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-
-pkgname=dcraw
-pkgver=9.22
-pkgrel=1
-pkgdesc='Decodes any raw image from any digital camera'
-url='http://www.cybercom.net/~dcoffin/dcraw/'
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('lcms2' 'jasper')
-source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('aa012da4c7c295146cee22c3e3869b069e55d164')
-
-build() {
-   cd ${srcdir}/${pkgname}
-   gcc ${CFLAGS} ${LDFLAGS} \
-   -o dcraw dcraw.c \
-   -lm -ljasper -ljpeg -llcms2 \
-   -DLOCALEDIR=\/usr/share/locale/\
-}
-
-package() {
-   cd ${srcdir}/${pkgname}
-
-   install -Dm755 dcraw ${pkgdir}/usr/bin/dcraw
-   install -Dm644 dcraw.1 ${pkgdir}/usr/share/man/man1/dcraw.1
-   
-   for i in dcraw_*.1; do j=${i#dcraw_}; k=${j%.1}
-   install -Dm644 $i ${pkgdir}/usr/share/man/$k/man1/dcraw.1
-   done
-
-   for i in dcraw_*.po; do j=${i#dcraw_}; k=${j%.po}
-   install -d ${pkgdir}/usr/share/locale/$k/LC_MESSAGES
-   msgfmt -o ${pkgdir}/usr/share/locale/$k/LC_MESSAGES/dcraw.mo 
$i
-   done
-
-   install -d ${pkgdir}/usr/share/licenses/${pkgname}
-   head -25 dcraw.c  ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-}

Copied: dcraw/repos/extra-i686/PKGBUILD (from rev 231391, dcraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-14 17:11:36 UTC (rev 231392)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+
+pkgname=dcraw
+pkgver=9.23.0
+pkgrel=1
+pkgdesc='Decodes any raw image from any digital camera'
+url='http://www.cybercom.net/~dcoffin/dcraw/'
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('lcms2' 'jasper')
+source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('6821b898e7e0a23c010937adcc50097e51bdf9d7')
+
+build() {
+   cd ${srcdir}/${pkgname}
+   gcc ${CFLAGS} ${LDFLAGS} \
+   -o dcraw dcraw.c \
+   -lm -ljasper -ljpeg -llcms2 \
+   -DLOCALEDIR=\/usr/share/locale/\
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm755 dcraw ${pkgdir}/usr/bin/dcraw
+   install -Dm644 dcraw.1 ${pkgdir}/usr/share/man/man1/dcraw.1
+   
+   for i in dcraw_*.1; do j=${i#dcraw_}; k=${j%.1}
+   install -Dm644 $i ${pkgdir}/usr/share/man/$k/man1/dcraw.1
+   done
+
+   for i in dcraw_*.po; do j=${i#dcraw_}; k=${j%.po}
+   install -d ${pkgdir}/usr/share/locale/$k/LC_MESSAGES
+   msgfmt -o ${pkgdir}/usr/share/locale/$k/LC_MESSAGES/dcraw.mo 
$i
+   done
+
+   install -d ${pkgdir}/usr/share/licenses/${pkgname}
+   head -25 dcraw.c  ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-14 17:10:13 UTC (rev 231391)
+++ extra-x86_64/PKGBUILD   2015-02-14 17:11:36 UTC (rev 231392)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-
-pkgname=dcraw
-pkgver=9.22
-pkgrel=1
-pkgdesc='Decodes any raw image from any digital camera'
-url='http://www.cybercom.net/~dcoffin/dcraw/'
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('lcms2' 'jasper')
-source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('aa012da4c7c295146cee22c3e3869b069e55d164')
-
-build() {
-   cd ${srcdir}/${pkgname}
-   gcc ${CFLAGS} ${LDFLAGS} \
-   -o dcraw dcraw.c \
-   -lm -ljasper -ljpeg -llcms2 \
-   -DLOCALEDIR=\/usr/share/locale/\
-}
-
-package() {
-   

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

2015-02-14 Thread Gaetan Bisson
Date: Saturday, February 14, 2015 @ 18:19:37
  Author: bisson
Revision: 127693

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

Added:
  pari/repos/community-staging-i686/
  pari/repos/community-staging-i686/PKGBUILD
(from rev 127692, pari/trunk/PKGBUILD)
  pari/repos/community-staging-i686/err_handle.patch
(from rev 127692, pari/trunk/err_handle.patch)
  pari/repos/community-staging-x86_64/
  pari/repos/community-staging-x86_64/PKGBUILD
(from rev 127692, pari/trunk/PKGBUILD)
  pari/repos/community-staging-x86_64/err_handle.patch
(from rev 127692, pari/trunk/err_handle.patch)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-i686/err_handle.patch   |  105 
 community-staging-x86_64/PKGBUILD |   45 
 community-staging-x86_64/err_handle.patch |  105 
 4 files changed, 300 insertions(+)

Copied: pari/repos/community-staging-i686/PKGBUILD (from rev 127692, 
pari/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-14 17:19:37 UTC (rev 127693)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=pari
+pkgver=2.7.2
+pkgrel=2
+pkgdesc='Computer algebra system designed for fast computations in number 
theory'
+url='http://pari.math.u-bordeaux.fr/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gmp' 'readline' 'libx11')
+makedepends=('perl' 'texlive-core')
+optdepends=('perl: gphelp, tex2mail')
+source=(http://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${pkgver}.tar.gz;
+'err_handle.patch')
+sha1sums=('27ef49c39860055ff97608bc323bff2afda1aa51'
+  '182066ab765eddb0b7fd98b441c158304545f5ec')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed 's/\$addlib64//g' -i config/get_libpth
+   patch -p1 -i ../err_handle.patch # sage-5.6 uses this¸ from upstream 
trunk
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./Configure \
+   --prefix=/usr \
+   --with-readline \
+   --mt=pthread \
+   --with-gmp \
+
+   make all
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make bench
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   ln -sf gp.1.gz ${pkgdir}/usr/share/man/man1/pari.1
+}

Copied: pari/repos/community-staging-i686/err_handle.patch (from rev 127692, 
pari/trunk/err_handle.patch)
===
--- community-staging-i686/err_handle.patch (rev 0)
+++ community-staging-i686/err_handle.patch 2015-02-14 17:19:37 UTC (rev 
127693)
@@ -0,0 +1,105 @@
+Add cb_pari_err_handle() callback
+
+Backported from upstream commits
+e9e659dc9ecb5ca6a8296c7922528a4ecbb89cb0
+26a7ae0f42918407febe9901ded41faf26ef43a6
+
+diff -ru src/src/headers/paricom.h b/src/headers/paricom.h
+--- src/src/headers/paricom.h  2014-03-25 09:59:21.0 +0100
 b/src/headers/paricom.h2015-01-13 19:41:47.430885048 +0100
+@@ -81,6 +81,7 @@
+ extern int  (*cb_pari_whatnow)(PariOUT *out, const char *, int);
+ extern void (*cb_pari_sigint)(void);
+ extern int (*cb_pari_handle_exception)(long);
++extern int (*cb_pari_err_handle)(GEN);
+ extern void (*cb_pari_pre_recover)(long);
+ extern void (*cb_pari_err_recover)(long);
+ extern const char *pari_library_path;
+diff -ru src/src/language/init.c b/src/language/init.c
+--- src/src/language/init.c2015-01-13 19:40:30.643622993 +0100
 b/src/language/init.c  2015-01-13 19:41:47.431884833 +0100
+@@ -87,6 +87,7 @@
+ 
+ void (*cb_pari_ask_confirm)(const char *);
+ int  (*cb_pari_handle_exception)(long);
++int  (*cb_pari_err_handle)(GEN);
+ int  (*cb_pari_whatnow)(PariOUT *out, const char *, int);
+ void (*cb_pari_sigint)(void);
+ void (*cb_pari_pre_recover)(long);
+@@ -732,6 +733,8 @@
+ static void
+ dflt_err_recover(long errnum) { (void) errnum; pari_exit(); }
+ 
++static int pari_err_display(GEN err);
++
+ /* initialize PARI data. Initialize [new|old]fun to NULL for default set. */
+ void
+ pari_init_opts(size_t parisize, ulong maxprime, ulong init_opts)
+@@ -739,6 +742,8 @@
+   ulong u;
+ 
+   cb_pari_whatnow = NULL;
++  cb_pari_handle_exception = NULL;
++  cb_pari_err_handle = pari_err_display;
+   cb_pari_pre_recover = NULL;
+   cb_pari_sigint = dflt_sigint_fun;
+   if (init_optsINIT_JMPm) cb_pari_err_recover = dflt_err_recover;
+@@ -887,9 +892,6 @@
+   evalstate_reset();
+   killallfiles();
+   pari_init_errcatch();
+-  out_puts(pariErr, \n);
+-  pariErr-flush();
+-
+   cb_pari_err_recover(numerr);
+ }
+ 
+@@ -1266,21 +1268,22 @@
+   return NULL; /*NOT REACHED*/
+ }
+ 
+-static void
++static int
+ pari_err_display(GEN err)
+ {
+   long 

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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 18:55:14
  Author: jleclanche
Revision: 127696

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

Added:
  liblxqt/repos/community-i686/
  liblxqt/repos/community-i686/PKGBUILD
(from rev 127695, liblxqt/trunk/PKGBUILD)
  liblxqt/repos/community-x86_64/
  liblxqt/repos/community-x86_64/PKGBUILD
(from rev 127695, liblxqt/trunk/PKGBUILD)

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

Copied: liblxqt/repos/community-i686/PKGBUILD (from rev 127695, 
liblxqt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 17:55:14 UTC (rev 127696)
@@ -0,0 +1,29 @@
+# $
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=Common base library for LXQt components.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(kwindowsystem libqtxdg)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(b4f0941bcb8839163aed5c332a26d05650a8d75be241cb39c702f9bd15fe4d52)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: liblxqt/repos/community-x86_64/PKGBUILD (from rev 127695, 
liblxqt/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 17:55:14 UTC (rev 127696)
@@ -0,0 +1,29 @@
+# $
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=Common base library for LXQt components.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(kwindowsystem libqtxdg)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(b4f0941bcb8839163aed5c332a26d05650a8d75be241cb39c702f9bd15fe4d52)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 19:59:27
  Author: jleclanche
Revision: 127699

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

Added:
  liblxqt-mount/repos/community-i686/PKGBUILD
(from rev 127698, liblxqt-mount/trunk/PKGBUILD)
  liblxqt-mount/repos/community-x86_64/PKGBUILD
(from rev 127698, liblxqt-mount/trunk/PKGBUILD)
Deleted:
  liblxqt-mount/repos/community-i686/PKGBUILD
  liblxqt-mount/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-14 18:31:10 UTC (rev 127698)
+++ community-i686/PKGBUILD 2015-02-14 18:59:27 UTC (rev 127699)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=liblxqt-mount
-pkgver=0.9.0
-pkgrel=2
-pkgdesc=LXQt library used to manage removable devices.
-arch=(i686 x86_64)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(qt5-base)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: liblxqt-mount/repos/community-i686/PKGBUILD (from rev 127698, 
liblxqt-mount/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 18:59:27 UTC (rev 127699)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt-mount
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt library used to manage removable devices.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-14 18:31:10 UTC (rev 127698)
+++ community-x86_64/PKGBUILD   2015-02-14 18:59:27 UTC (rev 127699)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche jer...@leclan.ch
-
-pkgname=liblxqt-mount
-pkgver=0.9.0
-pkgrel=2
-pkgdesc=LXQt library used to manage removable devices.
-arch=(i686 x86_64)
-url=http://lxqt.org;
-license=(GPL2)
-depends=(qt5-base)
-makedepends=(cmake qt5-tools)
-source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake $srcdir/$pkgname-$pkgver \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR=$pkgdir install
-}

Copied: liblxqt-mount/repos/community-x86_64/PKGBUILD (from rev 127698, 
liblxqt-mount/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 18:59:27 UTC (rev 127699)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=liblxqt-mount
+pkgver=0.9.0
+pkgrel=2
+pkgdesc=LXQt library used to manage removable devices.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c89ddce16a67831bf8975bc40f95729cb5069105b969f2c8abfb8ab0116dbf5d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:16:28
  Author: jleclanche
Revision: 127702

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

Added:
  lxqt-globalkeys/repos/community-i686/
  lxqt-globalkeys/repos/community-i686/PKGBUILD
(from rev 127701, lxqt-globalkeys/trunk/PKGBUILD)
  lxqt-globalkeys/repos/community-x86_64/
  lxqt-globalkeys/repos/community-x86_64/PKGBUILD
(from rev 127701, lxqt-globalkeys/trunk/PKGBUILD)

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

Copied: lxqt-globalkeys/repos/community-i686/PKGBUILD (from rev 127701, 
lxqt-globalkeys/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 19:16:28 UTC (rev 127702)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-globalkeys
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt daemon and library for global keyboard shortcuts registration.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(45292e125e8cc2f18afa7d358366ade670c8d73871caf04f4536a4be985d9f12)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-globalkeys/repos/community-x86_64/PKGBUILD (from rev 127701, 
lxqt-globalkeys/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 19:16:28 UTC (rev 127702)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-globalkeys
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt daemon and library for global keyboard shortcuts registration.
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(45292e125e8cc2f18afa7d358366ade670c8d73871caf04f4536a4be985d9f12)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:30:43
  Author: jleclanche
Revision: 127704

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

Added:
  libsysstat/repos/community-i686/
  libsysstat/repos/community-i686/PKGBUILD
(from rev 127703, libsysstat/trunk/PKGBUILD)
  libsysstat/repos/community-x86_64/
  libsysstat/repos/community-x86_64/PKGBUILD
(from rev 127703, libsysstat/trunk/PKGBUILD)

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

Copied: libsysstat/repos/community-i686/PKGBUILD (from rev 127703, 
libsysstat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 19:30:43 UTC (rev 127704)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libsysstat
+pkgver=0.3.0
+pkgrel=1
+pkgdesc=Library to query system statistics (net, resource usage, ...)
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(ab6405ac1c2e547ab07c03556b356a462caf40bfb8c885f3ff6b6df82f012718)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: libsysstat/repos/community-x86_64/PKGBUILD (from rev 127703, 
libsysstat/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 19:30:43 UTC (rev 127704)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libsysstat
+pkgver=0.3.0
+pkgrel=1
+pkgdesc=Library to query system statistics (net, resource usage, ...)
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(ab6405ac1c2e547ab07c03556b356a462caf40bfb8c885f3ff6b6df82f012718)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 21:29:33
  Author: jleclanche
Revision: 127709

lxqt-common: Upstream release 0.9.1 (Moved from AUR)

Added:
  lxqt-common/
  lxqt-common/repos/
  lxqt-common/trunk/
  lxqt-common/trunk/PKGBUILD

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

Added: lxqt-common/trunk/PKGBUILD
===
--- lxqt-common/trunk/PKGBUILD  (rev 0)
+++ lxqt-common/trunk/PKGBUILD  2015-02-14 20:29:33 UTC (rev 127709)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-common
+pkgver=0.9.1
+pkgrel=1
+pkgdesc=Common data to run a LXQt session.
+arch=(any)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(bash hicolor-icon-theme)
+makedepends=(cmake liblxqt qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 21:29:58
  Author: jleclanche
Revision: 127710

archrelease: copy trunk to community-any

Added:
  lxqt-common/repos/community-any/
  lxqt-common/repos/community-any/PKGBUILD
(from rev 127709, lxqt-common/trunk/PKGBUILD)

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

Copied: lxqt-common/repos/community-any/PKGBUILD (from rev 127709, 
lxqt-common/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-02-14 20:29:58 UTC (rev 127710)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-common
+pkgver=0.9.1
+pkgrel=1
+pkgdesc=Common data to run a LXQt session.
+arch=(any)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(bash hicolor-icon-theme)
+makedepends=(cmake liblxqt qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 21:40:43
  Author: jleclanche
Revision: 127712

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

Added:
  lxqt-powermanagement/repos/community-i686/
  lxqt-powermanagement/repos/community-i686/PKGBUILD
(from rev 127711, lxqt-powermanagement/trunk/PKGBUILD)
  lxqt-powermanagement/repos/community-x86_64/
  lxqt-powermanagement/repos/community-x86_64/PKGBUILD
(from rev 127711, lxqt-powermanagement/trunk/PKGBUILD)

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

Copied: lxqt-powermanagement/repos/community-i686/PKGBUILD (from rev 127711, 
lxqt-powermanagement/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 20:40:43 UTC (rev 127712)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-powermanagement
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt power management daemon
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt qt5-svg upower)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-powermanagement/repos/community-x86_64/PKGBUILD (from rev 127711, 
lxqt-powermanagement/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 20:40:43 UTC (rev 127712)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-powermanagement
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt power management daemon
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt qt5-svg upower)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 21:40:17
  Author: jleclanche
Revision: 127711

lxqt-powermanagement: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-powermanagement/
  lxqt-powermanagement/repos/
  lxqt-powermanagement/trunk/
  lxqt-powermanagement/trunk/PKGBUILD

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

Added: lxqt-powermanagement/trunk/PKGBUILD
===
--- lxqt-powermanagement/trunk/PKGBUILD (rev 0)
+++ lxqt-powermanagement/trunk/PKGBUILD 2015-02-14 20:40:17 UTC (rev 127711)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-powermanagement
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt power management daemon
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt qt5-svg upower)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(4602de9a9976307a74568cc729c6970c73dc06be5f972ade21eea6afb0c3006b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Andreas Radke
Date: Saturday, February 14, 2015 @ 21:57:50
  Author: andyrtr
Revision: 231394

upgpkg: x2goserver 4.0.1.18-3

fix some permissions

Modified:
  x2goserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 18:28:14 UTC (rev 231393)
+++ PKGBUILD2015-02-14 20:57:50 UTC (rev 231394)
@@ -8,7 +8,7 @@
 
 pkgname=x2goserver
 pkgver=4.0.1.18
-pkgrel=2
+pkgrel=3
 pkgdesc=Open source terminal server
 arch=('i686' 'x86_64')
 url=http://www.x2go.org/;
@@ -95,8 +95,8 @@
   install -Dm 644 $srcdir/${pkgname}-${pkgver}/x2goserver.service 
$pkgdir/usr/lib/systemd/system/x2goserver.service
   
   # X2go homedir + printing spool dir
-  install -dm 770 $pkgdir/var/lib/x2go
-  install -dm 770 --owner=112 --group=112 $pkgdir/var/spool/x2go
+  install -dm 0770 --owner=111 --group=111 $pkgdir/var/lib/x2go
+  install -dm 0770 --owner=112 --group=112 $pkgdir/var/spool/x2go
   
   # load fuse module at system start
   install -dm755 $pkgdir/usr/lib/modules-load.d
@@ -105,15 +105,15 @@
   install -dm 755 ${pkgdir}/usr/share/doc/${pkgname}
   install -m 644 ChangeLog ${pkgdir}/usr/share/doc/${pkgname}/
 
-  # fix permission
-  chmod 750 ${pkgdir}/etc/sudoers.d
-  
-  # fix more permissions - see INSTALL file
+  # fix permission - see INSTALL file
   chown root:111 ${pkgdir}/usr/lib/x2go/x2gosqlitewrapper
   chmod 2755 ${pkgdir}/usr/lib/x2go/x2gosqlitewrapper
   
   chown root:112 ${pkgdir}/usr/bin/x2goprint
   chmod 2755 ${pkgdir}/usr/bin/x2goprint
+  
+  chmod 750 ${pkgdir}/etc/sudoers.d
+  chmod 0440 ${pkgdir}/etc/sudoers.d/x2goserver
 }
 
 


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

2015-02-14 Thread Andreas Radke
Date: Saturday, February 14, 2015 @ 21:58:04
  Author: andyrtr
Revision: 231395

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

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

-+
 /PKGBUILD   |  242 ++
 /x2goserver.install |   54 
 extra-i686/PKGBUILD |  121 ---
 extra-i686/x2goserver.install   |   27 
 extra-x86_64/PKGBUILD   |  121 ---
 extra-x86_64/x2goserver.install |   27 
 6 files changed, 296 insertions(+), 296 deletions(-)

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

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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:08:09
  Author: jleclanche
Revision: 127714

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

Added:
  lxqt-policykit/repos/community-i686/
  lxqt-policykit/repos/community-i686/PKGBUILD
(from rev 127713, lxqt-policykit/trunk/PKGBUILD)
  lxqt-policykit/repos/community-x86_64/
  lxqt-policykit/repos/community-x86_64/PKGBUILD
(from rev 127713, lxqt-policykit/trunk/PKGBUILD)

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

Copied: lxqt-policykit/repos/community-i686/PKGBUILD (from rev 127713, 
lxqt-policykit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 21:08:09 UTC (rev 127714)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-policykit
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt policykit authentication agent
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt polkit-qt5)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6bed4b6859085f4330405f25b47beee9d183a37ae7c2ca6876c15b2a1c2cf549)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-policykit/repos/community-x86_64/PKGBUILD (from rev 127713, 
lxqt-policykit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 21:08:09 UTC (rev 127714)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-policykit
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt policykit authentication agent
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt polkit-qt5)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6bed4b6859085f4330405f25b47beee9d183a37ae7c2ca6876c15b2a1c2cf549)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:07:46
  Author: jleclanche
Revision: 127713

lxqt-policykit: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-policykit/
  lxqt-policykit/repos/
  lxqt-policykit/trunk/
  lxqt-policykit/trunk/PKGBUILD

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

Added: lxqt-policykit/trunk/PKGBUILD
===
--- lxqt-policykit/trunk/PKGBUILD   (rev 0)
+++ lxqt-policykit/trunk/PKGBUILD   2015-02-14 21:07:46 UTC (rev 127713)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-policykit
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt policykit authentication agent
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt polkit-qt5)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6bed4b6859085f4330405f25b47beee9d183a37ae7c2ca6876c15b2a1c2cf549)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Andreas Radke
Date: Saturday, February 14, 2015 @ 22:13:17
  Author: andyrtr
Revision: 231397

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

Added:
  kwin/repos/staging-i686/
  kwin/repos/staging-i686/PKGBUILD
(from rev 231396, kwin/trunk/PKGBUILD)
  kwin/repos/staging-i686/kdebug-341971.patch
(from rev 231396, kwin/trunk/kdebug-341971.patch)
  kwin/repos/staging-i686/kwin.install
(from rev 231396, kwin/trunk/kwin.install)
  kwin/repos/staging-i686/libinput.0.8.0.patch
(from rev 231396, kwin/trunk/libinput.0.8.0.patch)
  kwin/repos/staging-x86_64/
  kwin/repos/staging-x86_64/PKGBUILD
(from rev 231396, kwin/trunk/PKGBUILD)
  kwin/repos/staging-x86_64/kdebug-341971.patch
(from rev 231396, kwin/trunk/kdebug-341971.patch)
  kwin/repos/staging-x86_64/kwin.install
(from rev 231396, kwin/trunk/kwin.install)
  kwin/repos/staging-x86_64/libinput.0.8.0.patch
(from rev 231396, kwin/trunk/libinput.0.8.0.patch)

-+
 staging-i686/PKGBUILD   |   50 
 staging-i686/kdebug-341971.patch|  190 ++
 staging-i686/kwin.install   |   11 +
 staging-i686/libinput.0.8.0.patch   |   25 
 staging-x86_64/PKGBUILD |   50 
 staging-x86_64/kdebug-341971.patch  |  190 ++
 staging-x86_64/kwin.install |   11 +
 staging-x86_64/libinput.0.8.0.patch |   25 
 8 files changed, 552 insertions(+)

Copied: kwin/repos/staging-i686/PKGBUILD (from rev 231396, kwin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-14 21:13:17 UTC (rev 231397)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwin
+pkgver=5.2.0.1
+_dir=5.2.0
+pkgrel=3
+pkgdesc='KDE Window manager'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwin'
+license=('LGPL')
+depends=('qt5-multimedia' 'plasma-framework' 'knewstuff' 'libxcursor' 'kinit'
+ 'hicolor-icon-theme' 'libepoxy' 'kwayland' 'libinput' 'kdecoration')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
+groups=('plasma')
+install=${pkgname}.install
+conflicts=('kdebase-workspace')
+source=(http://download.kde.org/stable/plasma/${_dir}/${pkgname}-${pkgver}.tar.xz;
+'kdebug-341971.patch'
+'libinput.0.8.0.patch')
+md5sums=('47b6ce31b45450fa702098c9f3f5ac95'
+ '037db2eab5f9e07c74122f1a5fd4fe31'
+ '0ccc6b0113e37bd994c65ffb6a4518ff')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/kdebug-341971.patch
+  
+  #https://bugs.kde.org/show_bug.cgi?id=342893
+  patch -Np1 -i ${srcdir}/libinput.0.8.0.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kwin/repos/staging-i686/kdebug-341971.patch (from rev 231396, 
kwin/trunk/kdebug-341971.patch)
===
--- staging-i686/kdebug-341971.patch(rev 0)
+++ staging-i686/kdebug-341971.patch2015-02-14 21:13:17 UTC (rev 231397)
@@ -0,0 +1,190 @@
+From: Marco Martin notm...@gmail.com
+Date: Wed, 28 Jan 2015 08:58:47 +
+Subject: use xembed for the qml view of window decorations modul
+X-Git-Url: 
http://quickgit.kde.org/?p=kwin.gita=commitdiffh=63885cc5b3f2922441dac0af96ed001b737e78ea
+---
+use xembed for the qml view of window decorations modul
+
+the only way to ensure the view won't randomly become black
+(probably QQuickwidget won't be fixed in qt anytime soon or
+ever in 5.x lifetime due to how architecturally is)
+
+basically systemsettings has no control of what gets loaded in,
+if one other kcm will call winId(), this one will break.
+
+BUG:341971
+---
+
+
+--- a/kcmkwin/kwindecoration/kcm.cpp
 b/kcmkwin/kwindecoration/kcm.cpp
+@@ -36,6 +36,7 @@
+ #include QQmlContext
+ #include QQmlEngine
+ #include QQuickItem
++#include QQuickView
+ #include QSortFilterProxyModel
+ #include QStandardPaths
+ #include QVBoxLayout
+@@ -77,21 +78,26 @@
+ m_proxyModel-setFilterCaseSensitivity(Qt::CaseInsensitive);
+ connect(m_ui-filter, QLineEdit::textChanged, m_proxyModel, 
QSortFilterProxyModel::setFilterFixedString);
+ 
++m_quickView = new QQuickView(0);
+ KDeclarative::KDeclarative kdeclarative;
+-kdeclarative.setDeclarativeEngine(m_ui-view-engine());
++kdeclarative.setDeclarativeEngine(m_quickView-engine());
+ kdeclarative.setTranslationDomain(QStringLiteral(TRANSLATION_DOMAIN));
+ kdeclarative.setupBindings();
+ 
+ qmlRegisterTypeQAbstractItemModel();
+-

[arch-commits] Commit in kcm-touchpad-frameworks/trunk (PKGBUILD)

2015-02-14 Thread Antonio Rojas
Date: Saturday, February 14, 2015 @ 22:14:01
  Author: arojas
Revision: 127717

Remove wrong group (FS#43819)

Modified:
  kcm-touchpad-frameworks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 21:12:40 UTC (rev 127716)
+++ PKGBUILD2015-02-14 21:14:01 UTC (rev 127717)
@@ -4,7 +4,7 @@
 
 pkgname=kcm-touchpad-frameworks
 pkgver=5.1.95
-pkgrel=3
+pkgrel=4
 pkgdesc='KCM, daemon and applet for touchpad'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
@@ -11,7 +11,6 @@
 license=('GPL')
 depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
 makedepends=('extra-cmake-modules' 'xorg-server-devel')
-groups=('plasma-next')
 conflicts=('kcm-touchpad')
 
source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;
 'fix-plasmoid.patch')
 install=$pkgname.install


[arch-commits] Commit in kwin/trunk (PKGBUILD libinput.0.8.0.patch)

2015-02-14 Thread Andreas Radke
Date: Saturday, February 14, 2015 @ 22:13:00
  Author: andyrtr
Revision: 231396

upgpkg: kwin 5.2.0.1-3

libinput rebuild

Added:
  kwin/trunk/libinput.0.8.0.patch
Modified:
  kwin/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 libinput.0.8.0.patch |   25 +
 2 files changed, 33 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 20:58:04 UTC (rev 231395)
+++ PKGBUILD2015-02-14 21:13:00 UTC (rev 231396)
@@ -4,7 +4,7 @@
 pkgname=kwin
 pkgver=5.2.0.1
 _dir=5.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc='KDE Window manager'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/kwin'
@@ -16,9 +16,11 @@
 install=${pkgname}.install
 conflicts=('kdebase-workspace')
 
source=(http://download.kde.org/stable/plasma/${_dir}/${pkgname}-${pkgver}.tar.xz;
-'kdebug-341971.patch')
+'kdebug-341971.patch'
+'libinput.0.8.0.patch')
 md5sums=('47b6ce31b45450fa702098c9f3f5ac95'
- '037db2eab5f9e07c74122f1a5fd4fe31')
+ '037db2eab5f9e07c74122f1a5fd4fe31'
+ '0ccc6b0113e37bd994c65ffb6a4518ff')
 
 prepare() {
   mkdir build
@@ -25,6 +27,9 @@
 
   cd ${pkgname}-${pkgver}
   patch -p1 -i ${srcdir}/kdebug-341971.patch
+  
+  #https://bugs.kde.org/show_bug.cgi?id=342893
+  patch -Np1 -i ${srcdir}/libinput.0.8.0.patch
 }
 
 build() {

Added: libinput.0.8.0.patch
===
--- libinput.0.8.0.patch(rev 0)
+++ libinput.0.8.0.patch2015-02-14 21:13:00 UTC (rev 231396)
@@ -0,0 +1,25 @@
+commit a93a2ab1918630c6d571b5a24379c15a0458d1fa
+Author: Martin Gräßlin mgraess...@kde.org
+Date:   Wed Jan 28 16:20:57 2015 +0100
+
+Disable libinput integration if = 0.8 is found
+
+libinput 0.8 is incompatible causing the build to fail. As we are in
+dependency freeze the only option is to disable the build.
+
+BUG: 342893
+FIXED-IN: 5.2.1
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 550ef57..8d9c593 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -145,7 +145,7 @@ set_package_properties(UDev PROPERTIES  URL 
http://www.freedesktop.org/software
+ PURPOSE Required for input handling 
on Wayland.
+ )
+ set(HAVE_INPUT FALSE)
+-if (Libinput_FOUND AND UDEV_FOUND)
++if (Libinput_FOUND AND UDEV_FOUND AND Libinput_VERSION VERSION_LESS 0.8)
+ set(HAVE_INPUT TRUE)
+ endif()
+ 


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 21:15:48
  Author: jleclanche
Revision: 127707

lxqt-config: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-config/
  lxqt-config/repos/
  lxqt-config/trunk/
  lxqt-config/trunk/PKGBUILD

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

Added: lxqt-config/trunk/PKGBUILD
===
--- lxqt-config/trunk/PKGBUILD  (rev 0)
+++ lxqt-config/trunk/PKGBUILD  2015-02-14 20:15:48 UTC (rev 127707)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-config
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt system configuration.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libxcursor)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 21:16:11
  Author: jleclanche
Revision: 127708

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

Added:
  lxqt-config/repos/community-i686/
  lxqt-config/repos/community-i686/PKGBUILD
(from rev 127707, lxqt-config/trunk/PKGBUILD)
  lxqt-config/repos/community-x86_64/
  lxqt-config/repos/community-x86_64/PKGBUILD
(from rev 127707, lxqt-config/trunk/PKGBUILD)

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

Copied: lxqt-config/repos/community-i686/PKGBUILD (from rev 127707, 
lxqt-config/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 20:16:11 UTC (rev 127708)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-config
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt system configuration.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libxcursor)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-config/repos/community-x86_64/PKGBUILD (from rev 127707, 
lxqt-config/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 20:16:11 UTC (rev 127708)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-config
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt system configuration.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libxcursor)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(9d6b0d21846ac5d9c62c5806ce04383b92708ab7bd095b46d0ac9fbb3f84b913)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in kcm-touchpad-frameworks/repos (12 files)

2015-02-14 Thread Antonio Rojas
Date: Saturday, February 14, 2015 @ 22:14:23
  Author: arojas
Revision: 127718

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

Added:
  kcm-touchpad-frameworks/repos/community-i686/PKGBUILD
(from rev 127717, kcm-touchpad-frameworks/trunk/PKGBUILD)
  kcm-touchpad-frameworks/repos/community-i686/fix-plasmoid.patch
(from rev 127717, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
  kcm-touchpad-frameworks/repos/community-i686/kcm-touchpad-frameworks.install
(from rev 127717, 
kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install)
  kcm-touchpad-frameworks/repos/community-x86_64/PKGBUILD
(from rev 127717, kcm-touchpad-frameworks/trunk/PKGBUILD)
  kcm-touchpad-frameworks/repos/community-x86_64/fix-plasmoid.patch
(from rev 127717, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
  kcm-touchpad-frameworks/repos/community-x86_64/kcm-touchpad-frameworks.install
(from rev 127717, 
kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install)
Deleted:
  kcm-touchpad-frameworks/repos/community-i686/PKGBUILD
  kcm-touchpad-frameworks/repos/community-i686/fix-plasmoid.patch
  kcm-touchpad-frameworks/repos/community-i686/kcm-touchpad-frameworks.install
  kcm-touchpad-frameworks/repos/community-x86_64/PKGBUILD
  kcm-touchpad-frameworks/repos/community-x86_64/fix-plasmoid.patch
  kcm-touchpad-frameworks/repos/community-x86_64/kcm-touchpad-frameworks.install

--+
 /PKGBUILD|   80 ++
 /fix-plasmoid.patch  |  114 +
 /kcm-touchpad-frameworks.install |   22 
 community-i686/PKGBUILD  |   41 ---
 community-i686/fix-plasmoid.patch|   57 --
 community-i686/kcm-touchpad-frameworks.install   |   11 --
 community-x86_64/PKGBUILD|   41 ---
 community-x86_64/fix-plasmoid.patch  |   57 --
 community-x86_64/kcm-touchpad-frameworks.install |   11 --
 9 files changed, 216 insertions(+), 218 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-14 21:14:01 UTC (rev 127717)
+++ community-i686/PKGBUILD 2015-02-14 21:14:23 UTC (rev 127718)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Alexander Mezin mezin.alexan...@gmail.com
-
-pkgname=kcm-touchpad-frameworks
-pkgver=5.1.95
-pkgrel=3
-pkgdesc='KCM, daemon and applet for touchpad'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
-license=('GPL')
-depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
-makedepends=('extra-cmake-modules' 'xorg-server-devel')
-groups=('plasma-next')
-conflicts=('kcm-touchpad')
-source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;
 'fix-plasmoid.patch')
-install=$pkgname.install
-md5sums=('25f22612196f820dafe395cdf2fdf0a8'
- '1e47e7680850b14432f880fa27c8237b')
-
-prepare() {
-  mkdir -p build
-
-  cd kcm-touchpad-$pkgver
-# fix plasmoid loading
-  patch -p1 -i $srcdir/fix-plasmoid.patch
-}
-
-build() {
-  cd build
-  cmake ../kcm-touchpad-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kcm-touchpad-frameworks/repos/community-i686/PKGBUILD (from rev 127717, 
kcm-touchpad-frameworks/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 21:14:23 UTC (rev 127718)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Alexander Mezin mezin.alexan...@gmail.com
+
+pkgname=kcm-touchpad-frameworks
+pkgver=5.1.95
+pkgrel=4
+pkgdesc='KCM, daemon and applet for touchpad'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
+license=('GPL')
+depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
+makedepends=('extra-cmake-modules' 'xorg-server-devel')
+conflicts=('kcm-touchpad')
+source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;
 'fix-plasmoid.patch')
+install=$pkgname.install
+md5sums=('25f22612196f820dafe395cdf2fdf0a8'
+ '1e47e7680850b14432f880fa27c8237b')
+
+prepare() {
+  mkdir -p build
+
+  cd kcm-touchpad-$pkgver
+# fix plasmoid loading
+  patch -p1 -i $srcdir/fix-plasmoid.patch
+}
+
+build() {
+  cd build
+  cmake ../kcm-touchpad-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: 

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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:23:42
  Author: jleclanche
Revision: 127721

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

Added:
  pcmanfm-qt/repos/community-i686/
  pcmanfm-qt/repos/community-i686/PKGBUILD
(from rev 127720, pcmanfm-qt/trunk/PKGBUILD)
  pcmanfm-qt/repos/community-i686/pcmanfm-qt.install
(from rev 127720, pcmanfm-qt/trunk/pcmanfm-qt.install)
  pcmanfm-qt/repos/community-x86_64/
  pcmanfm-qt/repos/community-x86_64/PKGBUILD
(from rev 127720, pcmanfm-qt/trunk/PKGBUILD)
  pcmanfm-qt/repos/community-x86_64/pcmanfm-qt.install
(from rev 127720, pcmanfm-qt/trunk/pcmanfm-qt.install)

-+
 community-i686/PKGBUILD |   32 
 community-i686/pcmanfm-qt.install   |   11 +++
 community-x86_64/PKGBUILD   |   32 
 community-x86_64/pcmanfm-qt.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: pcmanfm-qt/repos/community-i686/PKGBUILD (from rev 127720, 
pcmanfm-qt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 21:23:42 UTC (rev 127721)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=pcmanfm-qt
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt file manager, Qt port of PCManFM
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libfm lxmenu-data)
+makedepends=(cmake qt5-tools)
+install=$pkgname.install
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(2df0f0a0c092f9ee6e7311255ab2aed66c8ea897b3399affb96732c46421e2df)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: pcmanfm-qt/repos/community-i686/pcmanfm-qt.install (from rev 127720, 
pcmanfm-qt/trunk/pcmanfm-qt.install)
===
--- community-i686/pcmanfm-qt.install   (rev 0)
+++ community-i686/pcmanfm-qt.install   2015-02-14 21:23:42 UTC (rev 127721)
@@ -0,0 +1,11 @@
+post_install() {
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install $1
+}
+
+post_remove() {
+   post_install $1
+}

Copied: pcmanfm-qt/repos/community-x86_64/PKGBUILD (from rev 127720, 
pcmanfm-qt/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 21:23:42 UTC (rev 127721)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=pcmanfm-qt
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt file manager, Qt port of PCManFM
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libfm lxmenu-data)
+makedepends=(cmake qt5-tools)
+install=$pkgname.install
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(2df0f0a0c092f9ee6e7311255ab2aed66c8ea897b3399affb96732c46421e2df)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: pcmanfm-qt/repos/community-x86_64/pcmanfm-qt.install (from rev 127720, 
pcmanfm-qt/trunk/pcmanfm-qt.install)
===
--- community-x86_64/pcmanfm-qt.install (rev 0)
+++ community-x86_64/pcmanfm-qt.install 2015-02-14 21:23:42 UTC (rev 127721)
@@ -0,0 +1,11 @@
+post_install() {
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install $1
+}
+
+post_remove() {
+   post_install $1
+}


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:23:12
  Author: jleclanche
Revision: 127720

pcmanfm-qt: Add missing pcmanfm-qt.install file

Added:
  pcmanfm-qt/trunk/pcmanfm-qt.install

+
 pcmanfm-qt.install |   11 +++
 1 file changed, 11 insertions(+)

Added: pcmanfm-qt.install
===
--- pcmanfm-qt.install  (rev 0)
+++ pcmanfm-qt.install  2015-02-14 21:23:12 UTC (rev 127720)
@@ -0,0 +1,11 @@
+post_install() {
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install $1
+}
+
+post_remove() {
+   post_install $1
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:22:45
  Author: jleclanche
Revision: 127719

pcmanfm-qt: Upstream release 0.9 (Moved from AUR)

Added:
  pcmanfm-qt/
  pcmanfm-qt/repos/
  pcmanfm-qt/trunk/
  pcmanfm-qt/trunk/PKGBUILD

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

Added: pcmanfm-qt/trunk/PKGBUILD
===
--- pcmanfm-qt/trunk/PKGBUILD   (rev 0)
+++ pcmanfm-qt/trunk/PKGBUILD   2015-02-14 21:22:45 UTC (rev 127719)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=pcmanfm-qt
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt file manager, Qt port of PCManFM
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt libfm lxmenu-data)
+makedepends=(cmake qt5-tools)
+install=$pkgname.install
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(2df0f0a0c092f9ee6e7311255ab2aed66c8ea897b3399affb96732c46421e2df)
+
+
+build() {
+   mkdir -p build
+   cd build
+
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:27:15
  Author: jleclanche
Revision: 127703

libsysstat: Upstream release 0.3.0 (Moved from AUR)

Added:
  libsysstat/
  libsysstat/repos/
  libsysstat/trunk/
  libsysstat/trunk/PKGBUILD

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

Added: libsysstat/trunk/PKGBUILD
===
--- libsysstat/trunk/PKGBUILD   (rev 0)
+++ libsysstat/trunk/PKGBUILD   2015-02-14 19:27:15 UTC (rev 127703)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=libsysstat
+pkgver=0.3.0
+pkgrel=1
+pkgdesc=Library to query system statistics (net, resource usage, ...)
+arch=(i686 x86_64)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(qt5-base)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(ab6405ac1c2e547ab07c03556b356a462caf40bfb8c885f3ff6b6df82f012718)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:51:02
  Author: jleclanche
Revision: 127705

lxqt-about: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-about/
  lxqt-about/repos/
  lxqt-about/trunk/
  lxqt-about/trunk/PKGBUILD

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

Added: lxqt-about/trunk/PKGBUILD
===
--- lxqt-about/trunk/PKGBUILD   (rev 0)
+++ lxqt-about/trunk/PKGBUILD   2015-02-14 19:51:02 UTC (rev 127705)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-about
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt about dialog.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6965eb5eba8acbd97cebd708da12f2aa8bbb3cf2c3fa211b5c00cc45fc48bf77)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 20:51:42
  Author: jleclanche
Revision: 127706

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

Added:
  lxqt-about/repos/community-i686/
  lxqt-about/repos/community-i686/PKGBUILD
(from rev 127705, lxqt-about/trunk/PKGBUILD)
  lxqt-about/repos/community-x86_64/
  lxqt-about/repos/community-x86_64/PKGBUILD
(from rev 127705, lxqt-about/trunk/PKGBUILD)

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

Copied: lxqt-about/repos/community-i686/PKGBUILD (from rev 127705, 
lxqt-about/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 19:51:42 UTC (rev 127706)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-about
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt about dialog.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6965eb5eba8acbd97cebd708da12f2aa8bbb3cf2c3fa211b5c00cc45fc48bf77)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-about/repos/community-x86_64/PKGBUILD (from rev 127705, 
lxqt-about/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 19:51:42 UTC (rev 127706)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-about
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt about dialog.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(6965eb5eba8acbd97cebd708da12f2aa8bbb3cf2c3fa211b5c00cc45fc48bf77)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:12:21
  Author: jleclanche
Revision: 127715

lxqt-openssh-askpass: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-openssh-askpass/
  lxqt-openssh-askpass/repos/
  lxqt-openssh-askpass/trunk/
  lxqt-openssh-askpass/trunk/PKGBUILD

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

Added: lxqt-openssh-askpass/trunk/PKGBUILD
===
--- lxqt-openssh-askpass/trunk/PKGBUILD (rev 0)
+++ lxqt-openssh-askpass/trunk/PKGBUILD 2015-02-14 21:12:21 UTC (rev 127715)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-openssh-askpass
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt openssh password prompt
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(95c9646c8583add54e49b31c6c8dd04d9d09a8836fa8ea289e0adce403aaa72b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


[arch-commits] Commit in lxqt-openssh-askpass/repos (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 22:12:40
  Author: jleclanche
Revision: 127716

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

Added:
  lxqt-openssh-askpass/repos/community-i686/
  lxqt-openssh-askpass/repos/community-i686/PKGBUILD
(from rev 127715, lxqt-openssh-askpass/trunk/PKGBUILD)
  lxqt-openssh-askpass/repos/community-x86_64/
  lxqt-openssh-askpass/repos/community-x86_64/PKGBUILD
(from rev 127715, lxqt-openssh-askpass/trunk/PKGBUILD)

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

Copied: lxqt-openssh-askpass/repos/community-i686/PKGBUILD (from rev 127715, 
lxqt-openssh-askpass/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 21:12:40 UTC (rev 127716)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-openssh-askpass
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt openssh password prompt
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(95c9646c8583add54e49b31c6c8dd04d9d09a8836fa8ea289e0adce403aaa72b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-openssh-askpass/repos/community-x86_64/PKGBUILD (from rev 127715, 
lxqt-openssh-askpass/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 21:12:40 UTC (rev 127716)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-openssh-askpass
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt openssh password prompt
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(95c9646c8583add54e49b31c6c8dd04d9d09a8836fa8ea289e0adce403aaa72b)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in chromium/trunk (PKGBUILD chromium.sh)

2015-02-14 Thread Evangelos Foutras
Date: Saturday, February 14, 2015 @ 23:03:49
  Author: foutrelis
Revision: 231398

Source additional configuration files (FS#43804)

Modified:
  chromium/trunk/PKGBUILD
  chromium/trunk/chromium.sh

-+
 PKGBUILD|2 +-
 chromium.sh |   11 ++-
 2 files changed, 11 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 21:13:17 UTC (rev 231397)
+++ PKGBUILD2015-02-14 22:03:49 UTC (rev 231398)
@@ -17,7 +17,7 @@
  'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
  'elfutils' 'subversion' 'ninja' 'clang')
-[[ $CARCH = x86_64 ]]  makedepends+=('lib32-gcc-libs' 'lib32-zlib')
+makedepends_x86_64=('lib32-gcc-libs' 'lib32-zlib')
 optdepends=('kdebase-kdialog: needed for file dialogs in KDE'
 'gnome-keyring: for storing passwords in GNOME keyring'
 'libgnome-keyring: for storing passwords in GNOME keyring'

Modified: chromium.sh
===
--- chromium.sh 2015-02-14 21:13:17 UTC (rev 231397)
+++ chromium.sh 2015-02-14 22:03:49 UTC (rev 231398)
@@ -1,11 +1,20 @@
 #!/bin/bash
 
 # Allow users to override command-line options
-# Based on Gentoo's chromium package (and by extension, Debian's)
+# Based on Gentoo's chromium package
 if [[ -f /etc/chromium/default ]]; then
. /etc/chromium/default
 fi
+# Source additional configuration files
+for file in /etc/chromium/*; do
+   # Don't source /etc/chromium/default again
+   [[ $file == /etc/chromium/default ]]  continue
 
+   if [[ -f $file ]]; then
+   . $file
+   fi
+done
+
 # Prefer user defined CHROMIUM_USER_FLAGS (from env) over system
 # default CHROMIUM_FLAGS (from /etc/chromium/default)
 CHROMIUM_FLAGS=${CHROMIUM_USER_FLAGS:-$CHROMIUM_FLAGS}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 23:58:03
  Author: jleclanche
Revision: 127726

lxqt-panel: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-panel/
  lxqt-panel/repos/
  lxqt-panel/trunk/
  lxqt-panel/trunk/PKGBUILD

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

Added: lxqt-panel/trunk/PKGBUILD
===
--- lxqt-panel/trunk/PKGBUILD   (rev 0)
+++ lxqt-panel/trunk/PKGBUILD   2015-02-14 22:58:03 UTC (rev 127726)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-panel
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt desktop panel
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(
+   libxcomposite kguiaddons lxmenu-data
+   lxqt-common liblxqt-mount lxqt-globalkeys
+)
+optdepends=(
+   alsa-lib: Alsa support in volume control plugin
+   libpulse: PulseAudio support in volume control plugin
+   lm_sensors: Battery plugin
+   libstatgrab: Network and CPU monitor plugin
+   libsysstat: Network/CPU monitor plugin
+   menu-cache: Improved performance for main menu plugin
+)
+makedepends=(cmake qt5-tools alsa-lib libpulse lm_sensors 
libstatgrab libsysstat)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Jan Steffens
Date: Sunday, February 15, 2015 @ 00:33:30
  Author: heftig
Revision: 231399

Disable dhcpcd support - comes with too many bugs

Modified:
  networkmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 22:03:49 UTC (rev 231398)
+++ PKGBUILD2015-02-14 23:33:30 UTC (rev 231399)
@@ -9,14 +9,14 @@
 pkgbase=networkmanager
 pkgname=(networkmanager libnm-glib)
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Network Management daemon
 arch=(i686 x86_64)
 license=(GPL2 LGPL2.1)
 url=http://www.gnome.org/projects/NetworkManager/;
 _pppver=2.4.7
-makedepends=(intltool dhcpcd dhclient iptables gobject-introspection gtk-doc 
ppp=$_pppver
- modemmanager dbus-glib iproute2 libnl nss polkit wpa_supplicant 
dhcp-client libsoup
+makedepends=(intltool dhclient iptables gobject-introspection gtk-doc 
ppp=$_pppver
+ modemmanager dbus-glib iproute2 libnl nss polkit wpa_supplicant 
libsoup
  systemd libmm-glib rp-pppoe libnewt libndp libteam vala)
 checkdepends=(libx11 python-gobject python-dbus)
 
#source=(git://anongit.freedesktop.org/NetworkManager/NetworkManager#commit=93c1041
@@ -41,7 +41,7 @@
 --libexecdir=/usr/lib/networkmanager \
 --with-crypto=nss \
 --with-dhclient=/usr/bin/dhclient \
---with-dhcpcd=/usr/bin/dhcpcd \
+--without-dhcpcd \
 --with-dnsmasq=/usr/bin/dnsmasq \
 --with-iptables=/usr/bin/iptables \
 --with-systemdsystemunitdir=/usr/lib/systemd/system \
@@ -68,10 +68,9 @@
 }
 
 package_networkmanager() {
-  depends=(libnm-glib iproute2 libnl polkit wpa_supplicant dhcp-client libsoup 
libmm-glib libnewt
+  depends=(libnm-glib iproute2 libnl polkit wpa_supplicant dhclient libsoup 
libmm-glib libnewt
libndp libteam)
-  optdepends=('dhclient: DHCPv6 support'
-  'dnsmasq: connection sharing'
+  optdepends=('dnsmasq: connection sharing'
   'bluez: Bluetooth support'
   'openresolv: resolvconf support'
   'ppp: dialup connection support'


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

2015-02-14 Thread Jan Steffens
Date: Sunday, February 15, 2015 @ 00:37:34
  Author: heftig
Revision: 231400

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

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

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

Deleted: extra-i686/NetworkManager.conf
===
--- extra-i686/NetworkManager.conf  2015-02-14 23:33:30 UTC (rev 231399)
+++ extra-i686/NetworkManager.conf  2015-02-14 23:37:34 UTC (rev 231400)
@@ -1,10 +0,0 @@
-[main]
-plugins=keyfile
-
-## Set static hostname
-#[keyfile]
-#hostname=foobar
-
-## HTTP-based connectivity check
-#[connectivity]
-#uri=http://nmcheck.gnome.org/check_network_status.txt

Copied: networkmanager/repos/extra-i686/NetworkManager.conf (from rev 231399, 
networkmanager/trunk/NetworkManager.conf)
===
--- extra-i686/NetworkManager.conf  (rev 0)
+++ extra-i686/NetworkManager.conf  2015-02-14 23:37:34 UTC (rev 231400)
@@ -0,0 +1,10 @@
+[main]
+plugins=keyfile
+
+## Set static hostname
+#[keyfile]
+#hostname=foobar
+
+## HTTP-based connectivity check
+#[connectivity]
+#uri=http://nmcheck.gnome.org/check_network_status.txt

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

[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 23:40:44
  Author: jleclanche
Revision: 127722

lxqt-runner: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-runner/
  lxqt-runner/repos/
  lxqt-runner/trunk/
  lxqt-runner/trunk/PKGBUILD

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

Added: lxqt-runner/trunk/PKGBUILD
===
--- lxqt-runner/trunk/PKGBUILD  (rev 0)
+++ lxqt-runner/trunk/PKGBUILD  2015-02-14 22:40:44 UTC (rev 127722)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-runner
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt application launcher
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-globalkeys menu-cache qt5-script)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Alexander Rødseth
Date: Saturday, February 14, 2015 @ 23:44:59
  Author: arodseth
Revision: 127725

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

Added:
  powerdns/repos/community-i686/PKGBUILD
(from rev 127724, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-i686/pdns.install
(from rev 127724, powerdns/trunk/pdns.install)
  powerdns/repos/community-i686/pdns.service
(from rev 127724, powerdns/trunk/pdns.service)
  powerdns/repos/community-x86_64/PKGBUILD
(from rev 127724, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-x86_64/pdns.install
(from rev 127724, powerdns/trunk/pdns.install)
  powerdns/repos/community-x86_64/pdns.service
(from rev 127724, powerdns/trunk/pdns.service)
Deleted:
  powerdns/repos/community-i686/PKGBUILD
  powerdns/repos/community-i686/pdns.install
  powerdns/repos/community-i686/pdns.service
  powerdns/repos/community-x86_64/PKGBUILD
  powerdns/repos/community-x86_64/pdns.install
  powerdns/repos/community-x86_64/pdns.service

---+
 /PKGBUILD |  154 
 /pdns.install |   22 +
 /pdns.service |   24 ++
 community-i686/PKGBUILD   |   82 -
 community-i686/pdns.install   |   12 ---
 community-i686/pdns.service   |   12 ---
 community-x86_64/PKGBUILD |   82 -
 community-x86_64/pdns.install |   12 ---
 community-x86_64/pdns.service |   12 ---
 9 files changed, 200 insertions(+), 212 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-14 22:43:28 UTC (rev 127724)
+++ community-i686/PKGBUILD 2015-02-14 22:44:59 UTC (rev 127725)
@@ -1,82 +0,0 @@
-# $Id: PKGBUILD 101429 2013-11-25 14:11:30Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Kevin Mihelich ke...@archlinuxarm.org
-
-pkgname=powerdns
-pkgver=3.4.1
-pkgrel=3
-pkgdesc='Authoritative DNS server'
-arch=('x86_64' 'i686')
-url='http://www.powerdns.com/'
-license=('GPL')
-depends=('boost-libs' 'gcc-libs' 'postgresql-libs' 'libmariadbclient' 'sqlite' 
'libldap' 'lua')
-makedepends=('boost' 'setconf=0.6.3')
-provides=('pdns' 'pdns-ldap' 'pdns-mysql' 'pdns-sqlite' 'pdns-pgsql')
-replaces=('pdns' 'pdns-ldap' 'pdns-mysql' 'pdns-sqlite' 'pdns-pgsql')
-conflicts=('pdns' 'pdns-ldap' 'pdns-mysql' 'pdns-sqlite' 'pdns-pgsql')
-options=('!makeflags')
-install='pdns.install'
-backup=('etc/powerdns/pdns.conf')
-source=(http://downloads.powerdns.com/releases/pdns-$pkgver.tar.bz2;
-'pdns.service')
-sha256sums=('13e32a31759e7fd341b98c89fe551723a5c6a768350b3609c576f70602deb24a'
-'b2358a5951ac944feee15ac03d42ffe9c2a72fa6f57746f77ef8997d54a82040')
-
-prepare() {
-  touch pdns-$pkgver/AUTHORS pdns-$pkgver/NEWS
-
-  # Make changes to pdns.conf, while basing it on pdns.conf-dist
-  cp pdns-$pkgver/pdns/pdns.conf-dist pdns.conf
-
-  # Using setconf for setting the configuration options will make
-  # more sense in the next version of setconf, where uncommenting code
-  # will be supported.
-  for keyvalue in \
-allow-recursion=127.0.0.1 \
-cache-ttl=6 \
-chroot=/var/empty \
-config-dir=/etc \
-daemon=yes \
-distributor-threads=3 \
-guardian=yes \
-local-port=53 \
-loglevel=3 \
-module-dir=/usr/lib/powerdns \
-negquery-cache-ttl=60 \
-setgid=nobody \
-setuid=nobody \
-socket-dir=/var/run \
-webserver=no
-  do
-setconf -a pdns.conf $keyvalue
-  done
-}
-
-build() {
-  cd pdns-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/powerdns \
---libexecdir=/usr/lib \
---libdir=/usr/lib \
---mandir=/usr/share/man \
---with-modules='' \
---with-dynmodules=ldap pipe gmysql gpgsql gsqlite3 geo bind \
---docdir=/usr/share/doc/powerdns \
---sbindir=/usr/bin \
---bindir=/usr/bin
-  make  
-}
-
-package() {
-  make -C pdns-$pkgver DESTDIR=$pkgdir install
-  install -m644 pdns.conf $pkgdir/etc/powerdns/
-  install -Dm644 pdns.service \
-$pkgdir/usr/lib/systemd/system/pdns.service
-  rm -f $pkgdir/etc/powerdns/pdns.conf-dist
-  mv $pkgdir/usr/lib/pdns $pkgdir/usr/lib/powerdns
-}
-
-# vim:set ts=2 sw=2 et:

Copied: powerdns/repos/community-i686/PKGBUILD (from rev 127724, 
powerdns/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 22:44:59 UTC (rev 127725)
@@ -0,0 +1,77 @@
+# $Id: PKGBUILD 101429 2013-11-25 14:11:30Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Kevin Mihelich ke...@archlinuxarm.org
+
+pkgname=powerdns
+pkgver=3.4.2
+pkgrel=1
+pkgdesc='Authoritative DNS server'
+arch=('x86_64' 'i686')
+url='http://www.powerdns.com/'

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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 23:43:28
  Author: jleclanche
Revision: 127724

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

Added:
  lxqt-runner/repos/community-i686/
  lxqt-runner/repos/community-i686/PKGBUILD
(from rev 127723, lxqt-runner/trunk/PKGBUILD)
  lxqt-runner/repos/community-x86_64/
  lxqt-runner/repos/community-x86_64/PKGBUILD
(from rev 127723, lxqt-runner/trunk/PKGBUILD)

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

Copied: lxqt-runner/repos/community-i686/PKGBUILD (from rev 127723, 
lxqt-runner/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 22:43:28 UTC (rev 127724)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-runner
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt application launcher
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-globalkeys menu-cache qt5-script)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-runner/repos/community-x86_64/PKGBUILD (from rev 127723, 
lxqt-runner/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 22:43:28 UTC (rev 127724)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-runner
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt application launcher
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-globalkeys menu-cache qt5-script)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(7d9d4d85acb2a9e17892ca41637a677939ef7788df5cd45ba44d178ac066439a)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-14 Thread Alexander Rødseth
Date: Saturday, February 14, 2015 @ 23:43:06
  Author: arodseth
Revision: 127723

upgpkg: powerdns 3.4.2-1

Modified:
  powerdns/trunk/PKGBUILD
  powerdns/trunk/pdns.install

--+
 PKGBUILD |   17 ++---
 pdns.install |7 +++
 2 files changed, 9 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 22:40:44 UTC (rev 127722)
+++ PKGBUILD2015-02-14 22:43:06 UTC (rev 127723)
@@ -4,23 +4,20 @@
 # Contributor: Kevin Mihelich ke...@archlinuxarm.org
 
 pkgname=powerdns
-pkgver=3.4.1
-pkgrel=3
+pkgver=3.4.2
+pkgrel=1
 pkgdesc='Authoritative DNS server'
 arch=('x86_64' 'i686')
 url='http://www.powerdns.com/'
 license=('GPL')
 depends=('boost-libs' 'gcc-libs' 'postgresql-libs' 'libmariadbclient' 'sqlite' 
'libldap' 'lua')
-makedepends=('boost' 'setconf=0.6.3')
-provides=('pdns' 'pdns-ldap' 'pdns-mysql' 'pdns-sqlite' 'pdns-pgsql')
-replaces=('pdns' 'pdns-ldap' 'pdns-mysql' 'pdns-sqlite' 'pdns-pgsql')
-conflicts=('pdns' 'pdns-ldap' 'pdns-mysql' 'pdns-sqlite' 'pdns-pgsql')
+makedepends=('boost' 'setconf')
 options=('!makeflags')
 install='pdns.install'
 backup=('etc/powerdns/pdns.conf')
 source=(http://downloads.powerdns.com/releases/pdns-$pkgver.tar.bz2;
 'pdns.service')
-sha256sums=('13e32a31759e7fd341b98c89fe551723a5c6a768350b3609c576f70602deb24a'
+sha256sums=('a6ab05459a0118cb921092deee06362722c45fa69ed0166ebc3696d526014b5b'
 'b2358a5951ac944feee15ac03d42ffe9c2a72fa6f57746f77ef8997d54a82040')
 
 prepare() {
@@ -29,9 +26,7 @@
   # Make changes to pdns.conf, while basing it on pdns.conf-dist
   cp pdns-$pkgver/pdns/pdns.conf-dist pdns.conf
 
-  # Using setconf for setting the configuration options will make
-  # more sense in the next version of setconf, where uncommenting code
-  # will be supported.
+  # Setting the default configuration options.
   for keyvalue in \
 allow-recursion=127.0.0.1 \
 cache-ttl=6 \
@@ -67,7 +62,7 @@
 --docdir=/usr/share/doc/powerdns \
 --sbindir=/usr/bin \
 --bindir=/usr/bin
-  make  
+  make
 }
 
 package() {

Modified: pdns.install
===
--- pdns.install2015-02-14 22:40:44 UTC (rev 127722)
+++ pdns.install2015-02-14 22:43:06 UTC (rev 127723)
@@ -1,10 +1,9 @@
-# ref FS#42984
 post_upgrade() {
   echo
-  echo 'NOTE: The database schema has been changed.'
-  echo 'See also: http://doc.powerdns.com/md/authoritative/upgrading/'
+  echo 'See http://doc.powerdns.com/md/authoritative/upgrading/ for'
+  echo 'information about changes when upgrading.
   echo
-  echo 'You may also need to:'
+  echo 'If upgrading from an older version, you may also need to:'
   echo 'setconf /etc/powerdns/pdns.conf module-dir=/usr/lib/powerdns'
   echo
 }


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

2015-02-14 Thread Jerome Leclanche
Date: Saturday, February 14, 2015 @ 23:58:30
  Author: jleclanche
Revision: 127727

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

Added:
  lxqt-panel/repos/community-i686/
  lxqt-panel/repos/community-i686/PKGBUILD
(from rev 127726, lxqt-panel/trunk/PKGBUILD)
  lxqt-panel/repos/community-x86_64/
  lxqt-panel/repos/community-x86_64/PKGBUILD
(from rev 127726, lxqt-panel/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   41 +
 community-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: lxqt-panel/repos/community-i686/PKGBUILD (from rev 127726, 
lxqt-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 22:58:30 UTC (rev 127727)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-panel
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt desktop panel
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(
+   libxcomposite kguiaddons lxmenu-data
+   lxqt-common liblxqt-mount lxqt-globalkeys
+)
+optdepends=(
+   alsa-lib: Alsa support in volume control plugin
+   libpulse: PulseAudio support in volume control plugin
+   lm_sensors: Battery plugin
+   libstatgrab: Network and CPU monitor plugin
+   libsysstat: Network/CPU monitor plugin
+   menu-cache: Improved performance for main menu plugin
+)
+makedepends=(cmake qt5-tools alsa-lib libpulse lm_sensors 
libstatgrab libsysstat)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-panel/repos/community-x86_64/PKGBUILD (from rev 127726, 
lxqt-panel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 22:58:30 UTC (rev 127727)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-panel
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=The LXQt desktop panel
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(
+   libxcomposite kguiaddons lxmenu-data
+   lxqt-common liblxqt-mount lxqt-globalkeys
+)
+optdepends=(
+   alsa-lib: Alsa support in volume control plugin
+   libpulse: PulseAudio support in volume control plugin
+   lm_sensors: Battery plugin
+   libstatgrab: Network and CPU monitor plugin
+   libsysstat: Network/CPU monitor plugin
+   menu-cache: Improved performance for main menu plugin
+)
+makedepends=(cmake qt5-tools alsa-lib libpulse lm_sensors 
libstatgrab libsysstat)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(96b2c2f1b7de7605ac79f094936e6fcf8f0034342e11d84624a033f2450f6bf1)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Sunday, February 15, 2015 @ 00:02:16
  Author: jleclanche
Revision: 127728

lxqt-session: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-session/
  lxqt-session/repos/
  lxqt-session/trunk/
  lxqt-session/trunk/PKGBUILD

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

Added: lxqt-session/trunk/PKGBUILD
===
--- lxqt-session/trunk/PKGBUILD (rev 0)
+++ lxqt-session/trunk/PKGBUILD 2015-02-14 23:02:16 UTC (rev 127728)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-session
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt session
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt lxqt-common)
+optdepends=(sddm: The recommended LXQt display manager)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c543ffb938e230c144399b59c99c53ee69fd0b37ff404a02576ce1179a551d06)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Jerome Leclanche
Date: Sunday, February 15, 2015 @ 00:02:37
  Author: jleclanche
Revision: 127729

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

Added:
  lxqt-session/repos/community-i686/
  lxqt-session/repos/community-i686/PKGBUILD
(from rev 127728, lxqt-session/trunk/PKGBUILD)
  lxqt-session/repos/community-x86_64/
  lxqt-session/repos/community-x86_64/PKGBUILD
(from rev 127728, lxqt-session/trunk/PKGBUILD)

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

Copied: lxqt-session/repos/community-i686/PKGBUILD (from rev 127728, 
lxqt-session/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 23:02:37 UTC (rev 127729)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-session
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt session
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt lxqt-common)
+optdepends=(sddm: The recommended LXQt display manager)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c543ffb938e230c144399b59c99c53ee69fd0b37ff404a02576ce1179a551d06)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-session/repos/community-x86_64/PKGBUILD (from rev 127728, 
lxqt-session/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 23:02:37 UTC (rev 127729)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-session
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt session
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(liblxqt lxqt-common)
+optdepends=(sddm: The recommended LXQt display manager)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(c543ffb938e230c144399b59c99c53ee69fd0b37ff404a02576ce1179a551d06)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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

2015-02-14 Thread Jerome Leclanche
Date: Sunday, February 15, 2015 @ 00:17:11
  Author: jleclanche
Revision: 127731

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

Added:
  lxqt-notificationd/repos/community-i686/
  lxqt-notificationd/repos/community-i686/PKGBUILD
(from rev 127730, lxqt-notificationd/trunk/PKGBUILD)
  lxqt-notificationd/repos/community-x86_64/
  lxqt-notificationd/repos/community-x86_64/PKGBUILD
(from rev 127730, lxqt-notificationd/trunk/PKGBUILD)

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

Copied: lxqt-notificationd/repos/community-i686/PKGBUILD (from rev 127730, 
lxqt-notificationd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-14 23:17:11 UTC (rev 127731)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-notificationd
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt notification daemon and library.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-common liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(f33f8086319ed9d4cffddaed76925db5d79716e90d1112e5b124c95594a74b24)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}

Copied: lxqt-notificationd/repos/community-x86_64/PKGBUILD (from rev 127730, 
lxqt-notificationd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-14 23:17:11 UTC (rev 127731)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-notificationd
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt notification daemon and library.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-common liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(f33f8086319ed9d4cffddaed76925db5d79716e90d1112e5b124c95594a74b24)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2015-02-14 Thread Jerome Leclanche
Date: Sunday, February 15, 2015 @ 00:16:42
  Author: jleclanche
Revision: 127730

lxqt-notificationd: Upstream release 0.9 (Moved from AUR)

Added:
  lxqt-notificationd/
  lxqt-notificationd/repos/
  lxqt-notificationd/trunk/
  lxqt-notificationd/trunk/PKGBUILD

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

Added: lxqt-notificationd/trunk/PKGBUILD
===
--- lxqt-notificationd/trunk/PKGBUILD   (rev 0)
+++ lxqt-notificationd/trunk/PKGBUILD   2015-02-14 23:16:42 UTC (rev 127730)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche jer...@leclan.ch
+
+pkgname=lxqt-notificationd
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=LXQt notification daemon and library.
+arch=(i686 x86_64)
+groups=(lxqt)
+url=http://lxqt.org;
+license=(GPL2)
+depends=(lxqt-common liblxqt)
+makedepends=(cmake qt5-tools)
+source=(http://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=(f33f8086319ed9d4cffddaed76925db5d79716e90d1112e5b124c95594a74b24)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake $srcdir/$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR=$pkgdir install
+}


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


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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:43:36
  Author: seblu
Revision: 231401

upgpkg: wayland 1.7.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 23:37:34 UTC (rev 231400)
+++ PKGBUILD2015-02-14 23:43:36 UTC (rev 231401)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.6.1
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -11,9 +11,9 @@
 url='http://wayland.freedesktop.org'
 license=('MIT')
 depends=('libffi' 'expat')
-makedepends=('doxygen')
+makedepends=('doxygen' 'xmlto' 'graphviz')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('cda1d24762cd5d14ae5bcadd9e5b0cdfce3d8b11')
+sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
 
 build() {
   cd $pkgname-$pkgver
@@ -29,3 +29,5 @@
   make DESTDIR=$pkgdir install
   install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
+
+# vim:set ts=2 sw=2 et:


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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:43:47
  Author: seblu
Revision: 231402

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

Added:
  wayland/repos/staging-i686/
  wayland/repos/staging-i686/PKGBUILD
(from rev 231401, wayland/trunk/PKGBUILD)
  wayland/repos/staging-x86_64/
  wayland/repos/staging-x86_64/PKGBUILD
(from rev 231401, wayland/trunk/PKGBUILD)

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

Copied: wayland/repos/staging-i686/PKGBUILD (from rev 231401, 
wayland/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-14 23:43:47 UTC (rev 231402)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=wayland
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libffi' 'expat')
+makedepends=('doxygen' 'xmlto' 'graphviz')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Copied: wayland/repos/staging-x86_64/PKGBUILD (from rev 231401, 
wayland/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-02-14 23:43:47 UTC (rev 231402)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=wayland
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libffi' 'expat')
+makedepends=('doxygen' 'xmlto' 'graphviz')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:47:49
  Author: seblu
Revision: 127733

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

Added:
  weston/repos/staging-i686/
  weston/repos/staging-i686/PKGBUILD
(from rev 127732, weston/trunk/PKGBUILD)
  weston/repos/staging-x86_64/
  weston/repos/staging-x86_64/PKGBUILD
(from rev 127732, weston/trunk/PKGBUILD)

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

Copied: weston/repos/staging-i686/PKGBUILD (from rev 127732, 
weston/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-14 23:47:49 UTC (rev 127733)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/weston \
+   --enable-libinput-backend \
+   --enable-demo-clients-install
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   # license
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: weston/repos/staging-x86_64/PKGBUILD (from rev 127732, 
weston/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-02-14 23:47:49 UTC (rev 127733)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/weston \
+   --enable-libinput-backend \
+   --enable-demo-clients-install
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   # license
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}


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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:47:37
  Author: seblu
Revision: 127732

upgpkg: weston 1.7.0-1

Modified:
  weston/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 23:17:11 UTC (rev 127731)
+++ PKGBUILD2015-02-14 23:47:37 UTC (rev 127732)
@@ -3,7 +3,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=weston
-pkgver=1.6.1
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Reference implementation of a Wayland compositor'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('MIT')
 depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('ef3a7b744f64b761b2f2c2fee1e9a8512adf78a1')
+sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
 
 build() {
cd $pkgname-$pkgver


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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:55:22
  Author: seblu
Revision: 127734

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

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

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

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-02-14 23:47:49 UTC (rev 127733)
+++ staging-i686/PKGBUILD   2015-02-14 23:55:22 UTC (rev 127734)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=weston
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='Reference implementation of a Wayland compositor'
-arch=('i686' 'x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
-source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/weston \
-   --enable-libinput-backend \
-   --enable-demo-clients-install
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-   # license
-   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: weston/repos/staging-i686/PKGBUILD (from rev 127733, 
weston/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-14 23:55:22 UTC (rev 127734)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/weston \
+   --enable-libinput-backend \
+   --enable-demo-clients-install
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   # license
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2015-02-14 23:47:49 UTC (rev 127733)
+++ staging-x86_64/PKGBUILD 2015-02-14 23:55:22 UTC (rev 127734)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=weston
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='Reference implementation of a Wayland compositor'
-arch=('i686' 'x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
-source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/weston \
-   --enable-libinput-backend \
-   --enable-demo-clients-install
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-   # license
-   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: weston/repos/staging-x86_64/PKGBUILD (from rev 127733, 
weston/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-02-14 23:55:22 UTC (rev 127734)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')

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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:57:38
  Author: seblu
Revision: 127735

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

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

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

Copied: weston/repos/community-staging-i686/PKGBUILD (from rev 127734, 
weston/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-14 23:57:38 UTC (rev 127735)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/weston \
+   --enable-libinput-backend \
+   --enable-demo-clients-install
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   # license
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: weston/repos/community-staging-x86_64/PKGBUILD (from rev 127734, 
weston/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-02-14 23:57:38 UTC (rev 127735)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('931a7a99a0b8ca03c28cd277525c5176dd7e02ce')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/weston \
+   --enable-libinput-backend \
+   --enable-demo-clients-install
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   # license
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}