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

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 18:31:37
  Author: arojas
Revision: 251961

Sort

Modified:
  plasma-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 17:30:25 UTC (rev 251960)
+++ PKGBUILD2015-11-25 17:31:37 UTC (rev 251961)
@@ -14,6 +14,8 @@
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;

"bug355577.patch::https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=9ccc62=plain;)
+md5sums=('bf64d612d33c73c51841d74540cc119f'
+ '0494f166e36aec137472057120abcf3c')
 
 prepare() {
   mkdir -p build
@@ -39,5 +41,3 @@
   cd build
   make DESTDIR="${pkgdir}" install
 }
-md5sums=('bf64d612d33c73c51841d74540cc119f'
- '0494f166e36aec137472057120abcf3c')


[arch-commits] Commit in tigervnc/trunk (6 files)

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 17:20:48
  Author: spupykin
Revision: 147790

upgpkg: tigervnc 1.5.0-2

upd

Added:
  tigervnc/trunk/xorg118.patch
Modified:
  tigervnc/trunk/PKGBUILD
Deleted:
  tigervnc/trunk/0001-Raise-GnuTLS-requirements-to-3.x.patch
  tigervnc/trunk/compile_fix.patch
  tigervnc/trunk/getmaster.patch
  tigervnc/trunk/xorg117.patch

-+
 0001-Raise-GnuTLS-requirements-to-3.x.patch |  726 --
 PKGBUILD|   18 
 compile_fix.patch   |   13 
 getmaster.patch |   96 ---
 xorg117.patch   |   44 -
 xorg118.patch   |   27 
 6 files changed, 33 insertions(+), 891 deletions(-)

Deleted: 0001-Raise-GnuTLS-requirements-to-3.x.patch
===
--- 0001-Raise-GnuTLS-requirements-to-3.x.patch 2015-11-25 14:53:26 UTC (rev 
147789)
+++ 0001-Raise-GnuTLS-requirements-to-3.x.patch 2015-11-25 16:20:48 UTC (rev 
147790)
@@ -1,726 +0,0 @@
-From 88c24edd8f7a793561104be50b6ecf2c85b42956 Mon Sep 17 00:00:00 2001
-From: Pierre Ossman 
-Date: Thu, 29 Jan 2015 13:12:22 +0100
-Subject: [PATCH] Raise GnuTLS requirements to 3.x
-
-This allows us to simplify things by getting rid of some old
-compatibility code. People should really be using current versions
-of GnuTLS anyway to stay secure.

- BUILDING.txt|   2 +-
- CMakeLists.txt  |  24 --
- common/os/CMakeLists.txt|   3 +-
- common/os/tls.cxx   | 198 
- common/os/tls.h |  59 -
- common/rdr/TLSErrno.h   |  46 --
- common/rdr/TLSInStream.cxx  |  11 ++-
- common/rdr/TLSInStream.h|   6 +-
- common/rdr/TLSOutStream.cxx |   9 +-
- common/rdr/TLSOutStream.h   |   6 +-
- common/rfb/CSecurityTLS.cxx |  31 ---
- common/rfb/CSecurityTLS.h   |   6 +-
- common/rfb/SSecurityTLS.cxx |  23 +++--
- common/rfb/SSecurityTLS.h   |  10 +--
- config.h.in |   7 --
- 15 files changed, 60 insertions(+), 381 deletions(-)
- delete mode 100644 common/os/tls.cxx
- delete mode 100644 common/os/tls.h
- delete mode 100644 common/rdr/TLSErrno.h
-
-diff --git a/BUILDING.txt b/BUILDING.txt
-index 0cb830b..67a4f08 100644
 a/BUILDING.txt
-+++ b/BUILDING.txt
-@@ -12,7 +12,7 @@ Build Requirements (All Systems)
- -- FLTK 1.3.3 or later
- 
- -- If building TLS support:
--   * GnuTLS
-+   * GnuTLS 3.x
-* See "Building TLS Support" below.
- 
- -- If building native language support (NLS):
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c7e6349..882077a 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -236,30 +236,6 @@ if(ENABLE_GNUTLS)
- include_directories(${GNUTLS_INCLUDE_DIR})
- add_definitions("-DHAVE_GNUTLS")
- add_definitions(${GNUTLS_DEFINITIONS})
--
--# Detect old version of GnuTLS
--set(CMAKE_REQUIRED_FLAGS -I${GNUTLS_INCLUDE_DIR})
--set(CMAKE_EXTRA_INCLUDE_FILES gnutls/gnutls.h)
--set(CMAKE_REQUIRED_LIBRARIES ${GNUTLS_LIBRARIES})
--if(WIN32)
--  set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ws2_32 user32)
--endif()
--if(ZLIB_FOUND)
--  # When we build against the static version of GnuTLS, we also use the
--  # included version of Zlib, but it isn't built yet, so we have to use 
the
--  # system's version (if available) to perform this test.
--  set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES};-lz)
--endif()
--check_function_exists(gnutls_transport_set_errno HAVE_GNUTLS_SET_ERRNO)
--check_function_exists(gnutls_transport_set_global_errno 
HAVE_GNUTLS_SET_GLOBAL_ERRNO)
--check_function_exists(gnutls_x509_crt_print HAVE_GNUTLS_X509_CRT_PRINT)
--check_type_size(gnutls_x509_crt_t GNUTLS_X509_CRT_T)
--check_type_size(gnutls_datum_t GNUTLS_DATUM_T)
--check_type_size(gnutls_pk_algorithm_t GNUTLS_PK_ALGORITHM_T)
--check_type_size(gnutls_sign_algorithm_t GNUTLS_SIGN_ALGORITHM_T)
--set(CMAKE_REQUIRED_FLAGS)
--set(CMAKE_EXTRA_INCLUDE_FILES) 
--set(CMAKE_REQUIRED_LIBRARIES)
-   endif()
- endif()
- 
-diff --git a/common/os/CMakeLists.txt b/common/os/CMakeLists.txt
-index fd3794d..f082eef 100644
 a/common/os/CMakeLists.txt
-+++ b/common/os/CMakeLists.txt
-@@ -2,8 +2,7 @@ include_directories(${CMAKE_SOURCE_DIR}/common)
- 
- add_library(os STATIC
-   w32tiger.c
--  os.cxx
--  tls.cxx)
-+  os.cxx)
- 
- if(UNIX)
-   libtool_create_control_file(os)
-diff --git a/common/os/tls.cxx b/common/os/tls.cxx
-deleted file mode 100644
-index c092996..000
 a/common/os/tls.cxx
-+++ /dev/null
-@@ -1,198 +0,0 @@
--/* Copyright (C) 2011 TightVNC Team.  All Rights Reserved.
-- *
-- * This is free software; you can redistribute it and/or modify
-- * it under the terms of the GNU General Public License as published by
-- * the Free Software 

[arch-commits] Commit in tigervnc/repos (26 files)

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 17:21:26
  Author: spupykin
Revision: 147791

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

Added:
  tigervnc/repos/community-i686/PKGBUILD
(from rev 147790, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-i686/gethomedir.patch
(from rev 147790, tigervnc/trunk/gethomedir.patch)
  tigervnc/repos/community-i686/vncserver.service
(from rev 147790, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-i686/vncviewer.desktop
(from rev 147790, tigervnc/trunk/vncviewer.desktop)
  tigervnc/repos/community-i686/xorg118.patch
(from rev 147790, tigervnc/trunk/xorg118.patch)
  tigervnc/repos/community-x86_64/PKGBUILD
(from rev 147790, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-x86_64/gethomedir.patch
(from rev 147790, tigervnc/trunk/gethomedir.patch)
  tigervnc/repos/community-x86_64/vncserver.service
(from rev 147790, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-x86_64/vncviewer.desktop
(from rev 147790, tigervnc/trunk/vncviewer.desktop)
  tigervnc/repos/community-x86_64/xorg118.patch
(from rev 147790, tigervnc/trunk/xorg118.patch)
Deleted:
  tigervnc/repos/community-i686/0001-Raise-GnuTLS-requirements-to-3.x.patch
  tigervnc/repos/community-i686/PKGBUILD
  tigervnc/repos/community-i686/compile_fix.patch
  tigervnc/repos/community-i686/gethomedir.patch
  tigervnc/repos/community-i686/getmaster.patch
  tigervnc/repos/community-i686/vncserver.service
  tigervnc/repos/community-i686/vncviewer.desktop
  tigervnc/repos/community-i686/xorg117.patch
  tigervnc/repos/community-x86_64/0001-Raise-GnuTLS-requirements-to-3.x.patch
  tigervnc/repos/community-x86_64/PKGBUILD
  tigervnc/repos/community-x86_64/compile_fix.patch
  tigervnc/repos/community-x86_64/gethomedir.patch
  tigervnc/repos/community-x86_64/getmaster.patch
  tigervnc/repos/community-x86_64/vncserver.service
  tigervnc/repos/community-x86_64/vncviewer.desktop
  tigervnc/repos/community-x86_64/xorg117.patch

--+
 /PKGBUILD|  144 +
 /gethomedir.patch|   40 
 /vncserver.service   |   58 
 /vncviewer.desktop   |   18 
 community-i686/0001-Raise-GnuTLS-requirements-to-3.x.patch   |  726 --
 community-i686/PKGBUILD  |   78 -
 community-i686/compile_fix.patch |   13 
 community-i686/gethomedir.patch  |   20 
 community-i686/getmaster.patch   |   96 -
 community-i686/vncserver.service |   29 
 community-i686/vncviewer.desktop |9 
 community-i686/xorg117.patch |   44 
 community-i686/xorg118.patch |   27 
 community-x86_64/0001-Raise-GnuTLS-requirements-to-3.x.patch |  726 --
 community-x86_64/PKGBUILD|   78 -
 community-x86_64/compile_fix.patch   |   13 
 community-x86_64/gethomedir.patch|   20 
 community-x86_64/getmaster.patch |   96 -
 community-x86_64/vncserver.service   |   29 
 community-x86_64/vncviewer.desktop   |9 
 community-x86_64/xorg117.patch   |   44 
 community-x86_64/xorg118.patch   |   27 
 22 files changed, 314 insertions(+), 2030 deletions(-)

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


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

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 18:30:25
  Author: arojas
Revision: 251960

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

Added:
  plasma-framework/repos/extra-i686/PKGBUILD
(from rev 251959, plasma-framework/trunk/PKGBUILD)
  plasma-framework/repos/extra-x86_64/PKGBUILD
(from rev 251959, plasma-framework/trunk/PKGBUILD)
Deleted:
  plasma-framework/repos/extra-i686/PKGBUILD
  plasma-framework/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-25 17:29:42 UTC (rev 251959)
+++ extra-i686/PKGBUILD 2015-11-25 17:30:25 UTC (rev 251960)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.16.0
-pkgrel=1
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/plasma-framework'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities-frameworks')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('bf64d612d33c73c51841d74540cc119f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DQML_INSTALL_DIR=lib/qt/qml \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-framework/repos/extra-i686/PKGBUILD (from rev 251959, 
plasma-framework/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-25 17:30:25 UTC (rev 251960)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-framework
+pkgver=5.16.0
+pkgrel=2
+pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/plasma-framework'
+license=('LGPL')
+depends=('qt5-quickcontrols' 'kactivities-frameworks')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
+   
"bug355577.patch::https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=9ccc62=plain;)
+
+prepare() {
+  mkdir -p build
+
+# Fix crash in SDDM https://bugs.kde.org/show_bug.cgi?id=355577
+  cd $pkgname-$pkgver
+  patch -p1 -i ../bug355577.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DQML_INSTALL_DIR=lib/qt/qml \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('bf64d612d33c73c51841d74540cc119f'
+ '0494f166e36aec137472057120abcf3c')

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-25 17:29:42 UTC (rev 251959)
+++ extra-x86_64/PKGBUILD   2015-11-25 17:30:25 UTC (rev 251960)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.16.0
-pkgrel=1
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/plasma-framework'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities-frameworks')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('bf64d612d33c73c51841d74540cc119f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DQML_INSTALL_DIR=lib/qt/qml \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-framework/repos/extra-x86_64/PKGBUILD (from rev 251959, 
plasma-framework/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   

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

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 18:29:42
  Author: arojas
Revision: 251959

Fix crash in SDDM (FS#47121)

Modified:
  plasma-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 13:17:24 UTC (rev 251958)
+++ PKGBUILD2015-11-25 17:29:42 UTC (rev 251959)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/plasma-framework'
@@ -12,11 +12,15 @@
 depends=('qt5-quickcontrols' 'kactivities-frameworks')
 makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
 groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('bf64d612d33c73c51841d74540cc119f')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
+   
"bug355577.patch::https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=9ccc62=plain;)
 
 prepare() {
   mkdir -p build
+
+# Fix crash in SDDM https://bugs.kde.org/show_bug.cgi?id=355577
+  cd $pkgname-$pkgver
+  patch -p1 -i ../bug355577.patch
 }
 
 build() {
@@ -35,3 +39,5 @@
   cd build
   make DESTDIR="${pkgdir}" install
 }
+md5sums=('bf64d612d33c73c51841d74540cc119f'
+ '0494f166e36aec137472057120abcf3c')


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

2015-11-25 Thread Jan Steffens
Date: Wednesday, November 25, 2015 @ 23:55:07
  Author: heftig
Revision: 251967

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

Added:
  glib2/repos/testing-i686/
  glib2/repos/testing-i686/PKGBUILD
(from rev 251966, glib2/trunk/PKGBUILD)
  glib2/repos/testing-i686/memleak.patch
(from rev 251966, glib2/trunk/memleak.patch)
  glib2/repos/testing-i686/revert-warn-glib-compile-schemas.patch
(from rev 251966, glib2/trunk/revert-warn-glib-compile-schemas.patch)
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 251966, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/memleak.patch
(from rev 251966, glib2/trunk/memleak.patch)
  glib2/repos/testing-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 251966, glib2/trunk/revert-warn-glib-compile-schemas.patch)

---+
 testing-i686/PKGBUILD |   69 
 testing-i686/memleak.patch|   25 +
 testing-i686/revert-warn-glib-compile-schemas.patch   |   33 +++
 testing-x86_64/PKGBUILD   |   69 
 testing-x86_64/memleak.patch  |   25 +
 testing-x86_64/revert-warn-glib-compile-schemas.patch |   33 +++
 6 files changed, 254 insertions(+)

Copied: glib2/repos/testing-i686/PKGBUILD (from rev 251966, 
glib2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-11-25 22:55:07 UTC (rev 251967)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.46.2
+pkgrel=2
+pkgdesc="Common C routines used by GTK+ and other libs"
+url="http://www.gtk.org/;
+arch=(i686 x86_64)
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'libelf')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
+revert-warn-glib-compile-schemas.patch memleak.patch)
+sha256sums=('5031722e37036719c1a09163cc6cf7c326e4c4f1f1e074b433c156862bd733db'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97'
+'8337eeba4a32133d41575c8338fca32ac6a867e6e4a4e021355fcdeb606420a6')
+
+prepare() {
+  cd glib-$pkgver
+  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+  patch -Np1 -i ../memleak.patch
+}
+  
+build() {
+  cd glib-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+check() {
+  cd glib-$pkgver
+  #make -k check || :
+}
+
+package_glib2() {
+  depends=('pcre' 'libffi')
+  optdepends=('python2: for gdbus-codegen and gtester-report'
+  'libelf: gresource inspection tool')
+  options=('!docs' '!emptydirs')
+  license=('LGPL')
+
+  cd glib-$pkgver
+  make completiondir=/usr/share/bash-completion/completions DESTDIR="$pkgdir" 
install
+
+  for _i in "$pkgdir/usr/share/bash-completion/completions/"*; do
+  chmod -x "$_i"
+  done
+
+  # Our gdb does not ship the required python modules, so remove it
+  rm -rf "$pkgdir/usr/share/gdb/"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for glib2"
+  conflicts=('gobject2-docs')
+  replaces=('gobject2-docs')
+  license=('custom')
+  options=('docs' '!emptydirs')
+  
+  cd glib-$pkgver/docs
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/glib2-docs"
+  install -m644 reference/COPYING "${pkgdir}/usr/share/licenses/glib2-docs/"
+
+  rm -rf "${pkgdir}/usr/share/man"
+}

Copied: glib2/repos/testing-i686/memleak.patch (from rev 251966, 
glib2/trunk/memleak.patch)
===
--- testing-i686/memleak.patch  (rev 0)
+++ testing-i686/memleak.patch  2015-11-25 22:55:07 UTC (rev 251967)
@@ -0,0 +1,25 @@
+From db641e32920ee8b553ab6f2d318aafa156e4390c Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Wed, 25 Nov 2015 23:29:18 +0200
+Subject: GDBusProxy: Fix a memory leak during initialization
+
+https://bugzilla.gnome.org/show_bug.cgi?id=758641
+---
+ gio/gdbusproxy.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/gio/gdbusproxy.c b/gio/gdbusproxy.c
+index 52a22fb..7b1140f 100644
+--- a/gio/gdbusproxy.c
 b/gio/gdbusproxy.c
+@@ -1720,6 +1720,7 @@ async_initable_init_second_finish (GAsyncInitable  
*initable,
+   if (result != NULL)
+ {
+   process_get_all_reply (proxy, result);
++  g_variant_unref (result);
+ }
+ 
+   proxy->priv->initialized = TRUE;
+-- 
+cgit v0.11.2
+

Copied: glib2/repos/testing-i686/revert-warn-glib-compile-schemas.patch (from 
rev 251966, glib2/trunk/revert-warn-glib-compile-schemas.patch)
===
--- 

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

2015-11-25 Thread Daniel Micay
Date: Thursday, November 26, 2015 @ 01:21:09
  Author: thestinger
Revision: 147800

upgpkg: linux-grsec 4.2.6.201511232037-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 23:11:23 UTC (rev 147799)
+++ PKGBUILD2015-11-26 00:21:09 UTC (rev 147800)
@@ -9,7 +9,7 @@
 _srcname=linux-4.2
 _pkgver=4.2.6
 _grsecver=3.1
-_timestamp=201511211841
+_timestamp=201511232037
 _grsec_patch="grsecurity-$_grsecver-$_pkgver-$_timestamp.patch"
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -36,7 +36,7 @@
 'SKIP'
 '419f91fa4a6bb0d2c160ef6812341e5aac7e776550efe1d0958ae3b1ce0ea8ce'
 'SKIP'
-'398c63947463c27b1722509ed068eb1e87ff1a8e39cea77b3834d413ee0f9445'
+'28bf457d638de8d308bd1bba7871b59103a2392809b3457e90fb5670f4c7af8c'
 'SKIP'
 '2b83adabea3b0d0d70c257e041018b4024b1b7040c883b4ef2ef456acbc3d7e2'
 'ff22c57ead579fbc10f80cb36a962bb2ae2ae230813a889649259d29cc96bf42'


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

2015-11-25 Thread Jaroslav Lichtblau
Date: Thursday, November 26, 2015 @ 00:11:11
  Author: jlichtblau
Revision: 147798

upgpkg: wammu 0.40-1 - new upstream release

Modified:
  wammu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 21:00:57 UTC (rev 147797)
+++ PKGBUILD2015-11-25 23:11:11 UTC (rev 147798)
@@ -5,8 +5,8 @@
 # Contributor: cs-cam 
 
 pkgname=wammu
-pkgver=0.39
-pkgrel=2
+pkgver=0.40
+pkgrel=1
 pkgdesc="A wxPython-based GUI for Gammu"
 arch=('any')
 url="http://wammu.eu/;
@@ -16,7 +16,7 @@
 'python2-pybluez: Bluetooth support'
 'notification-daemon: Notifications support')
 source=(http://downloads.sourceforge.net/gammu/$pkgname-$pkgver.tar.bz2)
-md5sums=('064eefd6477e77193936447826a6afde')
+sha256sums=('cffd4fc6cc7b9433b3f589d51671a5ac5e188abbf676ebe0ce94011933fdb2ff')
 
 
 build() {


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

2015-11-25 Thread Jaroslav Lichtblau
Date: Thursday, November 26, 2015 @ 00:11:23
  Author: jlichtblau
Revision: 147799

archrelease: copy trunk to community-any

Added:
  wammu/repos/community-any/PKGBUILD
(from rev 147798, wammu/trunk/PKGBUILD)
Deleted:
  wammu/repos/community-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-25 23:11:11 UTC (rev 147798)
+++ PKGBUILD2015-11-25 23:11:23 UTC (rev 147799)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Ray Rashif 
-# Contributor: Corrado 'bardo' Primier 
-# Contributor: cs-cam 
-
-pkgname=wammu
-pkgver=0.39
-pkgrel=2
-pkgdesc="A wxPython-based GUI for Gammu"
-arch=('any')
-url="http://wammu.eu/;
-license=('GPL')
-depends=('python2-gammu' 'wxpython')
-optdepends=('gnome-bluetooth: Bluetooth support'
-'python2-pybluez: Bluetooth support'
-'notification-daemon: Notifications support')
-source=(http://downloads.sourceforge.net/gammu/$pkgname-$pkgver.tar.bz2)
-md5sums=('064eefd6477e77193936447826a6afde')
-
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # python2 fix
-  sed -i 's_/usr/bin/env python_/usr/bin/env python2_' setup.py
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: wammu/repos/community-any/PKGBUILD (from rev 147798, 
wammu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-25 23:11:23 UTC (rev 147799)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Corrado 'bardo' Primier 
+# Contributor: cs-cam 
+
+pkgname=wammu
+pkgver=0.40
+pkgrel=1
+pkgdesc="A wxPython-based GUI for Gammu"
+arch=('any')
+url="http://wammu.eu/;
+license=('GPL')
+depends=('python2-gammu' 'wxpython')
+optdepends=('gnome-bluetooth: Bluetooth support'
+'python2-pybluez: Bluetooth support'
+'notification-daemon: Notifications support')
+source=(http://downloads.sourceforge.net/gammu/$pkgname-$pkgver.tar.bz2)
+sha256sums=('cffd4fc6cc7b9433b3f589d51671a5ac5e188abbf676ebe0ce94011933fdb2ff')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # python2 fix
+  sed -i 's_/usr/bin/env python_/usr/bin/env python2_' setup.py
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}


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

2015-11-25 Thread Evangelos Foutras
Date: Thursday, November 26, 2015 @ 01:12:54
  Author: foutrelis
Revision: 251970

upgpkg: thunderbird-i18n 38.4.0-1

New upstream release.

Modified:
  thunderbird-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 00:12:49 UTC (rev 251969)
+++ PKGBUILD2015-11-26 00:12:54 UTC (rev 251970)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=38.3.0
+pkgver=38.4.0
 pkgrel=1
 pkgdesc="Language pack for Thunderbird"
 arch=('any')
@@ -97,61 +97,61 @@
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-md5sums=('588f1bd958a7e79a9804008c9e29412e'
- '8c12ea43c1567aace0f179ef7646fd07'
- '044de68206f03dce35c71e3b7d588bf8'
- '5deb164292b6dd79955faae3a2544fcc'
- '23f086de876b2b7b615d75d77b1174b3'
- 'fedc88d7f135fd37633285f043c17f70'
- '8f37e82052982e7aab898e6d6646c4e0'
- 'cc38bc525204ffcf2fdcf0be5f43707d'
- '74fc1a1c3d996d6613d074983208f176'
- '0160f06c5f4321ce1d06d8e02ea5d47e'
- '41bebf2648aa3105700700701ab56e03'
- '8d7b02028e453e57ce8349af8efd31cc'
- '96cbe2ec9fd8c3e99d459fcde8aca612'
- 'a2adac7bf8a40b4268b9d7eae00170b2'
- '4ad1074817fdba85d5cb0a27fe834603'
- 'a380907791e9a35b76ecc5c6229cf96c'
- '9493bcee055de8598ca1841db7a53873'
- '0663cecb956c15863b42151c8a86779c'
- 'fab3cea9e12f60870fa08a1a2b35d8c2'
- 'c31e2fade4c90f51273c9a237579a672'
- 'd01795d81c0fb0b820b992b5aaeffce1'
- 'dad61ae09569230a17a5bfab3348fa17'
- '1d0f257f195aea80ed0a9678f17ceb41'
- '935fd9e4a0868bed794f052905b3fb51'
- '9257589e78c3bd1173d0305e8dc2af80'
- 'b2cd3e9821f5bb7de709ecaa3bef310d'
- '6e003fbdd46ebff647aa29674f3aab55'
- 'baa13e13fdfde728085eb3838b9a4676'
- 'ec8cff57f132e2e21656b85a3d843d55'
- 'd47d80ff2cda01f36b373e47f2990fba'
- '073be1f6de2156c1206c0e785a3ae3a7'
- '2d4d75dcac96aaf83ef16d1952843488'
- '2bd2b15120e59751b0e4bd49225d702c'
- '70c57aefc53b681448502fe3b3ec33f7'
- '9bfefc06211ea7eb7fa4737023270d3f'
- '21fdbc1d4a36faa97f049ffde6a6002f'
- 'b4528ef3fc9aa20dab2749d0df4162cd'
- 'bd8ff713a7aac67c2a1033c183ce76d9'
- '7f66592a3b562fc30447756c15ef1c4e'
- '4599093142ffc46e405d287d943106fe'
- '1720b133f13ac4d5e7f42c4031af6b63'
- '99e1a08af6e3d003693c38563a5822bd'
- 'f0a22920107a1551acdf2ea29b21e992'
- 'ca3b3d472b7ffa2be533f98c8db13e24'
- 'e7294c54dde4ea7787b2b3142fd6186e'
- 'cfc5f9182a8fdb4ed92366ba9a0b1f18'
- 'a1b56abb2afc6a0d8afaebb27103e484'
- '0cd9daf605042e37803cf7fc54879ecf'
- 'cc85c11d420d28d1a0988bdf333d1818'
- '0b8286f84dca6f047fee88819f4b90f3'
- '88af510d427fb9dfbfb0d188905a45be'
- '84ff873704603fd3d214d1e8892c4f42'
- 'ce08c159f013962aab58ba47080bedb1'
- '2d4e871fa4aeeb668d6aa6aaa881d5bc'
- 'aea97c3f742c3388fd0ce7ee45c296a1'
- 'f96b53e20e0f74dbaeaa7321399409b4'
- '8ec8f1684f14c26025451f15876d31f3'
- '4121196023946b7ea666e5e1bd696164')
+md5sums=('1e59927c295105e7d2e1bc16fc390c23'
+ 'cbe39f7570982fbe14bb47b88872cc42'
+ '63e270ad86cfb1c9f0b936d09ace2244'
+ 'f798b3df25f28a1e68feb329d5701843'
+ '4dc1b9d41af0a272a1c86fd28072d856'
+ '08f90f4f2191f33b162a6504dcf7f43f'
+ '0fd491e75f4d103101e9f38b9ac9829e'
+ '36657b1f57f59ef388d48feb3c9a6a8b'
+ '6b169e58cc71df7e6ccd2a496fbdd4d3'
+ 'ee8429f2a2f93d9cb71cd1982d513aef'
+ 'a7931af496adda7e7109464387a312c4'
+ '88fcfc480adccba61dba3fdade9e6aee'
+ 'ab69ae945dd2edcc0cfb362b91a64eef'
+ '4f7dab8e25dcbcafe20c806b9394cc37'
+ 'f457fd3d120742be7743e5b72c9d617d'
+ 'd564fb6c48e518aa1a97bab8f9f02b62'
+ 'b8106995eb0123371dd5ae10ed9e1afc'
+ '1c46683325f6084ff822de8fafc7178b'
+ 'e4c2cbc984c7acfc3267e1fb35454455'
+ 'e7f89c44def7d82ceb615e3c3b6d0a0e'
+ '23f505d211b318a7b02ac9a6f9b0fbdd'
+ '21324ea13ab0101e32303f2878256125'
+ 'd69fbf1001ca433c9bacb61316a182ef'
+ '9cc6cdba9f55d5f7e9ad90ae123e959e'
+ '87c81dd88c0d333b357d84f68fb76a34'
+ '7dabcadf0c171ba3513cad405c729ca9'
+ '0d1f4a41329c16811c91cd20f74bd492'
+ 'b82444b6c10fca3da0157f9ee9b86202'
+ 'f5ed52857b401e989bdff50be5bbf22f'
+ '889afec53783539ba6be82d4020a5292'
+ 'fdf8d0322ac2f7fbfee037ba0e1c3450'
+ 'f2ac5eec82f4b9293af3757681fa84a3'
+ '9517fcebc4e33127e2baa8416ced4892'
+ 'b9efdbb2ef0dfdb5531d652e1386098a'
+ 

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

2015-11-25 Thread Evangelos Foutras
Date: Thursday, November 26, 2015 @ 01:12:26
  Author: foutrelis
Revision: 251968

upgpkg: thunderbird 38.4.0-1

New upstream release.

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 22:55:07 UTC (rev 251967)
+++ PKGBUILD2015-11-26 00:12:26 UTC (rev 251968)
@@ -5,8 +5,8 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=38.3.0
-pkgrel=3
+pkgver=38.4.0
+pkgrel=1
 pkgdesc="Standalone Mail/News reader"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL')
@@ -23,7 +23,7 @@
 thunderbird-install-dir.patch
 vendor.js)
 options=('!emptydirs' '!makeflags')
-sha256sums=('9f3cb19a5ceabc5e8fa31f782b6d92720a77ef2c2d6c7b63b3d792cde491c961'
+sha256sums=('326a4408d6dc79890cba8466dbc337acf99df76b58dadb0ed453e5e42af7fdbe'
 '6d60c77705baae25dc9324765c420e8623173390e8d2abea66f3d0d30ce388e4'
 '3fba13d88aeb003ab0811ef739463858172ce0662a1c7d62835df3d83ddbb8fb'
 '24599eab8862476744fe1619a9a53a5b8cdcab30b3fc5767512f31d3529bd05d'


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

2015-11-25 Thread Evangelos Foutras
Date: Thursday, November 26, 2015 @ 01:12:49
  Author: foutrelis
Revision: 251969

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 251968, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/mozconfig
(from rev 251968, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 251968, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 251968, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-i686/thunderbird.install
(from rev 251968, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-i686/vendor.js
(from rev 251968, thunderbird/trunk/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 251968, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 251968, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 251968, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 251968, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/thunderbird.install
(from rev 251968, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 251968, thunderbird/trunk/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/thunderbird.install
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/thunderbird.install
  thunderbird/repos/extra-x86_64/vendor.js

+
 /PKGBUILD  |  152 +++
 /mozconfig |   86 ++
 /thunderbird-install-dir.patch |   24 +
 /thunderbird.desktop   |  346 +++
 /thunderbird.install   |   24 +
 /vendor.js |   18 +
 extra-i686/PKGBUILD|   76 -
 extra-i686/mozconfig   |   43 ---
 extra-i686/thunderbird-install-dir.patch   |   12 
 extra-i686/thunderbird.desktop |  173 -
 extra-i686/thunderbird.install |   12 
 extra-i686/vendor.js   |9 
 extra-x86_64/PKGBUILD  |   76 -
 extra-x86_64/mozconfig |   43 ---
 extra-x86_64/thunderbird-install-dir.patch |   12 
 extra-x86_64/thunderbird.desktop   |  173 -
 extra-x86_64/thunderbird.install   |   12 
 extra-x86_64/vendor.js |9 
 18 files changed, 650 insertions(+), 650 deletions(-)

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


[arch-commits] Commit in linux-grsec/repos (32 files)

2015-11-25 Thread Daniel Micay
Date: Thursday, November 26, 2015 @ 01:22:40
  Author: thestinger
Revision: 147801

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

Added:
  
linux-grsec/repos/community-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
(from rev 147800, 
linux-grsec/trunk/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch)
  
linux-grsec/repos/community-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
(from rev 147800, 
linux-grsec/trunk/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch)
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 147800, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 147800, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 147800, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 147800, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 147800, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 147800, linux-grsec/trunk/linux.preset)
  
linux-grsec/repos/community-x86_64/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
(from rev 147800, 
linux-grsec/trunk/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch)
  
linux-grsec/repos/community-x86_64/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
(from rev 147800, 
linux-grsec/trunk/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 147800, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 147800, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 147800, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 147800, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 147800, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 147800, linux-grsec/trunk/linux.preset)
Deleted:
  
linux-grsec/repos/community-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
  
linux-grsec/repos/community-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  
linux-grsec/repos/community-x86_64/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
  
linux-grsec/repos/community-x86_64/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset

--+
 /0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch   
  |  130 
 /0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch   
  |  206 
 /PKGBUILD  
  |  658 
 /change-default-console-loglevel.patch 
  |   22 
 /config
  |15602 ++
 /config.x86_64 
  |15000 +
 /linux-grsec.install   
  |   74 
 /linux.preset  
  |   28 
 community-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch 
  |   65 
 community-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch 
  |  103 
 community-i686/PKGBUILD
  |  329 
 community-i686/change-default-console-loglevel.patch   
  |   11 
 community-i686/config  
  | 7801 -
 community-i686/config.x86_64   
  | 7500 
 community-i686/linux-grsec.install 
  |   37 
 community-i686/linux.preset
  |   14 
 

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

2015-11-25 Thread Jan Steffens
Date: Wednesday, November 25, 2015 @ 23:49:41
  Author: heftig
Revision: 251965

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

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

--+
 /PKGBUILD|  130 +
 /tracker.install |   26 
 extra-i686/PKGBUILD  |   65 
 extra-i686/tracker.install   |   13 
 extra-x86_64/PKGBUILD|   65 
 extra-x86_64/tracker.install |   13 
 6 files changed, 156 insertions(+), 156 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-25 22:46:09 UTC (rev 251964)
+++ extra-i686/PKGBUILD 2015-11-25 22:49:41 UTC (rev 251965)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Sergej Pupykin 
-# Contributor: Alexander Fehr 
-
-pkgbase=tracker
-pkgname=(tracker libtracker-sparql)
-pkgver=1.6.0
-pkgrel=2
-pkgdesc="All-in-one indexer, search tool and metadata database"
-arch=(i686 x86_64)
-license=(GPL)
-makedepends=(libgee libsecret upower libexif exempi poppler-glib libgsf icu 
enca networkmanager
- gtk3 desktop-file-utils hicolor-icon-theme gobject-introspection 
intltool giflib
- gst-plugins-base-libs totem-plparser taglib libvorbis flac vala 
libgxps
- libnautilus-extension libmediaart libxslt libiptcdata libosinfo 
libcue)
-url="http://www.gnome.org;
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver:0:3}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('7e2729627224f43f8cd99c18d027a3b984e049fe924a265a9b31857566c9e28a')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/tracker \
---disable-unit-tests \
---enable-libflac \
---enable-libvorbis
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
-  make
-}
-
-package_tracker() {
-  depends=("libtracker-sparql=$pkgver-$pkgrel" libgee libsecret
-   upower libexif exempi poppler-glib libgsf enca libiptcdata libcue 
libosinfo
-   networkmanager gtk3 desktop-file-utils hicolor-icon-theme 
libmediaart libgxps taglib flac libvorbis totem-plparser gst-plugins-base-libs 
giflib)
-  optdepends=("nautilus: edit files' tracker tags")
-  groups=('gnome')
-  install=tracker.install
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  make DESTDIR="$pkgdir" -C src/libtracker-sparql uninstall
-  make DESTDIR="$pkgdir" -C src/libtracker-sparql-backend uninstall
-  make DESTDIR="$pkgdir" -C src/libtracker-data 
uninstall-libtracker_dataLTLIBRARIES
-  make DESTDIR="$pkgdir" -C src/libtracker-common 
uninstall-libtracker_commonLTLIBRARIES
-}
-
-package_libtracker-sparql() {
-  pkgdesc="$pkgdesc (SPARQL library)"
-  depends=(sqlite icu glib2 libffi pcre util-linux)
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" -C src/libtracker-common 
install-libtracker_commonLTLIBRARIES
-  make DESTDIR="$pkgdir" -C src/libtracker-data 
install-libtracker_dataLTLIBRARIES
-  make DESTDIR="$pkgdir" -C src/libtracker-sparql install
-  make DESTDIR="$pkgdir" -C src/libtracker-sparql-backend install
-}

Copied: tracker/repos/extra-i686/PKGBUILD (from rev 251964, 
tracker/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-25 22:49:41 UTC (rev 251965)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Alexander Fehr 
+
+pkgbase=tracker
+pkgname=(tracker libtracker-sparql)
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="All-in-one indexer, search tool and metadata database"
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(libgee libsecret upower libexif exempi poppler-glib libgsf icu 
enca networkmanager
+ gtk3 desktop-file-utils hicolor-icon-theme gobject-introspection 
intltool giflib
+ gst-plugins-base-libs totem-plparser taglib libvorbis flac vala 
libgxps
+ 

[arch-commits] Commit in glib2/trunk (PKGBUILD memleak.patch)

2015-11-25 Thread Jan Steffens
Date: Wednesday, November 25, 2015 @ 23:50:17
  Author: heftig
Revision: 251966

https://bugzilla.gnome.org/show_bug.cgi?id=758641

Added:
  glib2/trunk/memleak.patch
Modified:
  glib2/trunk/PKGBUILD

---+
 PKGBUILD  |8 +---
 memleak.patch |   25 +
 2 files changed, 30 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 22:49:41 UTC (rev 251965)
+++ PKGBUILD2015-11-25 22:50:17 UTC (rev 251966)
@@ -4,19 +4,21 @@
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
 pkgver=2.46.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Common C routines used by GTK+ and other libs"
 url="http://www.gtk.org/;
 arch=(i686 x86_64)
 makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'libelf')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
-revert-warn-glib-compile-schemas.patch)
+revert-warn-glib-compile-schemas.patch memleak.patch)
 sha256sums=('5031722e37036719c1a09163cc6cf7c326e4c4f1f1e074b433c156862bd733db'
-'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97'
+'8337eeba4a32133d41575c8338fca32ac6a867e6e4a4e021355fcdeb606420a6')
 
 prepare() {
   cd glib-$pkgver
   patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+  patch -Np1 -i ../memleak.patch
 }
   
 build() {

Added: memleak.patch
===
--- memleak.patch   (rev 0)
+++ memleak.patch   2015-11-25 22:50:17 UTC (rev 251966)
@@ -0,0 +1,25 @@
+From db641e32920ee8b553ab6f2d318aafa156e4390c Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Wed, 25 Nov 2015 23:29:18 +0200
+Subject: GDBusProxy: Fix a memory leak during initialization
+
+https://bugzilla.gnome.org/show_bug.cgi?id=758641
+---
+ gio/gdbusproxy.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/gio/gdbusproxy.c b/gio/gdbusproxy.c
+index 52a22fb..7b1140f 100644
+--- a/gio/gdbusproxy.c
 b/gio/gdbusproxy.c
+@@ -1720,6 +1720,7 @@ async_initable_init_second_finish (GAsyncInitable  
*initable,
+   if (result != NULL)
+ {
+   process_get_all_reply (proxy, result);
++  g_variant_unref (result);
+ }
+ 
+   proxy->priv->initialized = TRUE;
+-- 
+cgit v0.11.2
+


[arch-commits] Commit in thunderbird-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2015-11-25 Thread Evangelos Foutras
Date: Thursday, November 26, 2015 @ 01:13:07
  Author: foutrelis
Revision: 251971

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 251970, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  314 ++---
 1 file changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-26 00:12:54 UTC (rev 251970)
+++ PKGBUILD2015-11-26 00:13:07 UTC (rev 251971)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=38.3.0
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-depends=("thunderbird>=$pkgver")
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta-LK  "Tamil (Sri Lanka)"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=http://download.cdn.mozilla.net/pub/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Thunderbird"
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-md5sums=('588f1bd958a7e79a9804008c9e29412e'
- '8c12ea43c1567aace0f179ef7646fd07'
- '044de68206f03dce35c71e3b7d588bf8'
- '5deb164292b6dd79955faae3a2544fcc'
- '23f086de876b2b7b615d75d77b1174b3'
- 'fedc88d7f135fd37633285f043c17f70'
- '8f37e82052982e7aab898e6d6646c4e0'
- 'cc38bc525204ffcf2fdcf0be5f43707d'
- '74fc1a1c3d996d6613d074983208f176'
- '0160f06c5f4321ce1d06d8e02ea5d47e'
- '41bebf2648aa3105700700701ab56e03'
- '8d7b02028e453e57ce8349af8efd31cc'
- '96cbe2ec9fd8c3e99d459fcde8aca612'
- 'a2adac7bf8a40b4268b9d7eae00170b2'
- '4ad1074817fdba85d5cb0a27fe834603'
- 'a380907791e9a35b76ecc5c6229cf96c'
- '9493bcee055de8598ca1841db7a53873'
- '0663cecb956c15863b42151c8a86779c'
- 'fab3cea9e12f60870fa08a1a2b35d8c2'
- 'c31e2fade4c90f51273c9a237579a672'
- 'd01795d81c0fb0b820b992b5aaeffce1'
- 'dad61ae09569230a17a5bfab3348fa17'
- '1d0f257f195aea80ed0a9678f17ceb41'
- '935fd9e4a0868bed794f052905b3fb51'
- '9257589e78c3bd1173d0305e8dc2af80'
- 'b2cd3e9821f5bb7de709ecaa3bef310d'
- '6e003fbdd46ebff647aa29674f3aab55'
- 'baa13e13fdfde728085eb3838b9a4676'
- 'ec8cff57f132e2e21656b85a3d843d55'
- 'd47d80ff2cda01f36b373e47f2990fba'
- '073be1f6de2156c1206c0e785a3ae3a7'
- '2d4d75dcac96aaf83ef16d1952843488'
- '2bd2b15120e59751b0e4bd49225d702c'
- '70c57aefc53b681448502fe3b3ec33f7'
- '9bfefc06211ea7eb7fa4737023270d3f'
- '21fdbc1d4a36faa97f049ffde6a6002f'
- 'b4528ef3fc9aa20dab2749d0df4162cd'
- 'bd8ff713a7aac67c2a1033c183ce76d9'
- '7f66592a3b562fc30447756c15ef1c4e'
- '4599093142ffc46e405d287d943106fe'
- '1720b133f13ac4d5e7f42c4031af6b63'
- 

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

2015-11-25 Thread Jan Steffens
Date: Wednesday, November 25, 2015 @ 23:46:09
  Author: heftig
Revision: 251964

1.6.1

Modified:
  tracker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 20:28:11 UTC (rev 251963)
+++ PKGBUILD2015-11-25 22:46:09 UTC (rev 251964)
@@ -5,8 +5,8 @@
 
 pkgbase=tracker
 pkgname=(tracker libtracker-sparql)
-pkgver=1.6.0
-pkgrel=2
+pkgver=1.6.1
+pkgrel=1
 pkgdesc="All-in-one indexer, search tool and metadata database"
 arch=(i686 x86_64)
 license=(GPL)
@@ -17,7 +17,7 @@
 url="http://www.gnome.org;
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver:0:3}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('7e2729627224f43f8cd99c18d027a3b984e049fe924a265a9b31857566c9e28a')
+sha256sums=('653ed73f4f454b836df56bec1f1141c7a8d77cbeba97ea1e38df9f60a5f0c1ed')
 
 build() {
   cd $pkgbase-$pkgver


[arch-commits] Commit in deepin-dbus-factory/repos (8 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 04:18:15
  Author: fyan
Revision: 147810

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

Added:
  deepin-dbus-factory/repos/community-i686/PKGBUILD
(from rev 147809, deepin-dbus-factory/trunk/PKGBUILD)
  deepin-dbus-factory/repos/community-i686/fix-arch.patch
(from rev 147809, deepin-dbus-factory/trunk/fix-arch.patch)
  deepin-dbus-factory/repos/community-x86_64/PKGBUILD
(from rev 147809, deepin-dbus-factory/trunk/PKGBUILD)
  deepin-dbus-factory/repos/community-x86_64/fix-arch.patch
(from rev 147809, deepin-dbus-factory/trunk/fix-arch.patch)
Deleted:
  deepin-dbus-factory/repos/community-i686/PKGBUILD
  deepin-dbus-factory/repos/community-i686/fix-arch.patch
  deepin-dbus-factory/repos/community-x86_64/PKGBUILD
  deepin-dbus-factory/repos/community-x86_64/fix-arch.patch

-+
 /PKGBUILD   |   66 ++
 /fix-arch.patch |   26 ++
 community-i686/PKGBUILD |   33 ---
 community-i686/fix-arch.patch   |   13 ---
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/fix-arch.patch |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 03:17:45 UTC (rev 147809)
+++ community-i686/PKGBUILD 2015-11-26 03:18:15 UTC (rev 147810)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dbus-factory
-pkgver=2.92.1
-pkgrel=1
-pkgdesc='QML DBus factory for DDE'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/dbus-factory;
-license=('GPL3')
-depends=('qt5-declarative')
-makedepends=('git' 'deepin-dbus-generator')
-source=("git+https://github.com/linuxdeepin/dbus-factory.git#tag=$pkgver;
-fix-arch.patch)
-sha256sums=('SKIP'
-'0195e1258534ef14d8ec63cde5389f8cfad39d5308ab8ddf73966018a34bd300')
-
-prepare() {
-  cd dbus-factory
-  patch -p1 -i ../fix-arch.patch
-}
-
-build(){
-  cd dbus-factory
-  make build-qml
-}
-
-package() {
-  cd dbus-factory
-  make DESTDIR="${pkgdir}" install-qml
-}

Copied: deepin-dbus-factory/repos/community-i686/PKGBUILD (from rev 147809, 
deepin-dbus-factory/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 03:18:15 UTC (rev 147810)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dbus-factory
+pkgver=2.92.1
+pkgrel=2
+pkgdesc='QML DBus factory for DDE'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/dbus-factory;
+license=('GPL3')
+depends=('qt5-declarative' 'accountsservice')
+makedepends=('git' 'deepin-dbus-generator')
+source=("git+https://github.com/linuxdeepin/dbus-factory.git#tag=$pkgver;
+fix-arch.patch)
+sha256sums=('SKIP'
+'0195e1258534ef14d8ec63cde5389f8cfad39d5308ab8ddf73966018a34bd300')
+
+prepare() {
+  cd dbus-factory
+  patch -p1 -i ../fix-arch.patch
+}
+
+build(){
+  cd dbus-factory
+  make build-qml
+}
+
+package() {
+  cd dbus-factory
+  make DESTDIR="${pkgdir}" install-qml
+}

Deleted: community-i686/fix-arch.patch
===
--- community-i686/fix-arch.patch   2015-11-26 03:17:45 UTC (rev 147809)
+++ community-i686/fix-arch.patch   2015-11-26 03:18:15 UTC (rev 147810)
@@ -1,13 +0,0 @@
-diff -ruN a/in.json/Makefile b/in.json/Makefile
 a/in.json/Makefile  2014-12-30 20:01:39.978997830 +0100
-+++ b/in.json/Makefile  2014-12-30 20:08:45.569012561 +0100
-@@ -1,7 +1,7 @@
- PREFIX  = /usr
- 
--GOPATH := $(shell go env GOPATH)
--QT5_LIBDIR ?= $(PREFIX)/lib/qt5
-+GOPATH := $(PREFIX)/lib/go
-+QT5_LIBDIR ?= $(PREFIX)/lib/qt
- QMLDIR ?= $(QT5_LIBDIR)/qml
- 
- JSONS  := $(wildcard *.in.json)

Copied: deepin-dbus-factory/repos/community-i686/fix-arch.patch (from rev 
147809, deepin-dbus-factory/trunk/fix-arch.patch)
===
--- community-i686/fix-arch.patch   (rev 0)
+++ community-i686/fix-arch.patch   2015-11-26 03:18:15 UTC (rev 147810)
@@ -0,0 +1,13 @@
+diff -ruN a/in.json/Makefile b/in.json/Makefile
+--- a/in.json/Makefile  2014-12-30 20:01:39.978997830 +0100
 b/in.json/Makefile  2014-12-30 20:08:45.569012561 +0100
+@@ -1,7 +1,7 @@
+ PREFIX  = /usr
+ 
+-GOPATH := $(shell go env GOPATH)
+-QT5_LIBDIR ?= $(PREFIX)/lib/qt5
++GOPATH := $(PREFIX)/lib/go
++QT5_LIBDIR ?= $(PREFIX)/lib/qt
+ QMLDIR ?= $(QT5_LIBDIR)/qml
+ 
+ JSONS  := $(wildcard *.in.json)

Deleted: 

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 03:39:58
  Author: fyan
Revision: 147805

upgpkg: bower 1.6.6-1

Modified:
  bower/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 02:09:24 UTC (rev 147804)
+++ PKGBUILD2015-11-26 02:39:58 UTC (rev 147805)
@@ -5,7 +5,7 @@
 # Contributor: Tom Vincent 
 
 pkgname=bower
-pkgver=1.6.5
+pkgver=1.6.6
 pkgrel=1
 pkgdesc='A package manager for the web'
 arch=('any')
@@ -16,7 +16,7 @@
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
 LICENSE)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('0b362d6b31d9eb87fc5e3266ab8dda7f'
+md5sums=('c9ee05c0314c9a1f4c1168a214c0bbba'
  '135697567327f92e904ef0be2082da5e')
 
 package() {


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 03:40:16
  Author: fyan
Revision: 147806

archrelease: copy trunk to community-any

Added:
  bower/repos/community-any/LICENSE
(from rev 147805, bower/trunk/LICENSE)
  bower/repos/community-any/PKGBUILD
(from rev 147805, bower/trunk/PKGBUILD)
Deleted:
  bower/repos/community-any/LICENSE
  bower/repos/community-any/PKGBUILD

--+
 LICENSE  |   38 +++---
 PKGBUILD |   52 ++--
 2 files changed, 45 insertions(+), 45 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-26 02:39:58 UTC (rev 147805)
+++ PKGBUILD2015-11-26 02:40:16 UTC (rev 147806)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Micha Alt  
-# Contributor: FadeMind 
-# Contributor: Tom Vincent 
-
-pkgname=bower
-pkgver=1.6.5
-pkgrel=1
-pkgdesc='A package manager for the web'
-arch=('any')
-url='http://bower.io/'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
-LICENSE)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('0b362d6b31d9eb87fc5e3266ab8dda7f'
- '135697567327f92e904ef0be2082da5e')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: bower/repos/community-any/PKGBUILD (from rev 147805, 
bower/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-26 02:40:16 UTC (rev 147806)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Micha Alt  
+# Contributor: FadeMind 
+# Contributor: Tom Vincent 
+
+pkgname=bower
+pkgver=1.6.6
+pkgrel=1
+pkgdesc='A package manager for the web'
+arch=('any')
+url='http://bower.io/'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
+LICENSE)

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

2015-11-25 Thread Sven-Hendrik Haase
Date: Thursday, November 26, 2015 @ 03:09:24
  Author: svenstaro
Revision: 147804

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

Added:
  emscripten/repos/community-i686/PKGBUILD
(from rev 147803, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-i686/emscripten.install
(from rev 147803, emscripten/trunk/emscripten.install)
  emscripten/repos/community-i686/emscripten.sh
(from rev 147803, emscripten/trunk/emscripten.sh)
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 147803, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 147803, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 147803, emscripten/trunk/emscripten.sh)
Deleted:
  emscripten/repos/community-i686/PKGBUILD
  emscripten/repos/community-i686/emscripten.install
  emscripten/repos/community-i686/emscripten.sh
  emscripten/repos/community-x86_64/PKGBUILD
  emscripten/repos/community-x86_64/emscripten.install
  emscripten/repos/community-x86_64/emscripten.sh

-+
 /PKGBUILD   |  172 ++
 /emscripten.install |   22 
 /emscripten.sh  |   14 ++
 community-i686/PKGBUILD |   86 -
 community-i686/emscripten.install   |   11 --
 community-i686/emscripten.sh|7 -
 community-x86_64/PKGBUILD   |   86 -
 community-x86_64/emscripten.install |   11 --
 community-x86_64/emscripten.sh  |7 -
 9 files changed, 208 insertions(+), 208 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 02:09:12 UTC (rev 147803)
+++ community-i686/PKGBUILD 2015-11-26 02:09:24 UTC (rev 147804)
@@ -1,86 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-pkgver=1.35.9
-pkgrel=1
-pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript in asm.js format"
-arch=('i686' 'x86_64')
-url="http://emscripten.org;
-license=('custom')
-depends=('nodejs' 'python2')
-makedepends=('cmake' 'libxml2')
-optdepends=('java-environment: for using clojure (optimized builds)'
-'ruby: for using websockify addon')
-install=$pkgname.install
-source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
-"emscripten.sh")
-sha256sums=('bc6966366d1d7720d362bf00f4c98de49ad0b7078909123a06cb02f764d4db3c'
-'87e1ea01868e775227a57f23ea21be9d47d1fe0e73682bd4a9ef4ae73cf3a2e4'
-'df55066375dd778186c7647a465bab5b09c5506a1c4cb90727fb1798a016b1bb'
-'556dc0126a439071e2591672c27f73a470cc260f37adc4994d698c04c7617847')
-
-prepare() {
-  cd emscripten-fastcomp-$pkgver
-
-  # reset folder for out-of-source build
-  rm -rf build
-  mkdir build
-
-  # put clang source into the right place (http://git.io/i1GBkg)
-  rm -rf tools/clang
-  ln -s "$srcdir"/emscripten-fastcomp-clang-$pkgver tools/clang
-
-  # python2 shebang fixes
-  cd ../emscripten-$pkgver
-  sed '1s|python$|python2|' -i $(find third_party tools -name \*.py) emrun
-
-  # adapt config file template to use our custom environment variable and path
-  sed -e "s|getenv('LLVM')|getenv('EMSCRIPTEN_FASTCOMP')|" \
--e 's|{{{ LLVM_ROOT }}}|/usr/lib/emscripten-fastcomp|' \
--i tools/settings_template_readonly.py
-}
-
-build() {
-  cd emscripten-fastcomp-$pkgver/build
-
-  CC=gcc CXX=g++ cmake .. -DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=YES \
--DLLVM_TARGETS_TO_BUILD="X86;JSBackend" \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
--DCLANG_INCLUDE_TESTS=OFF
-  make
-}
-
-package() {
-  # exported variables
-  install -Dm755 "$srcdir"/emscripten.sh "$pkgdir"/etc/profile.d/emscripten.sh
-
-  # LLVM-backend, TODO: include only needed tools
-  cd "$srcdir"/emscripten-fastcomp-$pkgver
-  install -Dm644 emscripten-version.txt 
"$pkgdir"/usr/lib/emscripten-fastcomp/emscripten-version.txt
-  install -m755 build/bin/* "$pkgdir"/usr/lib/emscripten-fastcomp
-
-  # copy structure
-  cd "$srcdir"/emscripten-$pkgver
-  install -d "$pkgdir"/usr/lib/emscripten
-  cp -rup em* cmake site src system third_party tools 
"$pkgdir"/usr/lib/emscripten
-
-  # remove clutter
-  rm "$pkgdir"/usr/lib/emscripten-fastcomp/{*-test,llvm-lit}
-  rm "$pkgdir"/usr/lib/emscripten/*.bat
-

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

2015-11-25 Thread Sven-Hendrik Haase
Date: Thursday, November 26, 2015 @ 03:09:12
  Author: svenstaro
Revision: 147803

upgpkg: emscripten 1.35.10-1

upstream release 1.35.10

Modified:
  emscripten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 01:57:43 UTC (rev 147802)
+++ PKGBUILD2015-11-26 02:09:12 UTC (rev 147803)
@@ -4,7 +4,7 @@
 # Contributor: Vlad Kolotvin 
 
 pkgname=emscripten
-pkgver=1.35.9
+pkgver=1.35.10
 pkgrel=1
 pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript in asm.js format"
 arch=('i686' 'x86_64')
@@ -19,9 +19,9 @@
 
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
 
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
 "emscripten.sh")
-sha256sums=('bc6966366d1d7720d362bf00f4c98de49ad0b7078909123a06cb02f764d4db3c'
-'87e1ea01868e775227a57f23ea21be9d47d1fe0e73682bd4a9ef4ae73cf3a2e4'
-'df55066375dd778186c7647a465bab5b09c5506a1c4cb90727fb1798a016b1bb'
+sha256sums=('1f1319b0eab99a1dfb9b9d7e11720c6eaaf845ee19753137d9fee0ba5e1b1b74'
+'95a93088e59807410dde7880375ec056ff17489b6ae2253c2d126d47aeb7ac94'
+'a85956fda27c801e293efdec0a266a5ed6d5ec4c5d06bac01969232dba46e364'
 '556dc0126a439071e2591672c27f73a470cc260f37adc4994d698c04c7617847')
 
 prepare() {


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 03:46:51
  Author: fyan
Revision: 251973

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-26 02:46:32 UTC (rev 251972)
+++ PKGBUILD2015-11-26 02:46:51 UTC (rev 251973)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=perl-file-desktopentry
-pkgver=0.12
-pkgrel=1
-pkgdesc='Object to handle .desktop files'
-arch=('any')
-license=('GPL' 'PerlArtistic')
-url="http://search.cpan.org/dist/File-DesktopEntry/;
-depends=('perl-file-basedir')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-DesktopEntry-$pkgver.tar.gz)
-sha1sums=('11bac103879f57ac641efccd4b0390006d079447')
-
-build() {
-  cd File-DesktopEntry-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd File-DesktopEntry-$pkgver
-  make test
-}
-
-package() {
-  cd File-DesktopEntry-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: perl-file-desktopentry/repos/extra-any/PKGBUILD (from rev 251972, 
perl-file-desktopentry/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-26 02:46:51 UTC (rev 251973)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=perl-file-desktopentry
+pkgver=0.21
+pkgrel=1
+pkgdesc='Object to handle .desktop files'
+arch=('any')
+license=('GPL' 'PerlArtistic')
+url="http://search.cpan.org/dist/File-DesktopEntry/;
+depends=('perl-file-basedir' 'perl-uri')
+checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-DesktopEntry-$pkgver.tar.gz)
+sha1sums=('e7604c97639f31e4ae59ca8a49f8fd7fe2997c05')
+
+build() {
+  cd File-DesktopEntry-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd File-DesktopEntry-$pkgver
+  make test
+}
+
+package() {
+  cd File-DesktopEntry-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 03:47:09
  Author: fyan
Revision: 147808

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

Added:
  boinc/repos/community-i686/PKGBUILD
(from rev 147807, boinc/trunk/PKGBUILD)
  boinc/repos/community-i686/boinc-AM_CONDITIONAL.patch
(from rev 147807, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-i686/boinc.bash
(from rev 147807, boinc/trunk/boinc.bash)
  boinc/repos/community-i686/boinc.desktop
(from rev 147807, boinc/trunk/boinc.desktop)
  boinc/repos/community-i686/boinc.install
(from rev 147807, boinc/trunk/boinc.install)
  boinc/repos/community-i686/boinc.service
(from rev 147807, boinc/trunk/boinc.service)
  boinc/repos/community-i686/boinc.sysusers
(from rev 147807, boinc/trunk/boinc.sysusers)
  boinc/repos/community-x86_64/PKGBUILD
(from rev 147807, boinc/trunk/PKGBUILD)
  boinc/repos/community-x86_64/boinc-AM_CONDITIONAL.patch
(from rev 147807, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-x86_64/boinc.bash
(from rev 147807, boinc/trunk/boinc.bash)
  boinc/repos/community-x86_64/boinc.desktop
(from rev 147807, boinc/trunk/boinc.desktop)
  boinc/repos/community-x86_64/boinc.install
(from rev 147807, boinc/trunk/boinc.install)
  boinc/repos/community-x86_64/boinc.service
(from rev 147807, boinc/trunk/boinc.service)
  boinc/repos/community-x86_64/boinc.sysusers
(from rev 147807, boinc/trunk/boinc.sysusers)
Deleted:
  boinc/repos/community-i686/PKGBUILD
  boinc/repos/community-i686/boinc-AM_CONDITIONAL.patch
  boinc/repos/community-i686/boinc.bash
  boinc/repos/community-i686/boinc.desktop
  boinc/repos/community-i686/boinc.install
  boinc/repos/community-i686/boinc.service
  boinc/repos/community-i686/boinc.sysusers
  boinc/repos/community-x86_64/PKGBUILD
  boinc/repos/community-x86_64/boinc-AM_CONDITIONAL.patch
  boinc/repos/community-x86_64/boinc.bash
  boinc/repos/community-x86_64/boinc.desktop
  boinc/repos/community-x86_64/boinc.install
  boinc/repos/community-x86_64/boinc.service
  boinc/repos/community-x86_64/boinc.sysusers

-+
 /PKGBUILD   |  248 ++
 /boinc-AM_CONDITIONAL.patch |   38 +++
 /boinc.bash |  198 
 /boinc.desktop  |   32 +++
 /boinc.install  |   10 +
 /boinc.service  |   20 ++
 /boinc.sysusers |4 
 community-i686/PKGBUILD |  124 -
 community-i686/boinc-AM_CONDITIONAL.patch   |   19 -
 community-i686/boinc.bash   |   99 --
 community-i686/boinc.desktop|   16 -
 community-i686/boinc.install|5 
 community-i686/boinc.service|   10 -
 community-i686/boinc.sysusers   |2 
 community-x86_64/PKGBUILD   |  124 -
 community-x86_64/boinc-AM_CONDITIONAL.patch |   19 -
 community-x86_64/boinc.bash |   99 --
 community-x86_64/boinc.desktop  |   16 -
 community-x86_64/boinc.install  |5 
 community-x86_64/boinc.service  |   10 -
 community-x86_64/boinc.sysusers |2 
 21 files changed, 550 insertions(+), 550 deletions(-)

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


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 03:45:56
  Author: fyan
Revision: 147807

upgpkg: boinc 7.6.17-1

Modified:
  boinc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 02:40:16 UTC (rev 147806)
+++ PKGBUILD2015-11-26 02:45:56 UTC (rev 147807)
@@ -5,7 +5,7 @@
 
 pkgbase=boinc
 pkgname=(boinc boinc-nox)
-pkgver=7.6.12
+pkgver=7.6.17
 _tag="client_release/7.6/$pkgver"
 pkgrel=1
 arch=('i686' 'x86_64')


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 03:46:32
  Author: fyan
Revision: 251972

upgpkg: perl-file-desktopentry 0.21-1

Modified:
  perl-file-desktopentry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 00:13:07 UTC (rev 251971)
+++ PKGBUILD2015-11-26 02:46:32 UTC (rev 251972)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-file-desktopentry
-pkgver=0.20
+pkgver=0.21
 pkgrel=1
 pkgdesc='Object to handle .desktop files'
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('perl-test-pod' 'perl-test-pod-coverage')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/File-DesktopEntry-$pkgver.tar.gz)
-sha1sums=('06e228e3954cb2c3e5df717967135df23bcca495')
+sha1sums=('e7604c97639f31e4ae59ca8a49f8fd7fe2997c05')
 
 build() {
   cd File-DesktopEntry-$pkgver


[arch-commits] Commit in deepin-dbus-factory/trunk (PKGBUILD)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 04:17:45
  Author: fyan
Revision: 147809

upgpkg: deepin-dbus-factory 2.92.1-2

Modified:
  deepin-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 02:47:09 UTC (rev 147808)
+++ PKGBUILD2015-11-26 03:17:45 UTC (rev 147809)
@@ -5,12 +5,12 @@
 
 pkgname=deepin-dbus-factory
 pkgver=2.92.1
-pkgrel=1
+pkgrel=2
 pkgdesc='QML DBus factory for DDE'
 arch=('i686' 'x86_64')
 url="https://gitcafe.com/Deepin/dbus-factory;
 license=('GPL3')
-depends=('qt5-declarative')
+depends=('qt5-declarative' 'accountsservice')
 makedepends=('git' 'deepin-dbus-generator')
 source=("git+https://github.com/linuxdeepin/dbus-factory.git#tag=$pkgver;
 fix-arch.patch)


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 05:20:10
  Author: fyan
Revision: 147811

upgpkg: deepin-daemon 2.93.1-3

Added:
  deepin-daemon/trunk/get-distro-info.patch
  deepin-daemon/trunk/ishuman-via-login-defs.patch
Modified:
  deepin-daemon/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++--
 get-distro-info.patch|  119 
 ishuman-via-login-defs.patch |  132 +
 3 files changed, 260 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 03:18:15 UTC (rev 147810)
+++ PKGBUILD2015-11-26 04:20:10 UTC (rev 147811)
@@ -9,7 +9,7 @@
 _golibrev=238151791673412dedf63b3a37343c461acb
 _deepinapiver=2.92.1
 _dbusfactoryver=2.92.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;
@@ -17,7 +17,7 @@
 depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'metacity' 
'poppler-glib'
  'rfkill' 'acpid' 'bluez' 'deepin-notifications' 'iso-codes' 
'lsb-release'
  'mobile-broadband-provider-info' 'polkit-gnome' 'udisks2' 'upower' 
'gcc-go'
- 'libxkbfile') # 'xcur2png')
+ 'libxkbfile' 'accountsservice')
 makedepends=('deepin-dbus-generator' 'sqlite' 'git' 'mercurial')
 optdepends=('networkmanager: Network Management daemon'
 'deepin-grub2-themes: deepin theme for grub menu')
@@ -30,13 +30,15 @@
 "git+https://github.com/linuxdeepin/go-lib.git#commit=$_golibrev;
 
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
 "git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;
-'fix-i686-compile.patch' 'deepin-daemon.sysusers')
+'fix-i686-compile.patch' 'deepin-daemon.sysusers' 
'ishuman-via-login-defs.patch' 'get-distro-info.patch')
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
 'SKIP'
 '1dccf88c5ce480560a4a2d73134e69f05135703fe34ccd5d9e2e5d7fe852efc5'
-'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25')
+'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25'
+'182fd299b9f222ce8f94da9137fb671f95fbd32bd28becfaf8c97b9fdd488c65'
+'4b3f743b8cffc591ab5582aa4ba6a56f464cd7c279a3594e637fffac0a14df63')
 
 prepare() {
   export GOPATH="$srcdir/build"
@@ -56,6 +58,9 @@
   if [[ $CARCH == "i686" ]]; then
 patch -p1 -i ../fix-i686-compile.patch
   fi
+
+  patch -p1 -i ../ishuman-via-login-defs.patch
+  patch -p1 -i ../get-distro-info.patch
 }
 
 build() {

Added: get-distro-info.patch
===
--- get-distro-info.patch   (rev 0)
+++ get-distro-info.patch   2015-11-26 04:20:10 UTC (rev 147811)
@@ -0,0 +1,119 @@
+commit a39042ae318f404ac44196cc028e234e6b01d489
+Author: Felix Yan 
+Date:   Wed Nov 25 12:55:31 2015 +0800
+
+Add methods to get distribution info
+
+Change-Id: I915fa4a5f429430e5c183ade58bd727c7d5a2478
+
+diff --git a/systeminfo/distro.go b/systeminfo/distro.go
+new file mode 100644
+index 000..cfd5bc5
+--- /dev/null
 b/systeminfo/distro.go
+@@ -0,0 +1,51 @@
++package systeminfo
++
++import (
++  "fmt"
++)
++
++const (
++  distroFileLSB= "/etc/lsb-release"
++
++  distroIdKeyLSB   = "DISTRIB_ID"
++  distroDescKeyLSB = "DISTRIB_DESCRIPTION"
++  distroVerKeyLSB  = "DISTRIB_RELEASE"
++  distroKeyDelim   = "="
++)
++
++func getDistro() (string, string, string, error) {
++  distroId, distroDesc, distroVer, err := getDistroFromLSB(distroFileLSB)
++  if err == nil {
++  return distroId, distroDesc, distroVer, nil
++  }
++
++  return "", "", "", err
++}
++
++func getDistroFromLSB(file string) (string, string, string, error) {
++  ret, err := parseInfoFile(file, distroKeyDelim)
++  if err != nil {
++  return "", "", "", err
++  }
++
++  distroId, ok := ret[distroIdKeyLSB]
++  if !ok {
++  return "", "", "", fmt.Errorf("Cannot find the key '%s'", 
distroIdKeyLSB)
++  }
++
++  distroDesc, ok := ret[distroDescKeyLSB]
++  if !ok {
++  return "", "", "", fmt.Errorf("Cannot find the key '%s'", 
distroDescKeyLSB)
++  }
++
++  if distroDesc[0] == '"' && distroDesc[len(distroDesc) - 1] == '"' {
++  distroDesc = distroDesc[1:len(distroDesc) - 1]
++  }
++
++  distroVer, ok := ret[distroVerKeyLSB]
++  if !ok {
++  return "", "", "", fmt.Errorf("Cannot find the key '%s'", 
distroVerKeyLSB)
++  }
++
++  return distroId, distroDesc, distroVer, nil
++}
+diff --git a/systeminfo/info.go b/systeminfo/info.go
+index c905cab..808ffb7 100644
+--- a/systeminfo/info.go
 b/systeminfo/info.go
+@@ -7,8 +7,14 @@ 

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 05:21:07
  Author: fyan
Revision: 147812

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

Added:
  deepin-daemon/repos/community-i686/PKGBUILD
(from rev 147811, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-i686/deepin-daemon.install
(from rev 147811, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
(from rev 147811, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-i686/fix-i686-compile.patch
(from rev 147811, deepin-daemon/trunk/fix-i686-compile.patch)
  deepin-daemon/repos/community-i686/get-distro-info.patch
(from rev 147811, deepin-daemon/trunk/get-distro-info.patch)
  deepin-daemon/repos/community-i686/ishuman-via-login-defs.patch
(from rev 147811, deepin-daemon/trunk/ishuman-via-login-defs.patch)
  deepin-daemon/repos/community-x86_64/PKGBUILD
(from rev 147811, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
(from rev 147811, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
(from rev 147811, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-x86_64/fix-i686-compile.patch
(from rev 147811, deepin-daemon/trunk/fix-i686-compile.patch)
  deepin-daemon/repos/community-x86_64/get-distro-info.patch
(from rev 147811, deepin-daemon/trunk/get-distro-info.patch)
  deepin-daemon/repos/community-x86_64/ishuman-via-login-defs.patch
(from rev 147811, deepin-daemon/trunk/ishuman-via-login-defs.patch)
Deleted:
  deepin-daemon/repos/community-i686/PKGBUILD
  deepin-daemon/repos/community-i686/deepin-daemon.install
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
  deepin-daemon/repos/community-i686/fix-i686-compile.patch
  deepin-daemon/repos/community-x86_64/PKGBUILD
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
  deepin-daemon/repos/community-x86_64/fix-i686-compile.patch

---+
 /PKGBUILD |  158 
 /deepin-daemon.install|   26 +++
 /deepin-daemon.sysusers   |4 
 /fix-i686-compile.patch   |   24 +++
 community-i686/PKGBUILD   |   74 ---
 community-i686/deepin-daemon.install  |   13 -
 community-i686/deepin-daemon.sysusers |2 
 community-i686/fix-i686-compile.patch |   12 -
 community-i686/get-distro-info.patch  |  119 ++
 community-i686/ishuman-via-login-defs.patch   |  132 
 community-x86_64/PKGBUILD |   74 ---
 community-x86_64/deepin-daemon.install|   13 -
 community-x86_64/deepin-daemon.sysusers   |2 
 community-x86_64/fix-i686-compile.patch   |   12 -
 community-x86_64/get-distro-info.patch|  119 ++
 community-x86_64/ishuman-via-login-defs.patch |  132 
 16 files changed, 714 insertions(+), 202 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 04:20:10 UTC (rev 147811)
+++ community-i686/PKGBUILD 2015-11-26 04:21:07 UTC (rev 147812)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-daemon
-pkgver=2.93.1
-#_golibver=0.4.2
-_golibrev=238151791673412dedf63b3a37343c461acb
-_deepinapiver=2.92.1
-_dbusfactoryver=2.92.1
-pkgrel=2
-pkgdesc='Daemon handling the DDE session settings'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-daemon;
-license=('GPL3')
-depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'metacity' 
'poppler-glib'
- 'rfkill' 'acpid' 'bluez' 'deepin-notifications' 'iso-codes' 
'lsb-release'
- 'mobile-broadband-provider-info' 'polkit-gnome' 'udisks2' 'upower' 
'gcc-go'
- 'libxkbfile') # 'xcur2png')
-makedepends=('deepin-dbus-generator' 'sqlite' 'git' 'mercurial')
-optdepends=('networkmanager: Network Management daemon'
-'deepin-grub2-themes: deepin theme for grub menu')
-conflicts=('dde-daemon')
-replaces=('dde-daemon')
-groups=('deepin')
-install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/dde-daemon.git#tag=$pkgver;
-#"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
-"git+https://github.com/linuxdeepin/go-lib.git#commit=$_golibrev;
-
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;
-'fix-i686-compile.patch' 'deepin-daemon.sysusers')
-sha256sums=('SKIP'
-'SKIP'

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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 20:00:03
  Author: spupykin
Revision: 147793

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

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 147792, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 147792, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 147792, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 147792, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 147792, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 147792, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 147792, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 147792, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-i686/PKGBUILD
  sdlmame/repos/community-i686/extras.tar.gz
  sdlmame/repos/community-i686/sdlmame.install
  sdlmame/repos/community-i686/sdlmame.sh
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

--+
 /PKGBUILD|  174 +
 /sdlmame.install |   16 +++
 /sdlmame.sh  |  112 +++
 community-i686/PKGBUILD  |   87 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   56 ---
 community-x86_64/PKGBUILD|   87 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   56 ---
 9 files changed, 302 insertions(+), 302 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 18:59:41 UTC (rev 147792)
+++ community-i686/PKGBUILD 2015-11-25 19:00:03 UTC (rev 147793)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: robb_force 
-# Maintainer: JJDaNiMoTh 
-
-pkgname=sdlmame
-pkgver=0.167
-pkgrel=2
-pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
-url="http://mamedev.org/;
-license=('custom:MAME License')
-arch=('i686' 'x86_64')
-depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt4')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-install=sdlmame.install
-source=("mame${pkgver/./}s.zip::http://mamedev.org/downloader.php?file=mame${pkgver/./}/mame${pkgver/./}s.zip;
-   "sdlmame.sh"
-   "extras.tar.gz"
-   ${_patches})
-md5sums=('cb2ab1cac87e6a5187d5c631d58ee3fa'
- '0cced0fe9868cc56129600fb4bd5b9ed'
- '420b61240bf5ae11615ba7c6100ee00d')
-
-prepare() {
-  cd $srcdir/
-  unzip mame.zip
-#  find . -type f -not -name \*.png | xargs -i_arg_ perl -pi -e 's/\r\n?/\n/g' 
"_arg_"
-}
-
-build() {
-  cd $srcdir/
-  make NOWERROR=1 OPTIMIZE=2 PYTHON_EXECUTABLE=/usr/bin/python2 TOOLS=1
-}
-
-package() {
-  cd $srcdir/
-  # Install the sdlmame script
-  install -Dm755 $srcdir/${pkgname}.sh $pkgdir/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame $pkgdir/usr/lib/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 $pkgdir/usr/lib/${pkgname}/${pkgname}
-
-  install -m755 chdman $pkgdir/usr/lib/${pkgname}/chdman
-  install -m755 jedutil $pkgdir/usr/lib/${pkgname}/jedutil
-  install -m755 regrep $pkgdir/usr/lib/${pkgname}/regrep
-  install -m755 romcmp $pkgdir/usr/lib/${pkgname}/romcmp
-  install -m755 testkeys $pkgdir/usr/lib/${pkgname}/testkeys
-  install -m755 src2html $pkgdir/usr/lib/${pkgname}/src2html
-  install -m755 srcclean $pkgdir/usr/lib/${pkgname}/srcclean
-  install -m755 ldverify $pkgdir/usr/lib/${pkgname}/ldverify
-  install -m755 ldresample $pkgdir/usr/lib/${pkgname}/ldresample
-
-  # ln binaries
-  install -dm755 $pkgdir/usr/share/${pkgname}
-  for i in $pkgname chdman jedutil regrep romcmp testkeys src2html srcclean 
ldverify ldresample; do
-ln -s /usr/lib/$pkgname/$i $pkgdir/usr/share/$pkgname/$i
-  done
-
-  # Install the extra bits
-  install -d $pkgdir/usr/share/${pkgname}/{artwork,ctrlr,hash,keymaps,shader}
-  install -d $pkgdir/usr/share/man/man1
-  install -d $pkgdir/usr/share/man/man6
-  install -m644 src/osd/modules/opengl/shader/glsl*.*h 
$pkgdir/usr/share/${pkgname}/shader/
-  install -m644 src/osd/sdl/man/*.1* $pkgdir/usr/share/man/man1/
-  install -m644 src/osd/sdl/man/*.6* $pkgdir/usr/share/man/man6/
-
-  install -m644 $srcdir/artwork/* $pkgdir/usr/share/${pkgname}/artwork/
-  install -m644 $srcdir/ctrlr/* $pkgdir/usr/share/${pkgname}/ctrlr/
-  install -m644 src/osd/sdl/keymaps/* $pkgdir/usr/share/${pkgname}/keymaps/
-  install -m644 $srcdir/hash/* 

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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 19:59:41
  Author: spupykin
Revision: 147792

upgpkg: sdlmame 0.168-1

upd

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 16:21:26 UTC (rev 147791)
+++ PKGBUILD2015-11-25 18:59:41 UTC (rev 147792)
@@ -4,8 +4,8 @@
 # Maintainer: JJDaNiMoTh 
 
 pkgname=sdlmame
-pkgver=0.167
-pkgrel=2
+pkgver=0.168
+pkgrel=1
 pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
 url="http://mamedev.org/;
 license=('custom:MAME License')
@@ -17,7 +17,7 @@
"sdlmame.sh"
"extras.tar.gz"
${_patches})
-md5sums=('cb2ab1cac87e6a5187d5c631d58ee3fa'
+md5sums=('463570e64a553feb270ff869e7564f8c'
  '0cced0fe9868cc56129600fb4bd5b9ed'
  '420b61240bf5ae11615ba7c6100ee00d')
 


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

2015-11-25 Thread Jaroslav Lichtblau
Date: Wednesday, November 25, 2015 @ 20:34:25
  Author: jlichtblau
Revision: 147794

upgpkg: viking 1.6.1-1 - new upstream release

Modified:
  viking/trunk/PKGBUILD
  viking/trunk/viking.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 19:00:03 UTC (rev 147793)
+++ PKGBUILD2015-11-25 19:34:25 UTC (rev 147794)
@@ -4,8 +4,8 @@
 # Contributor: Jonny Gerold 
 
 pkgname=viking
-pkgver=1.6
-pkgrel=3
+pkgver=1.6.1
+pkgrel=1
 pkgdesc="GTK+2 application to manage GPS data"
 arch=('i686' 'x86_64')
 url="http://viking.sourceforge.net/;
@@ -17,7 +17,7 @@
 install=$pkgname.install
 changelog=$pkgname.changelog
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('21f1bd372c571b8d021e4509a69ec6448efefec623355a9db26cd81898b5920a')
+sha256sums=('3afc4caad2e2a4410608ef4a564baeead4748695913d17436f3afc825c218445')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: viking.changelog
===
--- viking.changelog2015-11-25 19:00:03 UTC (rev 147793)
+++ viking.changelog2015-11-25 19:34:25 UTC (rev 147794)
@@ -1,3 +1,6 @@
+2015-11-25 Jaroslav Lichtblau 
+   * viking 1.6.1-1
+
 2015-05-21 Jaroslav Lichtblau 
* viking 1.6-3
* gpsd 3.14 rebuild


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

2015-11-25 Thread Jaroslav Lichtblau
Date: Wednesday, November 25, 2015 @ 20:34:49
  Author: jlichtblau
Revision: 147795

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

Added:
  viking/repos/community-i686/PKGBUILD
(from rev 147794, viking/trunk/PKGBUILD)
  viking/repos/community-i686/viking.changelog
(from rev 147794, viking/trunk/viking.changelog)
  viking/repos/community-i686/viking.install
(from rev 147794, viking/trunk/viking.install)
  viking/repos/community-x86_64/PKGBUILD
(from rev 147794, viking/trunk/PKGBUILD)
  viking/repos/community-x86_64/viking.changelog
(from rev 147794, viking/trunk/viking.changelog)
  viking/repos/community-x86_64/viking.install
(from rev 147794, viking/trunk/viking.install)
Deleted:
  viking/repos/community-i686/PKGBUILD
  viking/repos/community-i686/viking.changelog
  viking/repos/community-i686/viking.install
  viking/repos/community-x86_64/PKGBUILD
  viking/repos/community-x86_64/viking.changelog
  viking/repos/community-x86_64/viking.install

---+
 /PKGBUILD |   66 +++
 /viking.changelog |   86 
 /viking.install   |   24 ++
 community-i686/PKGBUILD   |   33 -
 community-i686/viking.changelog   |   40 
 community-i686/viking.install |   12 -
 community-x86_64/PKGBUILD |   33 -
 community-x86_64/viking.changelog |   40 
 community-x86_64/viking.install   |   12 -
 9 files changed, 176 insertions(+), 170 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 19:34:25 UTC (rev 147794)
+++ community-i686/PKGBUILD 2015-11-25 19:34:49 UTC (rev 147795)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Nick Østergaard 
-# Contributor: Jonny Gerold 
-
-pkgname=viking
-pkgver=1.6
-pkgrel=3
-pkgdesc="GTK+2 application to manage GPS data"
-arch=('i686' 'x86_64')
-url="http://viking.sourceforge.net/;
-license=('GPL2')
-depends=('curl' 'gpsd' 'gtk2' 'hicolor-icon-theme' 'libgexiv2' 'gpsbabel' 
'mapnik')
-makedepends=('intltool' 'gnome-doc-utils' 'boost')
-optdepends=('geo: for geocaches')
-options=('!emptydirs')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('21f1bd372c571b8d021e4509a69ec6448efefec623355a9db26cd81898b5920a')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-expedia --enable-geocaches 
--includedir=/usr/include
-  make
-}
-
-package(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: viking/repos/community-i686/PKGBUILD (from rev 147794, 
viking/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 19:34:49 UTC (rev 147795)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Nick Østergaard 
+# Contributor: Jonny Gerold 
+
+pkgname=viking
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="GTK+2 application to manage GPS data"
+arch=('i686' 'x86_64')
+url="http://viking.sourceforge.net/;
+license=('GPL2')
+depends=('curl' 'gpsd' 'gtk2' 'hicolor-icon-theme' 'libgexiv2' 'gpsbabel' 
'mapnik')
+makedepends=('intltool' 'gnome-doc-utils' 'boost')
+optdepends=('geo: for geocaches')
+options=('!emptydirs')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('3afc4caad2e2a4410608ef4a564baeead4748695913d17436f3afc825c218445')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-expedia --enable-geocaches 
--includedir=/usr/include
+  make
+}
+
+package(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/viking.changelog
===
--- community-i686/viking.changelog 2015-11-25 19:34:25 UTC (rev 147794)
+++ community-i686/viking.changelog 2015-11-25 19:34:49 UTC (rev 147795)
@@ -1,40 +0,0 @@
-2015-05-21 Jaroslav Lichtblau 
-   * viking 1.6-3
-   * gpsd 3.14 rebuild
-
-2015-04-26 Jaroslav Lichtblau 
-   * viking 1.6-2
-   * boost rebuild
-
-2015-03-31 Jaroslav Lichtblau 
-   * viking 1.6-1
-
-2014-09-02 Jaroslav Lichtblau 
-   * viking 1.5.1-1
-
-2014-02-04 Jaroslav Lichtblau 
-   * viking 1.5-1
-
-2013-09-28 Jaroslav Lichtblau 
-   * 

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

2015-11-25 Thread Jaroslav Lichtblau
Date: Wednesday, November 25, 2015 @ 22:00:19
  Author: jlichtblau
Revision: 147796

upgpkg: vym 2.5.0-2
documentation files fix

Modified:
  vym/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 19:34:49 UTC (rev 147795)
+++ PKGBUILD2015-11-25 21:00:19 UTC (rev 147796)
@@ -5,7 +5,7 @@
 
 pkgname=vym
 pkgver=2.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A mindmapping tool"
 arch=('i686' 'x86_64')
 url="http://www.insilmaril.de/vym/;
@@ -34,10 +34,12 @@
 # fix executable path
   mv "${pkgdir}"/usr/share/bin "${pkgdir}"/usr/bin
   
-# install man page, remove PDF manual
+# install documentation
   install -Dm644 "${srcdir}"/$pkgname-$pkgver/doc/$pkgname.1.gz \
 "${pkgdir}"/usr/share/man/man1/$pkgname.1.gz
-  rm -rf "${pkgdir}"/usr/share/doc
+  install -Dm644 "${srcdir}"/$pkgname-$pkgver/doc/$pkgname.pdf \
+"${pkgdir}"/usr/share/doc/$pkgname/$pkgname.pdf  
+  rm -rf "${pkgdir}"/usr/share/doc/packages
 
 # .desktop and icon file
install -Dm644 "${srcdir}"/$pkgname.desktop \


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

2015-11-25 Thread Jaroslav Lichtblau
Date: Wednesday, November 25, 2015 @ 22:00:57
  Author: jlichtblau
Revision: 147797

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

Added:
  vym/repos/community-i686/PKGBUILD
(from rev 147796, vym/trunk/PKGBUILD)
  vym/repos/community-i686/vym.changelog
(from rev 147796, vym/trunk/vym.changelog)
  vym/repos/community-i686/vym.desktop
(from rev 147796, vym/trunk/vym.desktop)
  vym/repos/community-i686/vym.install
(from rev 147796, vym/trunk/vym.install)
  vym/repos/community-x86_64/PKGBUILD
(from rev 147796, vym/trunk/PKGBUILD)
  vym/repos/community-x86_64/vym.changelog
(from rev 147796, vym/trunk/vym.changelog)
  vym/repos/community-x86_64/vym.desktop
(from rev 147796, vym/trunk/vym.desktop)
  vym/repos/community-x86_64/vym.install
(from rev 147796, vym/trunk/vym.install)
Deleted:
  vym/repos/community-i686/PKGBUILD
  vym/repos/community-i686/vym.changelog
  vym/repos/community-i686/vym.desktop
  vym/repos/community-i686/vym.install
  vym/repos/community-x86_64/PKGBUILD
  vym/repos/community-x86_64/vym.changelog
  vym/repos/community-x86_64/vym.desktop
  vym/repos/community-x86_64/vym.install

+
 /PKGBUILD  |   98 +++
 /vym.changelog |   58 +++
 /vym.desktop   |   76 ++
 /vym.install   |   22 
 community-i686/PKGBUILD|   47 --
 community-i686/vym.changelog   |   29 ---
 community-i686/vym.desktop |   38 ---
 community-i686/vym.install |   11 
 community-x86_64/PKGBUILD  |   47 --
 community-x86_64/vym.changelog |   29 ---
 community-x86_64/vym.desktop   |   38 ---
 community-x86_64/vym.install   |   11 
 12 files changed, 254 insertions(+), 250 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 21:00:19 UTC (rev 147796)
+++ community-i686/PKGBUILD 2015-11-25 21:00:57 UTC (rev 147797)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau  
-# Contributor: Stefan Husmann 
-# Contributor: Søren Holm  
-
-pkgname=vym
-pkgver=2.5.0
-pkgrel=1
-pkgdesc="A mindmapping tool"
-arch=('i686' 'x86_64')
-url="http://www.insilmaril.de/vym/;
-license=('GPL')
-depends=('qt5-svg' 'desktop-file-utils')
-changelog=$pkgname.changelog
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
-$pkgname.desktop)
-sha256sums=('8412c3ce8de3330fb61e7c2c75dfcde0cc955c0804d5a5f384f726eb32cc23dd'
-'e299c69c213e7aac3f5b5d0ab088132b4ec7cb63a391f272e75ed64f049d541b')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  qmake PREFIX=/usr/share
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-# install files
-  make INSTALL_ROOT="${pkgdir}" install
-
-# fix executable path
-  mv "${pkgdir}"/usr/share/bin "${pkgdir}"/usr/bin
-  
-# install man page, remove PDF manual
-  install -Dm644 "${srcdir}"/$pkgname-$pkgver/doc/$pkgname.1.gz \
-"${pkgdir}"/usr/share/man/man1/$pkgname.1.gz
-  rm -rf "${pkgdir}"/usr/share/doc
-
-# .desktop and icon file
-   install -Dm644 "${srcdir}"/$pkgname.desktop \
- "${pkgdir}"/usr/share/applications/$pkgname.desktop
-   install -Dm644 "${pkgdir}"/usr/share/vym/icons/$pkgname.png \
- "${pkgdir}"/usr/share/pixmaps/$pkgname.png
-}

Copied: vym/repos/community-i686/PKGBUILD (from rev 147796, vym/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 21:00:57 UTC (rev 147797)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau  
+# Contributor: Stefan Husmann 
+# Contributor: Søren Holm  
+
+pkgname=vym
+pkgver=2.5.0
+pkgrel=2
+pkgdesc="A mindmapping tool"
+arch=('i686' 'x86_64')
+url="http://www.insilmaril.de/vym/;
+license=('GPL')
+depends=('qt5-svg' 'desktop-file-utils')
+changelog=$pkgname.changelog
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
+$pkgname.desktop)
+sha256sums=('8412c3ce8de3330fb61e7c2c75dfcde0cc955c0804d5a5f384f726eb32cc23dd'
+'e299c69c213e7aac3f5b5d0ab088132b4ec7cb63a391f272e75ed64f049d541b')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  qmake PREFIX=/usr/share
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+# install files
+  make INSTALL_ROOT="${pkgdir}" install
+
+# fix executable path
+  mv "${pkgdir}"/usr/share/bin "${pkgdir}"/usr/bin
+  
+# install documentation
+  install -Dm644 "${srcdir}"/$pkgname-$pkgver/doc/$pkgname.1.gz \
+

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

2015-11-25 Thread Evangelos Foutras
Date: Wednesday, November 25, 2015 @ 21:27:50
  Author: foutrelis
Revision: 251962

upgpkg: systemd 228-3

Fix bug where networkd was removing loopback addresses (FS#47160).

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 17:31:37 UTC (rev 251961)
+++ PKGBUILD2015-11-25 20:27:50 UTC (rev 251962)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=228
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url="http://www.freedesktop.org/wiki/Software/systemd;
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -35,6 +35,11 @@
   # https://github.com/systemd/systemd/issues/1866
   git cherry-pick -n 3ccd31635353
 
+  # networkd: link - do not drop config for loopback device
+  # https://github.com/systemd/systemd/commit/e5d44b34cca3
+  # https://github.com/systemd/systemd/issues/2023
+  git cherry-pick -n e5d44b34cca3
+
   ./autogen.sh
 }
 


[arch-commits] Commit in systemd/repos (32 files)

2015-11-25 Thread Evangelos Foutras
Date: Wednesday, November 25, 2015 @ 21:28:11
  Author: foutrelis
Revision: 251963

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

Added:
  systemd/repos/testing-i686/PKGBUILD
(from rev 251962, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 251962, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 251962, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 251962, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 251962, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 251962, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 251962, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd.install
(from rev 251962, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 251962, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 251962, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 251962, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 251962, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 251962, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 251962, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 251962, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd.install
(from rev 251962, systemd/trunk/systemd.install)
Deleted:
  systemd/repos/testing-i686/PKGBUILD
  systemd/repos/testing-i686/arch.conf
  systemd/repos/testing-i686/initcpio-hook-udev
  systemd/repos/testing-i686/initcpio-install-systemd
  systemd/repos/testing-i686/initcpio-install-udev
  systemd/repos/testing-i686/loader.conf
  systemd/repos/testing-i686/splash-arch.bmp
  systemd/repos/testing-i686/systemd.install
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/arch.conf
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/loader.conf
  systemd/repos/testing-x86_64/splash-arch.bmp
  systemd/repos/testing-x86_64/systemd.install

-+
 /PKGBUILD   |  366 ++
 /arch.conf  |   14 +
 /initcpio-hook-udev |   44 +++
 /initcpio-install-systemd   |  340 
 /initcpio-install-udev  |   56 
 /loader.conf|2 
 /systemd.install|  410 ++
 testing-i686/PKGBUILD   |  178 -
 testing-i686/arch.conf  |7 
 testing-i686/initcpio-hook-udev |   22 -
 testing-i686/initcpio-install-systemd   |  170 
 testing-i686/initcpio-install-udev  |   28 --
 testing-i686/loader.conf|1 
 testing-i686/systemd.install|  205 ---
 testing-x86_64/PKGBUILD |  178 -
 testing-x86_64/arch.conf|7 
 testing-x86_64/initcpio-hook-udev   |   22 -
 testing-x86_64/initcpio-install-systemd |  170 
 testing-x86_64/initcpio-install-udev|   28 --
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd.install  |  205 ---
 21 files changed, 1232 insertions(+), 1222 deletions(-)

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


[arch-commits] Commit in deepin-control-center/repos (12 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:19:57
  Author: fyan
Revision: 147824

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

Added:
  deepin-control-center/repos/community-i686/PKGBUILD
(from rev 147823, deepin-control-center/trunk/PKGBUILD)
  deepin-control-center/repos/community-i686/deepin-control-center.install
(from rev 147823, deepin-control-center/trunk/deepin-control-center.install)
  deepin-control-center/repos/community-i686/optimize_plugins_unload.patch
(from rev 147823, deepin-control-center/trunk/optimize_plugins_unload.patch)
  deepin-control-center/repos/community-i686/show-distro-info.patch
(from rev 147823, deepin-control-center/trunk/show-distro-info.patch)
  deepin-control-center/repos/community-x86_64/PKGBUILD
(from rev 147823, deepin-control-center/trunk/PKGBUILD)
  deepin-control-center/repos/community-x86_64/deepin-control-center.install
(from rev 147823, deepin-control-center/trunk/deepin-control-center.install)
  deepin-control-center/repos/community-x86_64/optimize_plugins_unload.patch
(from rev 147823, deepin-control-center/trunk/optimize_plugins_unload.patch)
  deepin-control-center/repos/community-x86_64/show-distro-info.patch
(from rev 147823, deepin-control-center/trunk/show-distro-info.patch)
Deleted:
  deepin-control-center/repos/community-i686/PKGBUILD
  deepin-control-center/repos/community-i686/deepin-control-center.install
  deepin-control-center/repos/community-x86_64/PKGBUILD
  deepin-control-center/repos/community-x86_64/deepin-control-center.install

+
 /PKGBUILD  |   84 +++
 /deepin-control-center.install |   22 ++
 community-i686/PKGBUILD|   32 
 community-i686/deepin-control-center.install   |   11 -
 community-i686/optimize_plugins_unload.patch   |  174 +++
 community-i686/show-distro-info.patch  |   77 ++
 community-x86_64/PKGBUILD  |   32 
 community-x86_64/deepin-control-center.install |   11 -
 community-x86_64/optimize_plugins_unload.patch |  174 +++
 community-x86_64/show-distro-info.patch|   77 ++
 10 files changed, 608 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 06:19:11 UTC (rev 147823)
+++ community-i686/PKGBUILD 2015-11-26 06:19:57 UTC (rev 147824)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=2.91.2
-pkgrel=1
-pkgdesc='New control center for linux deepin'
-arch=('i686' 'x86_64')
-url="http://github.com/linuxdeepin/dde-control-center;
-license=('GPL3')
-depends=('desktop-file-utils' 'libdui' 'gtk3' 'deepin-account-faces' 
'deepin-api'
- 'deepin-daemon' 'deepin-dbus-factory')
-makedepends=('deepin-dock' 'deepin-gettext-tools' 'git')
-conflicts=('dde-control-center')
-replaces=('dde-control-center')
-groups=('deepin')
-install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/dde-control-center.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-control-center
-  qmake-qt5 PREFIX=/usr WITH_MODULE_GRUB=NO
-  make
-}
-
-package() {
-  cd dde-control-center
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-control-center/repos/community-i686/PKGBUILD (from rev 147823, 
deepin-control-center/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:19:57 UTC (rev 147824)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=2.91.2
+pkgrel=2
+pkgdesc='New control center for linux deepin'
+arch=('i686' 'x86_64')
+url="http://github.com/linuxdeepin/dde-control-center;
+license=('GPL3')
+depends=('desktop-file-utils' 'libdui' 'gtk3' 'deepin-account-faces' 
'deepin-api'
+ 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
+makedepends=('deepin-dock' 'deepin-gettext-tools' 'git')
+conflicts=('dde-control-center')
+replaces=('dde-control-center')
+groups=('deepin')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/dde-control-center.git#tag=$pkgver;
+'show-distro-info.patch'
+'optimize_plugins_unload.patch')
+sha256sums=('SKIP'
+'076be93652adebe404a076036503b95140d70d6612e34f35502909c2617d1b1d'
+'a7c9d34538215ecd4c8f05820aadfd4c41bd33527699100c0aecad631fdef267')
+
+prepare() {
+  cd dde-control-center
+  patch -p1 -i ../show-distro-info.patch
+  patch -p1 -i ../optimize_plugins_unload.patch
+}
+
+build() 

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:21:44
  Author: fyan
Revision: 147825

upgpkg: deepin-session-ui 2.90.2-4

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 06:19:57 UTC (rev 147824)
+++ PKGBUILD2015-11-26 06:21:44 UTC (rev 147825)
@@ -5,13 +5,14 @@
 
 pkgname=deepin-session-ui
 pkgver=2.90.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Deepin desktop-environment - Session UI module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-session-ui;
 license=('GPL3')
 groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
+ 'deepin-control-center' 'startdde')
 makedepends=('git')
 provides=('lightdm-deepin-greeter')
 conflicts=('dde-workspace' 'dde-session-ui')


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:22:13
  Author: fyan
Revision: 147826

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

Added:
  deepin-session-ui/repos/community-i686/PKGBUILD
(from rev 147825, deepin-session-ui/trunk/PKGBUILD)
  deepin-session-ui/repos/community-x86_64/PKGBUILD
(from rev 147825, deepin-session-ui/trunk/PKGBUILD)
Deleted:
  deepin-session-ui/repos/community-i686/PKGBUILD
  deepin-session-ui/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 06:21:44 UTC (rev 147825)
+++ community-i686/PKGBUILD 2015-11-26 06:22:13 UTC (rev 147826)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=2.90.2
-pkgrel=3
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui;
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon')
-makedepends=('git')
-provides=('lightdm-deepin-greeter')
-conflicts=('dde-workspace' 'dde-session-ui')
-replaces=('dde-workspace' 'dde-session-ui')
-source=("git+https://github.com/linuxdeepin/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-i686/PKGBUILD (from rev 147825, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:22:13 UTC (rev 147826)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=2.90.2
+pkgrel=4
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui;
+license=('GPL3')
+groups=('deepin')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
+ 'deepin-control-center' 'startdde')
+makedepends=('git')
+provides=('lightdm-deepin-greeter')
+conflicts=('dde-workspace' 'dde-session-ui')
+replaces=('dde-workspace' 'dde-session-ui')
+source=("git+https://github.com/linuxdeepin/dde-session-ui.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "dde-session-ui"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "dde-session-ui"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-26 06:21:44 UTC (rev 147825)
+++ community-x86_64/PKGBUILD   2015-11-26 06:22:13 UTC (rev 147826)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=2.90.2
-pkgrel=3
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui;
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon')
-makedepends=('git')
-provides=('lightdm-deepin-greeter')
-conflicts=('dde-workspace' 'dde-session-ui')
-replaces=('dde-workspace' 'dde-session-ui')
-source=("git+https://github.com/linuxdeepin/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-x86_64/PKGBUILD (from rev 147825, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 06:22:13 UTC (rev 147826)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=2.90.2
+pkgrel=4
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui;
+license=('GPL3')
+groups=('deepin')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
+ 

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

2015-11-25 Thread Evangelos Foutras
Date: Thursday, November 26, 2015 @ 07:25:19
  Author: foutrelis
Revision: 251974

Fix build with GCC 5 (FS#47181)

Modified:
  reiserfsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 02:46:51 UTC (rev 251973)
+++ PKGBUILD2015-11-26 06:25:19 UTC (rev 251974)
@@ -16,6 +16,7 @@
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
   ./configure --prefix=/usr --sbindir=/usr/bin
   make
 }


[arch-commits] Commit in deepin-dbus-factory/trunk (PKGBUILD)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:24:30
  Author: fyan
Revision: 147827

upgpkg: deepin-dbus-factory 2.92.1-3

revert last change - the dependency should be on deepin-daemon

Modified:
  deepin-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 06:22:13 UTC (rev 147826)
+++ PKGBUILD2015-11-26 06:24:30 UTC (rev 147827)
@@ -5,12 +5,12 @@
 
 pkgname=deepin-dbus-factory
 pkgver=2.92.1
-pkgrel=2
+pkgrel=3
 pkgdesc='QML DBus factory for DDE'
 arch=('i686' 'x86_64')
 url="https://gitcafe.com/Deepin/dbus-factory;
 license=('GPL3')
-depends=('qt5-declarative' 'accountsservice')
+depends=('qt5-declarative')
 makedepends=('git' 'deepin-dbus-generator')
 source=("git+https://github.com/linuxdeepin/dbus-factory.git#tag=$pkgver;
 fix-arch.patch)


[arch-commits] Commit in deepin-dbus-factory/repos (8 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:24:59
  Author: fyan
Revision: 147828

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

Added:
  deepin-dbus-factory/repos/community-i686/PKGBUILD
(from rev 147827, deepin-dbus-factory/trunk/PKGBUILD)
  deepin-dbus-factory/repos/community-i686/fix-arch.patch
(from rev 147827, deepin-dbus-factory/trunk/fix-arch.patch)
  deepin-dbus-factory/repos/community-x86_64/PKGBUILD
(from rev 147827, deepin-dbus-factory/trunk/PKGBUILD)
  deepin-dbus-factory/repos/community-x86_64/fix-arch.patch
(from rev 147827, deepin-dbus-factory/trunk/fix-arch.patch)
Deleted:
  deepin-dbus-factory/repos/community-i686/PKGBUILD
  deepin-dbus-factory/repos/community-i686/fix-arch.patch
  deepin-dbus-factory/repos/community-x86_64/PKGBUILD
  deepin-dbus-factory/repos/community-x86_64/fix-arch.patch

-+
 /PKGBUILD   |   66 ++
 /fix-arch.patch |   26 ++
 community-i686/PKGBUILD |   33 ---
 community-i686/fix-arch.patch   |   13 ---
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/fix-arch.patch |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 06:24:30 UTC (rev 147827)
+++ community-i686/PKGBUILD 2015-11-26 06:24:59 UTC (rev 147828)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dbus-factory
-pkgver=2.92.1
-pkgrel=2
-pkgdesc='QML DBus factory for DDE'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/dbus-factory;
-license=('GPL3')
-depends=('qt5-declarative' 'accountsservice')
-makedepends=('git' 'deepin-dbus-generator')
-source=("git+https://github.com/linuxdeepin/dbus-factory.git#tag=$pkgver;
-fix-arch.patch)
-sha256sums=('SKIP'
-'0195e1258534ef14d8ec63cde5389f8cfad39d5308ab8ddf73966018a34bd300')
-
-prepare() {
-  cd dbus-factory
-  patch -p1 -i ../fix-arch.patch
-}
-
-build(){
-  cd dbus-factory
-  make build-qml
-}
-
-package() {
-  cd dbus-factory
-  make DESTDIR="${pkgdir}" install-qml
-}

Copied: deepin-dbus-factory/repos/community-i686/PKGBUILD (from rev 147827, 
deepin-dbus-factory/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:24:59 UTC (rev 147828)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dbus-factory
+pkgver=2.92.1
+pkgrel=3
+pkgdesc='QML DBus factory for DDE'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/dbus-factory;
+license=('GPL3')
+depends=('qt5-declarative')
+makedepends=('git' 'deepin-dbus-generator')
+source=("git+https://github.com/linuxdeepin/dbus-factory.git#tag=$pkgver;
+fix-arch.patch)
+sha256sums=('SKIP'
+'0195e1258534ef14d8ec63cde5389f8cfad39d5308ab8ddf73966018a34bd300')
+
+prepare() {
+  cd dbus-factory
+  patch -p1 -i ../fix-arch.patch
+}
+
+build(){
+  cd dbus-factory
+  make build-qml
+}
+
+package() {
+  cd dbus-factory
+  make DESTDIR="${pkgdir}" install-qml
+}

Deleted: community-i686/fix-arch.patch
===
--- community-i686/fix-arch.patch   2015-11-26 06:24:30 UTC (rev 147827)
+++ community-i686/fix-arch.patch   2015-11-26 06:24:59 UTC (rev 147828)
@@ -1,13 +0,0 @@
-diff -ruN a/in.json/Makefile b/in.json/Makefile
 a/in.json/Makefile  2014-12-30 20:01:39.978997830 +0100
-+++ b/in.json/Makefile  2014-12-30 20:08:45.569012561 +0100
-@@ -1,7 +1,7 @@
- PREFIX  = /usr
- 
--GOPATH := $(shell go env GOPATH)
--QT5_LIBDIR ?= $(PREFIX)/lib/qt5
-+GOPATH := $(PREFIX)/lib/go
-+QT5_LIBDIR ?= $(PREFIX)/lib/qt
- QMLDIR ?= $(QT5_LIBDIR)/qml
- 
- JSONS  := $(wildcard *.in.json)

Copied: deepin-dbus-factory/repos/community-i686/fix-arch.patch (from rev 
147827, deepin-dbus-factory/trunk/fix-arch.patch)
===
--- community-i686/fix-arch.patch   (rev 0)
+++ community-i686/fix-arch.patch   2015-11-26 06:24:59 UTC (rev 147828)
@@ -0,0 +1,13 @@
+diff -ruN a/in.json/Makefile b/in.json/Makefile
+--- a/in.json/Makefile  2014-12-30 20:01:39.978997830 +0100
 b/in.json/Makefile  2014-12-30 20:08:45.569012561 +0100
+@@ -1,7 +1,7 @@
+ PREFIX  = /usr
+ 
+-GOPATH := $(shell go env GOPATH)
+-QT5_LIBDIR ?= $(PREFIX)/lib/qt5
++GOPATH := $(PREFIX)/lib/go
++QT5_LIBDIR ?= $(PREFIX)/lib/qt
+ QMLDIR ?= $(QT5_LIBDIR)/qml
+ 
+ JSONS  := $(wildcard *.in.json)

Deleted: 

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

2015-11-25 Thread Evangelos Foutras
Date: Thursday, November 26, 2015 @ 07:25:50
  Author: foutrelis
Revision: 251975

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

Added:
  reiserfsprogs/repos/core-i686/PKGBUILD
(from rev 251974, reiserfsprogs/trunk/PKGBUILD)
  reiserfsprogs/repos/core-x86_64/PKGBUILD
(from rev 251974, reiserfsprogs/trunk/PKGBUILD)
Deleted:
  reiserfsprogs/repos/core-i686/PKGBUILD
  reiserfsprogs/repos/core-x86_64/PKGBUILD

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-11-26 06:25:19 UTC (rev 251974)
+++ core-i686/PKGBUILD  2015-11-26 06:25:50 UTC (rev 251975)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: judd 
-
-pkgname=reiserfsprogs
-pkgver=3.6.24
-pkgrel=1
-pkgdesc="Reiserfs utilities"
-arch=('i686' 'x86_64')
-url="http://www.kernel.org/;
-license=('GPL')
-groups=('base')
-depends=('util-linux')
-source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('66787380fb418ff7d88a23e47cda7af6')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: reiserfsprogs/repos/core-i686/PKGBUILD (from rev 251974, 
reiserfsprogs/trunk/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-11-26 06:25:50 UTC (rev 251975)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=reiserfsprogs
+pkgver=3.6.24
+pkgrel=1
+pkgdesc="Reiserfs utilities"
+arch=('i686' 'x86_64')
+url="http://www.kernel.org/;
+license=('GPL')
+groups=('base')
+depends=('util-linux')
+source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('66787380fb418ff7d88a23e47cda7af6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-11-26 06:25:19 UTC (rev 251974)
+++ core-x86_64/PKGBUILD2015-11-26 06:25:50 UTC (rev 251975)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: judd 
-
-pkgname=reiserfsprogs
-pkgver=3.6.24
-pkgrel=1
-pkgdesc="Reiserfs utilities"
-arch=('i686' 'x86_64')
-url="http://www.kernel.org/;
-license=('GPL')
-groups=('base')
-depends=('util-linux')
-source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('66787380fb418ff7d88a23e47cda7af6')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: reiserfsprogs/repos/core-x86_64/PKGBUILD (from rev 251974, 
reiserfsprogs/trunk/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2015-11-26 06:25:50 UTC (rev 251975)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=reiserfsprogs
+pkgver=3.6.24
+pkgrel=1
+pkgdesc="Reiserfs utilities"
+arch=('i686' 'x86_64')
+url="http://www.kernel.org/;
+license=('GPL')
+groups=('base')
+depends=('util-linux')
+source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('66787380fb418ff7d88a23e47cda7af6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in (5 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:35:19
  Author: fyan
Revision: 147829

addpkg: haskell-network-info 0.2.0.8-1

Added:
  haskell-network-info/
  haskell-network-info/repos/
  haskell-network-info/trunk/
  haskell-network-info/trunk/PKGBUILD
  haskell-network-info/trunk/haskell-network-info.install

--+
 PKGBUILD |   42 +
 haskell-network-info.install |   18 +
 2 files changed, 60 insertions(+)

Added: haskell-network-info/trunk/PKGBUILD
===
--- haskell-network-info/trunk/PKGBUILD (rev 0)
+++ haskell-network-info/trunk/PKGBUILD 2015-11-26 06:35:19 UTC (rev 147829)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=network-info
+pkgname=haskell-network-info
+pkgver=0.2.0.8
+pkgrel=1
+pkgdesc="Access the local computer\'s basic network configuration"
+url="http://github.com/jystic/network-info;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ecdff121f3e154c480f363bc8660959a051790bfae5b5fe573810873cedbcd76')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-network-info/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-network-info/trunk/haskell-network-info.install
===
--- haskell-network-info/trunk/haskell-network-info.install 
(rev 0)
+++ haskell-network-info/trunk/haskell-network-info.install 2015-11-26 
06:35:19 UTC (rev 147829)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-network-info
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in haskell-network-info/repos (6 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:35:43
  Author: fyan
Revision: 147830

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

Added:
  haskell-network-info/repos/community-i686/
  haskell-network-info/repos/community-i686/PKGBUILD
(from rev 147829, haskell-network-info/trunk/PKGBUILD)
  haskell-network-info/repos/community-i686/haskell-network-info.install
(from rev 147829, haskell-network-info/trunk/haskell-network-info.install)
  haskell-network-info/repos/community-x86_64/
  haskell-network-info/repos/community-x86_64/PKGBUILD
(from rev 147829, haskell-network-info/trunk/PKGBUILD)
  haskell-network-info/repos/community-x86_64/haskell-network-info.install
(from rev 147829, haskell-network-info/trunk/haskell-network-info.install)

---+
 community-i686/PKGBUILD   |   42 
 community-i686/haskell-network-info.install   |   18 ++
 community-x86_64/PKGBUILD |   42 
 community-x86_64/haskell-network-info.install |   18 ++
 4 files changed, 120 insertions(+)

Copied: haskell-network-info/repos/community-i686/PKGBUILD (from rev 147829, 
haskell-network-info/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:35:43 UTC (rev 147830)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=network-info
+pkgname=haskell-network-info
+pkgver=0.2.0.8
+pkgrel=1
+pkgdesc="Access the local computer\'s basic network configuration"
+url="http://github.com/jystic/network-info;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ecdff121f3e154c480f363bc8660959a051790bfae5b5fe573810873cedbcd76')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-network-info/repos/community-i686/haskell-network-info.install 
(from rev 147829, haskell-network-info/trunk/haskell-network-info.install)
===
--- community-i686/haskell-network-info.install (rev 0)
+++ community-i686/haskell-network-info.install 2015-11-26 06:35:43 UTC (rev 
147830)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-network-info
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-network-info/repos/community-x86_64/PKGBUILD (from rev 147829, 
haskell-network-info/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 06:35:43 UTC (rev 147830)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=network-info
+pkgname=haskell-network-info
+pkgver=0.2.0.8
+pkgrel=1
+pkgdesc="Access the local computer\'s basic network configuration"
+url="http://github.com/jystic/network-info;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 06:59:26
  Author: fyan
Revision: 147818

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

Added:
  deepin-launcher/repos/community-i686/PKGBUILD
(from rev 147817, deepin-launcher/trunk/PKGBUILD)
  deepin-launcher/repos/community-x86_64/PKGBUILD
(from rev 147817, deepin-launcher/trunk/PKGBUILD)
Deleted:
  deepin-launcher/repos/community-i686/PKGBUILD
  deepin-launcher/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 05:58:52 UTC (rev 147817)
+++ community-i686/PKGBUILD 2015-11-26 05:59:26 UTC (rev 147818)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=2.90.1
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras')
-makedepends=('git')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-i686/PKGBUILD (from rev 147817, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 05:59:26 UTC (rev 147818)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=2.90.1
+pkgrel=3
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-menu' 'deepin-daemon')
+makedepends=('git')
+conflicts=('dde-launcher')
+replaces=('dde-launcher')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/dde-launcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-launcher
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-launcher
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-26 05:58:52 UTC (rev 147817)
+++ community-x86_64/PKGBUILD   2015-11-26 05:59:26 UTC (rev 147818)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=2.90.1
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras')
-makedepends=('git')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-x86_64/PKGBUILD (from rev 147817, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 05:59:26 UTC (rev 147818)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=2.90.1
+pkgrel=3
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-menu' 'deepin-daemon')
+makedepends=('git')
+conflicts=('dde-launcher')
+replaces=('dde-launcher')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/dde-launcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-launcher
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-launcher
+  make 

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:11:34
  Author: fyan
Revision: 147822

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

Added:
  deepin-desktop/repos/community-i686/PKGBUILD
(from rev 147821, deepin-desktop/trunk/PKGBUILD)
  deepin-desktop/repos/community-x86_64/PKGBUILD
(from rev 147821, deepin-desktop/trunk/PKGBUILD)
Deleted:
  deepin-desktop/repos/community-i686/PKGBUILD
  deepin-desktop/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 06:11:04 UTC (rev 147821)
+++ community-i686/PKGBUILD 2015-11-26 06:11:34 UTC (rev 147822)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=2.90.1
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('deepin-file-manager' 'libdui' 'gsettings-qt'
- 'gtk2' 'qt5-svg' 'qt5-x11extras')
-makedepends=('git')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-i686/PKGBUILD (from rev 147821, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:11:34 UTC (rev 147822)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=2.90.1
+pkgrel=3
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('deepin-file-manager' 'deepin-nautilus-properties' 'gsettings-qt'
+ 'deepin-daemon' 'libdui' 'startdde' 'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras')
+makedepends=('git')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-26 06:11:04 UTC (rev 147821)
+++ community-x86_64/PKGBUILD   2015-11-26 06:11:34 UTC (rev 147822)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=2.90.1
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('deepin-file-manager' 'libdui' 'gsettings-qt'
- 'gtk2' 'qt5-svg' 'qt5-x11extras')
-makedepends=('git')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-x86_64/PKGBUILD (from rev 147821, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 06:11:34 UTC (rev 147822)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=2.90.1
+pkgrel=3
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('deepin-file-manager' 'deepin-nautilus-properties' 'gsettings-qt'
+ 'deepin-daemon' 'libdui' 'startdde' 'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras')
+makedepends=('git')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/dde-desktop.git#tag=$pkgver;)

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:11:04
  Author: fyan
Revision: 147821

upgpkg: deepin-desktop 2.90.1-3

Modified:
  deepin-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 06:08:42 UTC (rev 147820)
+++ PKGBUILD2015-11-26 06:11:04 UTC (rev 147821)
@@ -5,13 +5,14 @@
 
 pkgname=deepin-desktop
 pkgver=2.90.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Deepin desktop-environment - Desktop module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-desktop;
 license=('GPL3')
-depends=('deepin-file-manager' 'libdui' 'gsettings-qt'
- 'gtk2' 'qt5-svg' 'qt5-x11extras')
+depends=('deepin-file-manager' 'deepin-nautilus-properties' 'gsettings-qt'
+ 'deepin-daemon' 'libdui' 'startdde' 'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras')
 makedepends=('git')
 conflicts=('dde-desktop')
 replaces=('dde-desktop')


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 06:28:33
  Author: fyan
Revision: 147814

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

Added:
  deepin-session-ui/repos/community-i686/PKGBUILD
(from rev 147813, deepin-session-ui/trunk/PKGBUILD)
  deepin-session-ui/repos/community-x86_64/PKGBUILD
(from rev 147813, deepin-session-ui/trunk/PKGBUILD)
Deleted:
  deepin-session-ui/repos/community-i686/PKGBUILD
  deepin-session-ui/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 05:28:05 UTC (rev 147813)
+++ community-i686/PKGBUILD 2015-11-26 05:28:33 UTC (rev 147814)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=2.90.2
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui;
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg')
-makedepends=('git')
-provides=('lightdm-deepin-greeter')
-conflicts=('dde-workspace' 'dde-session-ui')
-replaces=('dde-workspace' 'dde-session-ui')
-source=("git+https://github.com/linuxdeepin/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-i686/PKGBUILD (from rev 147813, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 05:28:33 UTC (rev 147814)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=2.90.2
+pkgrel=3
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui;
+license=('GPL3')
+groups=('deepin')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon')
+makedepends=('git')
+provides=('lightdm-deepin-greeter')
+conflicts=('dde-workspace' 'dde-session-ui')
+replaces=('dde-workspace' 'dde-session-ui')
+source=("git+https://github.com/linuxdeepin/dde-session-ui.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "dde-session-ui"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "dde-session-ui"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-26 05:28:05 UTC (rev 147813)
+++ community-x86_64/PKGBUILD   2015-11-26 05:28:33 UTC (rev 147814)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=2.90.2
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui;
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg')
-makedepends=('git')
-provides=('lightdm-deepin-greeter')
-conflicts=('dde-workspace' 'dde-session-ui')
-replaces=('dde-workspace' 'dde-session-ui')
-source=("git+https://github.com/linuxdeepin/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-x86_64/PKGBUILD (from rev 147813, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 05:28:33 UTC (rev 147814)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=2.90.2
+pkgrel=3
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui;
+license=('GPL3')
+groups=('deepin')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon')
+makedepends=('git')
+provides=('lightdm-deepin-greeter')
+conflicts=('dde-workspace' 

[arch-commits] Commit in deepin-nautilus-properties/repos (4 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 06:34:42
  Author: fyan
Revision: 147816

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

Added:
  deepin-nautilus-properties/repos/community-i686/
  deepin-nautilus-properties/repos/community-i686/PKGBUILD
(from rev 147815, deepin-nautilus-properties/trunk/PKGBUILD)
  deepin-nautilus-properties/repos/community-x86_64/
  deepin-nautilus-properties/repos/community-x86_64/PKGBUILD
(from rev 147815, deepin-nautilus-properties/trunk/PKGBUILD)

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

Copied: deepin-nautilus-properties/repos/community-i686/PKGBUILD (from rev 
147815, deepin-nautilus-properties/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 05:34:42 UTC (rev 147816)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-nautilus-properties
+pkgver=3.14.2
+pkgrel=2
+pkgdesc="Provide file property dialog for Deepin desktop environment"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('nautilus' 'libnotify')
+makedepends=('intltool' 'gobject-introspection' 'libnotify' 'git')
+url="https://gitcafe.com/Deepin/deepin-nautilus-properties;
+options=('!emptydirs')
+source=("git+https://github.com/linuxdeepin/deepin-nautilus-properties.git;)
+sha256sums=('SKIP')
+
+build() {
+  cd deepin-nautilus-properties
+
+  # regenerate autotools files
+  libtoolize && aclocal && autoheader && automake --add-missing && autoconf
+
+  ./configure --prefix=/usr \
+  --libexecdir=/usr/lib/nautilus \
+  --disable-nst-extension \
+  --disable-update-mimedb \
+  --disable-packagekit \
+  --disable-introspection \
+  --disable-tracker
+  make
+}
+
+package() {
+  cd deepin-nautilus-properties/src
+  install -dm755 "$pkgdir/usr/bin"
+  libtool --mode=install /usr/bin/install -c deepin-nautilus-properties 
"$pkgdir/usr/bin"
+}

Copied: deepin-nautilus-properties/repos/community-x86_64/PKGBUILD (from rev 
147815, deepin-nautilus-properties/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 05:34:42 UTC (rev 147816)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-nautilus-properties
+pkgver=3.14.2
+pkgrel=2
+pkgdesc="Provide file property dialog for Deepin desktop environment"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('nautilus' 'libnotify')
+makedepends=('intltool' 'gobject-introspection' 'libnotify' 'git')
+url="https://gitcafe.com/Deepin/deepin-nautilus-properties;
+options=('!emptydirs')
+source=("git+https://github.com/linuxdeepin/deepin-nautilus-properties.git;)
+sha256sums=('SKIP')
+
+build() {
+  cd deepin-nautilus-properties
+
+  # regenerate autotools files
+  libtoolize && aclocal && autoheader && automake --add-missing && autoconf
+
+  ./configure --prefix=/usr \
+  --libexecdir=/usr/lib/nautilus \
+  --disable-nst-extension \
+  --disable-update-mimedb \
+  --disable-packagekit \
+  --disable-introspection \
+  --disable-tracker
+  make
+}
+
+package() {
+  cd deepin-nautilus-properties/src
+  install -dm755 "$pkgdir/usr/bin"
+  libtool --mode=install /usr/bin/install -c deepin-nautilus-properties 
"$pkgdir/usr/bin"
+}


[arch-commits] Commit in (4 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 06:34:17
  Author: fyan
Revision: 147815

addpkg: deepin-nautilus-properties 3.14.2-2

Added:
  deepin-nautilus-properties/
  deepin-nautilus-properties/repos/
  deepin-nautilus-properties/trunk/
  deepin-nautilus-properties/trunk/PKGBUILD

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

Added: deepin-nautilus-properties/trunk/PKGBUILD
===
--- deepin-nautilus-properties/trunk/PKGBUILD   (rev 0)
+++ deepin-nautilus-properties/trunk/PKGBUILD   2015-11-26 05:34:17 UTC (rev 
147815)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-nautilus-properties
+pkgver=3.14.2
+pkgrel=2
+pkgdesc="Provide file property dialog for Deepin desktop environment"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('nautilus' 'libnotify')
+makedepends=('intltool' 'gobject-introspection' 'libnotify' 'git')
+url="https://gitcafe.com/Deepin/deepin-nautilus-properties;
+options=('!emptydirs')
+source=("git+https://github.com/linuxdeepin/deepin-nautilus-properties.git;)
+sha256sums=('SKIP')
+
+build() {
+  cd deepin-nautilus-properties
+
+  # regenerate autotools files
+  libtoolize && aclocal && autoheader && automake --add-missing && autoconf
+
+  ./configure --prefix=/usr \
+  --libexecdir=/usr/lib/nautilus \
+  --disable-nst-extension \
+  --disable-update-mimedb \
+  --disable-packagekit \
+  --disable-introspection \
+  --disable-tracker
+  make
+}
+
+package() {
+  cd deepin-nautilus-properties/src
+  install -dm755 "$pkgdir/usr/bin"
+  libtool --mode=install /usr/bin/install -c deepin-nautilus-properties 
"$pkgdir/usr/bin"
+}


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


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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 15:51:28
  Author: spupykin
Revision: 147788

add check()

Modified:
  python2-dnspython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 14:33:34 UTC (rev 147787)
+++ PKGBUILD2015-11-25 14:51:28 UTC (rev 147788)
@@ -13,6 +13,11 @@
 source=(http://www.dnspython.org/kits/$pkgver/dnspython-$pkgver.tar.gz)
 md5sums=('3f2601ef3c8b77fc6d21a9c77a81efeb')
 
+check() {
+  cd $srcdir/dnspython-$pkgver
+  make -C tests check
+}
+
 package() {
   cd $srcdir/dnspython-$pkgver
   python2 setup.py install --root=$pkgdir


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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 15:53:26
  Author: spupykin
Revision: 147789

python->python2

Modified:
  python2-dnspython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 14:51:28 UTC (rev 147788)
+++ PKGBUILD2015-11-25 14:53:26 UTC (rev 147789)
@@ -15,7 +15,7 @@
 
 check() {
   cd $srcdir/dnspython-$pkgver
-  make -C tests check
+  make -C tests check PYTHON=python2
 }
 
 package() {


[arch-commits] Commit in (5 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:42:17
  Author: fyan
Revision: 147831

addpkg: haskell-uuid 1.3.11-1

Added:
  haskell-uuid/
  haskell-uuid/repos/
  haskell-uuid/trunk/
  haskell-uuid/trunk/PKGBUILD
  haskell-uuid/trunk/haskell-uuid.install

--+
 PKGBUILD |   43 +++
 haskell-uuid.install |   18 ++
 2 files changed, 61 insertions(+)

Added: haskell-uuid/trunk/PKGBUILD
===
--- haskell-uuid/trunk/PKGBUILD (rev 0)
+++ haskell-uuid/trunk/PKGBUILD 2015-11-26 06:42:17 UTC (rev 147831)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uuid
+pkgname=haskell-uuid
+pkgver=1.3.11
+pkgrel=1
+pkgdesc="For creating, comparing, parsing and printing Universally Unique 
Identifiers"
+url="https://github.com/aslatter/uuid;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-cryptohash" "haskell-network-info" 
"haskell-random"
+ "haskell-text" "haskell-uuid-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('671876d2f848c9155bfe661eb138d585897ab5b0a2f2e143ef85114d459814d5')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-uuid/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-uuid/trunk/haskell-uuid.install
===
--- haskell-uuid/trunk/haskell-uuid.install (rev 0)
+++ haskell-uuid/trunk/haskell-uuid.install 2015-11-26 06:42:17 UTC (rev 
147831)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-uuid
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:44:02
  Author: fyan
Revision: 147832

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

Added:
  haskell-uuid/repos/community-i686/
  haskell-uuid/repos/community-i686/PKGBUILD
(from rev 147831, haskell-uuid/trunk/PKGBUILD)
  haskell-uuid/repos/community-i686/haskell-uuid.install
(from rev 147831, haskell-uuid/trunk/haskell-uuid.install)
  haskell-uuid/repos/community-x86_64/
  haskell-uuid/repos/community-x86_64/PKGBUILD
(from rev 147831, haskell-uuid/trunk/PKGBUILD)
  haskell-uuid/repos/community-x86_64/haskell-uuid.install
(from rev 147831, haskell-uuid/trunk/haskell-uuid.install)

---+
 community-i686/PKGBUILD   |   43 
 community-i686/haskell-uuid.install   |   18 +
 community-x86_64/PKGBUILD |   43 
 community-x86_64/haskell-uuid.install |   18 +
 4 files changed, 122 insertions(+)

Copied: haskell-uuid/repos/community-i686/PKGBUILD (from rev 147831, 
haskell-uuid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:44:02 UTC (rev 147832)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uuid
+pkgname=haskell-uuid
+pkgver=1.3.11
+pkgrel=1
+pkgdesc="For creating, comparing, parsing and printing Universally Unique 
Identifiers"
+url="https://github.com/aslatter/uuid;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-cryptohash" "haskell-network-info" 
"haskell-random"
+ "haskell-text" "haskell-uuid-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('671876d2f848c9155bfe661eb138d585897ab5b0a2f2e143ef85114d459814d5')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-uuid/repos/community-i686/haskell-uuid.install (from rev 
147831, haskell-uuid/trunk/haskell-uuid.install)
===
--- community-i686/haskell-uuid.install (rev 0)
+++ community-i686/haskell-uuid.install 2015-11-26 06:44:02 UTC (rev 147832)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-uuid
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-uuid/repos/community-x86_64/PKGBUILD (from rev 147831, 
haskell-uuid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 06:44:02 UTC (rev 147832)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uuid
+pkgname=haskell-uuid
+pkgver=1.3.11
+pkgrel=1
+pkgdesc="For creating, comparing, parsing and printing Universally Unique 
Identifiers"
+url="https://github.com/aslatter/uuid;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-cryptohash" "haskell-network-info" 
"haskell-random"
+ "haskell-text" "haskell-uuid-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:52:44
  Author: fyan
Revision: 147833

upgpkg: deepin-daemon 2.93.1-4

include /etc/deepin-version

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 06:44:02 UTC (rev 147832)
+++ PKGBUILD2015-11-26 06:52:44 UTC (rev 147833)
@@ -9,7 +9,8 @@
 _golibrev=238151791673412dedf63b3a37343c461acb
 _deepinapiver=2.92.1
 _dbusfactoryver=2.92.1
-pkgrel=3
+_desktopbaserev=6cd46627bb62ce820991aa53439be8142b523ad8
+pkgrel=4
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;
@@ -30,11 +31,13 @@
 "git+https://github.com/linuxdeepin/go-lib.git#commit=$_golibrev;
 
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
 "git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;
+
"git+https://github.com/linuxdeepin/deepin-desktop-base.git#commit=$_desktopbaserev;
 'fix-i686-compile.patch' 'deepin-daemon.sysusers' 
'ishuman-via-login-defs.patch' 'get-distro-info.patch')
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
 'SKIP'
+'SKIP'
 '1dccf88c5ce480560a4a2d73134e69f05135703fe34ccd5d9e2e5d7fe852efc5'
 '4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25'
 '182fd299b9f222ce8f94da9137fb671f95fbd32bd28becfaf8c97b9fdd488c65'
@@ -76,4 +79,5 @@
   make USE_GCCGO=1 DESTDIR="${pkgdir}" install
 
   install -Dm644 ../deepin-daemon.sysusers 
"$pkgdir/usr/lib/sysusers.d/deepin-daemon.conf"
+  install -Dm644 "${srcdir}"/deepin-desktop-base/desktop-version 
"${pkgdir}"/etc/deepin-version
 }


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:53:27
  Author: fyan
Revision: 147834

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

Deleted:
  deepin-daemon/repos/community-i686/PKGBUILD
  deepin-daemon/repos/community-i686/deepin-daemon.install
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
  deepin-daemon/repos/community-i686/fix-i686-compile.patch
  deepin-daemon/repos/community-x86_64/PKGBUILD
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
  deepin-daemon/repos/community-x86_64/fix-i686-compile.patch

-+
 community-i686/PKGBUILD |   79 --
 community-i686/deepin-daemon.install|   13 
 community-i686/deepin-daemon.sysusers   |2 
 community-i686/fix-i686-compile.patch   |   12 
 community-x86_64/PKGBUILD   |   79 --
 community-x86_64/deepin-daemon.install  |   13 
 community-x86_64/deepin-daemon.sysusers |2 
 community-x86_64/fix-i686-compile.patch |   12 
 8 files changed, 212 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 06:52:44 UTC (rev 147833)
+++ community-i686/PKGBUILD 2015-11-26 06:53:27 UTC (rev 147834)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-daemon
-pkgver=2.93.1
-#_golibver=0.4.2
-_golibrev=238151791673412dedf63b3a37343c461acb
-_deepinapiver=2.92.1
-_dbusfactoryver=2.92.1
-pkgrel=3
-pkgdesc='Daemon handling the DDE session settings'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-daemon;
-license=('GPL3')
-depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'metacity' 
'poppler-glib'
- 'rfkill' 'acpid' 'bluez' 'deepin-notifications' 'iso-codes' 
'lsb-release'
- 'mobile-broadband-provider-info' 'polkit-gnome' 'udisks2' 'upower' 
'gcc-go'
- 'libxkbfile' 'accountsservice')
-makedepends=('deepin-dbus-generator' 'sqlite' 'git' 'mercurial')
-optdepends=('networkmanager: Network Management daemon'
-'deepin-grub2-themes: deepin theme for grub menu')
-conflicts=('dde-daemon')
-replaces=('dde-daemon')
-groups=('deepin')
-install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/dde-daemon.git#tag=$pkgver;
-#"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
-"git+https://github.com/linuxdeepin/go-lib.git#commit=$_golibrev;
-
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;
-'fix-i686-compile.patch' 'deepin-daemon.sysusers' 
'ishuman-via-login-defs.patch' 'get-distro-info.patch')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'1dccf88c5ce480560a4a2d73134e69f05135703fe34ccd5d9e2e5d7fe852efc5'
-'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25'
-'182fd299b9f222ce8f94da9137fb671f95fbd32bd28becfaf8c97b9fdd488c65'
-'4b3f743b8cffc591ab5582aa4ba6a56f464cd7c279a3594e637fffac0a14df63')
-
-prepare() {
-  export GOPATH="$srcdir/build"
-  mkdir -p build/src/pkg.deepin.io/{lib,dde/api}
-  cp -a go-lib/* build/src/pkg.deepin.io/lib
-  cp -a dde-api/* build/src/pkg.deepin.io/dde/api/
-  
-  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/howeyc/fsnotify \
- github.com/mattn/go-sqlite3 gopkg.in/alecthomas/kingpin.v2 
github.com/disintegration/imaging \
- code.google.com/p/graphics-go/graphics 
code.google.com/p/jamslam-freetype-go/freetype \
- code.google.com/p/jamslam-freetype-go/freetype/truetype
-
-  cd dde-daemon
-  # TODO: a temporary solution by disable go-sqlite3 to avoid build
-  #   issue for go1.4/i686
-  # https://github.com/golang/go/issues/9510
-  if [[ $CARCH == "i686" ]]; then
-patch -p1 -i ../fix-i686-compile.patch
-  fi
-
-  patch -p1 -i ../ishuman-via-login-defs.patch
-  patch -p1 -i ../get-distro-info.patch
-}
-
-build() {
-  cd "$srcdir/dbus-factory"
-  make install-golang
-
-  cd "$srcdir/dde-daemon"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd dde-daemon
-  make USE_GCCGO=1 DESTDIR="${pkgdir}" install
-
-  install -Dm644 ../deepin-daemon.sysusers 
"$pkgdir/usr/lib/sysusers.d/deepin-daemon.conf"
-}

Deleted: community-i686/deepin-daemon.install
===
--- community-i686/deepin-daemon.install2015-11-26 06:52:44 UTC (rev 
147833)
+++ community-i686/deepin-daemon.install2015-11-26 06:53:27 UTC (rev 
147834)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas --allow-any-name usr/share/glib-2.0/schemas
-  systemd-sysusers deepin-daemon.conf
-}

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:54:55
  Author: fyan
Revision: 147835

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

Added:
  deepin-daemon/repos/community-i686/PKGBUILD
(from rev 147834, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-i686/deepin-daemon.install
(from rev 147834, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
(from rev 147834, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-i686/fix-i686-compile.patch
(from rev 147834, deepin-daemon/trunk/fix-i686-compile.patch)
  deepin-daemon/repos/community-i686/get-distro-info.patch
(from rev 147834, deepin-daemon/trunk/get-distro-info.patch)
  deepin-daemon/repos/community-i686/ishuman-via-login-defs.patch
(from rev 147834, deepin-daemon/trunk/ishuman-via-login-defs.patch)
  deepin-daemon/repos/community-x86_64/PKGBUILD
(from rev 147834, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
(from rev 147834, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
(from rev 147834, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-x86_64/fix-i686-compile.patch
(from rev 147834, deepin-daemon/trunk/fix-i686-compile.patch)
  deepin-daemon/repos/community-x86_64/get-distro-info.patch
(from rev 147834, deepin-daemon/trunk/get-distro-info.patch)
  deepin-daemon/repos/community-x86_64/ishuman-via-login-defs.patch
(from rev 147834, deepin-daemon/trunk/ishuman-via-login-defs.patch)
Deleted:
  deepin-daemon/repos/community-i686/get-distro-info.patch
  deepin-daemon/repos/community-i686/ishuman-via-login-defs.patch
  deepin-daemon/repos/community-x86_64/get-distro-info.patch
  deepin-daemon/repos/community-x86_64/ishuman-via-login-defs.patch

---+
 /get-distro-info.patch|  238 +
 /ishuman-via-login-defs.patch |  264 
 community-i686/PKGBUILD   |   83 +++
 community-i686/deepin-daemon.install  |   13 +
 community-i686/deepin-daemon.sysusers |2 
 community-i686/fix-i686-compile.patch |   12 +
 community-i686/get-distro-info.patch  |  119 --
 community-i686/ishuman-via-login-defs.patch   |  132 
 community-x86_64/PKGBUILD |   83 +++
 community-x86_64/deepin-daemon.install|   13 +
 community-x86_64/deepin-daemon.sysusers   |2 
 community-x86_64/fix-i686-compile.patch   |   12 +
 community-x86_64/get-distro-info.patch|  119 --
 community-x86_64/ishuman-via-login-defs.patch |  132 
 14 files changed, 722 insertions(+), 502 deletions(-)

Copied: deepin-daemon/repos/community-i686/PKGBUILD (from rev 147834, 
deepin-daemon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:54:55 UTC (rev 147835)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-daemon
+pkgver=2.93.1
+#_golibver=0.4.2
+_golibrev=238151791673412dedf63b3a37343c461acb
+_deepinapiver=2.92.1
+_dbusfactoryver=2.92.1
+_desktopbaserev=6cd46627bb62ce820991aa53439be8142b523ad8
+pkgrel=4
+pkgdesc='Daemon handling the DDE session settings'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-daemon;
+license=('GPL3')
+depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'metacity' 
'poppler-glib'
+ 'rfkill' 'acpid' 'bluez' 'deepin-notifications' 'iso-codes' 
'lsb-release'
+ 'mobile-broadband-provider-info' 'polkit-gnome' 'udisks2' 'upower' 
'gcc-go'
+ 'libxkbfile' 'accountsservice')
+makedepends=('deepin-dbus-generator' 'sqlite' 'git' 'mercurial')
+optdepends=('networkmanager: Network Management daemon'
+'deepin-grub2-themes: deepin theme for grub menu')
+conflicts=('dde-daemon')
+replaces=('dde-daemon')
+groups=('deepin')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/dde-daemon.git#tag=$pkgver;
+#"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
+"git+https://github.com/linuxdeepin/go-lib.git#commit=$_golibrev;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+"git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;
+
"git+https://github.com/linuxdeepin/deepin-desktop-base.git#commit=$_desktopbaserev;
+'fix-i686-compile.patch' 'deepin-daemon.sysusers' 
'ishuman-via-login-defs.patch' 'get-distro-info.patch')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+  

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

2015-11-25 Thread Christian Hesse
Date: Wednesday, November 25, 2015 @ 11:04:39
  Author: eworm
Revision: 147765

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

Added:
  xcur2png/repos/community-i686/
  xcur2png/repos/community-i686/PKGBUILD
(from rev 147764, xcur2png/trunk/PKGBUILD)
  xcur2png/repos/community-x86_64/
  xcur2png/repos/community-x86_64/PKGBUILD
(from rev 147764, xcur2png/trunk/PKGBUILD)

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

Copied: xcur2png/repos/community-i686/PKGBUILD (from rev 147764, 
xcur2png/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 10:04:39 UTC (rev 147765)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jarred Leonardo 
+
+pkgname=xcur2png
+pkgver=0.7.1
+pkgrel=4
+pkgdesc='Convert X cursors to PNG images'
+arch=('i686' 'x86_64')
+url="http://cli-apps.org/content/show.php/xcur2png?content=86010;
+license=('GPL')
+depends=('libpng' 'libxcursor')
+source=("${pkgname}-${pkgver}.tar.gz::http://cli-apps.org/CONTENT/content-files/86010-${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('bc6a062fdb48615a7159ed56ef3d2011168cd8a9decaf1d8a4e316d3064132c9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}
+

Copied: xcur2png/repos/community-x86_64/PKGBUILD (from rev 147764, 
xcur2png/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-25 10:04:39 UTC (rev 147765)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jarred Leonardo 
+
+pkgname=xcur2png
+pkgver=0.7.1
+pkgrel=4
+pkgdesc='Convert X cursors to PNG images'
+arch=('i686' 'x86_64')
+url="http://cli-apps.org/content/show.php/xcur2png?content=86010;
+license=('GPL')
+depends=('libpng' 'libxcursor')
+source=("${pkgname}-${pkgver}.tar.gz::http://cli-apps.org/CONTENT/content-files/86010-${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('bc6a062fdb48615a7159ed56ef3d2011168cd8a9decaf1d8a4e316d3064132c9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}
+


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

2015-11-25 Thread Felix Yan
Date: Wednesday, November 25, 2015 @ 11:44:29
  Author: fyan
Revision: 147767

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

Added:
  deepin-api/repos/community-i686/PKGBUILD
(from rev 147766, deepin-api/trunk/PKGBUILD)
  deepin-api/repos/community-x86_64/PKGBUILD
(from rev 147766, deepin-api/trunk/PKGBUILD)
Deleted:
  deepin-api/repos/community-i686/PKGBUILD
  deepin-api/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 10:44:01 UTC (rev 147766)
+++ community-i686/PKGBUILD 2015-11-25 10:44:29 UTC (rev 147767)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-api
-pkgver=2.92.1
-_golibver=0.4.2
-_dbusfactoryver=2.92.1
-pkgrel=3
-pkgdesc='Go-lang bingdings for dde-daemon'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/dde-api;
-license=('GPL3')
-depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'gcc-go' 'poppler-glib' 'deepin-metacity')
-conflicts=('dde-api')
-replaces=('dde-api')
-groups=('deepin')
-makedepends=('git' 'deepin-dbus-generator' 'bzr')
-source=("git+https://github.com/linuxdeepin/dde-api.git#tag=$pkgver;
-"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
-
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i 's/libmetacity-private/libdeepin-metacity-private/' dde-api/Makefile 
dde-api/gtk-thumbnailer/wrapper.go
-
-  export GOPATH="$srcdir/build"
-  mkdir -p build/src/pkg.deepin.io/lib
-  cp -a go-lib/* build/src/pkg.deepin.io/lib
-
-  cd "$srcdir/dde-api"
-  make build-dep
-  go get gopkg.in/alecthomas/kingpin.v2
-}
-
-build(){
-  cd "$srcdir/dbus-factory"
-  make install-golang
-
-  cd "$srcdir/dde-api"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd dde-api
-  make DESTDIR="${pkgdir}" install-binary
-}

Copied: deepin-api/repos/community-i686/PKGBUILD (from rev 147766, 
deepin-api/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 10:44:29 UTC (rev 147767)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=2.92.1
+_golibver=0.4.2
+_dbusfactoryver=2.92.1
+pkgrel=4
+pkgdesc='Go-lang bingdings for dde-daemon'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/dde-api;
+license=('GPL3')
+depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'gcc-go' 'poppler-glib' 'deepin-metacity' 'xcur2png')
+conflicts=('dde-api')
+replaces=('dde-api')
+groups=('deepin')
+makedepends=('git' 'deepin-dbus-generator' 'bzr')
+source=("git+https://github.com/linuxdeepin/dde-api.git#tag=$pkgver;
+"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i 's/libmetacity-private/libdeepin-metacity-private/' dde-api/Makefile 
dde-api/gtk-thumbnailer/wrapper.go
+
+  export GOPATH="$srcdir/build"
+  mkdir -p build/src/pkg.deepin.io/lib
+  cp -a go-lib/* build/src/pkg.deepin.io/lib
+
+  cd "$srcdir/dde-api"
+  make build-dep
+  go get gopkg.in/alecthomas/kingpin.v2
+}
+
+build(){
+  cd "$srcdir/dbus-factory"
+  make install-golang
+
+  cd "$srcdir/dde-api"
+  make USE_GCCGO=1
+}
+
+package() {
+  cd dde-api
+  make DESTDIR="${pkgdir}" install-binary
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-25 10:44:01 UTC (rev 147766)
+++ community-x86_64/PKGBUILD   2015-11-25 10:44:29 UTC (rev 147767)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-api
-pkgver=2.92.1
-_golibver=0.4.2
-_dbusfactoryver=2.92.1
-pkgrel=3
-pkgdesc='Go-lang bingdings for dde-daemon'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/dde-api;
-license=('GPL3')
-depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'gcc-go' 'poppler-glib' 'deepin-metacity')
-conflicts=('dde-api')
-replaces=('dde-api')
-groups=('deepin')
-makedepends=('git' 

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

2015-11-25 Thread Felix Yan
Date: Wednesday, November 25, 2015 @ 11:44:01
  Author: fyan
Revision: 147766

upgpkg: deepin-api 2.92.1-4

fix dependency on xcur2png

Modified:
  deepin-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 10:04:39 UTC (rev 147765)
+++ PKGBUILD2015-11-25 10:44:01 UTC (rev 147766)
@@ -7,12 +7,12 @@
 pkgver=2.92.1
 _golibver=0.4.2
 _dbusfactoryver=2.92.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Go-lang bingdings for dde-daemon'
 arch=('i686' 'x86_64')
 url="https://gitcafe.com/Deepin/dde-api;
 license=('GPL3')
-depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'gcc-go' 'poppler-glib' 'deepin-metacity')
+depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'gcc-go' 'poppler-glib' 'deepin-metacity' 'xcur2png')
 conflicts=('dde-api')
 replaces=('dde-api')
 groups=('deepin')


[arch-commits] Commit in (4 files)

2015-11-25 Thread Christian Hesse
Date: Wednesday, November 25, 2015 @ 11:03:57
  Author: eworm
Revision: 147764

initial import: xcur2png 0.7.1-4

Added:
  xcur2png/
  xcur2png/repos/
  xcur2png/trunk/
  xcur2png/trunk/PKGBUILD

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

Added: xcur2png/trunk/PKGBUILD
===
--- xcur2png/trunk/PKGBUILD (rev 0)
+++ xcur2png/trunk/PKGBUILD 2015-11-25 10:03:57 UTC (rev 147764)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jarred Leonardo 
+
+pkgname=xcur2png
+pkgver=0.7.1
+pkgrel=4
+pkgdesc='Convert X cursors to PNG images'
+arch=('i686' 'x86_64')
+url="http://cli-apps.org/content/show.php/xcur2png?content=86010;
+license=('GPL')
+depends=('libpng' 'libxcursor')
+source=("${pkgname}-${pkgver}.tar.gz::http://cli-apps.org/CONTENT/content-files/86010-${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('bc6a062fdb48615a7159ed56ef3d2011168cd8a9decaf1d8a4e316d3064132c9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}
+


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


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

2015-11-25 Thread speps
Date: Wednesday, November 25, 2015 @ 13:24:35
  Author: speps
Revision: 147771

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

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

---+
 /PKGBUILD |  150 
 /qupzilla.install |   24 +
 community-i686/PKGBUILD   |   75 --
 community-i686/qupzilla.install   |   12 --
 community-x86_64/PKGBUILD |   75 --
 community-x86_64/qupzilla.install |   12 --
 6 files changed, 174 insertions(+), 174 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 12:24:20 UTC (rev 147770)
+++ community-i686/PKGBUILD 2015-11-25 12:24:35 UTC (rev 147771)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgbase=qupzilla
-pkgname=(qupzilla qupzilla-qt4)
-pkgver=1.8.8
-pkgrel=1
-pkgdesc="Cross-platform QtWebKit browser"
-arch=(i686 x86_64)
-url="http://www.qupzilla.com/;
-license=('GPL3')
-makedepends=('qtwebkit' 'qt5-webkit' 'qt5-script' 'qt5-tools' 'hunspell' 
'kdelibs' 'kwallet' 'libgnome-keyring')
-optdepends=('bash-completion: bash completion support')
-install="$pkgbase.install"
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/QupZilla/qupzilla/archive/v$pkgver.tar.gz;)
-noextract=("$pkgbase-$pkgver.tar.gz")
-md5sums=('8a4e6dded5a259510665f5930c916a52')
-
-prepare() {
-  # extract
-  mkdir -p qt{4,5}
-  bsdtar --strip-components 1 -zxf $pkgbase-$pkgver.tar.gz -C qt4
-  bsdtar --strip-components 1 -zxf $pkgbase-$pkgver.tar.gz -C qt5
-
-  # configure
-  export USE_WEBGL=true \
- QUPZILLA_PREFIX=/usr/ \
- KDE_INTEGRATION=true \
- GNOME_INTEGRATION=true
-}
-
-build() {
-  cd qt4
-  qmake-qt4
-  make
-
-  cd ../qt5
-  qmake
-  make
-}
-
-package_qupzilla() {
-  pkgdesc+=" (Qt5)"
-  depends=('qt5-webkit' 'qt5-script' 'qt5-x11extras' 'hunspell' 
'desktop-file-utils' 'hicolor-icon-theme')
-  optdepends=('kwallet: kf5 kwallet integration'
-  'libgnome-keyring: gnome keyring integration')
-  provides=('qupzilla-qt5')
-  conflicts=('qupzilla-qt5')
-  replaces=('qupzilla-qt5')
-
-  cd qt5
-  make INSTALL_ROOT="$pkgdir/" install
-
-  # zsh completion
-  install -Dm644 linux/completion/_$pkgbase \
-"$pkgdir/usr/share/zsh/site-functions/_$pkgbase"
-}
-
-package_qupzilla-qt4() {
-  pkgdesc+=" (Qt4)"
-  depends=('qtwebkit' 'hunspell')
-  optdepends=('kdelibs: kwallet integration'
-  'libgnome-keyring: gnome keyring integration')
-  provides=('qupzilla')
-  conflicts=('qupzilla')
-
-  cd qt4
-  make INSTALL_ROOT="$pkgdir/" install
-
-  # zsh completion
-  install -Dm644 linux/completion/_$pkgbase \
-"$pkgdir/usr/share/zsh/site-functions/_$pkgbase"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: qupzilla/repos/community-i686/PKGBUILD (from rev 147770, 
qupzilla/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 12:24:35 UTC (rev 147771)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: speps 
+
+pkgbase=qupzilla
+pkgname=(qupzilla qupzilla-qt4)
+pkgver=1.8.9
+pkgrel=1
+pkgdesc="Cross-platform QtWebKit browser"
+arch=(i686 x86_64)
+url="http://www.qupzilla.com/;
+license=('GPL3')
+makedepends=('qtwebkit' 'qt5-webkit' 'qt5-script' 'qt5-tools' 'hunspell' 
'kdelibs' 'kwallet' 'libgnome-keyring')
+optdepends=('bash-completion: bash completion support')
+install="$pkgbase.install"
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/QupZilla/qupzilla/archive/v$pkgver.tar.gz;)
+noextract=("$pkgbase-$pkgver.tar.gz")
+md5sums=('a39767aa92b482863ea4851935e26dd2')
+
+prepare() {
+  # extract
+  mkdir -p qt{4,5}
+  bsdtar --strip-components 1 -zxf $pkgbase-$pkgver.tar.gz -C qt4
+  bsdtar --strip-components 1 -zxf $pkgbase-$pkgver.tar.gz -C qt5
+
+  # configure
+  export USE_WEBGL=true \
+ QUPZILLA_PREFIX=/usr/ \
+ KDE_INTEGRATION=true \
+ GNOME_INTEGRATION=true
+}
+
+build() {
+  cd qt4
+  qmake-qt4
+  make
+
+  cd ../qt5
+  qmake
+  make
+}
+
+package_qupzilla() {
+  pkgdesc+=" (Qt5)"
+  depends=('qt5-webkit' 'qt5-script' 'qt5-x11extras' 'hunspell' 
'desktop-file-utils' 'hicolor-icon-theme')
+  optdepends=('kwallet: kf5 kwallet integration'
+  'libgnome-keyring: gnome keyring integration')

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

2015-11-25 Thread speps
Date: Wednesday, November 25, 2015 @ 13:24:20
  Author: speps
Revision: 147770

upgpkg: qupzilla 1.8.9-1

Modified:
  qupzilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 12:06:04 UTC (rev 147769)
+++ PKGBUILD2015-11-25 12:24:20 UTC (rev 147770)
@@ -3,7 +3,7 @@
 
 pkgbase=qupzilla
 pkgname=(qupzilla qupzilla-qt4)
-pkgver=1.8.8
+pkgver=1.8.9
 pkgrel=1
 pkgdesc="Cross-platform QtWebKit browser"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 install="$pkgbase.install"
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/QupZilla/qupzilla/archive/v$pkgver.tar.gz;)
 noextract=("$pkgbase-$pkgver.tar.gz")
-md5sums=('8a4e6dded5a259510665f5930c916a52')
+md5sums=('a39767aa92b482863ea4851935e26dd2')
 
 prepare() {
   # extract


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

2015-11-25 Thread Daniel Micay
Date: Wednesday, November 25, 2015 @ 13:06:04
  Author: thestinger
Revision: 147769

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 12:05:30 UTC (rev 147768)
+++ community-i686/PKGBUILD 2015-11-25 12:06:04 UTC (rev 147769)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=playpen
-pkgver=12
-pkgrel=1
-epoch=1
-pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
-arch=(i686 x86_64)
-url='https://github.com/thestinger/playpen/'
-license=(MIT)
-depends=(libseccomp systemd)
-makedepends=(git)
-source=(git://github.com/thestinger/playpen#tag=$pkgver)
-md5sums=('SKIP')
-
-build() {
-  make -C $pkgname
-}
-
-package() {
-  cd $pkgname
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: playpen/repos/community-i686/PKGBUILD (from rev 147768, 
playpen/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 12:06:04 UTC (rev 147769)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Daniel Micay 
+pkgname=playpen
+pkgver=13
+pkgrel=1
+epoch=1
+pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
+arch=(i686 x86_64)
+url='https://github.com/thestinger/playpen/'
+license=(MIT)
+depends=(libseccomp systemd)
+makedepends=(git)
+source=(git+https://github.com/thestinger/playpen#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-25 12:05:30 UTC (rev 147768)
+++ community-x86_64/PKGBUILD   2015-11-25 12:06:04 UTC (rev 147769)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-pkgname=playpen
-pkgver=12
-pkgrel=1
-epoch=1
-pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
-arch=(i686 x86_64)
-url='https://github.com/thestinger/playpen/'
-license=(MIT)
-depends=(libseccomp systemd)
-makedepends=(git)
-source=(git://github.com/thestinger/playpen#tag=$pkgver)
-md5sums=('SKIP')
-
-build() {
-  make -C $pkgname
-}
-
-package() {
-  cd $pkgname
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: playpen/repos/community-x86_64/PKGBUILD (from rev 147768, 
playpen/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-25 12:06:04 UTC (rev 147769)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Daniel Micay 
+pkgname=playpen
+pkgver=13
+pkgrel=1
+epoch=1
+pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
+arch=(i686 x86_64)
+url='https://github.com/thestinger/playpen/'
+license=(MIT)
+depends=(libseccomp systemd)
+makedepends=(git)
+source=(git+https://github.com/thestinger/playpen#tag=$pkgver)
+md5sums=('SKIP')
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  cd $pkgname
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-11-25 Thread Daniel Micay
Date: Wednesday, November 25, 2015 @ 13:05:30
  Author: thestinger
Revision: 147768

upgpkg: playpen 1:13-1

Modified:
  playpen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 10:44:29 UTC (rev 147767)
+++ PKGBUILD2015-11-25 12:05:30 UTC (rev 147768)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Daniel Micay 
 pkgname=playpen
-pkgver=12
+pkgver=13
 pkgrel=1
 epoch=1
 pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
@@ -10,7 +10,7 @@
 license=(MIT)
 depends=(libseccomp systemd)
 makedepends=(git)
-source=(git://github.com/thestinger/playpen#tag=$pkgver)
+source=(git+https://github.com/thestinger/playpen#tag=$pkgver)
 md5sums=('SKIP')
 
 build() {


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

2015-11-25 Thread Sven-Hendrik Haase
Date: Wednesday, November 25, 2015 @ 13:35:57
  Author: svenstaro
Revision: 147772

upgpkg: yaml-cpp 0.5.2-3

Install config.cmake files and fix url

Modified:
  yaml-cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 12:24:35 UTC (rev 147771)
+++ PKGBUILD2015-11-25 12:35:57 UTC (rev 147772)
@@ -4,9 +4,9 @@
 
 pkgname=yaml-cpp
 pkgver=0.5.2
-pkgrel=2
+pkgrel=3
 pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
-url="http://code.google.com/p/yaml-cpp/;
+url="https://github.com/jbeder/yaml-cpp;
 arch=('i686' 'x86_64')
 license=('MIT')
 depends=('gcc-libs')
@@ -26,5 +26,8 @@
 
 make DESTDIR=$pkgdir install
 
+install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/ymal-cpp-config.cmake
+install -Dm644 yaml-cpp-config-version.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config-version.cmake
+
 install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }


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

2015-11-25 Thread Sven-Hendrik Haase
Date: Wednesday, November 25, 2015 @ 13:36:07
  Author: svenstaro
Revision: 147773

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

Added:
  yaml-cpp/repos/community-i686/PKGBUILD
(from rev 147772, yaml-cpp/trunk/PKGBUILD)
  yaml-cpp/repos/community-x86_64/PKGBUILD
(from rev 147772, yaml-cpp/trunk/PKGBUILD)
Deleted:
  yaml-cpp/repos/community-i686/PKGBUILD
  yaml-cpp/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   30 
 community-x86_64/PKGBUILD |   30 
 3 files changed, 66 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 12:35:57 UTC (rev 147772)
+++ community-i686/PKGBUILD 2015-11-25 12:36:07 UTC (rev 147773)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Markus Martin 
-
-pkgname=yaml-cpp
-pkgver=0.5.2
-pkgrel=2
-pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
-url="http://code.google.com/p/yaml-cpp/;
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('boost' 'cmake')
-source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
-md5sums=('2728af8a15e2b2c407730c45b99b274b')
-
-build() {
-cd $srcdir/$pkgname-release-$pkgver
-
-cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
-make
-}
-
-package() {
-cd $srcdir/$pkgname-release-$pkgver
-
-make DESTDIR=$pkgdir install
-
-install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: yaml-cpp/repos/community-i686/PKGBUILD (from rev 147772, 
yaml-cpp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 12:36:07 UTC (rev 147773)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Markus Martin 
+
+pkgname=yaml-cpp
+pkgver=0.5.2
+pkgrel=3
+pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
+url="https://github.com/jbeder/yaml-cpp;
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('boost' 'cmake')
+source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
+md5sums=('2728af8a15e2b2c407730c45b99b274b')
+
+build() {
+cd $srcdir/$pkgname-release-$pkgver
+
+cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
+make
+}
+
+package() {
+cd $srcdir/$pkgname-release-$pkgver
+
+make DESTDIR=$pkgdir install
+
+install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/ymal-cpp-config.cmake
+install -Dm644 yaml-cpp-config-version.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config-version.cmake
+
+install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-25 12:35:57 UTC (rev 147772)
+++ community-x86_64/PKGBUILD   2015-11-25 12:36:07 UTC (rev 147773)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Markus Martin 
-
-pkgname=yaml-cpp
-pkgver=0.5.2
-pkgrel=2
-pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
-url="http://code.google.com/p/yaml-cpp/;
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('boost' 'cmake')
-source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
-md5sums=('2728af8a15e2b2c407730c45b99b274b')
-
-build() {
-cd $srcdir/$pkgname-release-$pkgver
-
-cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
-make
-}
-
-package() {
-cd $srcdir/$pkgname-release-$pkgver
-
-make DESTDIR=$pkgdir install
-
-install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: yaml-cpp/repos/community-x86_64/PKGBUILD (from rev 147772, 
yaml-cpp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-25 12:36:07 UTC (rev 147773)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Markus Martin 
+
+pkgname=yaml-cpp
+pkgver=0.5.2
+pkgrel=3
+pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
+url="https://github.com/jbeder/yaml-cpp;
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('boost' 'cmake')
+source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
+md5sums=('2728af8a15e2b2c407730c45b99b274b')
+
+build() {
+cd 

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

2015-11-25 Thread Sven-Hendrik Haase
Date: Wednesday, November 25, 2015 @ 13:43:18
  Author: svenstaro
Revision: 147775

upgpkg: yaml-cpp 0.5.2-4

Fix typo

Modified:
  yaml-cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 12:41:18 UTC (rev 147774)
+++ PKGBUILD2015-11-25 12:43:18 UTC (rev 147775)
@@ -4,7 +4,7 @@
 
 pkgname=yaml-cpp
 pkgver=0.5.2
-pkgrel=3
+pkgrel=4
 pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
 url="https://github.com/jbeder/yaml-cpp;
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 
 make DESTDIR=$pkgdir install
 
-install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/ymal-cpp-config.cmake
+install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config.cmake
 install -Dm644 yaml-cpp-config-version.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config-version.cmake
 
 install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE


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

2015-11-25 Thread Sven-Hendrik Haase
Date: Wednesday, November 25, 2015 @ 13:43:25
  Author: svenstaro
Revision: 147776

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

Added:
  yaml-cpp/repos/community-i686/PKGBUILD
(from rev 147775, yaml-cpp/trunk/PKGBUILD)
  yaml-cpp/repos/community-x86_64/PKGBUILD
(from rev 147775, yaml-cpp/trunk/PKGBUILD)
Deleted:
  yaml-cpp/repos/community-i686/PKGBUILD
  yaml-cpp/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 12:43:18 UTC (rev 147775)
+++ community-i686/PKGBUILD 2015-11-25 12:43:25 UTC (rev 147776)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Markus Martin 
-
-pkgname=yaml-cpp
-pkgver=0.5.2
-pkgrel=3
-pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
-url="https://github.com/jbeder/yaml-cpp;
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('boost' 'cmake')
-source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
-md5sums=('2728af8a15e2b2c407730c45b99b274b')
-
-build() {
-cd $srcdir/$pkgname-release-$pkgver
-
-cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
-make
-}
-
-package() {
-cd $srcdir/$pkgname-release-$pkgver
-
-make DESTDIR=$pkgdir install
-
-install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/ymal-cpp-config.cmake
-install -Dm644 yaml-cpp-config-version.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config-version.cmake
-
-install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: yaml-cpp/repos/community-i686/PKGBUILD (from rev 147775, 
yaml-cpp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 12:43:25 UTC (rev 147776)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Markus Martin 
+
+pkgname=yaml-cpp
+pkgver=0.5.2
+pkgrel=4
+pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
+url="https://github.com/jbeder/yaml-cpp;
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('boost' 'cmake')
+source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
+md5sums=('2728af8a15e2b2c407730c45b99b274b')
+
+build() {
+cd $srcdir/$pkgname-release-$pkgver
+
+cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
+make
+}
+
+package() {
+cd $srcdir/$pkgname-release-$pkgver
+
+make DESTDIR=$pkgdir install
+
+install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config.cmake
+install -Dm644 yaml-cpp-config-version.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config-version.cmake
+
+install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-25 12:43:18 UTC (rev 147775)
+++ community-x86_64/PKGBUILD   2015-11-25 12:43:25 UTC (rev 147776)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Markus Martin 
-
-pkgname=yaml-cpp
-pkgver=0.5.2
-pkgrel=3
-pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
-url="https://github.com/jbeder/yaml-cpp;
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('boost' 'cmake')
-source=(https://github.com/jbeder/yaml-cpp/archive/release-${pkgver}.tar.gz)
-md5sums=('2728af8a15e2b2c407730c45b99b274b')
-
-build() {
-cd $srcdir/$pkgname-release-$pkgver
-
-cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
-make
-}
-
-package() {
-cd $srcdir/$pkgname-release-$pkgver
-
-make DESTDIR=$pkgdir install
-
-install -Dm644 yaml-cpp-config.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/ymal-cpp-config.cmake
-install -Dm644 yaml-cpp-config-version.cmake 
$pkgdir/usr/lib/cmake/${pkgname}/yaml-cpp-config-version.cmake
-
-install -Dm644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: yaml-cpp/repos/community-x86_64/PKGBUILD (from rev 147775, 
yaml-cpp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-25 12:43:25 UTC (rev 147776)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Markus Martin 

[arch-commits] Commit in (st st/repos st/trunk st/trunk/PKGBUILD st/trunk/config.h)

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 13:41:18
  Author: spupykin
Revision: 147774

Added:
  st/
  st/repos/
  st/trunk/
  st/trunk/PKGBUILD
  st/trunk/config.h

--+
 PKGBUILD |   35 +
 config.h |  384 +
 2 files changed, 419 insertions(+)

Added: st/trunk/PKGBUILD
===
--- st/trunk/PKGBUILD   (rev 0)
+++ st/trunk/PKGBUILD   2015-11-25 12:41:18 UTC (rev 147774)
@@ -0,0 +1,35 @@
+# Contributor: Patrick Jackson 
+# Maintainer: Christoph Vigano 
+
+pkgname=st
+pkgver=0.6
+pkgrel=2
+pkgdesc='A simple virtual terminal emulator for X.'
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('libxft')
+makedepends=('ncurses')
+url="http://st.suckless.org;
+source=(http://dl.suckless.org/st/$pkgname-$pkgver.tar.gz
+config.h)
+md5sums=('1a926f450b4eacb7e2f5ac5b8ffea7c8'
+ '90ce5919be96de000bd9d9429b173490')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # skip terminfo which conflicts with nsurses
+  sed -i '/\@tic /d' Makefile
+  cp $srcdir/config.h config.h
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=/usr DESTDIR="$pkgdir" TERMINFO="$pkgdir/usr/share/terminfo" 
install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}

Added: st/trunk/config.h
===
--- st/trunk/config.h   (rev 0)
+++ st/trunk/config.h   2015-11-25 12:41:18 UTC (rev 147774)
@@ -0,0 +1,384 @@
+/* See LICENSE file for copyright and license details. */
+
+/*
+ * appearance
+ *
+ * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
+ */
+static char font[] = "Liberation 
Mono:pixelsize=12:antialias=false:autohint=false";
+static int borderpx = 2;
+static char shell[] = "/bin/sh";
+static char *utmp = NULL;
+static char stty_args[] = "stty raw -echo -iexten echonl";
+
+/* identification sequence returned in DA and DECID */
+static char vtiden[] = "\033[?6c";
+
+/* Kerning / character bounding-box multipliers */
+static float cwscale = 1.0;
+static float chscale = 1.0;
+
+/*
+ * word delimiter string
+ *
+ * More advanced example: " `'\"()[]{}"
+ */
+static char worddelimiters[] = " ";
+
+/* selection timeouts (in milliseconds) */
+static unsigned int doubleclicktimeout = 300;
+static unsigned int tripleclicktimeout = 600;
+
+/* alt screens */
+static bool allowaltscreen = true;
+
+/* frames per second st should at maximum draw to the screen */
+static unsigned int xfps = 120;
+static unsigned int actionfps = 30;
+
+/*
+ * blinking timeout (set to 0 to disable blinking) for the terminal blinking
+ * attribute.
+ */
+static unsigned int blinktimeout = 800;
+
+/*
+ * thickness of underline and bar cursors
+ */
+static unsigned int cursorthickness = 2;
+
+/*
+ * bell volume. It must be a value between -100 and 100. Use 0 for disabling
+ * it
+ */
+static int bellvolume = 0;
+
+/* TERM value */
+static char termname[] = "st-256color";
+
+static unsigned int tabspaces = 8;
+
+
+/* Terminal colors (16 first used in escape sequence) */
+static const char *colorname[] = {
+   /* 8 normal colors */
+   "black",
+   "red3",
+   "green3",
+   "yellow3",
+   "blue2",
+   "magenta3",
+   "cyan3",
+   "gray90",
+
+   /* 8 bright colors */
+   "gray50",
+   "red",
+   "green",
+   "yellow",
+   "#5c5cff",
+   "magenta",
+   "cyan",
+   "white",
+
+   [255] = 0,
+
+   /* more colors can be added after 255 to use with DefaultXX */
+   "#cc",
+};
+
+
+/*
+ * Default colors (colorname index)
+ * foreground, background, cursor
+ */
+static unsigned int defaultfg = 7;
+static unsigned int defaultbg = 0;
+static unsigned int defaultcs = 256;
+
+/*
+ * Colors used, when the specific fg == defaultfg. So in reverse mode this
+ * will reverse too. Another logic would only make the simple feature too
+ * complex.
+ */
+static unsigned int defaultitalic = 11;
+static unsigned int defaultunderline = 7;
+
+/* Internal mouse shortcuts. */
+/* Beware that overloading Button1 will disable the selection. */
+static Mousekey mshortcuts[] = {
+   /* button   maskstring */
+   { Button4,  XK_ANY_MOD, "\031" },
+   { Button5,  XK_ANY_MOD, "\005" },
+};
+
+/* Internal keyboard shortcuts. */
+#define MODKEY Mod1Mask
+
+static Shortcut shortcuts[] = {
+   /* mask keysym  functionargument */
+   { ControlMask,  XK_Print,   toggleprinter,  {.i =  0} },
+   { ShiftMask,XK_Print,   printscreen,{.i =  0} },
+   { XK_ANY_MOD,   XK_Print,   printsel,  

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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 13:44:09
  Author: spupykin
Revision: 14

upgpkg: st 0.6-2

upd

Modified:
  st/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 12:43:25 UTC (rev 147776)
+++ PKGBUILD2015-11-25 12:44:09 UTC (rev 14)
@@ -7,7 +7,7 @@
 pkgdesc='A simple virtual terminal emulator for X.'
 arch=('i686' 'x86_64')
 license=('MIT')
-depends=('libxft')
+depends=('libxft' 'libxext')
 makedepends=('ncurses')
 url="http://st.suckless.org;
 source=(http://dl.suckless.org/st/$pkgname-$pkgver.tar.gz


[arch-commits] Commit in libkolab/kde-unstable (PKGBUILD)

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 14:00:55
  Author: arojas
Revision: 251953

Update to 1.0.2

Modified:
  libkolab/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 12:53:33 UTC (rev 251952)
+++ PKGBUILD2015-11-25 13:00:55 UTC (rev 251953)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=libkolab
-pkgver=1.0.1.git20151120
+pkgver=1.0.2
 pkgrel=1
 pkgdesc="Advanced Kolab Object Handling Library"
 url='http://git.kolab.org/libkolab/'
@@ -11,10 +11,9 @@
 license=(GPL)
 depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
 makedepends=(extra-cmake-modules kdoctools boost)
-makedepends+=(git)
-#source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg})
-source=("git+https://git.kolab.org/diffusion/LK/libkolab.git#commit=6cb420ec6f71;)
-md5sums=('SKIP')
+source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg})
+md5sums=('312f35920989fd115386ee256fe78ba2'
+ '9c829ce9983b3c8cbab9ce833c982924')
 
 prepare() {
   mkdir -p build
@@ -22,7 +21,7 @@
 
 build() {
   cd build
-  cmake ../$pkgname \
+  cmake ../$pkgname-$pkgver \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr
   make


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

2015-11-25 Thread Felix Yan
Date: Wednesday, November 25, 2015 @ 14:19:03
  Author: fyan
Revision: 147781

upgpkg: deepin-desktop-schemas 2.91.1-6

Modified:
  deepin-desktop-schemas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 13:01:30 UTC (rev 147780)
+++ PKGBUILD2015-11-25 13:19:03 UTC (rev 147781)
@@ -5,12 +5,12 @@
 
 pkgname=deepin-desktop-schemas
 pkgver=2.91.1
-pkgrel=5
+pkgrel=6
 pkgdesc='GSettings deepin desktop-wide schemas'
 arch=('any')
 url="https://github.com/linuxdeepin/deepin-desktop-schemas;
 license=('GPL3')
-depends=('dconf')
+depends=('dconf' 'deepin-gtk-theme' 'deepin-sound-theme' 
'deepin-artwork-themes')
 makedepends=('git')
 conflicts=('dde-daemon<=2.92.1')
 replaces=('deepin-default-gsettings')


[arch-commits] Commit in (5 files)

2015-11-25 Thread Felix Yan
Date: Wednesday, November 25, 2015 @ 14:40:06
  Author: fyan
Revision: 147783

addpkg: haskell-persistent-template 2.1.4-1

Added:
  haskell-persistent-template/
  haskell-persistent-template/repos/
  haskell-persistent-template/trunk/
  haskell-persistent-template/trunk/PKGBUILD
  haskell-persistent-template/trunk/haskell-persistent-template.install

-+
 PKGBUILD|   45 ++
 haskell-persistent-template.install |   18 +
 2 files changed, 63 insertions(+)

Added: haskell-persistent-template/trunk/PKGBUILD
===
--- haskell-persistent-template/trunk/PKGBUILD  (rev 0)
+++ haskell-persistent-template/trunk/PKGBUILD  2015-11-25 13:40:06 UTC (rev 
147783)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.1.4
+pkgrel=1
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-aeson" "haskell-aeson-extra" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ed9e415d49288c7857febf978e4d97195c95113b9def30655894b48560999bce')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-persistent-template/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-persistent-template/trunk/haskell-persistent-template.install
===
--- haskell-persistent-template/trunk/haskell-persistent-template.install   
(rev 0)
+++ haskell-persistent-template/trunk/haskell-persistent-template.install   
2015-11-25 13:40:06 UTC (rev 147783)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent-template
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in haskell-persistent-template/repos (6 files)

2015-11-25 Thread Felix Yan
Date: Wednesday, November 25, 2015 @ 14:40:33
  Author: fyan
Revision: 147784

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

Added:
  haskell-persistent-template/repos/community-i686/
  haskell-persistent-template/repos/community-i686/PKGBUILD
(from rev 147783, haskell-persistent-template/trunk/PKGBUILD)
  
haskell-persistent-template/repos/community-i686/haskell-persistent-template.install
(from rev 147783, 
haskell-persistent-template/trunk/haskell-persistent-template.install)
  haskell-persistent-template/repos/community-x86_64/
  haskell-persistent-template/repos/community-x86_64/PKGBUILD
(from rev 147783, haskell-persistent-template/trunk/PKGBUILD)
  
haskell-persistent-template/repos/community-x86_64/haskell-persistent-template.install
(from rev 147783, 
haskell-persistent-template/trunk/haskell-persistent-template.install)

--+
 community-i686/PKGBUILD  |   45 +
 community-i686/haskell-persistent-template.install   |   18 ++
 community-x86_64/PKGBUILD|   45 +
 community-x86_64/haskell-persistent-template.install |   18 ++
 4 files changed, 126 insertions(+)

Copied: haskell-persistent-template/repos/community-i686/PKGBUILD (from rev 
147783, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-25 13:40:33 UTC (rev 147784)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.1.4
+pkgrel=1
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-aeson" "haskell-aeson-extra" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ed9e415d49288c7857febf978e4d97195c95113b9def30655894b48560999bce')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-persistent-template/repos/community-i686/haskell-persistent-template.install
 (from rev 147783, 
haskell-persistent-template/trunk/haskell-persistent-template.install)
===
--- community-i686/haskell-persistent-template.install  
(rev 0)
+++ community-i686/haskell-persistent-template.install  2015-11-25 13:40:33 UTC 
(rev 147784)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent-template
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-persistent-template/repos/community-x86_64/PKGBUILD (from rev 
147783, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-25 13:40:33 UTC (rev 147784)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template

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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 13:44:21
  Author: spupykin
Revision: 147778

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

Added:
  st/repos/community-i686/
  st/repos/community-i686/PKGBUILD
(from rev 14, st/trunk/PKGBUILD)
  st/repos/community-i686/config.h
(from rev 14, st/trunk/config.h)
  st/repos/community-x86_64/
  st/repos/community-x86_64/PKGBUILD
(from rev 14, st/trunk/PKGBUILD)
  st/repos/community-x86_64/config.h
(from rev 14, st/trunk/config.h)

---+
 community-i686/PKGBUILD   |   35 
 community-i686/config.h   |  384 
 community-x86_64/PKGBUILD |   35 
 community-x86_64/config.h |  384 
 4 files changed, 838 insertions(+)

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


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

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 13:53:33
  Author: arojas
Revision: 251952

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-25 12:52:22 UTC (rev 251951)
+++ extra-i686/PKGBUILD 2015-11-25 12:53:33 UTC (rev 251952)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkolabxml
-pkgver=1.1.1
-pkgrel=2
-pkgdesc="Kolab XML Format Schema Definitions Library"
-url='http://git.kolab.org/libkolabxml/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('xerces-c' 'boost-libs')
-makedepends=('cmake' 'boost' 'xsd' 'swig')
-source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
-md5sums=('9cb1cb2ffc3496af3df9cba2bf56ac0c'
- 'af0f43509c0bed1b9d9f917cd5a01679')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTS=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkolabxml/repos/extra-i686/PKGBUILD (from rev 251951, 
libkolabxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-25 12:53:33 UTC (rev 251952)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkolabxml
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Kolab XML Format Schema Definitions Library"
+url='http://git.kolab.org/libkolabxml/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('xerces-c' 'boost-libs')
+makedepends=('cmake' 'boost' 'xsd' 'swig')
+source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
+md5sums=('f9840fe0c8f5e32312cc3fc3e9b982a5'
+ '1d265643086c58564758add8e5eb72c7')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-25 12:52:22 UTC (rev 251951)
+++ extra-x86_64/PKGBUILD   2015-11-25 12:53:33 UTC (rev 251952)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkolabxml
-pkgver=1.1.1
-pkgrel=2
-pkgdesc="Kolab XML Format Schema Definitions Library"
-url='http://git.kolab.org/libkolabxml/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('xerces-c' 'boost-libs')
-makedepends=('cmake' 'boost' 'xsd' 'swig')
-source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
-md5sums=('9cb1cb2ffc3496af3df9cba2bf56ac0c'
- 'af0f43509c0bed1b9d9f917cd5a01679')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTS=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkolabxml/repos/extra-x86_64/PKGBUILD (from rev 251951, 
libkolabxml/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-11-25 12:53:33 UTC (rev 251952)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkolabxml
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Kolab XML Format Schema Definitions Library"
+url='http://git.kolab.org/libkolabxml/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('xerces-c' 'boost-libs')
+makedepends=('cmake' 'boost' 'xsd' 'swig')
+source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
+md5sums=('f9840fe0c8f5e32312cc3fc3e9b982a5'
+ '1d265643086c58564758add8e5eb72c7')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF
+  make
+}
+

[arch-commits] Commit in libkolabxml (kde-unstable)

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 14:03:02
  Author: arojas
Revision: 251956

Cleanup

Deleted:
  libkolabxml/kde-unstable/


[arch-commits] Commit in deepin-desktop-schemas/repos/community-any (4 files)

2015-11-25 Thread Felix Yan
Date: Wednesday, November 25, 2015 @ 14:19:21
  Author: fyan
Revision: 147782

archrelease: copy trunk to community-any

Added:
  deepin-desktop-schemas/repos/community-any/PKGBUILD
(from rev 147781, deepin-desktop-schemas/trunk/PKGBUILD)
  deepin-desktop-schemas/repos/community-any/deepin-desktop-schemas.install
(from rev 147781, 
deepin-desktop-schemas/trunk/deepin-desktop-schemas.install)
Deleted:
  deepin-desktop-schemas/repos/community-any/PKGBUILD
  deepin-desktop-schemas/repos/community-any/deepin-desktop-schemas.install

+
 PKGBUILD   |   76 +++
 deepin-desktop-schemas.install |   22 +--
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-25 13:19:03 UTC (rev 147781)
+++ PKGBUILD2015-11-25 13:19:21 UTC (rev 147782)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop-schemas
-pkgver=2.91.1
-pkgrel=5
-pkgdesc='GSettings deepin desktop-wide schemas'
-arch=('any')
-url="https://github.com/linuxdeepin/deepin-desktop-schemas;
-license=('GPL3')
-depends=('dconf')
-makedepends=('git')
-conflicts=('dde-daemon<=2.92.1')
-replaces=('deepin-default-gsettings')
-groups=('deepin')
-install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/deepin-desktop-schemas.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd "${pkgname}"
-  # fix default background url
-  sed -i 
"s#^picture-uri.*#picture-uri='file:///usr/share/backgrounds/deepin_default_background.jpg'#"
 overrides/com.deepin.wrap.gnome.desktop.override
-  # Removing google-chrome and deepin-appstore, they are not packaged in our 
repos.
-  sed -i 
"s/^docked-apps=.*/docked-apps=['org.gnome.nautilus','deepin-music-player','deepin-movie','dde-control-center']/"
 overrides/com.deepin.dde.dock.override
-}
-
-build() {
-  cd "${pkgname}"
-  make
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: deepin-desktop-schemas/repos/community-any/PKGBUILD (from rev 147781, 
deepin-desktop-schemas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-25 13:19:21 UTC (rev 147782)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop-schemas
+pkgver=2.91.1
+pkgrel=6
+pkgdesc='GSettings deepin desktop-wide schemas'
+arch=('any')
+url="https://github.com/linuxdeepin/deepin-desktop-schemas;
+license=('GPL3')
+depends=('dconf' 'deepin-gtk-theme' 'deepin-sound-theme' 
'deepin-artwork-themes')
+makedepends=('git')
+conflicts=('dde-daemon<=2.92.1')
+replaces=('deepin-default-gsettings')
+groups=('deepin')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/deepin-desktop-schemas.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  # fix default background url
+  sed -i 
"s#^picture-uri.*#picture-uri='file:///usr/share/backgrounds/deepin_default_background.jpg'#"
 overrides/com.deepin.wrap.gnome.desktop.override
+  # Removing google-chrome and deepin-appstore, they are not packaged in our 
repos.
+  sed -i 
"s/^docked-apps=.*/docked-apps=['org.gnome.nautilus','deepin-music-player','deepin-movie','dde-control-center']/"
 overrides/com.deepin.dde.dock.override
+}
+
+build() {
+  cd "${pkgname}"
+  make
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: deepin-desktop-schemas.install
===
--- deepin-desktop-schemas.install  2015-11-25 13:19:03 UTC (rev 147781)
+++ deepin-desktop-schemas.install  2015-11-25 13:19:21 UTC (rev 147782)
@@ -1,11 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: 
deepin-desktop-schemas/repos/community-any/deepin-desktop-schemas.install (from 
rev 147781, deepin-desktop-schemas/trunk/deepin-desktop-schemas.install)
===
--- deepin-desktop-schemas.install  (rev 0)
+++ deepin-desktop-schemas.install  2015-11-25 13:19:21 UTC (rev 147782)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 13:52:22
  Author: arojas
Revision: 251951

Update to 1.1.2

Modified:
  libkolabxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 07:54:10 UTC (rev 251950)
+++ PKGBUILD2015-11-25 12:52:22 UTC (rev 251951)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=libkolabxml
-pkgver=1.1.1
-pkgrel=2
+pkgver=1.1.2
+pkgrel=1
 pkgdesc="Kolab XML Format Schema Definitions Library"
 url='http://git.kolab.org/libkolabxml/'
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 depends=('xerces-c' 'boost-libs')
 makedepends=('cmake' 'boost' 'xsd' 'swig')
 
source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
-md5sums=('9cb1cb2ffc3496af3df9cba2bf56ac0c'
- 'af0f43509c0bed1b9d9f917cd5a01679')
+md5sums=('f9840fe0c8f5e32312cc3fc3e9b982a5'
+ '1d265643086c58564758add8e5eb72c7')
 
 prepare() {
   mkdir build


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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 14:01:30
  Author: spupykin
Revision: 147780

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

Added:
  pitivi/repos/community-i686/ChangeLog
(from rev 147779, pitivi/trunk/ChangeLog)
  pitivi/repos/community-i686/PKGBUILD
(from rev 147779, pitivi/trunk/PKGBUILD)
  pitivi/repos/community-i686/pitivi.install
(from rev 147779, pitivi/trunk/pitivi.install)
  pitivi/repos/community-x86_64/ChangeLog
(from rev 147779, pitivi/trunk/ChangeLog)
  pitivi/repos/community-x86_64/PKGBUILD
(from rev 147779, pitivi/trunk/PKGBUILD)
  pitivi/repos/community-x86_64/pitivi.install
(from rev 147779, pitivi/trunk/pitivi.install)
Deleted:
  pitivi/repos/community-i686/ChangeLog
  pitivi/repos/community-i686/PKGBUILD
  pitivi/repos/community-i686/pitivi.install
  pitivi/repos/community-x86_64/ChangeLog
  pitivi/repos/community-x86_64/PKGBUILD
  pitivi/repos/community-x86_64/pitivi.install

-+
 /ChangeLog  |   82 ++
 /PKGBUILD   |   70 
 /pitivi.install |   26 
 community-i686/ChangeLog|   41 ---
 community-i686/PKGBUILD |   36 
 community-i686/pitivi.install   |   13 --
 community-x86_64/ChangeLog  |   41 ---
 community-x86_64/PKGBUILD   |   36 
 community-x86_64/pitivi.install |   13 --
 9 files changed, 178 insertions(+), 180 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2015-11-25 13:01:13 UTC (rev 147779)
+++ community-i686/ChangeLog2015-11-25 13:01:30 UTC (rev 147780)
@@ -1,41 +0,0 @@
-pitivi (0.13.1-2)
-
-  * Update hicolor icon cache.
-  * Update mime database.
-
- -- Abhishek Dasgupta  Thu, 23 Jul 2009 11:57:49 +0530
-
-pitivi (0.13.1-1)
-
-  * New upstream version.
-  * Removed: fix-as-problems.diff pitivi.desktop
-
- -- Abhishek Dasgupta  Wed, 24 Jun 2009 16:01:42 +0530
-
-pitivi (0.11.3-1)
-
-  * New upstream version.
-  * fix-as-problems.diff: Fixed the problem caused by "as" in
-pitivi/timeline/timeline.py
-
- -- Abhishek Dasgupta  Sat, 13 Dec 2008 16:29:24 +0530
-
-pitivi (0.11.2-4)
-
-  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
-
- -- Abhishek Dasgupta  Mon, 01 Dec 2008 23:08:28 +0530
-
-pitivi (0.11.2-3)
-
-  * fix-as.diff: Fixed the error 
-in pitivi/objectfactory.py caused by the line
-as = self.audio_info_stream
-
- -- Abhishek Dasgupta  Sun, 09 Nov 2008 00:34:22 +0530
-
-pitivi (0.11.2-2)
-
-  * Added dbus-python as dependency.
-
- -- Abhishek Dasgupta  Sun, 26 Oct 2008 14:08:06 +0530

Copied: pitivi/repos/community-i686/ChangeLog (from rev 147779, 
pitivi/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2015-11-25 13:01:30 UTC (rev 147780)
@@ -0,0 +1,41 @@
+pitivi (0.13.1-2)
+
+  * Update hicolor icon cache.
+  * Update mime database.
+
+ -- Abhishek Dasgupta  Thu, 23 Jul 2009 11:57:49 +0530
+
+pitivi (0.13.1-1)
+
+  * New upstream version.
+  * Removed: fix-as-problems.diff pitivi.desktop
+
+ -- Abhishek Dasgupta  Wed, 24 Jun 2009 16:01:42 +0530
+
+pitivi (0.11.3-1)
+
+  * New upstream version.
+  * fix-as-problems.diff: Fixed the problem caused by "as" in
+pitivi/timeline/timeline.py
+
+ -- Abhishek Dasgupta  Sat, 13 Dec 2008 16:29:24 +0530
+
+pitivi (0.11.2-4)
+
+  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
+
+ -- Abhishek Dasgupta  Mon, 01 Dec 2008 23:08:28 +0530
+
+pitivi (0.11.2-3)
+
+  * fix-as.diff: Fixed the error 
+in pitivi/objectfactory.py caused by the line
+as = self.audio_info_stream
+
+ -- Abhishek Dasgupta  Sun, 09 Nov 2008 00:34:22 +0530
+
+pitivi (0.11.2-2)
+
+  * Added dbus-python as dependency.
+
+ -- Abhishek Dasgupta  Sun, 26 Oct 2008 14:08:06 +0530

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-25 13:01:13 UTC (rev 147779)
+++ community-i686/PKGBUILD 2015-11-25 13:01:30 UTC (rev 147780)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Abhishek Dasgupta 
-# Contributor: Gabor Nyekhelyi (n0gabor) 
-
-pkgname=pitivi
-pkgver=0.95
-pkgrel=2
-pkgdesc="Editor for audio/video projects using the GStreamer framework"
-arch=('i686' 'x86_64')
-url="http://www.pitivi.org/;
-license=('LGPL')
-depends=('clutter-gtk' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
- 

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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 14:01:13
  Author: spupykin
Revision: 147779

upgpkg: pitivi 0.95-3

upd

Modified:
  pitivi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 12:44:21 UTC (rev 147778)
+++ PKGBUILD2015-11-25 13:01:13 UTC (rev 147779)
@@ -5,15 +5,14 @@
 
 pkgname=pitivi
 pkgver=0.95
-pkgrel=2
+pkgrel=3
 pkgdesc="Editor for audio/video projects using the GStreamer framework"
 arch=('i686' 'x86_64')
 url="http://www.pitivi.org/;
 license=('LGPL')
-depends=('clutter-gtk' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
+depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
  'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
- 'gnome-icon-theme' 'desktop-file-utils' 'clutter-gst'
- 'python-matplotlib')
+ 'gnome-icon-theme' 'desktop-file-utils' 'python-matplotlib')
 makedepends=('intltool' 'itstool')
 optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
 'gst-libav: additional multimedia codecs'


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

2015-11-25 Thread Antonio Rojas
Date: Wednesday, November 25, 2015 @ 14:01:44
  Author: arojas
Revision: 251954

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  libkolab/repos/kde-unstable-i686/PKGBUILD
(from rev 251953, libkolab/kde-unstable/PKGBUILD)
  libkolab/repos/kde-unstable-i686/fix-build.patch
(from rev 251953, libkolab/kde-unstable/fix-build.patch)
  libkolab/repos/kde-unstable-x86_64/PKGBUILD
(from rev 251953, libkolab/kde-unstable/PKGBUILD)
  libkolab/repos/kde-unstable-x86_64/fix-build.patch
(from rev 251953, libkolab/kde-unstable/fix-build.patch)
Deleted:
  libkolab/repos/kde-unstable-i686/PKGBUILD
  libkolab/repos/kde-unstable-i686/fix-build.patch
  libkolab/repos/kde-unstable-x86_64/PKGBUILD
  libkolab/repos/kde-unstable-x86_64/fix-build.patch

-+
 /PKGBUILD   |   66 
 /fix-build.patch|  134 ++
 kde-unstable-i686/PKGBUILD  |   34 
 kde-unstable-i686/fix-build.patch   |   67 -
 kde-unstable-x86_64/PKGBUILD|   34 
 kde-unstable-x86_64/fix-build.patch |   67 -
 6 files changed, 200 insertions(+), 202 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-11-25 13:00:55 UTC (rev 251953)
+++ kde-unstable-i686/PKGBUILD  2015-11-25 13:01:44 UTC (rev 251954)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkolab
-pkgver=1.0.1.git20151120
-pkgrel=1
-pkgdesc="Advanced Kolab Object Handling Library"
-url='http://git.kolab.org/libkolab/'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
-makedepends=(extra-cmake-modules kdoctools boost)
-makedepends+=(git)
-#source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg})
-source=("git+https://git.kolab.org/diffusion/LK/libkolab.git#commit=6cb420ec6f71;)
-md5sums=('SKIP')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libkolab/repos/kde-unstable-i686/PKGBUILD (from rev 251953, 
libkolab/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-11-25 13:01:44 UTC (rev 251954)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkolab
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="Advanced Kolab Object Handling Library"
+url='http://git.kolab.org/libkolab/'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
+makedepends=(extra-cmake-modules kdoctools boost)
+source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg})
+md5sums=('312f35920989fd115386ee256fe78ba2'
+ '9c829ce9983b3c8cbab9ce833c982924')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: kde-unstable-i686/fix-build.patch
===
--- kde-unstable-i686/fix-build.patch   2015-11-25 13:00:55 UTC (rev 251953)
+++ kde-unstable-i686/fix-build.patch   2015-11-25 13:01:44 UTC (rev 251954)
@@ -1,67 +0,0 @@
-diff --git a/conversion/kabcconversion.cpp b/conversion/kabcconversion.cpp
 a/conversion/kabcconversion.cpp
-+++ b/conversion/kabcconversion.cpp
-@@ -488,7 +488,9 @@
-   addressee.setTitle(fromStdString(contact.titles().at(0))); //TODO 
support multiple
-   }
-   if (!contact.urls().empty()) {
--  addressee.setUrl(QUrl(fromStdString(contact.urls().at(0).url(; 
//TODO support multiple
-+  KContacts::ResourceLocatorUrl url;
-+  url.setUrl(QUrl(fromStdString(contact.urls().at(0).url(; //TODO 
support multiple
-+  addressee.setUrl(url);
-   foreach(const Kolab::Url , contact.urls()) {
-   if (u.type() == Kolab::Url::Blog) {
-   addressee.insertCustom("KADDRESSBOOK", "BlogFeed", 
fromStdString(u.url()));
-@@ -664,8 +666,8 @@
- }
- 
- std::vector urls;
--if (!addressee.url().isEmpty()) {
--urls.push_back(Kolab::Url(toStdString(addressee.url().url(;
-+if (!addressee.url().url().isEmpty()) {
-+urls.push_back(Kolab::Url(toStdString(addressee.url().url().url(;
- }   
- const QString  = addressee.custom(QLatin1String("KADDRESSBOOK"), 
QLatin1String("BlogFeed"));
- if (!blogUrl.isEmpty()) {
-@@ 

[arch-commits] Commit in elasticsearch/repos/community-any (16 files)

2015-11-25 Thread Massimiliano Torromeo
Date: Wednesday, November 25, 2015 @ 14:47:54
  Author: mtorromeo
Revision: 147786

archrelease: copy trunk to community-any

Added:
  elasticsearch/repos/community-any/PKGBUILD
(from rev 147785, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
(from rev 147785, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
(from rev 147785, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-any/elasticsearch-user.conf
(from rev 147785, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-any/elasticsearch.default
(from rev 147785, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-any/elasticsearch.install
(from rev 147785, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-any/elasticsearch.service
(from rev 147785, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-any/elasticsearch@.service
(from rev 147785, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-any/PKGBUILD
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-any/elasticsearch-user.conf
  elasticsearch/repos/community-any/elasticsearch.default
  elasticsearch/repos/community-any/elasticsearch.install
  elasticsearch/repos/community-any/elasticsearch.service
  elasticsearch/repos/community-any/elasticsearch@.service

+
 PKGBUILD   |  152 +--
 elasticsearch-sysctl.conf  |2 
 elasticsearch-tmpfile.conf |4 -
 elasticsearch-user.conf|2 
 elasticsearch.default  |   26 +++
 elasticsearch.install  |   28 +++
 elasticsearch.service  |   78 +++---
 elasticsearch@.service |   78 +++---
 8 files changed, 185 insertions(+), 185 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-25 13:47:36 UTC (rev 147785)
+++ PKGBUILD2015-11-25 13:47:54 UTC (rev 147786)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=2.0.0
-pkgrel=2
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('any')
-url="https://www.elastic.co/products/elasticsearch;
-license=('APACHE')
-depends=('java-runtime-headless' 'systemd')
-install='elasticsearch.install'
-source=(
-  
"http://download.elasticsearch.org/$pkgname/release/org/$pkgname/distribution/tar/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums=('b25f13f615337c2072964fd9fc5c7250f8a2a983b22198daf93548285d5d16df'
-'a59d1bf2efedc146edbc98c252da29a7b2d061fe19b6fda5c2ca0a67004ce374'
-'59e9e5fbe7a4b7053e2f004e69213ed7cfa9ba4ae236d1fbe9f3fccd9c1fd073'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'a76c03afe30dc3434bf55b5b50f0867c3670dcaebcc8b522f42277ff523b7277'
-'39ab5801b45c0f49af43c4d1826a655a981bfa07e4b3791d7a0719f8c191d8d9'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/logging.yml'
-'etc/default/elasticsearch')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  for script in plugin elasticsearch; do
-sed -e 's|^ES_HOME=.*dirname.*|ES_HOME=/usr/share/elasticsearch|' \
--e '/^ES_HOME=.*pwd/d' \
--i bin/$script
-  done
-
-  sed -re 's;#\s*(path\.conf:).*$;\1 /etc/elasticsearch;' \
--e '0,/#\s*(path\.data:).*$/s;;\1 /var/lib/elasticsearch;' \
--e 's;#\s*(path\.work:).*$;\1 /tmp/elasticsearch;' \
--e 's;#\s*(path\.logs:).*$;\1 /var/log/elasticsearch;' \
--i config/elasticsearch.yml
-}
-
-package() {
-  install -dm755 "$pkgdir"/etc
-  install -dm750 -g 114 "$pkgdir"/etc/elasticsearch/scripts
-
-  cd "$srcdir"/$pkgname-$pkgver
-  install -dm755 "$pkgdir"/usr/share/elasticsearch
-  cp -R lib "$pkgdir"/usr/share/elasticsearch/lib
-  cp config/* "$pkgdir"/etc/elasticsearch/
-
-  install -Dm755 bin/elasticsearch "$pkgdir"/usr/bin/elasticsearch
-  install -Dm755 bin/plugin "$pkgdir"/usr/bin/elasticsearch-plugin
-  install -Dm644 bin/elasticsearch.in.sh 
"$pkgdir"/usr/share/elasticsearch/bin/elasticsearch.in.sh
-
-  cd "$pkgdir"
-  install -dm750 -g 114 etc/elasticsearch/scripts
-  install -Dm644 "$srcdir"/elasticsearch.service 
usr/lib/systemd/system/elasticsearch.service
-  install 

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

2015-11-25 Thread Massimiliano Torromeo
Date: Wednesday, November 25, 2015 @ 14:47:36
  Author: mtorromeo
Revision: 147785

upgpkg: elasticsearch 2.1.0-1

Updated to 2.1.0

Modified:
  elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 13:40:33 UTC (rev 147784)
+++ PKGBUILD2015-11-25 13:47:36 UTC (rev 147785)
@@ -4,8 +4,8 @@
 # Refactored by Blaž "Speed" Hrastnik 
 
 pkgname=elasticsearch
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.1.0
+pkgrel=1
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('any')
 url="https://www.elastic.co/products/elasticsearch;
@@ -21,7 +21,7 @@
   elasticsearch-tmpfile.conf
   elasticsearch.default
 )
-sha256sums=('b25f13f615337c2072964fd9fc5c7250f8a2a983b22198daf93548285d5d16df'
+sha256sums=('8a4e85bcb506daa369651506af1cbc55c09fd7ff387d42ae14d0a85d4d14'
 'a59d1bf2efedc146edbc98c252da29a7b2d061fe19b6fda5c2ca0a67004ce374'
 '59e9e5fbe7a4b7053e2f004e69213ed7cfa9ba4ae236d1fbe9f3fccd9c1fd073'
 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'


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

2015-11-25 Thread Sergej Pupykin
Date: Wednesday, November 25, 2015 @ 15:33:34
  Author: spupykin
Revision: 147787

add check()

Modified:
  python-dnspython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-25 13:47:54 UTC (rev 147786)
+++ PKGBUILD2015-11-25 14:33:34 UTC (rev 147787)
@@ -13,6 +13,11 @@
 source=(http://www.dnspython.org/kits3/$pkgver/dnspython3-$pkgver.tar.gz)
 md5sums=('32178038d8a1b11e818ae4658745133c')
 
+check() {
+  cd $srcdir/dnspython3-$pkgver
+  make -C tests check
+}
+
 package() {
   cd $srcdir/dnspython3-$pkgver
   python setup.py install --root=$pkgdir


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 06:58:52
  Author: fyan
Revision: 147817

upgpkg: deepin-launcher 2.90.1-3

Modified:
  deepin-launcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 05:34:42 UTC (rev 147816)
+++ PKGBUILD2015-11-26 05:58:52 UTC (rev 147817)
@@ -5,12 +5,13 @@
 
 pkgname=deepin-launcher
 pkgver=2.90.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Deepin desktop-environment - Launcher module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-launcher;
 license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-menu' 'deepin-daemon')
 makedepends=('git')
 conflicts=('dde-launcher')
 replaces=('dde-launcher')


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:08:42
  Author: fyan
Revision: 147820

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

Added:
  deepin-dock/repos/community-i686/PKGBUILD
(from rev 147819, deepin-dock/trunk/PKGBUILD)
  deepin-dock/repos/community-x86_64/PKGBUILD
(from rev 147819, deepin-dock/trunk/PKGBUILD)
Deleted:
  deepin-dock/repos/community-i686/PKGBUILD
  deepin-dock/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   30 
 community-x86_64/PKGBUILD |   30 
 3 files changed, 64 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-26 06:08:13 UTC (rev 147819)
+++ community-i686/PKGBUILD 2015-11-26 06:08:42 UTC (rev 147820)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=2.90.1
-pkgrel=3
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('gtk2' 'libdui' 'qt5-svg' 'nautilus' 'deepin-music' 'deepin-movie' 
'deepin-control-center')
-makedepends=('git')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-i686/PKGBUILD (from rev 147819, 
deepin-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-26 06:08:42 UTC (rev 147820)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=2.90.1
+pkgrel=4
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon'
+ # Default applications, should remove later
+ 'nautilus' 'deepin-music' 'deepin-movie' 'deepin-control-center')
+makedepends=('git')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-26 06:08:13 UTC (rev 147819)
+++ community-x86_64/PKGBUILD   2015-11-26 06:08:42 UTC (rev 147820)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=2.90.1
-pkgrel=3
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('gtk2' 'libdui' 'qt5-svg' 'nautilus' 'deepin-music' 'deepin-movie' 
'deepin-control-center')
-makedepends=('git')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-x86_64/PKGBUILD (from rev 147819, 
deepin-dock/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-26 06:08:42 UTC (rev 147820)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=2.90.1
+pkgrel=4
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon'
+ # Default applications, should remove later
+ 'nautilus' 'deepin-music' 'deepin-movie' 'deepin-control-center')
+makedepends=('git')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd 

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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 06:28:05
  Author: fyan
Revision: 147813

upgpkg: deepin-session-ui 2.90.2-3

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 04:21:07 UTC (rev 147812)
+++ PKGBUILD2015-11-26 05:28:05 UTC (rev 147813)
@@ -5,13 +5,13 @@
 
 pkgname=deepin-session-ui
 pkgver=2.90.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Deepin desktop-environment - Session UI module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-session-ui;
 license=('GPL3')
 groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon')
 makedepends=('git')
 provides=('lightdm-deepin-greeter')
 conflicts=('dde-workspace' 'dde-session-ui')


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

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:08:13
  Author: fyan
Revision: 147819

upgpkg: deepin-dock 2.90.1-4

Modified:
  deepin-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 05:59:26 UTC (rev 147818)
+++ PKGBUILD2015-11-26 06:08:13 UTC (rev 147819)
@@ -5,12 +5,14 @@
 
 pkgname=deepin-dock
 pkgver=2.90.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-dock;
 license=('GPL3')
-depends=('gtk2' 'libdui' 'qt5-svg' 'nautilus' 'deepin-music' 'deepin-movie' 
'deepin-control-center')
+depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon'
+ # Default applications, should remove later
+ 'nautilus' 'deepin-music' 'deepin-movie' 'deepin-control-center')
 makedepends=('git')
 conflicts=('dde-dock')
 replaces=('dde-dock')


[arch-commits] Commit in deepin-control-center/trunk (3 files)

2015-11-25 Thread Felix Yan
Date: Thursday, November 26, 2015 @ 07:19:11
  Author: fyan
Revision: 147823

upgpkg: deepin-control-center 2.91.2-2

Added:
  deepin-control-center/trunk/optimize_plugins_unload.patch
  deepin-control-center/trunk/show-distro-info.patch
Modified:
  deepin-control-center/trunk/PKGBUILD

---+
 PKGBUILD  |   20 +++-
 optimize_plugins_unload.patch |  174 
 show-distro-info.patch|   77 +
 3 files changed, 266 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-26 06:11:34 UTC (rev 147822)
+++ PKGBUILD2015-11-26 06:19:11 UTC (rev 147823)
@@ -5,23 +5,33 @@
 
 pkgname=deepin-control-center
 pkgver=2.91.2
-pkgrel=1
+pkgrel=2
 pkgdesc='New control center for linux deepin'
 arch=('i686' 'x86_64')
 url="http://github.com/linuxdeepin/dde-control-center;
 license=('GPL3')
 depends=('desktop-file-utils' 'libdui' 'gtk3' 'deepin-account-faces' 
'deepin-api'
- 'deepin-daemon' 'deepin-dbus-factory')
+ 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
 makedepends=('deepin-dock' 'deepin-gettext-tools' 'git')
 conflicts=('dde-control-center')
 replaces=('dde-control-center')
 groups=('deepin')
 install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/dde-control-center.git#tag=$pkgver;)
-sha256sums=('SKIP')
+source=("git+https://github.com/linuxdeepin/dde-control-center.git#tag=$pkgver;
+'show-distro-info.patch'
+'optimize_plugins_unload.patch')
+sha256sums=('SKIP'
+'076be93652adebe404a076036503b95140d70d6612e34f35502909c2617d1b1d'
+'a7c9d34538215ecd4c8f05820aadfd4c41bd33527699100c0aecad631fdef267')
 
-build(){
+prepare() {
   cd dde-control-center
+  patch -p1 -i ../show-distro-info.patch
+  patch -p1 -i ../optimize_plugins_unload.patch
+}
+
+build() {
+  cd dde-control-center
   qmake-qt5 PREFIX=/usr WITH_MODULE_GRUB=NO
   make
 }

Added: optimize_plugins_unload.patch
===
--- optimize_plugins_unload.patch   (rev 0)
+++ optimize_plugins_unload.patch   2015-11-26 06:19:11 UTC (rev 147823)
@@ -0,0 +1,174 @@
+diff --git a/frame/contentview.cpp b/frame/contentview.cpp
+index 6bec669..cb4e3dd 100644
+--- a/frame/contentview.cpp
 b/frame/contentview.cpp
+@@ -16,7 +16,6 @@ ContentView::ContentView(QWidget *parent)
+ m_pluginLoader = new QPluginLoader(this);
+ #ifdef QT_DEBUG
+ m_pluginLoader->setLoadHints(QLibrary::ResolveAllSymbolsHint);
+-#else
+ #endif
+ m_pluginsManager = PluginsManager::getInstance(this);
+ 
+@@ -76,16 +75,19 @@ ContentView::~ContentView()
+ 
+ void ContentView::switchToModule(ModuleMetaData module)
+ {
+-qDebug() << "load plugin: " << module.path;
+-
+ unloadPlugin();
+ 
++qDebug() << "load plugin: " << module.path;
++
+ // load new plugin
+ m_pluginLoader->setFileName(module.path);
++m_sideBar->blockSignals(true);
+ m_sideBar->switchToModule(module.id);
++m_sideBar->blockSignals(false);
+ 
+ QObject *instance = m_pluginLoader->instance();
+ ModuleInterface *interface = qobject_cast(instance);
++qDebug() << "get instance: " << instance << interface;
+ 
+ do {
+ if (!interface)
+@@ -154,23 +156,7 @@ void ContentView::reLayout(bool hideInLeft)
+ 
+ void ContentView::switchToModule(const QString pluginId)
+ {
+-// unload old plugin
+-m_pluginLoader->unload();
+-// load new plugin
+-m_pluginLoader->setFileName(m_pluginsManager->pluginPath(pluginId));
+-m_sideBar->switchToModule(pluginId);
+-
+-QObject *instance = m_pluginLoader->instance();
+-
+-if (instance) {
+-ModuleInterface *interface = qobject_cast(instance);
+-if(m_hideInLeft)
+-m_layout->insertWidget(0, interface->getContent());
+-else
+-m_layout->addWidget(interface->getContent());
+-} else {
+-qDebug() << m_pluginLoader->errorString();
+-}
++switchToModule(m_pluginsManager->pluginMetaData(pluginId));
+ }
+ 
+ void ContentView::onModuleSelected(ModuleMetaData meta)
+@@ -199,10 +185,15 @@ void ContentView::onModuleSelected(ModuleMetaData meta)
+ 
+ void ContentView::unloadPlugin()
+ {
++//if (m_lastPluginInterface)
++//m_lastPluginInterface->preUnload();
++
+ if (m_lastPluginWidget)
+ {
++m_lastPluginWidget->hide();
+ m_lastPluginWidget->setParent(nullptr);
+ m_lastPluginWidget->deleteLater();
++//delete m_lastPluginWidget;
+ m_lastPluginWidget = nullptr;
+ }
+ 
+diff --git a/frame/frame.cpp b/frame/frame.cpp
+index 3d18246..7ba33e8 100644
+--- a/frame/frame.cpp
 b/frame/frame.cpp
+@@ -227,8 +227,9 @@ void Frame::updateGeometry(const QRect )
+ setFixedHeight(primaryRect.height());
+ m_centeralWarpper->setFixedHeight(primaryRect.height());
+