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

2015-12-02 Thread Dave Reisner
Date: Wednesday, December 2, 2015 @ 16:18:22
  Author: dreisner
Revision: 252116

upgpkg: curl 7.46.0-1

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 09:13:51 UTC (rev 252115)
+++ PKGBUILD2015-12-02 15:18:22 UTC (rev 252116)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=curl
-pkgver=7.45.0
+pkgver=7.46.0
 pkgrel=1
 pkgdesc="An URL retrieval utility and library"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('strip' 'debug')
 source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
 curlbuild.h)
-md5sums=('be21c6a190d65cfd3eeb749a3dce3947'
+md5sums=('230e682d59bf8ab6eca36da1d39ebd75'
  'SKIP'
  '751bd433ede935c8fae727377625a8ae')
 validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg


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

2015-12-02 Thread Dave Reisner
Date: Wednesday, December 2, 2015 @ 16:18:43
  Author: dreisner
Revision: 252117

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

Added:
  curl/repos/testing-i686/
  curl/repos/testing-i686/PKGBUILD
(from rev 252116, curl/trunk/PKGBUILD)
  curl/repos/testing-i686/curlbuild.h
(from rev 252116, curl/trunk/curlbuild.h)
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 252116, curl/trunk/PKGBUILD)
  curl/repos/testing-x86_64/curlbuild.h
(from rev 252116, curl/trunk/curlbuild.h)

+
 testing-i686/PKGBUILD  |   65 +++
 testing-i686/curlbuild.h   |9 +
 testing-x86_64/PKGBUILD|   65 +++
 testing-x86_64/curlbuild.h |9 +
 4 files changed, 148 insertions(+)

Copied: curl/repos/testing-i686/PKGBUILD (from rev 252116, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-02 15:18:43 UTC (rev 252117)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.46.0
+pkgrel=1
+pkgdesc="An URL retrieval utility and library"
+arch=('i686' 'x86_64')
+url="http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libidn' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+curlbuild.h)
+md5sums=('230e682d59bf8ab6eca36da1d39ebd75'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  local ptrsize=$(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d')
+  case $ptrsize in
+8) _curlbuild=curlbuild-64.h ;;
+4) _curlbuild=curlbuild-32.h ;;
+*) error "unknown pointer size for architecture: %s bytes" "$ptrsize"
+  exit 1
+  ;;
+  esac
+
+  # license
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  # devel
+  mv "$pkgdir/usr/include/curl/curlbuild.h" 
"$pkgdir/usr/include/curl/$_curlbuild"
+  install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h"
+}

