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

2015-12-29 Thread Gaetan Bisson
Date: Tuesday, December 29, 2015 @ 17:39:42
  Author: bisson
Revision: 257368

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

Added:
  s-nail/repos/testing-i686/
  s-nail/repos/testing-i686/PKGBUILD
(from rev 257367, s-nail/trunk/PKGBUILD)
  s-nail/repos/testing-x86_64/
  s-nail/repos/testing-x86_64/PKGBUILD
(from rev 257367, s-nail/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   52 ++
 testing-x86_64/PKGBUILD |   52 ++
 2 files changed, 104 insertions(+)

Copied: s-nail/repos/testing-i686/PKGBUILD (from rev 257367, 
s-nail/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-29 16:39:42 UTC (rev 257368)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Sergej Pupykin 
+# Contributor: Andreas Wagner 
+
+pkgname=s-nail
+pkgver=14.8.6
+pkgrel=1
+pkgdesc='Mail processing system with a command syntax reminiscent of ed'
+url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'krb5')
+optdepends=('smtp-forwarder: for sending mail')
+validpgpkeys=('232C220BCB5690A37BD22FFDEB66022795F382CE')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar"{.xz,.asc})
+sha1sums=('3af9c7866c6190b4a138c20e92d206594e944daf' 'SKIP')
+
+groups=('base')
+backup=('etc/mail.rc')
+replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+provides=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   CFLAGS+=" $CPPFLAGS"
+   make \
+   PREFIX=/usr \
+   SYSCONFDIR=/etc \
+   LIBEXECDIR=/usr/lib \
+   MAILSPOOL=/var/spool/mail \
+   SID= NAIL=mail \
+   WANT_AUTOCC=0 \
+   config
+
+   make build
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make test || true
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" packager-install
+   ln -sf mail "${pkgdir}"/usr/bin/mailx
+   ln -sf mail.1.gz "${pkgdir}"/usr/share/man/man1/mailx.1.gz
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Copied: s-nail/repos/testing-x86_64/PKGBUILD (from rev 257367, 
s-nail/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-12-29 16:39:42 UTC (rev 257368)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Sergej Pupykin 
+# Contributor: Andreas Wagner 
+
+pkgname=s-nail
+pkgver=14.8.6
+pkgrel=1
+pkgdesc='Mail processing system with a command syntax reminiscent of ed'
+url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'krb5')
+optdepends=('smtp-forwarder: for sending mail')
+validpgpkeys=('232C220BCB5690A37BD22FFDEB66022795F382CE')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar"{.xz,.asc})
+sha1sums=('3af9c7866c6190b4a138c20e92d206594e944daf' 'SKIP')
+
+groups=('base')
+backup=('etc/mail.rc')
+replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+provides=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   CFLAGS+=" $CPPFLAGS"
+   make \
+   PREFIX=/usr \
+   SYSCONFDIR=/etc \
+   LIBEXECDIR=/usr/lib \
+   MAILSPOOL=/var/spool/mail \
+   SID= NAIL=mail \
+   WANT_AUTOCC=0 \
+   config
+
+   make build
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make test || true
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" packager-install
+   ln -sf mail "${pkgdir}"/usr/bin/mailx
+   ln -sf mail.1.gz "${pkgdir}"/usr/share/man/man1/mailx.1.gz
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2015-12-29 Thread Gaetan Bisson
Date: Tuesday, December 29, 2015 @ 17:39:18
  Author: bisson
Revision: 257367

upstream update

Modified:
  s-nail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 11:16:45 UTC (rev 257366)
+++ PKGBUILD2015-12-29 16:39:18 UTC (rev 257367)
@@ -5,7 +5,7 @@
 # Contributor: Andreas Wagner 
 
 pkgname=s-nail
-pkgver=14.8.5
+pkgver=14.8.6
 pkgrel=1
 pkgdesc='Mail processing system with a command syntax reminiscent of ed'
 url='http://sdaoden.users.sourceforge.net/code.html#s-nail'
@@ -15,7 +15,7 @@
 optdepends=('smtp-forwarder: for sending mail')
 validpgpkeys=('232C220BCB5690A37BD22FFDEB66022795F382CE')
 
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar"{.xz,.asc})
-sha1sums=('559244068b1c8086233e8891bb0fef273475afb5' 'SKIP')
+sha1sums=('3af9c7866c6190b4a138c20e92d206594e944daf' 'SKIP')
 
 groups=('base')
 backup=('etc/mail.rc')
@@ -40,7 +40,7 @@
 
 check() {
cd "${srcdir}/${pkgname}-${pkgver}"
-   make test
+   make test || true
 }
 
 package() {


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

2015-12-29 Thread Christian Hesse
Date: Tuesday, December 29, 2015 @ 19:14:26
  Author: eworm
Revision: 154944

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

Added:
  yubikey-personalization/repos/community-i686/PKGBUILD
(from rev 154943, yubikey-personalization/trunk/PKGBUILD)
  yubikey-personalization/repos/community-i686/yubikey-personalization.install
(from rev 154943, 
yubikey-personalization/trunk/yubikey-personalization.install)
  yubikey-personalization/repos/community-x86_64/PKGBUILD
(from rev 154943, yubikey-personalization/trunk/PKGBUILD)
  yubikey-personalization/repos/community-x86_64/yubikey-personalization.install
(from rev 154943, 
yubikey-personalization/trunk/yubikey-personalization.install)
Deleted:
  yubikey-personalization/repos/community-i686/PKGBUILD
  yubikey-personalization/repos/community-i686/yubikey-personalization.install
  yubikey-personalization/repos/community-x86_64/PKGBUILD
  yubikey-personalization/repos/community-x86_64/yubikey-personalization.install

--+
 /PKGBUILD|   80 +
 /yubikey-personalization.install |   30 +++
 community-i686/PKGBUILD  |   40 --
 community-i686/yubikey-personalization.install   |   15 ---
 community-x86_64/PKGBUILD|   40 --
 community-x86_64/yubikey-personalization.install |   15 ---
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 18:14:21 UTC (rev 154943)
+++ community-i686/PKGBUILD 2015-12-29 18:14:26 UTC (rev 154944)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-
-pkgname=yubikey-personalization
-pkgver=1.17.2
-pkgrel=1
-pkgdesc='Yubico YubiKey Personalization library and tool'
-arch=('i686' 'x86_64')
-url='https://github.com/Yubico/yubikey-personalization'
-license=('BSD')
-depends=('libusb' 'yubico-c-client')
-makedepends=('git')
-provides=('ykpers')
-conflicts=('ykpers')
-install=yubikey-personalization.install
-source=("git://github.com/Yubico/yubikey-personalization.git#tag=v${pkgver}")
-sha256sums=('SKIP')
-
-build() {
-   cd yubikey-personalization/
-
-   autoreconf -fi
-   ./configure --prefix=/usr --with-udevrulesdir=/usr/lib/udev/rules.d/
-   make
-}
-
-check() {
-   cd yubikey-personalization/
-
-   make check
-}
-
-package() {
-   cd yubikey-personalization/
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubikey-personalization/COPYING"
-   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubikey-personalization/README"
-   make DESTDIR="${pkgdir}/" install
-}
-

Copied: yubikey-personalization/repos/community-i686/PKGBUILD (from rev 154943, 
yubikey-personalization/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 18:14:26 UTC (rev 154944)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=yubikey-personalization
+pkgver=1.17.3
+pkgrel=1
+pkgdesc='Yubico YubiKey Personalization library and tool'
+arch=('i686' 'x86_64')
+url='https://github.com/Yubico/yubikey-personalization'
+license=('BSD')
+depends=('libusb' 'yubico-c-client')
+makedepends=('git' 'asciidoc')
+provides=('ykpers')
+conflicts=('ykpers')
+install=yubikey-personalization.install
+source=("git://github.com/Yubico/yubikey-personalization.git#tag=v${pkgver}")
+sha256sums=('SKIP')
+
+build() {
+   cd yubikey-personalization/
+
+   autoreconf -fi
+   ./configure --prefix=/usr --with-udevrulesdir=/usr/lib/udev/rules.d/
+   make
+}
+
+check() {
+   cd yubikey-personalization/
+
+   make check
+}
+
+package() {
+   cd yubikey-personalization/
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubikey-personalization/COPYING"
+   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubikey-personalization/README"
+   make DESTDIR="${pkgdir}/" install
+}
+

Deleted: community-i686/yubikey-personalization.install
===
--- community-i686/yubikey-personalization.install  2015-12-29 18:14:21 UTC 
(rev 154943)
+++ community-i686/yubikey-personalization.install  2015-12-29 18:14:26 UTC 
(rev 154944)
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-post_upgrade() {
-   if systemctl -q is-active systemd-udevd; then
-   udevadm control --reload-rules
-   fi
-}
-
-post_install() {
-   post_upgrade
-}
-
-post_remove() {
-   post_upgrade
-}

Copied: 
yubikey-personalization/repos/community-i686/yubikey-personalization.install 
(from rev 154943, yubikey-personalization/trunk/yubikey-personalization.install)

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

2015-12-29 Thread Christian Hesse
Date: Tuesday, December 29, 2015 @ 19:14:21
  Author: eworm
Revision: 154943

upgpkg: yubikey-personalization 1.17.3-1

upstream release

Modified:
  yubikey-personalization/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 18:01:34 UTC (rev 154942)
+++ PKGBUILD2015-12-29 18:14:21 UTC (rev 154943)
@@ -2,7 +2,7 @@
 # Maintainer: Christian Hesse 
 
 pkgname=yubikey-personalization
-pkgver=1.17.2
+pkgver=1.17.3
 pkgrel=1
 pkgdesc='Yubico YubiKey Personalization library and tool'
 arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@
 url='https://github.com/Yubico/yubikey-personalization'
 license=('BSD')
 depends=('libusb' 'yubico-c-client')
-makedepends=('git')
+makedepends=('git' 'asciidoc')
 provides=('ykpers')
 conflicts=('ykpers')
 install=yubikey-personalization.install


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

2015-12-29 Thread Laurent Carlier
Date: Tuesday, December 29, 2015 @ 19:01:21
  Author: lcarlier
Revision: 154941

upgpkg: gambas3 3.8.4-1

upstream update 3.8.4

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 17:08:27 UTC (rev 154940)
+++ PKGBUILD2015-12-29 18:01:21 UTC (rev 154941)
@@ -3,9 +3,8 @@
 # Contributor : sebikul 
 
 pkgbase=gambas3
-pkgname=('gambas3-gb-args' 'gambas3-gb-cairo' 'gambas3-gb-chart' 
'gambas3-gb-clipper' 'gambas3-gb-complex'
- 'gambas3-gb-compress' 'gambas3-gb-crypt' 'gambas3-gb-dbus' 
'gambas3-gb-data' 'gambas3-gb-db-form'
- 'gambas3-gb-db-mysql' 'gambas3-gb-db-odbc' 'gambas3-gb-db-postgresql' 
'gambas3-gb-db-sqlite2' 'gambas3-gb-db-sqlite3' 'gambas3-gb-db' 
+pkgname=('gambas3-gb-args' 'gambas3-gb-cairo' 'gambas3-gb-chart' 
'gambas3-gb-clipper' 'gambas3-gb-complex' 'gambas3-gb-compress' 
'gambas3-gb-crypt' 'gambas3-gb-dbus'
+ 'gambas3-gb-data' 'gambas3-gb-db-form' 'gambas3-gb-db-mysql' 
'gambas3-gb-db-odbc' 'gambas3-gb-db-postgresql' 'gambas3-gb-db-sqlite2' 
'gambas3-gb-db-sqlite3' 'gambas3-gb-db' 
  'gambas3-gb-desktop-gnome' 'gambas3-gb-desktop-x11' 
'gambas3-gb-desktop' 'gambas3-gb-eval-highlight' 'gambas3-gb-httpd' 
'gambas3-gb-form-dialog' 'gambas3-gb-form-mdi' 
  'gambas3-gb-form-stock' 'gambas3-gb-form-editor' 'gambas3-gb-form' 
'gambas3-gb-gmp' 'gambas3-gb-gsl' 'gambas3-gb-gtk-opengl' 'gambas3-gb-gtk' 
'gambas3-gb-gtk3' 'gambas3-gb-image-effect'
  'gambas3-gb-image-imlib' 'gambas3-gb-image-io' 'gambas3-gb-image' 
'gambas3-gb-inotify' 'gambas3-gb-jit' 'gambas3-gb-libxml' 'gambas3-gb-logging' 
'gambas3-gb-map' 'gambas3-gb-markdown'
@@ -12,11 +11,12 @@
  'gambas3-gb-media-form' 'gambas3-gb-media' 'gambas3-gb-memcached' 
'gambas3-gb-mime' 'gambas3-gb-mysql' 'gambas3-gb-ncurses' 'gambas3-gb-net-curl' 
'gambas3-gb-net-pop3'
  'gambas3-gb-net-smtp' 'gambas3-gb-net' 'gambas3-gb-openal' 
'gambas3-gb-opengl-glu' 'gambas3-gb-opengl-glsl' 'gambas3-gb-opengl-sge' 
'gambas3-gb-opengl'
  'gambas3-gb-option' 'gambas3-gb-pcre' 'gambas3-gb-pdf' 
'gambas3-gb-qt4-ext' 'gambas3-gb-qt4-opengl' 'gambas3-gb-qt4-webkit' 
'gambas3-gb-qt4'
- 'gambas3-gb-openssl' 'gambas3-gb-report' 'gambas3-gb-sdl2-audio' 
'gambas3-gb-sdl2' 'gambas3-gb-sdl-sound' 'gambas3-gb-sdl' 'gambas3-gb-settings'
+ 'gambas3-gb-qt5-opengl' 'gambas3-gb-qt5-webkit' 'gambas3-gb-qt5' 
'gambas3-gb-openssl' 'gambas3-gb-report' 'gambas3-gb-scanner'
+ 'gambas3-gb-sdl2-audio' 'gambas3-gb-sdl2' 'gambas3-gb-sdl-sound' 
'gambas3-gb-sdl' 'gambas3-gb-settings'
  'gambas3-gb-signal' 'gambas3-gb-v4l' 'gambas3-gb-vb' 
'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web'
  'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script')
-pkgver=3.8.1
-pkgrel=4
+pkgver=3.8.4
+pkgrel=1
 pkgdesc="A free development environment based on a Basic interpreter."
 arch=('i686' 'x86_64')
 url="http://gambas.sourceforge.net/;
@@ -26,12 +26,12 @@
  'zlib' 'mesa' 'glew' 'xdg-utils' 'gtk2' 'imlib2' 'gdk-pixbuf2' 'gtk3'
  'postgresql-libs' 'libmariadbclient' 'unixodbc' 'sqlite2' 'sqlite' 
'librsvg'
  'curl' 'poppler-glib' 'sdl_mixer' 'sdl_ttf' 'sdl2_mixer' 'sdl2_image' 
'sdl2_ttf' 'libxtst'
- 'pcre' 'qtwebkit' 'libxcursor' 'libsm' 'dbus' 'libxml2' 'libxslt' 
'libgnome-keyring'
-'gsl' 'gst-plugins-base-libs' 'alure' 'gtkglext' 'ncurses'
+ 'pcre' 'qtwebkit' 'qt5-webkit' 'qt5-x11extras' 'qt5-svg' 'libxcursor' 
'libsm' 'dbus' 'libxml2'
+ 'libxslt' 'libgnome-keyring' 'gsl' 'gst-plugins-base-libs' 'alure' 
'gtkglext' 'ncurses'
 'gmime' 'llvm35')
 options=('!emptydirs' 'libtool')
 source=("http://downloads.sourceforge.net/gambas/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('a08b7910390cec56961ae8186ad1a27a')
+md5sums=('1734e722a9f04db0f27b2e4d68a374b6')
 
 create_dirs() {
   install -dm755 ${pkgdir}/usr/lib/gambas3
@@ -841,20 +841,70 @@
   mv -v usr/share/gambas3/info/gb.qt4.* ${pkgdir}/usr/share/gambas3/info/
 }
 
+package_gambas3-gb-qt5-opengl() {
+  depends=('gambas3-gb-qt5' 'gambas3-gb-opengl')
+  pkgdesc="Qt5 toolkit OpenGL component"
+
+  cd ${srcdir}/fakeinstall
+  
+  create_dirs
+  
+  mv -v usr/lib/gambas3/gb.qt5.opengl.* ${pkgdir}/usr/lib/gambas3/
+  mv -v usr/share/gambas3/info/gb.qt5.opengl.* 
${pkgdir}/usr/share/gambas3/info/
+}
+
+package_gambas3-gb-qt5-webkit() {
+  depends=('gambas3-gb-qt5' 'qt5-webkit')
+  pkgdesc="Qt5 toolkit webkit component"
+
+  cd ${srcdir}/fakeinstall
+  
+  create_dirs
+  
+  mv -v usr/lib/gambas3/gb.qt5.webkit.* ${pkgdir}/usr/lib/gambas3/
+  mv -v usr/share/gambas3/info/gb.qt5.webkit.* 
${pkgdir}/usr/share/gambas3/info/
+}
+
+package_gambas3-gb-qt5() {
+  

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

2015-12-29 Thread Laurent Carlier
Date: Tuesday, December 29, 2015 @ 19:01:34
  Author: lcarlier
Revision: 154942

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

Added:
  gambas3/repos/community-i686/PKGBUILD
(from rev 154941, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-i686/gambas3-runtime.install
(from rev 154941, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-i686/gambas3-script.install
(from rev 154941, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-x86_64/PKGBUILD
(from rev 154941, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-x86_64/gambas3-runtime.install
(from rev 154941, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-x86_64/gambas3-script.install
(from rev 154941, gambas3/trunk/gambas3-script.install)
Deleted:
  gambas3/repos/community-i686/PKGBUILD
  gambas3/repos/community-i686/gambas3-runtime.install
  gambas3/repos/community-i686/gambas3-script.install
  gambas3/repos/community-x86_64/PKGBUILD
  gambas3/repos/community-x86_64/gambas3-runtime.install
  gambas3/repos/community-x86_64/gambas3-script.install

--+
 /PKGBUILD| 2282 +
 /gambas3-runtime.install |   20 
 /gambas3-script.install  |   30 
 community-i686/PKGBUILD  | 1078 -
 community-i686/gambas3-runtime.install   |   10 
 community-i686/gambas3-script.install|   15 
 community-x86_64/PKGBUILD| 1078 -
 community-x86_64/gambas3-runtime.install |   10 
 community-x86_64/gambas3-script.install  |   15 
 9 files changed, 2332 insertions(+), 2206 deletions(-)

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


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

2015-12-29 Thread Maxime Gauduin
Date: Tuesday, December 29, 2015 @ 20:03:06
  Author: alucryd
Revision: 154946

archrelease: copy trunk to community-any

Added:
  beets/repos/community-any/PKGBUILD
(from rev 154945, beets/trunk/PKGBUILD)
  beets/repos/community-any/beet
(from rev 154945, beets/trunk/beet)
Deleted:
  beets/repos/community-any/PKGBUILD
  beets/repos/community-any/beet

--+
 PKGBUILD |  130 ++---
 beet |4 -
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-29 19:02:56 UTC (rev 154945)
+++ PKGBUILD2015-12-29 19:03:06 UTC (rev 154946)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Adrian Sampson 
-
-pkgname=beets
-pkgver=1.3.15
-pkgrel=1
-pkgdesc='Flexible music library manager and tagger'
-arch=('any')
-url='http://beets.radbox.org/'
-license=('MIT')
-depends=('mutagen' 'python2-enum34' 'python2-jellyfish' 'python2-munkres'
- 'python2-musicbrainzngs' 'python2-setuptools' 'python2-unidecode'
- 'python2-yaml')
-optdepends=('bash-completion: Bash completion'
-'gst-plugins-bad: ReplayGain plugin'
-'gst-plugins-good: ReplayGain plugin'
-'gst-plugins-ugly: ReplayGain plugin'
-'gst-libav: ReplayGain plugin'
-'gst-python: ReplayGain plugin'
-'gstreamer0.10-bad-plugins: Chromaprint/Acoustid/BPD plugins'
-'gstreamer0.10-good-plugins: Chromaprint/Acoustid/BPD plugins'
-'gstreamer0.10-ugly-plugins: Chromaprint/Acoustid/BPD plugins'
-'gstreamer0.10-ffmpeg: Chromaprint/Acoustid/BPD plugins'
-'gstreamer0.10-python: Chromaprint/Acoustid/BPD plugins'
-'imagemagick: Thumbnails plugin'
-'python2-flask: Web plugin'
-'python2-gobject: ReplayGain plugin'
-'python2-pathlib: Thumbnails plugin'
-'python2-pyacoustid: Chromaprint/Acoustid plugin'
-'python2-pylast: LastGenre plugin'
-'python2-requests: Chromaprint/Acoustid/BPD/FetchArt plugins'
-'python2-xdg: Thumbnails plugin')
-source=("https://github.com/sampsyo/beets/releases/download/v${pkgver}/beets-${pkgver}.tar.gz;
-'https://raw.githubusercontent.com/sampsyo/beets/master/extra/_beet'
-'beet')
-sha256sums=('ebb16c9d8864d65491cd73cb0c9661df18f12604f1a6c2c16d19096d87ef50c4'
-'b764df02a7bb907c991e8e3fd3de72375aa608e60ae0e0636ceeb141b21c6e0f'
-'b081285b202f82d09802ebca73d28bbf1902179ad3a820e4c0157f80bf959d89')
-
-build() {
-  cd beets-${pkgver}
-
-  python2 setup.py build
-}
-
-package() {
-  cd beets-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-
-  install -dm 755 "${pkgdir}"/etc/bash_completion.d
-  install -m 644 ../beet "${pkgdir}"/etc/bash_completion.d/
-  install -dm 755 "${pkgdir}"/usr/share/zsh/site-functions
-  install -m 644 ../_beet "${pkgdir}"/usr/share/zsh/site-functions/
-
-  install -dm 755 "${pkgdir}"/usr/share/man/man{1,5}
-  install -m 644 man/beet.1 "${pkgdir}"/usr/share/man/man1/
-  install -m 644 man/beetsconfig.5 "${pkgdir}"/usr/share/man/man5/
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/beets
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/beets/
-}
-
-# vim: ts=2 sw=2 et:

Copied: beets/repos/community-any/PKGBUILD (from rev 154945, 
beets/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-29 19:03:06 UTC (rev 154946)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Adrian Sampson 
+
+pkgname=beets
+pkgver=1.3.16
+pkgrel=1
+pkgdesc='Flexible music library manager and tagger'
+arch=('any')
+url='http://beets.radbox.org/'
+license=('MIT')
+depends=('mutagen' 'python2-enum34' 'python2-jellyfish' 'python2-munkres'
+ 'python2-musicbrainzngs' 'python2-setuptools' 'python2-unidecode'
+ 'python2-yaml')
+optdepends=('bash-completion: Bash completion'
+'gst-plugins-bad: ReplayGain plugin'
+'gst-plugins-good: ReplayGain plugin'
+'gst-plugins-ugly: ReplayGain plugin'
+'gst-libav: ReplayGain plugin'
+'gst-python: ReplayGain plugin'
+'gstreamer0.10-bad-plugins: Chromaprint/Acoustid/BPD plugins'
+'gstreamer0.10-good-plugins: Chromaprint/Acoustid/BPD plugins'
+'gstreamer0.10-ugly-plugins: Chromaprint/Acoustid/BPD plugins'
+'gstreamer0.10-ffmpeg: Chromaprint/Acoustid/BPD plugins'
+'gstreamer0.10-python: Chromaprint/Acoustid/BPD plugins'
+'imagemagick: Thumbnails plugin'
+'python2-flask: Web plugin'
+'python2-gobject: ReplayGain plugin'
+'python2-pathlib: Thumbnails 

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

2015-12-29 Thread Maxime Gauduin
Date: Tuesday, December 29, 2015 @ 20:02:56
  Author: alucryd
Revision: 154945

upgpkg: beets 1.3.16-1

Modified:
  beets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 18:14:26 UTC (rev 154944)
+++ PKGBUILD2015-12-29 19:02:56 UTC (rev 154945)
@@ -3,7 +3,7 @@
 # Contributor: Adrian Sampson 
 
 pkgname=beets
-pkgver=1.3.15
+pkgver=1.3.16
 pkgrel=1
 pkgdesc='Flexible music library manager and tagger'
 arch=('any')
@@ -34,8 +34,8 @@
 
source=("https://github.com/sampsyo/beets/releases/download/v${pkgver}/beets-${pkgver}.tar.gz;
 'https://raw.githubusercontent.com/sampsyo/beets/master/extra/_beet'
 'beet')
-sha256sums=('ebb16c9d8864d65491cd73cb0c9661df18f12604f1a6c2c16d19096d87ef50c4'
-'b764df02a7bb907c991e8e3fd3de72375aa608e60ae0e0636ceeb141b21c6e0f'
+sha256sums=('fdbdee7dadd04001f6281142cd61b5b8478107d1f38da30b9d08d7fbd0bea130'
+'51c23b07ae5b4d67bd3d9f1c6ec3187a04b18d805e0b198951c6b63c67d34715'
 'b081285b202f82d09802ebca73d28bbf1902179ad3a820e4c0157f80bf959d89')
 
 build() {


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

2015-12-29 Thread Jerome Leclanche
Date: Wednesday, December 30, 2015 @ 03:50:55
  Author: jleclanche
Revision: 154950

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-30 02:49:42 UTC (rev 154949)
+++ community-i686/PKGBUILD 2015-12-30 02:50:55 UTC (rev 154950)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-# Contributor: Isaac Dupree 
-
-pkgname=libsass
-pkgver=3.3.1
-pkgrel=2
-pkgdesc="C implementation of Sass CSS preprocessor (library)."
-arch=("i686" "x86_64")
-url="http://libsass.org/;
-license=("MIT")
-source=("https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("e4ac27bf8bd4da327065cb56f66bc39cadd11cd07f9fc872e69785d7204dff47")
-
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   make DESTDIR="$pkgdir/" install
-   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libsass/repos/community-i686/PKGBUILD (from rev 154949, 
libsass/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-30 02:50:55 UTC (rev 154950)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+# Contributor: Isaac Dupree 
+
+pkgname=libsass
+pkgver=3.3.2
+pkgrel=1
+pkgdesc="C implementation of Sass CSS preprocessor (library)."
+arch=("i686" "x86_64")
+url="http://libsass.org/;
+license=("MIT")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("affb7efaa7e152e576cc1d510c662ebe067b0b9e9228ad2937dcafdd4431b573")
+
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir/" install
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-30 02:49:42 UTC (rev 154949)
+++ community-x86_64/PKGBUILD   2015-12-30 02:50:55 UTC (rev 154950)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-# Contributor: Isaac Dupree 
-
-pkgname=libsass
-pkgver=3.3.1
-pkgrel=2
-pkgdesc="C implementation of Sass CSS preprocessor (library)."
-arch=("i686" "x86_64")
-url="http://libsass.org/;
-license=("MIT")
-source=("https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("e4ac27bf8bd4da327065cb56f66bc39cadd11cd07f9fc872e69785d7204dff47")
-
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   make DESTDIR="$pkgdir/" install
-   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libsass/repos/community-x86_64/PKGBUILD (from rev 154949, 
libsass/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-30 02:50:55 UTC (rev 154950)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+# Contributor: Isaac Dupree 
+
+pkgname=libsass
+pkgver=3.3.2
+pkgrel=1
+pkgdesc="C implementation of Sass CSS preprocessor (library)."
+arch=("i686" "x86_64")
+url="http://libsass.org/;
+license=("MIT")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("affb7efaa7e152e576cc1d510c662ebe067b0b9e9228ad2937dcafdd4431b573")
+
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir/" install
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-12-29 Thread Jerome Leclanche
Date: Wednesday, December 30, 2015 @ 03:49:42
  Author: jleclanche
Revision: 154949

upgpkg: libsass 3.3.2-1

Upstream release 3.3.2

Modified:
  libsass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 20:21:30 UTC (rev 154948)
+++ PKGBUILD2015-12-30 02:49:42 UTC (rev 154949)
@@ -3,18 +3,19 @@
 # Contributor: Isaac Dupree 
 
 pkgname=libsass
-pkgver=3.3.1
-pkgrel=2
+pkgver=3.3.2
+pkgrel=1
 pkgdesc="C implementation of Sass CSS preprocessor (library)."
 arch=("i686" "x86_64")
 url="http://libsass.org/;
 license=("MIT")
-source=("https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("e4ac27bf8bd4da327065cb56f66bc39cadd11cd07f9fc872e69785d7204dff47")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("affb7efaa7e152e576cc1d510c662ebe067b0b9e9228ad2937dcafdd4431b573")
 
 
 build() {
cd "$srcdir/$pkgname-$pkgver"
+
autoreconf -i
./configure --prefix=/usr
make


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

2015-12-29 Thread Jerome Leclanche
Date: Wednesday, December 30, 2015 @ 03:52:59
  Author: jleclanche
Revision: 154952

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-30 02:52:53 UTC (rev 154951)
+++ community-i686/PKGBUILD 2015-12-30 02:52:59 UTC (rev 154952)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-# Contributor: Isaac Dupree 
-
-pkgname=sassc
-pkgver=3.3.1
-pkgrel=1
-pkgdesc="C implementation of Sass CSS preprocessor."
-arch=("i686" "x86_64")
-url="http://libsass.org/;
-license=("MIT")
-depends=("libsass")
-source=("https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("e99b866ed46a17936e2e7da4258b4a9e310eb2fd6437c64a7803a5d3647b2419")
-
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   make DESTDIR="$pkgdir/" install
-   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sassc/repos/community-i686/PKGBUILD (from rev 154951, 
sassc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-30 02:52:59 UTC (rev 154952)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+# Contributor: Isaac Dupree 
+
+pkgname=sassc
+pkgver=3.3.2
+pkgrel=1
+pkgdesc="C implementation of Sass CSS preprocessor."
+arch=("i686" "x86_64")
+url="http://libsass.org/;
+license=("MIT")
+depends=("libsass")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("15a2b2698639dfdc7bd6a5ba7a9ecdaf8ebb9f15503fb04dea1be3133308e41d")
+
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir/" install
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-30 02:52:53 UTC (rev 154951)
+++ community-x86_64/PKGBUILD   2015-12-30 02:52:59 UTC (rev 154952)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-# Contributor: Isaac Dupree 
-
-pkgname=sassc
-pkgver=3.3.1
-pkgrel=1
-pkgdesc="C implementation of Sass CSS preprocessor."
-arch=("i686" "x86_64")
-url="http://libsass.org/;
-license=("MIT")
-depends=("libsass")
-source=("https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("e99b866ed46a17936e2e7da4258b4a9e310eb2fd6437c64a7803a5d3647b2419")
-
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   make DESTDIR="$pkgdir/" install
-   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sassc/repos/community-x86_64/PKGBUILD (from rev 154951, 
sassc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-30 02:52:59 UTC (rev 154952)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+# Contributor: Isaac Dupree 
+
+pkgname=sassc
+pkgver=3.3.2
+pkgrel=1
+pkgdesc="C implementation of Sass CSS preprocessor."
+arch=("i686" "x86_64")
+url="http://libsass.org/;
+license=("MIT")
+depends=("libsass")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("15a2b2698639dfdc7bd6a5ba7a9ecdaf8ebb9f15503fb04dea1be3133308e41d")
+
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir/" install
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-12-29 Thread Jerome Leclanche
Date: Wednesday, December 30, 2015 @ 03:52:53
  Author: jleclanche
Revision: 154951

upgpkg: sassc 3.3.2-1

Upstream release 3.3.2

Modified:
  sassc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-30 02:50:55 UTC (rev 154950)
+++ PKGBUILD2015-12-30 02:52:53 UTC (rev 154951)
@@ -3,7 +3,7 @@
 # Contributor: Isaac Dupree 
 
 pkgname=sassc
-pkgver=3.3.1
+pkgver=3.3.2
 pkgrel=1
 pkgdesc="C implementation of Sass CSS preprocessor."
 arch=("i686" "x86_64")
@@ -11,7 +11,7 @@
 license=("MIT")
 depends=("libsass")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sass/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=("e99b866ed46a17936e2e7da4258b4a9e310eb2fd6437c64a7803a5d3647b2419")
+sha256sums=("15a2b2698639dfdc7bd6a5ba7a9ecdaf8ebb9f15503fb04dea1be3133308e41d")
 
 
 build() {


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

2015-12-29 Thread Pierre Schmitz
Date: Tuesday, December 29, 2015 @ 21:21:11
  Author: pierre
Revision: 154947

upgpkg: php-memcached 2.2.0-3

Modified:
  php-memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 19:03:06 UTC (rev 154946)
+++ PKGBUILD2015-12-29 20:21:11 UTC (rev 154947)
@@ -3,18 +3,20 @@
 
 pkgname=php-memcached
 pkgver=2.2.0
-pkgrel=2
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=3
 pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
 arch=('i686' 'x86_64')
 url="http://pecl.php.net/package/memcached;
 license=('PHP')
 depends=('php' 'libmemcached')
+makedepends=('git')
 backup=('etc/php/conf.d/memcached.ini')
-source=(http://pecl.php.net/get/memcached-$pkgver.tgz)
-sha256sums=('17b9600f6d4c807f23a3f5c45fcd8775ca2e61d6eda70370af2bef4c6e159f58')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit};)
+sha256sums=('SKIP')
 
 build() {
-  cd "$srcdir/memcached-$pkgver"
+  cd "$srcdir/$pkgname"
 
   phpize
   ./configure --prefix=/usr
@@ -22,7 +24,7 @@
 }
 
 package() {
-  cd "$srcdir/memcached-$pkgver"
+  cd "$srcdir/$pkgname"
 
   make INSTALL_ROOT="$pkgdir" install
 


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

2015-12-29 Thread Pierre Schmitz
Date: Tuesday, December 29, 2015 @ 21:21:30
  Author: pierre
Revision: 154948

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

Added:
  php-memcached/repos/community-staging-i686/
  php-memcached/repos/community-staging-i686/PKGBUILD
(from rev 154947, php-memcached/trunk/PKGBUILD)
  php-memcached/repos/community-staging-x86_64/
  php-memcached/repos/community-staging-x86_64/PKGBUILD
(from rev 154947, php-memcached/trunk/PKGBUILD)

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

Copied: php-memcached/repos/community-staging-i686/PKGBUILD (from rev 154947, 
php-memcached/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-29 20:21:30 UTC (rev 154948)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcached
+pkgver=2.2.0
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=3
+pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcached;
+license=('PHP')
+depends=('php' 'libmemcached')
+makedepends=('git')
+backup=('etc/php/conf.d/memcached.ini')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir/etc/php/conf.d"
+  echo ';extension=memcached.so' >"$pkgdir/etc/php/conf.d/memcached.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcached/repos/community-staging-x86_64/PKGBUILD (from rev 154947, 
php-memcached/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-29 20:21:30 UTC (rev 154948)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcached
+pkgver=2.2.0
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=3
+pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcached;
+license=('PHP')
+depends=('php' 'libmemcached')
+makedepends=('git')
+backup=('etc/php/conf.d/memcached.ini')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir/etc/php/conf.d"
+  echo ';extension=memcached.so' >"$pkgdir/etc/php/conf.d/memcached.ini"
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-12-29 Thread Felix Yan
Date: Wednesday, December 30, 2015 @ 05:26:05
  Author: fyan
Revision: 257383

upgpkg: python-urllib3 1.14-1

Modified:
  python-urllib3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 17:09:57 UTC (rev 257382)
+++ PKGBUILD2015-12-30 04:26:05 UTC (rev 257383)
@@ -6,7 +6,7 @@
 
 pkgbase=python-urllib3
 pkgname=(python-urllib3 python2-urllib3 python-urllib3-doc)
-pkgver=1.13.1
+pkgver=1.14
 pkgrel=1
 pkgdesc="HTTP library with thread-safe connection pooling and file post 
support"
 arch=("any")


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

2015-12-29 Thread Felix Yan
Date: Wednesday, December 30, 2015 @ 05:26:25
  Author: fyan
Revision: 257384

archrelease: copy trunk to testing-any

Added:
  python-urllib3/repos/testing-any/
  python-urllib3/repos/testing-any/LICENSE
(from rev 257383, python-urllib3/trunk/LICENSE)
  python-urllib3/repos/testing-any/PKGBUILD
(from rev 257383, python-urllib3/trunk/PKGBUILD)

--+
 LICENSE  |   32 +++
 PKGBUILD |   72 +
 2 files changed, 104 insertions(+)

Copied: python-urllib3/repos/testing-any/LICENSE (from rev 257383, 
python-urllib3/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2015-12-30 04:26:25 UTC (rev 257384)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+--CUT--
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c)  
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: python-urllib3/repos/testing-any/PKGBUILD (from rev 257383, 
python-urllib3/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-12-30 04:26:25 UTC (rev 257384)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Patrice Peterson 
+# Contributor: Chris Brannon 
+# Contributor: BorgHunter 
+
+pkgbase=python-urllib3
+pkgname=(python-urllib3 python2-urllib3 python-urllib3-doc)
+pkgver=1.14
+pkgrel=1
+pkgdesc="HTTP library with thread-safe connection pooling and file post 
support"
+arch=("any")
+url="https://github.com/shazow/urllib3;
+license=("MIT")
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-sphinx' 'git'
+ 'python-ndg-httpsclient' 'python2-ndg-httpsclient' 'python-pyasn1'
+ 'python2-pyasn1' 'python-pyopenssl' 'python2-pyopenssl')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
+  'python-tornado' 'python2-tornado')
+source=("git+https://github.com/shazow/urllib3.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a urllib3{,-py2}
+}
+
+build() {
+  cd "$srcdir/urllib3"
+  python setup.py build
+
+  cd "$srcdir/urllib3-py2"
+  python2 setup.py build
+
+  # Build with Python 2 since autodoc produces errors on Python 3
+  cd "$srcdir/urllib3/docs"
+  make SPHINXBUILD=sphinx-build2 html
+}
+
+check() {
+  # Expected failure when asking for external resources
+
+  cd "$srcdir/urllib3"
+  nosetests3 || warning "Tests failed"
+
+  cd "$srcdir/urllib3-py2"
+  nosetests2 || warning "Tests failed"
+}
+
+package_python-urllib3() {
+  depends=('python')
+
+  cd urllib3
+  python setup.py install --root="${pkgdir}"
+  install -Dm644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
+
+package_python2-urllib3() {
+  depends=('python2')
+
+  cd urllib3-py2
+  python2 setup.py install --root="${pkgdir}"
+  install -Dm644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
+
+package_python-urllib3-doc() {
+  pkgdesc="urllib3 Documentation"
+
+  cd urllib3/docs
+  install -d "$pkgdir/usr/share/doc"
+  cp -r _build/html "$pkgdir/usr/share/doc/python-urllib3"
+  install -Dm644 ../LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}


[arch-commits] Commit in lib32-libcroco/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 10:30:19
  Author: fyan
Revision: 154903

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libcroco/repos/multilib-x86_64/PKGBUILD
(from rev 154902, lib32-libcroco/trunk/PKGBUILD)
Deleted:
  lib32-libcroco/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-29 09:29:30 UTC (rev 154902)
+++ PKGBUILD2015-12-29 09:30:19 UTC (rev 154903)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Maxime Gauduin 
-# Contributor: GordonGR 
-# Contributor: speps 
-
-pkgname=lib32-libcroco
-pkgver=0.6.9
-pkgrel=1
-pkgdesc='GNOME CSS2 parsing and manipulation toolkit'
-arch=('x86_64')
-url="http://www.gnome.org/;
-license=('LGPL')
-depends=('lib32-glib2' 'lib32-libxml2' 'libcroco')
-makedepends=('gcc-multilib')
-source=("http://ftp.gnome.org/pub/gnome/sources/libcroco/0.6/libcroco-${pkgver}.tar.xz;)
-md5sums=('f1863da805c9206563da06f56da1ea55')
-
-build() {
-  cd libcroco-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---disable-static
-  make
-}
-
-package() {
-  cd libcroco-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libcroco/repos/multilib-x86_64/PKGBUILD (from rev 154902, 
lib32-libcroco/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-29 09:30:19 UTC (rev 154903)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Maxime Gauduin 
+# Contributor: GordonGR 
+# Contributor: speps 
+
+pkgname=lib32-libcroco
+pkgver=0.6.11
+pkgrel=1
+pkgdesc='GNOME CSS2 parsing and manipulation toolkit'
+arch=('x86_64')
+url="http://www.gnome.org/;
+license=('LGPL')
+depends=('lib32-glib2' 'lib32-libxml2' 'libcroco')
+makedepends=('gcc-multilib')
+source=("http://ftp.gnome.org/pub/gnome/sources/libcroco/0.6/libcroco-${pkgver}.tar.xz;)
+md5sums=('dabc1911dfbfa85f8e6859ca47863168')
+
+build() {
+  cd libcroco-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-static
+  make
+}
+
+package() {
+  cd libcroco-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 10:29:30
  Author: fyan
Revision: 154902

upgpkg: lib32-libcroco 0.6.11-1

Modified:
  lib32-libcroco/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 08:11:49 UTC (rev 154901)
+++ PKGBUILD2015-12-29 09:29:30 UTC (rev 154902)
@@ -5,7 +5,7 @@
 # Contributor: speps 
 
 pkgname=lib32-libcroco
-pkgver=0.6.9
+pkgver=0.6.11
 pkgrel=1
 pkgdesc='GNOME CSS2 parsing and manipulation toolkit'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('lib32-glib2' 'lib32-libxml2' 'libcroco')
 makedepends=('gcc-multilib')
 
source=("http://ftp.gnome.org/pub/gnome/sources/libcroco/0.6/libcroco-${pkgver}.tar.xz;)
-md5sums=('f1863da805c9206563da06f56da1ea55')
+md5sums=('dabc1911dfbfa85f8e6859ca47863168')
 
 build() {
   cd libcroco-${pkgver}


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

2015-12-29 Thread Pierre Schmitz
Date: Tuesday, December 29, 2015 @ 09:11:49
  Author: pierre
Revision: 154901

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

Added:
  uwsgi/repos/community-staging-i686/
  uwsgi/repos/community-staging-i686/PKGBUILD
(from rev 154900, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-staging-i686/archlinux.ini
(from rev 154900, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-staging-i686/emperor.ini
(from rev 154900, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-staging-i686/emperor.uwsgi.service
(from rev 154900, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-staging-i686/emperor.uwsgi.socket
(from rev 154900, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-staging-i686/php7.patch
(from rev 154900, uwsgi/trunk/php7.patch)
  uwsgi/repos/community-staging-i686/tmpfilesd
(from rev 154900, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-staging-i686/uwsgi.install
(from rev 154900, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-staging-i686/uwsgi_at.service
(from rev 154900, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-staging-i686/uwsgi_at.socket
(from rev 154900, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-staging-i686/uwsgi_fix_rpath.patch
(from rev 154900, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-staging-i686/uwsgi_ruby20_compatibility.patch
(from rev 154900, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-staging-i686/uwsgi_trick_chroot.patch
(from rev 154900, uwsgi/trunk/uwsgi_trick_chroot.patch)
  uwsgi/repos/community-staging-x86_64/
  uwsgi/repos/community-staging-x86_64/PKGBUILD
(from rev 154900, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-staging-x86_64/archlinux.ini
(from rev 154900, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-staging-x86_64/emperor.ini
(from rev 154900, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-staging-x86_64/emperor.uwsgi.service
(from rev 154900, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-staging-x86_64/emperor.uwsgi.socket
(from rev 154900, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-staging-x86_64/php7.patch
(from rev 154900, uwsgi/trunk/php7.patch)
  uwsgi/repos/community-staging-x86_64/tmpfilesd
(from rev 154900, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-staging-x86_64/uwsgi.install
(from rev 154900, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-staging-x86_64/uwsgi_at.service
(from rev 154900, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-staging-x86_64/uwsgi_at.socket
(from rev 154900, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-staging-x86_64/uwsgi_fix_rpath.patch
(from rev 154900, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-staging-x86_64/uwsgi_ruby20_compatibility.patch
(from rev 154900, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-staging-x86_64/uwsgi_trick_chroot.patch
(from rev 154900, uwsgi/trunk/uwsgi_trick_chroot.patch)

---+
 community-staging-i686/PKGBUILD   |  197 
 community-staging-i686/archlinux.ini  |5 
 community-staging-i686/emperor.ini|4 
 community-staging-i686/emperor.uwsgi.service  |   16 
 community-staging-i686/emperor.uwsgi.socket   |9 
 community-staging-i686/php7.patch |  169 ++
 community-staging-i686/tmpfilesd  |1 
 community-staging-i686/uwsgi.install  |   12 
 community-staging-i686/uwsgi_at.service   |   16 
 community-staging-i686/uwsgi_at.socket|9 
 community-staging-i686/uwsgi_fix_rpath.patch  |   66 
 community-staging-i686/uwsgi_ruby20_compatibility.patch   |   42 ++
 community-staging-i686/uwsgi_trick_chroot.patch   |   16 
 community-staging-x86_64/PKGBUILD |  197 
 community-staging-x86_64/archlinux.ini|5 
 community-staging-x86_64/emperor.ini  |4 
 community-staging-x86_64/emperor.uwsgi.service|   16 
 community-staging-x86_64/emperor.uwsgi.socket |9 
 community-staging-x86_64/php7.patch   |  169 ++
 community-staging-x86_64/tmpfilesd|1 
 community-staging-x86_64/uwsgi.install|   12 
 community-staging-x86_64/uwsgi_at.service |   16 
 community-staging-x86_64/uwsgi_at.socket  |9 
 community-staging-x86_64/uwsgi_fix_rpath.patch|   66 
 community-staging-x86_64/uwsgi_ruby20_compatibility.patch |   42 ++
 community-staging-x86_64/uwsgi_trick_chroot.patch |   16 
 26 files changed, 1124 insertions(+)

The diff is longer than the limit of 200KB.
Use svn 

[arch-commits] Commit in uwsgi/repos (staging-i686 staging-x86_64)

2015-12-29 Thread Pierre Schmitz
Date: Tuesday, December 29, 2015 @ 09:10:50
  Author: pierre
Revision: 154900

wrong repo again

Deleted:
  uwsgi/repos/staging-i686/
  uwsgi/repos/staging-x86_64/


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

2015-12-29 Thread Pierre Schmitz
Date: Tuesday, December 29, 2015 @ 09:09:08
  Author: pierre
Revision: 154899

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

Added:
  uwsgi/repos/staging-i686/
  uwsgi/repos/staging-i686/PKGBUILD
(from rev 154898, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/staging-i686/archlinux.ini
(from rev 154898, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/staging-i686/emperor.ini
(from rev 154898, uwsgi/trunk/emperor.ini)
  uwsgi/repos/staging-i686/emperor.uwsgi.service
(from rev 154898, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/staging-i686/emperor.uwsgi.socket
(from rev 154898, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/staging-i686/php7.patch
(from rev 154898, uwsgi/trunk/php7.patch)
  uwsgi/repos/staging-i686/tmpfilesd
(from rev 154898, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/staging-i686/uwsgi.install
(from rev 154898, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/staging-i686/uwsgi_at.service
(from rev 154898, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/staging-i686/uwsgi_at.socket
(from rev 154898, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/staging-i686/uwsgi_fix_rpath.patch
(from rev 154898, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/staging-i686/uwsgi_ruby20_compatibility.patch
(from rev 154898, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/staging-i686/uwsgi_trick_chroot.patch
(from rev 154898, uwsgi/trunk/uwsgi_trick_chroot.patch)
  uwsgi/repos/staging-x86_64/
  uwsgi/repos/staging-x86_64/PKGBUILD
(from rev 154898, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/staging-x86_64/archlinux.ini
(from rev 154898, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/staging-x86_64/emperor.ini
(from rev 154898, uwsgi/trunk/emperor.ini)
  uwsgi/repos/staging-x86_64/emperor.uwsgi.service
(from rev 154898, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/staging-x86_64/emperor.uwsgi.socket
(from rev 154898, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/staging-x86_64/php7.patch
(from rev 154898, uwsgi/trunk/php7.patch)
  uwsgi/repos/staging-x86_64/tmpfilesd
(from rev 154898, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/staging-x86_64/uwsgi.install
(from rev 154898, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/staging-x86_64/uwsgi_at.service
(from rev 154898, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/staging-x86_64/uwsgi_at.socket
(from rev 154898, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/staging-x86_64/uwsgi_fix_rpath.patch
(from rev 154898, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/staging-x86_64/uwsgi_ruby20_compatibility.patch
(from rev 154898, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/staging-x86_64/uwsgi_trick_chroot.patch
(from rev 154898, uwsgi/trunk/uwsgi_trick_chroot.patch)

-+
 staging-i686/PKGBUILD   |  197 ++
 staging-i686/archlinux.ini  |5 
 staging-i686/emperor.ini|4 
 staging-i686/emperor.uwsgi.service  |   16 +
 staging-i686/emperor.uwsgi.socket   |9 +
 staging-i686/php7.patch |  169 ++
 staging-i686/tmpfilesd  |1 
 staging-i686/uwsgi.install  |   12 +
 staging-i686/uwsgi_at.service   |   16 +
 staging-i686/uwsgi_at.socket|9 +
 staging-i686/uwsgi_fix_rpath.patch  |   66 +++
 staging-i686/uwsgi_ruby20_compatibility.patch   |   42 
 staging-i686/uwsgi_trick_chroot.patch   |   16 +
 staging-x86_64/PKGBUILD |  197 ++
 staging-x86_64/archlinux.ini|5 
 staging-x86_64/emperor.ini  |4 
 staging-x86_64/emperor.uwsgi.service|   16 +
 staging-x86_64/emperor.uwsgi.socket |9 +
 staging-x86_64/php7.patch   |  169 ++
 staging-x86_64/tmpfilesd|1 
 staging-x86_64/uwsgi.install|   12 +
 staging-x86_64/uwsgi_at.service |   16 +
 staging-x86_64/uwsgi_at.socket  |9 +
 staging-x86_64/uwsgi_fix_rpath.patch|   66 +++
 staging-x86_64/uwsgi_ruby20_compatibility.patch |   42 
 staging-x86_64/uwsgi_trick_chroot.patch |   16 +
 26 files changed, 1124 insertions(+)

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


[arch-commits] Commit in uwsgi/trunk (PKGBUILD php7.patch)

2015-12-29 Thread Pierre Schmitz
Date: Tuesday, December 29, 2015 @ 09:08:37
  Author: pierre
Revision: 154898

upgpkg: uwsgi 2.0.11.2-5

Added:
  uwsgi/trunk/php7.patch
Modified:
  uwsgi/trunk/PKGBUILD

+
 PKGBUILD   |   13 ++--
 php7.patch |  169 +++
 2 files changed, 176 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 07:43:26 UTC (rev 154897)
+++ PKGBUILD2015-12-29 08:08:37 UTC (rev 154898)
@@ -22,13 +22,13 @@
  uwsgi-plugin-webdav
  mod_proxy_uwsgi)
 pkgver=2.0.11.2
-pkgrel=4
+pkgrel=5
 arch=(i686 x86_64)
 url="http://projects.unbit.it/$pkgbase;
 license=(GPL2)
 backup=('etc/uwsgi/emperor.ini')
 conflicts=(python-$pkgbase)
-makedepends=(gcc python python2 ruby python2-greenlet python-greenlet 
'php-embed<7' 'php<7' curl libxml2 libyaml
+makedepends=(gcc python python2 ruby python2-greenlet python-greenlet 
php-embed curl libxml2 libyaml
  perl lua51 pcre libedit openssl bzip2 gmp pam java-environment=7
  jansson classpath pypy mono python2-gevent apache)
 source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz
@@ -41,7 +41,8 @@
 uwsgi_trick_chroot.patch
 emperor.ini
 emperor.uwsgi.service
-emperor.uwsgi.socket)
+emperor.uwsgi.socket
+php7.patch)
 
 md5sums=('1f02dcbee7f6f61de4b1fd68350cf16f'
  '9aced0faffc5fc04afccf946e8a2a886'
@@ -53,13 +54,13 @@
  '0c09a52fdb88f08c36a8b380f451ce6d'
  '5fa14ddea9a3dae17b5be28468d47b80'
  '25dfcc365241f16d7ea16f7143698b53'
- '3ab4486e02f5c217566fb6c8d469c246')
+ '3ab4486e02f5c217566fb6c8d469c246'
+ 'eba4498ca973c73d637caa1df3a8cd16')
 
 prepare() {
 cd $srcdir/$pkgbase-$pkgver
 cp $srcdir/archlinux.ini buildconf/archlinux.ini
-#sed -i 's/LIBS .*-lphp5.*/LIBS = []/' plugins/php/uwsgiplugin.py
-for patch in uwsgi_fix_rpath.patch uwsgi_ruby20_compatibility.patch 
uwsgi_trick_chroot.patch; do
+for patch in uwsgi_fix_rpath.patch uwsgi_ruby20_compatibility.patch 
uwsgi_trick_chroot.patch php7.patch; do
 patch -Np1 -i $srcdir/$patch
 done
 rm -rf plugins/ruby

Added: php7.patch
===
--- php7.patch  (rev 0)
+++ php7.patch  2015-12-29 08:08:37 UTC (rev 154898)
@@ -0,0 +1,169 @@
+From 4d79e13acaf13acdf8f8a84cfa3fdda211f8aa81 Mon Sep 17 00:00:00 2001
+From: Unbit 
+Date: Tue, 29 Dec 2015 08:53:19 +0100
+Subject: [PATCH 12/12] official php7 support (beta) #1124
+
+---
+ plugins/php/common.h   |  4 
+ plugins/php/php_plugin.c   | 20 
+ plugins/php/session.c  | 19 ++-
+ plugins/php/uwsgiplugin.py |  4 +++-
+ 4 files changed, 45 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/php/common.h b/plugins/php/common.h
+index 8c1ed13..9bf1c06 100644
+--- a/plugins/php/common.h
 b/plugins/php/common.h
+@@ -3,7 +3,11 @@
+ #include "php_main.h"
+ #include "php_variables.h"
+ 
++#if (PHP_MAJOR_VERSION < 7)
+ #include "ext/standard/php_smart_str.h"
++#else
++#define UWSGI_PHP7
++#endif
+ #include "ext/standard/info.h"
+ 
+ #include "ext/session/php_session.h"
+diff --git a/plugins/php/php_plugin.c b/plugins/php/php_plugin.c
+index b1b6f7a..6d9e952 100644
+--- a/plugins/php/php_plugin.c
 b/plugins/php/php_plugin.c
+@@ -65,7 +65,11 @@ struct uwsgi_option uwsgi_php_options[] = {
+ };
+ 
+ 
++#ifdef UWSGI_PHP7
++static size_t sapi_uwsgi_ub_write(const char *str, size_t str_length 
TSRMLS_DC)
++#else
+ static int sapi_uwsgi_ub_write(const char *str, uint str_length TSRMLS_DC)
++#endif
+ {
+   struct wsgi_request *wsgi_req = (struct wsgi_request *) 
SG(server_context);
+ 
+@@ -111,7 +115,11 @@ static int sapi_uwsgi_send_headers(sapi_headers_struct 
*sapi_headers TSRMLS_DC)
+   return SAPI_HEADER_SENT_SUCCESSFULLY;
+ }
+ 
++#ifdef UWSGI_PHP7
++static size_t sapi_uwsgi_read_post(char *buffer, size_t count_bytes TSRMLS_DC)
++#else
+ static int sapi_uwsgi_read_post(char *buffer, uint count_bytes TSRMLS_DC)
++#endif
+ {
+   uint read_bytes = 0;
+   
+@@ -235,7 +243,11 @@ PHP_MINIT_FUNCTION(uwsgi_php_minit) {
+ }
+ 
+ PHP_FUNCTION(uwsgi_version) {
++#ifdef UWSGI_PHP7
++  RETURN_STRING(UWSGI_VERSION);
++#else
+   RETURN_STRING(UWSGI_VERSION, 1);
++#endif
+ }
+ 
+ PHP_FUNCTION(uwsgi_worker_id) {
+@@ -321,7 +333,11 @@ PHP_FUNCTION(uwsgi_cache_get) {
+   if (value) {
+   char *ret = estrndup(value, valsize);
+   free(value);
++#ifdef UWSGI_PHP7
++  RETURN_STRING(ret);
++#else
+   RETURN_STRING(ret, 0);
++#endif
+   }
+   RETURN_NULL();
+ }
+@@ -425,7 +441,11 @@ PHP_FUNCTION(uwsgi_rpc) {
+   // here we do not free varargs for performance reasons
+   char *ret = estrndup(response, size);
+   free(response);

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:41:50
  Author: fyan
Revision: 154914

upgpkg: deepin-launcher 3.0.1-1

Modified:
  deepin-launcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:25:55 UTC (rev 154913)
+++ PKGBUILD2015-12-29 13:41:50 UTC (rev 154914)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-launcher
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Launcher module'
 arch=('i686' 'x86_64')


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:42:23
  Author: fyan
Revision: 154915

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:41:50 UTC (rev 154914)
+++ community-i686/PKGBUILD 2015-12-29 13:42:23 UTC (rev 154915)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=3.0.0
-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://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-i686/PKGBUILD (from rev 154914, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 13:42:23 UTC (rev 154915)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=3.0.1
+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://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-launcher
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-launcher
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 13:41:50 UTC (rev 154914)
+++ community-x86_64/PKGBUILD   2015-12-29 13:42:23 UTC (rev 154915)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=3.0.0
-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://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-x86_64/PKGBUILD (from rev 154914, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-29 13:42:23 UTC (rev 154915)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=3.0.1
+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://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:47:28
  Author: fyan
Revision: 154920

upgpkg: deepin-desktop 3.0.1-1

Modified:
  deepin-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:47:09 UTC (rev 154919)
+++ PKGBUILD2015-12-29 13:47:28 UTC (rev 154920)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-desktop
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Desktop module'
 arch=('i686' 'x86_64')


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:47:55
  Author: fyan
Revision: 154921

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:47:28 UTC (rev 154920)
+++ community-i686/PKGBUILD 2015-12-29 13:47:55 UTC (rev 154921)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=3.0.0
-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://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-i686/PKGBUILD (from rev 154920, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 13:47:55 UTC (rev 154921)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=3.0.1
+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://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 13:47:28 UTC (rev 154920)
+++ community-x86_64/PKGBUILD   2015-12-29 13:47:55 UTC (rev 154921)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=3.0.0
-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://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-x86_64/PKGBUILD (from rev 154920, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-29 13:47:55 UTC (rev 154921)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=3.0.1
+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')

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:47:09
  Author: fyan
Revision: 154919

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

Added:
  deepin-gir-generator/repos/community-i686/PKGBUILD
(from rev 154918, deepin-gir-generator/trunk/PKGBUILD)
  deepin-gir-generator/repos/community-x86_64/PKGBUILD
(from rev 154918, deepin-gir-generator/trunk/PKGBUILD)
Deleted:
  deepin-gir-generator/repos/community-i686/PKGBUILD
  deepin-gir-generator/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:46:42 UTC (rev 154918)
+++ community-i686/PKGBUILD 2015-12-29 13:47:09 UTC (rev 154919)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-gir-generator
-pkgver=0.9.1
-_commit=6e53a3b74f2076b2f472920cd2bc1ae4752e0608
-pkgrel=1
-pkgdesc='Generate static golang bindings for GObject'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/go-gir-generator;
-license=('GPL3')
-depends=('gobject-introspection' 'gcc-libs>=5.3.0-3')
-makedepends=('git' 'gcc-go')
-source=("git+https://github.com/linuxdeepin/go-gir-generator.git#commit=$_commit;)
-md5sums=('SKIP')
-
-prepare() {
-  export GOPATH="$srcdir/go-gir-generator/vender:$srcdir/go-gir-generator"
-}
-
-build() {
-  cd go-gir-generator/src/gir-generator
-  go build -gccgoflags "$(pkg-config --libs gobject-introspection-1.0) $CFLAGS 
$LDFLAGS" -o gir-generator
-}
-
-package() {
-  install -Dm 755 go-gir-generator/src/gir-generator/gir-generator 
"${pkgdir}"/usr/bin/gir-generator
-}

Copied: deepin-gir-generator/repos/community-i686/PKGBUILD (from rev 154918, 
deepin-gir-generator/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 13:47:09 UTC (rev 154919)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-gir-generator
+pkgver=0.9.2
+pkgrel=1
+pkgdesc='Generate static golang bindings for GObject'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/go-gir-generator;
+license=('GPL3')
+depends=('gobject-introspection' 'gcc-libs>=5.3.0-3')
+makedepends=('git' 'gcc-go')
+source=("git+https://cr.deepin.io/go-gir-generator.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  export GOPATH="$srcdir/go-gir-generator/vender:$srcdir/go-gir-generator"
+}
+
+build() {
+  cd go-gir-generator/src/gir-generator
+  go build -gccgoflags "$(pkg-config --libs gobject-introspection-1.0) $CFLAGS 
$LDFLAGS" -o gir-generator
+}
+
+package() {
+  install -Dm 755 go-gir-generator/src/gir-generator/gir-generator 
"${pkgdir}"/usr/bin/gir-generator
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 13:46:42 UTC (rev 154918)
+++ community-x86_64/PKGBUILD   2015-12-29 13:47:09 UTC (rev 154919)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-gir-generator
-pkgver=0.9.1
-_commit=6e53a3b74f2076b2f472920cd2bc1ae4752e0608
-pkgrel=1
-pkgdesc='Generate static golang bindings for GObject'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/go-gir-generator;
-license=('GPL3')
-depends=('gobject-introspection' 'gcc-libs>=5.3.0-3')
-makedepends=('git' 'gcc-go')
-source=("git+https://github.com/linuxdeepin/go-gir-generator.git#commit=$_commit;)
-md5sums=('SKIP')
-
-prepare() {
-  export GOPATH="$srcdir/go-gir-generator/vender:$srcdir/go-gir-generator"
-}
-
-build() {
-  cd go-gir-generator/src/gir-generator
-  go build -gccgoflags "$(pkg-config --libs gobject-introspection-1.0) $CFLAGS 
$LDFLAGS" -o gir-generator
-}
-
-package() {
-  install -Dm 755 go-gir-generator/src/gir-generator/gir-generator 
"${pkgdir}"/usr/bin/gir-generator
-}

Copied: deepin-gir-generator/repos/community-x86_64/PKGBUILD (from rev 154918, 
deepin-gir-generator/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-29 13:47:09 UTC (rev 154919)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-gir-generator
+pkgver=0.9.2
+pkgrel=1

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:46:42
  Author: fyan
Revision: 154918

upgpkg: deepin-gir-generator 0.9.2-1

Modified:
  deepin-gir-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:45:21 UTC (rev 154917)
+++ PKGBUILD2015-12-29 13:46:42 UTC (rev 154918)
@@ -4,8 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-gir-generator
-pkgver=0.9.1
-_commit=6e53a3b74f2076b2f472920cd2bc1ae4752e0608
+pkgver=0.9.2
 pkgrel=1
 pkgdesc='Generate static golang bindings for GObject'
 arch=('i686' 'x86_64')
@@ -13,7 +12,7 @@
 license=('GPL3')
 depends=('gobject-introspection' 'gcc-libs>=5.3.0-3')
 makedepends=('git' 'gcc-go')
-source=("git+https://github.com/linuxdeepin/go-gir-generator.git#commit=$_commit;)
+source=("git+https://cr.deepin.io/go-gir-generator.git#tag=$pkgver;)
 md5sums=('SKIP')
 
 prepare() {


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:13:10
  Author: fyan
Revision: 154933

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

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

+
 /PKGBUILD  |   64 +++
 /deepin-control-center.install |   22 +++
 community-i686/PKGBUILD|   32 ---
 community-i686/deepin-control-center.install   |   11 ---
 community-x86_64/PKGBUILD  |   32 ---
 community-x86_64/deepin-control-center.install |   11 ---
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 14:12:43 UTC (rev 154932)
+++ community-i686/PKGBUILD 2015-12-29 14:13:10 UTC (rev 154933)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=3.0.0
-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' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-install="${pkgname}.install"
-source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-control-center
-  qmake-qt5 PREFIX=/usr WITH_MODULE_GRUB=NO WITH_MODULE_REMOTE_ASSIST=NO
-  make
-}
-
-package() {
-  cd dde-control-center
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-control-center/repos/community-i686/PKGBUILD (from rev 154932, 
deepin-control-center/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 14:13:10 UTC (rev 154933)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=3.0.1
+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' 'dde-dock-applets')
+replaces=('dde-control-center' 'dde-dock-applets')
+groups=('deepin')
+install="${pkgname}.install"
+source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-control-center
+  qmake-qt5 PREFIX=/usr WITH_MODULE_GRUB=NO WITH_MODULE_REMOTE_ASSIST=NO
+  make
+}
+
+package() {
+  cd dde-control-center
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-i686/deepin-control-center.install
===
--- community-i686/deepin-control-center.install2015-12-29 14:12:43 UTC 
(rev 154932)
+++ community-i686/deepin-control-center.install2015-12-29 14:13:10 UTC 
(rev 154933)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install "$1"
-}
-
-post_remove() {
-  post_install "$1"
-}

Copied: 
deepin-control-center/repos/community-i686/deepin-control-center.install (from 
rev 154932, deepin-control-center/trunk/deepin-control-center.install)
===
--- community-i686/deepin-control-center.install
(rev 0)
+++ community-i686/deepin-control-center.install2015-12-29 14:13:10 UTC 
(rev 154933)
@@ -0,0 +1,11 @@
+post_install() {
+  

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:18:48
  Author: fyan
Revision: 154935

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

Added:
  deepin-daemon/repos/community-i686/PKGBUILD
(from rev 154934, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-i686/deepin-daemon.install
(from rev 154934, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
(from rev 154934, deepin-daemon/trunk/deepin-daemon.sysusers)
  
deepin-daemon/repos/community-i686/polkit-gnome-authentication-agent-1-deepin.desktop
(from rev 154934, 
deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop)
  deepin-daemon/repos/community-x86_64/PKGBUILD
(from rev 154934, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
(from rev 154934, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
(from rev 154934, deepin-daemon/trunk/deepin-daemon.sysusers)
  
deepin-daemon/repos/community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop
(from rev 154934, 
deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop)
Deleted:
  deepin-daemon/repos/community-i686/PKGBUILD
  deepin-daemon/repos/community-i686/deepin-daemon.install
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
  
deepin-daemon/repos/community-i686/polkit-gnome-authentication-agent-1-deepin.desktop
  deepin-daemon/repos/community-x86_64/PKGBUILD
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
  
deepin-daemon/repos/community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop

-+
 /PKGBUILD   |  172 
+
 /deepin-daemon.install  |   26 +
 /deepin-daemon.sysusers |4 
 /polkit-gnome-authentication-agent-1-deepin.desktop |  174 
++
 community-i686/PKGBUILD |   86 
 community-i686/deepin-daemon.install|   13 
 community-i686/deepin-daemon.sysusers   |2 
 community-i686/polkit-gnome-authentication-agent-1-deepin.desktop   |   87 
-
 community-x86_64/PKGBUILD   |   86 
 community-x86_64/deepin-daemon.install  |   13 
 community-x86_64/deepin-daemon.sysusers |2 
 community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop |   87 
-
 12 files changed, 376 insertions(+), 376 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 14:17:58 UTC (rev 154934)
+++ community-i686/PKGBUILD 2015-12-29 14:18:48 UTC (rev 154935)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-daemon
-pkgver=3.0.0
-_golibver=0.4.5
-_deepinapiver=3.0.0
-_dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
-_desktopbaserev=c6c243608a93ddac5a03ce3e855a830d70793187
-pkgrel=2
-pkgdesc='Daemon handling the DDE session settings'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-daemon;
-license=('GPL3')
-depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'metacity' 
'poppler-glib'
- 'rfkill' 'acpid' 'bluez' 'deepin-notifications' 'iso-codes' 
'lsb-release'
- 'mobile-broadband-provider-info' 'polkit-gnome' 'udisks2' 'upower' 
'gcc-libs>=5.3.0-3'
- 'libxkbfile' 'accountsservice')
-makedepends=('deepin-dbus-generator' 'deepin-gir-generator' 'sqlite' 'git' 
'mercurial' 'gcc-go')
-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://cr.deepin.io/dde/dde-daemon.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;
-
"git+https://cr.deepin.io/deepin-desktop-base.git#commit=$_desktopbaserev;
-'deepin-daemon.sysusers'
-'polkit-gnome-authentication-agent-1-deepin.desktop')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25'
-

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:19:08
  Author: fyan
Revision: 154936

upgpkg: deepin-session-ui 3.0.1-1

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 14:18:48 UTC (rev 154935)
+++ PKGBUILD2015-12-29 14:19:08 UTC (rev 154936)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-session-ui
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Session UI module'
 arch=('i686' 'x86_64')


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:25:55
  Author: fyan
Revision: 154913

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

Added:
  deepin-daemon/repos/community-i686/PKGBUILD
(from rev 154912, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-i686/deepin-daemon.install
(from rev 154912, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
(from rev 154912, deepin-daemon/trunk/deepin-daemon.sysusers)
  
deepin-daemon/repos/community-i686/polkit-gnome-authentication-agent-1-deepin.desktop
(from rev 154912, 
deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop)
  deepin-daemon/repos/community-x86_64/PKGBUILD
(from rev 154912, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
(from rev 154912, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
(from rev 154912, deepin-daemon/trunk/deepin-daemon.sysusers)
  
deepin-daemon/repos/community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop
(from rev 154912, 
deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop)
Deleted:
  deepin-daemon/repos/community-i686/PKGBUILD
  deepin-daemon/repos/community-i686/deepin-daemon.install
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
  
deepin-daemon/repos/community-i686/polkit-gnome-authentication-agent-1-deepin.desktop
  deepin-daemon/repos/community-x86_64/PKGBUILD
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
  
deepin-daemon/repos/community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop

-+
 /PKGBUILD   |  172 
+
 /deepin-daemon.install  |   26 +
 /deepin-daemon.sysusers |4 
 /polkit-gnome-authentication-agent-1-deepin.desktop |  174 
++
 community-i686/PKGBUILD |   85 
 community-i686/deepin-daemon.install|   13 
 community-i686/deepin-daemon.sysusers   |2 
 community-i686/polkit-gnome-authentication-agent-1-deepin.desktop   |   87 
-
 community-x86_64/PKGBUILD   |   85 
 community-x86_64/deepin-daemon.install  |   13 
 community-x86_64/deepin-daemon.sysusers |2 
 community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop |   87 
-
 12 files changed, 376 insertions(+), 374 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:25:15 UTC (rev 154912)
+++ community-i686/PKGBUILD 2015-12-29 13:25:55 UTC (rev 154913)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-daemon
-pkgver=3.0.0
-_golibver=0.4.5
-_deepinapiver=3.0.0
-_dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
-_desktopbaserev=c6c243608a93ddac5a03ce3e855a830d70793187
-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-libs>=5.3.0-3'
- 'libxkbfile' 'accountsservice')
-makedepends=('deepin-dbus-generator' 'deepin-gir-generator' 'sqlite' 'git' 
'mercurial' 'gcc-go')
-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://cr.deepin.io/dde/dde-daemon.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;
-
"git+https://cr.deepin.io/deepin-desktop-base.git#commit=$_desktopbaserev;
-'deepin-daemon.sysusers'
-'polkit-gnome-authentication-agent-1-deepin.desktop')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'4482f2c82c3652040021dd43515f131184a0417e341dc37db487117012245e25'
-

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:17:58
  Author: fyan
Revision: 154934

upgpkg: deepin-daemon 3.0.1-1

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 14:13:10 UTC (rev 154933)
+++ PKGBUILD2015-12-29 14:17:58 UTC (rev 154934)
@@ -4,13 +4,13 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-daemon
-pkgver=3.0.0
-_golibver=0.4.5
-_deepinapiver=3.0.0
+pkgver=3.0.1
+_golibver=0.4.6
+_deepinapiver=3.0.1
 _dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
+_girgeneratorver=0.9.2
 _desktopbaserev=c6c243608a93ddac5a03ce3e855a830d70793187
-pkgrel=2
+pkgrel=1
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;


[arch-commits] Commit in lib32-libldap/repos/multilib-x86_64 (4 files)

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 10:58:50
  Author: fyan
Revision: 154905

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libldap/repos/multilib-x86_64/PKGBUILD
(from rev 154904, lib32-libldap/trunk/PKGBUILD)
  lib32-libldap/repos/multilib-x86_64/ntlm.patch
(from rev 154904, lib32-libldap/trunk/ntlm.patch)
Deleted:
  lib32-libldap/repos/multilib-x86_64/PKGBUILD
  lib32-libldap/repos/multilib-x86_64/ntlm.patch

+
 PKGBUILD   |  120 +++
 ntlm.patch |  460 +--
 2 files changed, 290 insertions(+), 290 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-29 09:58:08 UTC (rev 154904)
+++ PKGBUILD2015-12-29 09:58:50 UTC (rev 154905)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Judd Vinet 
-
-_pkgbasename=libldap
-pkgname=lib32-$_pkgbasename
-pkgver=2.4.42
-pkgrel=1
-pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries 
(32-bit)"
-arch=('x86_64')
-license=('custom')
-url="http://www.openldap.org/;
-depends=('lib32-openssl' $_pkgbasename)
-makedepends=(gcc-multilib)
-source=("ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz;
-'ntlm.patch')
-md5sums=('47c8e2f283647a6105b8b0325257e922'
- '4258ddbef923d1f29f2843bc050f8c56')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd ${srcdir}/openldap-${pkgver}
-
-  patch -Np1 -i ${srcdir}/ntlm.patch
-
-  ./configure --prefix=/usr \
-  --libexecdir=/usr/sbin \
-  --sysconfdir=/etc \
- --mandir=/usr/share/man \
-  --localstatedir=/var/lib/openldap \
-  --enable-crypt --enable-dynamic \
-  --with-threads --disable-wrappers \
- --disable-spasswd --without-cyrus-sasl \
- --disable-bdb --disable-hdb --libdir=/usr/lib32
-
-  cd include
-  make
-
-  cd ../libraries
-  make depend
-  make
-
-}
-
-package() {
-  cd ${srcdir}/openldap-${pkgver}
-
-  cd include
-  make DESTDIR=${pkgdir} install
-
-  cd ../libraries
-  make DESTDIR=${pkgdir} install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/etc"
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-libldap/repos/multilib-x86_64/PKGBUILD (from rev 154904, 
lib32-libldap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-29 09:58:50 UTC (rev 154905)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer:
+# Contributor: Judd Vinet 
+
+_pkgbasename=libldap
+pkgname=lib32-$_pkgbasename
+pkgver=2.4.43
+pkgrel=1
+pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries 
(32-bit)"
+arch=('x86_64')
+license=('custom')
+url="http://www.openldap.org/;
+depends=('lib32-openssl' $_pkgbasename)
+makedepends=(gcc-multilib)
+source=("ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz;
+'ntlm.patch')
+md5sums=('49ca65e27891fcf977d78c10f073c705'
+ '4258ddbef923d1f29f2843bc050f8c56')
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd ${srcdir}/openldap-${pkgver}
+
+  patch -Np1 -i ${srcdir}/ntlm.patch
+
+  ./configure --prefix=/usr \
+  --libexecdir=/usr/sbin \
+  --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+  --localstatedir=/var/lib/openldap \
+  --enable-crypt --enable-dynamic \
+  --with-threads --disable-wrappers \
+ --disable-spasswd --without-cyrus-sasl \
+ --disable-bdb --disable-hdb --libdir=/usr/lib32
+
+  cd include
+  make
+
+  cd ../libraries
+  make depend
+  make
+
+}
+
+package() {
+  cd ${srcdir}/openldap-${pkgver}
+
+  cd include
+  make DESTDIR=${pkgdir} install
+
+  cd ../libraries
+  make DESTDIR=${pkgdir} install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/etc"
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: ntlm.patch
===
--- ntlm.patch  2015-12-29 09:58:08 UTC (rev 154904)
+++ ntlm.patch  2015-12-29 09:58:50 UTC (rev 154905)
@@ -1,230 +0,0 @@
-Patch from evolution-exchange (2.10.3).  The ldap_ntlm_bind function is
-actually called by evolution-data-server, checked at version 1.12.2.
-Without this patch, the Exchange addressbook integration uses simple binds
-with cleartext passwords.
-
-Russ checked with openldap-software for upstream's opinion on this patch
-on 2007-12-21.  Upstream had never received it as a patch submission and
-given that it's apparently only for older Exchange servers that can't do
-SASL and DIGEST-MD5, it's not very appealing.
-

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 10:58:08
  Author: fyan
Revision: 154904

upgpkg: lib32-libldap 2.4.43-1

Modified:
  lib32-libldap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 09:30:19 UTC (rev 154903)
+++ PKGBUILD2015-12-29 09:58:08 UTC (rev 154904)
@@ -4,7 +4,7 @@
 
 _pkgbasename=libldap
 pkgname=lib32-$_pkgbasename
-pkgver=2.4.42
+pkgver=2.4.43
 pkgrel=1
 pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries 
(32-bit)"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=(gcc-multilib)
 
source=("ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz;
 'ntlm.patch')
-md5sums=('47c8e2f283647a6105b8b0325257e922'
+md5sums=('49ca65e27891fcf977d78c10f073c705'
  '4258ddbef923d1f29f2843bc050f8c56')
 
 build() {


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 11:15:05
  Author: fyan
Revision: 154909

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

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

+
 /PKGBUILD  |   70 +++
 /deepin-wm.install |   24 
 community-i686/PKGBUILD|   35 -
 community-i686/deepin-wm.install   |   12 --
 community-x86_64/PKGBUILD  |   35 -
 community-x86_64/deepin-wm.install |   12 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 10:13:43 UTC (rev 154908)
+++ community-i686/PKGBUILD 2015-12-29 10:15:05 UTC (rev 154909)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-wm
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='Deepin Window Manager'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/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#tag=$pkgver;)
-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-i686/PKGBUILD (from rev 154908, 
deepin-wm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 10:15:05 UTC (rev 154909)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-wm
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Deepin Window Manager'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/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://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
+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
+}

Deleted: community-i686/deepin-wm.install
===
--- community-i686/deepin-wm.install2015-12-29 10:13:43 UTC (rev 154908)
+++ community-i686/deepin-wm.install2015-12-29 10:15:05 UTC (rev 154909)
@@ -1,12 +0,0 @@
-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-i686/deepin-wm.install (from rev 154908, 
deepin-wm/trunk/deepin-wm.install)
===
--- community-i686/deepin-wm.install(rev 0)
+++ community-i686/deepin-wm.install2015-12-29 10:15:05 UTC (rev 154909)
@@ -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
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 10:13:43 UTC (rev 154908)
+++ community-x86_64/PKGBUILD   2015-12-29 10:15:05 UTC (rev 154909)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-wm
-pkgver=1.0.0
-pkgrel=1

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 11:13:43
  Author: fyan
Revision: 154908

upgpkg: deepin-wm 1.0.1-1

Modified:
  deepin-wm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 10:03:38 UTC (rev 154907)
+++ PKGBUILD2015-12-29 10:13:43 UTC (rev 154908)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-wm
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc='Deepin Window Manager'
 arch=('i686' 'x86_64')
@@ -14,7 +14,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://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
 sha256sums=('SKIP')
 
 prepare() {


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

2015-12-29 Thread Sergej Pupykin
Date: Tuesday, December 29, 2015 @ 14:45:04
  Author: spupykin
Revision: 154916

upgpkg: darktable 2.0.0-4

upd

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:42:23 UTC (rev 154915)
+++ PKGBUILD2015-12-29 13:45:04 UTC (rev 154916)
@@ -5,7 +5,7 @@
 
 pkgname=darktable
 pkgver=2.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Utility to organize and develop raw images"
 arch=('i686' 'x86_64')
 url=http://darktable.sf.net/
@@ -12,8 +12,8 @@
 license=('GPL3')
 depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
 'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
-'libsoup' 'gtk3' 'pugixml' 'osm-gps-map-gtk3' 'json-glib' 'flickcurl' 
'lua52' 'colord'
-'graphicsmagick')
+'libsoup' 'gtk3' 'pugixml' 'osm-gps-map-gtk3' 'json-glib' 'flickcurl' 
'lua52'
+'colord' 'colord-gtk' 'graphicsmagick')
 makedepends=('intltool>=0.40' 'cmake' 'librsvg')
 optdepends=('librsvg')
 install=darktable.install


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

2015-12-29 Thread Sergej Pupykin
Date: Tuesday, December 29, 2015 @ 14:45:21
  Author: spupykin
Revision: 154917

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

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

+
 /PKGBUILD  |  102 +++
 /darktable.install |   22 +++
 community-i686/PKGBUILD|   51 -
 community-i686/darktable.install   |   11 ---
 community-x86_64/PKGBUILD  |   51 -
 community-x86_64/darktable.install |   11 ---
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:45:04 UTC (rev 154916)
+++ community-i686/PKGBUILD 2015-12-29 13:45:21 UTC (rev 154917)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer:  Christian Himpel 
-# Contributor: Johannes Hanika 
-
-pkgname=darktable
-pkgver=2.0.0
-pkgrel=3
-pkgdesc="Utility to organize and develop raw images"
-arch=('i686' 'x86_64')
-url=http://darktable.sf.net/
-license=('GPL3')
-depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
-'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
-'libsoup' 'gtk3' 'pugixml' 'osm-gps-map-gtk3' 'json-glib' 'flickcurl' 
'lua52' 'colord'
-'graphicsmagick')
-makedepends=('intltool>=0.40' 'cmake' 'librsvg')
-optdepends=('librsvg')
-install=darktable.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)
-md5sums=('1a95dd4d7dce7c9d76988d0cca003a5f')
-
-build() {
-  cd "$srcdir/$pkgname-release-$pkgver"
-  mkdir -p build
-  cd build
-  CXXFLAGS+=" -fpermissive"
-  cmake \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBINARY_PACKAGE_BUILD=1 \
-  -DBUILD_USERMANUAL=False \
-  -DUSE_LIBSECRET=On \
-  -DUSE_LUA=On \
-  -DUSE_GNOME_KEYRING=Off \
-  -DUSE_COLORD=On \
-  -DPROJECT_VERSION=$pkgver \
-  ..
-  make
-
-  cd ../tools/basecurve
-  cmake .
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-release-$pkgver/build"
-  make DESTDIR="$pkgdir" install
-  install -Dm0755 ../tools/basecurve/dt-curve-tool 
$pkgdir/usr/bin/dt-curve-tool
-  install -Dm0755 ../tools/basecurve/dt-curve-tool-helper 
$pkgdir/usr/bin/dt-curve-tool-helper
-}

Copied: darktable/repos/community-i686/PKGBUILD (from rev 154916, 
darktable/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 13:45:21 UTC (rev 154917)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer:  Christian Himpel 
+# Contributor: Johannes Hanika 
+
+pkgname=darktable
+pkgver=2.0.0
+pkgrel=4
+pkgdesc="Utility to organize and develop raw images"
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
+'libsoup' 'gtk3' 'pugixml' 'osm-gps-map-gtk3' 'json-glib' 'flickcurl' 
'lua52'
+'colord' 'colord-gtk' 'graphicsmagick')
+makedepends=('intltool>=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)
+md5sums=('1a95dd4d7dce7c9d76988d0cca003a5f')
+
+build() {
+  cd "$srcdir/$pkgname-release-$pkgver"
+  mkdir -p build
+  cd build
+  CXXFLAGS+=" -fpermissive"
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBINARY_PACKAGE_BUILD=1 \
+  -DBUILD_USERMANUAL=False \
+  -DUSE_LIBSECRET=On \
+  -DUSE_LUA=On \
+  -DUSE_GNOME_KEYRING=Off \
+  -DUSE_COLORD=On \
+  -DPROJECT_VERSION=$pkgver \
+  ..
+  make
+
+  cd ../tools/basecurve
+  cmake .
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-release-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+  install -Dm0755 ../tools/basecurve/dt-curve-tool 
$pkgdir/usr/bin/dt-curve-tool
+  install -Dm0755 ../tools/basecurve/dt-curve-tool-helper 
$pkgdir/usr/bin/dt-curve-tool-helper
+}

Deleted: 

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:12:43
  Author: fyan
Revision: 154932

upgpkg: deepin-control-center 3.0.1-1

Modified:
  deepin-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 14:08:09 UTC (rev 154931)
+++ PKGBUILD2015-12-29 14:12:43 UTC (rev 154932)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-control-center
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='New control center for linux deepin'
 arch=('i686' 'x86_64')


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

2015-12-29 Thread Evangelos Foutras
Date: Tuesday, December 29, 2015 @ 12:16:36
  Author: foutrelis
Revision: 257365

upgpkg: audacious-plugins 3.7.1-1

New upstream release.

Modified:
  audacious-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 11:13:16 UTC (rev 257364)
+++ PKGBUILD2015-12-29 11:16:36 UTC (rev 257365)
@@ -5,8 +5,8 @@
 # Contributor: William Rea 
 
 pkgname=audacious-plugins
-pkgver=3.7
-pkgrel=3
+pkgver=3.7.1
+pkgrel=1
 pkgdesc="Plugins for Audacious"
 arch=('i686' 'x86_64')
 url="http://audacious-media-player.org/;
@@ -46,7 +46,7 @@
 'libcue: CUE playlist format')
 
 source=(http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('3856e9f7261cbb27b5e15246ee3959189ab950389ef02aaec27d645a0a516c2c')
+sha256sums=('228a384f26afb99166776d3454539956aa00fde90dcb4612ce8910ed4116')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2015-12-29 Thread Evangelos Foutras
Date: Tuesday, December 29, 2015 @ 12:16:45
  Author: foutrelis
Revision: 257366

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

Added:
  audacious-plugins/repos/extra-i686/PKGBUILD
(from rev 257365, audacious-plugins/trunk/PKGBUILD)
  audacious-plugins/repos/extra-x86_64/PKGBUILD
(from rev 257365, audacious-plugins/trunk/PKGBUILD)
Deleted:
  audacious-plugins/repos/extra-i686/PKGBUILD
  audacious-plugins/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-29 11:16:36 UTC (rev 257365)
+++ extra-i686/PKGBUILD 2015-12-29 11:16:45 UTC (rev 257366)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Gaetan Bisson 
-# Contributor: Alexander Fehr 
-# Contributor: William Rea 
-
-pkgname=audacious-plugins
-pkgver=3.7
-pkgrel=3
-pkgdesc="Plugins for Audacious"
-arch=('i686' 'x86_64')
-url="http://audacious-media-player.org/;
-license=('BSD' 'GPL')
-
-makedepends=("audacious>=$pkgver"
- 'glib2' 'python2' # for gdbus-codegen
- 'alsa-lib' 'pulseaudio' 'jack2' 'lame' 'libvorbis' 'flac'
- 'mpg123' 'faad2' 'ffmpeg' 'libmodplug' 'fluidsynth' 
'libcdio-paranoia' 'libsidplayfp' 'wavpack'
- 'dbus-glib' 'libnotify' 'lirc' 'curl' 'libmtp'
- 'neon' 'libmms' 'libcue')
-
-optdepends=('alsa-lib: Advanced Linux Sound Arch. output'
-'pulseaudio: PulseAudio output'
-'jack2: Jack Audio Connection Kit output'
-'lame: FileWriter MP3 output'
-'libvorbis: Vorbis input, FileWriter Vorbis output'
-'flac: FLAC input, FileWriter FLAC output'
-
-'mpg123: MP3 input'
-'faad2: AAC input'
-'ffmpeg: ffaudio input'
-'libmodplug: modplug input'
-'fluidsynth: MIDI FluidSynth backend input'
-'libcdio-paranoia: CD Digital Audio input'
-'libsidplayfp: Commodore 64 audio input'
-'wavpack: WavPack input'
-
-'dbus-glib: Gnome Shortcuts Plugin'
-'libnotify: libnotify OSD'
-'lirc: LIRC'
-'curl: AudioScrobbler Client'
-'libmtp: Upload to MTP device'
-
-'neon: neon-based http transport'
-'libmms: libmms-based mms transport'
-'libcue: CUE playlist format')
-
-source=(http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('3856e9f7261cbb27b5e15246ee3959189ab950389ef02aaec27d645a0a516c2c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---enable-amidiplug \
---disable-adplug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: audacious-plugins/repos/extra-i686/PKGBUILD (from rev 257365, 
audacious-plugins/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-29 11:16:45 UTC (rev 257366)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Gaetan Bisson 
+# Contributor: Alexander Fehr 
+# Contributor: William Rea 
+
+pkgname=audacious-plugins
+pkgver=3.7.1
+pkgrel=1
+pkgdesc="Plugins for Audacious"
+arch=('i686' 'x86_64')
+url="http://audacious-media-player.org/;
+license=('BSD' 'GPL')
+
+makedepends=("audacious>=$pkgver"
+ 'glib2' 'python2' # for gdbus-codegen
+ 'alsa-lib' 'pulseaudio' 'jack2' 'lame' 'libvorbis' 'flac'
+ 'mpg123' 'faad2' 'ffmpeg' 'libmodplug' 'fluidsynth' 
'libcdio-paranoia' 'libsidplayfp' 'wavpack'
+ 'dbus-glib' 'libnotify' 'lirc' 'curl' 'libmtp'
+ 'neon' 'libmms' 'libcue')
+
+optdepends=('alsa-lib: Advanced Linux Sound Arch. output'
+'pulseaudio: PulseAudio output'
+'jack2: Jack Audio Connection Kit output'
+'lame: FileWriter MP3 output'
+'libvorbis: Vorbis input, FileWriter Vorbis output'
+'flac: FLAC input, FileWriter FLAC output'
+
+'mpg123: MP3 input'
+'faad2: AAC input'
+'ffmpeg: ffaudio input'
+'libmodplug: modplug input'
+'fluidsynth: MIDI FluidSynth backend input'
+'libcdio-paranoia: CD Digital Audio input'
+'libsidplayfp: Commodore 64 audio input'
+'wavpack: WavPack input'
+
+'dbus-glib: Gnome 

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:25:15
  Author: fyan
Revision: 154912

upgpkg: deepin-daemon 3.0.0-2

add a hack to stop daemon crashing 
(https://github.com/fasheng/arch-deepin/issues/209)

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 11:02:48 UTC (rev 154911)
+++ PKGBUILD2015-12-29 13:25:15 UTC (rev 154912)
@@ -10,7 +10,7 @@
 _dbusfactoryver=3.0.0
 _girgeneratorver=0.9.1
 _desktopbaserev=c6c243608a93ddac5a03ce3e855a830d70793187
-pkgrel=1
+pkgrel=2
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;
@@ -46,6 +46,7 @@
 prepare() {
   sed -i "s|\"\${GOLDFLAGS}\"|\"\${GOLDFLAGS} $CFLAGS $LDFLAGS\"|" 
dde-daemon/Makefile
   sed -i 's| generator$||' go-gir-generator/makefile
+  sed -i '/loadItemsInfo(im, cm)/d' dde-daemon/launcher/main.go
 
   export GOPATH="$srcdir/build"
   mkdir -p build/src/pkg.deepin.io/{lib,dde/api}


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:52:25
  Author: fyan
Revision: 154922

upgpkg: deepin-dock 3.0.1-1

Modified:
  deepin-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:47:55 UTC (rev 154921)
+++ PKGBUILD2015-12-29 13:52:25 UTC (rev 154922)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dock
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('i686' 'x86_64')


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:52:54
  Author: fyan
Revision: 154923

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:52:25 UTC (rev 154922)
+++ community-i686/PKGBUILD 2015-12-29 13:52:54 UTC (rev 154923)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=3.0.0
-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')
-makedepends=('git')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-i686/PKGBUILD (from rev 154922, 
deepin-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 13:52:54 UTC (rev 154923)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=3.0.1
+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')
+makedepends=('git')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 13:52:25 UTC (rev 154922)
+++ community-x86_64/PKGBUILD   2015-12-29 13:52:54 UTC (rev 154923)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=3.0.0
-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')
-makedepends=('git')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-x86_64/PKGBUILD (from rev 154922, 
deepin-dock/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-29 13:52:54 UTC (rev 154923)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=3.0.1
+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')
+makedepends=('git')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2015-12-29 Thread Daniel Micay
Date: Tuesday, December 29, 2015 @ 15:05:02
  Author: thestinger
Revision: 154926

upgpkg: linux-grsec 4.3.3.201512282134-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:55:23 UTC (rev 154925)
+++ PKGBUILD2015-12-29 14:05:02 UTC (rev 154926)
@@ -9,7 +9,7 @@
 _srcname=linux-4.3
 _pkgver=4.3.3
 _grsecver=3.1
-_timestamp=20151129
+_timestamp=201512282134
 _grsec_patch="grsecurity-$_grsecver-$_pkgver-$_timestamp.patch"
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -34,7 +34,7 @@
 'SKIP'
 '95cd81fcbb87953f672150d60950548edc04a88474c42de713b91811557fefa5'
 'SKIP'
-'59f2f5ee4e921a9f4a1601e7069eb46c768782441e678b873ddbfb607253ab67'
+'8b4d18d5e443ab814ce1d4f2f5e3a189fdfcc69f93d550c5954fe6ba8a2db76f'
 'SKIP'
 '6beef54b29575e93d27f390857f8de92d21bc5c726671d24e182eefe54d541c6'
 'ccf8cde2be433a374e672c6cc5c4920e6b2d1541fab1183ea49258090c077d00'


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

2015-12-29 Thread Evangelos Foutras
Date: Tuesday, December 29, 2015 @ 12:13:06
  Author: foutrelis
Revision: 257363

upgpkg: audacious 3.7.1-1

New upstream release.

Modified:
  audacious/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 07:55:31 UTC (rev 257362)
+++ PKGBUILD2015-12-29 11:13:06 UTC (rev 257363)
@@ -5,8 +5,8 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=audacious
-pkgver=3.7
-pkgrel=3
+pkgver=3.7.1
+pkgrel=1
 pkgdesc="Lightweight, advanced audio player focused on audio quality"
 arch=('i686' 'x86_64')
 url="http://audacious-media-player.org/;
@@ -20,7 +20,7 @@
 replaces=('audacious-player')
 install=$pkgname.install
 source=(http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4e5a74394c85b1135fc5a89dcc3a03601cddc53af060f587e489352d1fc9cf67')
+sha256sums=('c8366870aea21d5f4a5a282dee45fba99390e4e3d5164cd119e343f79e9ecbbf')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2015-12-29 Thread Evangelos Foutras
Date: Tuesday, December 29, 2015 @ 12:13:16
  Author: foutrelis
Revision: 257364

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

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

+
 /PKGBUILD  |   80 +++
 /audacious.install |   28 +
 extra-i686/PKGBUILD|   40 ---
 extra-i686/audacious.install   |   14 --
 extra-x86_64/PKGBUILD  |   40 ---
 extra-x86_64/audacious.install |   14 --
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-12-29 11:13:06 UTC (rev 257363)
+++ extra-i686/PKGBUILD 2015-12-29 11:13:16 UTC (rev 257364)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Gaetan Bisson 
-# Contributor: Alexander Fehr 
-# Contributor: Giovanni Scafora 
-
-pkgname=audacious
-pkgver=3.7
-pkgrel=3
-pkgdesc="Lightweight, advanced audio player focused on audio quality"
-arch=('i686' 'x86_64')
-url="http://audacious-media-player.org/;
-license=('BSD')
-depends=('gtk2' 'glib2' 'libguess' 'libsm' 'audacious-plugins'
- 'gnome-icon-theme' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('python2') # for gdbus-codegen
-optdepends=('unzip: zipped skins support')
-provides=('audacious-player')
-conflicts=('audacious-player')
-replaces=('audacious-player')
-install=$pkgname.install
-source=(http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4e5a74394c85b1135fc5a89dcc3a03601cddc53af060f587e489352d1fc9cf67')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---with-buildstamp='Arch Linux'
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: audacious/repos/extra-i686/PKGBUILD (from rev 257363, 
audacious/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-12-29 11:13:16 UTC (rev 257364)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Gaetan Bisson 
+# Contributor: Alexander Fehr 
+# Contributor: Giovanni Scafora 
+
+pkgname=audacious
+pkgver=3.7.1
+pkgrel=1
+pkgdesc="Lightweight, advanced audio player focused on audio quality"
+arch=('i686' 'x86_64')
+url="http://audacious-media-player.org/;
+license=('BSD')
+depends=('gtk2' 'glib2' 'libguess' 'libsm' 'audacious-plugins'
+ 'gnome-icon-theme' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('python2') # for gdbus-codegen
+optdepends=('unzip: zipped skins support')
+provides=('audacious-player')
+conflicts=('audacious-player')
+replaces=('audacious-player')
+install=$pkgname.install
+source=(http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c8366870aea21d5f4a5a282dee45fba99390e4e3d5164cd119e343f79e9ecbbf')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--with-buildstamp='Arch Linux'
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/audacious.install
===
--- extra-i686/audacious.install2015-12-29 11:13:06 UTC (rev 257363)
+++ extra-i686/audacious.install2015-12-29 11:13:16 UTC (rev 257364)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: audacious/repos/extra-i686/audacious.install (from rev 257363, 
audacious/trunk/audacious.install)
===
--- extra-i686/audacious.install(rev 0)
+++ extra-i686/audacious.install2015-12-29 11:13:16 UTC (rev 257364)
@@ -0,0 +1,14 @@
+post_install() {
+  

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

2015-12-29 Thread Daniel Micay
Date: Tuesday, December 29, 2015 @ 15:06:50
  Author: thestinger
Revision: 154928

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

Added:
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 154927, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 154927, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 154927, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 154927, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 154927, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 154927, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 154927, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 154927, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 154927, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 154927, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 154927, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 154927, linux-grsec/trunk/linux.preset)
Deleted:
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset

+
 /PKGBUILD  |  650 
 /change-default-console-loglevel.patch |   22 
 /config|15752 +++
 /config.x86_64 |15158 ++
 /linux-grsec.install   |   74 
 /linux.preset  |   28 
 community-i686/PKGBUILD|  325 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 7876 ---
 community-i686/config.x86_64   | 7579 ---
 community-i686/linux-grsec.install |   37 
 community-i686/linux.preset|   14 
 community-x86_64/PKGBUILD  |  325 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 7876 ---
 community-x86_64/config.x86_64 | 7579 ---
 community-x86_64/linux-grsec.install   |   37 
 community-x86_64/linux.preset  |   14 
 18 files changed, 31684 insertions(+), 31684 deletions(-)

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


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:06:51
  Author: fyan
Revision: 154929

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 14:06:50 UTC (rev 154928)
+++ community-i686/PKGBUILD 2015-12-29 14:06:51 UTC (rev 154929)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-api
-pkgver=3.0.0
-_golibver=0.4.5
-_dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
-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-libs>=5.3.0-3' 'poppler-glib' 'deepin-metacity' 'xcur2png')
-makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'bzr' 
'gcc-go')
-conflicts=('dde-api')
-replaces=('dde-api')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-api.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i "s|\"\${LDFLAGS}\"|\"\${LDFLAGS} $CFLAGS $LDFLAGS\"|" dde-api/Makefile
-  sed -i 's| generator$||' go-gir-generator/makefile
-
-  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/go-gir-generator"
-  make GENERATOR=gir-generator build
-  make copyfile
-  cp -r out/src/gir "$GOPATH/src"/
-
-  cd "$srcdir/dde-api"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd dde-api
-  make DESTDIR="${pkgdir}" SYSTEMD_LIB_DIR=/usr/lib install-binary
-}

Copied: deepin-api/repos/community-i686/PKGBUILD (from rev 154927, 
deepin-api/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 14:06:51 UTC (rev 154929)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=3.0.1
+_golibver=0.4.6
+_dbusfactoryver=3.0.0
+_girgeneratorver=0.9.2
+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-libs>=5.3.0-3' 'poppler-glib' 'deepin-metacity' 'xcur2png')
+makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'bzr' 
'gcc-go')
+conflicts=('dde-api')
+replaces=('dde-api')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-api.git#tag=$pkgver;
+"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
+"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
+"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i "s|\"\${LDFLAGS}\"|\"\${LDFLAGS} $CFLAGS $LDFLAGS\"|" dde-api/Makefile
+  sed -i 's| generator$||' go-gir-generator/makefile
+
+  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/go-gir-generator"
+  make GENERATOR=gir-generator build
+  make copyfile
+  cp -r out/src/gir "$GOPATH/src"/
+
+  cd "$srcdir/dde-api"
+  make USE_GCCGO=1
+}
+
+package() {
+  cd dde-api
+  make DESTDIR="${pkgdir}" SYSTEMD_LIB_DIR=/usr/lib install-binary
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 14:06:50 UTC (rev 154928)
+++ community-x86_64/PKGBUILD   2015-12-29 14:06:51 UTC 

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:05:23
  Author: fyan
Revision: 154927

upgpkg: deepin-api 3.0.1-1

Modified:
  deepin-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 14:05:02 UTC (rev 154926)
+++ PKGBUILD2015-12-29 14:05:23 UTC (rev 154927)
@@ -4,10 +4,10 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-api
-pkgver=3.0.0
-_golibver=0.4.5
+pkgver=3.0.1
+_golibver=0.4.6
 _dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
+_girgeneratorver=0.9.2
 pkgrel=1
 pkgdesc='Go-lang bingdings for dde-daemon'
 arch=('i686' 'x86_64')


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:20:26
  Author: fyan
Revision: 154937

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 14:19:08 UTC (rev 154936)
+++ community-i686/PKGBUILD 2015-12-29 14:20:26 UTC (rev 154937)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=3.0.0
-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://cr.deepin.io/dde/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-i686/PKGBUILD (from rev 154936, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 14:20:26 UTC (rev 154937)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=3.0.1
+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://cr.deepin.io/dde/dde-session-ui.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "dde-session-ui"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "dde-session-ui"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-12-29 14:19:08 UTC (rev 154936)
+++ community-x86_64/PKGBUILD   2015-12-29 14:20:26 UTC (rev 154937)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=3.0.0
-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://cr.deepin.io/dde/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-x86_64/PKGBUILD (from rev 154936, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-12-29 14:20:26 UTC (rev 154937)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=3.0.1
+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')

[arch-commits] Commit in lib32-libpng/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 11:03:38
  Author: fyan
Revision: 154907

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libpng/repos/multilib-x86_64/PKGBUILD
(from rev 154906, lib32-libpng/trunk/PKGBUILD)
Deleted:
  lib32-libpng/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-29 10:02:59 UTC (rev 154906)
+++ PKGBUILD2015-12-29 10:03:38 UTC (rev 154907)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: dorphell 
-# Contributor: Travis Willard 
-# Contributor: Douglas Soares de Andrade 
-
-_pkgbasename=libpng
-pkgname=lib32-$_pkgbasename
-pkgver=1.6.19
-_apngver=1.6.19
-_libversion=16
-pkgrel=1
-pkgdesc="A collection of routines used to create PNG format graphics files 
(32-bit)"
-arch=('x86_64')
-url="http://www.libpng.org/pub/png/libpng.html;
-license=('custom')
-depends=('lib32-zlib' $_pkgbasename)
-makedepends=(gcc-multilib)
-options=('!libtool')
-source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz"{,.asc}
-
"http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
-md5sums=('1e6a458429e850fc93c1f3b6dc00a48f'
- 'SKIP'
- 'b215830867151242fb4ef9d246f050c4')
-validpgpkeys=(8048643BA2C840F4F92A195FF54984BFA16C640F)
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  # Add animated PNG (apng) support
-  # see http://sourceforge.net/projects/libpng-apng/
-  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32 
--disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  cd contrib/pngminus
-  make PNGLIB="-L${pkgdir}/usr/lib32 -lpng" -f makefile.std png2pnm pnm2png
-
-  rm -rf "${pkgdir}"/usr/{include,share}
-
-  rm "$pkgdir/usr/bin/libpng-config"
-  ln -s "libpng${_libversion}-config-32" "$pkgdir/usr/bin/libpng-config-32"
-
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-libpng/repos/multilib-x86_64/PKGBUILD (from rev 154906, 
lib32-libpng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-29 10:03:38 UTC (rev 154907)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+_pkgbasename=libpng
+pkgname=lib32-$_pkgbasename
+pkgver=1.6.20
+_apngver=1.6.20
+_libversion=16
+pkgrel=1
+pkgdesc="A collection of routines used to create PNG format graphics files 
(32-bit)"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('lib32-zlib' $_pkgbasename)
+makedepends=(gcc-multilib)
+options=('!libtool')
+source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz"{,.asc}
+
"http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
+md5sums=('3968acb7c66ef81a9dab867f35d0eb4b'
+ 'SKIP'
+ 'b2186d5e7853890e25b34b03c7f2ddde')
+validpgpkeys=(8048643BA2C840F4F92A195FF54984BFA16C640F)
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32 
--disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  cd contrib/pngminus
+  make PNGLIB="-L${pkgdir}/usr/lib32 -lpng" -f makefile.std png2pnm pnm2png
+
+  rm -rf "${pkgdir}"/usr/{include,share}
+
+  rm "$pkgdir/usr/bin/libpng-config"
+  ln -s "libpng${_libversion}-config-32" "$pkgdir/usr/bin/libpng-config-32"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 11:02:59
  Author: fyan
Revision: 154906

upgpkg: lib32-libpng 1.6.20-1

Modified:
  lib32-libpng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 09:58:50 UTC (rev 154905)
+++ PKGBUILD2015-12-29 10:02:59 UTC (rev 154906)
@@ -6,8 +6,8 @@
 
 _pkgbasename=libpng
 pkgname=lib32-$_pkgbasename
-pkgver=1.6.19
-_apngver=1.6.19
+pkgver=1.6.20
+_apngver=1.6.20
 _libversion=16
 pkgrel=1
 pkgdesc="A collection of routines used to create PNG format graphics files 
(32-bit)"
@@ -19,9 +19,9 @@
 options=('!libtool')
 
source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz"{,.asc}
 
"http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
-md5sums=('1e6a458429e850fc93c1f3b6dc00a48f'
+md5sums=('3968acb7c66ef81a9dab867f35d0eb4b'
  'SKIP'
- 'b215830867151242fb4ef9d246f050c4')
+ 'b2186d5e7853890e25b34b03c7f2ddde')
 validpgpkeys=(8048643BA2C840F4F92A195FF54984BFA16C640F)
 
 build() {


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:08:09
  Author: fyan
Revision: 154931

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 14:07:09 UTC (rev 154930)
+++ community-i686/PKGBUILD 2015-12-29 14:08:09 UTC (rev 154931)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=startdde
-pkgver=3.0.0
-_golibver=0.4.5
-_deepinapiver=3.0.0
-_dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
-pkgrel=1
-pkgdesc="starter of deepin desktop environment"
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/startdde;
-license=('GPL3')
-depends=('gcc-libs>=5.3.0-3' 'deepin-daemon' 'deepin-wm-switcher')
-makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 
'deepin-gir-generator' 'gcc-go' 'python2' 'webkitgtk' 'git')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/startdde.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i "s|\"\${GOLDFLAGS}\"|\"\${GOLDFLAGS} $CFLAGS $LDFLAGS\"|" 
startdde/Makefile
-  sed -i 's| generator$||' go-gir-generator/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/go-gir-generator"
-  make GENERATOR=gir-generator build
-  make copyfile
-  cp -r out/src/gir "$GOPATH/src"/
-
-  cd "$srcdir/startdde"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd startdde
-  make DESTDIR="${pkgdir}" install
-}

Copied: startdde/repos/community-i686/PKGBUILD (from rev 154930, 
startdde/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 14:08:09 UTC (rev 154931)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=3.0.0
+_golibver=0.4.6
+_deepinapiver=3.0.1
+_dbusfactoryver=3.0.0
+_girgeneratorver=0.9.2
+pkgrel=2
+pkgdesc="starter of deepin desktop environment"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('gcc-libs>=5.3.0-3' 'deepin-daemon' 'deepin-wm-switcher')
+makedepends=('cmake' 'coffee-script' 'deepin-dbus-generator' 
'deepin-gir-generator' 'gcc-go' 'python2' 'webkitgtk' 'git')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/startdde.git#tag=$pkgver;
+"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
+"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
+"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
+"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i "s|\"\${GOLDFLAGS}\"|\"\${GOLDFLAGS} $CFLAGS $LDFLAGS\"|" 
startdde/Makefile
+  sed -i 's| generator$||' go-gir-generator/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/go-gir-generator"
+  make GENERATOR=gir-generator build
+  make copyfile
+  cp -r out/src/gir "$GOPATH/src"/
+
+  cd "$srcdir/startdde"
+  make USE_GCCGO=1
+}
+
+package() {
+  cd startdde
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 15:07:09
  Author: fyan
Revision: 154930

upgpkg: startdde 3.0.0-2

rebuild against new deepin go libraries

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 14:06:51 UTC (rev 154929)
+++ PKGBUILD2015-12-29 14:07:09 UTC (rev 154930)
@@ -5,11 +5,11 @@
 
 pkgname=startdde
 pkgver=3.0.0
-_golibver=0.4.5
-_deepinapiver=3.0.0
+_golibver=0.4.6
+_deepinapiver=3.0.1
 _dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
-pkgrel=1
+_girgeneratorver=0.9.2
+pkgrel=2
 pkgdesc="starter of deepin desktop environment"
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/startdde;


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

2015-12-29 Thread Evangelos Foutras
Date: Tuesday, December 29, 2015 @ 12:02:40
  Author: foutrelis
Revision: 154910

upgpkg: php-geoip 1.1.0-2

PHP 7 rebuild.

Modified:
  php-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 10:15:05 UTC (rev 154909)
+++ PKGBUILD2015-12-29 11:02:40 UTC (rev 154910)
@@ -3,18 +3,21 @@
 
 pkgname=php-geoip
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
+_svnrev=337409
 pkgdesc="GeoIP module for PHP"
 arch=('i686' 'x86_64')
 url="http://pecl.php.net/package/geoip;
 license=('PHP')
 depends=('php' 'geoip')
+makedepends=('subversion')
 backup=('etc/php/conf.d/geoip.ini')
-source=(http://pecl.php.net/get/geoip-$pkgver.tgz)
-sha256sums=('82c6deb7264d2ff7c4d6c45a7d27cff7ab097be965795e317e04a9c5b7be98b9')
+#source=(http://pecl.php.net/get/geoip-$pkgver.tgz)
+source=("$pkgname::svn+https://svn.php.net/repository/pecl/geoip/trunk#revision=$_svnrev;)
+sha256sums=('SKIP')
 
 build() {
-  cd "$srcdir/geoip-$pkgver"
+  cd "$srcdir/$pkgname"
 
   phpize
   ./configure --prefix=/usr
@@ -22,7 +25,7 @@
 }
 
 package() {
-  cd "$srcdir/geoip-$pkgver"
+  cd "$srcdir/$pkgname"
 
   make INSTALL_ROOT="$pkgdir" install
   echo ';extension=geoip.so' >geoip.ini


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

2015-12-29 Thread Evangelos Foutras
Date: Tuesday, December 29, 2015 @ 12:02:48
  Author: foutrelis
Revision: 154911

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

Added:
  php-geoip/repos/community-staging-i686/
  php-geoip/repos/community-staging-i686/PKGBUILD
(from rev 154910, php-geoip/trunk/PKGBUILD)
  php-geoip/repos/community-staging-x86_64/
  php-geoip/repos/community-staging-x86_64/PKGBUILD
(from rev 154910, php-geoip/trunk/PKGBUILD)

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

Copied: php-geoip/repos/community-staging-i686/PKGBUILD (from rev 154910, 
php-geoip/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-29 11:02:48 UTC (rev 154911)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-geoip
+pkgver=1.1.0
+pkgrel=2
+_svnrev=337409
+pkgdesc="GeoIP module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/geoip;
+license=('PHP')
+depends=('php' 'geoip')
+makedepends=('subversion')
+backup=('etc/php/conf.d/geoip.ini')
+#source=(http://pecl.php.net/get/geoip-$pkgver.tgz)
+source=("$pkgname::svn+https://svn.php.net/repository/pecl/geoip/trunk#revision=$_svnrev;)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=geoip.so' >geoip.ini
+  install -Dm644 geoip.ini "$pkgdir/etc/php/conf.d/geoip.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-geoip/repos/community-staging-x86_64/PKGBUILD (from rev 154910, 
php-geoip/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-29 11:02:48 UTC (rev 154911)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-geoip
+pkgver=1.1.0
+pkgrel=2
+_svnrev=337409
+pkgdesc="GeoIP module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/geoip;
+license=('PHP')
+depends=('php' 'geoip')
+makedepends=('subversion')
+backup=('etc/php/conf.d/geoip.ini')
+#source=(http://pecl.php.net/get/geoip-$pkgver.tgz)
+source=("$pkgname::svn+https://svn.php.net/repository/pecl/geoip/trunk#revision=$_svnrev;)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=geoip.so' >geoip.ini
+  install -Dm644 geoip.ini "$pkgdir/etc/php/conf.d/geoip.ini"
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:55:23
  Author: fyan
Revision: 154925

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

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

--+
 /PKGBUILD|  120 +
 /deepin-file-manager.install |   22 
 community-i686/PKGBUILD  |   60 
 community-i686/deepin-file-manager.install   |   11 --
 community-x86_64/PKGBUILD|   60 
 community-x86_64/deepin-file-manager.install |   11 --
 6 files changed, 142 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-29 13:54:54 UTC (rev 154924)
+++ community-i686/PKGBUILD 2015-12-29 13:55:23 UTC (rev 154925)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=0.1.5
-_golibver=0.4.5
-_deepinapiver=3.0.0
-_dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
-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-libs>=5.3.0-3')
-makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'gcc-go')
-replaces=('deepin-file-manager-backend')
-install="${pkgname}.install"
-source=("git+https://cr.deepin.io/deepin-file-manager.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i "s|\"\${GOLDFLAGS}\"|\"\${GOLDFLAGS} $CFLAGS $LDFLAGS\"|" 
deepin-file-manager/Makefile
-  sed -i 's| generator$||' go-gir-generator/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/howeyc/fsnotify github.com/mattn/go-sqlite3
-}
-
-build() {
-  cd "$srcdir/dbus-factory"
-  make install-golang
-
-  cd "$srcdir/go-gir-generator"
-  make GENERATOR=gir-generator build
-  make copyfile
-  cp -r out/src/gir "$GOPATH/src"/
-
-  cd "$srcdir/$pkgname"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" do-install
-}

Copied: deepin-file-manager/repos/community-i686/PKGBUILD (from rev 154924, 
deepin-file-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-29 13:55:23 UTC (rev 154925)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=0.1.6
+_golibver=0.4.6
+_deepinapiver=3.0.1
+_dbusfactoryver=3.0.0
+_girgeneratorver=0.9.2
+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-libs>=5.3.0-3')
+makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'gcc-go')
+replaces=('deepin-file-manager-backend')
+install="${pkgname}.install"
+source=("git+https://cr.deepin.io/deepin-file-manager.git#tag=$pkgver;
+"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
+"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
+"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
+"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i 

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

2015-12-29 Thread Felix Yan
Date: Tuesday, December 29, 2015 @ 14:54:54
  Author: fyan
Revision: 154924

upgpkg: deepin-file-manager 0.1.6-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-29 13:52:54 UTC (rev 154923)
+++ PKGBUILD2015-12-29 13:54:54 UTC (rev 154924)
@@ -4,11 +4,11 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=0.1.5
-_golibver=0.4.5
-_deepinapiver=3.0.0
+pkgver=0.1.6
+_golibver=0.4.6
+_deepinapiver=3.0.1
 _dbusfactoryver=3.0.0
-_girgeneratorver=0.9.1
+_girgeneratorver=0.9.2
 pkgrel=1
 pkgdesc='deepin file manager backend'
 arch=('i686' 'x86_64')