Copied: curl/repos/testing-i686/curlbuild.h (from rev 252116, 
curl/trunk/curlbuild.h)
===
--- testing-i686/curlbuild.h(rev 0)
+++ testing-i686/curlbuild.h2015-12-02 15:18:43 UTC (rev 252117)
@@ -0,0 +1,9 @@
+#include 
+
+#if __WORDSIZE == 32
+#include "curlbuild-32.h"
+#elif __WORDSIZE == 64
+#include "curlbuild-64.h"
+#else
+#error "Unknown word size"
+#endif

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 252116, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-12-02 15:18:43 UTC (rev 252117)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.46.0
+pkgrel=1
+pkgdesc="An URL retrieval utility and library"
+arch=('i686' 'x86_64')
+url="http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libidn' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+curlbuild.h)
+md5sums=('230e682d59bf8ab6eca36da1d39ebd75'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libidn \
+  

[arch-commits] Commit in apache/trunk (httpd.service)

2015-12-02 Thread Anatol Pomozov
Date: Wednesday, December 2, 2015 @ 17:22:28
  Author: anatolik
Revision: 252119

FS#47110 Revert revision 249812 (start service as foreground process)

Start service as foreground process causes issues with service restart.
Revert the change until we fix that problem.

Modified:
  apache/trunk/httpd.service

---+
 httpd.service |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: httpd.service
===
--- httpd.service   2015-12-02 16:03:34 UTC (rev 252118)
+++ httpd.service   2015-12-02 16:22:28 UTC (rev 252119)
@@ -3,8 +3,9 @@
 After=network.target remote-fs.target nss-lookup.target
 
 [Service]
-Type=simple
-ExecStart=/usr/bin/apachectl start -DFOREGROUND
+Type=forking
+PIDFile=/run/httpd/httpd.pid
+ExecStart=/usr/bin/apachectl start
 ExecStop=/usr/bin/apachectl graceful-stop
 ExecReload=/usr/bin/apachectl graceful
 PrivateTmp=true


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

2015-12-02 Thread Felix Yan
Date: Wednesday, December 2, 2015 @ 15:40:16
  Author: fyan
Revision: 148110

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

Added:
  python-plyvel/repos/community-i686/PKGBUILD
(from rev 148109, python-plyvel/trunk/PKGBUILD)
  python-plyvel/repos/community-x86_64/PKGBUILD
(from rev 148109, python-plyvel/trunk/PKGBUILD)
Deleted:
  python-plyvel/repos/community-i686/PKGBUILD
  python-plyvel/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-02 14:39:47 UTC (rev 148109)
+++ community-i686/PKGBUILD 2015-12-02 14:40:16 UTC (rev 148110)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andy Weidenbaum 
-
-pkgname=(python-plyvel python2-plyvel)
-pkgver=0.9
-pkgrel=1
-pkgdesc="A fast and feature-rich Python interface to LevelDB"
-arch=('i686' 'x86_64')
-license=('BSD')
-url="https://github.com/wbolster/plyvel;
-makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=(https://pypi.python.org/packages/source/p/plyvel/plyvel-$pkgver.tar.gz)
-sha256sums=('587d93681ae44936ae086b4b45486eb302e3853ba5af149aac3be9e9713998e9')
-
-prepare() {
-  # Shipped egg-info has wrong permission etc
-  (cd plyvel-$pkgver; make clean)
-
-  cp -a plyvel-$pkgver{,-py2}
-
-  sed -i 's/cython/cython2/' plyvel-$pkgver-py2/Makefile
-}
-
-build() {
-  cd "$srcdir/plyvel-$pkgver"
-  make cython
-  python setup.py build
-
-  cd "$srcdir/plyvel-$pkgver-py2"
-  make cython2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/plyvel-$pkgver"
-  python setup.py ptr
-
-  cd "$srcdir/plyvel-$pkgver-py2"
-  python2 setup.py ptr
-}
-
-package_python-plyvel() {
-  depends=('leveldb' 'python')
-
-  cd "$srcdir/plyvel-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
-}
-
-package_python2-plyvel() {
-  depends=('leveldb' 'python2')
-
-  cd "$srcdir/plyvel-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
-}

Copied: python-plyvel/repos/community-i686/PKGBUILD (from rev 148109, 
python-plyvel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-02 14:40:16 UTC (rev 148110)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andy Weidenbaum 
+
+pkgname=(python-plyvel python2-plyvel)
+pkgver=0.9
+pkgrel=2
+pkgdesc="A fast and feature-rich Python interface to LevelDB"
+arch=('i686' 'x86_64')
+license=('BSD')
+url="https://github.com/wbolster/plyvel;
+makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools' 
'leveldb')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=(https://pypi.python.org/packages/source/p/plyvel/plyvel-$pkgver.tar.gz)
+sha256sums=('587d93681ae44936ae086b4b45486eb302e3853ba5af149aac3be9e9713998e9')
+
+prepare() {
+  # Shipped egg-info has wrong permission etc
+  (cd plyvel-$pkgver; make clean)
+
+  cp -a plyvel-$pkgver{,-py2}
+
+  sed -i 's/cython/cython2/' plyvel-$pkgver-py2/Makefile
+}
+
+build() {
+  cd "$srcdir/plyvel-$pkgver"
+  make cython
+  python setup.py build
+
+  cd "$srcdir/plyvel-$pkgver-py2"
+  make cython2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/plyvel-$pkgver"
+  python setup.py ptr
+
+  cd "$srcdir/plyvel-$pkgver-py2"
+  python2 setup.py ptr
+}
+
+package_python-plyvel() {
+  depends=('leveldb' 'python')
+
+  cd "$srcdir/plyvel-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}
+
+package_python2-plyvel() {
+  depends=('leveldb' 'python2')
+
+  cd "$srcdir/plyvel-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-02 14:39:47 UTC (rev 148109)
+++ community-x86_64/PKGBUILD   2015-12-02 14:40:16 UTC (rev 148110)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andy Weidenbaum 
-
-pkgname=(python-plyvel python2-plyvel)
-pkgver=0.9
-pkgrel=1
-pkgdesc="A fast and feature-rich Python interface to 

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

2015-12-02 Thread Sven-Hendrik Haase
Date: Wednesday, December 2, 2015 @ 17:03:26
  Author: svenstaro
Revision: 148111

upgpkg: dwarffortress 0.42.01-1

upstream release 0.42.01

Modified:
  dwarffortress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 14:40:16 UTC (rev 148110)
+++ PKGBUILD2015-12-02 16:03:26 UTC (rev 148111)
@@ -3,9 +3,9 @@
 # Contributor: Daenyth 
 # Contributor: djnm 
 pkgname=dwarffortress
-pkgver=0.40.24
-_pkgver=40_24
-pkgrel=5
+pkgver=0.42.01
+_pkgver=42_01
+pkgrel=1
 pkgdesc="A single-player fantasy game. You control a dwarven outpost or an 
adventurer in a randomly generated persistent world."
 arch=(i686 x86_64)
 url="http://www.bay12games.com/dwarves/;
@@ -30,7 +30,7 @@
 dwarffortress
 dwarffortress.desktop
 dwarffortress.png)
-sha256sums=('da37c6263a679123e6ac57fe0dd6def11f1d61efee3c5913de09495c88ce9234'
+sha256sums=('e2e3122b9835808280f0868fa7e467e9a752f68c75ffafee95e403d1e91f5ecf'
 'SKIP'
 '7dc1f0ed0d496b21f4f240334f77dc43b728823f3e1c4ea25ce768691346ec07'
 'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'


[arch-commits] Commit in dwarffortress/repos/multilib-x86_64 (10 files)

2015-12-02 Thread Sven-Hendrik Haase
Date: Wednesday, December 2, 2015 @ 17:03:53
  Author: svenstaro
Revision: 148113

archrelease: copy trunk to multilib-x86_64

Added:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
(from rev 148112, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/multilib-x86_64/dwarffortress
(from rev 148112, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
(from rev 148112, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
(from rev 148112, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/multilib-x86_64/dwarffortress.png
(from rev 148112, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
  dwarffortress/repos/multilib-x86_64/dwarffortress
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
  dwarffortress/repos/multilib-x86_64/dwarffortress.png

---+
 PKGBUILD  |  146 
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 ++---
 dwarffortress.install |   16 ++---
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-02 16:03:35 UTC (rev 148112)
+++ PKGBUILD2015-12-02 16:03:53 UTC (rev 148113)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.40.24
-_pkgver=40_24
-pkgrel=5
-pkgdesc="A single-player fantasy game. You control a dwarven outpost or an 
adventurer in a randomly generated persistent world."
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/;
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#tag=${pkgver}
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('da37c6263a679123e6ac57fe0dd6def11f1d61efee3c5913de09495c88ce9234'
-'SKIP'
-'7dc1f0ed0d496b21f4f240334f77dc43b728823f3e1c4ea25ce768691346ec07'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/multilib-x86_64/PKGBUILD (from rev 148112, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-02 16:03:53 UTC (rev 

[arch-commits] Commit in dwarffortress/repos/community-i686 (10 files)

2015-12-02 Thread Sven-Hendrik Haase
Date: Wednesday, December 2, 2015 @ 17:03:35
  Author: svenstaro
Revision: 148112

archrelease: copy trunk to community-i686

Added:
  dwarffortress/repos/community-i686/PKGBUILD
(from rev 148111, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/community-i686/dwarffortress
(from rev 148111, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/community-i686/dwarffortress.desktop
(from rev 148111, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/community-i686/dwarffortress.install
(from rev 148111, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/community-i686/dwarffortress.png
(from rev 148111, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/community-i686/PKGBUILD
  dwarffortress/repos/community-i686/dwarffortress
  dwarffortress/repos/community-i686/dwarffortress.desktop
  dwarffortress/repos/community-i686/dwarffortress.install
  dwarffortress/repos/community-i686/dwarffortress.png

---+
 PKGBUILD  |  146 
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 ++---
 dwarffortress.install |   16 ++---
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-02 16:03:26 UTC (rev 148111)
+++ PKGBUILD2015-12-02 16:03:35 UTC (rev 148112)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.40.24
-_pkgver=40_24
-pkgrel=5
-pkgdesc="A single-player fantasy game. You control a dwarven outpost or an 
adventurer in a randomly generated persistent world."
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/;
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#tag=${pkgver}
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('da37c6263a679123e6ac57fe0dd6def11f1d61efee3c5913de09495c88ce9234'
-'SKIP'
-'7dc1f0ed0d496b21f4f240334f77dc43b728823f3e1c4ea25ce768691346ec07'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/community-i686/PKGBUILD (from rev 148111, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-02 16:03:35 UTC (rev 148112)
@@ 

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

2015-12-02 Thread Anatol Pomozov
Date: Wednesday, December 2, 2015 @ 17:23:38
  Author: anatolik
Revision: 252120

Remove unused ln commands

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 16:22:28 UTC (rev 252119)
+++ PKGBUILD2015-12-02 16:23:38 UTC (rev 252120)
@@ -102,10 +102,8 @@
   install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
   # symlinks for /etc/httpd
-  # do we really need these symlinks?
-  #ln -fs /var/log/httpd "${pkgdir}/etc/httpd/logs"
+  # do we really need this symlink?
   ln -fs /usr/lib/httpd/modules "${pkgdir}/etc/httpd/modules"
-  #ln -fs /usr/lib/httpd/build "${pkgdir}/etc/httpd/build"
 
   # set sane defaults
   sed -e 's#/usr/lib/httpd/modules/#modules/#' \


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

2015-12-02 Thread Felix Yan
Date: Wednesday, December 2, 2015 @ 15:39:47
  Author: fyan
Revision: 148109

upgpkg: python-plyvel 0.9-2

Modified:
  python-plyvel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 06:31:20 UTC (rev 148108)
+++ PKGBUILD2015-12-02 14:39:47 UTC (rev 148109)
@@ -4,7 +4,7 @@
 
 pkgname=(python-plyvel python2-plyvel)
 pkgver=0.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A fast and feature-rich Python interface to LevelDB"
 arch=('i686' 'x86_64')
 license=('BSD')


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

2015-12-02 Thread Anatol Pomozov
Date: Wednesday, December 2, 2015 @ 17:48:01
  Author: anatolik
Revision: 252121

upgpkg: apache 2.4.17-4

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 16:23:38 UTC (rev 252120)
+++ PKGBUILD2015-12-02 16:48:01 UTC (rev 252121)
@@ -5,7 +5,7 @@
 
 pkgname=apache
 pkgver=2.4.17
-pkgrel=3
+pkgrel=4
 pkgdesc='A high performance Unix-based HTTP server'
 arch=('i686' 'x86_64')
 url='http://www.apache.org/dist/httpd'
@@ -43,7 +43,7 @@
 'SKIP'
 '63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
 '875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
-'2c6fc6fabc7fb113650690ce4e9347e54c4d2124b2975c7d671720169c990398'
+'4d16b6ddeafbc94bc7109017be61788064f455c7ab453cce19a35a30a1f5e64f'
 'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3'
 'eb9033e039e24cd443c861af0853dd8a8f7369170a393ef25fd31a627f6d40db')
 validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski


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

2015-12-02 Thread Maxime Gauduin
Date: Wednesday, December 2, 2015 @ 19:00:30
  Author: alucryd
Revision: 148116

upgpkg: ruby-tins 1.8.0-1

Modified:
  ruby-tins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 17:56:23 UTC (rev 148115)
+++ PKGBUILD2015-12-02 18:00:30 UTC (rev 148116)
@@ -4,7 +4,7 @@
 # Contributor: Hyacinthe Cartiaux 
 
 pkgname=ruby-tins
-pkgver=1.6.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc='All the stuff that is not good/big enough for a real library'
 arch=('any')
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
 noextract=("tins-${pkgver}.gem")
-sha256sums=('1f82e41851f343147e8acda8b02a67e990e38d4755e1e7a8de7cd913fcce0a0b')
+sha256sums=('de5e43790d1df1d849e5b0eb942eafd723b726d88dbba17e92620d93e34ed005')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2015-12-02 Thread Andreas Radke
Date: Wednesday, December 2, 2015 @ 19:29:46
  Author: andyrtr
Revision: 252124

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

Added:
  cups/repos/extra-i686/PKGBUILD
(from rev 252123, cups/trunk/PKGBUILD)
  cups/repos/extra-i686/cups-1.6.0-fix-install-perms.patch
(from rev 252123, cups/trunk/cups-1.6.0-fix-install-perms.patch)
  cups/repos/extra-i686/cups-1.6.2-statedir.patch
(from rev 252123, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
(from rev 252123, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-i686/cups-no-gcrypt.patch
(from rev 252123, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-i686/cups-no-gzip-man.patch
(from rev 252123, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-i686/cups.install
(from rev 252123, cups/trunk/cups.install)
  cups/repos/extra-i686/cups.logrotate
(from rev 252123, cups/trunk/cups.logrotate)
  cups/repos/extra-i686/cups.pam
(from rev 252123, cups/trunk/cups.pam)
  cups/repos/extra-x86_64/PKGBUILD
(from rev 252123, cups/trunk/PKGBUILD)
  cups/repos/extra-x86_64/cups-1.6.0-fix-install-perms.patch
(from rev 252123, cups/trunk/cups-1.6.0-fix-install-perms.patch)
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
(from rev 252123, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 252123, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
(from rev 252123, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
(from rev 252123, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 252123, cups/trunk/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 252123, cups/trunk/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 252123, cups/trunk/cups.pam)
Deleted:
  cups/repos/extra-i686/PKGBUILD
  cups/repos/extra-i686/cups-1.6.0-fix-install-perms.patch
  cups/repos/extra-i686/cups-1.6.2-statedir.patch
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
  cups/repos/extra-i686/cups-no-gcrypt.patch
  cups/repos/extra-i686/cups-no-gzip-man.patch
  cups/repos/extra-i686/cups.install
  cups/repos/extra-i686/cups.logrotate
  cups/repos/extra-i686/cups.pam
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups-1.6.0-fix-install-perms.patch
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam

-+
 /PKGBUILD   |  338 ++
 /cups-1.6.0-fix-install-perms.patch |   50 +++
 /cups-1.6.2-statedir.patch  |   24 +
 /cups-no-export-ssllibs.patch   |   24 +
 /cups-no-gcrypt.patch   |   22 +
 /cups-no-gzip-man.patch |   36 ++
 /cups.install   |   56 +++
 /cups.logrotate |   10 
 /cups.pam   |6 
 extra-i686/PKGBUILD |  169 ---
 extra-i686/cups-1.6.0-fix-install-perms.patch   |   25 -
 extra-i686/cups-1.6.2-statedir.patch|   12 
 extra-i686/cups-no-export-ssllibs.patch |   12 
 extra-i686/cups-no-gcrypt.patch |   11 
 extra-i686/cups-no-gzip-man.patch   |   18 -
 extra-i686/cups.install |   28 -
 extra-i686/cups.logrotate   |5 
 extra-i686/cups.pam |3 
 extra-x86_64/PKGBUILD   |  169 ---
 extra-x86_64/cups-1.6.0-fix-install-perms.patch |   25 -
 extra-x86_64/cups-1.6.2-statedir.patch  |   12 
 extra-x86_64/cups-no-export-ssllibs.patch   |   12 
 extra-x86_64/cups-no-gcrypt.patch   |   11 
 extra-x86_64/cups-no-gzip-man.patch |   18 -
 extra-x86_64/cups.install   |   28 -
 extra-x86_64/cups.logrotate |5 
 extra-x86_64/cups.pam   |3 
 27 files changed, 566 insertions(+), 566 deletions(-)

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


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

2015-12-02 Thread Anatol Pomozov
Date: Wednesday, December 2, 2015 @ 17:49:13
  Author: anatolik
Revision: 252122

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

Added:
  apache/repos/testing-i686/
  apache/repos/testing-i686/PKGBUILD
(from rev 252121, apache/trunk/PKGBUILD)
  apache/repos/testing-i686/apache.install
(from rev 252121, apache/trunk/apache.install)
  apache/repos/testing-i686/apache.tmpfiles.conf
(from rev 252121, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-i686/arch.layout
(from rev 252121, apache/trunk/arch.layout)
  apache/repos/testing-i686/httpd.logrotate
(from rev 252121, apache/trunk/httpd.logrotate)
  apache/repos/testing-i686/httpd.service
(from rev 252121, apache/trunk/httpd.service)
  apache/repos/testing-i686/revert_redirect_url.patch
(from rev 252121, apache/trunk/revert_redirect_url.patch)
  apache/repos/testing-x86_64/
  apache/repos/testing-x86_64/PKGBUILD
(from rev 252121, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache.install
(from rev 252121, apache/trunk/apache.install)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 252121, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 252121, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 252121, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 252121, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/revert_redirect_url.patch
(from rev 252121, apache/trunk/revert_redirect_url.patch)

--+
 testing-i686/PKGBUILD|  127 
 testing-i686/apache.install  |   16 +++
 testing-i686/apache.tmpfiles.conf|1 
 testing-i686/arch.layout |   22 
 testing-i686/httpd.logrotate |6 +
 testing-i686/httpd.service   |   16 +++
 testing-i686/revert_redirect_url.patch   |  150 +
 testing-x86_64/PKGBUILD  |  127 
 testing-x86_64/apache.install|   16 +++
 testing-x86_64/apache.tmpfiles.conf  |1 
 testing-x86_64/arch.layout   |   22 
 testing-x86_64/httpd.logrotate   |6 +
 testing-x86_64/httpd.service |   16 +++
 testing-x86_64/revert_redirect_url.patch |  150 +
 14 files changed, 676 insertions(+)

Copied: apache/repos/testing-i686/PKGBUILD (from rev 252121, 
apache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-02 16:49:13 UTC (rev 252122)
@@ -0,0 +1,127 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=apache
+pkgver=2.4.17
+pkgrel=4
+pkgdesc='A high performance Unix-based HTTP server'
+arch=('i686' 'x86_64')
+url='http://www.apache.org/dist/httpd'
+license=('APACHE')
+backup=(
+etc/httpd/conf/httpd.conf
+etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
+etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
+etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
+etc/httpd/conf/extra/proxy-html.conf
+etc/httpd/conf/{mime.types,magic}
+etc/logrotate.d/httpd
+)
+depends=('zlib' 'apr-util' 'pcre')
+makedepends=('libxml2' 'lua' 'openssl' 'nghttp2')
+optdepends=(
+'lua: for mod_lua module'
+'openssl: for mod_ssl module'
+'libxml2: for mod_proxy_html, mod_xml2enc modules'
+'nghttp2: for mod_http2 module'
+'lynx: apachectl status'
+)
+install=apache.install
+source=(
+http://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
+apache.tmpfiles.conf
+httpd.logrotate
+httpd.service
+arch.layout
+# bugfix for https://bz.apache.org/bugzilla/show_bug.cgi?id=57785
+# taken from 
https://github.com/apache/httpd/commit/7feb3c027f9d0d16f37c7bed13b58c09162f
+revert_redirect_url.patch
+)
+sha256sums=('331e035dec81d3db95b048f036f4d7b1a97ec8daa5b377bde42d4ccf1f2eb798'
+'SKIP'
+'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
+'875903831634edf35d8d57e9a51bacb818255ecb3bfff29627f03e43d1ab65c3'
+'4d16b6ddeafbc94bc7109017be61788064f455c7ab453cce19a35a30a1f5e64f'
+'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3'
+'eb9033e039e24cd443c861af0853dd8a8f7369170a393ef25fd31a627f6d40db')
+validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8') # Jim Jagielski
+
+prepare() {
+  cd httpd-${pkgver}
+
+  # set default user
+  sed -e 's#User daemon#User http#' \
+  -e 's#Group daemon#Group http#' \
+  -i docs/conf/httpd.conf.in
+
+  cat "${srcdir}/arch.layout" >> config.layout
+
+  patch -p1 < 

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

2015-12-02 Thread Maxime Gauduin
Date: Wednesday, December 2, 2015 @ 18:56:23
  Author: alucryd
Revision: 148115

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

Added:
  libquicktime/repos/community-i686/PKGBUILD
(from rev 148114, libquicktime/trunk/PKGBUILD)
  libquicktime/repos/community-i686/ffmpeg2.0.patch
(from rev 148114, libquicktime/trunk/ffmpeg2.0.patch)
  libquicktime/repos/community-x86_64/PKGBUILD
(from rev 148114, libquicktime/trunk/PKGBUILD)
  libquicktime/repos/community-x86_64/ffmpeg2.0.patch
(from rev 148114, libquicktime/trunk/ffmpeg2.0.patch)
Deleted:
  libquicktime/repos/community-i686/PKGBUILD
  libquicktime/repos/community-i686/ffmpeg2.0.patch
  libquicktime/repos/community-x86_64/PKGBUILD
  libquicktime/repos/community-x86_64/ffmpeg2.0.patch

--+
 /PKGBUILD|   82 +++
 /ffmpeg2.0.patch |  270 +
 community-i686/PKGBUILD  |   37 -
 community-i686/ffmpeg2.0.patch   |  135 --
 community-x86_64/PKGBUILD|   37 -
 community-x86_64/ffmpeg2.0.patch |  135 --
 6 files changed, 352 insertions(+), 344 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-02 17:56:09 UTC (rev 148114)
+++ community-i686/PKGBUILD 2015-12-02 17:56:23 UTC (rev 148115)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Federico Cinelli 
-# Maintainer: Mateusz Herych   
-
-pkgname=libquicktime
-pkgver=1.2.4
-pkgrel=12
-pkgdesc="A library for reading and writing quicktime files"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://libquicktime.sourceforge.net/;
-depends=('gtk2' 'ffmpeg' 'libxv' 'libxaw' 'faad2' 'faac')
-makedepends=('mesa-libgl' 'x264')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
-ffmpeg2.0.patch)
-sha256sums=('1c53359c33b31347b4d7b00d3611463fe5e942cae3ec0fefe0d2fd413fd47368'
-'a1c8415e8e7bc04c81b946b9e3746f7d5ef24819135962280c3a7ddb3f2baa2b')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../ffmpeg2.0.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr \
---enable-gpl \
---with-ffmpeg \
---with-x264 \
---without-doxygen
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: libquicktime/repos/community-i686/PKGBUILD (from rev 148114, 
libquicktime/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-02 17:56:23 UTC (rev 148115)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Federico Cinelli 
+# Maintainer: Mateusz Herych   
+
+pkgname=libquicktime
+pkgver=1.2.4
+pkgrel=13
+pkgdesc="A library for reading and writing quicktime files"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://libquicktime.sourceforge.net/;
+depends=('alsa-lib' 'faac' 'faad2' 'gtk2' 'lame' 'libjpeg-turbo' 'libxaw'
+ 'libxv' 'schroedinger'
+ 'libavcodec.so' 'libswscale.so' 'libvorbisenc.so' 'libvorbisfile.so'
+ 'libvorbis.so' 'libx264.so')
+makedepends=('mesa-libgl')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
+ffmpeg2.0.patch)
+sha256sums=('1c53359c33b31347b4d7b00d3611463fe5e942cae3ec0fefe0d2fd413fd47368'
+'a1c8415e8e7bc04c81b946b9e3746f7d5ef24819135962280c3a7ddb3f2baa2b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../ffmpeg2.0.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--enable-gpl \
+--with-ffmpeg \
+--with-x264 \
+--without-doxygen
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/ffmpeg2.0.patch
===
--- community-i686/ffmpeg2.0.patch  2015-12-02 17:56:09 UTC (rev 148114)
+++ community-i686/ffmpeg2.0.patch  2015-12-02 17:56:23 UTC (rev 148115)
@@ -1,135 +0,0 @@
-Binary files a/plugins/ffmpeg/.lqt_ffmpeg.c.swp and 
b/plugins/ffmpeg/.lqt_ffmpeg.c.swp differ
-diff -rupN a/plugins/ffmpeg/ffmpeg.h b/plugins/ffmpeg/ffmpeg.h
 a/plugins/ffmpeg/ffmpeg.h  2012-02-15 20:48:30.0 +0100
-+++ b/plugins/ffmpeg/ffmpeg.h  2013-07-15 15:05:19.307534593 +0200
-@@ -45,3 +45,7 @@ void lqt_ffmpeg_set_parameter(AVCodecCon
- 
- 
- #endif
-+#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000
-+#define CODEC_FLAG2_STRICT_GOP 0x0002
-+#define CODEC_FLAG_QP_RD 0x0800
-+#define CODEC_FLAG_CBP_RD 0x0400
-diff -rupN a/plugins/ffmpeg/lqt_ffmpeg.c b/plugins/ffmpeg/lqt_ffmpeg.c
 a/plugins/ffmpeg/lqt_ffmpeg.c  2012-02-15 20:48:30.0 +0100
-+++ b/plugins/ffmpeg/lqt_ffmpeg.c  2013-07-15 

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

2015-12-02 Thread Maxime Gauduin
Date: Wednesday, December 2, 2015 @ 18:56:09
  Author: alucryd
Revision: 148114

FS#47235: libquicktime 1.2.4-13

Modified:
  libquicktime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 16:03:53 UTC (rev 148113)
+++ PKGBUILD2015-12-02 17:56:09 UTC (rev 148114)
@@ -4,13 +4,16 @@
 
 pkgname=libquicktime
 pkgver=1.2.4
-pkgrel=12
+pkgrel=13
 pkgdesc="A library for reading and writing quicktime files"
 arch=('i686' 'x86_64')
 license=('GPL')
 url="http://libquicktime.sourceforge.net/;
-depends=('gtk2' 'ffmpeg' 'libxv' 'libxaw' 'faad2' 'faac')
-makedepends=('mesa-libgl' 'x264')
+depends=('alsa-lib' 'faac' 'faad2' 'gtk2' 'lame' 'libjpeg-turbo' 'libxaw'
+ 'libxv' 'schroedinger'
+ 'libavcodec.so' 'libswscale.so' 'libvorbisenc.so' 'libvorbisfile.so'
+ 'libvorbis.so' 'libx264.so')
+makedepends=('mesa-libgl')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 ffmpeg2.0.patch)
 sha256sums=('1c53359c33b31347b4d7b00d3611463fe5e942cae3ec0fefe0d2fd413fd47368'
@@ -22,8 +25,9 @@
 }
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr \
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
 --enable-gpl \
 --with-ffmpeg \
 --with-x264 \
@@ -32,6 +36,6 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
 }


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

2015-12-02 Thread Maxime Gauduin
Date: Wednesday, December 2, 2015 @ 19:00:36
  Author: alucryd
Revision: 148117

archrelease: copy trunk to community-any

Added:
  ruby-tins/repos/community-any/PKGBUILD
(from rev 148116, ruby-tins/trunk/PKGBUILD)
Deleted:
  ruby-tins/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-02 18:00:30 UTC (rev 148116)
+++ PKGBUILD2015-12-02 18:00:36 UTC (rev 148117)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Julien Nicoulaud 
-# Contributor: Hyacinthe Cartiaux 
-
-pkgname=ruby-tins
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='All the stuff that is not good/big enough for a real library'
-arch=('any')
-url='https://github.com/flori/tins'
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
-noextract=("tins-${pkgver}.gem")
-sha256sums=('1f82e41851f343147e8acda8b02a67e990e38d4755e1e7a8de7cd913fcce0a0b')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-
-  gem install --ignore-dependencies --no-user-install -N -i 
"${pkgdir}"/${_gemdir} tins-${pkgver}.gem
-  find "${pkgdir}" -type f -name *.gem -delete
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/ruby-tins
-  ln -s ${_gemdir}/gems/tins-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/ruby-tins/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-tins/repos/community-any/PKGBUILD (from rev 148116, 
ruby-tins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-02 18:00:36 UTC (rev 148117)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Julien Nicoulaud 
+# Contributor: Hyacinthe Cartiaux 
+
+pkgname=ruby-tins
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='All the stuff that is not good/big enough for a real library'
+arch=('any')
+url='https://github.com/flori/tins'
+license=('MIT')
+depends=('ruby')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
+noextract=("tins-${pkgver}.gem")
+sha256sums=('de5e43790d1df1d849e5b0eb942eafd723b726d88dbba17e92620d93e34ed005')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+
+  gem install --ignore-dependencies --no-user-install -N -i 
"${pkgdir}"/${_gemdir} tins-${pkgver}.gem
+  find "${pkgdir}" -type f -name *.gem -delete
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/ruby-tins
+  ln -s ${_gemdir}/gems/tins-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/ruby-tins/
+}
+
+# vim: ts=2 sw=2 et:


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

2015-12-02 Thread Andreas Radke
Date: Wednesday, December 2, 2015 @ 19:29:18
  Author: andyrtr
Revision: 252123

upgpkg: cups 2.1.2-1

upstream update 2.1.2

Modified:
  cups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 16:49:13 UTC (rev 252122)
+++ PKGBUILD2015-12-02 18:29:18 UTC (rev 252123)
@@ -3,7 +3,7 @@
 
 pkgbase="cups"
 pkgname=('libcups' 'cups')
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -21,7 +21,7 @@
 cups-1.6.0-fix-install-perms.patch
 # bugfixes
 )
-md5sums=('9a231a4409140b167946f8147d638ffb'
+md5sums=('b3ba0ca676d56857bbd9b182ef4b14b3'
  'SKIP'
  'fc8286f185e2cc5f7e1f6843bf193e2b'
  '96f82c38f3f540b53f3e5144900acf17'


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

2015-12-02 Thread Evangelos Foutras
Date: Wednesday, December 2, 2015 @ 20:41:26
  Author: foutrelis
Revision: 252126

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 252125, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 252125, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 252125, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 252125, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 252125, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 252125, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 252125, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 252125, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /PKGBUILD|  238 +
 /git-daemon.socket   |   18 ++
 /git-daemon@.service |   20 +++
 /git.install |   24 +++
 extra-i686/PKGBUILD  |  115 -
 extra-i686/git-daemon.socket |9 -
 extra-i686/git-daemon@.service   |   10 -
 extra-i686/git.install   |   12 -
 extra-x86_64/PKGBUILD|  115 -
 extra-x86_64/git-daemon.socket   |9 -
 extra-x86_64/git-daemon@.service |   10 -
 extra-x86_64/git.install |   12 -
 12 files changed, 300 insertions(+), 292 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 19:41:05 UTC (rev 252125)
+++ extra-i686/PKGBUILD 2015-12-02 19:41:26 UTC (rev 252126)
@@ -1,115 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=git
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="the fast distributed version control system"
-arch=(i686 x86_64)
-url="http://git-scm.com/;
-license=('GPL2')
-depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs' 'libgnome-keyring' 'xmlto' 'asciidoc')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps2: git cvsimport'
-'gnome-keyring: GNOME keyring credential helper')
-replaces=('git-core')
-provides=('git-core')
-install=git.install
-source=("https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.xz;
-"https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.sign;
-git-daemon@.service
-git-daemon.socket)
-md5sums=('32ae5ad29763fc927bfcaeab55385fd9'
- 'SKIP'
- '042524f942785772d7bd52a1f02fe5ae'
- 'f67869315c2cc112e076f0c73f248002')
-validpgpkeys=('96E07AF25771955980DAD10020D04E5A713660A7') # Junio C Hamano
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-all doc
-
-  make -C contrib/emacs prefix=/usr
-  make -C contrib/credential/gnome-keyring
-  make -C contrib/subtree prefix=/usr gitexecdir=/usr/lib/git-core all doc
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  local jobs
-  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*') || true
-  mkdir -p /dev/shm/git-test
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS="$jobs -Q" \
-GIT_TEST_OPTS="--root=/dev/shm/git-test" \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-MAN_BOLD_LITERAL=1 \
-INSTALLDIRS=vendor DESTDIR="$pkgdir" install install-doc
-
-  # bash completion
-  mkdir -p "$pkgdir"/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/git
-  # fancy git prompt
-  mkdir -p "$pkgdir"/usr/share/git/
- 

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

2015-12-02 Thread Evangelos Foutras
Date: Wednesday, December 2, 2015 @ 20:41:05
  Author: foutrelis
Revision: 252125

upgpkg: git 2.6.3-1

New upstream release.

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 18:29:46 UTC (rev 252124)
+++ PKGBUILD2015-12-02 19:41:05 UTC (rev 252125)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=2.6.2
+pkgver=2.6.3
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -27,7 +27,7 @@
 "https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.sign;
 git-daemon@.service
 git-daemon.socket)
-md5sums=('32ae5ad29763fc927bfcaeab55385fd9'
+md5sums=('5a6375349c3f13c8dbbabfc327bae429'
  'SKIP'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')
@@ -58,6 +58,10 @@
   local jobs
   jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*') || true
   mkdir -p /dev/shm/git-test
+  # explicitly specify SHELL to avoid a test failure in t/t9903-bash-prompt.sh
+  # which is caused by 'git rebase' trying to use builduser's SHELL inside the
+  # build chroot (i.e.: /usr/bin/nologin)
+  SHELL=/bin/sh \
   make prefix=/usr gitexecdir=/usr/lib/git-core \
 CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
 USE_LIBPCRE=1 \


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

2015-12-02 Thread Gaetan Bisson
Date: Wednesday, December 2, 2015 @ 10:13:51
  Author: bisson
Revision: 252115

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

Added:
  clamav/repos/extra-i686/PKGBUILD
(from rev 252114, clamav/trunk/PKGBUILD)
  clamav/repos/extra-i686/clamd.conf
(from rev 252114, clamav/trunk/clamd.conf)
  clamav/repos/extra-i686/clamd.service
(from rev 252114, clamav/trunk/clamd.service)
  clamav/repos/extra-i686/freshclam.conf
(from rev 252114, clamav/trunk/freshclam.conf)
  clamav/repos/extra-i686/freshclamd.service
(from rev 252114, clamav/trunk/freshclamd.service)
  clamav/repos/extra-i686/install
(from rev 252114, clamav/trunk/install)
  clamav/repos/extra-i686/logrotate
(from rev 252114, clamav/trunk/logrotate)
  clamav/repos/extra-i686/tmpfiles.d
(from rev 252114, clamav/trunk/tmpfiles.d)
  clamav/repos/extra-x86_64/PKGBUILD
(from rev 252114, clamav/trunk/PKGBUILD)
  clamav/repos/extra-x86_64/clamd.conf
(from rev 252114, clamav/trunk/clamd.conf)
  clamav/repos/extra-x86_64/clamd.service
(from rev 252114, clamav/trunk/clamd.service)
  clamav/repos/extra-x86_64/freshclam.conf
(from rev 252114, clamav/trunk/freshclam.conf)
  clamav/repos/extra-x86_64/freshclamd.service
(from rev 252114, clamav/trunk/freshclamd.service)
  clamav/repos/extra-x86_64/install
(from rev 252114, clamav/trunk/install)
  clamav/repos/extra-x86_64/logrotate
(from rev 252114, clamav/trunk/logrotate)
  clamav/repos/extra-x86_64/tmpfiles.d
(from rev 252114, clamav/trunk/tmpfiles.d)
Deleted:
  clamav/repos/extra-i686/PKGBUILD
  clamav/repos/extra-i686/clamd.conf
  clamav/repos/extra-i686/clamd.service
  clamav/repos/extra-i686/freshclam.conf
  clamav/repos/extra-i686/freshclamd.service
  clamav/repos/extra-i686/install
  clamav/repos/extra-i686/logrotate
  clamav/repos/extra-i686/tmpfiles.d
  clamav/repos/extra-x86_64/PKGBUILD
  clamav/repos/extra-x86_64/clamd.conf
  clamav/repos/extra-x86_64/clamd.service
  clamav/repos/extra-x86_64/freshclam.conf
  clamav/repos/extra-x86_64/freshclamd.service
  clamav/repos/extra-x86_64/install
  clamav/repos/extra-x86_64/logrotate
  clamav/repos/extra-x86_64/tmpfiles.d

-+
 /PKGBUILD   |  128 ++
 /clamd.conf |   12 +++
 /clamd.service  |   22 ++
 /freshclam.conf |6 +
 /freshclamd.service |   20 +
 /install|   30 
 /logrotate  |   20 +
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   64 ---
 extra-i686/clamd.conf   |6 -
 extra-i686/clamd.service|   11 ---
 extra-i686/freshclam.conf   |3 
 extra-i686/freshclamd.service   |   10 --
 extra-i686/install  |   15 
 extra-i686/logrotate|   10 --
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   64 ---
 extra-x86_64/clamd.conf |6 -
 extra-x86_64/clamd.service  |   11 ---
 extra-x86_64/freshclam.conf |3 
 extra-x86_64/freshclamd.service |   10 --
 extra-x86_64/install|   15 
 extra-x86_64/logrotate  |   10 --
 extra-x86_64/tmpfiles.d |1 
 24 files changed, 240 insertions(+), 240 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 09:12:30 UTC (rev 252114)
+++ extra-i686/PKGBUILD 2015-12-02 09:13:51 UTC (rev 252115)
@@ -1,64 +0,0 @@
-# $Id$
-# Contributor: Dale Blount 
-# Contributor: Gregor Ibic 
-# Maintainer: Gaetan Bisson 
-
-pkgname=clamav
-pkgver=0.98.7
-pkgrel=3
-pkgdesc='Anti-virus toolkit for Unix'
-url='http://www.clamav.net/'
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=('libmilter')
-depends=('bzip2' 'libltdl' 'gcc-libs')
-validpgpkeys=('B964E6D7BC7D7C82CCB8D45840B8EA2364221D53'
-  'F79FB2D08751574C5D3FDFFBB3D5342C260429A0')
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'logrotate'
-'tmpfiles.d'
-'clamd.conf'
-'freshclam.conf'
-'clamd.service'
-'freshclamd.service')
-sha1sums=('c9793d67c041e2b944116d912f8681c8bd6e4432' 'SKIP'
-  'bb488a56b0f6a0760446cde89c1e3321e2717b78'
-  'a224ea9b4d0f4f196827347d54bed51e11c197ea'
-  '887f624eb305f2446f55d8339e2972ad0cfe2b79'
-  'b767837d0279ad30b92c314cb762b73e5ad0415e'
-  '77899cce83f04cbe134b30da376f879d2841f769'
-  'cda9a087e5593992150cb456e34c5f6f589aca82')
-
-backup=('etc/clamav/clamd.conf'
-'etc/clamav/freshclam.conf'
-'etc/logrotate.d/clamav')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   

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

2015-12-02 Thread Gaetan Bisson
Date: Wednesday, December 2, 2015 @ 10:12:30
  Author: bisson
Revision: 252114

upstream update

Modified:
  clamav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 02:23:19 UTC (rev 252113)
+++ PKGBUILD2015-12-02 09:12:30 UTC (rev 252114)
@@ -4,8 +4,8 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=clamav
-pkgver=0.98.7
-pkgrel=3
+pkgver=0.99
+pkgrel=1
 pkgdesc='Anti-virus toolkit for Unix'
 url='http://www.clamav.net/'
 license=('GPL')
@@ -14,7 +14,7 @@
 depends=('bzip2' 'libltdl' 'gcc-libs')
 validpgpkeys=('B964E6D7BC7D7C82CCB8D45840B8EA2364221D53'
   'F79FB2D08751574C5D3FDFFBB3D5342C260429A0')
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig}
+source=("http://www.clamav.net/downloads/production/${pkgname}-${pkgver}.tar.gz"{,.sig}
 'logrotate'
 'tmpfiles.d'
 'clamd.conf'
@@ -21,7 +21,7 @@
 'freshclam.conf'
 'clamd.service'
 'freshclamd.service')
-sha1sums=('c9793d67c041e2b944116d912f8681c8bd6e4432' 'SKIP'
+sha1sums=('7834baf3ce4898dd856e652c9d0301a8e14b4615' 'SKIP'
   'bb488a56b0f6a0760446cde89c1e3321e2717b78'
   'a224ea9b4d0f4f196827347d54bed51e11c197ea'
   '887f624eb305f2446f55d8339e2972ad0cfe2b79'


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:25:16
  Author: heftig
Revision: 252132

2.24.2

Modified:
  atkmm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:24:36 UTC (rev 252131)
+++ PKGBUILD2015-12-02 21:25:16 UTC (rev 252132)
@@ -3,7 +3,7 @@
 
 pkgbase=atkmm
 pkgname=(atkmm atkmm-docs)
-pkgver=2.24.1
+pkgver=2.24.2
 pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
@@ -11,7 +11,7 @@
 options=('!emptydirs')
 url="http://gtkmm.sourceforge.net/;
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('26c41d8da37d04eef9f219c6ce87d94852e1cacaad823050e520e1c08a36ed23')
+sha256sums=('ff95385759e2af23828d4056356f25376cfabc41e690ac1df055371537e458bd')
 
 build() {
   cd "${srcdir}/${pkgbase}-${pkgver}"


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:34:05
  Author: heftig
Revision: 252140

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 21:33:21 UTC (rev 252139)
+++ extra-i686/PKGBUILD 2015-12-02 21:34:05 UTC (rev 252140)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Michael Kanis 
-
-pkgname=libchamplain
-pkgver=0.12.11
-pkgrel=1
-pkgdesc="Gtk3 widget for displaying rasterized maps"
-url="http://projects.gnome.org/libchamplain/;
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=('clutter-gtk' 'libsoup' 'cairo' 'sqlite')
-makedepends=('gobject-introspection' 'gtk-doc' 'vala')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('851e24888d967c10acb8fd878df1292a84b8180eb4c48fc5bfbf1a48896d4aa5')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --disable-debug --enable-vala
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libchamplain/repos/extra-i686/PKGBUILD (from rev 252139, 
libchamplain/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-02 21:34:05 UTC (rev 252140)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Michael Kanis 
+
+pkgname=libchamplain
+pkgver=0.12.12
+pkgrel=1
+pkgdesc="Gtk3 widget for displaying rasterized maps"
+url="http://projects.gnome.org/libchamplain/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('clutter-gtk' 'libsoup' 'cairo' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'vala')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('e7de797200a91dba07bd8ba6583a672e1b3dcee842b9b100798925ebde8254a6')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --disable-debug --enable-vala
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-12-02 21:33:21 UTC (rev 252139)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:34:05 UTC (rev 252140)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Michael Kanis 
-
-pkgname=libchamplain
-pkgver=0.12.11
-pkgrel=1
-pkgdesc="Gtk3 widget for displaying rasterized maps"
-url="http://projects.gnome.org/libchamplain/;
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=('clutter-gtk' 'libsoup' 'cairo' 'sqlite')
-makedepends=('gobject-introspection' 'gtk-doc' 'vala')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('851e24888d967c10acb8fd878df1292a84b8180eb4c48fc5bfbf1a48896d4aa5')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --disable-debug --enable-vala
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libchamplain/repos/extra-x86_64/PKGBUILD (from rev 252139, 
libchamplain/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:34:05 UTC (rev 252140)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Michael Kanis 
+
+pkgname=libchamplain
+pkgver=0.12.12
+pkgrel=1
+pkgdesc="Gtk3 widget for displaying rasterized maps"
+url="http://projects.gnome.org/libchamplain/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('clutter-gtk' 'libsoup' 'cairo' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'vala')

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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:29:05
  Author: heftig
Revision: 252135

0.12.12

Modified:
  libchamplain/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:27:14 UTC (rev 252134)
+++ PKGBUILD2015-12-02 21:29:05 UTC (rev 252135)
@@ -3,7 +3,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=libchamplain
-pkgver=0.12.11
+pkgver=0.12.12
 pkgrel=1
 pkgdesc="Gtk3 widget for displaying rasterized maps"
 url="http://projects.gnome.org/libchamplain/;
@@ -12,7 +12,7 @@
 depends=('clutter-gtk' 'libsoup' 'cairo' 'sqlite')
 makedepends=('gobject-introspection' 'gtk-doc' 'vala')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('851e24888d967c10acb8fd878df1292a84b8180eb4c48fc5bfbf1a48896d4aa5')
+sha256sums=('e7de797200a91dba07bd8ba6583a672e1b3dcee842b9b100798925ebde8254a6')
 
 build() {
   cd $pkgname-$pkgver


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:26:52
  Author: heftig
Revision: 252133

0.14.12.1

Modified:
  gssdp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:25:16 UTC (rev 252132)
+++ PKGBUILD2015-12-02 21:26:52 UTC (rev 252133)
@@ -3,7 +3,7 @@
 # Contributor: György Balló 
 
 pkgname=gssdp
-pkgver=0.14.12
+pkgver=0.14.12.1
 pkgrel=1
 pkgdesc="A GObject-based API for handling resource discovery and announcement 
over SSDP"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=(gobject-introspection gtk3 gtk-doc vala)
 optdepends=('gtk3: gssdp-device-sniffer')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('ad4b6cf1c2cfbe35dd369ca30f197a2c12a9a443feebe1eabee06e88c7e6ef1f')
+sha256sums=('b3d570455746284f3e65843c7f94d9595be54d68a9525629b625196bad2cac07')
 
 build() {
   cd $pkgname-$pkgver


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:32:41
  Author: heftig
Revision: 252138

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 21:32:00 UTC (rev 252137)
+++ extra-i686/PKGBUILD 2015-12-02 21:32:41 UTC (rev 252138)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: György Balló 
-
-pkgname=gssdp
-pkgver=0.14.12
-pkgrel=1
-pkgdesc="A GObject-based API for handling resource discovery and announcement 
over SSDP"
-arch=(i686 x86_64)
-url="http://gupnp.org/;
-license=(LGPL)
-depends=(libsoup)
-makedepends=(gobject-introspection gtk3 gtk-doc vala)
-optdepends=('gtk3: gssdp-device-sniffer')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('ad4b6cf1c2cfbe35dd369ca30f197a2c12a9a443feebe1eabee06e88c7e6ef1f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gssdp/repos/extra-i686/PKGBUILD (from rev 252137, gssdp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-02 21:32:41 UTC (rev 252138)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: György Balló 
+
+pkgname=gssdp
+pkgver=0.14.12.1
+pkgrel=1
+pkgdesc="A GObject-based API for handling resource discovery and announcement 
over SSDP"
+arch=(i686 x86_64)
+url="http://gupnp.org/;
+license=(LGPL)
+depends=(libsoup)
+makedepends=(gobject-introspection gtk3 gtk-doc vala)
+optdepends=('gtk3: gssdp-device-sniffer')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('b3d570455746284f3e65843c7f94d9595be54d68a9525629b625196bad2cac07')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-12-02 21:32:00 UTC (rev 252137)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:32:41 UTC (rev 252138)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: György Balló 
-
-pkgname=gssdp
-pkgver=0.14.12
-pkgrel=1
-pkgdesc="A GObject-based API for handling resource discovery and announcement 
over SSDP"
-arch=(i686 x86_64)
-url="http://gupnp.org/;
-license=(LGPL)
-depends=(libsoup)
-makedepends=(gobject-introspection gtk3 gtk-doc vala)
-optdepends=('gtk3: gssdp-device-sniffer')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('ad4b6cf1c2cfbe35dd369ca30f197a2c12a9a443feebe1eabee06e88c7e6ef1f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gssdp/repos/extra-x86_64/PKGBUILD (from rev 252137, 
gssdp/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:32:41 UTC (rev 252138)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: György Balló 
+
+pkgname=gssdp
+pkgver=0.14.12.1
+pkgrel=1
+pkgdesc="A GObject-based API for handling resource discovery and announcement 
over SSDP"
+arch=(i686 x86_64)
+url="http://gupnp.org/;
+license=(LGPL)
+depends=(libsoup)
+makedepends=(gobject-introspection gtk3 gtk-doc vala)
+optdepends=('gtk3: gssdp-device-sniffer')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)

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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:32:00
  Author: heftig
Revision: 252137

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 21:31:06 UTC (rev 252136)
+++ extra-i686/PKGBUILD 2015-12-02 21:32:00 UTC (rev 252137)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-
-pkgbase=atkmm
-pkgname=(atkmm atkmm-docs)
-pkgver=2.24.1
-pkgrel=1
-arch=('i686' 'x86_64')
-makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
-license=('LGPL')
-options=('!emptydirs')
-url="http://gtkmm.sourceforge.net/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('26c41d8da37d04eef9f219c6ce87d94852e1cacaad823050e520e1c08a36ed23')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package_atkmm() {
-  pkgdesc="C++ bindings for atk"
-  depends=('atk' 'glibmm' 'libsigc++')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-  make DESTDIR="${pkgdir}" install
-}
-
-package_atkmm-docs() {
-  pkgdesc="Developer documentation for atkmm"
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make -C doc DESTDIR="${pkgdir}" install
-}

Copied: atkmm/repos/extra-i686/PKGBUILD (from rev 252136, atkmm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-02 21:32:00 UTC (rev 252137)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+
+pkgbase=atkmm
+pkgname=(atkmm atkmm-docs)
+pkgver=2.24.2
+pkgrel=1
+arch=('i686' 'x86_64')
+makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
+license=('LGPL')
+options=('!emptydirs')
+url="http://gtkmm.sourceforge.net/;
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
+sha256sums=('ff95385759e2af23828d4056356f25376cfabc41e690ac1df055371537e458bd')
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package_atkmm() {
+  pkgdesc="C++ bindings for atk"
+  depends=('atk' 'glibmm' 'libsigc++')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
+  make DESTDIR="${pkgdir}" install
+}
+
+package_atkmm-docs() {
+  pkgdesc="Developer documentation for atkmm"
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make -C doc DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-12-02 21:31:06 UTC (rev 252136)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:32:00 UTC (rev 252137)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-
-pkgbase=atkmm
-pkgname=(atkmm atkmm-docs)
-pkgver=2.24.1
-pkgrel=1
-arch=('i686' 'x86_64')
-makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
-license=('LGPL')
-options=('!emptydirs')
-url="http://gtkmm.sourceforge.net/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('26c41d8da37d04eef9f219c6ce87d94852e1cacaad823050e520e1c08a36ed23')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package_atkmm() {
-  pkgdesc="C++ bindings for atk"
-  depends=('atk' 'glibmm' 'libsigc++')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-  make DESTDIR="${pkgdir}" install
-}
-
-package_atkmm-docs() {
-  pkgdesc="Developer documentation for atkmm"
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make -C doc DESTDIR="${pkgdir}" install
-}

Copied: atkmm/repos/extra-x86_64/PKGBUILD (from rev 252136, 
atkmm/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:32:00 UTC (rev 252137)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+
+pkgbase=atkmm
+pkgname=(atkmm atkmm-docs)
+pkgver=2.24.2
+pkgrel=1
+arch=('i686' 'x86_64')
+makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
+license=('LGPL')
+options=('!emptydirs')
+url="http://gtkmm.sourceforge.net/;

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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:11:02
  Author: heftig
Revision: 252130

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

Added:
  dbus/repos/testing-i686/
  dbus/repos/testing-i686/PKGBUILD
(from rev 252129, dbus/trunk/PKGBUILD)
  dbus/repos/testing-x86_64/
  dbus/repos/testing-x86_64/PKGBUILD
(from rev 252129, dbus/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   68 ++
 testing-x86_64/PKGBUILD |   68 ++
 2 files changed, 136 insertions(+)

Copied: dbus/repos/testing-i686/PKGBUILD (from rev 252129, dbus/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-02 21:11:02 UTC (rev 252130)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Maintainer: Jan de Groot 
+# Contributor: Link Dupont 
+
+pkgbase=dbus
+pkgname=('dbus' 'libdbus')
+pkgver=1.10.6
+pkgrel=1
+pkgdesc="Freedesktop.org message bus system"
+url="http://www.freedesktop.org/Software/dbus;
+arch=(i686 x86_64)
+license=('GPL' 'custom')
+makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc})
+md5sums=('26d0cf3a1c9782cb0e342101f0450440'
+ 'SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90'  # Simon McVittie 

+  '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie 

+
+prepare() {
+  cd dbus-$pkgver
+}
+
+build() {
+  cd dbus-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
+  --with-system-pid-file=/run/dbus/pid \
+  --with-system-socket=/run/dbus/system_bus_socket \
+  --with-console-auth-dir=/run/console/ \
+  --enable-inotify \
+  --disable-verbose-mode --disable-static \
+  --disable-tests --disable-asserts \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --enable-systemd --enable-user-session
+  make
+}
+
+package_dbus(){
+  depends=('libdbus' 'expat')
+  optdepends=('libx11: dbus-launch support')
+  provides=('dbus-core')
+  conflicts=('dbus-core')
+  replaces=('dbus-core')
+
+  cd dbus-$pkgver
+
+  # Disable installation of libdbus
+  sed -i -e 's/^SUBDIRS = dbus/SUBDIRS =/' Makefile
+
+  make DESTDIR="$pkgdir" install
+
+  rm -r "${pkgdir}/var/run"
+  rm -r "${pkgdir}/usr/lib/pkgconfig"
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/dbus/COPYING"
+}
+
+package_libdbus(){
+  pkgdesc="DBus library"
+  depends=('libsystemd')
+
+  cd dbus-$pkgver
+  make DESTDIR="$pkgdir" -C dbus install
+  make DESTDIR="$pkgdir" install-data-am
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/libdbus/COPYING"
+}

Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 252129, 
dbus/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-12-02 21:11:02 UTC (rev 252130)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Maintainer: Jan de Groot 
+# Contributor: Link Dupont 
+
+pkgbase=dbus
+pkgname=('dbus' 'libdbus')
+pkgver=1.10.6
+pkgrel=1
+pkgdesc="Freedesktop.org message bus system"
+url="http://www.freedesktop.org/Software/dbus;
+arch=(i686 x86_64)
+license=('GPL' 'custom')
+makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc})
+md5sums=('26d0cf3a1c9782cb0e342101f0450440'
+ 'SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90'  # Simon McVittie 

+  '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie 

+
+prepare() {
+  cd dbus-$pkgver
+}
+
+build() {
+  cd dbus-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
+  --with-system-pid-file=/run/dbus/pid \
+  --with-system-socket=/run/dbus/system_bus_socket \
+  --with-console-auth-dir=/run/console/ \
+  --enable-inotify \
+  --disable-verbose-mode --disable-static \
+  --disable-tests --disable-asserts \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --enable-systemd --enable-user-session
+  make
+}
+
+package_dbus(){
+  depends=('libdbus' 'expat')
+  optdepends=('libx11: dbus-launch support')
+  provides=('dbus-core')
+  conflicts=('dbus-core')
+  replaces=('dbus-core')
+
+  cd dbus-$pkgver
+
+  # Disable installation of libdbus
+  sed -i -e 's/^SUBDIRS = dbus/SUBDIRS =/' Makefile
+
+  make DESTDIR="$pkgdir" install
+
+  rm -r "${pkgdir}/var/run"
+  rm -r 

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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:09:37
  Author: heftig
Revision: 252129

1.10.6

Modified:
  dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:09:24 UTC (rev 252128)
+++ PKGBUILD2015-12-02 21:09:37 UTC (rev 252129)
@@ -5,7 +5,7 @@
 
 pkgbase=dbus
 pkgname=('dbus' 'libdbus')
-pkgver=1.10.4
+pkgver=1.10.6
 pkgrel=1
 pkgdesc="Freedesktop.org message bus system"
 url="http://www.freedesktop.org/Software/dbus;
@@ -13,7 +13,7 @@
 license=('GPL' 'custom')
 makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
 source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc})
-md5sums=('27b8e99ffad603b8acfa25201c6e3d5c'
+md5sums=('26d0cf3a1c9782cb0e342101f0450440'
  'SKIP')
 validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90'  # Simon McVittie 

   '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie 



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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:24:36
  Author: heftig
Revision: 252131

3.18.1

Modified:
  gnote/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:11:02 UTC (rev 252130)
+++ PKGBUILD2015-12-02 21:24:36 UTC (rev 252131)
@@ -3,7 +3,7 @@
 # Contributor: uastasi 
 
 pkgname=gnote
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc='A note taking application'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('intltool' 'itstool' 'boost')
 install=gnote.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4828363ae3ddac57d37a0a2b17882be8fe67afcecf97ae992cd744b95da1c348')
+sha256sums=('5da4ec9e7852b09af1067311fc6ee18a2c64384f4f5943b71ac37665144be58d')
 
 build() {
   cd $pkgname-$pkgver


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:33:21
  Author: heftig
Revision: 252139

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

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

--+
 /PKGBUILD|   56 +
 /librsvg.install |   22 
 extra-i686/PKGBUILD  |   28 
 extra-i686/librsvg.install   |   11 
 extra-x86_64/PKGBUILD|   28 
 extra-x86_64/librsvg.install |   11 
 6 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 21:32:41 UTC (rev 252138)
+++ extra-i686/PKGBUILD 2015-12-02 21:33:21 UTC (rev 252139)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=librsvg
-pkgver=2.40.11
-pkgrel=1
-epoch=1
-pkgdesc="A SVG viewing library"
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('gdk-pixbuf2' 'pango' 'libcroco')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'python2')
-options=('!emptydirs')
-url="https://live.gnome.org/LibRsvg;
-install=librsvg.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('611ac0f544debd0c9bf1ef5509c990d218e83dd1d8c83297075c4b29796a2e02')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --enable-vala
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: librsvg/repos/extra-i686/PKGBUILD (from rev 252138, 
librsvg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-02 21:33:21 UTC (rev 252139)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=librsvg
+pkgver=2.40.12
+pkgrel=1
+epoch=1
+pkgdesc="A SVG viewing library"
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('gdk-pixbuf2' 'pango' 'libcroco')
+makedepends=('intltool' 'gobject-introspection' 'vala' 'python2')
+options=('!emptydirs')
+url="https://live.gnome.org/LibRsvg;
+install=librsvg.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('ffe40c4378bf3899f4d679a475726bab03a127a5bdccddec86404cc329ffb550')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --enable-vala
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/librsvg.install
===
--- extra-i686/librsvg.install  2015-12-02 21:32:41 UTC (rev 252138)
+++ extra-i686/librsvg.install  2015-12-02 21:33:21 UTC (rev 252139)
@@ -1,11 +0,0 @@
-post_install() {
-gdk-pixbuf-query-loaders --update-cache
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: librsvg/repos/extra-i686/librsvg.install (from rev 252138, 
librsvg/trunk/librsvg.install)
===
--- extra-i686/librsvg.install  (rev 0)
+++ extra-i686/librsvg.install  2015-12-02 21:33:21 UTC (rev 252139)
@@ -0,0 +1,11 @@
+post_install() {
+gdk-pixbuf-query-loaders --update-cache
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-12-02 21:32:41 UTC (rev 252138)
+++ extra-x86_64/PKGBUILD   2015-12-02 21:33:21 UTC (rev 252139)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=librsvg
-pkgver=2.40.11
-pkgrel=1
-epoch=1
-pkgdesc="A SVG viewing library"
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('gdk-pixbuf2' 'pango' 'libcroco')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'python2')
-options=('!emptydirs')
-url="https://live.gnome.org/LibRsvg;
-install=librsvg.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('611ac0f544debd0c9bf1ef5509c990d218e83dd1d8c83297075c4b29796a2e02')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --enable-vala
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: 

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 03:48:33
  Author: fyan
Revision: 148124

upgpkg: python-braintree 3.23.0-1

Modified:
  python-braintree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 23:50:49 UTC (rev 148123)
+++ PKGBUILD2015-12-03 02:48:33 UTC (rev 148124)
@@ -4,7 +4,7 @@
 pkgbase=python-braintree
 pkgname=(python-braintree python2-braintree)
 _pkgname=braintree
-pkgver=3.22.0
+pkgver=3.23.0
 pkgrel=1
 pkgdesc="Braintree Python Library"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
 checkdepends=('python-nose' 'python2-nose')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/braintree/braintree_python/archive/${pkgver}.tar.gz;)
-sha512sums=('a2cd203d7e71e3242dd2a4920895056d586d9e8e35dc5470da3c88c36337414283106a19eba56a38ff44838126a5293e4e6ca1e5864676bb5af98cdf95cef1a2')
+sha512sums=('774c8d576c248509dced0fc289d87ce25f5cc0c51a5134ddd7af5d9677093bea3af6af8f528f5d001424777e48fe3f60daa4450d92ee4c4f1bd78be0f91eabda')
 
 prepare() {
   cp -a ${_pkgname}_python-$pkgver{,-py2}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:42:46
  Author: fyan
Revision: 148149

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

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

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

Copied: deepin-dock/repos/community-staging-i686/PKGBUILD (from rev 148148, 
deepin-dock/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:42:46 UTC (rev 148149)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=2.90.1.20151203
+_commit=4fef2f921b64e3f84f9632341a0a24750ea1443f
+pkgrel=1
+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#commit=$_commit;)
+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-staging-x86_64/PKGBUILD (from rev 148148, 
deepin-dock/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:42:46 UTC (rev 148149)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=2.90.1.20151203
+_commit=4fef2f921b64e3f84f9632341a0a24750ea1443f
+pkgrel=1
+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#commit=$_commit;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:42:21
  Author: fyan
Revision: 148148

upgpkg: deepin-dock 2.90.1.20151203-1

Modified:
  deepin-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:38:56 UTC (rev 148147)
+++ PKGBUILD2015-12-03 05:42:21 UTC (rev 148148)
@@ -4,8 +4,9 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dock
-pkgver=2.90.1
-pkgrel=4
+pkgver=2.90.1.20151203
+_commit=4fef2f921b64e3f84f9632341a0a24750ea1443f
+pkgrel=1
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-dock;
@@ -17,7 +18,7 @@
 conflicts=('dde-dock')
 replaces=('dde-dock')
 groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-dock.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/dde-dock.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 build(){


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:49:28
  Author: fyan
Revision: 148152

upgpkg: deepin-icon-theme 15.10.0.20151202-1

Modified:
  deepin-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:44:19 UTC (rev 148151)
+++ PKGBUILD2015-12-03 05:49:28 UTC (rev 148152)
@@ -4,15 +4,18 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-icon-theme
-pkgver=15.10.0
+pkgver=15.10.0.20151202
+_commit=3657bcbd209d6381d42d6c593ad80535a03ef2a7
 pkgrel=1
 pkgdesc="Deepin Icons"
 arch=('any')
 url="https://github.com/linuxdeepin/deepin-icon-theme;
 license=('GPL3')
+replaces=('deepin-cursor-theme')
+conflicts=('deepin-cursor-theme')
 depends=('flattr-icon-theme')
 makedepends=('git' 'inkscape')
-source=("git+https://github.com/linuxdeepin/deepin-icon-theme.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/deepin-icon-theme.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 prepare() {
@@ -29,6 +32,9 @@
 }
 
 package() {
+  cd "${pkgname}"
   install -d "${pkgdir}"/usr/share/icons
-  cp -r "${pkgname}"/build/deepin "${pkgdir}"/usr/share/icons/Deepin
+  cp -r build/deepin "${pkgdir}"/usr/share/icons/Deepin
+
+  make DESTDIR="$pkgdir" install-cursors
 }


[arch-commits] Commit in deepin-icon-theme/repos (2 files)

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:49:44
  Author: fyan
Revision: 148153

archrelease: copy trunk to community-staging-any

Added:
  deepin-icon-theme/repos/community-staging-any/
  deepin-icon-theme/repos/community-staging-any/PKGBUILD
(from rev 148152, deepin-icon-theme/trunk/PKGBUILD)

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

Copied: deepin-icon-theme/repos/community-staging-any/PKGBUILD (from rev 
148152, deepin-icon-theme/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-12-03 05:49:44 UTC (rev 148153)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-icon-theme
+pkgver=15.10.0.20151202
+_commit=3657bcbd209d6381d42d6c593ad80535a03ef2a7
+pkgrel=1
+pkgdesc="Deepin Icons"
+arch=('any')
+url="https://github.com/linuxdeepin/deepin-icon-theme;
+license=('GPL3')
+replaces=('deepin-cursor-theme')
+conflicts=('deepin-cursor-theme')
+depends=('flattr-icon-theme')
+makedepends=('git' 'inkscape')
+source=("git+https://github.com/linuxdeepin/deepin-icon-theme.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  sed 's\flattr\Flattr\' -i deepin/index.theme
+  sed 's\Faenza\Adwaita\' -i deepin/index.theme
+
+  mkdir -p build
+}
+
+build() {
+  cd "${pkgname}"
+  python2 tools/convert.py deepin build
+}
+
+package() {
+  cd "${pkgname}"
+  install -d "${pkgdir}"/usr/share/icons
+  cp -r build/deepin "${pkgdir}"/usr/share/icons/Deepin
+
+  make DESTDIR="$pkgdir" install-cursors
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:21:55
  Author: fyan
Revision: 148135

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

Added:
  haskell-pandoc-citeproc/repos/community-staging-i686/
  haskell-pandoc-citeproc/repos/community-staging-i686/PKGBUILD
(from rev 148133, haskell-pandoc-citeproc/trunk/PKGBUILD)
  
haskell-pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install
(from rev 148133, 
haskell-pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
  haskell-pandoc-citeproc/repos/community-staging-x86_64/
  haskell-pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 148134, haskell-pandoc-citeproc/trunk/PKGBUILD)
  
haskell-pandoc-citeproc/repos/community-staging-x86_64/haskell-pandoc-citeproc.install
(from rev 148134, 
haskell-pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)

--+
 community-staging-i686/PKGBUILD  |   48 +
 community-staging-i686/haskell-pandoc-citeproc.install   |   18 
 community-staging-x86_64/PKGBUILD|   48 +
 community-staging-x86_64/haskell-pandoc-citeproc.install |   18 
 4 files changed, 132 insertions(+)

Copied: haskell-pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 
148133, haskell-pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:21:55 UTC (rev 148135)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-citeproc
+pkgname=haskell-pandoc-citeproc
+pkgver=0.8.1.3
+pkgrel=9
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "pandoc" "haskell-pandoc-types" "haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-xml-conduit" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('aa15ff9cbb9c1cca504943c94cd891e23944cb0106172886821cb048a9726c7d')
+
+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 \
+-f-debug -f-test_citeproc -f-unicode_collation -f-embed_data_files 
-fbibutils
+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-pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install
 (from rev 148133, 
haskell-pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
===
--- community-staging-i686/haskell-pandoc-citeproc.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-citeproc.install  2015-12-03 
05:21:55 UTC (rev 148135)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-citeproc
+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-pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from 
rev 148134, haskell-pandoc-citeproc/trunk/PKGBUILD)

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:21:31
  Author: fyan
Revision: 148134

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

Added:
  deepin-daemon/repos/community-staging-i686/
  deepin-daemon/repos/community-staging-i686/PKGBUILD
(from rev 148132, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-staging-i686/deepin-daemon.install
(from rev 148132, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-staging-i686/deepin-daemon.sysusers
(from rev 148132, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-staging-x86_64/
  deepin-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 148132, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-staging-x86_64/deepin-daemon.install
(from rev 148132, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-staging-x86_64/deepin-daemon.sysusers
(from rev 148132, deepin-daemon/trunk/deepin-daemon.sysusers)

-+
 community-staging-i686/PKGBUILD |   75 ++
 community-staging-i686/deepin-daemon.install|   13 +++
 community-staging-i686/deepin-daemon.sysusers   |2 
 community-staging-x86_64/PKGBUILD   |   75 ++
 community-staging-x86_64/deepin-daemon.install  |   13 +++
 community-staging-x86_64/deepin-daemon.sysusers |2 
 6 files changed, 180 insertions(+)

Copied: deepin-daemon/repos/community-staging-i686/PKGBUILD (from rev 148132, 
deepin-daemon/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:21:31 UTC (rev 148134)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-daemon
+pkgver=2.93.1.20151202
+_commit=107ce2cdb5ada3e5599d2bbe7b9c7f109801b68d
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+_desktopbaserev=df35ee9bbe33cca436c256a145b88e58e011b737
+pkgrel=1
+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/dde-daemon.git#commit=$_commit;
+#"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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;
+
"git+https://github.com/linuxdeepin/deepin-desktop-base.git#commit=$_desktopbaserev;
+'deepin-daemon.sysusers')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25')
+
+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
+}
+
+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"
+  install -Dm644 "${srcdir}"/deepin-desktop-base/desktop-version 

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:58:26
  Author: fyan
Revision: 148160

upgpkg: deepin-session-ui 2.90.2.20151202-1

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:56:57 UTC (rev 148159)
+++ PKGBUILD2015-12-03 05:58:26 UTC (rev 148160)
@@ -4,8 +4,9 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-session-ui
-pkgver=2.90.2
-pkgrel=4
+pkgver=2.90.2.20151202
+_commit=b130e7cd69facd2441ccdbdb5dedec16c18c9fc9
+pkgrel=1
 pkgdesc='Deepin desktop-environment - Session UI module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-session-ui;
@@ -12,12 +13,12 @@
 license=('GPL3')
 groups=('deepin')
 depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
- 'deepin-control-center' 'startdde')
+ 'deepin-control-center' 'startdde' 'gtk2')
 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;)
+source=("git+https://github.com/linuxdeepin/dde-session-ui.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 build() {


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:58:52
  Author: fyan
Revision: 148161

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

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

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

Copied: deepin-session-ui/repos/community-staging-i686/PKGBUILD (from rev 
148160, deepin-session-ui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:58:52 UTC (rev 148161)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=2.90.2.20151202
+_commit=b130e7cd69facd2441ccdbdb5dedec16c18c9fc9
+pkgrel=1
+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' 'gtk2')
+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#commit=$_commit;)
+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-staging-x86_64/PKGBUILD (from rev 
148160, deepin-session-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:58:52 UTC (rev 148161)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=2.90.2.20151202
+_commit=b130e7cd69facd2441ccdbdb5dedec16c18c9fc9
+pkgrel=1
+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' 'gtk2')
+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#commit=$_commit;)
+sha256sums=('SKIP')
+
+build() {
+  cd "dde-session-ui"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "dde-session-ui"
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:20:53
  Author: fyan
Revision: 148132

upgpkg: deepin-daemon 2.93.1.20151202-1

Modified:
  deepin-daemon/trunk/PKGBUILD
Deleted:
  deepin-daemon/trunk/fix-i686-compile.patch
  deepin-daemon/trunk/get-distro-info.patch
  deepin-daemon/trunk/ishuman-via-login-defs.patch

--+
 PKGBUILD |   40 
 fix-i686-compile.patch   |   12 ---
 get-distro-info.patch|  119 
 ishuman-via-login-defs.patch |  132 -
 4 files changed, 16 insertions(+), 287 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:02:17 UTC (rev 148131)
+++ PKGBUILD2015-12-03 05:20:53 UTC (rev 148132)
@@ -4,13 +4,16 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-daemon
-pkgver=2.93.1
+pkgver=2.93.1.20151202
+_commit=107ce2cdb5ada3e5599d2bbe7b9c7f109801b68d
 #_golibver=0.4.2
-_golibrev=238151791673412dedf63b3a37343c461acb
-_deepinapiver=2.92.1
-_dbusfactoryver=2.92.1
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
 _desktopbaserev=df35ee9bbe33cca436c256a145b88e58e011b737
-pkgrel=5
+pkgrel=1
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;
@@ -26,22 +29,22 @@
 replaces=('dde-daemon')
 groups=('deepin')
 install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/dde-daemon.git#tag=$pkgver;
+source=(#"git+https://github.com/linuxdeepin/dde-daemon.git#tag=$pkgver;
+"git+https://github.com/linuxdeepin/dde-daemon.git#commit=$_commit;
 #"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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;
 
"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')
+'deepin-daemon.sysusers')
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
 'SKIP'
 'SKIP'
-'1dccf88c5ce480560a4a2d73134e69f05135703fe34ccd5d9e2e5d7fe852efc5'
-'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25'
-'182fd299b9f222ce8f94da9137fb671f95fbd32bd28becfaf8c97b9fdd488c65'
-'4b3f743b8cffc591ab5582aa4ba6a56f464cd7c279a3594e637fffac0a14df63')
+'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25')
 
 prepare() {
   export GOPATH="$srcdir/build"
@@ -53,17 +56,6 @@
  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() {

Deleted: fix-i686-compile.patch
===
--- fix-i686-compile.patch  2015-12-03 05:02:17 UTC (rev 148131)
+++ fix-i686-compile.patch  2015-12-03 05:20:53 UTC (rev 148132)
@@ -1,12 +0,0 @@
-diff --git a/launcher/item/item.go b/launcher/item/item.go
-index a8ccbbe..3701968 100644
 a/launcher/item/item.go
-+++ b/launcher/item/item.go
-@@ -4,7 +4,6 @@ import (
-   "path"
-   "strings"
- 
--  _ "github.com/mattn/go-sqlite3"
- 
-   "pkg.deepin.io/dde/daemon/launcher/category"
-   . "pkg.deepin.io/dde/daemon/launcher/interfaces"

Deleted: get-distro-info.patch
===
--- get-distro-info.patch   2015-12-03 05:02:17 UTC (rev 148131)
+++ get-distro-info.patch   2015-12-03 05:20:53 UTC (rev 148132)
@@ -1,119 +0,0 @@
-commit a39042ae318f404ac44196cc028e234e6b01d489
-Author: Felix Yan 
-Date:   Wed Nov 25 12:55:31 2015 +0800
-
-Add methods to 

[arch-commits] Commit in haskell-pandoc-citeproc/trunk (PKGBUILD)

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:21:22
  Author: fyan
Revision: 148133

upgpkg: haskell-pandoc-citeproc 0.8.1.3-9

rebuild with JuicyPixels-3.2.6.4

Modified:
  haskell-pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:20:53 UTC (rev 148132)
+++ PKGBUILD2015-12-03 05:21:22 UTC (rev 148133)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-citeproc
 pkgname=haskell-pandoc-citeproc
 pkgver=0.8.1.3
-pkgrel=8
+pkgrel=9
 pkgdesc="Supports using pandoc with citeproc"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:32:00
  Author: fyan
Revision: 148142

upgpkg: libdui 1.2.1.20151202-1

Modified:
  libdui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:31:52 UTC (rev 148141)
+++ PKGBUILD2015-12-03 05:32:00 UTC (rev 148142)
@@ -4,8 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=libdui
-pkgver=1.2.1.20151126
-_commit=de32ba4a6bed46e31132e47267b4ea8e8b59798d
+pkgver=1.2.1.20151202
+_commit=db3960cfd05ca4bbed4686ffc34414001a491038
 pkgrel=1
 pkgdesc='Deepin graphical user interface library'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 license=('GPL3')
 depends=('qt5-multimedia' 'qt5-x11extras')
 makedepends=('git')
-source=("git+https://cr.deepin.io/dde/libdui#commit=$_commit;)
+source=("git+https://github.com/linuxdeepin/libdui#commit=$_commit;)
 sha256sums=('SKIP')
 
 build(){


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:33:59
  Author: fyan
Revision: 148144

upgpkg: deepin-api 2.92.1.20151201-1

Modified:
  deepin-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:32:34 UTC (rev 148143)
+++ PKGBUILD2015-12-03 05:33:59 UTC (rev 148144)
@@ -4,10 +4,13 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-api
-pkgver=2.92.1
-_golibver=0.4.2
-_dbusfactoryver=2.92.1
-pkgrel=4
+pkgver=2.92.1.20151201
+_commit=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=1
 pkgdesc='Go-lang bingdings for dde-daemon'
 arch=('i686' 'x86_64')
 url="https://gitcafe.com/Deepin/dde-api;
@@ -17,9 +20,12 @@
 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;)
+source=(#"git+https://github.com/linuxdeepin/dde-api.git#tag=$pkgver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_commit;
+#"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/dbus-factory.git#commit=$_deepinfactoryrev;)
 sha256sums=('SKIP'
 'SKIP'
 'SKIP')


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:34:26
  Author: fyan
Revision: 148145

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

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

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

Copied: deepin-api/repos/community-staging-i686/PKGBUILD (from rev 148144, 
deepin-api/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:34:26 UTC (rev 148145)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=2.92.1.20151201
+_commit=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=1
+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/dde-api.git#commit=$_commit;
+#"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/dbus-factory.git#commit=$_deepinfactoryrev;)
+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-staging-x86_64/PKGBUILD (from rev 148144, 
deepin-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:34:26 UTC (rev 148145)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=2.92.1.20151201
+_commit=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=1
+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/dde-api.git#commit=$_commit;
+#"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/dbus-factory.git#commit=$_deepinfactoryrev;)
+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
+}
+

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:32:34
  Author: fyan
Revision: 148143

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

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

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-12-03 05:32:00 UTC (rev 148142)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:32:34 UTC (rev 148143)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=libdui
-pkgver=1.2.1.20151126
-_commit=de32ba4a6bed46e31132e47267b4ea8e8b59798d
-pkgrel=1
-pkgdesc='Deepin graphical user interface library'
-arch=('i686' 'x86_64')
-url="https://cr.deepin.io/dde/libdui;
-license=('GPL3')
-depends=('qt5-multimedia' 'qt5-x11extras')
-makedepends=('git')
-source=("git+https://cr.deepin.io/dde/libdui#commit=$_commit;)
-sha256sums=('SKIP')
-
-build(){
-  cd "${pkgname}"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${pkgname}"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: libdui/repos/community-staging-i686/PKGBUILD (from rev 148142, 
libdui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:32:34 UTC (rev 148143)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=libdui
+pkgver=1.2.1.20151202
+_commit=db3960cfd05ca4bbed4686ffc34414001a491038
+pkgrel=1
+pkgdesc='Deepin graphical user interface library'
+arch=('i686' 'x86_64')
+url="https://cr.deepin.io/dde/libdui;
+license=('GPL3')
+depends=('qt5-multimedia' 'qt5-x11extras')
+makedepends=('git')
+source=("git+https://github.com/linuxdeepin/libdui#commit=$_commit;)
+sha256sums=('SKIP')
+
+build(){
+  cd "${pkgname}"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2015-12-03 05:32:00 UTC (rev 148142)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:32:34 UTC (rev 148143)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=libdui
-pkgver=1.2.1.20151126
-_commit=de32ba4a6bed46e31132e47267b4ea8e8b59798d
-pkgrel=1
-pkgdesc='Deepin graphical user interface library'
-arch=('i686' 'x86_64')
-url="https://cr.deepin.io/dde/libdui;
-license=('GPL3')
-depends=('qt5-multimedia' 'qt5-x11extras')
-makedepends=('git')
-source=("git+https://cr.deepin.io/dde/libdui#commit=$_commit;)
-sha256sums=('SKIP')
-
-build(){
-  cd "${pkgname}"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${pkgname}"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: libdui/repos/community-staging-x86_64/PKGBUILD (from rev 148142, 
libdui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:32:34 UTC (rev 148143)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=libdui
+pkgver=1.2.1.20151202
+_commit=db3960cfd05ca4bbed4686ffc34414001a491038
+pkgrel=1
+pkgdesc='Deepin graphical user interface library'
+arch=('i686' 'x86_64')
+url="https://cr.deepin.io/dde/libdui;
+license=('GPL3')
+depends=('qt5-multimedia' 'qt5-x11extras')
+makedepends=('git')
+source=("git+https://github.com/linuxdeepin/libdui#commit=$_commit;)
+sha256sums=('SKIP')
+
+build(){
+  cd "${pkgname}"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}"
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:55:41
  Author: fyan
Revision: 148156

upgpkg: deepin-control-center 2.91.2.20151202-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:54:53 UTC (rev 148155)
+++ PKGBUILD2015-12-03 05:55:41 UTC (rev 148156)
@@ -4,8 +4,9 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-control-center
-pkgver=2.91.2
-pkgrel=2
+pkgver=2.91.2.20151202
+_commit=c5c3e1fba0973ca79266eaa8e5942a4a31720cfb
+pkgrel=1
 pkgdesc='New control center for linux deepin'
 arch=('i686' 'x86_64')
 url="http://github.com/linuxdeepin/dde-control-center;
@@ -17,19 +18,10 @@
 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')
+#source=("git+https://github.com/linuxdeepin/dde-control-center.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/dde-control-center.git#commit=$_commit;)
+sha256sums=('SKIP')
 
-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

Deleted: optimize_plugins_unload.patch
===
--- optimize_plugins_unload.patch   2015-12-03 05:54:53 UTC (rev 148155)
+++ optimize_plugins_unload.patch   2015-12-03 05:55:41 UTC (rev 148156)
@@ -1,174 +0,0 @@
-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());
- m_centeralWidget->setFixedHeight(primaryRect.height());
--

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:56:17
  Author: fyan
Revision: 148158

upgpkg: deepin-launcher 2.90.1.20151203-1

Modified:
  deepin-launcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:56:10 UTC (rev 148157)
+++ PKGBUILD2015-12-03 05:56:17 UTC (rev 148158)
@@ -4,8 +4,9 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-launcher
-pkgver=2.90.1
-pkgrel=3
+pkgver=2.90.1.20151203
+_commit=fcfa411173a788b6f1f68da1c76b5240805c7411
+pkgrel=1
 pkgdesc='Deepin desktop-environment - Launcher module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-launcher;
@@ -16,7 +17,7 @@
 conflicts=('dde-launcher')
 replaces=('dde-launcher')
 groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-launcher.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/dde-launcher.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 build(){


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:56:57
  Author: fyan
Revision: 148159

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

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

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

Copied: deepin-launcher/repos/community-staging-i686/PKGBUILD (from rev 148158, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:56:57 UTC (rev 148159)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=2.90.1.20151203
+_commit=fcfa411173a788b6f1f68da1c76b5240805c7411
+pkgrel=1
+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#commit=$_commit;)
+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-staging-x86_64/PKGBUILD (from rev 
148158, deepin-launcher/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:56:57 UTC (rev 148159)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=2.90.1.20151203
+_commit=fcfa411173a788b6f1f68da1c76b5240805c7411
+pkgrel=1
+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#commit=$_commit;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-launcher
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-launcher
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:56:10
  Author: fyan
Revision: 148157

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

Added:
  deepin-control-center/repos/community-staging-i686/
  deepin-control-center/repos/community-staging-i686/PKGBUILD
(from rev 148156, deepin-control-center/trunk/PKGBUILD)
  
deepin-control-center/repos/community-staging-i686/deepin-control-center.install
(from rev 148156, deepin-control-center/trunk/deepin-control-center.install)
  deepin-control-center/repos/community-staging-x86_64/
  deepin-control-center/repos/community-staging-x86_64/PKGBUILD
(from rev 148156, deepin-control-center/trunk/PKGBUILD)
  
deepin-control-center/repos/community-staging-x86_64/deepin-control-center.install
(from rev 148156, deepin-control-center/trunk/deepin-control-center.install)

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

Copied: deepin-control-center/repos/community-staging-i686/PKGBUILD (from rev 
148156, deepin-control-center/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:56:10 UTC (rev 148157)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=2.91.2.20151202
+_commit=c5c3e1fba0973ca79266eaa8e5942a4a31720cfb
+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' '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;)
+source=("git+https://github.com/linuxdeepin/dde-control-center.git#commit=$_commit;)
+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-staging-i686/deepin-control-center.install
 (from rev 148156, deepin-control-center/trunk/deepin-control-center.install)
===
--- community-staging-i686/deepin-control-center.install
(rev 0)
+++ community-staging-i686/deepin-control-center.install2015-12-03 
05:56:10 UTC (rev 148157)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}

Copied: deepin-control-center/repos/community-staging-x86_64/PKGBUILD (from rev 
148156, deepin-control-center/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:56:10 UTC (rev 148157)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=2.91.2.20151202
+_commit=c5c3e1fba0973ca79266eaa8e5942a4a31720cfb
+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' '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;)
+source=("git+https://github.com/linuxdeepin/dde-control-center.git#commit=$_commit;)
+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-staging-x86_64/deepin-control-center.install
 (from rev 148156, deepin-control-center/trunk/deepin-control-center.install)
===
--- 

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:03:59
  Author: fyan
Revision: 148163

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

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

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

Copied: deepin-desktop/repos/community-staging-i686/PKGBUILD (from rev 148162, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 06:03:59 UTC (rev 148163)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=2.90.1.20151202
+_commit=185fcfd2870b8e83018eff61279fc02e599fc1ff
+pkgrel=1
+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#commit=$_commit;)
+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-staging-x86_64/PKGBUILD (from rev 
148162, deepin-desktop/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 06:03:59 UTC (rev 148163)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=2.90.1.20151202
+_commit=185fcfd2870b8e83018eff61279fc02e599fc1ff
+pkgrel=1
+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#commit=$_commit;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:03:28
  Author: fyan
Revision: 148162

upgpkg: deepin-desktop 2.90.1.20151202-1

Modified:
  deepin-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:58:52 UTC (rev 148161)
+++ PKGBUILD2015-12-03 06:03:28 UTC (rev 148162)
@@ -4,8 +4,9 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-desktop
-pkgver=2.90.1
-pkgrel=3
+pkgver=2.90.1.20151202
+_commit=185fcfd2870b8e83018eff61279fc02e599fc1ff
+pkgrel=1
 pkgdesc='Deepin desktop-environment - Desktop module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-desktop;
@@ -17,7 +18,7 @@
 conflicts=('dde-desktop')
 replaces=('dde-desktop')
 groups=('deepin')
-source=("git+https://github.com/linuxdeepin/dde-desktop.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/dde-desktop.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 build(){


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 04:15:55
  Author: fyan
Revision: 148127

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

Added:
  haskell-juicypixels/repos/community-staging-i686/
  haskell-juicypixels/repos/community-staging-i686/PKGBUILD
(from rev 148126, haskell-juicypixels/trunk/PKGBUILD)
  haskell-juicypixels/repos/community-staging-i686/haskell-juicypixels.install
(from rev 148126, haskell-juicypixels/trunk/haskell-juicypixels.install)
  haskell-juicypixels/repos/community-staging-x86_64/
  haskell-juicypixels/repos/community-staging-x86_64/PKGBUILD
(from rev 148126, haskell-juicypixels/trunk/PKGBUILD)
  haskell-juicypixels/repos/community-staging-x86_64/haskell-juicypixels.install
(from rev 148126, haskell-juicypixels/trunk/haskell-juicypixels.install)

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

Copied: haskell-juicypixels/repos/community-staging-i686/PKGBUILD (from rev 
148126, haskell-juicypixels/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 03:15:55 UTC (rev 148127)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=JuicyPixels
+pkgname=haskell-juicypixels
+pkgver=3.2.6.4
+pkgrel=1
+pkgdesc="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff 
and radiance)"
+url="https://github.com/Twinside/Juicy.Pixels;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-mtl" "haskell-primitive" "haskell-vector" 
"haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6268583fd7915913b3d68a399184bfcfebfaa010be9aa10232d76324df65a6ac')
+
+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 \
+-f-mmap
+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-juicypixels/repos/community-staging-i686/haskell-juicypixels.install 
(from rev 148126, haskell-juicypixels/trunk/haskell-juicypixels.install)
===
--- community-staging-i686/haskell-juicypixels.install  
(rev 0)
+++ community-staging-i686/haskell-juicypixels.install  2015-12-03 03:15:55 UTC 
(rev 148127)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-juicypixels
+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-juicypixels/repos/community-staging-x86_64/PKGBUILD (from rev 
148126, haskell-juicypixels/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 03:15:55 UTC (rev 148127)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=JuicyPixels
+pkgname=haskell-juicypixels
+pkgver=3.2.6.4
+pkgrel=1
+pkgdesc="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff 
and radiance)"
+url="https://github.com/Twinside/Juicy.Pixels;

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 04:15:29
  Author: fyan
Revision: 148126

upgpkg: haskell-juicypixels 3.2.6.4-1

Modified:
  haskell-juicypixels/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 02:48:52 UTC (rev 148125)
+++ PKGBUILD2015-12-03 03:15:29 UTC (rev 148126)
@@ -4,7 +4,7 @@
 
 _hkgname=JuicyPixels
 pkgname=haskell-juicypixels
-pkgver=3.2.6.3
+pkgver=3.2.6.4
 pkgrel=1
 pkgdesc="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff 
and radiance)"
 url="https://github.com/Twinside/Juicy.Pixels;
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('4bdd5d6c9bd41308365f7d8fc9bc50393f440a96ee4390f0c64122bb08f1657a')
+sha256sums=('6268583fd7915913b3d68a399184bfcfebfaa010be9aa10232d76324df65a6ac')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 03:49:19
  Author: fyan
Revision: 252141

upgpkg: pylint 1.5.1-1

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:34:05 UTC (rev 252140)
+++ PKGBUILD2015-12-03 02:49:19 UTC (rev 252141)
@@ -6,7 +6,7 @@
 
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.5
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
 arch=('any')


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 03:49:42
  Author: fyan
Revision: 252142

archrelease: copy trunk to extra-any

Added:
  pylint/repos/extra-any/PKGBUILD
(from rev 252141, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-03 02:49:19 UTC (rev 252141)
+++ PKGBUILD2015-12-03 02:49:42 UTC (rev 252142)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Alexander Fehr 
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.5
-pkgrel=1
-pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
-arch=('any')
-url="http://pylint.org;
-license=('GPL')
-makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six' 'mercurial')
-optdepends=('tk: Pylint GUI')
-source=("hg+https://felixonm...@bitbucket.org/logilab/pylint#tag=pylint-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a ${pkgbase}{,-py3}
-
-  cd ${pkgbase}/pylint
-  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
-
-  cd ../../${pkgbase}-py3/pylint
-  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
-}
-
-build() {
-  cd ${pkgbase}
-  python2 setup.py build
-
-  cd ../${pkgbase}-py3
-  python3 setup.py build
-}
-
-check() {
-  cd ${pkgbase}
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
-
-  cd ../${pkgbase}-py3
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
-}
-
-package_python2-pylint() {
-  depends=('python2-astroid' 'python2-setuptools' 'python2-six')
-
-  cd ${pkgbase}
-
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  install -m644 man/* "${pkgdir}/usr/share/man/man1"
-
-  for i in epylint pylint pylint-gui pyreverse symilar; do
- mv "${pkgdir}"/usr/bin/${i}{,2}
- mv "${pkgdir}"/usr/share/man/man1/${i}{,2}.1
-  done
-}
-
-package_python-pylint() {
-  depends=('python-astroid' 'python-setuptools' 'python-six')
-
-  cd ${pkgbase}-py3
-
-  python3 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
-
-  install -d "${pkgdir}/usr/share/man/man1"
-  install -m644 man/* "${pkgdir}/usr/share/man/man1"
-}

Copied: pylint/repos/extra-any/PKGBUILD (from rev 252141, pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-03 02:49:42 UTC (rev 252142)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
+arch=('any')
+url="http://pylint.org;
+license=('GPL')
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six' 'mercurial')
+optdepends=('tk: Pylint GUI')
+source=("hg+https://felixonm...@bitbucket.org/logilab/pylint#tag=pylint-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a ${pkgbase}{,-py3}
+
+  cd ${pkgbase}/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+
+  cd ../../${pkgbase}-py3/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+}
+
+build() {
+  cd ${pkgbase}
+  python2 setup.py build
+
+  cd ../${pkgbase}-py3
+  python3 setup.py build
+}
+
+check() {
+  cd ${pkgbase}
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
+
+  cd ../${pkgbase}-py3
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
+}
+
+package_python2-pylint() {
+  depends=('python2-astroid' 'python2-setuptools' 'python2-six')
+
+  cd ${pkgbase}
+
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
+
+  install -d 

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 03:48:52
  Author: fyan
Revision: 148125

archrelease: copy trunk to community-any

Added:
  python-braintree/repos/community-any/PKGBUILD
(from rev 148124, python-braintree/trunk/PKGBUILD)
Deleted:
  python-braintree/repos/community-any/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-03 02:48:33 UTC (rev 148124)
+++ PKGBUILD2015-12-03 02:48:52 UTC (rev 148125)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-braintree
-pkgname=(python-braintree python2-braintree)
-_pkgname=braintree
-pkgver=3.22.0
-pkgrel=1
-pkgdesc="Braintree Python Library"
-arch=('any')
-url="https://www.braintreepayments.com/docs/python;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
-checkdepends=('python-nose' 'python2-nose')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/braintree/braintree_python/archive/${pkgver}.tar.gz;)
-sha512sums=('a2cd203d7e71e3242dd2a4920895056d586d9e8e35dc5470da3c88c36337414283106a19eba56a38ff44838126a5293e4e6ca1e5864676bb5af98cdf95cef1a2')
-
-prepare() {
-  cp -a ${_pkgname}_python-$pkgver{,-py2}
-}
-
-build() {
-  cd ${_pkgname}_python-$pkgver
-  python setup.py build
-
-  cd ../${_pkgname}_python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd ${_pkgname}_python-$pkgver
-  nosetests3 tests/unit
-
-  cd ../${_pkgname}_python-$pkgver-py2
-  nosetests2 tests/unit
-}
-
-package_python-braintree() {
-  depends=('python-requests')
-
-  cd ${_pkgname}_python-$pkgver
-  python setup.py install -O1 --root "${pkgdir}"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-braintree() {
-  depends=('python2-requests')
-
-  cd ${_pkgname}_python-$pkgver-py2
-  python2 setup.py install -O1 --root "${pkgdir}"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-braintree/repos/community-any/PKGBUILD (from rev 148124, 
python-braintree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-03 02:48:52 UTC (rev 148125)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-braintree
+pkgname=(python-braintree python2-braintree)
+_pkgname=braintree
+pkgver=3.23.0
+pkgrel=1
+pkgdesc="Braintree Python Library"
+arch=('any')
+url="https://www.braintreepayments.com/docs/python;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
+checkdepends=('python-nose' 'python2-nose')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/braintree/braintree_python/archive/${pkgver}.tar.gz;)
+sha512sums=('774c8d576c248509dced0fc289d87ce25f5cc0c51a5134ddd7af5d9677093bea3af6af8f528f5d001424777e48fe3f60daa4450d92ee4c4f1bd78be0f91eabda')
+
+prepare() {
+  cp -a ${_pkgname}_python-$pkgver{,-py2}
+}
+
+build() {
+  cd ${_pkgname}_python-$pkgver
+  python setup.py build
+
+  cd ../${_pkgname}_python-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd ${_pkgname}_python-$pkgver
+  nosetests3 tests/unit
+
+  cd ../${_pkgname}_python-$pkgver-py2
+  nosetests2 tests/unit
+}
+
+package_python-braintree() {
+  depends=('python-requests')
+
+  cd ${_pkgname}_python-$pkgver
+  python setup.py install -O1 --root "${pkgdir}"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-braintree() {
+  depends=('python2-requests')
+
+  cd ${_pkgname}_python-$pkgver-py2
+  python2 setup.py install -O1 --root "${pkgdir}"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2015-12-02 Thread Kyle Keen
Date: Thursday, December 3, 2015 @ 06:02:17
  Author: kkeen
Revision: 148131

archrelease: copy trunk to community-any

Added:
  python-path/repos/community-any/PKGBUILD
(from rev 148130, python-path/trunk/PKGBUILD)
Deleted:
  python-path/repos/community-any/PKGBUILD

--+
 PKGBUILD |   75 ++---
 1 file changed, 38 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-03 05:01:42 UTC (rev 148130)
+++ PKGBUILD2015-12-03 05:02:17 UTC (rev 148131)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=python-path
-pkgname=(python-path python2-path)
-pkgver=8.1.2
-pkgrel=1
-pkgdesc="Aka path.py, implements path objects as first-class entities"
-arch=('any')
-url="http://ipython.org;
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/source/p/path.py/path.py-$pkgver.tar.gz;)
-md5sums=('31d07ac861284f8148a9041064852371')
-
-
-prepare() {
-  cd "$srcdir"
-  cp -r path.py-$pkgver python2-path.py-$pkgver
-}
-
-package_python-path() {
-  cd "$srcdir/path.py-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -d "$pkgdir/usr/share/licenses/$pkgname/"
-  head -n 21 path.py > "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}
-
-package_python2-path() {
-  depends=('python2')
-  cd "$srcdir/python2-path.py-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -d "$pkgdir/usr/share/licenses/$pkgname/"
-  head -n 21 path.py > "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}
-

Copied: python-path/repos/community-any/PKGBUILD (from rev 148130, 
python-path/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-03 05:02:17 UTC (rev 148131)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgbase=python-path
+pkgname=(python-path python2-path)
+pkgver=8.1.2
+pkgrel=2
+pkgdesc="Aka path.py, implements path objects as first-class entities"
+arch=('any')
+url="http://ipython.org;
+license=('MIT')
+depends=('python' 'python-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/p/path.py/path.py-$pkgver.tar.gz;)
+md5sums=('31d07ac861284f8148a9041064852371')
+
+
+prepare() {
+  cd "$srcdir"
+  cp -r path.py-$pkgver python2-path.py-$pkgver
+}
+
+package_python-path() {
+  depends=('python' 'python-setuptools')
+  cd "$srcdir/path.py-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -d "$pkgdir/usr/share/licenses/$pkgname/"
+  head -n 21 path.py > "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+package_python2-path() {
+  depends=('python2' 'python2-setuptools')
+  cd "$srcdir/python2-path.py-$pkgver"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -d "$pkgdir/usr/share/licenses/$pkgname/"
+  head -n 21 path.py > "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+


[arch-commits] Commit in haskell-pandoc-crossref/trunk (PKGBUILD)

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:30:14
  Author: fyan
Revision: 148136

upgpkg: haskell-pandoc-crossref 0.1.5.6-6

rebuild with JuicyPixels-3.2.6.4

Modified:
  haskell-pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:21:55 UTC (rev 148135)
+++ PKGBUILD2015-12-03 05:30:14 UTC (rev 148136)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-crossref
 pkgname=haskell-pandoc-crossref
 pkgver=0.1.5.6
-pkgrel=5
+pkgrel=6
 pkgdesc="Pandoc filter for cross-references"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("GPL2")


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:44:19
  Author: fyan
Revision: 148151

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

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

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-12-03 05:43:49 UTC (rev 148150)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:44:19 UTC (rev 148151)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=startdde
-pkgver=2.92.1
-#_golibver=0.4.2
-_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
-#_deepinapiver=2.92.1
-_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
-#_dbusfactoryver=2.92.1
-_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
-pkgrel=3
-pkgdesc="starter of deepin desktop environment"
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/startdde;
-license=('GPL3')
-depends=('gcc-go' 'deepin-wm' 'deepin-daemon')
-makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 'python2' 
'webkitgtk' 'git')
-groups=('deepin')
-source=("git+https://github.com/linuxdeepin/startdde.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/dde-api.git#tag=$_deepinapiver;
-"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
-
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
-
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i '/GOLDFLAGS +=/ s/)$/ libcanberra)/' startdde/Makefile
-
-  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
-}
-
-build() {
-  cd "$srcdir/dbus-factory"
-  make install-golang
-
-  cd "$srcdir/startdde"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd startdde
-  make DESTDIR="${pkgdir}" install
-}

Copied: startdde/repos/community-staging-i686/PKGBUILD (from rev 148150, 
startdde/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:44:19 UTC (rev 148151)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=2.92.1.20151201
+_commit=8d1829f2802d18f7e93e0fdab4965391b4a4fe07
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=3
+pkgdesc="starter of deepin desktop environment"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('gcc-go' 'deepin-wm' 'deepin-daemon')
+makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 'python2' 
'webkitgtk' 'git')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/startdde.git#commit=$_commit;
+#"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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i '/GOLDFLAGS +=/ s/)$/ libcanberra)/' startdde/Makefile
+
+  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 

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:43:49
  Author: fyan
Revision: 148150

upgpkg: startdde 2.92.1.20151201-3

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:42:46 UTC (rev 148149)
+++ PKGBUILD2015-12-03 05:43:49 UTC (rev 148150)
@@ -4,7 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=startdde
-pkgver=2.92.1
+pkgver=2.92.1.20151201
+_commit=8d1829f2802d18f7e93e0fdab4965391b4a4fe07
 #_golibver=0.4.2
 _golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
 #_deepinapiver=2.92.1
@@ -19,7 +20,7 @@
 depends=('gcc-go' 'deepin-wm' 'deepin-daemon')
 makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 'python2' 
'webkitgtk' 'git')
 groups=('deepin')
-source=("git+https://github.com/linuxdeepin/startdde.git#tag=$pkgver;
+source=("git+https://github.com/linuxdeepin/startdde.git#commit=$_commit;
 #"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/dde-api.git#tag=$_deepinapiver;


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 05:03:31
  Author: fyan
Revision: 148128

upgpkg: pandoc 1.15.2.1-6

rebuild with JuicyPixels-3.2.6.4

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 03:15:55 UTC (rev 148127)
+++ PKGBUILD2015-12-03 04:03:31 UTC (rev 148128)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=1.15.2.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 05:03:57
  Author: fyan
Revision: 148129

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

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

-+
 community-staging-i686/PKGBUILD |   58 ++
 community-staging-i686/pandoc.install   |   18 +
 community-staging-x86_64/PKGBUILD   |   58 ++
 community-staging-x86_64/pandoc.install |   18 +
 4 files changed, 152 insertions(+)

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 148128, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 04:03:57 UTC (rev 148129)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=1.15.2.1
+pkgrel=6
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-deepseq-generics" 
"haskell-mtl"
+ "haskell-extensible-exceptions" "haskell-filemanip" 
"haskell-haddock-library"
+ "haskell-highlighting-kate" "haskell-hslua" "haskell-http-client" 
"haskell-syb"
+ "haskell-http-client-tls" "haskell-http-types"  "haskell-text" 
"haskell-texmath"
+ "haskell-network" "haskell-old-time" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-random" "haskell-scientific" "haskell-tagsoup" 
"haskell-temporary"
+ "haskell-network-uri" "haskell-unordered-containers" 
"haskell-zip-archive"
+ "haskell-vector" "haskell-xml" "haskell-yaml" "haskell-zlib")
+optdepends=('haskell-pandoc-citeproc: for citation rendering with 
pandoc-citeproc filter')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('60bcb0e65ecb63953dd26d5aacf1a5df83700d116062ffaeffe9edbc9be6df59')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files
+runhaskell Setup build
+
+# LC_CTYPE=en_US.UTF-8 is needed since 1.15.1
+# https://github.com/jgm/pandoc/issues/2457#issuecomment-149146107
+LC_CTYPE=en_US.UTF-8 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}/${pkgname}-${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/man/man1"
+install -d -m755 "${pkgdir}/usr/share/man/man5"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}

Copied: pandoc/repos/community-staging-i686/pandoc.install (from rev 148128, 
pandoc/trunk/pandoc.install)
===
--- community-staging-i686/pandoc.install   (rev 0)
+++ community-staging-i686/pandoc.install   2015-12-03 04:03:57 UTC (rev 
148129)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/pandoc
+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 

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

2015-12-02 Thread Kyle Keen
Date: Thursday, December 3, 2015 @ 06:01:42
  Author: kkeen
Revision: 148130

upgpkg: python-path 8.1.2-2  FS#47243

Modified:
  python-path/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 04:03:57 UTC (rev 148129)
+++ PKGBUILD2015-12-03 05:01:42 UTC (rev 148130)
@@ -4,12 +4,12 @@
 pkgbase=python-path
 pkgname=(python-path python2-path)
 pkgver=8.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Aka path.py, implements path objects as first-class entities"
 arch=('any')
 url="http://ipython.org;
 license=('MIT')
-depends=('python')
+depends=('python' 'python-setuptools')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.python.org/packages/source/p/path.py/path.py-$pkgver.tar.gz;)
 md5sums=('31d07ac861284f8148a9041064852371')
@@ -21,6 +21,7 @@
 }
 
 package_python-path() {
+  depends=('python' 'python-setuptools')
   cd "$srcdir/path.py-$pkgver"
   python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
   install -d "$pkgdir/usr/share/licenses/$pkgname/"
@@ -28,7 +29,7 @@
 }
 
 package_python2-path() {
-  depends=('python2')
+  depends=('python2' 'python2-setuptools')
   cd "$srcdir/python2-path.py-$pkgver"
   python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
   install -d "$pkgdir/usr/share/licenses/$pkgname/"


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:30:41
  Author: fyan
Revision: 148137

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

Added:
  haskell-pandoc-crossref/repos/community-staging-i686/
  haskell-pandoc-crossref/repos/community-staging-i686/PKGBUILD
(from rev 148136, haskell-pandoc-crossref/trunk/PKGBUILD)
  
haskell-pandoc-crossref/repos/community-staging-i686/haskell-pandoc-crossref.install
(from rev 148136, 
haskell-pandoc-crossref/trunk/haskell-pandoc-crossref.install)
  haskell-pandoc-crossref/repos/community-staging-x86_64/
  haskell-pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 148136, haskell-pandoc-crossref/trunk/PKGBUILD)
  
haskell-pandoc-crossref/repos/community-staging-x86_64/haskell-pandoc-crossref.install
(from rev 148136, 
haskell-pandoc-crossref/trunk/haskell-pandoc-crossref.install)

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

Copied: haskell-pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 
148136, haskell-pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:30:41 UTC (rev 148137)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-crossref
+pkgname=haskell-pandoc-crossref
+pkgver=0.1.5.6
+pkgrel=6
+pkgdesc="Pandoc filter for cross-references"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-data-default" "haskell-mtl" "pandoc" 
"haskell-pandoc-types"
+ "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('0164dcfa4d23c9e5b41172ab4e14e3f6a2aad4067c9cc3e151828baeb5d5164d')
+
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: 
haskell-pandoc-crossref/repos/community-staging-i686/haskell-pandoc-crossref.install
 (from rev 148136, 
haskell-pandoc-crossref/trunk/haskell-pandoc-crossref.install)
===
--- community-staging-i686/haskell-pandoc-crossref.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-crossref.install  2015-12-03 
05:30:41 UTC (rev 148137)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-crossref
+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-pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from 
rev 148136, haskell-pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:30:41 UTC (rev 148137)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-crossref
+pkgname=haskell-pandoc-crossref
+pkgver=0.1.5.6
+pkgrel=6
+pkgdesc="Pandoc filter for cross-references"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("GPL2")
+arch=('i686' 

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:38:30
  Author: fyan
Revision: 148146

upgpkg: startdde 2.92.1-3

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:34:26 UTC (rev 148145)
+++ PKGBUILD2015-12-03 05:38:30 UTC (rev 148146)
@@ -5,9 +5,12 @@
 
 pkgname=startdde
 pkgver=2.92.1
-_golibver=0.4.2
-_deepinapiver=2.92.1
-_dbusfactoryver=2.92.1
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
 pkgrel=3
 pkgdesc="starter of deepin desktop environment"
 arch=('i686' 'x86_64')
@@ -17,9 +20,12 @@
 makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 'python2' 
'webkitgtk' 'git')
 groups=('deepin')
 source=("git+https://github.com/linuxdeepin/startdde.git#tag=$pkgver;
-"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
-
"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/go-lib.git#tag=$_golibver;
+"git+https://github.com/linuxdeepin/go-lib.git#commit=$_golibrev;
+#"git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:38:56
  Author: fyan
Revision: 148147

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

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

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

Copied: startdde/repos/community-staging-i686/PKGBUILD (from rev 148146, 
startdde/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 05:38:56 UTC (rev 148147)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=2.92.1
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=3
+pkgdesc="starter of deepin desktop environment"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('gcc-go' 'deepin-wm' 'deepin-daemon')
+makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 'python2' 
'webkitgtk' 'git')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/startdde.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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i '/GOLDFLAGS +=/ s/)$/ libcanberra)/' startdde/Makefile
+
+  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
+}
+
+build() {
+  cd "$srcdir/dbus-factory"
+  make install-golang
+
+  cd "$srcdir/startdde"
+  make USE_GCCGO=1
+}
+
+package() {
+  cd startdde
+  make DESTDIR="${pkgdir}" install
+}

Copied: startdde/repos/community-staging-x86_64/PKGBUILD (from rev 148146, 
startdde/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 05:38:56 UTC (rev 148147)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=2.92.1
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=3
+pkgdesc="starter of deepin desktop environment"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('gcc-go' 'deepin-wm' 'deepin-daemon')
+makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 'python2' 
'webkitgtk' 'git')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/startdde.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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i '/GOLDFLAGS +=/ s/)$/ libcanberra)/' startdde/Makefile
+
+  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
+}
+
+build() {
+  cd 

[arch-commits] Commit in deepin-artwork-themes/repos (2 files)

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:54:53
  Author: fyan
Revision: 148155

archrelease: copy trunk to community-staging-any

Added:
  deepin-artwork-themes/repos/community-staging-any/
  deepin-artwork-themes/repos/community-staging-any/PKGBUILD
(from rev 148154, deepin-artwork-themes/trunk/PKGBUILD)

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

Copied: deepin-artwork-themes/repos/community-staging-any/PKGBUILD (from rev 
148154, deepin-artwork-themes/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-12-03 05:54:53 UTC (rev 148155)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-artwork-themes
+pkgver=15.10.1.20151202
+_commit=e52d6203113b138b42c02b58674deaabb0310a08
+_desktopbaserev=6cd46627bb62ce820991aa53439be8142b523ad8
+pkgrel=1
+pkgdesc='Deepin artwork themes'
+arch=('any')
+license=('LGPL3')
+url="https://gitcafe.com/Deepin/deepin-artwork-themes;
+depends=('deepin-icon-theme')
+makedepends=('python2' 'git')
+groups=('deepin')
+source=("git+https://github.com/linuxdeepin/deepin-artwork-themes.git#commit=$_commit;
+
"git+https://github.com/linuxdeepin/deepin-desktop-base.git#commit=$_desktopbaserev;)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  # fix default background url
+  sed -i 
's#^BackgroundFile=.*$#BackgroundFile=file:///usr/share/backgrounds/deepin_default_background.jpg#'
 themes/Deepin/theme.ini
+}
+
+build() {
+  cd $pkgname
+  make build
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  install -d "${pkgdir}"/usr/share/backgrounds/
+  cp "${srcdir}"/deepin-desktop-base/backgrounds/desktop.jpg 
"${pkgdir}"/usr/share/backgrounds/deepin_default_background.jpg
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 06:54:29
  Author: fyan
Revision: 148154

upgpkg: deepin-artwork-themes 15.10.1.20151202-1

Modified:
  deepin-artwork-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 05:49:44 UTC (rev 148153)
+++ PKGBUILD2015-12-03 05:54:29 UTC (rev 148154)
@@ -4,10 +4,10 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-artwork-themes
-pkgver=15.10.1.20151118
-_commit=4c1cf892c1567667184711bf432dc303fb895591
+pkgver=15.10.1.20151202
+_commit=e52d6203113b138b42c02b58674deaabb0310a08
 _desktopbaserev=6cd46627bb62ce820991aa53439be8142b523ad8
-pkgrel=2
+pkgrel=1
 pkgdesc='Deepin artwork themes'
 arch=('any')
 license=('LGPL3')


[arch-commits] Commit in deepin-file-manager/repos (6 files)

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:06:07
  Author: fyan
Revision: 148165

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

Added:
  deepin-file-manager/repos/community-staging-i686/
  deepin-file-manager/repos/community-staging-i686/PKGBUILD
(from rev 148164, deepin-file-manager/trunk/PKGBUILD)
  deepin-file-manager/repos/community-staging-i686/deepin-file-manager.install
(from rev 148164, deepin-file-manager/trunk/deepin-file-manager.install)
  deepin-file-manager/repos/community-staging-x86_64/
  deepin-file-manager/repos/community-staging-x86_64/PKGBUILD
(from rev 148164, deepin-file-manager/trunk/PKGBUILD)
  deepin-file-manager/repos/community-staging-x86_64/deepin-file-manager.install
(from rev 148164, deepin-file-manager/trunk/deepin-file-manager.install)

--+
 community-staging-i686/PKGBUILD  |   56 +
 community-staging-i686/deepin-file-manager.install   |   11 +++
 community-staging-x86_64/PKGBUILD|   56 +
 community-staging-x86_64/deepin-file-manager.install |   11 +++
 4 files changed, 134 insertions(+)

Copied: deepin-file-manager/repos/community-staging-i686/PKGBUILD (from rev 
148164, deepin-file-manager/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 06:06:07 UTC (rev 148165)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=0.1.1.20151201
+_commit=46ff346af5e8a968ee74834c5e7c8cc24a24f922
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=1
+pkgdesc='deepin file manager backend'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-file-manager;
+license=('GPL3')
+depends=('deepin-metacity' 'libcanberra' 'poppler-glib' 'gcc-go')
+makedepends=('git' 'deepin-dbus-generator')
+replaces=('deepin-file-manager-backend')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/deepin-file-manager.git#commit=$_commit;
+#"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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+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/howeyc/fsnotify github.com/mattn/go-sqlite3
+}
+
+build() {
+  cd "$srcdir/dbus-factory"
+  make install-golang
+
+  cd "$srcdir/$pkgname"
+  make USE_GCCGO=1
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" do-install
+}

Copied: 
deepin-file-manager/repos/community-staging-i686/deepin-file-manager.install 
(from rev 148164, deepin-file-manager/trunk/deepin-file-manager.install)
===
--- community-staging-i686/deepin-file-manager.install  
(rev 0)
+++ community-staging-i686/deepin-file-manager.install  2015-12-03 06:06:07 UTC 
(rev 148165)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: deepin-file-manager/repos/community-staging-x86_64/PKGBUILD (from rev 
148164, deepin-file-manager/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 06:06:07 UTC (rev 148165)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=0.1.1.20151201
+_commit=46ff346af5e8a968ee74834c5e7c8cc24a24f922
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=1
+pkgdesc='deepin file manager backend'
+arch=('i686' 'x86_64')

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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:06:14
  Author: fyan
Revision: 148166

upgpkg: deepin-wm 0.91.3.20151127-1

Modified:
  deepin-wm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 06:06:07 UTC (rev 148165)
+++ PKGBUILD2015-12-03 06:06:14 UTC (rev 148166)
@@ -4,7 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-wm
-pkgver=0.91.3
+pkgver=0.91.3.20151127
+_commit=812f9e4df0884b90a1341b64226461f72fa73f89
 pkgrel=1
 pkgdesc='Deepin Window Manager'
 arch=('i686' 'x86_64')
@@ -14,7 +15,7 @@
  'deepin-mutter' 'gnome-desktop' 'libgee')
 makedepends=('gnome-common' 'intltool' 'vala' 'git')
 install='deepin-wm.install'
-source=("git+https://github.com/linuxdeepin/deepin-wm.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/deepin-wm.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 prepare() {


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:06:43
  Author: fyan
Revision: 148168

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

Added:
  deepin-wm/repos/community-staging-i686/
  deepin-wm/repos/community-staging-i686/PKGBUILD
(from rev 148166, deepin-wm/trunk/PKGBUILD)
  deepin-wm/repos/community-staging-i686/deepin-wm.install
(from rev 148166, deepin-wm/trunk/deepin-wm.install)
  deepin-wm/repos/community-staging-x86_64/
  deepin-wm/repos/community-staging-x86_64/PKGBUILD
(from rev 148166, deepin-wm/trunk/PKGBUILD)
  deepin-wm/repos/community-staging-x86_64/deepin-wm.install
(from rev 148166, deepin-wm/trunk/deepin-wm.install)

+
 community-staging-i686/PKGBUILD|   36 +++
 community-staging-i686/deepin-wm.install   |   12 +
 community-staging-x86_64/PKGBUILD  |   36 +++
 community-staging-x86_64/deepin-wm.install |   12 +
 4 files changed, 96 insertions(+)

Copied: deepin-wm/repos/community-staging-i686/PKGBUILD (from rev 148166, 
deepin-wm/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-03 06:06:43 UTC (rev 148168)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-wm
+pkgver=0.91.3.20151127
+_commit=812f9e4df0884b90a1341b64226461f72fa73f89
+pkgrel=1
+pkgdesc='Deepin Window Manager'
+arch=('i686' 'x86_64')
+url="https://cr.deepin.io/deepin-wm;
+license=('GPL3')
+depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
+ 'deepin-mutter' 'gnome-desktop' 'libgee')
+makedepends=('gnome-common' 'intltool' 'vala' 'git')
+install='deepin-wm.install'
+source=("git+https://github.com/linuxdeepin/deepin-wm.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
+}
+
+build() {
+  cd "${pkgname}"
+  ./autogen.sh \
+--prefix='/usr' \
+--disable-schemas-compile
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: deepin-wm/repos/community-staging-i686/deepin-wm.install (from rev 
148166, deepin-wm/trunk/deepin-wm.install)
===
--- community-staging-i686/deepin-wm.install(rev 0)
+++ community-staging-i686/deepin-wm.install2015-12-03 06:06:43 UTC (rev 
148168)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: deepin-wm/repos/community-staging-x86_64/PKGBUILD (from rev 148166, 
deepin-wm/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-03 06:06:43 UTC (rev 148168)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-wm
+pkgver=0.91.3.20151127
+_commit=812f9e4df0884b90a1341b64226461f72fa73f89
+pkgrel=1
+pkgdesc='Deepin Window Manager'
+arch=('i686' 'x86_64')
+url="https://cr.deepin.io/deepin-wm;
+license=('GPL3')
+depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
+ 'deepin-mutter' 'gnome-desktop' 'libgee')
+makedepends=('gnome-common' 'intltool' 'vala' 'git')
+install='deepin-wm.install'
+source=("git+https://github.com/linuxdeepin/deepin-wm.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
+}
+
+build() {
+  cd "${pkgname}"
+  ./autogen.sh \
+--prefix='/usr' \
+--disable-schemas-compile
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: deepin-wm/repos/community-staging-x86_64/deepin-wm.install (from rev 
148166, deepin-wm/trunk/deepin-wm.install)
===
--- community-staging-x86_64/deepin-wm.install  (rev 0)
+++ community-staging-x86_64/deepin-wm.install  2015-12-03 06:06:43 UTC (rev 
148168)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:05:39
  Author: fyan
Revision: 148164

upgpkg: deepin-file-manager 0.1.1.20151201-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 06:03:59 UTC (rev 148163)
+++ PKGBUILD2015-12-03 06:05:39 UTC (rev 148164)
@@ -4,11 +4,15 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=0.1.1
-_golibver=0.4.2
-_deepinapiver=2.92.1
-_dbusfactoryver=2.92.1
-pkgrel=2
+pkgver=0.1.1.20151201
+_commit=46ff346af5e8a968ee74834c5e7c8cc24a24f922
+#_golibver=0.4.2
+_golibrev=902e89b94c9d657f523bcdabad399dc789dcf86e
+#_deepinapiver=2.92.1
+_deepinapirev=c555d82e94275a6ce808ddc4c4e71460c6822f04
+#_dbusfactoryver=2.92.1
+_deepinfactoryrev=7257936bb7ed172fcec2c22e5253ab50eb84b85b
+pkgrel=1
 pkgdesc='deepin file manager backend'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/deepin-file-manager;
@@ -17,10 +21,13 @@
 makedepends=('git' 'deepin-dbus-generator')
 replaces=('deepin-file-manager-backend')
 install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/deepin-file-manager.git#tag=$pkgver;
-"git+https://github.com/linuxdeepin/go-lib.git#tag=$_golibver;
-
"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://github.com/linuxdeepin/dde-api.git#tag=$_deepinapiver;)
+source=("git+https://github.com/linuxdeepin/deepin-file-manager.git#commit=$_commit;
+#"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/dde-api.git#tag=$_deepinapiver;
+"git+https://github.com/linuxdeepin/dde-api.git#commit=$_deepinapirev;
+
#"git+https://github.com/linuxdeepin/dbus-factory.git#tag=$_dbusfactoryver;
+
"git+https://github.com/linuxdeepin/dbus-factory.git#commit=$_deepinfactoryrev;)
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
@@ -27,8 +34,6 @@
 'SKIP')
 
 prepare() {
-  sed -i 's/libmetacity-private/libdeepin-metacity-private/' $pkgname/Makefile
-
   export GOPATH="$srcdir/build"
   mkdir -p build/src/pkg.deepin.io/{lib,dde/api}
   cp -a go-lib/* build/src/pkg.deepin.io/lib


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:06:34
  Author: fyan
Revision: 148167

upgpkg: deepin-desktop-schemas 2.91.1.20151201-1

Modified:
  deepin-desktop-schemas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-03 06:06:14 UTC (rev 148166)
+++ PKGBUILD2015-12-03 06:06:34 UTC (rev 148167)
@@ -4,8 +4,9 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-desktop-schemas
-pkgver=2.91.1
-pkgrel=6
+pkgver=2.91.1.20151201
+_commit=ef7bafdb256b170bfb8b5af73d8d499e8aa68723
+pkgrel=1
 pkgdesc='GSettings deepin desktop-wide schemas'
 arch=('any')
 url="https://github.com/linuxdeepin/deepin-desktop-schemas;
@@ -16,7 +17,7 @@
 replaces=('deepin-default-gsettings')
 groups=('deepin')
 install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/deepin-desktop-schemas.git#tag=$pkgver;)
+source=("git+https://github.com/linuxdeepin/deepin-desktop-schemas.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 prepare() {


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

2015-12-02 Thread Felix Yan
Date: Thursday, December 3, 2015 @ 07:06:53
  Author: fyan
Revision: 148169

archrelease: copy trunk to community-staging-any

Added:
  deepin-desktop-schemas/repos/community-staging-any/
  deepin-desktop-schemas/repos/community-staging-any/PKGBUILD
(from rev 148167, deepin-desktop-schemas/trunk/PKGBUILD)
  
deepin-desktop-schemas/repos/community-staging-any/deepin-desktop-schemas.install
(from rev 148168, 
deepin-desktop-schemas/trunk/deepin-desktop-schemas.install)

+
 PKGBUILD   |   39 +++
 deepin-desktop-schemas.install |   11 +++
 2 files changed, 50 insertions(+)

Copied: deepin-desktop-schemas/repos/community-staging-any/PKGBUILD (from rev 
148167, deepin-desktop-schemas/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-12-03 06:06:53 UTC (rev 148169)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop-schemas
+pkgver=2.91.1.20151201
+_commit=ef7bafdb256b170bfb8b5af73d8d499e8aa68723
+pkgrel=1
+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#commit=$_commit;)
+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-staging-any/deepin-desktop-schemas.install
 (from rev 148168, deepin-desktop-schemas/trunk/deepin-desktop-schemas.install)
===
--- community-staging-any/deepin-desktop-schemas.install
(rev 0)
+++ community-staging-any/deepin-desktop-schemas.install2015-12-03 
06:06:53 UTC (rev 148169)
@@ -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 avrdude/repos (4 files)

2015-12-02 Thread Anatol Pomozov
Date: Thursday, December 3, 2015 @ 00:28:22
  Author: anatolik
Revision: 148121

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

Added:
  avrdude/repos/community-testing-i686/
  avrdude/repos/community-testing-i686/PKGBUILD
(from rev 148120, avrdude/trunk/PKGBUILD)
  avrdude/repos/community-testing-x86_64/
  avrdude/repos/community-testing-x86_64/PKGBUILD
(from rev 148120, avrdude/trunk/PKGBUILD)

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

Copied: avrdude/repos/community-testing-i686/PKGBUILD (from rev 148120, 
avrdude/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-12-02 23:28:22 UTC (rev 148121)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Corrado Primier 
+# Maintainer: Brad Fanella 
+
+pkgname=avrdude
+pkgver=6.2
+pkgrel=1
+pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR 
microcontrollers"
+arch=('i686' 'x86_64')
+url="http://www.nongnu.org/avrdude/;
+license=('GPL')
+depends=('readline' 'libftdi' 'libusb-compat' 'elfutils')
+source=(http://download.savannah.gnu.org/releases/avrdude/${pkgname}-${pkgver}.tar.gz{,.sig})
+validpgpkeys=('EF497ABE47ED91B3FC3D7EA54D902FF7723BDEE9' 
'5E84F980C3CAFD4BB5841070F48CA81B69A85873')
+md5sums=('11eba11661713a43d371e4ff382d98c3'
+ 'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure --mandir=/usr/share/man \
+   --prefix=/usr \
+   --sysconfdir=/etc
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+}

Copied: avrdude/repos/community-testing-x86_64/PKGBUILD (from rev 148120, 
avrdude/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-12-02 23:28:22 UTC (rev 148121)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Corrado Primier 
+# Maintainer: Brad Fanella 
+
+pkgname=avrdude
+pkgver=6.2
+pkgrel=1
+pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR 
microcontrollers"
+arch=('i686' 'x86_64')
+url="http://www.nongnu.org/avrdude/;
+license=('GPL')
+depends=('readline' 'libftdi' 'libusb-compat' 'elfutils')
+source=(http://download.savannah.gnu.org/releases/avrdude/${pkgname}-${pkgver}.tar.gz{,.sig})
+validpgpkeys=('EF497ABE47ED91B3FC3D7EA54D902FF7723BDEE9' 
'5E84F980C3CAFD4BB5841070F48CA81B69A85873')
+md5sums=('11eba11661713a43d371e4ff382d98c3'
+ 'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure --mandir=/usr/share/man \
+   --prefix=/usr \
+   --sysconfdir=/etc
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+}


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

2015-12-02 Thread Anatol Pomozov
Date: Thursday, December 3, 2015 @ 00:50:49
  Author: anatolik
Revision: 148123

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

Added:
  uboot-tools/repos/community-testing-i686/
  uboot-tools/repos/community-testing-i686/PKGBUILD
(from rev 148122, uboot-tools/trunk/PKGBUILD)
  uboot-tools/repos/community-testing-x86_64/
  uboot-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 148122, uboot-tools/trunk/PKGBUILD)

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

Copied: uboot-tools/repos/community-testing-i686/PKGBUILD (from rev 148122, 
uboot-tools/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-12-02 23:50:49 UTC (rev 148123)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Michael Lass 
+# Contributor: Philipp Schrader 
+
+pkgname=uboot-tools
+pkgver=2015.10
+pkgrel=1
+pkgdesc='U-Boot bootloader utility tools'
+arch=(i686 x86_64)
+url='http://www.denx.de/wiki/U-Boot/WebHome'
+license=(GPL)
+depends=(glibc openssl)
+source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2)
+sha1sums=('5a415ebae12abeee0e4dbaed27e207bacb9a9ab7')
+
+build() {
+  cd u-boot-$pkgver
+  make defconfig
+  make tools-all
+}
+
+package() {
+  install -m 755 -d "$pkgdir"/usr/bin
+  install -m 755 -t "$pkgdir"/usr/bin/ 
u-boot-$pkgver/tools/{mk{,env}image,env/fw_printenv,img2srec,dumpimage,netconsole,jtagconsole,ncb}
+  ln -s fw_printenv "$pkgdir"/usr/bin/fw_setenv
+  install -m 644 -D u-boot-$pkgver/doc/mkimage.1 
"$pkgdir"/usr/share/man/man1/mkimage.1
+}

Copied: uboot-tools/repos/community-testing-x86_64/PKGBUILD (from rev 148122, 
uboot-tools/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-12-02 23:50:49 UTC (rev 148123)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Michael Lass 
+# Contributor: Philipp Schrader 
+
+pkgname=uboot-tools
+pkgver=2015.10
+pkgrel=1
+pkgdesc='U-Boot bootloader utility tools'
+arch=(i686 x86_64)
+url='http://www.denx.de/wiki/U-Boot/WebHome'
+license=(GPL)
+depends=(glibc openssl)
+source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2)
+sha1sums=('5a415ebae12abeee0e4dbaed27e207bacb9a9ab7')
+
+build() {
+  cd u-boot-$pkgver
+  make defconfig
+  make tools-all
+}
+
+package() {
+  install -m 755 -d "$pkgdir"/usr/bin
+  install -m 755 -t "$pkgdir"/usr/bin/ 
u-boot-$pkgver/tools/{mk{,env}image,env/fw_printenv,img2srec,dumpimage,netconsole,jtagconsole,ncb}
+  ln -s fw_printenv "$pkgdir"/usr/bin/fw_setenv
+  install -m 644 -D u-boot-$pkgver/doc/mkimage.1 
"$pkgdir"/usr/share/man/man1/mkimage.1
+}


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

2015-12-02 Thread Anatol Pomozov
Date: Thursday, December 3, 2015 @ 00:27:28
  Author: anatolik
Revision: 148120

upgpkg: avrdude 6.2-1

Modified:
  avrdude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:27:08 UTC (rev 148119)
+++ PKGBUILD2015-12-02 23:27:28 UTC (rev 148120)
@@ -3,7 +3,7 @@
 # Maintainer: Brad Fanella 
 
 pkgname=avrdude
-pkgver=6.1
+pkgver=6.2
 pkgrel=1
 pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR 
microcontrollers"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('readline' 'libftdi' 'libusb-compat' 'elfutils')
 
source=(http://download.savannah.gnu.org/releases/avrdude/${pkgname}-${pkgver}.tar.gz{,.sig})
 validpgpkeys=('EF497ABE47ED91B3FC3D7EA54D902FF7723BDEE9' 
'5E84F980C3CAFD4BB5841070F48CA81B69A85873')
-md5sums=('9db8c25b935d34234b9b1ba16ad55fd5'
+md5sums=('11eba11661713a43d371e4ff382d98c3'
  'SKIP')
 
 build() {


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

2015-12-02 Thread Anatol Pomozov
Date: Thursday, December 3, 2015 @ 00:50:01
  Author: anatolik
Revision: 148122

upgpkg: uboot-tools 2015.10-1

Modified:
  uboot-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 23:28:22 UTC (rev 148121)
+++ PKGBUILD2015-12-02 23:50:01 UTC (rev 148122)
@@ -4,7 +4,7 @@
 # Contributor: Philipp Schrader 
 
 pkgname=uboot-tools
-pkgver=2015.07
+pkgver=2015.10
 pkgrel=1
 pkgdesc='U-Boot bootloader utility tools'
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=(GPL)
 depends=(glibc openssl)
 source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2)
-sha1sums=('1e4e8df0ab7cfc2ee4ff6bf44c1b2085544d36f0')
+sha1sums=('5a415ebae12abeee0e4dbaed27e207bacb9a9ab7')
 
 build() {
   cd u-boot-$pkgver


[arch-commits] Commit in zsh-syntax-highlighting/repos/community-any (6 files)

2015-12-02 Thread Evgeniy Alekseev
Date: Wednesday, December 2, 2015 @ 22:27:08
  Author: arcanis
Revision: 148119

archrelease: copy trunk to community-any

Added:
  zsh-syntax-highlighting/repos/community-any/ChangeLog
(from rev 148118, zsh-syntax-highlighting/trunk/ChangeLog)
  zsh-syntax-highlighting/repos/community-any/PKGBUILD
(from rev 148118, zsh-syntax-highlighting/trunk/PKGBUILD)
  zsh-syntax-highlighting/repos/community-any/zsh-syntax-highlighting.install
(from rev 148118, 
zsh-syntax-highlighting/trunk/zsh-syntax-highlighting.install)
Deleted:
  zsh-syntax-highlighting/repos/community-any/ChangeLog
  zsh-syntax-highlighting/repos/community-any/PKGBUILD
  zsh-syntax-highlighting/repos/community-any/zsh-syntax-highlighting.install

-+
 ChangeLog   |   13 +---
 PKGBUILD|   58 +++---
 zsh-syntax-highlighting.install |   16 +-
 3 files changed, 45 insertions(+), 42 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2015-12-02 21:26:51 UTC (rev 148118)
+++ ChangeLog   2015-12-02 21:27:08 UTC (rev 148119)
@@ -1,5 +0,0 @@
-0.3.0-1:
-upstream update
-
-0.2.1-1:
-upstream update

Copied: zsh-syntax-highlighting/repos/community-any/ChangeLog (from rev 148118, 
zsh-syntax-highlighting/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2015-12-02 21:27:08 UTC (rev 148119)
@@ -0,0 +1,8 @@
+0.4.0-1:
+ustream update
+
+0.3.0-1:
+upstream update
+
+0.2.1-1:
+upstream update

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-02 21:26:51 UTC (rev 148118)
+++ PKGBUILD2015-12-02 21:27:08 UTC (rev 148119)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Julien Nicoulaud 
-
-pkgname=zsh-syntax-highlighting
-pkgver=0.3.0
-pkgrel=1
-pkgdesc="Fish shell like syntax highlighting for Zsh"
-arch=('any')
-url="https://github.com/zsh-users/zsh-syntax-highlighting;
-license=('BSD')
-depends=('zsh>=4.3.9')
-install="${pkgname}.install"
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver};)
-md5sums=('73182f2db724455933edd624d920f4e8')
-changelog=ChangeLog
-
-package() {
-  install -dm755 "${pkgdir}/usr/share/zsh/plugins/"
-  cp -r "zsh-users-${pkgname}-"* "${pkgdir}/usr/share/zsh/plugins/${pkgname}"
-
-  # docs
-  install -dm755 "${pkgdir}/usr/share/doc"
-  ln -s "/usr/share/zsh/plugins/${pkgname}" \
-"${pkgdir}/usr/share/doc/${pkgname}"
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s "/usr/share/zsh/plugins/${pkgname}/COPYING.md" \
-"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: zsh-syntax-highlighting/repos/community-any/PKGBUILD (from rev 148118, 
zsh-syntax-highlighting/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-02 21:27:08 UTC (rev 148119)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Julien Nicoulaud 
+
+pkgname=zsh-syntax-highlighting
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Fish shell like syntax highlighting for Zsh"
+arch=('any')
+url="https://github.com/zsh-users/zsh-syntax-highlighting;
+license=('BSD')
+depends=('zsh>=4.3.9')
+install="${pkgname}.install"
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver};)
+md5sums=('285ebac197414604f9a93597f4c66b78')
+changelog=ChangeLog
+
+package() {
+  install -dm755 "${pkgdir}/usr/share/zsh/plugins/"
+  cp -r "zsh-users-${pkgname}-"* "${pkgdir}/usr/share/zsh/plugins/${pkgname}"
+
+  # docs
+  install -dm755 "${pkgdir}/usr/share/doc"
+  ln -s "/usr/share/zsh/plugins/${pkgname}" \
+"${pkgdir}/usr/share/doc/${pkgname}"
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s "/usr/share/zsh/plugins/${pkgname}/COPYING.md" \
+"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: zsh-syntax-highlighting.install
===
--- zsh-syntax-highlighting.install 2015-12-02 21:26:51 UTC (rev 148118)
+++ zsh-syntax-highlighting.install 2015-12-02 21:27:08 UTC (rev 148119)
@@ -1,8 +0,0 @@
-post_install() {
-  cat << EOF
-To activate zsh-syntax-highlighting, add the following line at the end of 
~/.zshrc:
-source 
/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
-EOF
-}
-
-# vim:set ts=2 sw=2 et:

Copied: 
zsh-syntax-highlighting/repos/community-any/zsh-syntax-highlighting.install 
(from rev 148118, zsh-syntax-highlighting/trunk/zsh-syntax-highlighting.install)
===
--- zsh-syntax-highlighting.install (rev 0)
+++ zsh-syntax-highlighting.install 

[arch-commits] Commit in zsh-syntax-highlighting/trunk (ChangeLog PKGBUILD)

2015-12-02 Thread Evgeniy Alekseev
Date: Wednesday, December 2, 2015 @ 22:26:51
  Author: arcanis
Revision: 148118

upgpkg: zsh-syntax-highlighting 0.4.0-1

Modified:
  zsh-syntax-highlighting/trunk/ChangeLog
  zsh-syntax-highlighting/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2015-12-02 18:00:36 UTC (rev 148117)
+++ ChangeLog   2015-12-02 21:26:51 UTC (rev 148118)
@@ -1,3 +1,6 @@
+0.4.0-1:
+ustream update
+
 0.3.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 18:00:36 UTC (rev 148117)
+++ PKGBUILD2015-12-02 21:26:51 UTC (rev 148118)
@@ -3,7 +3,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=zsh-syntax-highlighting
-pkgver=0.3.0
+pkgver=0.4.0
 pkgrel=1
 pkgdesc="Fish shell like syntax highlighting for Zsh"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('zsh>=4.3.9')
 install="${pkgname}.install"
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver};)
-md5sums=('73182f2db724455933edd624d920f4e8')
+md5sums=('285ebac197414604f9a93597f4c66b78')
 changelog=ChangeLog
 
 package() {


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:27:14
  Author: heftig
Revision: 252134

2.40.12

Modified:
  librsvg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-02 21:26:52 UTC (rev 252133)
+++ PKGBUILD2015-12-02 21:27:14 UTC (rev 252134)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=librsvg
-pkgver=2.40.11
+pkgver=2.40.12
 pkgrel=1
 epoch=1
 pkgdesc="A SVG viewing library"
@@ -14,7 +14,7 @@
 url="https://live.gnome.org/LibRsvg;
 install=librsvg.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('611ac0f544debd0c9bf1ef5509c990d218e83dd1d8c83297075c4b29796a2e02')
+sha256sums=('ffe40c4378bf3899f4d679a475726bab03a127a5bdccddec86404cc329ffb550')
 
 build() {
   cd $pkgname-$pkgver


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

2015-12-02 Thread Jan Steffens
Date: Wednesday, December 2, 2015 @ 22:31:06
  Author: heftig
Revision: 252136

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

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

+
 /PKGBUILD  |   78 +++
 /gnote.install |   42 +++
 extra-i686/PKGBUILD|   39 -
 extra-i686/gnote.install   |   21 ---
 extra-x86_64/PKGBUILD  |   39 -
 extra-x86_64/gnote.install |   21 ---
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-02 21:29:05 UTC (rev 252135)
+++ extra-i686/PKGBUILD 2015-12-02 21:31:06 UTC (rev 252136)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru 
-# Contributor: uastasi 
-
-pkgname=gnote
-pkgver=3.18.0
-pkgrel=1
-pkgdesc='A note taking application'
-arch=('i686' 'x86_64')
-url='http://live.gnome.org/Gnote'
-license=('GPL3')
-depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf'
- 'libsecret')
-makedepends=('intltool' 'itstool' 'boost')
-install=gnote.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4828363ae3ddac57d37a0a2b17882be8fe67afcecf97ae992cd744b95da1c348')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/gnote \
---disable-scrollkeeper \
---disable-schemas-compile \
---disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnote/repos/extra-i686/PKGBUILD (from rev 252135, gnote/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-02 21:31:06 UTC (rev 252136)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Contributor: uastasi 
+
+pkgname=gnote
+pkgver=3.18.1
+pkgrel=1
+pkgdesc='A note taking application'
+arch=('i686' 'x86_64')
+url='http://live.gnome.org/Gnote'
+license=('GPL3')
+depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf'
+ 'libsecret')
+makedepends=('intltool' 'itstool' 'boost')
+install=gnote.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5da4ec9e7852b09af1067311fc6ee18a2c64384f4f5943b71ac37665144be58d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/gnote \
+--disable-scrollkeeper \
+--disable-schemas-compile \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnote.install
===
--- extra-i686/gnote.install2015-12-02 21:29:05 UTC (rev 252135)
+++ extra-i686/gnote.install2015-12-02 21:31:06 UTC (rev 252136)
@@ -1,21 +0,0 @@
-pkgname=gnote
-
-post_install() {
-glib-compile-schemas usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-pre_upgrade() {
-if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
-usr/sbin/gconfpkg --uninstall ${pkgname}
-fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnote/repos/extra-i686/gnote.install (from rev 252135, 
gnote/trunk/gnote.install)
===
--- extra-i686/gnote.install(rev 0)
+++ extra-i686/gnote.install2015-12-02 21:31:06 UTC (rev 252136)
@@ -0,0 +1,21 @@
+pkgname=gnote
+
+post_install() {
+glib-compile-schemas usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+pre_upgrade() {
+if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
+usr/sbin/gconfpkg --uninstall ${pkgname}
+fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD