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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 02:06:57
  Author: heftig
Revision: 276903

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  clutter-gtk/repos/gnome-unstable-i686/
  clutter-gtk/repos/gnome-unstable-i686/PKGBUILD
(from rev 276902, clutter-gtk/trunk/PKGBUILD)
  clutter-gtk/repos/gnome-unstable-x86_64/
  clutter-gtk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276902, clutter-gtk/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   40 +++
 gnome-unstable-x86_64/PKGBUILD |   40 +++
 2 files changed, 80 insertions(+)

Copied: clutter-gtk/repos/gnome-unstable-i686/PKGBUILD (from rev 276902, 
clutter-gtk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-24 02:06:57 UTC (rev 276903)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=clutter-gtk
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="Clutter integration with GTK+"
+arch=('i686' 'x86_64')
+url="https://git.gnome.org/browse/clutter-gtk;
+license=(LGPL)
+depends=(clutter)
+makedepends=(gobject-introspection gtk-doc git)
+_commit=d48408a24672fa553034a0b3749bee930ad7c49d
+source=("git://git.gnome.org/clutter-gtk#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: clutter-gtk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276902, 
clutter-gtk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-24 02:06:57 UTC (rev 276903)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=clutter-gtk
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="Clutter integration with GTK+"
+arch=('i686' 'x86_64')
+url="https://git.gnome.org/browse/clutter-gtk;
+license=(LGPL)
+depends=(clutter)
+makedepends=(gobject-introspection gtk-doc git)
+_commit=d48408a24672fa553034a0b3749bee930ad7c49d
+source=("git://git.gnome.org/clutter-gtk#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 02:06:15
  Author: heftig
Revision: 276902

1.8.2-1

Modified:
  clutter-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:26:10 UTC (rev 276901)
+++ PKGBUILD2016-09-24 02:06:15 UTC (rev 276902)
@@ -2,26 +2,39 @@
 # Maintainer: Jan de Groot 
 
 pkgname=clutter-gtk
-pkgver=1.8.0
+pkgver=1.8.2
 pkgrel=1
-pkgdesc="GTK clutter widget"
+pkgdesc="Clutter integration with GTK+"
 arch=('i686' 'x86_64')
-url="http://clutter-project.org/;
-license=('LGPL')
-depends=('clutter')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('742ef9d68ece36cbb1b2e1a4a6fbdad932f6645360be7e6de75abbb140dfbf1d')
+url="https://git.gnome.org/browse/clutter-gtk;
+license=(LGPL)
+depends=(clutter)
+makedepends=(gobject-introspection gtk-doc git)
+_commit=d48408a24672fa553034a0b3749bee930ad7c49d
+source=("git://git.gnome.org/clutter-gtk#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
+  cd $pkgname
+  ./configure --prefix=/usr --enable-gtk-doc
+
   # https://bugzilla.gnome.org/show_bug.cgi?id=655517
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 02:04:56
  Author: tredaelli
Revision: 190232

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 190231, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/do_not_use_svn_version.patch
(from rev 190231, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-i686/wireshark.install
(from rev 190231, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 190231, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
(from rev 190231, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 190231, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/do_not_use_svn_version.patch
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
  wireshark/repos/community-x86_64/wireshark.install

---+
 /PKGBUILD |  202 
 /do_not_use_svn_version.patch |   26 +++
 /wireshark.install|   36 
 community-i686/PKGBUILD   |  101 
 community-i686/do_not_use_svn_version.patch   |   13 -
 community-i686/wireshark.install  |   18 --
 community-x86_64/PKGBUILD |  101 
 community-x86_64/do_not_use_svn_version.patch |   13 -
 community-x86_64/wireshark.install|   18 --
 9 files changed, 264 insertions(+), 264 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 02:04:22 UTC (rev 190231)
+++ community-i686/PKGBUILD 2016-09-24 02:04:56 UTC (rev 190232)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=2.2.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('c-ares' 'geoip' 'qt5-tools' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash' 'libssh'
- 'gnutls' 'portaudio' 'lua52' 'python' 'desktop-file-utils' 
'hicolor-icon-theme')
-options=(!emptydirs)
-url='https://www.wireshark.org/'
-source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
-do_not_use_svn_version.patch)
-sha1sums=('4b47bf8e2053073585318646e27d2aa9dc7c7238'
-  '489a176a7b90f7ae6f0985510c0c9038de54d9d6')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # Avoid ugly "svn rev unknown from unknown" version string
-  patch -p1 < "$srcdir"/do_not_use_svn_version.patch
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt=5 \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5 \
-  --with-c-ares \
-  --with-geoip
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52' 'libssh')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  make DESTDIR="${pkgdir}" uninstall-local
-
-  #wireshark uid group is 150
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-gtk"
-
-  # Headers
-  install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-common() {
-  pkgdesc='Common files used by wireshark-gtk and wireshark-qt'
-  depends=('hicolor-icon-theme' 'shared-mime-info' 'xdg-utils')
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-data-local
-  rm "${pkgdir}"/usr/share/applications/wireshark{,-gtk}.desktop
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('desktop-file-utils' 'gtk3' 'portaudio' 'wireshark-cli' 
'wireshark-common')
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark-gtk "${pkgdir}/usr/bin/wireshark-gtk"
-  

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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 02:04:22
  Author: tredaelli
Revision: 190231

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 190230, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/do_not_use_svn_version.patch
(from rev 190230, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-i686/wireshark.install
(from rev 190230, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 190230, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
(from rev 190230, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 190230, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/do_not_use_svn_version.patch
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
  wireshark/repos/community-x86_64/wireshark.install

---+
 /PKGBUILD |  202 
 /do_not_use_svn_version.patch |   26 +++
 /wireshark.install|   36 
 community-i686/PKGBUILD   |  101 
 community-i686/do_not_use_svn_version.patch   |   13 -
 community-i686/wireshark.install  |   18 --
 community-x86_64/PKGBUILD |  101 
 community-x86_64/do_not_use_svn_version.patch |   13 -
 community-x86_64/wireshark.install|   18 --
 9 files changed, 264 insertions(+), 264 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 02:04:07 UTC (rev 190230)
+++ community-i686/PKGBUILD 2016-09-24 02:04:22 UTC (rev 190231)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=2.0.5
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('c-ares' 'geoip' 'qt5-base' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash'
- 'gnutls' 'portaudio' 'lua52' 'python' 'desktop-file-utils' 
'hicolor-icon-theme')
-options=(!emptydirs)
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
-do_not_use_svn_version.patch)
-sha1sums=('ab77c632d8babf731bf0ecac0876fe3ff2923d04'
-  '489a176a7b90f7ae6f0985510c0c9038de54d9d6')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # Avoid ugly "svn rev unknown from unknown" version string
-  patch -p1 < "$srcdir"/do_not_use_svn_version.patch
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt=5 \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5 \
-  --with-c-ares \
-  --with-geoip
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  make DESTDIR="${pkgdir}" uninstall-local
-
-  #wireshark uid group is 150
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-gtk"
-
-  # Headers
-  install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-common() {
-  pkgdesc='Common files used by wireshark-gtk and wireshark-qt'
-  depends=('hicolor-icon-theme' 'shared-mime-info' 'xdg-utils')
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-data-local
-  rm "${pkgdir}"/usr/share/applications/wireshark{,-gtk}.desktop
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('desktop-file-utils' 'gtk3' 'portaudio' 'wireshark-cli' 
'wireshark-common')
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark-gtk "${pkgdir}/usr/bin/wireshark-gtk"
-  install -Dm644 

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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 02:04:07
  Author: tredaelli
Revision: 190230

upgpkg: wireshark 2.2.0-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:18:56 UTC (rev 190229)
+++ PKGBUILD2016-09-24 02:04:07 UTC (rev 190230)
@@ -4,17 +4,17 @@
 # Contributor: Florian Pritz 
 pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
-pkgver=2.0.5
+pkgver=2.2.0
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2')
-makedepends=('c-ares' 'geoip' 'qt5-base' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash'
+makedepends=('c-ares' 'geoip' 'qt5-tools' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash' 'libssh'
  'gnutls' 'portaudio' 'lua52' 'python' 'desktop-file-utils' 
'hicolor-icon-theme')
 options=(!emptydirs)
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+url='https://www.wireshark.org/'
+source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
 do_not_use_svn_version.patch)
-sha1sums=('ab77c632d8babf731bf0ecac0876fe3ff2923d04'
+sha1sums=('4b47bf8e2053073585318646e27d2aa9dc7c7238'
   '489a176a7b90f7ae6f0985510c0c9038de54d9d6')
 
 prepare() {
@@ -45,7 +45,7 @@
 
 package_wireshark-cli() {
   pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52')
+  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52' 'libssh')
   install=wireshark.install
   conflicts=(wireshark)
 
@@ -62,7 +62,7 @@
   # Headers
   install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
 
-  install -m644 color.h config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
+  install -m644 config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
   for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
 install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
   done
@@ -92,7 +92,7 @@
 
 package_wireshark-qt() {
   pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - Qt 
frontend'
-  depends=('desktop-file-utils' 'qt5-base' 'qt5-multimedia' 'wireshark-cli' 
'wireshark-common')
+  depends=('desktop-file-utils' 'qt5-multimedia' 'wireshark-cli' 
'wireshark-common')
 
   cd ${pkgbase}-${pkgver}
 


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 01:26:10
  Author: heftig
Revision: 276901

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  clutter/repos/gnome-unstable-i686/
  clutter/repos/gnome-unstable-i686/PKGBUILD
(from rev 276900, clutter/trunk/PKGBUILD)
  clutter/repos/gnome-unstable-x86_64/
  clutter/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276900, clutter/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   50 +++
 gnome-unstable-x86_64/PKGBUILD |   50 +++
 2 files changed, 100 insertions(+)

Copied: clutter/repos/gnome-unstable-i686/PKGBUILD (from rev 276900, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-24 01:26:10 UTC (rev 276901)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=clutter
+pkgver=1.26.0+24+g79da526
+pkgrel=1
+pkgdesc="A toolkit for creating fast, portable, compelling dynamic UIs"
+arch=(i686 x86_64)
+url="http://clutter-project.org/;
+license=(LGPL)
+depends=(gtk3 cogl libinput)
+makedepends=(gobject-introspection gtk-doc git)
+_commit=79da526145de3033e01eb1de6d6ec712639a7ea5
+source=("git://git.gnome.org/clutter#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix=/usr \
+--enable-introspection \
+--enable-egl-backend \
+--enable-gdk-backend \
+--enable-wayland-backend \
+--enable-x11-backend \
+--enable-evdev-input \
+--enable-wayland-compositor \
+--enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Copied: clutter/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276900, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-24 01:26:10 UTC (rev 276901)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=clutter
+pkgver=1.26.0+24+g79da526
+pkgrel=1
+pkgdesc="A toolkit for creating fast, portable, compelling dynamic UIs"
+arch=(i686 x86_64)
+url="http://clutter-project.org/;
+license=(LGPL)
+depends=(gtk3 cogl libinput)
+makedepends=(gobject-introspection gtk-doc git)
+_commit=79da526145de3033e01eb1de6d6ec712639a7ea5
+source=("git://git.gnome.org/clutter#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix=/usr \
+--enable-introspection \
+--enable-egl-backend \
+--enable-gdk-backend \
+--enable-wayland-backend \
+--enable-x11-backend \
+--enable-evdev-input \
+--enable-wayland-compositor \
+--enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 01:25:09
  Author: heftig
Revision: 276900

1.26.0+24+g79da526-1

Modified:
  clutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:18:52 UTC (rev 276899)
+++ PKGBUILD2016-09-24 01:25:09 UTC (rev 276900)
@@ -4,19 +4,30 @@
 # Contributor: William Rea 
 
 pkgname=clutter
-pkgver=1.26.0
+pkgver=1.26.0+24+g79da526
 pkgrel=1
-pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
-arch=('i686' 'x86_64')
+pkgdesc="A toolkit for creating fast, portable, compelling dynamic UIs"
+arch=(i686 x86_64)
 url="http://clutter-project.org/;
-license=('LGPL')
-depends=('gtk3' 'cogl' 'libinput')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('67514e7824b3feb4723164084b36d6ce1ae41cb3a9897e9f1a56c8334993ce06')
+license=(LGPL)
+depends=(gtk3 cogl libinput)
+makedepends=(gobject-introspection gtk-doc git)
+_commit=79da526145de3033e01eb1de6d6ec712639a7ea5
+source=("git://git.gnome.org/clutter#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   ./configure --prefix=/usr \
 --enable-introspection \
 --enable-egl-backend \
@@ -34,6 +45,6 @@
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   make DESTDIR="$pkgdir" install
 }


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:18:56
  Author: tredaelli
Revision: 190229

archrelease: copy trunk to community-any

Added:
  python2-tlslite/repos/community-any/PKGBUILD
(from rev 190228, python2-tlslite/trunk/PKGBUILD)
Deleted:
  python2-tlslite/repos/community-any/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-24 01:18:49 UTC (rev 190228)
+++ PKGBUILD2016-09-24 01:18:56 UTC (rev 190229)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=python2-tlslite
-pkgver=0.4.8
-pkgrel=1
-pkgdesc="SSL/TLS library in pure Python supporting RSA and SRP ciphersuites"
-arch=('any')
-depends=('python2')
-makedepends=('python2-setuptools')
-optdepends=('python2-crypto: fast RSA operations and fast ciphers'
-'python2-gmpy: fast RSA and SRP operations'
-'python2-m2crypto: fast RSA operations and fast ciphers'
-'python2-tackpy: run an X.509 server using TACK')
-url="http://trevp.net/tlslite;
-license=('custom')
-options=(!emptydirs)
-source=(https://pypi.python.org/packages/source/t/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
-sha256sums=('d9b447048a322c70df800f540ab577c93ecf20de52c0a02c8621176e4733bdbb')
-
-prepare(){
-  cd "${pkgname#python2-}-$pkgver"
-
-  find . -type f -print0 | xargs -0 sed -i 
's#/usr/bin/python#/usr/bin/python2#g'
-  find . -type f -print0 | xargs -0 sed -i 's#/usr/bin/env python#/usr/bin/env 
python2#g'
-}
-
-build() {
-  cd "${pkgname#python2-}-$pkgver"
-
-  python2 setup.py build
-}
-
-package() {
-  cd "${pkgname#python2-}-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm 644 README "$pkgdir/usr/share/doc/$pkgname/README"
-}

Copied: python2-tlslite/repos/community-any/PKGBUILD (from rev 190228, 
python2-tlslite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-24 01:18:56 UTC (rev 190229)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python2-tlslite
+pkgver=0.4.9
+pkgrel=1
+pkgdesc="SSL/TLS library in pure Python supporting RSA and SRP ciphersuites"
+arch=('any')
+depends=('python2')
+makedepends=('python2-setuptools')
+optdepends=('python2-crypto: fast RSA operations and fast ciphers'
+'python2-gmpy: fast RSA and SRP operations'
+'python2-m2crypto: fast RSA operations and fast ciphers'
+'python2-tackpy: run an X.509 server using TACK')
+url="http://trevp.net/tlslite;
+license=('custom')
+options=(!emptydirs)
+source=(https://pypi.org/packages/source/t/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
+sha256sums=('9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d')
+
+prepare(){
+  cd "${pkgname#python2-}-$pkgver"
+
+  find . -type f -print0 | xargs -0 sed -i 
's#/usr/bin/python#/usr/bin/python2#g'
+  find . -type f -print0 | xargs -0 sed -i 's#/usr/bin/env python#/usr/bin/env 
python2#g'
+}
+
+build() {
+  cd "${pkgname#python2-}-$pkgver"
+
+  python2 setup.py build
+}
+
+package() {
+  cd "${pkgname#python2-}-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm 644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:18:49
  Author: tredaelli
Revision: 190228

upgpkg: python2-tlslite 0.4.9-1

Modified:
  python2-tlslite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:14:15 UTC (rev 190227)
+++ PKGBUILD2016-09-24 01:18:49 UTC (rev 190228)
@@ -3,7 +3,7 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=python2-tlslite
-pkgver=0.4.8
+pkgver=0.4.9
 pkgrel=1
 pkgdesc="SSL/TLS library in pure Python supporting RSA and SRP ciphersuites"
 arch=('any')
@@ -16,8 +16,8 @@
 url="http://trevp.net/tlslite;
 license=('custom')
 options=(!emptydirs)
-source=(https://pypi.python.org/packages/source/t/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
-sha256sums=('d9b447048a322c70df800f540ab577c93ecf20de52c0a02c8621176e4733bdbb')
+source=(https://pypi.org/packages/source/t/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
+sha256sums=('9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d')
 
 prepare(){
   cd "${pkgname#python2-}-$pkgver"


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 01:18:52
  Author: heftig
Revision: 276899

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

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

--+
 /PKGBUILD|  132 +
 /flatpak.install |   22 ++
 extra-i686/PKGBUILD  |   66 
 extra-i686/flatpak.install   |   11 ---
 extra-x86_64/PKGBUILD|   66 
 extra-x86_64/flatpak.install |   11 ---
 6 files changed, 154 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-24 01:18:03 UTC (rev 276898)
+++ extra-i686/PKGBUILD 2016-09-24 01:18:52 UTC (rev 276899)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak
-pkgver=0.6.10
-pkgrel=1
-pkgdesc="Application deployment framework for desktop apps"
-url="http://flatpak.org;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(dbus systemd glib2 libsoup polkit xorg-xauth libgsystem ostree fuse
- json-glib libseccomp libarchive libelf libcap)
-makedepends=(intltool python libxslt gobject-introspection gtk-doc git)
-install=flatpak.install
-source=("git+https://github.com/flatpak/flatpak#tag=$pkgver;
-"git+https://git.gnome.org/browse/libglnx;
-"git+https://github.com/projectatomic/bubblewrap;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
-  git submodule update
-
-  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---sbindir=/usr/bin --libexecdir=/usr/lib/$pkgname --disable-static \
---enable-gtk-doc --with-priv-mode=setuid
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # https://github.com/flatpak/flatpak/issues/267
-  # https://github.com/flatpak/flatpak/issues/268
-  make -k check
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR="$pkgdir" install
-
-  # Fixup mode to match polkit
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: flatpak/repos/extra-i686/PKGBUILD (from rev 276898, 
flatpak/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-24 01:18:52 UTC (rev 276899)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak
+pkgver=0.6.11
+pkgrel=1
+pkgdesc="Application deployment framework for desktop apps"
+url="http://flatpak.org;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dbus systemd glib2 libsoup polkit xorg-xauth libgsystem ostree fuse
+ json-glib libseccomp libarchive libelf libcap)
+makedepends=(intltool python libxslt gobject-introspection gtk-doc git)
+install=flatpak.install
+source=("git+https://github.com/flatpak/flatpak#tag=$pkgver;
+"git+https://git.gnome.org/browse/libglnx;
+"git+https://github.com/projectatomic/bubblewrap;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
+  git submodule update
+
+  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgname
+  git describe | sed 's/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--sbindir=/usr/bin --libexecdir=/usr/lib/$pkgname --disable-static \
+--enable-gtk-doc --with-priv-mode=setuid
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # https://github.com/flatpak/flatpak/issues/267
+  # https://github.com/flatpak/flatpak/issues/268
+  make -k check
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  # Fixup mode to match polkit
+  install -d -o root -g 102 -m 750 

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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 01:18:03
  Author: heftig
Revision: 276898

0.6.11-1

Modified:
  flatpak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:00:13 UTC (rev 276897)
+++ PKGBUILD2016-09-24 01:18:03 UTC (rev 276898)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak
-pkgver=0.6.10
+pkgver=0.6.11
 pkgrel=1
 pkgdesc="Application deployment framework for desktop apps"
 url="http://flatpak.org;


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:14:04
  Author: tredaelli
Revision: 190226

upgpkg: python2-hidapi 0.7.99.19-1

Modified:
  python2-hidapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:10:28 UTC (rev 190225)
+++ PKGBUILD2016-09-24 01:14:04 UTC (rev 190226)
@@ -3,8 +3,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=python2-hidapi
-pkgver=0.7.99.5
-_pkgver=${pkgver%.*}-${pkgver##*.}
+pkgver=0.7.99.19
+_pkgver=${pkgver%.*}.post${pkgver##*.}
 pkgrel=1
 pkgdesc="A Cython interface to the hidapi from signal11/hidapi"
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 makedepends=('cython2' 'python2-setuptools')
 url="https://github.com/trezor/cython-hidapi;
 license=('custom')
-source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
-sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
+source=(https://pypi.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('890dea8bd8c4d35e1f1b29a9a3431aa1ee79ee1baf86cacb5913983a5bec5689')
 
 build() {
   cd "${pkgname#python2-}-$_pkgver"


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:14:15
  Author: tredaelli
Revision: 190227

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

Added:
  python2-hidapi/repos/community-i686/PKGBUILD
(from rev 190226, python2-hidapi/trunk/PKGBUILD)
  python2-hidapi/repos/community-x86_64/PKGBUILD
(from rev 190226, python2-hidapi/trunk/PKGBUILD)
Deleted:
  python2-hidapi/repos/community-i686/PKGBUILD
  python2-hidapi/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 2016-09-24 01:14:04 UTC (rev 190226)
+++ community-i686/PKGBUILD 2016-09-24 01:14:15 UTC (rev 190227)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=python2-hidapi
-pkgver=0.7.99.5
-_pkgver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="A Cython interface to the hidapi from signal11/hidapi"
-arch=('i686' 'x86_64')
-depends=('libusb' 'python2')
-makedepends=('cython2' 'python2-setuptools')
-url="https://github.com/trezor/cython-hidapi;
-license=('custom')
-source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
-sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
-
-build() {
-  cd "${pkgname#python2-}-$_pkgver"
-
-  python2 setup.py build
-}
-
-package() {
-  cd "${pkgname#python2-}-$_pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  echo "You are free to use cython-hidapi code for any purpose." > 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python2-hidapi/repos/community-i686/PKGBUILD (from rev 190226, 
python2-hidapi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 01:14:15 UTC (rev 190227)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python2-hidapi
+pkgver=0.7.99.19
+_pkgver=${pkgver%.*}.post${pkgver##*.}
+pkgrel=1
+pkgdesc="A Cython interface to the hidapi from signal11/hidapi"
+arch=('i686' 'x86_64')
+depends=('libusb' 'python2')
+makedepends=('cython2' 'python2-setuptools')
+url="https://github.com/trezor/cython-hidapi;
+license=('custom')
+source=(https://pypi.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('890dea8bd8c4d35e1f1b29a9a3431aa1ee79ee1baf86cacb5913983a5bec5689')
+
+build() {
+  cd "${pkgname#python2-}-$_pkgver"
+
+  python2 setup.py build
+}
+
+package() {
+  cd "${pkgname#python2-}-$_pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
+  echo "You are free to use cython-hidapi code for any purpose." > 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 01:14:04 UTC (rev 190226)
+++ community-x86_64/PKGBUILD   2016-09-24 01:14:15 UTC (rev 190227)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=python2-hidapi
-pkgver=0.7.99.5
-_pkgver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="A Cython interface to the hidapi from signal11/hidapi"
-arch=('i686' 'x86_64')
-depends=('libusb' 'python2')
-makedepends=('cython2' 'python2-setuptools')
-url="https://github.com/trezor/cython-hidapi;
-license=('custom')
-source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
-sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
-
-build() {
-  cd "${pkgname#python2-}-$_pkgver"
-
-  python2 setup.py build
-}
-
-package() {
-  cd "${pkgname#python2-}-$_pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  echo "You are free to use cython-hidapi code for any purpose." > 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python2-hidapi/repos/community-x86_64/PKGBUILD (from rev 190226, 
python2-hidapi/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 01:14:15 UTC (rev 190227)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy 

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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:10:21
  Author: tredaelli
Revision: 190224

upgpkg: python2-qrcode 5.3-1

Modified:
  python2-qrcode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 01:01:30 UTC (rev 190223)
+++ PKGBUILD2016-09-24 01:10:21 UTC (rev 190224)
@@ -3,14 +3,14 @@
 # Contributor: Francois Boulogne 
 
 pkgname=python2-qrcode
-pkgver=5.1
-pkgrel=2
+pkgver=5.3
+pkgrel=1
 pkgdesc="Python library to generate QR codes"
 arch=('any')
 url="https://github.com/lincolnloop/python-qrcode;
 license=('custom')
 depends=('python2-pillow' 'python2-six' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/q/qrcode/qrcode-${pkgver}.tar.gz)
+source=(https://pypi.org/packages/source/q/qrcode/qrcode-${pkgver}.tar.gz)
 
 prepare() {
   find "qrcode-$pkgver" -type f -exec sed -i 
's#/usr/bin/python#/usr/bin/python2#g' {} +
@@ -25,4 +25,4 @@
 }
 
 # vim:ts=2:sw=2:et:
-md5sums=('1f20223419bbf992208ada0c12ed4577')
+md5sums=('af41b650a3675d0a0366f842de9786b9')


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:10:28
  Author: tredaelli
Revision: 190225

archrelease: copy trunk to community-any

Added:
  python2-qrcode/repos/community-any/PKGBUILD
(from rev 190224, python2-qrcode/trunk/PKGBUILD)
Deleted:
  python2-qrcode/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-24 01:10:21 UTC (rev 190224)
+++ PKGBUILD2016-09-24 01:10:28 UTC (rev 190225)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Francois Boulogne 
-
-pkgname=python2-qrcode
-pkgver=5.1
-pkgrel=2
-pkgdesc="Python library to generate QR codes"
-arch=('any')
-url="https://github.com/lincolnloop/python-qrcode;
-license=('custom')
-depends=('python2-pillow' 'python2-six' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/q/qrcode/qrcode-${pkgver}.tar.gz)
-
-prepare() {
-  find "qrcode-$pkgver" -type f -exec sed -i 
's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-package() {
-  cd "qrcode-$pkgver"
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-
-  install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:ts=2:sw=2:et:
-md5sums=('1f20223419bbf992208ada0c12ed4577')

Copied: python2-qrcode/repos/community-any/PKGBUILD (from rev 190224, 
python2-qrcode/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-24 01:10:28 UTC (rev 190225)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Francois Boulogne 
+
+pkgname=python2-qrcode
+pkgver=5.3
+pkgrel=1
+pkgdesc="Python library to generate QR codes"
+arch=('any')
+url="https://github.com/lincolnloop/python-qrcode;
+license=('custom')
+depends=('python2-pillow' 'python2-six' 'python2-setuptools')
+source=(https://pypi.org/packages/source/q/qrcode/qrcode-${pkgver}.tar.gz)
+
+prepare() {
+  find "qrcode-$pkgver" -type f -exec sed -i 
's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+package() {
+  cd "qrcode-$pkgver"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+
+  install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:ts=2:sw=2:et:
+md5sums=('af41b650a3675d0a0366f842de9786b9')


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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:01:30
  Author: tredaelli
Revision: 190223

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 01:01:19 UTC (rev 190222)
+++ community-i686/PKGBUILD 2016-09-24 01:01:30 UTC (rev 190223)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Cedric Girard 
-# Contributor: foxbunny 
-
-_pkgname=DisplayCAL
-pkgname=displaycal
-pkgver=3.1.5.0
-pkgrel=1
-pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
-arch=('i686' 'x86_64')
-url="http://displaycal.net/;
-license=('GPL3')
-makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools' 'xdg-utils')
-depends=('argyllcms' 'wxpython' 'hicolor-icon-theme' 'desktop-file-utils' 
'python2-numpy')
-optdepends=('gksu: For running as root')
-replaces=('dispcalgui')
-conflicts=('dispcalgui')
-source=("http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('6c05904549772558ad4b10dcce3ada78')
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  #udev rules are shipped with argyllcms
-  rm -rf "${pkgdir}"/etc/udev/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: displaycal/repos/community-i686/PKGBUILD (from rev 190222, 
displaycal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 01:01:30 UTC (rev 190223)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Cedric Girard 
+# Contributor: foxbunny 
+
+_pkgname=DisplayCAL
+pkgname=displaycal
+pkgver=3.1.6.0
+pkgrel=1
+pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
+arch=('i686' 'x86_64')
+url="http://displaycal.net/;
+license=('GPL3')
+makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools' 'xdg-utils')
+depends=('argyllcms' 'wxpython' 'hicolor-icon-theme' 'desktop-file-utils' 
'python2-numpy')
+optdepends=('gksu: For running as root')
+replaces=('dispcalgui')
+conflicts=('dispcalgui')
+source=("http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('b4ba9157afa59dd9294604613b692137')
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  #udev rules are shipped with argyllcms
+  rm -rf "${pkgdir}"/etc/udev/
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 01:01:19 UTC (rev 190222)
+++ community-x86_64/PKGBUILD   2016-09-24 01:01:30 UTC (rev 190223)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Cedric Girard 
-# Contributor: foxbunny 
-
-_pkgname=DisplayCAL
-pkgname=displaycal
-pkgver=3.1.5.0
-pkgrel=1
-pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
-arch=('i686' 'x86_64')
-url="http://displaycal.net/;
-license=('GPL3')
-makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools' 'xdg-utils')
-depends=('argyllcms' 'wxpython' 'hicolor-icon-theme' 'desktop-file-utils' 
'python2-numpy')
-optdepends=('gksu: For running as root')
-replaces=('dispcalgui')
-conflicts=('dispcalgui')
-source=("http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('6c05904549772558ad4b10dcce3ada78')
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  #udev rules are shipped with argyllcms
-  rm -rf "${pkgdir}"/etc/udev/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: displaycal/repos/community-x86_64/PKGBUILD (from rev 190222, 
displaycal/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD  

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

2016-09-23 Thread Timothy Redaelli
Date: Saturday, September 24, 2016 @ 01:01:19
  Author: tredaelli
Revision: 190222

upgpkg: displaycal 3.1.6.0-1

Modified:
  displaycal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 22:50:11 UTC (rev 190221)
+++ PKGBUILD2016-09-24 01:01:19 UTC (rev 190222)
@@ -5,7 +5,7 @@
 
 _pkgname=DisplayCAL
 pkgname=displaycal
-pkgver=3.1.5.0
+pkgver=3.1.6.0
 pkgrel=1
 pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 replaces=('dispcalgui')
 conflicts=('dispcalgui')
 
source=("http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('6c05904549772558ad4b10dcce3ada78')
+md5sums=('b4ba9157afa59dd9294604613b692137')
 
 package() {
   cd ${_pkgname}-${pkgver}


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 01:00:13
  Author: heftig
Revision: 276897

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  libpeas/repos/gnome-unstable-i686/
  libpeas/repos/gnome-unstable-i686/PKGBUILD
(from rev 276896, libpeas/trunk/PKGBUILD)
  libpeas/repos/gnome-unstable-x86_64/
  libpeas/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276896, libpeas/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   50 +++
 gnome-unstable-x86_64/PKGBUILD |   50 +++
 2 files changed, 100 insertions(+)

Copied: libpeas/repos/gnome-unstable-i686/PKGBUILD (from rev 276896, 
libpeas/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-24 01:00:13 UTC (rev 276897)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libpeas
+pkgver=1.20.0
+pkgrel=1
+pkgdesc="A GObject-based plugins engine"
+arch=(i686 x86_64)
+url="http://www.gtk.org/;
+license=(GPL2)
+depends=(gtk3 gobject-introspection-runtime)
+makedepends=(gtk-doc intltool python-gobject python2-gobject glade 
gobject-introspection git
+ gnome-common)
+_commit=7548b2717160e33a806bcfa8c7894f4abccc
+source=("git://git.gnome.org/libpeas#commit=$_commit")
+sha256sums=('SKIP')
+
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libpeas-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--enable-gtk-doc --disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libpeas/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276896, 
libpeas/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-24 01:00:13 UTC (rev 276897)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libpeas
+pkgver=1.20.0
+pkgrel=1
+pkgdesc="A GObject-based plugins engine"
+arch=(i686 x86_64)
+url="http://www.gtk.org/;
+license=(GPL2)
+depends=(gtk3 gobject-introspection-runtime)
+makedepends=(gtk-doc intltool python-gobject python2-gobject glade 
gobject-introspection git
+ gnome-common)
+_commit=7548b2717160e33a806bcfa8c7894f4abccc
+source=("git://git.gnome.org/libpeas#commit=$_commit")
+sha256sums=('SKIP')
+
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libpeas-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--enable-gtk-doc --disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:59:36
  Author: heftig
Revision: 276896

1.20.0-1

Modified:
  libpeas/trunk/PKGBUILD

--+
 PKGBUILD |   34 +++---
 1 file changed, 23 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 00:52:02 UTC (rev 276895)
+++ PKGBUILD2016-09-24 00:59:36 UTC (rev 276896)
@@ -2,21 +2,34 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libpeas
-pkgver=1.18.0
-pkgrel=2
+pkgver=1.20.0
+pkgrel=1
 pkgdesc="A GObject-based plugins engine"
 arch=(i686 x86_64)
 url="http://www.gtk.org/;
 license=(GPL2)
 depends=(gtk3 gobject-introspection-runtime)
-makedepends=(gtk-doc intltool python-gobject python2-gobject glade 
gobject-introspection)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-${pkgver}.tar.xz)
-sha256sums=('bf49842c64c36925bbc41d954de490b6ff7faa29b45f6fd9e91ddcc779165e26')
+makedepends=(gtk-doc intltool python-gobject python2-gobject glade 
gobject-introspection git
+ gnome-common)
+_commit=7548b2717160e33a806bcfa8c7894f4abccc
+source=("git://git.gnome.org/libpeas#commit=$_commit")
+sha256sums=('SKIP')
 
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libpeas-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--enable-gtk-doc --disable-static
 
   # https://bugzilla.gnome.org/show_bug.cgi?id=655517
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
@@ -25,13 +38,12 @@
 }
 
 check() {
-  cd $pkgname-$pkgver
-  # Pygobject 3.15.x Throws deprecation message to stderr which causes failed 
test suite. Works fine with 3.14.x
-  make check || return 0
+  cd $pkgname
+  make check
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="${pkgdir}" install
 }
 


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:52:02
  Author: heftig
Revision: 276895

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  glade/repos/gnome-unstable-i686/
  glade/repos/gnome-unstable-i686/PKGBUILD
(from rev 276894, glade/trunk/PKGBUILD)
  glade/repos/gnome-unstable-x86_64/
  glade/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276894, glade/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   42 +++
 gnome-unstable-x86_64/PKGBUILD |   42 +++
 2 files changed, 84 insertions(+)

Copied: glade/repos/gnome-unstable-i686/PKGBUILD (from rev 276894, 
glade/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-24 00:52:02 UTC (rev 276895)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=glade
+pkgver=3.20.0+19+g0aaed6f
+pkgrel=1
+pkgdesc="User interface builder for GTK+ and GNOME."
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxml2)
+makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl git
+ gnome-common)
+optdepends=('python: Python widgets support'
+'devhelp: help browser')
+url="https://glade.gnome.org/;
+_commit=0aaed6fe5f2e6f456e8fa4a2be95e08215c901c4
+source=("git://git.gnome.org/glade#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GLADE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: glade/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276894, 
glade/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-24 00:52:02 UTC (rev 276895)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=glade
+pkgver=3.20.0+19+g0aaed6f
+pkgrel=1
+pkgdesc="User interface builder for GTK+ and GNOME."
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxml2)
+makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl git
+ gnome-common)
+optdepends=('python: Python widgets support'
+'devhelp: help browser')
+url="https://glade.gnome.org/;
+_commit=0aaed6fe5f2e6f456e8fa4a2be95e08215c901c4
+source=("git://git.gnome.org/glade#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GLADE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:51:06
  Author: heftig
Revision: 276894

3.20.0+19+g0aaed6f-1

Modified:
  glade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 00:34:33 UTC (rev 276893)
+++ PKGBUILD2016-09-24 00:51:06 UTC (rev 276894)
@@ -3,28 +3,40 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=glade
-pkgver=3.20.0
-pkgrel=2
+pkgver=3.20.0+19+g0aaed6f
+pkgrel=1
 pkgdesc="User interface builder for GTK+ and GNOME."
 arch=(i686 x86_64)
 license=(GPL LGPL)
 depends=(gtk3 libxml2)
-makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl)
+makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl git
+ gnome-common)
 optdepends=('python: Python widgets support'
 'devhelp: help browser')
 url="https://glade.gnome.org/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('82d96dca5dec40ee34e2f41d49c13b4ea50da8f32a3a49ca2da802ff14dc18fe')
+_commit=0aaed6fe5f2e6f456e8fa4a2be95e08215c901c4
+source=("git://git.gnome.org/glade#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GLADE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-gtk-doc
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:34:33
  Author: heftig
Revision: 276893

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  pygobject/repos/gnome-unstable-i686/
  pygobject/repos/gnome-unstable-i686/PKGBUILD
(from rev 276892, pygobject/trunk/PKGBUILD)
  pygobject/repos/gnome-unstable-x86_64/
  pygobject/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276892, pygobject/trunk/PKGBUILD)

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

Copied: pygobject/repos/gnome-unstable-i686/PKGBUILD (from rev 276892, 
pygobject/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-24 00:34:33 UTC (rev 276893)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.22.0
+pkgrel=1
+pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
+url="https://wiki.gnome.org/Projects/PyGObject;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gobject-introspection-runtime)
+makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
+optdepends=('cairo: Cairo bindings')
+_commit=fb1b8fa8a67f2c7ea7ad4b53076496a8f2b4afdb
+source=("git://git.gnome.org/pygobject#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build-py{2,3} devel
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+_build() (
+  cd build-py$1
+  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package_python-gobject() {
+  depends=("pygobject-devel=$pkgver" python)
+
+  cd build-py3
+  make DESTDIR="$pkgdir" install
+  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
+}
+
+package_python2-gobject() {
+  pkgdesc="${pkgdesc/Python/Python2}"
+  depends=("pygobject-devel=$pkgver" python2)
+
+  cd build-py2
+  make DESTDIR="$pkgdir" install
+  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
+  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
+}
+
+package_pygobject-devel() {
+  pkgdesc="Common development files for pygobject"
+  optdepends=()
+
+  cd devel
+  mkdir -p "$pkgdir/usr/lib"
+  mv include "$pkgdir/usr/"
+  mv pkgconfig "$pkgdir/usr/lib/"
+}

Copied: pygobject/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276892, 
pygobject/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-24 00:34:33 UTC (rev 276893)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.22.0
+pkgrel=1
+pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
+url="https://wiki.gnome.org/Projects/PyGObject;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gobject-introspection-runtime)
+makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
+optdepends=('cairo: Cairo bindings')
+_commit=fb1b8fa8a67f2c7ea7ad4b53076496a8f2b4afdb
+source=("git://git.gnome.org/pygobject#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build-py{2,3} devel
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+_build() (
+  cd build-py$1
+  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package_python-gobject() {
+  depends=("pygobject-devel=$pkgver" python)
+
+  cd build-py3
+  make DESTDIR="$pkgdir" install
+  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
+}
+
+package_python2-gobject() {
+  pkgdesc="${pkgdesc/Python/Python2}"
+  depends=("pygobject-devel=$pkgver" python2)
+
+  cd build-py2
+  make DESTDIR="$pkgdir" install
+  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
+  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
+}
+
+package_pygobject-devel() {
+  pkgdesc="Common development files for pygobject"
+  optdepends=()
+
+  cd devel
+  mkdir -p "$pkgdir/usr/lib"
+  mv include "$pkgdir/usr/"
+  mv pkgconfig "$pkgdir/usr/lib/"
+}


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:33:49
  Author: heftig
Revision: 276892

3.22.0-1

Modified:
  pygobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 00:21:46 UTC (rev 276891)
+++ PKGBUILD2016-09-24 00:33:49 UTC (rev 276892)
@@ -3,7 +3,7 @@
 
 pkgbase=pygobject
 pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.20.1
+pkgver=3.22.0
 pkgrel=1
 pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
 url="https://wiki.gnome.org/Projects/PyGObject;
@@ -10,18 +10,26 @@
 arch=(i686 x86_64)
 license=(LGPL)
 depends=(gobject-introspection-runtime)
-makedepends=(python{,2}-cairo gobject-introspection)
+makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
 optdepends=('cairo: Cairo bindings')
-source=("https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz;)
-sha256sums=('3d261005d6fed6a92ac4c25f283792552f7dad865d1b7e0c03c2b84c04dbd745')
+_commit=fb1b8fa8a67f2c7ea7ad4b53076496a8f2b4afdb
+source=("git://git.gnome.org/pygobject#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
   mkdir build-py{2,3} devel
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 _build() (
   cd build-py$1
-  ../$pkgbase-$pkgver/configure --prefix=/usr --with-python=/usr/bin/python$1
+  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
   sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 )


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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:21:46
  Author: heftig
Revision: 276891

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

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

+
 /PKGBUILD  |  234 +++
 /firefox-install-dir.patch |   24 +
 /firefox-symbolic.svg  |   60 +++
 /firefox.desktop   |  620 +++
 /mozconfig |   72 +++
 /vendor.js |   18 
 extra-i686/PKGBUILD|  117 -
 extra-i686/firefox-install-dir.patch   |   12 
 extra-i686/firefox-symbolic.svg|   30 -
 extra-i686/firefox.desktop |  310 ---
 extra-i686/mozconfig   |   36 -
 extra-i686/vendor.js   |9 
 extra-x86_64/PKGBUILD  |  117 -
 extra-x86_64/firefox-install-dir.patch |   12 
 extra-x86_64/firefox-symbolic.svg  |   30 -
 extra-x86_64/firefox.desktop   |  310 ---
 extra-x86_64/mozconfig |   36 -
 extra-x86_64/vendor.js |9 
 18 files changed, 1028 insertions(+), 1028 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-24 00:20:59 UTC (rev 276890)
+++ extra-i686/PKGBUILD 2016-09-24 00:21:46 UTC (rev 276891)
@@ -1,117 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Jakub Schmidtke 
-
-pkgname=firefox
-pkgver=49.0
-pkgrel=1
-pkgdesc="Standalone web browser from mozilla.org"
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/;
-depends=('gtk3' 'gtk2' 'mozilla-common' 'libxt' 'startup-notification' 
'mime-types'
- 'dbus-glib' 'alsa-lib' 'ffmpeg' 'libvpx' 'libevent' 'nss' 'hunspell'
- 'sqlite' 'ttf-font' 'icu')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake' 'gconf'
- 'libpulse' 'inetutils' 'xorg-server-xvfb' 'autoconf2.13' 'rust')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'upower: Battery API')
-options=('!emptydirs' '!makeflags')
-source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz
-mozconfig
-firefox.desktop
-firefox-install-dir.patch
-vendor.js
-firefox-symbolic.svg)
-sha256sums=('6f7069fa94688f9fb5aa3bbb2ffa78456825067dd984afa714d74b3f0c6eaf63'
-'3b0c6b08c0211d8c5a02aa050755276ec864c5f2c5ac1a3d3f9f8a9af6512737'
-'75c526e9669b91b4fe5dcea650a1e8419220abb2e9564184f0d984c71eae82e8'
-'d86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'
-'4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
-'a2474b32b9b2d7e0fb53a4c89715507ad1c194bef77713d798fa39d507def9e9')
-validpgpkeys=('2B90598A745E992F315E22C58AB132963A06537A')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your 

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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:20:59
  Author: heftig
Revision: 276890

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |  448 ++---
 1 file changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-24 00:08:51 UTC (rev 276889)
+++ PKGBUILD2016-09-24 00:20:59 UTC (rev 276890)
@@ -1,224 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=49.0
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-md5sums=('4d197f9aab2bd94f5699365ab6e8535a'
- '440be0d916237cc2b2e8430241d0e580'
- 'da6728d79c1e772a40f101a99cf34f69'
- '999a046399e9982840072f6509271f7f'
- '7209b624adaf2df76335454f75d18b20'
- '567fea9b86f4ea6bc86c0184f5a9'
- '658af5a89795973a812990298a403140'
- '68b6bfe064fb6a07e9468fbf79b80012'
- '67b3fec10415dbcc266aa1a43d44d3ba'
- '8a4332c5211fbf332829a5ed8ba56281'
- 'd1d1c318180912a94253bf155b8b27a3'
- '51c2de5e7d934f6a0892e3a35d1a675b'
- '6173ba509d92a761c0aa4b32ea652f8d'
- '76d19e22fa19b185f32acb632196fe26'
- '7d544ad3366f29eaca48a1453c68a6da'
- '5858d6ff9458b01fee5f44f9dc89b004'
- '4160e045c848452fb06f6b5993a8f494'
- 'dc13fec5df0a8b5e5dab8982b5f206f2'
- '52c09ed5f9726c40cbbf9e2f58ec9b8e'
- '777f026aa93254eb56512e3c515cd52f'
- 'fcc36b44d3c36f44ee19a9c3d2e9da61'
- 'b393273a81d43d627afb97a0330e8ecb'
- '9dce53767f334ece18ab1677d1083bb1'
- 

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

2016-09-23 Thread Jan Steffens
Date: Saturday, September 24, 2016 @ 00:08:51
  Author: heftig
Revision: 276889

49.0.1-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  184 ++---
 1 file changed, 92 insertions(+), 92 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 23:35:51 UTC (rev 276888)
+++ PKGBUILD2016-09-24 00:08:51 UTC (rev 276889)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=49.0
+pkgver=49.0.1
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -131,94 +131,94 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-md5sums=('4d197f9aab2bd94f5699365ab6e8535a'
- '440be0d916237cc2b2e8430241d0e580'
- 'da6728d79c1e772a40f101a99cf34f69'
- '999a046399e9982840072f6509271f7f'
- '7209b624adaf2df76335454f75d18b20'
- '567fea9b86f4ea6bc86c0184f5a9'
- '658af5a89795973a812990298a403140'
- '68b6bfe064fb6a07e9468fbf79b80012'
- '67b3fec10415dbcc266aa1a43d44d3ba'
- '8a4332c5211fbf332829a5ed8ba56281'
- 'd1d1c318180912a94253bf155b8b27a3'
- '51c2de5e7d934f6a0892e3a35d1a675b'
- '6173ba509d92a761c0aa4b32ea652f8d'
- '76d19e22fa19b185f32acb632196fe26'
- '7d544ad3366f29eaca48a1453c68a6da'
- '5858d6ff9458b01fee5f44f9dc89b004'
- '4160e045c848452fb06f6b5993a8f494'
- 'dc13fec5df0a8b5e5dab8982b5f206f2'
- '52c09ed5f9726c40cbbf9e2f58ec9b8e'
- '777f026aa93254eb56512e3c515cd52f'
- 'fcc36b44d3c36f44ee19a9c3d2e9da61'
- 'b393273a81d43d627afb97a0330e8ecb'
- '9dce53767f334ece18ab1677d1083bb1'
- '467ca21c3ae3b359d17dc85232d39a85'
- '3c806910e2936c88d928cfa420ab0227'
- '99f0452bf624d0212cc9f2fec982fdd3'
- 'e74cd11360ea436d19cdd6c164acd246'
- '81ae1d70abb8a0d5358efceed9433c58'
- 'c4d077c5d8cd1e273472059fe78aa226'
- 'ccd70c03b900c99885c12b0b1eb822b5'
- 'da7de95862a1ed41361f903864276add'
- '107f21e04afdd35e56b6fe52950511a3'
- 'bbcb0800478feca67eaba47d7a8b3f05'
- '3eac39ee18dcbcb269884efb2854985c'
- 'e75767c1aa6aba534b477da039f00c31'
- 'e4507f3bc5fe373b8451ba08c8b2cceb'
- '5d5a6cf1848a02ec7b4fd891c3ba24b7'
- 'e34908d2ae89958b0363b451be4c6ec0'
- '548afcca01a9f4e107184be4c9d151dc'
- '00f6bd6a520a911b17add1a4d2ab1d90'
- 'a422d7e984bab6cd2a73b9656ad4e0e8'
- 'f6aae9343d47207234ab171009112f91'
- '5256f5adcaa3d50b8e06794f285b626e'
- '7419a91b28211cd45fd9968e3c40aa74'
- '1e5d5a0b0cb61ec2c69b2372926a2da8'
- '64d5cb73ffd31395985c3f188d81c27f'
- '672456a121393e30e5d659af7d7faa77'
- 'eb44ce3faa899826bfbf892cb7101452'
- '1a6020207c095dc0f5a4b1788c88ae36'
- '1294645c17b067eb458539c6303e2bce'
- 'e33e0f58d2dc31e25b59b6659b075dec'
- 'd7eb4a65ac7b93a61c9ce6e6715c9986'
- '09f83cf85f446cb5e06a0512b28c'
- '21b69e1c557c903b07672a5551088432'
- 'e7f6a2782b10b7ec863833799ac0e407'
- '5947f339d2401627c4518c73a1736969'
- '58b966fb7573f9e33b89fe3cdd573bb1'
- '19393f088d89ac265b5a57354862eae6'
- 'b0decce615a7bb833bf35f302ea7c586'
- 'b80e9d759fa98615b424c1880db5cc5c'
- 'd58999df28e7c2e9b73b19f695a3a995'
- 'b09e5eb2367dff43f5338b6e7fce08a4'
- 'c004de9fc9ac42e7165cc560ee47ad58'
- 'afdc5686f469db72841282abd6abd12c'
- '27cc814e3403791311f0cf9af6c299fe'
- '0c5f71dd6f5493775f6380be77cdbeaf'
- '1aba5514edc6a5e662a08c756d8dd123'
- '07c7124282d5e893a62f8dfca95a8da9'
- 'a6003cad1cef251e4f38dd1f7c82e1f5'
- 'fea3db7fc50087b95ce246887c596f97'
- '1acd9f5ccb43051def14ae19eb4a5e25'
- '41fcdff10e020e6c101a03552aa38413'
- 'd1c93ce557bfba60a6c052b25733a67b'
- 'd820d6641e198d078e2142b3c65d6771'
- 'dfad22afbf1064f1be64d55472d3096a'
- 'e334b52dbf8697efa1508431967ea7e6'
- '51a87e8b45234d1cda13521f8c299ea7'
- '04602c276fb91ee3b9482ea1ecbe96db'
- '9d9b26f55d8206c147695b896ac91c38'
- '1efb1eaecedc32888c924a4bd7aaa5bc'
- '2a6d5a0a7c51b3f52f2085133898ba76'
- 'be35f33d585ca14f0f00e802311db857'
- '05b4ee3f99f4daff3c81c18c831043de'
- '90b79a15464a32d7e678ec204d44a157'
- 'a6dde33acf851de9f1d2a7f29020a68c'
- 'c1015b7a19824cdc20ab3ef0beb0af81'
- '62647f609b7354002d7036ea93435f63'
- '5bb96c45a1c380a0ea0b0d1c30267a97'
- '2040141ab9410e0d21a27b581332839c'
- '6e546347077b88202334ad0df737def9'
- 'd50ceb618062a0397c2d68cc5df4d72f')
+md5sums=('e772df504c04368de7f256ec7f47b124'
+ 'c03b399814721b393f733364028251f2'
+ 

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

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 23:35:48
  Author: heftig
Revision: 276887

49.0.1-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 23:35:07 UTC (rev 276886)
+++ PKGBUILD2016-09-23 23:35:48 UTC (rev 276887)
@@ -4,7 +4,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=49.0
+pkgver=49.0.1
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=('i686' 'x86_64')
@@ -25,7 +25,7 @@
 firefox-install-dir.patch
 vendor.js
 firefox-symbolic.svg)
-sha256sums=('6f7069fa94688f9fb5aa3bbb2ffa78456825067dd984afa714d74b3f0c6eaf63'
+sha256sums=('eb43e24e644e3a9d663f896b96b57fb5e10195749f8a8dfe0300a626064b920d'
 '3b0c6b08c0211d8c5a02aa050755276ec864c5f2c5ac1a3d3f9f8a9af6512737'
 '75c526e9669b91b4fe5dcea650a1e8419220abb2e9564184f0d984c71eae82e8'
 'd86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'


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

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 23:35:51
  Author: heftig
Revision: 276888

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  totem-plparser/repos/gnome-unstable-i686/
  totem-plparser/repos/gnome-unstable-i686/PKGBUILD
(from rev 276886, totem-plparser/trunk/PKGBUILD)
  totem-plparser/repos/gnome-unstable-x86_64/
  totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276886, totem-plparser/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   38 ++
 gnome-unstable-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: totem-plparser/repos/gnome-unstable-i686/PKGBUILD (from rev 276886, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-23 23:35:51 UTC (rev 276888)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.10.7+1+gb25e497
+pkgrel=1
+pkgdesc="Simple GObject-based library to parse and save a host of playlist 
formats"
+url="https://git.gnome.org/browse/totem-pl-parser;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(gmime libsoup libarchive libquvi)
+makedepends=(intltool gobject-introspection git gnome-common gtk-doc)
+_commit=b25e4976c4409cdca22e456eb5679148b787556e
+source=("git://git.gnome.org/totem-pl-parser#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd totem-pl-parser
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd totem-pl-parser
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd totem-pl-parser
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-static --enable-gtk-doc
+  make
+}
+
+package(){
+  cd totem-pl-parser
+  make DESTDIR="$pkgdir" install
+}

Copied: totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276886, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-23 23:35:51 UTC (rev 276888)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.10.7+1+gb25e497
+pkgrel=1
+pkgdesc="Simple GObject-based library to parse and save a host of playlist 
formats"
+url="https://git.gnome.org/browse/totem-pl-parser;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(gmime libsoup libarchive libquvi)
+makedepends=(intltool gobject-introspection git gnome-common gtk-doc)
+_commit=b25e4976c4409cdca22e456eb5679148b787556e
+source=("git://git.gnome.org/totem-pl-parser#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd totem-pl-parser
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd totem-pl-parser
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd totem-pl-parser
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-static --enable-gtk-doc
+  make
+}
+
+package(){
+  cd totem-pl-parser
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 23:35:07
  Author: heftig
Revision: 276886

3.10.7+1+gb25e497-1

Modified:
  totem-plparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 22:34:53 UTC (rev 276885)
+++ PKGBUILD2016-09-23 23:35:07 UTC (rev 276886)
@@ -3,25 +3,36 @@
 # Contributor: Jan de Groot 
 
 pkgname=totem-plparser
-pkgver=3.10.6
+pkgver=3.10.7+1+gb25e497
 pkgrel=1
-url="http://www.gnome.org;
-pkgdesc="Totem playlist parser library"
-license=('LGPL')
+pkgdesc="Simple GObject-based library to parse and save a host of playlist 
formats"
+url="https://git.gnome.org/browse/totem-pl-parser;
+license=(LGPL)
 arch=(i686 x86_64)
-depends=('gmime' 'libsoup' 'libarchive' 'libquvi')
-makedepends=('intltool' 'gobject-introspection')
-source=(https://download.gnome.org/sources/totem-pl-parser/${pkgver:0:4}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('98a5d9bed1b1c012aeb2692ded2fd49399593f70f297f43e01fc1c5e13576757')
+depends=(gmime libsoup libarchive libquvi)
+makedepends=(intltool gobject-introspection git gnome-common gtk-doc)
+_commit=b25e4976c4409cdca22e456eb5679148b787556e
+source=("git://git.gnome.org/totem-pl-parser#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd totem-pl-parser
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd totem-pl-parser
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd totem-pl-parser-$pkgver
+  cd totem-pl-parser
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib --disable-static
+  --libexecdir=/usr/lib --disable-static --enable-gtk-doc
   make
 }
 
 package(){
-  cd totem-pl-parser-$pkgver
+  cd totem-pl-parser
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in rubinius/repos/community-x86_64 (6 files)

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 22:50:11
  Author: heftig
Revision: 190221

archrelease: copy trunk to community-x86_64

Added:
  rubinius/repos/community-x86_64/PKGBUILD
(from rev 190220, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
(from rev 190220, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
(from rev 190220, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

+
 PKGBUILD   |  174 +--
 dirs.patch |   42 +++---
 gemrc  |   10 +--
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 22:48:14 UTC (rev 190220)
+++ PKGBUILD2016-09-23 22:50:11 UTC (rev 190221)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=3.59
-pkgrel=1
-pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
-arch=(x86_64)
-url="http://rubinius.com;
-license=(custom)
-depends=(llvm-libs libffi openssl libyaml)
-makedepends=(llvm ruby clang valgrind)
-options=(!emptydirs)
-source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
-sha256sums=('feb65af7ff97ef44cab86790e3a67881cc0bc7389f01bfa10a9c2d62e9aadae7'
-'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
-
-_common() {
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8" TMPDIR="$srcdir"
-  cd $pkgbase-$pkgver
-}
-
-prepare() {
-  _common
-
-  patch -Np1 -i ../dirs.patch
-
-  mkdir -p "$GEM_HOME"
-  gem install --no-user-install -N vendor/cache/bundler-*.gem
-
-  "$GEM_HOME/bin/bundle" install --local
-}
-
-build() {
-  _common
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---includedir=/usr/include/rubinius \
---appdir=/usr/lib/rubinius \
---gemsdir=/usr/lib/rubinius/gems \
---llvm-shared \
---preserve-prefix \
---without-rpath \
---bin-link bundle --bin-link bundler
-  rake build
-}
-
-check() {
-  _common
-  rake vm:test || :
-}
-
-package_rubinius() {
-  optdepends=('ruby-docs: Ruby documentation')
-
-  _common
-
-  DESTDIR="$pkgdir" rake install
-
-  mkdir -p "$pkgdir/usr/share/ri"
-  ln -s 2.3.0 "$pkgdir/usr/share/ri/2.3"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/rubinius/LICENSE"
-
-### Split rubinius-ruby
-  mkdir -p "$srcdir/ruby/usr/bin"
-  for _f in "$pkgdir"/usr/bin/*; do
-[[ $_f == */rbx ]] && continue
-mv $_f "$srcdir/ruby/usr/bin"
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc="Ruby compat for Rubinius"
-  depends=("rubinius=$pkgver-$pkgrel")
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* "$pkgdir"
-  install -Dm644 gemrc "$pkgdir/etc/gemrc"
-  install -d "$pkgdir/usr/share/licenses/rubinius-ruby"
-  ln -s ../rubinius/LICENSE "$pkgdir/usr/share/licenses/rubinius-ruby/LICENSE"
-}

Copied: rubinius/repos/community-x86_64/PKGBUILD (from rev 190220, 
rubinius/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 22:50:11 UTC (rev 190221)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=3.60
+pkgrel=1
+pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
+arch=(x86_64)
+url="http://rubinius.com;
+license=(custom)
+depends=(llvm-libs libffi openssl libyaml)
+makedepends=(llvm ruby clang valgrind)
+options=(!emptydirs)
+source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch)
+sha256sums=('39f83fc74216391af56ea1ad13372878c0ed41fae49ee6a8cf8b0369a54c3b57'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
+
+_common() {
+  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8" TMPDIR="$srcdir"
+  cd $pkgbase-$pkgver
+}
+
+prepare() {
+  _common
+
+  patch -Np1 -i ../dirs.patch
+
+  mkdir -p "$GEM_HOME"
+  gem install --no-user-install -N vendor/cache/bundler-*.gem
+
+  "$GEM_HOME/bin/bundle" install --local
+}
+
+build() {
+  _common
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--includedir=/usr/include/rubinius \
+--appdir=/usr/lib/rubinius \
+--gemsdir=/usr/lib/rubinius/gems \
+--llvm-shared \
+--preserve-prefix \
+--without-rpath \
+--bin-link bundle --bin-link bundler
+  rake build
+}
+
+check() {
+  _common
+  rake vm:test || :
+}
+
+package_rubinius() {
+  optdepends=('ruby-docs: Ruby documentation')
+
+  _common
+
+  DESTDIR="$pkgdir" 

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

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 22:48:14
  Author: heftig
Revision: 190220

3.60-1

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 20:56:11 UTC (rev 190219)
+++ PKGBUILD2016-09-23 22:48:14 UTC (rev 190220)
@@ -3,7 +3,7 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=3.59
+pkgver=3.60
 pkgrel=1
 pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
 arch=(x86_64)
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('feb65af7ff97ef44cab86790e3a67881cc0bc7389f01bfa10a9c2d62e9aadae7'
+sha256sums=('39f83fc74216391af56ea1ad13372878c0ed41fae49ee6a8cf8b0369a54c3b57'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 '1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
 


[arch-commits] Commit in orca/repos (gnome-unstable-any gnome-unstable-any/PKGBUILD)

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:34:53
  Author: jgc
Revision: 276885

archrelease: copy trunk to gnome-unstable-any

Added:
  orca/repos/gnome-unstable-any/
  orca/repos/gnome-unstable-any/PKGBUILD
(from rev 276884, orca/trunk/PKGBUILD)

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

Copied: orca/repos/gnome-unstable-any/PKGBUILD (from rev 276884, 
orca/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2016-09-23 22:34:53 UTC (rev 276885)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: William Rea 
+
+pkgname=orca
+pkgver=3.21.92+4+gdb150db
+pkgrel=1
+pkgdesc="Screen reader for individuals who are blind or visually impaired"
+url="https://wiki.gnome.org/Projects/Orca;
+arch=(any)
+license=(LGPL)
+depends=(gtk3 at-spi2-atk python-atspi python-dbus python-xdg 
speech-dispatcher liblouis brltty
+ xorg-xmodmap gsettings-desktop-schemas
+ gst-plugins-base # playbin, audiotestsrc, basic decoders
+ gst-plugins-good # pulsesink, more decoders
+)
+makedepends=(itstool intltool git yelp-tools)
+groups=(gnome-extra)
+_commit=db150db7bf86a7f02cb210dd6342d99886fe501a
+source=("git://git.gnome.org/orca#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -e 's/ORCA_//' -e 's/_/\./g' -e 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:34:50
  Author: jgc
Revision: 276884

upgpkg: orca 3.21.92+4+gdb150db-1

Modified:
  orca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 22:15:38 UTC (rev 276883)
+++ PKGBUILD2016-09-23 22:34:50 UTC (rev 276884)
@@ -4,7 +4,7 @@
 # Contributor: William Rea 
 
 pkgname=orca
-pkgver=3.20.2
+pkgver=3.21.92+4+gdb150db
 pkgrel=1
 pkgdesc="Screen reader for individuals who are blind or visually impaired"
 url="https://wiki.gnome.org/Projects/Orca;
@@ -15,18 +15,29 @@
  gst-plugins-base # playbin, audiotestsrc, basic decoders
  gst-plugins-good # pulsesink, more decoders
 )
-makedepends=(itstool intltool)
+makedepends=(itstool intltool git yelp-tools)
 groups=(gnome-extra)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8c90403c4ae8bb0a4b240d1e784b61ee56de42df781520c912b298c10ae05785')
+_commit=db150db7bf86a7f02cb210dd6342d99886fe501a
+source=("git://git.gnome.org/orca#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -e 's/ORCA_//' -e 's/_/\./g' -e 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


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

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:15:32
  Author: jgc
Revision: 276882

upgpkg: glib-networking 2.50.0-1

Modified:
  glib-networking/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 22:10:40 UTC (rev 276881)
+++ PKGBUILD2016-09-23 22:15:32 UTC (rev 276882)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=glib-networking
-pkgver=2.48.2
+pkgver=2.50.0
 pkgrel=1
 pkgdesc="Network-related giomodules for glib"
 url="https://git.gnome.org/browse/glib-networking/;
@@ -9,12 +9,23 @@
 arch=(i686 x86_64)
 license=(GPL2)
 depends=(glib2 libproxy gnutls ca-certificates gsettings-desktop-schemas)
-makedepends=(intltool)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('925c0c49d6b2b8b5695f2e33cd952d1dbb7d18d3f2f796413577719315bb3a84')
+makedepends=(intltool git)
+_commit=e5fb3e2a0463097812b301a2ba60d7e60d90845b
+source=("git://git.gnome.org/glib-networking#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc \
 --libexecdir=/usr/lib/$pkgname --disable-static \
 --disable-installed-tests
@@ -22,12 +33,12 @@
 }
 
 check() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make -j1 -k check
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install testfiles_DATA=
 }
 


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

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:15:38
  Author: jgc
Revision: 276883

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  glib-networking/repos/gnome-unstable-i686/
  glib-networking/repos/gnome-unstable-i686/PKGBUILD
(from rev 276882, glib-networking/trunk/PKGBUILD)
  glib-networking/repos/gnome-unstable-x86_64/
  glib-networking/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276882, glib-networking/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   45 +++
 gnome-unstable-x86_64/PKGBUILD |   45 +++
 2 files changed, 90 insertions(+)

Copied: glib-networking/repos/gnome-unstable-i686/PKGBUILD (from rev 276882, 
glib-networking/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-23 22:15:38 UTC (rev 276883)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=glib-networking
+pkgver=2.50.0
+pkgrel=1
+pkgdesc="Network-related giomodules for glib"
+url="https://git.gnome.org/browse/glib-networking/;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(glib2 libproxy gnutls ca-certificates gsettings-desktop-schemas)
+makedepends=(intltool git)
+_commit=e5fb3e2a0463097812b301a2ba60d7e60d90845b
+source=("git://git.gnome.org/glib-networking#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname --disable-static \
+--disable-installed-tests
+  make
+}
+
+check() {
+  cd $pkgname
+  make -j1 -k check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install testfiles_DATA=
+}
+
+# vim:set ts=2 sw=2 et:

Copied: glib-networking/repos/gnome-unstable-x86_64/PKGBUILD (from rev 276882, 
glib-networking/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-23 22:15:38 UTC (rev 276883)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=glib-networking
+pkgver=2.50.0
+pkgrel=1
+pkgdesc="Network-related giomodules for glib"
+url="https://git.gnome.org/browse/glib-networking/;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(glib2 libproxy gnutls ca-certificates gsettings-desktop-schemas)
+makedepends=(intltool git)
+_commit=e5fb3e2a0463097812b301a2ba60d7e60d90845b
+source=("git://git.gnome.org/glib-networking#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname --disable-static \
+--disable-installed-tests
+  make
+}
+
+check() {
+  cd $pkgname
+  make -j1 -k check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install testfiles_DATA=
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:10:35
  Author: jgc
Revision: 276880

upgpkg: gvfs 1.30.0-1

Modified:
  gvfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 22:06:09 UTC (rev 276879)
+++ PKGBUILD2016-09-23 22:10:35 UTC (rev 276880)
@@ -5,7 +5,7 @@
 pkgname=(gvfs gvfs-{smb,afc,gphoto2,goa,mtp,nfs,google})
 pkgdesc="Virtual filesystem implementation for GIO"
 url="https://wiki.gnome.org/Projects/gvfs;
-pkgver=1.28.3
+pkgver=1.30.0
 pkgrel=1
 arch=(i686 x86_64)
 license=(LGPL)
@@ -14,7 +14,7 @@
 makedepends=(dbus intltool libgphoto2 libimobiledevice smbclient docbook-xsl
  gtk3 libmtp gnome-online-accounts libnfs libgdata git gtk-doc 
python)
 groups=(gnome)
-_commit=70d801fc64cdee5f2ce85f405d43411433195aae
+_commit=34b60af60746e41ab6d06a0d021325f7b423fbe9
 source=("git://git.gnome.org/gvfs#commit=$_commit"
 gvfsd.hook)
 sha256sums=('SKIP'


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

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:10:40
  Author: jgc
Revision: 276881

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gvfs/repos/gnome-unstable-i686/
  gvfs/repos/gnome-unstable-i686/PKGBUILD
(from rev 276880, gvfs/trunk/PKGBUILD)
  gvfs/repos/gnome-unstable-i686/gvfs-nfs.install
(from rev 276880, gvfs/trunk/gvfs-nfs.install)
  gvfs/repos/gnome-unstable-i686/gvfsd.hook
(from rev 276880, gvfs/trunk/gvfsd.hook)
  gvfs/repos/gnome-unstable-x86_64/
  gvfs/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276880, gvfs/trunk/PKGBUILD)
  gvfs/repos/gnome-unstable-x86_64/gvfs-nfs.install
(from rev 276880, gvfs/trunk/gvfs-nfs.install)
  gvfs/repos/gnome-unstable-x86_64/gvfsd.hook
(from rev 276880, gvfs/trunk/gvfsd.hook)

+
 gnome-unstable-i686/PKGBUILD   |  149 +++
 gnome-unstable-i686/gvfs-nfs.install   |7 +
 gnome-unstable-i686/gvfsd.hook |   11 ++
 gnome-unstable-x86_64/PKGBUILD |  149 +++
 gnome-unstable-x86_64/gvfs-nfs.install |7 +
 gnome-unstable-x86_64/gvfsd.hook   |   11 ++
 6 files changed, 334 insertions(+)

Copied: gvfs/repos/gnome-unstable-i686/PKGBUILD (from rev 276880, 
gvfs/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-23 22:10:40 UTC (rev 276881)
@@ -0,0 +1,149 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=gvfs
+pkgname=(gvfs gvfs-{smb,afc,gphoto2,goa,mtp,nfs,google})
+pkgdesc="Virtual filesystem implementation for GIO"
+url="https://wiki.gnome.org/Projects/gvfs;
+pkgver=1.30.0
+pkgrel=1
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(avahi dconf fuse libarchive libcdio-paranoia libsoup udisks2 libsecret
+ libbluray libgudev gcr psmisc)
+makedepends=(dbus intltool libgphoto2 libimobiledevice smbclient docbook-xsl
+ gtk3 libmtp gnome-online-accounts libnfs libgdata git gtk-doc 
python)
+groups=(gnome)
+_commit=34b60af60746e41ab6d06a0d021325f7b423fbe9
+source=("git://git.gnome.org/gvfs#commit=$_commit"
+gvfsd.hook)
+sha256sums=('SKIP'
+'478b9cf7b4c242959fc640dbf0cd4935f16c59b81f5828a3af102d608d7a9d72')
+
+prepare() {
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd $pkgbase
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gvfs \
+  --with-bash-completion-dir=/usr/share/bash-completion/completions
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_gvfs() {
+  replaces=(gvfs-{obexftp,afp})
+  optdepends=('gvfs-afc: AFC (mobile devices) support'
+  'gvfs-smb: SMB/CIFS (Windows client) support'
+  'gvfs-gphoto2: gphoto2 (PTP camera/MTP media player) support'
+  'gvfs-mtp: MTP device support'
+  'gvfs-goa: gnome-online-accounts (e.g. OwnCloud) support'
+  'gvfs-nfs: NFS support'
+  'gvfs-google: Google Drive support'
+  'gtk3: Recent files support')
+
+  cd $pkgbase
+  sed -e 's/^am__append_4/#am__append_4/' \
+  -e 's/^am__append_5/#am__append_5/' \
+  -e 's/^am__append_6/#am__append_6/' \
+  -e 's/^am__append_7/#am__append_7/' \
+  -i monitor/Makefile
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 ../gvfsd.hook "$pkgdir/usr/share/libalpm/hooks/gvfsd.hook"
+
+  cd "$pkgdir"
+  rm usr/lib/gvfs/gvfsd-{smb,smb-browse,afc,gphoto2,mtp,nfs,google}
+  rm usr/share/gvfs/mounts/{smb,smb-browse,afc,gphoto2,mtp,nfs,google}.mount
+  rm usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
+  rm usr/share/GConf/gsettings/gvfs-smb.convert
+}
+
+package_gvfs-smb() {
+  pkgdesc+=" (SMB/CIFS backend; Windows client)"
+  depends=("gvfs=$pkgver" smbclient)
+
+  cd $pkgbase/daemon
+  install -m755 -d "$pkgdir/usr/lib/gvfs"
+  install -m755 -d "$pkgdir/usr/share/gvfs/mounts"
+
+  install -m755 .libs/gvfsd-smb{,-browse} "$pkgdir/usr/lib/gvfs/"
+  install -m644 smb{,-browse}.mount "$pkgdir/usr/share/gvfs/mounts/"
+
+  install -Dm644 org.gnome.system.smb.gschema.xml \
+"$pkgdir/usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml"
+  install -Dm644 gvfs-smb.convert \
+"$pkgdir/usr/share/GConf/gsettings/gvfs-smb.convert"
+}
+
+package_gvfs-afc() {
+  pkgdesc+=" (AFC backend; Apple mobile devices)"
+  depends=("gvfs=$pkgver" libimobiledevice usbmuxd)
+
+  cd $pkgbase/daemon
+  install -D .libs/gvfsd-afc "$pkgdir/usr/lib/gvfs/gvfsd-afc"
+  install -Dm644 afc.mount "$pkgdir/usr/share/gvfs/mounts/afc.mount"
+
+  cd "$srcdir/$pkgbase/monitor/afc"
+  make DESTDIR="$pkgdir" install
+}
+
+package_gvfs-gphoto2() {
+  pkgdesc+=" (gphoto2 backend; PTP camera, MTP media player)"
+  depends=("gvfs=$pkgver" 

[arch-commits] Commit in gnome-user-docs/repos (2 files)

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:06:09
  Author: jgc
Revision: 276879

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-user-docs/repos/gnome-unstable-any/
  gnome-user-docs/repos/gnome-unstable-any/PKGBUILD
(from rev 276878, gnome-user-docs/trunk/PKGBUILD)

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

Copied: gnome-user-docs/repos/gnome-unstable-any/PKGBUILD (from rev 276878, 
gnome-user-docs/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2016-09-23 22:06:09 UTC (rev 276879)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-user-docs
+pkgver=3.22.0+1+g61f915e
+pkgrel=1
+pkgdesc="User documentation for GNOME"
+url="https://www.gnome.org/;
+arch=(any)
+license=(FDL)
+depends=(yelp)
+makedepends=(yelp-tools git gnome-common)
+groups=(gnome)
+_commit=61f915efb12f4b472b81b916733a5728fb0fd19a
+source=("git://git.gnome.org/gnome-user-docs#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+# Fixup missing tag...
+  git rev-parse --verify -q 3.22.0 || git tag 3.22.0 
01d8e67cc466c667e2f02f605999444a9c17e10c
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gnome-user-docs/trunk (PKGBUILD)

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 22:06:06
  Author: jgc
Revision: 276878

upgpkg: gnome-user-docs 3.22.0+1+g61f915e-1

Modified:
  gnome-user-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 21:54:03 UTC (rev 276877)
+++ PKGBUILD2016-09-23 22:06:06 UTC (rev 276878)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-user-docs
-pkgver=3.20.2
+pkgver=3.22.0+1+g61f915e
 pkgrel=1
 pkgdesc="User documentation for GNOME"
 url="https://www.gnome.org/;
@@ -9,13 +9,29 @@
 arch=(any)
 license=(FDL)
 depends=(yelp)
-makedepends=(yelp-tools)
+makedepends=(yelp-tools git gnome-common)
 groups=(gnome)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3e998ba05956582219b068e7f7abd9baebf8bc4067c9618d6d0be92c68a5bf32')
+_commit=61f915efb12f4b472b81b916733a5728fb0fd19a
+source=("git://git.gnome.org/gnome-user-docs#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+# Fixup missing tag...
+  git rev-parse --verify -q 3.22.0 || git tag 3.22.0 
01d8e67cc466c667e2f02f605999444a9c17e10c
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var
   make
@@ -22,6 +38,6 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in gnome-shell-extensions/repos (2 files)

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 21:54:03
  Author: jgc
Revision: 276877

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-shell-extensions/repos/gnome-unstable-any/
  gnome-shell-extensions/repos/gnome-unstable-any/PKGBUILD
(from rev 276876, gnome-shell-extensions/trunk/PKGBUILD)

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

Copied: gnome-shell-extensions/repos/gnome-unstable-any/PKGBUILD (from rev 
276876, gnome-shell-extensions/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2016-09-23 21:54:03 UTC (rev 276877)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-shell-extensions
+pkgver=3.22.0+1+gf99b42e
+pkgrel=1
+pkgdesc="Extensions for GNOME shell, including classic mode"
+url="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
+arch=(any)
+license=(GPL)
+depends=(gnome-shell)
+makedepends=(intltool git gnome-common)
+optdepends=('nautilus: gnome-classic session')
+groups=(gnome)
+_commit=f99b42e73232f794b00e8487fcd595661ebd4fba
+source=("git://git.gnome.org/gnome-shell-extensions#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-session 
--enable-extensions=all
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-23 Thread Jan de Groot
Date: Friday, September 23, 2016 @ 21:54:00
  Author: jgc
Revision: 276876

upgpkg: gnome-shell-extensions 3.22.0+1+gf99b42e-1

Modified:
  gnome-shell-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 17:03:03 UTC (rev 276875)
+++ PKGBUILD2016-09-23 21:54:00 UTC (rev 276876)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-shell-extensions
-pkgver=3.20.1
+pkgver=3.22.0+1+gf99b42e
 pkgrel=1
 pkgdesc="Extensions for GNOME shell, including classic mode"
 url="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
@@ -9,19 +9,31 @@
 arch=(any)
 license=(GPL)
 depends=(gnome-shell)
-makedepends=(intltool)
+makedepends=(intltool git gnome-common)
 optdepends=('nautilus: gnome-classic session')
 groups=(gnome)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('bc432ec163c79794331290d7a9321bee184be077d348faf3b7a1639b672939a3')
+_commit=f99b42e73232f794b00e8487fcd595661ebd4fba
+source=("git://git.gnome.org/gnome-shell-extensions#commit=$_commit")
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-session 
--enable-extensions=all
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


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

2016-09-23 Thread Jelle van der Waa
Date: Friday, September 23, 2016 @ 20:56:00
  Author: jelle
Revision: 190218

upgpkg: timew 1.0.0-3

Modified:
  timew/trunk/PKGBUILD
  timew/trunk/timew.install

---+
 PKGBUILD  |2 +-
 timew.install |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 17:27:53 UTC (rev 190217)
+++ PKGBUILD2016-09-23 20:56:00 UTC (rev 190218)
@@ -3,7 +3,7 @@
 
 pkgname=timew
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A command line time tracking application"
 arch=('x86_64' 'i686')
 url="http://taskwarrior.org/docs/timewarrior/;

Modified: timew.install
===
--- timew.install   2016-09-23 17:27:53 UTC (rev 190217)
+++ timew.install   2016-09-23 20:56:00 UTC (rev 190218)
@@ -1,6 +1,6 @@
 post_install() {
 echo "You can find the taskwarrior on-modify-hook at:
-/usr/share/doc/timew/on-modify.timewarrior"
+/usr/share/doc/timew/ext/on-modify.timewarrior"
 echo
 echo "You can use /usr/bin/timew-refresh-holidays to download holiday 
schedules"
 echo "Please see: http://taskwarrior.org/docs/timewarrior/holidays.html 
for more info"


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

2016-09-23 Thread Jelle van der Waa
Date: Friday, September 23, 2016 @ 20:56:11
  Author: jelle
Revision: 190219

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

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

+
 /PKGBUILD  |   84 +++
 /timew.install |   14 ++
 community-i686/PKGBUILD|   42 ---
 community-i686/timew.install   |7 ---
 community-x86_64/PKGBUILD  |   42 ---
 community-x86_64/timew.install |7 ---
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 20:56:00 UTC (rev 190218)
+++ community-i686/PKGBUILD 2016-09-23 20:56:11 UTC (rev 190219)
@@ -1,42 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Joost Bremmer 
-
-pkgname=timew
-pkgver=1.0.0
-pkgrel=2
-pkgdesc="A command line time tracking application"
-arch=('x86_64' 'i686')
-url="http://taskwarrior.org/docs/timewarrior/;
-license=('MIT')
-makedepends=('cmake' 'gcc-libs')
-optdepends=('task: Taskwarrior integration')
-provides=('timew')
-conflicts=('timew-git')
-install=$pkgname.install
-source=("http://taskwarrior.org/download/timew-${pkgver}.tar.gz;)
-sha256sums=('ac027910e1e8365bdd218a8b42389b26d017d38d3c96516c408db6d5a44e0bb5')
-
-prepare() {
-cd "${pkgname}-${pkgver}"
-
-# Fix Python shebang, fixed upstream in 1.1.0
-# 
https://git.tasktools.org/projects/TM/repos/timew/commits/5ddef40d8272be870e05ee3753dcf3bbe35e2bd9
-sed -i 's/env python/env python2/g' doc/holidays/refresh
-}
-
-build() {
-cd "${pkgname}-${pkgver}"
-cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/usr .
-make
-}
-
-
-package() {
-cd "${pkgname}-${pkgver}"
-
-make DESTDIR=${pkgdir} install
-
-# Install the refresh holiday scripts in /usr/bin/ for user convenience.
-chmod 755 "${pkgdir}/usr/share/doc/timew/doc/holidays/refresh"
-ln -s "/usr/share/doc/timew/doc/holidays/refresh" 
"${pkgdir}/usr/bin/timew-refresh-holidays"
-}

Copied: timew/repos/community-i686/PKGBUILD (from rev 190218, 
timew/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-23 20:56:11 UTC (rev 190219)
@@ -0,0 +1,42 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Joost Bremmer 
+
+pkgname=timew
+pkgver=1.0.0
+pkgrel=3
+pkgdesc="A command line time tracking application"
+arch=('x86_64' 'i686')
+url="http://taskwarrior.org/docs/timewarrior/;
+license=('MIT')
+makedepends=('cmake' 'gcc-libs')
+optdepends=('task: Taskwarrior integration')
+provides=('timew')
+conflicts=('timew-git')
+install=$pkgname.install
+source=("http://taskwarrior.org/download/timew-${pkgver}.tar.gz;)
+sha256sums=('ac027910e1e8365bdd218a8b42389b26d017d38d3c96516c408db6d5a44e0bb5')
+
+prepare() {
+cd "${pkgname}-${pkgver}"
+
+# Fix Python shebang, fixed upstream in 1.1.0
+# 
https://git.tasktools.org/projects/TM/repos/timew/commits/5ddef40d8272be870e05ee3753dcf3bbe35e2bd9
+sed -i 's/env python/env python2/g' doc/holidays/refresh
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/usr .
+make
+}
+
+
+package() {
+cd "${pkgname}-${pkgver}"
+
+make DESTDIR=${pkgdir} install
+
+# Install the refresh holiday scripts in /usr/bin/ for user convenience.
+chmod 755 "${pkgdir}/usr/share/doc/timew/doc/holidays/refresh"
+ln -s "/usr/share/doc/timew/doc/holidays/refresh" 
"${pkgdir}/usr/bin/timew-refresh-holidays"
+}

Deleted: community-i686/timew.install
===
--- community-i686/timew.install2016-09-23 20:56:00 UTC (rev 190218)
+++ community-i686/timew.install2016-09-23 20:56:11 UTC (rev 190219)
@@ -1,7 +0,0 @@
-post_install() {
-echo "You can find the taskwarrior on-modify-hook at:
-/usr/share/doc/timew/on-modify.timewarrior"
-echo
-echo "You can use /usr/bin/timew-refresh-holidays to download holiday 
schedules"
-echo "Please see: http://taskwarrior.org/docs/timewarrior/holidays.html 
for more info"
-}

Copied: timew/repos/community-i686/timew.install (from rev 190218, 
timew/trunk/timew.install)

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

2016-09-23 Thread Johannes Löthberg
Date: Friday, September 23, 2016 @ 17:27:41
  Author: demize
Revision: 190216

upgpkg: haproxy 1.6.9-2

Modified:
  haproxy/trunk/PKGBUILD
  haproxy/trunk/haproxy.install

-+
 PKGBUILD|2 +-
 haproxy.install |8 
 2 files changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 16:04:30 UTC (rev 190215)
+++ PKGBUILD2016-09-23 17:27:41 UTC (rev 190216)
@@ -4,7 +4,7 @@
 
 pkgname=haproxy
 pkgver=1.6.9
-pkgrel=1
+pkgrel=2
 
 pkgdesc='Reliable, high performance TCP/HTTP load balancer'
 url='http://haproxy.org/'

Modified: haproxy.install
===
--- haproxy.install 2016-09-23 16:04:30 UTC (rev 190215)
+++ haproxy.install 2016-09-23 17:27:41 UTC (rev 190216)
@@ -1,4 +1,12 @@
 post_install() {
   getent passwd haproxy >/dev/null || useradd -r -M -d / \
 -s /usr/bin/nologin haproxy >/dev/null
+
+  printf '==> %s\n' "The example config chroots HAProxy, meaning that logging 
to journald won't work."
+  printf '%s\n' "Either disable chrooting, use rsyslog, or bind 
/run/systemd/journal/dev-log into the chroot."
 }
+
+post_upgrade() {
+  printf '==> %s\n' "The example config chroots HAProxy, meaning that logging 
to journald won't work."
+  printf '%s\n' "Either disable chrooting, use rsyslog, or bind 
/run/systemd/journal/dev-log into the chroot."
+}


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

2016-09-23 Thread Johannes Löthberg
Date: Friday, September 23, 2016 @ 17:27:53
  Author: demize
Revision: 190217

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

Added:
  haproxy/repos/community-i686/PKGBUILD
(from rev 190216, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-i686/haproxy.cfg
(from rev 190216, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-i686/haproxy.install
(from rev 190216, haproxy/trunk/haproxy.install)
  haproxy/repos/community-x86_64/PKGBUILD
(from rev 190216, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-x86_64/haproxy.cfg
(from rev 190216, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-x86_64/haproxy.install
(from rev 190216, haproxy/trunk/haproxy.install)
Deleted:
  haproxy/repos/community-i686/PKGBUILD
  haproxy/repos/community-i686/haproxy.cfg
  haproxy/repos/community-i686/haproxy.install
  haproxy/repos/community-x86_64/PKGBUILD
  haproxy/repos/community-x86_64/haproxy.cfg
  haproxy/repos/community-x86_64/haproxy.install

--+
 /PKGBUILD|  140 +
 /haproxy.cfg |   98 +
 /haproxy.install |   24 ++
 community-i686/PKGBUILD  |   70 --
 community-i686/haproxy.cfg   |   49 
 community-i686/haproxy.install   |4 -
 community-x86_64/PKGBUILD|   70 --
 community-x86_64/haproxy.cfg |   49 
 community-x86_64/haproxy.install |4 -
 9 files changed, 262 insertions(+), 246 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 17:27:41 UTC (rev 190216)
+++ community-i686/PKGBUILD 2016-09-23 17:27:53 UTC (rev 190217)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=haproxy
-pkgver=1.6.9
-pkgrel=1
-
-pkgdesc='Reliable, high performance TCP/HTTP load balancer'
-url='http://haproxy.org/'
-arch=('i686' 'x86_64')
-license=('GPL')
-
-depends=('openssl' 'pcre' 'zlib' 'lua')
-
-backup=('etc/haproxy/haproxy.cfg')
-
-install=haproxy.install
-
-source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
-haproxy.cfg)
-
-md5sums=('c52eee40eb66f290d6f089c339b9d2b3'
- '02241a8ca257d12f7eb131e2d7da3f3b')
-
-prepare() {
-  cd haproxy-$pkgver
-  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
-}
-
-build() {
-  cd haproxy-$pkgver
-
-  make CPU=generic TARGET=linux2628 \
-USE_GETADDRINFO=1 \
-USE_OPENSSL=1 \
-USE_PCRE=1 USE_PCRE_JIT=1 \
-USE_ZLIB=1 \
-USE_LUA=1
-
-  for contrib in halog iprange systemd; do
-make -C contrib/$contrib SBINDIR=/usr/bin
-  done
-}
-
-package() {
-  cd haproxy-$pkgver
-  make \
-EXTRA=haproxy-systemd-wrapper \
-PREFIX="$pkgdir"/usr \
-SBINDIR="$pkgdir"/usr/bin \
-DOCDIR="$pkgdir"/usr/share/$pkgname \
-install
-
-  for contrib in halog iprange; do
-install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
-  done
-
-  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
-  install -Dm644 contrib/systemd/haproxy.service \
-"$pkgdir"/usr/lib/systemd/system/haproxy.service
-
-  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
-  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
-  install -m644 examples/errorfiles/*.http \
-"$pkgdir"/usr/share/haproxy/examples/errorfiles/
-
-  install -Dm644 examples/haproxy.vim \
-"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
-}

Copied: haproxy/repos/community-i686/PKGBUILD (from rev 190216, 
haproxy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-23 17:27:53 UTC (rev 190217)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.6.9
+pkgrel=2
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('c52eee40eb66f290d6f089c339b9d2b3'
+ '02241a8ca257d12f7eb131e2d7da3f3b')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1
+
+  for contrib in halog iprange systemd; do
+make -C contrib/$contrib 

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

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 17:03:03
  Author: heftig
Revision: 276875

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gtk3/repos/gnome-unstable-i686/PKGBUILD
(from rev 276874, gtk3/trunk/PKGBUILD)
  gtk3/repos/gnome-unstable-i686/gtk-query-immodules-3.0.hook
(from rev 276874, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/gnome-unstable-i686/gtk-update-icon-cache.hook
(from rev 276874, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/gnome-unstable-i686/gtk-update-icon-cache.script
(from rev 276874, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/gnome-unstable-i686/gtk3.install
(from rev 276874, gtk3/trunk/gtk3.install)
  gtk3/repos/gnome-unstable-i686/settings.ini
(from rev 276874, gtk3/trunk/settings.ini)
  gtk3/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 276874, gtk3/trunk/PKGBUILD)
  gtk3/repos/gnome-unstable-x86_64/gtk-query-immodules-3.0.hook
(from rev 276874, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/gnome-unstable-x86_64/gtk-update-icon-cache.hook
(from rev 276874, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/gnome-unstable-x86_64/gtk-update-icon-cache.script
(from rev 276874, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/gnome-unstable-x86_64/gtk3.install
(from rev 276874, gtk3/trunk/gtk3.install)
  gtk3/repos/gnome-unstable-x86_64/settings.ini
(from rev 276874, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/gnome-unstable-i686/PKGBUILD
  gtk3/repos/gnome-unstable-i686/gtk-query-immodules-3.0.hook
  gtk3/repos/gnome-unstable-i686/gtk-update-icon-cache.hook
  gtk3/repos/gnome-unstable-i686/gtk-update-icon-cache.script
  gtk3/repos/gnome-unstable-i686/gtk3.install
  gtk3/repos/gnome-unstable-i686/settings.ini
  gtk3/repos/gnome-unstable-x86_64/PKGBUILD
  gtk3/repos/gnome-unstable-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/gnome-unstable-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/gnome-unstable-x86_64/gtk-update-icon-cache.script
  gtk3/repos/gnome-unstable-x86_64/gtk3.install
  gtk3/repos/gnome-unstable-x86_64/settings.ini

+
 /PKGBUILD  |  202 +++
 /gtk-query-immodules-3.0.hook  |   22 ++
 /gtk-update-icon-cache.hook|   26 ++
 /gtk-update-icon-cache.script  |   20 +
 /gtk3.install  |6 
 /settings.ini  |8 
 gnome-unstable-i686/PKGBUILD   |   82 ---
 gnome-unstable-i686/gtk-query-immodules-3.0.hook   |   11 -
 gnome-unstable-i686/gtk-update-icon-cache.hook |   13 -
 gnome-unstable-i686/gtk-update-icon-cache.script   |   10 
 gnome-unstable-i686/gtk3.install   |3 
 gnome-unstable-i686/settings.ini   |4 
 gnome-unstable-x86_64/PKGBUILD |   82 ---
 gnome-unstable-x86_64/gtk-query-immodules-3.0.hook |   11 -
 gnome-unstable-x86_64/gtk-update-icon-cache.hook   |   13 -
 gnome-unstable-x86_64/gtk-update-icon-cache.script |   10 
 gnome-unstable-x86_64/gtk3.install |3 
 gnome-unstable-x86_64/settings.ini |4 
 18 files changed, 284 insertions(+), 246 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2016-09-23 16:53:08 UTC (rev 276874)
+++ gnome-unstable-i686/PKGBUILD2016-09-23 17:03:03 UTC (rev 276875)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.22.0
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(i686 x86_64)
-url="http://www.gtk.org/;
-depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
- libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
- adwaita-icon-theme json-glib rest librsvg wayland-protocols 
desktop-file-utils mesa)
-makedepends=(gobject-introspection libcanberra gtk-doc git)
-license=(LGPL)
-_commit=b51255b6a7a883e4e5977057707205ab8f225d55
-source=("git://git.gnome.org/gtk+#commit=$_commit"
-settings.ini
-gtk-query-immodules-3.0.hook
-gtk-update-icon-cache.hook
-gtk-update-icon-cache.script)
-sha256sums=('SKIP'
-'01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202'
-'de46e5514ff39a7a65e01e485e874775ab1c0ad20b8e94ada43f4a6af1370845'
-'496064a9dd6214bd58f689dd817dbdc4d7f17d42a8c9940a87018c3f829ce308'
-'f1d3a0dbfd82f7339301abecdbe5f024337919b48bd0e09296bb0e79863b2541')
-
-pkgver() {
-  cd gtk+
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-cd gtk+
-NOCONFIGURE=1 ./autogen.sh
-}

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

2016-09-23 Thread Jan Steffens
Date: Friday, September 23, 2016 @ 16:53:08
  Author: heftig
Revision: 276874

3.22.0+21+gad32a48-1

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 16:18:18 UTC (rev 276873)
+++ PKGBUILD2016-09-23 16:53:08 UTC (rev 276874)
@@ -3,18 +3,18 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.22.0
+pkgname=(gtk3 gtk-update-icon-cache gtk3-print-backends)
+pkgver=3.22.0+21+gad32a48
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(i686 x86_64)
 url="http://www.gtk.org/;
-depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
- libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
- adwaita-icon-theme json-glib rest librsvg wayland-protocols 
desktop-file-utils mesa)
-makedepends=(gobject-introspection libcanberra gtk-doc git)
+depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2
+ libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
+ adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa)
+makedepends=(gobject-introspection libcanberra gtk-doc git colord rest libcups)
 license=(LGPL)
-_commit=b51255b6a7a883e4e5977057707205ab8f225d55
+_commit=ad32a48765dedcf2c795321e7930dc8aa65add31
 source=("git://git.gnome.org/gtk+#commit=$_commit"
 settings.ini
 gtk-query-immodules-3.0.hook
@@ -32,6 +32,7 @@
 }
 
 prepare() {
+mkdir print-backends
 cd gtk+
 NOCONFIGURE=1 ./autogen.sh
 }
@@ -56,7 +57,8 @@
 
 package_gtk3() {
 depends+=(gtk-update-icon-cache)
-optdepends=('libcanberra: gtk3-widget-factory demo')
+optdepends=('libcanberra: gtk3-widget-factory demo'
+'gtk3-print-backends: Printing')
 install=gtk3.install
 
 cd gtk+
@@ -67,6 +69,16 @@
 
 # split this out to use with gtk2 too
 rm "$pkgdir/usr/bin/gtk-update-icon-cache"
+
+cd "$pkgdir"
+for _f in usr/lib/*/*/printbackends/*; do
+case $_f in
+*-file.so|*-lpr.so) continue;;
+esac
+
+mkdir -p "$srcdir/print-backends/${_f%/*}"
+mv "$_f" "$srcdir/print-backends/$_f"
+done
 }
 
 package_gtk-update-icon-cache() {
@@ -79,4 +91,11 @@
 install -D ../gtk-update-icon-cache.script 
"$pkgdir/usr/share/libalpm/scripts/gtk-update-icon-cache"
 }
 
+package_gtk3-print-backends() {
+pkgdesc="Print backends for GTK3"
+depends=(gtk3 rest colord libcups)
+groups=(gnome)
+
+mv print-backends/* "$pkgdir"
+}
 # vim:set et sw=4:


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 16:18:18
  Author: felixonmars
Revision: 276873

Update upstream URL (FS#50762)

Modified:
  ibus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 12:22:54 UTC (rev 276872)
+++ PKGBUILD2016-09-23 16:18:18 UTC (rev 276873)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="Next Generation Input Bus for Linux"
 arch=('i686' 'x86_64')
-url="http://ibus.googlecode.com;
+url="https://github.com/ibus/ibus/wiki;
 license=('LGPL')
 depends=('dconf' 'gtk2' 'gtk3' 'hicolor-icon-theme' 'libnotify' 'python-dbus' 
'python-gobject' 'iso-codes' 'python2-gobject2' 'python2-dbus' 
'python2-gobject' 'librsvg')
 makedepends=('gobject-introspection' 'vala' 'intltool' 'git' 'gnome-common' 
'gtk-doc' 'gconf' 'qt5-base' 'nodejs-emojione')


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 16:04:30
  Author: felixonmars
Revision: 190215

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 190214, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 16:04:10 UTC (rev 190214)
+++ PKGBUILD2016-09-23 16:04:30 UTC (rev 190215)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=3.5.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='http://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('8c56096794ee66c094ccfbe948cd8aef')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 190214, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 16:04:30 UTC (rev 190215)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=3.5.0
+pkgrel=2
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='http://eslint.org'
+license=('MIT')
+depends=('nodejs') # 'acorn')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('8c56096794ee66c094ccfbe948cd8aef')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+_disabled() {
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+npm link $dep;
+  done
+}


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 16:04:10
  Author: felixonmars
Revision: 190214

upgpkg: eslint 3.5.0-2

use bundled acorn for now (FS#50856)

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 14:51:31 UTC (rev 190213)
+++ PKGBUILD2016-09-23 16:04:10 UTC (rev 190214)
@@ -3,12 +3,12 @@
 
 pkgname=eslint
 pkgver=3.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
 url='http://eslint.org'
 license=('MIT')
-depends=('nodejs' 'acorn')
+depends=('nodejs') # 'acorn')
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
@@ -23,7 +23,9 @@
 
   install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
   ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
 
+_disabled() {
   # Experimental dedup
   cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
   for dep in acorn; do


[arch-commits] Commit in opencascade/repos (14 files)

2016-09-23 Thread Florian Pritz
Date: Friday, September 23, 2016 @ 14:51:31
  Author: bluewind
Revision: 190213

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

Added:
  opencascade/repos/community-testing-i686/
  opencascade/repos/community-testing-i686/PKGBUILD
(from rev 190212, opencascade/trunk/PKGBUILD)
  opencascade/repos/community-testing-i686/PKGBUILD-7.0.0
(from rev 190212, opencascade/trunk/PKGBUILD-7.0.0)
  opencascade/repos/community-testing-i686/env.sh
(from rev 190212, opencascade/trunk/env.sh)
  opencascade/repos/community-testing-i686/opencascade.conf
(from rev 190212, opencascade/trunk/opencascade.conf)
  opencascade/repos/community-testing-i686/opencascade.sh
(from rev 190212, opencascade/trunk/opencascade.sh)
  opencascade/repos/community-testing-i686/salome-occt-6.9.1.patch
(from rev 190212, opencascade/trunk/salome-occt-6.9.1.patch)
  opencascade/repos/community-testing-x86_64/
  opencascade/repos/community-testing-x86_64/PKGBUILD
(from rev 190212, opencascade/trunk/PKGBUILD)
  opencascade/repos/community-testing-x86_64/PKGBUILD-7.0.0
(from rev 190212, opencascade/trunk/PKGBUILD-7.0.0)
  opencascade/repos/community-testing-x86_64/env.sh
(from rev 190212, opencascade/trunk/env.sh)
  opencascade/repos/community-testing-x86_64/opencascade.conf
(from rev 190212, opencascade/trunk/opencascade.conf)
  opencascade/repos/community-testing-x86_64/opencascade.sh
(from rev 190212, opencascade/trunk/opencascade.sh)
  opencascade/repos/community-testing-x86_64/salome-occt-6.9.1.patch
(from rev 190212, opencascade/trunk/salome-occt-6.9.1.patch)

--+
 community-testing-i686/PKGBUILD  |   65 +
 community-testing-i686/PKGBUILD-7.0.0|   54 +
 community-testing-i686/env.sh|   22 
 community-testing-i686/opencascade.conf  |1 
 community-testing-i686/opencascade.sh|2 
 community-testing-i686/salome-occt-6.9.1.patch   |  744 +
 community-testing-x86_64/PKGBUILD|   65 +
 community-testing-x86_64/PKGBUILD-7.0.0  |   54 +
 community-testing-x86_64/env.sh  |   22 
 community-testing-x86_64/opencascade.conf|1 
 community-testing-x86_64/opencascade.sh  |2 
 community-testing-x86_64/salome-occt-6.9.1.patch |  744 +
 12 files changed, 1776 insertions(+)

Copied: opencascade/repos/community-testing-i686/PKGBUILD (from rev 190212, 
opencascade/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-09-23 14:51:31 UTC (rev 190213)
@@ -0,0 +1,65 @@
+# Maintainer: Florian Pritz 
+# Contributor: Giuseppe Borzi 
+# Contributor: Brice Malier 
+# Contributor: Michele Mocciola 
+pkgname=opencascade
+pkgver=6.9.1
+pkgrel=7
+pkgdesc="Open CASCADE Technology, 3D modeling & numerical simulation"
+arch=('i686' 'x86_64')
+url="http://www.opencascade.org;
+license=('custom')
+depends=('tk' 'mesa' 'libxmu' 'ftgl' 'vtk6')
+source=("https://sources.archlinux.org/other/community/opencascade/opencascade-$pkgver.tgz;
 "env.sh" "opencascade.sh" "opencascade.conf" 'salome-occt-6.9.1.patch')
+md5sums=('7f2e645b5010d190c9bb35dc457f9a7c'
+ 'a96f28ee7f4273ae1771ee033a2a3af3'
+ 'd9368b8d348ced3ec4462012977552d2'
+ '2924ecf57c95d25888f51071fdc72ad0'
+ '88db8e6b9afa132d1893bbb814250350')
+
+# This works around a bug that is corrected in OCCT 7.0.0
+export CCFLAGS+=" -O2 -fno-delete-null-pointer-checks"
+export CXXFLAGS+=" -O2 -fno-delete-null-pointer-checks"
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # fix build with vtk 6.3.0
+  sed -i '/CSF_VTK_LIB/s/-6\.1//g' configure.ac
+
+  # fix for automake 1.13
+  sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
+
+  # Included in OCCT 7.0.0
+  patch -i "$srcdir/salome-occt-6.9.1.patch" -p1
+
+  ./build_configure
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # fix build with vtk 6.3.0
+  CXXFLAGS+=' -DvtkFloatingPointType=double'
+
+  # Change to --enable-production with OCCT 7.0.0
+  ./configure --disable-debug --disable-production \
+--with-vtk-library=/opt/vtk6/lib/ 
--with-vtk-include=/opt/vtk6/include/vtk/ \
+--prefix=/opt/$pkgname
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # no DESTDIR support so use prefix. This has to suffix match the prefix in 
./configure
+  make prefix="$pkgdir/opt/$pkgname" install
+  cp -r src/UnitsAPI/ "${pkgdir}/opt/$pkgname/src"
+  install -D -m644 "${srcdir}/opencascade.conf" 
"${pkgdir}/etc/ld.so.conf.d/opencascade.conf"
+  install -D -m 755 "${srcdir}/opencascade.sh" 
"${pkgdir}/etc/profile.d/opencascade.sh"
+  install -m 755 "${srcdir}/env.sh" "${pkgdir}/opt/$pkgname"
+  install -dm755 

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

2016-09-23 Thread Florian Pritz
Date: Friday, September 23, 2016 @ 14:50:23
  Author: bluewind
Revision: 190212

Fix FS#50829 - [opencascade] 6.9.1-3 breaks FreeCAD

upgpkg: opencascade 6.9.1-7

Added:
  opencascade/trunk/salome-occt-6.9.1.patch
Modified:
  opencascade/trunk/PKGBUILD
Deleted:
  opencascade/trunk/salome-occt-6.9.1.patch

-+
 PKGBUILD|   10 
 salome-occt-6.9.1.patch | 1488 +++---
 2 files changed, 752 insertions(+), 746 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 14:10:27 UTC (rev 190211)
+++ PKGBUILD2016-09-23 14:50:23 UTC (rev 190212)
@@ -4,7 +4,7 @@
 # Contributor: Michele Mocciola 
 pkgname=opencascade
 pkgver=6.9.1
-pkgrel=3
+pkgrel=7
 pkgdesc="Open CASCADE Technology, 3D modeling & numerical simulation"
 arch=('i686' 'x86_64')
 url="http://www.opencascade.org;
@@ -17,6 +17,10 @@
  '2924ecf57c95d25888f51071fdc72ad0'
  '88db8e6b9afa132d1893bbb814250350')
 
+# This works around a bug that is corrected in OCCT 7.0.0
+export CCFLAGS+=" -O2 -fno-delete-null-pointer-checks"
+export CXXFLAGS+=" -O2 -fno-delete-null-pointer-checks"
+
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
 
@@ -26,6 +30,7 @@
   # fix for automake 1.13
   sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
 
+  # Included in OCCT 7.0.0
   patch -i "$srcdir/salome-occt-6.9.1.patch" -p1
 
   ./build_configure
@@ -37,7 +42,8 @@
   # fix build with vtk 6.3.0
   CXXFLAGS+=' -DvtkFloatingPointType=double'
 
-  ./configure --disable-debug --enable-production \
+  # Change to --enable-production with OCCT 7.0.0
+  ./configure --disable-debug --disable-production \
 --with-vtk-library=/opt/vtk6/lib/ 
--with-vtk-include=/opt/vtk6/include/vtk/ \
 --prefix=/opt/$pkgname
   make

Deleted: salome-occt-6.9.1.patch
===
--- salome-occt-6.9.1.patch 2016-09-23 14:10:27 UTC (rev 190211)
+++ salome-occt-6.9.1.patch 2016-09-23 14:50:23 UTC (rev 190212)
@@ -1,744 +0,0 @@
-diff -Naur --exclude=CVS --exclude=.git --exclude=samples --exclude=cmake 
--exclude=Makefile.am --exclude=CMakeLists.txt --exclude=adm 
OCCT-6.9.1_SRC/drv/BRepFill/BRepFill_Pipe.jxx 
OCCT-6.9.1p1_SRC/drv/BRepFill/BRepFill_Pipe.jxx
 OCCT-6.9.1_SRC/drv/BRepFill/BRepFill_Pipe.jxx  2015-09-25 
17:35:58.0 +0300
-+++ OCCT-6.9.1p1_SRC/drv/BRepFill/BRepFill_Pipe.jxx2016-04-26 
16:10:42.0 +0300
-@@ -4,6 +4,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-diff -Naur --exclude=CVS --exclude=.git --exclude=samples --exclude=cmake 
--exclude=Makefile.am --exclude=CMakeLists.txt --exclude=adm 
OCCT-6.9.1_SRC/drv/BRepOffsetAPI/BRepOffsetAPI_MakePipe.jxx 
OCCT-6.9.1p1_SRC/drv/BRepOffsetAPI/BRepOffsetAPI_MakePipe.jxx
 OCCT-6.9.1_SRC/drv/BRepOffsetAPI/BRepOffsetAPI_MakePipe.jxx
2015-09-25 17:36:04.0 +0300
-+++ OCCT-6.9.1p1_SRC/drv/BRepOffsetAPI/BRepOffsetAPI_MakePipe.jxx  
2016-04-26 16:10:47.0 +0300
-@@ -1,4 +1,5 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
-diff -Naur --exclude=CVS --exclude=.git --exclude=samples --exclude=cmake 
--exclude=Makefile.am --exclude=CMakeLists.txt --exclude=adm 
OCCT-6.9.1_SRC/inc/BRepFill_Pipe.hxx OCCT-6.9.1p1_SRC/inc/BRepFill_Pipe.hxx
 OCCT-6.9.1_SRC/inc/BRepFill_Pipe.hxx   2015-09-25 17:35:58.0 
+0300
-+++ OCCT-6.9.1p1_SRC/inc/BRepFill_Pipe.hxx 2016-04-26 16:10:42.0 
+0300
-@@ -18,6 +18,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-@@ -28,6 +29,7 @@
- class StdFail_NotDone;
- class TopoDS_Wire;
- class TopoDS_Shape;
-+class TopTools_ListOfShape;
- class TopoDS_Face;
- class TopoDS_Edge;
- class TopoDS_Vertex;
-@@ -65,6 +67,9 @@
-   
-   Standard_EXPORT  const  TopoDS_Shape& LastShape()  const;
-   
-+  //! Returns the list of shapes generated from the shape .
-+  Standard_EXPORT   void Generated (const TopoDS_Shape& S, 
TopTools_ListOfShape& L) ;
-+  
-   //! Returns the face created from an edge of the spine
-   //! and an edge of the profile.
-   //! if the edges are not in the spine or the profile
-@@ -131,6 +136,7 @@
-   Standard_Integer myCurIndexOfSectionEdge;
-   TopoDS_Shape myFirst;
-   TopoDS_Shape myLast;
-+  TopTools_DataMapOfShapeListOfShape myGenMap;
-   Standard_Integer myDegmax;
-   Standard_Integer mySegmax;
-   GeomAbs_Shape myContinuity;
-diff -Naur --exclude=CVS --exclude=.git --exclude=samples --exclude=cmake 
--exclude=Makefile.am --exclude=CMakeLists.txt --exclude=adm 
OCCT-6.9.1_SRC/inc/BRepOffsetAPI_MakePipe.hxx 
OCCT-6.9.1p1_SRC/inc/BRepOffsetAPI_MakePipe.hxx
 OCCT-6.9.1_SRC/inc/BRepOffsetAPI_MakePipe.hxx  2015-09-25 
17:36:04.0 +0300
-+++ OCCT-6.9.1p1_SRC/inc/BRepOffsetAPI_MakePipe.hxx2016-04-26 
16:10:47.0 +0300
-@@ -18,6 +18,7 @@
- class TopoDS_Wire;
- class TopoDS_Shape;

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

2016-09-23 Thread Daniel Micay
Date: Friday, September 23, 2016 @ 14:10:27
  Author: thestinger
Revision: 190211

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

Added:
  gradm/repos/community-i686/PKGBUILD
(from rev 190210, gradm/trunk/PKGBUILD)
  gradm/repos/community-i686/learn_config
(from rev 190210, gradm/trunk/learn_config)
  gradm/repos/community-i686/policy
(from rev 190210, gradm/trunk/policy)
  gradm/repos/community-x86_64/PKGBUILD
(from rev 190210, gradm/trunk/PKGBUILD)
  gradm/repos/community-x86_64/learn_config
(from rev 190210, gradm/trunk/learn_config)
  gradm/repos/community-x86_64/policy
(from rev 190210, gradm/trunk/policy)
Deleted:
  gradm/repos/community-i686/PKGBUILD
  gradm/repos/community-i686/learn_config
  gradm/repos/community-i686/policy
  gradm/repos/community-x86_64/PKGBUILD
  gradm/repos/community-x86_64/learn_config
  gradm/repos/community-x86_64/policy

---+
 /PKGBUILD |   92 +++
 /learn_config |  336 +
 /policy   |  982 
 community-i686/PKGBUILD   |   46 -
 community-i686/learn_config   |  168 --
 community-i686/policy |  491 
 community-x86_64/PKGBUILD |   46 -
 community-x86_64/learn_config |  168 --
 community-x86_64/policy   |  491 
 9 files changed, 1410 insertions(+), 1410 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 14:09:52 UTC (rev 190210)
+++ community-i686/PKGBUILD 2016-09-23 14:10:27 UTC (rev 190211)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-# Contributor: Jonathan Liu 
-# Contributor: henning mueller 
-# Contributor: s1gma 
-# Contributor: Ahmad24 
-# Contributor: maxrp 
-
-pkgname=gradm
-_version=3.1
-_timestamp=201607172312
-pkgver=$_version.$_timestamp
-pkgrel=1
-pkgdesc="Administration utility for grsecurity's Role Based Access Control 
(RBAC)"
-arch=(i686 x86_64)
-url=https://grsecurity.net/
-license=(GPL2)
-depends=(pam)
-source=(https://grsecurity.net/stable/$pkgname-$_version-$_timestamp.tar.gz
-https://grsecurity.net/stable/$pkgname-$_version-$_timestamp.tar.gz.sig
-learn_config
-policy)
-sha256sums=('4281c72e3e82f0ea2c01d124975c19326b2157c10911fa065c1549195d5e6ee4'
-'SKIP'
-'61c3042879ec2303b713f57f751fb66a95e2cc4737fbbd6d95879829c7b7d3c0'
-'73cf31add3da55b539777d736764a40c6b30041cc259e1d0372c867b87070440')
-validpgpkeys=(
-  'DE9452CE46F42094907F108B44D1C0F82525FE49' # Bradley Spengler
-)
-
-prepare() {
-  cd $pkgname
-  sed -i -e 's/^CFLAGS :=/CFLAGS +=/' -e 's:sbin:usr/bin:' Makefile
-}
-
-build() {
-  cd $pkgname
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  cp "$srcdir"/{learn_config,policy} "$pkgdir/etc/grsec"
-  rm -r "$pkgdir/dev"
-}

Copied: gradm/repos/community-i686/PKGBUILD (from rev 190210, 
gradm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-23 14:10:27 UTC (rev 190211)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Daniel Micay 
+# Contributor: Jonathan Liu 
+# Contributor: henning mueller 
+# Contributor: s1gma 
+# Contributor: Ahmad24 
+# Contributor: maxrp 
+
+pkgname=gradm
+_version=3.1
+_timestamp=201608131257
+pkgver=$_version.$_timestamp
+pkgrel=1
+pkgdesc="Administration utility for grsecurity's Role Based Access Control 
(RBAC)"
+arch=(i686 x86_64)
+url=https://grsecurity.net/
+license=(GPL2)
+depends=(pam)
+source=(https://grsecurity.net/stable/$pkgname-$_version-$_timestamp.tar.gz
+https://grsecurity.net/stable/$pkgname-$_version-$_timestamp.tar.gz.sig
+learn_config
+policy)
+sha256sums=('2b771346458f55805713e4cdfc4fefba1da88826dd9ecff38dacd0087331a578'
+'SKIP'
+'61c3042879ec2303b713f57f751fb66a95e2cc4737fbbd6d95879829c7b7d3c0'
+'73cf31add3da55b539777d736764a40c6b30041cc259e1d0372c867b87070440')
+validpgpkeys=(
+  'DE9452CE46F42094907F108B44D1C0F82525FE49' # Bradley Spengler
+)
+
+prepare() {
+  cd $pkgname
+  sed -i -e 's/^CFLAGS :=/CFLAGS +=/' -e 's:sbin:usr/bin:' Makefile
+}
+
+build() {
+  cd $pkgname
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  cp "$srcdir"/{learn_config,policy} "$pkgdir/etc/grsec"
+  rm -r "$pkgdir/dev"
+}

Deleted: community-i686/learn_config
===
--- community-i686/learn_config 2016-09-23 14:09:52 UTC (rev 190210)
+++ 

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

2016-09-23 Thread Daniel Micay
Date: Friday, September 23, 2016 @ 14:09:52
  Author: thestinger
Revision: 190210

upgpkg: gradm 3.1.201608131257-1

Modified:
  gradm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 13:25:54 UTC (rev 190209)
+++ PKGBUILD2016-09-23 14:09:52 UTC (rev 190210)
@@ -8,7 +8,7 @@
 
 pkgname=gradm
 _version=3.1
-_timestamp=201607172312
+_timestamp=201608131257
 pkgver=$_version.$_timestamp
 pkgrel=1
 pkgdesc="Administration utility for grsecurity's Role Based Access Control 
(RBAC)"
@@ -20,7 +20,7 @@
 https://grsecurity.net/stable/$pkgname-$_version-$_timestamp.tar.gz.sig
 learn_config
 policy)
-sha256sums=('4281c72e3e82f0ea2c01d124975c19326b2157c10911fa065c1549195d5e6ee4'
+sha256sums=('2b771346458f55805713e4cdfc4fefba1da88826dd9ecff38dacd0087331a578'
 'SKIP'
 '61c3042879ec2303b713f57f751fb66a95e2cc4737fbbd6d95879829c7b7d3c0'
 '73cf31add3da55b539777d736764a40c6b30041cc259e1d0372c867b87070440')


[arch-commits] Commit in caprine/repos/community-any (6 files)

2016-09-23 Thread Nicola Squartini
Date: Friday, September 23, 2016 @ 13:25:54
  Author: tensor5
Revision: 190209

archrelease: copy trunk to community-any

Added:
  caprine/repos/community-any/PKGBUILD
(from rev 190208, caprine/trunk/PKGBUILD)
  caprine/repos/community-any/caprine.desktop
(from rev 190208, caprine/trunk/caprine.desktop)
  caprine/repos/community-any/caprine.js
(from rev 190208, caprine/trunk/caprine.js)
Deleted:
  caprine/repos/community-any/PKGBUILD
  caprine/repos/community-any/caprine.desktop
  caprine/repos/community-any/caprine.js

-+
 PKGBUILD|  116 ++
 caprine.desktop |   18 
 caprine.js  |   58 +--
 3 files changed, 95 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 13:24:41 UTC (rev 190208)
+++ PKGBUILD2016-09-23 13:25:54 UTC (rev 190209)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=caprine
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='Unofficial Facebook Messenger app'
-arch=('any')
-url='https://github.com/sindresorhus/caprine'
-license=('MIT')
-depends=('electron')
-makedepends=('npm')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-'caprine.desktop'
-'caprine.js')
-sha256sums=('84f06f119ef0bc76d21200a08d62335351b55dd856edd1392e2a6e33b7761e3e'
-'ddb693c06b0d4adf41c799fd4d97c2d9c106669034f69f7af53a63cc45911a97'
-'76bc862279afe9250554b8b6cdafde529648285e72b6a88d75403ef6b29c571c')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-npm install --production
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-appdir=/usr/lib/${pkgname}
-
-install -d "${pkgdir}"${appdir}
-cp -r * "${pkgdir}"${appdir}
-
-hicolordir=/usr/share/icons/hicolor
-install -dm755 "${pkgdir}"${hicolordir}/{1024x1024,scalable}/apps
-ln -s $(realpath -m --relative-to=${hicolordir}/1024x1024/apps 
${appdir}/static/Icon.png) \
-"${pkgdir}"${hicolordir}/1024x1024/apps/${pkgname}.png
-ln -s $(realpath -m --relative-to=${hicolordir}/scalable/apps 
${appdir}/media/Icon.svg) \
-"${pkgdir}"${hicolordir}/scalable/apps/${pkgname}.svg
-
-install -Dm755 "${srcdir}"/${pkgname}.js "${pkgdir}"/usr/bin/${pkgname}
-install -Dm644 "${srcdir}"/${pkgname}.desktop \
-"${pkgdir}"/usr/share/applications/${pkgname}.desktop
-
-install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
-ln -s $(realpath -m --relative-to=/usr/share/licenses/${pkgname} 
${appdir}/license) \
-"${pkgdir}"/usr/share/licenses/${pkgname}
-
-# Clean up
-find "${pkgdir}"${appdir} \
--name "package.json" \
--exec sed -e "s|${srcdir}/${pkgname}-${pkgver}|${appdir}|" \
--i {} \; \
--or -name ".*" -prune -exec rm -r '{}' \; \
--or -name "bin" -prune -exec rm -r '{}' \; \
--or -name "example" -prune -exec rm -r '{}' \; \
--or -name "examples" -prune -exec rm -r '{}' \; \
--or -name "test" -prune -exec rm -r '{}' \;
-}

Copied: caprine/repos/community-any/PKGBUILD (from rev 190208, 
caprine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 13:25:54 UTC (rev 190209)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=caprine
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='Unofficial Facebook Messenger app'
+arch=('any')
+url='https://github.com/sindresorhus/caprine'
+license=('MIT')
+depends=('electron')
+makedepends=('npm')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+'caprine.desktop'
+'caprine.js')
+sha256sums=('380b27a551fb6fee496257a44464cbe028066ed4b66b8abd74eb56cb02a802d8'
+'ddb693c06b0d4adf41c799fd4d97c2d9c106669034f69f7af53a63cc45911a97'
+'76bc862279afe9250554b8b6cdafde529648285e72b6a88d75403ef6b29c571c')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+npm install --production
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+appdir=/usr/lib/${pkgname}
+
+install -d "${pkgdir}"${appdir}
+cp -r * "${pkgdir}"${appdir}
+
+install -dm755 "${pkgdir}"/usr/share/icons/hicolor/scalable/apps
+mv "${pkgdir}"${appdir}/media/Icon.svg \
+"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg
+
+install -Dm755 "${srcdir}"/${pkgname}.js "${pkgdir}"/usr/bin/${pkgname}
+install -Dm644 "${srcdir}"/${pkgname}.desktop \
+"${pkgdir}"/usr/share/applications/${pkgname}.desktop
+
+install -dm755 "${pkgdir}"/usr/share/licenses/${pkgname}
+ln -s $(realpath -m --relative-to=/usr/share/licenses/${pkgname} 
${appdir}/license) \
+"${pkgdir}"/usr/share/licenses/${pkgname}
+
+# Clean up
+rm "${pkgdir}"${appdir}/{media/Icon.ai,static/Icon.{icns,ico}}
+find 

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

2016-09-23 Thread Nicola Squartini
Date: Friday, September 23, 2016 @ 13:24:41
  Author: tensor5
Revision: 190208

upgpkg: caprine 1.6.0-1

Don't install useless icons.

Modified:
  caprine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 13:12:59 UTC (rev 190207)
+++ PKGBUILD2016-09-23 13:24:41 UTC (rev 190208)
@@ -2,7 +2,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=caprine
-pkgver=1.5.0
+pkgver=1.6.0
 pkgrel=1
 pkgdesc='Unofficial Facebook Messenger app'
 arch=('any')
@@ -13,7 +13,7 @@
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 'caprine.desktop'
 'caprine.js')
-sha256sums=('84f06f119ef0bc76d21200a08d62335351b55dd856edd1392e2a6e33b7761e3e'
+sha256sums=('380b27a551fb6fee496257a44464cbe028066ed4b66b8abd74eb56cb02a802d8'
 'ddb693c06b0d4adf41c799fd4d97c2d9c106669034f69f7af53a63cc45911a97'
 '76bc862279afe9250554b8b6cdafde529648285e72b6a88d75403ef6b29c571c')
 
@@ -31,12 +31,9 @@
 install -d "${pkgdir}"${appdir}
 cp -r * "${pkgdir}"${appdir}
 
-hicolordir=/usr/share/icons/hicolor
-install -dm755 "${pkgdir}"${hicolordir}/{1024x1024,scalable}/apps
-ln -s $(realpath -m --relative-to=${hicolordir}/1024x1024/apps 
${appdir}/static/Icon.png) \
-"${pkgdir}"${hicolordir}/1024x1024/apps/${pkgname}.png
-ln -s $(realpath -m --relative-to=${hicolordir}/scalable/apps 
${appdir}/media/Icon.svg) \
-"${pkgdir}"${hicolordir}/scalable/apps/${pkgname}.svg
+install -dm755 "${pkgdir}"/usr/share/icons/hicolor/scalable/apps
+mv "${pkgdir}"${appdir}/media/Icon.svg \
+"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg
 
 install -Dm755 "${srcdir}"/${pkgname}.js "${pkgdir}"/usr/bin/${pkgname}
 install -Dm644 "${srcdir}"/${pkgname}.desktop \
@@ -47,6 +44,7 @@
 "${pkgdir}"/usr/share/licenses/${pkgname}
 
 # Clean up
+rm "${pkgdir}"${appdir}/{media/Icon.ai,static/Icon.{icns,ico}}
 find "${pkgdir}"${appdir} \
 -name "package.json" \
 -exec sed -e "s|${srcdir}/${pkgname}-${pkgver}|${appdir}|" \


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

2016-09-23 Thread Massimiliano Torromeo
Date: Friday, September 23, 2016 @ 13:12:59
  Author: mtorromeo
Revision: 190207

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

Added:
  percona-server/repos/community-i686/PKGBUILD
(from rev 190206, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-i686/my.cnf
(from rev 190206, percona-server/trunk/my.cnf)
  percona-server/repos/community-i686/mysql-user.conf
(from rev 190206, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-i686/percona-server-CVE-2016-6662.patch
(from rev 190206, percona-server/trunk/percona-server-CVE-2016-6662.patch)
  percona-server/repos/community-i686/percona.install
(from rev 190206, percona-server/trunk/percona.install)
  percona-server/repos/community-x86_64/PKGBUILD
(from rev 190206, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-x86_64/my.cnf
(from rev 190206, percona-server/trunk/my.cnf)
  percona-server/repos/community-x86_64/mysql-user.conf
(from rev 190206, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-x86_64/percona-server-CVE-2016-6662.patch
(from rev 190206, percona-server/trunk/percona-server-CVE-2016-6662.patch)
  percona-server/repos/community-x86_64/percona.install
(from rev 190206, percona-server/trunk/percona.install)
Deleted:
  percona-server/repos/community-i686/PKGBUILD
  percona-server/repos/community-i686/my.cnf
  percona-server/repos/community-i686/mysql-user.conf
  percona-server/repos/community-i686/percona-server-CVE-2016-6662.patch
  percona-server/repos/community-i686/percona.install
  percona-server/repos/community-x86_64/PKGBUILD
  percona-server/repos/community-x86_64/my.cnf
  percona-server/repos/community-x86_64/mysql-user.conf
  percona-server/repos/community-x86_64/percona-server-CVE-2016-6662.patch
  percona-server/repos/community-x86_64/percona.install

-+
 /PKGBUILD   |  346 ++
 /my.cnf |   76 +++
 /mysql-user.conf|2 
 /percona-server-CVE-2016-6662.patch |  228 +++
 /percona.install|   38 +
 community-i686/PKGBUILD |  173 -
 community-i686/my.cnf   |   38 -
 community-i686/mysql-user.conf  |1 
 community-i686/percona-server-CVE-2016-6662.patch   |  114 -
 community-i686/percona.install  |   19 
 community-x86_64/PKGBUILD   |  173 -
 community-x86_64/my.cnf |   38 -
 community-x86_64/mysql-user.conf|1 
 community-x86_64/percona-server-CVE-2016-6662.patch |  114 -
 community-x86_64/percona.install|   19 
 15 files changed, 690 insertions(+), 690 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 13:12:22 UTC (rev 190206)
+++ community-i686/PKGBUILD 2016-09-23 13:12:59 UTC (rev 190207)
@@ -1,173 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgbase=percona-server
-pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
-pkgver=5.7.14_7
-_boost_ver=1.59.0
-_pkgver=${pkgver/_/-}
-_myver=${pkgver/_rel*}
-pkgrel=2
-arch=('i686' 'x86_64')
-# valgrind necessary for bug 
https://bugs.launchpad.net/percona-server/+bug/1494283
-makedepends=('cmake' 'openssl' 'zlib' 'libaio' 'systemd-tools' 'valgrind' 
'pam' 'numactl' 'jemalloc')
-license=('GPL' 'AGPL')
-url="http://www.percona.com/software/percona-server/;
-source=("http://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz;
-
"http://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz;
-   'percona-server-CVE-2016-6662.patch'
-'my.cnf'
-'mysql-user.conf')
-
-prepare() {
-   cd $pkgbase-$_pkgver
-   rm -v sql/sql_yacc.{cc,h}
-
-   sed 's|${fullhostname}|"archbuild"|' \
-   -i storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
-
-   patch -Np1 < "${srcdir}/percona-server-CVE-2016-6662.patch"
-}
-
-build() {
-   rm -rf build
-   mkdir build
-   cd build
-
-   cmake ../$pkgbase-$_pkgver \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_CONFIG=mysql_release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONFDIR=/etc/mysql \
-   -DMYSQL_DATADIR=/var/lib/mysql \
-   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
-   -DDEFAULT_CHARSET=utf8 \
-   -DDEFAULT_COLLATION=utf8_general_ci \
-   -DENABLED_LOCAL_INFILE=ON \
-   

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

2016-09-23 Thread Massimiliano Torromeo
Date: Friday, September 23, 2016 @ 13:12:22
  Author: mtorromeo
Revision: 190206

upgpkg: percona-server 5.7.14_8-2

Modified:
  percona-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 12:49:09 UTC (rev 190205)
+++ PKGBUILD2016-09-23 13:12:22 UTC (rev 190206)
@@ -3,7 +3,7 @@
 
 pkgbase=percona-server
 pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
-pkgver=5.7.14_7
+pkgver=5.7.14_8
 _boost_ver=1.59.0
 _pkgver=${pkgver/_/-}
 _myver=${pkgver/_rel*}
@@ -15,7 +15,7 @@
 url="http://www.percona.com/software/percona-server/;
 
source=("http://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz;
 
"http://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz;
-   'percona-server-CVE-2016-6662.patch'
+'percona-server-CVE-2016-6662.patch'
 'my.cnf'
 'mysql-user.conf')
 
@@ -166,7 +166,7 @@
rm usr/share/man/man1/mysql-test-run.pl.1
 }
 
-sha256sums=('b204ffac56bfc8cf092acca3ce73d63b00450b59f554acd1daeb5a573eec2c1d'
+sha256sums=('9a842bdbfb052edeee6f85d4ee977b2b4e1a8ac67d88e5d248d83474682d401e'
 '47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac'
 '924543feda4c377386a5c20f35302132e204ded5c7e4401bd1ac9f3e12a2f49a'
 'ae451839c368f0db25a63bb0a6a890194897a8e74818bd4245140933c29e5f83'


[arch-commits] Commit in numix-themes/repos/community-any (4 files)

2016-09-23 Thread Maxime Gauduin
Date: Friday, September 23, 2016 @ 12:49:09
  Author: alucryd
Revision: 190205

archrelease: copy trunk to community-any

Added:
  numix-themes/repos/community-any/Gemfile
(from rev 190204, numix-themes/trunk/Gemfile)
  numix-themes/repos/community-any/PKGBUILD
(from rev 190204, numix-themes/trunk/PKGBUILD)
Deleted:
  numix-themes/repos/community-any/Gemfile
  numix-themes/repos/community-any/PKGBUILD

--+
 Gemfile  |4 +--
 PKGBUILD |   66 ++---
 2 files changed, 35 insertions(+), 35 deletions(-)

Deleted: Gemfile
===
--- Gemfile 2016-09-23 12:49:03 UTC (rev 190204)
+++ Gemfile 2016-09-23 12:49:09 UTC (rev 190205)
@@ -1,2 +0,0 @@
-source "https://rubygems.org;
-gem "sass"

Copied: numix-themes/repos/community-any/Gemfile (from rev 190204, 
numix-themes/trunk/Gemfile)
===
--- Gemfile (rev 0)
+++ Gemfile 2016-09-23 12:49:09 UTC (rev 190205)
@@ -0,0 +1,2 @@
+source "https://rubygems.org;
+gem "sass"

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 12:49:03 UTC (rev 190204)
+++ PKGBUILD2016-09-23 12:49:09 UTC (rev 190205)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Diego 
-
-pkgname=numix-themes
-pkgver=2.6.2
-pkgrel=1
-pkgdesc='A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)'
-arch=('any')
-url='http://numixproject.org/'
-license=('GPL3')
-depends=('gtk-engine-murrine')
-makedepends=('git' 'ruby-bundler')
-_commit='a6be63453516d3be718ddffc9f791ecc34da70bf'
-source=("numix-themes-${pkgver}.tar.gz::https://github.com/numixproject/numix-gtk-theme/archive/${pkgver}.tar.gz;
-"Gemfile")
-sha256sums=('383a4df7c35355b51fc8a35ee5bd7393f17f54f9e75da9e704d852e620850854'
-'b1061ba7ce09c9eb3e41f59362aa8c21d27073b0658f13fb5eabdaea654afe2c')
-
-build() {
-  cd numix-gtk-theme-${pkgver}
-
-  bundle install --path .
-  make SASS="bundle exec sass"
-}
-
-package() {
-  cd numix-gtk-theme-${pkgver}
-
-  make SASS="bundle exec sass" DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: numix-themes/repos/community-any/PKGBUILD (from rev 190204, 
numix-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 12:49:09 UTC (rev 190205)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Diego 
+
+pkgname=numix-themes
+pkgver=2.6.4
+pkgrel=1
+pkgdesc='A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)'
+arch=('any')
+url='http://numixproject.org/'
+license=('GPL3')
+depends=('gtk-engine-murrine')
+makedepends=('git' 'ruby-bundler')
+_commit='a6be63453516d3be718ddffc9f791ecc34da70bf'
+source=("numix-themes-${pkgver}.tar.gz::https://github.com/numixproject/numix-gtk-theme/archive/${pkgver}.tar.gz;
+"Gemfile")
+sha256sums=('f70cad6608d9a1b4819eaf6b51fc03d5c75971ff8f08080ac2eb9a5d8e386e6f'
+'b1061ba7ce09c9eb3e41f59362aa8c21d27073b0658f13fb5eabdaea654afe2c')
+
+build() {
+  cd numix-gtk-theme-${pkgver}
+
+  bundle install --path .
+  make SASS="bundle exec sass"
+}
+
+package() {
+  cd numix-gtk-theme-${pkgver}
+
+  make SASS="bundle exec sass" DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2016-09-23 Thread Maxime Gauduin
Date: Friday, September 23, 2016 @ 12:49:03
  Author: alucryd
Revision: 190204

upgpkg: numix-themes 2.6.4-1

Modified:
  numix-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 12:42:01 UTC (rev 190203)
+++ PKGBUILD2016-09-23 12:49:03 UTC (rev 190204)
@@ -3,7 +3,7 @@
 # Contributor: Diego 
 
 pkgname=numix-themes
-pkgver=2.6.2
+pkgver=2.6.4
 pkgrel=1
 pkgdesc='A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)'
 arch=('any')
@@ -14,7 +14,7 @@
 _commit='a6be63453516d3be718ddffc9f791ecc34da70bf'
 
source=("numix-themes-${pkgver}.tar.gz::https://github.com/numixproject/numix-gtk-theme/archive/${pkgver}.tar.gz;
 "Gemfile")
-sha256sums=('383a4df7c35355b51fc8a35ee5bd7393f17f54f9e75da9e704d852e620850854'
+sha256sums=('f70cad6608d9a1b4819eaf6b51fc03d5c75971ff8f08080ac2eb9a5d8e386e6f'
 'b1061ba7ce09c9eb3e41f59362aa8c21d27073b0658f13fb5eabdaea654afe2c')
 
 build() {


[arch-commits] Commit in retroarch-assets-xmb/repos/community-any (PKGBUILD PKGBUILD)

2016-09-23 Thread Maxime Gauduin
Date: Friday, September 23, 2016 @ 12:42:01
  Author: alucryd
Revision: 190203

archrelease: copy trunk to community-any

Added:
  retroarch-assets-xmb/repos/community-any/PKGBUILD
(from rev 190202, retroarch-assets-xmb/trunk/PKGBUILD)
Deleted:
  retroarch-assets-xmb/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 12:41:48 UTC (rev 190202)
+++ PKGBUILD2016-09-23 12:42:01 UTC (rev 190203)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-
-pkgname=retroarch-assets-xmb
-pkgver=211
-pkgrel=1
-pkgdesc='XMB menu assets for RetroArch'
-arch=('any')
-url='http://www.libretro.com/'
-license=('GPL')
-groups=('libretro')
-depends=('retroarch')
-makedepends=('git')
-source=('git+https://github.com/libretro/retroarch-assets.git')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd retroarch-assets
-
-  git rev-list --count HEAD
-}
-
-package() {
-  cd retroarch-assets
-
-  install -dm 755 "${pkgdir}"/usr/share/libretro/assets
-  cp -dr --no-preserve='ownership' xmb "${pkgdir}"/usr/share/libretro/assets/
-}
-
-# vim: ts=2 sw=2 et:

Copied: retroarch-assets-xmb/repos/community-any/PKGBUILD (from rev 190202, 
retroarch-assets-xmb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 12:42:01 UTC (rev 190203)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=retroarch-assets-xmb
+pkgver=229
+pkgrel=1
+pkgdesc='XMB menu assets for RetroArch'
+arch=('any')
+url='http://www.libretro.com/'
+license=('GPL')
+groups=('libretro')
+depends=('retroarch')
+makedepends=('git')
+source=('git+https://github.com/libretro/retroarch-assets.git')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd retroarch-assets
+
+  git rev-list --count HEAD
+}
+
+package() {
+  cd retroarch-assets
+
+  install -dm 755 "${pkgdir}"/usr/share/libretro/assets
+  cp -dr --no-preserve='ownership' xmb "${pkgdir}"/usr/share/libretro/assets/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in retroarch-assets-xmb/trunk (PKGBUILD)

2016-09-23 Thread Maxime Gauduin
Date: Friday, September 23, 2016 @ 12:41:48
  Author: alucryd
Revision: 190202

upgpkg: retroarch-assets-xmb 229-1

Modified:
  retroarch-assets-xmb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 11:25:54 UTC (rev 190201)
+++ PKGBUILD2016-09-23 12:41:48 UTC (rev 190202)
@@ -2,7 +2,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=retroarch-assets-xmb
-pkgver=211
+pkgver=229
 pkgrel=1
 pkgdesc='XMB menu assets for RetroArch'
 arch=('any')


[arch-commits] Commit in xproto/repos (testing-any testing-any/PKGBUILD)

2016-09-23 Thread Andreas Radke
Date: Friday, September 23, 2016 @ 11:59:57
  Author: andyrtr
Revision: 276870

archrelease: copy trunk to testing-any

Added:
  xproto/repos/testing-any/
  xproto/repos/testing-any/PKGBUILD
(from rev 276869, xproto/trunk/PKGBUILD)

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

Copied: xproto/repos/testing-any/PKGBUILD (from rev 276869, 
xproto/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-09-23 11:59:57 UTC (rev 276870)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xproto
+pkgver=7.0.31
+pkgrel=1
+pkgdesc="X11 core wire protocol and auxiliary headers"
+arch=(any)
+license=('custom')
+url="http://xorg.freedesktop.org/;
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('c6f9747da0bd3a95f86b17fb8dd5e717c8f3ab7f0ece3ba1b247899ec1ef7747'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson 

+validpgpkeys+=('7B27A3F1A6E18CD9588B4AE8310180050905E40C') # "Julien Cristau 
"
+validpgpkeys+=('C383B778255613DFDB409D91DB221A690011') # Keith Packard 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2016-09-23 Thread Andreas Radke
Date: Friday, September 23, 2016 @ 11:59:52
  Author: andyrtr
Revision: 276869

upgpkg: xproto 7.0.31-1

upstream update 7.0.31

Modified:
  xproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 11:50:32 UTC (rev 276868)
+++ PKGBUILD2016-09-23 11:59:52 UTC (rev 276869)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xproto
-pkgver=7.0.29
+pkgver=7.0.31
 pkgrel=1
 pkgdesc="X11 core wire protocol and auxiliary headers"
 arch=(any)
@@ -11,11 +11,12 @@
 url="http://xorg.freedesktop.org/;
 makedepends=('xorg-util-macros')
 source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('6c1a477092ca73233902b8d5f33012635c4b0208f17e7833cc7efe5c93ba9f8a'
+sha256sums=('c6f9747da0bd3a95f86b17fb8dd5e717c8f3ab7f0ece3ba1b247899ec1ef7747'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
 validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson 

 validpgpkeys+=('7B27A3F1A6E18CD9588B4AE8310180050905E40C') # "Julien Cristau 
"
+validpgpkeys+=('C383B778255613DFDB409D91DB221A690011') # Keith Packard 

 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in xf86-video-nouveau/trunk (2 files)

2016-09-23 Thread Andreas Radke
Date: Friday, September 23, 2016 @ 11:50:21
  Author: andyrtr
Revision: 276867

upgpkg: xf86-video-nouveau 1.0.13-1

upstream update 1.0.13

Modified:
  xf86-video-nouveau/trunk/PKGBUILD
Deleted:
  xf86-video-nouveau/trunk/properly_cleanup_fb_for_reverse-prime-offload.diff

+
 PKGBUILD   |   20 ++--
 properly_cleanup_fb_for_reverse-prime-offload.diff |   45 ---
 2 files changed, 7 insertions(+), 58 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 11:21:36 UTC (rev 276866)
+++ PKGBUILD2016-09-23 11:50:21 UTC (rev 276867)
@@ -4,8 +4,8 @@
 
 pkgname=xf86-video-nouveau
 #pkgver=1.0.11+31+g1ff13a9
-pkgver=1.0.12
-pkgrel=2
+pkgver=1.0.13
+pkgrel=1
 pkgdesc="Open Source 2D acceleration driver for nVidia cards"
 arch=('i686' 'x86_64')
 url="http://nouveau.freedesktop.org/;
@@ -15,11 +15,9 @@
 conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
 groups=('xorg-drivers' 'xorg')
 install=$pkgname.install
-source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2
-properly_cleanup_fb_for_reverse-prime-offload.diff)
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
 
#source=('git://anongit.freedesktop.org/nouveau/xf86-video-nouveau#commit=1ff13a9')
-sha256sums=('0ea057ad7fc31caba2d4e46c7e418fe2b3c762b04fb8d382f53383397fd8391e'
-'9cbd02fa0d1acc821ff76e353f04cf16c3072e017ad0e8aaca460f83285567b3')
+sha256sums=('6d9242ba139c3df7afefffb455573b52f4427920b978161c00483c64a6da47cb')
 
 #pkgver() {
 #  cd $pkgname
@@ -26,17 +24,13 @@
 #  git describe --long | sed 's/xf86-video-nouveau-//' | sed 's/-/+/g'
 #}
 
-prepare() {
+#prepare() {
   #cd $pkgname
   #NOCONFIGURE=1 ./autogen.sh
 
-  cd $pkgname-$pkgver
-  # https://bugs.archlinux.org/task/49961
-  # 
https://cgit.freedesktop.org/nouveau/xf86-video-nouveau/commit/?id=12f77348e7a9579b167b41228dec9e6f97b74de8
-  patch -Np1 -i ../properly_cleanup_fb_for_reverse-prime-offload.diff
+#  cd $pkgname-$pkgver
+#}
 
-}
-
 build() {
   cd $pkgname-$pkgver
 #  cd $pkgname

Deleted: properly_cleanup_fb_for_reverse-prime-offload.diff
===
--- properly_cleanup_fb_for_reverse-prime-offload.diff  2016-09-23 11:21:36 UTC 
(rev 276866)
+++ properly_cleanup_fb_for_reverse-prime-offload.diff  2016-09-23 11:50:21 UTC 
(rev 276867)
@@ -1,45 +0,0 @@
-From 12f77348e7a9579b167b41228dec9e6f97b74de8 Mon Sep 17 00:00:00 2001
-From: Hans de Goede 
-Date: Fri, 3 Jun 2016 14:46:10 +0200
-Subject: Properly cleanup fb for reverse-prime-offload
-
-drmmode_set_scanout_pixmap(pix) adds drmmod->fb_id through a call
-to drmmode_xf86crtc_resize(), but on a subsequent
-drmmode_set_scanout_pixmap(NULL) it would not remove the fb.
-
-This keeps the crtc marked as busy, which causes the dgpu to not
-being able to runtime suspend, after an output attached to the dgpu
-has been used once. Which causes burning through an additional 10W
-of power and the laptop to run quite hot.
-
-This commit adds the missing remove fb call, allowing the dgpu to runtime
-suspend after an external monitor has been plugged into the laptop.
-
-Signed-off-by: Hans de Goede 
-Signed-off-by: Ben Skeggs 
-
-diff --git a/src/drmmode_display.c b/src/drmmode_display.c
-index b950f42..f326e46 100644
 a/src/drmmode_display.c
-+++ b/src/drmmode_display.c
-@@ -680,10 +680,16 @@ drmmode_set_scanout_pixmap(xf86CrtcPtr crtc, PixmapPtr 
ppix)
-   PixmapPtr screenpix = screen->GetScreenPixmap(screen);
-   xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(crtc->scrn);
-   drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
-+  drmmode_ptr drmmode = drmmode_crtc->drmmode;
-   int c, total_width = 0, max_height = 0, this_x = 0;
-   if (!ppix) {
--  if (crtc->randr_crtc->scanout_pixmap)
-+  if (crtc->randr_crtc->scanout_pixmap) {
-   
PixmapStopDirtyTracking(crtc->randr_crtc->scanout_pixmap, screenpix);
-+  if (drmmode && drmmode->fb_id) {
-+  drmModeRmFB(drmmode->fd, drmmode->fb_id);
-+  drmmode->fb_id = 0;
-+  }
-+  }
-   drmmode_crtc->scanout_pixmap_x = 0;
-   return TRUE;
-   }
--- 
-cgit v0.10.2
-


[arch-commits] Commit in xf86-video-nouveau/repos (6 files)

2016-09-23 Thread Andreas Radke
Date: Friday, September 23, 2016 @ 11:50:32
  Author: andyrtr
Revision: 276868

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

Added:
  xf86-video-nouveau/repos/testing-i686/
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
(from rev 276867, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
(from rev 276867, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/testing-x86_64/
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
(from rev 276867, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install
(from rev 276867, xf86-video-nouveau/trunk/xf86-video-nouveau.install)

---+
 testing-i686/PKGBUILD |   45 
 testing-i686/xf86-video-nouveau.install   |6 +++
 testing-x86_64/PKGBUILD   |   45 
 testing-x86_64/xf86-video-nouveau.install |6 +++
 4 files changed, 102 insertions(+)

Copied: xf86-video-nouveau/repos/testing-i686/PKGBUILD (from rev 276867, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-23 11:50:32 UTC (rev 276868)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: buddabrod 
+
+pkgname=xf86-video-nouveau
+#pkgver=1.0.11+31+g1ff13a9
+pkgver=1.0.13
+pkgrel=1
+pkgdesc="Open Source 2D acceleration driver for nVidia cards"
+arch=('i686' 'x86_64')
+url="http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'mesa-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'git')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+#source=('git://anongit.freedesktop.org/nouveau/xf86-video-nouveau#commit=1ff13a9')
+sha256sums=('6d9242ba139c3df7afefffb455573b52f4427920b978161c00483c64a6da47cb')
+
+#pkgver() {
+#  cd $pkgname
+#  git describe --long | sed 's/xf86-video-nouveau-//' | sed 's/-/+/g'
+#}
+
+#prepare() {
+  #cd $pkgname
+  #NOCONFIGURE=1 ./autogen.sh
+
+#  cd $pkgname-$pkgver
+#}
+
+build() {
+  cd $pkgname-$pkgver
+#  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+#  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install (from 
rev 276867, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- testing-i686/xf86-video-nouveau.install (rev 0)
+++ testing-i686/xf86-video-nouveau.install 2016-09-23 11:50:32 UTC (rev 
276868)
@@ -0,0 +1,6 @@
+post_install () {
+   cat << _EOF
+  ==> make sure you use KernelModeSetting (KMS)
+  ==> see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/PKGBUILD (from rev 276867, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-23 11:50:32 UTC (rev 276868)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: buddabrod 
+
+pkgname=xf86-video-nouveau
+#pkgver=1.0.11+31+g1ff13a9
+pkgver=1.0.13
+pkgrel=1
+pkgdesc="Open Source 2D acceleration driver for nVidia cards"
+arch=('i686' 'x86_64')
+url="http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'mesa-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'git')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+#source=('git://anongit.freedesktop.org/nouveau/xf86-video-nouveau#commit=1ff13a9')
+sha256sums=('6d9242ba139c3df7afefffb455573b52f4427920b978161c00483c64a6da47cb')
+
+#pkgver() {
+#  cd $pkgname
+#  git describe --long | sed 's/xf86-video-nouveau-//' | sed 's/-/+/g'
+#}
+
+#prepare() {
+  #cd $pkgname
+  #NOCONFIGURE=1 ./autogen.sh
+
+#  cd $pkgname-$pkgver
+#}
+
+build() {
+  cd $pkgname-$pkgver
+#  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+#  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install 
(from rev 276867, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- 

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

2016-09-23 Thread Pierre Neidhardt
Date: Friday, September 23, 2016 @ 11:25:54
  Author: ambrevar
Revision: 190201

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

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

--+
 /PKGBUILD|  116 +
 /fzf.install |   54 +++
 community-i686/PKGBUILD  |   58 
 community-i686/fzf.install   |   27 -
 community-x86_64/PKGBUILD|   58 
 community-x86_64/fzf.install |   27 -
 6 files changed, 170 insertions(+), 170 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 11:24:07 UTC (rev 190200)
+++ community-i686/PKGBUILD 2016-09-23 11:25:54 UTC (rev 190201)
@@ -1,58 +0,0 @@
-# Maintainer: Pierre Neidhardt 
-# Contributor: Hermann Zahnweh (eigengrau)
-# Contributor: Andy Weidenbaum 
-# Contributor: foalsrock 
-# Contributor: jebaum 
-
-pkgname=fzf
-pkgver=0.13.5
-pkgrel=1
-pkgdesc="Command-line fuzzy finder"
-arch=("i686" "x86_64")
-url="https://github.com/junegunn/fzf;
-license=("MIT")
-depends=("ncurses")
-makedepends=("git" "go")
-optdepends=("fish: fish keybindings"
-   "fzf-extras: fzf keybindings from junegunn wiki and dotfiles"
-   "tmux: fzf-tmux script for launching fzf in a tmux pane"
-   "vim-fzf: vim plugin"
-   "zsh: zsh keybindings")
-install="fzf.install"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz;
-   "git+https://github.com/junegunn/$pkgname.wiki;)
-sha256sums=('3494f3e3987da31f6de100214b24203f67852a15b309f1a954a54635dc0dc238'
-'SKIP')
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   msg2 'Building...'
-   GOPATH="$srcdir" TMPDIR=/tmp go get -u github.com/junegunn/fzf/...
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   ## Doc
-   install -dm755 "$pkgdir/usr/share/doc/fzf/wiki"
-   install -m644 "$srcdir/fzf.wiki"/* "$pkgdir/usr/share/doc/fzf/wiki"
-   install -m644 README.md install uninstall "$pkgdir/usr/share/doc/fzf"
-
-   ## Man page
-   install -Dm644 "man/man1/fzf.1" "$pkgdir/usr/share/man/man1/fzf.1"
-
-   ## License
-   install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/fzf/LICENSE"
-
-   ## Binaries
-   install -dm755 "$pkgdir/usr/bin"
-   install -m755 "$srcdir/bin/fzf" "bin/fzf-tmux" "$pkgdir/usr/bin/"
-
-   ## Completion and keybindings
-   install -dm755 "$pkgdir/usr/share/fzf"
-   install -m644 shell/*.bash shell/*.zsh "$pkgdir/usr/share/fzf"
-
-   ## Fish keybindings
-   install -Dm644 "shell/key-bindings.fish" 
"$pkgdir/usr/share/fish/functions/fzf.fish"
-}

Copied: fzf/repos/community-i686/PKGBUILD (from rev 190200, fzf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-23 11:25:54 UTC (rev 190201)
@@ -0,0 +1,58 @@
+# Maintainer: Pierre Neidhardt 
+# Contributor: Hermann Zahnweh (eigengrau)
+# Contributor: Andy Weidenbaum 
+# Contributor: foalsrock 
+# Contributor: jebaum 
+
+pkgname=fzf
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="Command-line fuzzy finder"
+arch=("i686" "x86_64")
+url="https://github.com/junegunn/fzf;
+license=("MIT")
+depends=("ncurses")
+makedepends=("git" "go")
+optdepends=("fish: fish keybindings"
+   "fzf-extras: fzf keybindings from junegunn wiki and dotfiles"
+   "tmux: fzf-tmux script for launching fzf in a tmux pane"
+   "vim-fzf: vim plugin"
+   "zsh: zsh keybindings")
+install="fzf.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz;
+   "git+https://github.com/junegunn/$pkgname.wiki;)
+sha256sums=('ab40a9d6ff50765af9568e84c2107d6b91522c0623b109193402571f87055ee7'
+'SKIP')
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   msg2 'Building...'
+   GOPATH="$srcdir" TMPDIR=/tmp go get -u github.com/junegunn/fzf/...
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   ## Doc
+   install -dm755 "$pkgdir/usr/share/doc/fzf/wiki"
+   install -m644 "$srcdir/fzf.wiki"/* "$pkgdir/usr/share/doc/fzf/wiki"
+   install -m644 README.md install uninstall "$pkgdir/usr/share/doc/fzf"
+
+   ## Man page
+   install -Dm644 

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

2016-09-23 Thread Pierre Neidhardt
Date: Friday, September 23, 2016 @ 11:24:07
  Author: ambrevar
Revision: 190200

upgpkg: fzf 0.15.0-1

Modified:
  fzf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 11:15:54 UTC (rev 190199)
+++ PKGBUILD2016-09-23 11:24:07 UTC (rev 190200)
@@ -5,7 +5,7 @@
 # Contributor: jebaum 
 
 pkgname=fzf
-pkgver=0.13.5
+pkgver=0.15.0
 pkgrel=1
 pkgdesc="Command-line fuzzy finder"
 arch=("i686" "x86_64")
@@ -21,7 +21,7 @@
 install="fzf.install"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz;
"git+https://github.com/junegunn/$pkgname.wiki;)
-sha256sums=('3494f3e3987da31f6de100214b24203f67852a15b309f1a954a54635dc0dc238'
+sha256sums=('ab40a9d6ff50765af9568e84c2107d6b91522c0623b109193402571f87055ee7'
 'SKIP')
 
 build() {


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

2016-09-23 Thread Antonio Rojas
Date: Friday, September 23, 2016 @ 11:21:36
  Author: arojas
Revision: 276866

Cleanup

Deleted:
  digikam/kde-unstable/


[arch-commits] Commit in digikam/trunk (PKGBUILD digikam-5.1-fix-build.patch)

2016-09-23 Thread Antonio Rojas
Date: Friday, September 23, 2016 @ 11:17:29
  Author: arojas
Revision: 276865

Update to 5.2.0

Modified:
  digikam/trunk/PKGBUILD
Deleted:
  digikam/trunk/digikam-5.1-fix-build.patch

-+
 PKGBUILD|   36 ++--
 digikam-5.1-fix-build.patch |   15 ---
 2 files changed, 10 insertions(+), 41 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 08:05:34 UTC (rev 276864)
+++ PKGBUILD2016-09-23 11:17:29 UTC (rev 276865)
@@ -5,9 +5,9 @@
 
 pkgbase=digikam
 pkgname=('digikam' 'kipi-plugins')
-_pkgver=5.1.0
-pkgver=${_pkgver//-/_}
-pkgrel=4
+_pkgver=5.2.0
+pkgver=${_pkgver//-/_} # for beta versions
+pkgrel=1
 pkgdesc="Digital photo management application for KDE"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,22 +15,12 @@
 makedepends=('extra-cmake-modules' 'libkipi' 'libksane' 'liblqr' 'opencv' 
'boost'
  'doxygen' 'lensfun' 'eigen' 'kdoctools' 'marble' 'kdesignerplugin'
  'kfilemetadata' 'akonadi-contacts' 'qt5-multimedia' 
'threadweaver' 'kcalcore'
- 'knotifyconfig' 'libmediawiki' 'libkvkontakte')
-source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${_pkgver}.tar.xz;
 digikam-5.1-fix-build.patch
-
kdebug-367675.patch::"https://quickgit.kde.org/?p=digikam.git=commitdiff=463667c8=plain;)
-sha1sums=('87a843c39f45b8704ead6e6029e52fb03ee44680'
-  '5b6644c8b5534a1712f46fc84948de9a0039a601'
-  'd669d6f248d6c7dec6728037992fdf8d4e14c1d9')
+ 'knotifyconfig' 'libmediawiki' 'libkvkontakte' 'gphoto2')
+source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${_pkgver}.tar.xz;)
+sha1sums=('329195ac7ea890a3bec435cd2ed83b04bc80ba1d')
 
 prepare() {
   mkdir -p build
-
-  cd $pkgname-$pkgver
-  # Fix build on i686
-  patch -p1 -i ../digikam-5.1-fix-build.patch
-  # Fix digikamhelperdir
-  cd core
-  patch -p1 -i "$srcdir"/kdebug-367675.patch
 }
 
 build() {
@@ -40,13 +30,13 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
 -DBUILD_TESTING=OFF \
 -DENABLE_KFILEMETADATASUPPORT=ON \
 -DENABLE_MEDIAPLAYER=ON \
 -DENABLE_AKONADICONTACTSUPPORT=ON \
 -DENABLE_MYSQLSUPPORT=ON \
--DENABLE_OPENCV3=ON
+-DENABLE_OPENCV3=ON \
+-DENABLE_APPSTYLES=ON
   make
 }
 
@@ -55,14 +45,12 @@
   depends=('liblqr' 'libkipi' 'lensfun' 'opencv' 'akonadi-contacts'
'knotifyconfig' 'libksane' 'kfilemetadata' 'qt5-multimedia' 'marble' 
'threadweaver' 'kcalcore')
   optdepends=('kipi-plugins: export to various online services'
-  'hugin: panorama tool')
+  'hugin: panorama tool' 'qt5-imageformats: WEBP format support')
 
   cd build/core
   make DESTDIR="$pkgdir" install
-  cd $srcdir/build/doc/digikam
+  cd $srcdir/build/doc
   make DESTDIR="$pkgdir" install
-  cd $srcdir/build/doc-translated/digikam
-  make DESTDIR="$pkgdir" install
   cd $srcdir/build/po
   make DESTDIR="$pkgdir" install
 
@@ -78,10 +66,6 @@
 
   cd build/extra
   make DESTDIR="$pkgdir" install
-  cd $srcdir/build/doc/kipi-plugins
-  make DESTDIR="$pkgdir" install
-  cd $srcdir/build/doc-translated/kipi-plugins
-  make DESTDIR="$pkgdir" install
   cd $srcdir/build/po
   make DESTDIR="$pkgdir" install
 

Deleted: digikam-5.1-fix-build.patch
===
--- digikam-5.1-fix-build.patch 2016-09-23 08:05:34 UTC (rev 276864)
+++ digikam-5.1-fix-build.patch 2016-09-23 11:17:29 UTC (rev 276865)
@@ -1,15 +0,0 @@
 digikam-5.1.0/core/libs/rawengine/libraw/libraw/libraw_types.h.orig
2016-08-09 15:05:10.449224741 +
-+++ digikam-5.1.0/core/libs/rawengine/libraw/libraw/libraw_types.h 
2016-08-09 15:05:50.725789944 +
-@@ -618,10 +618,10 @@
- #elif defined(_M_X64) || defined(__amd64__)
- #define LibRawBigEndian 0
- 
--#elif defined(__LITTLE_ENDIAN__)
-+#elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
- #define LibRawBigEndian 0
- 
--#elif defined(__BIG_ENDIAN__)
-+#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
- #define LibRawBigEndian 1
- #elif defined(_ARM_)
- #define LibRawBigEndian 0


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

2016-09-23 Thread Alexander Rødseth
Date: Friday, September 23, 2016 @ 11:15:54
  Author: arodseth
Revision: 190199

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

Added:
  erlang-nox/repos/community-i686/PKGBUILD
(from rev 190198, erlang-nox/trunk/PKGBUILD)
  erlang-nox/repos/community-i686/epmd.conf
(from rev 190198, erlang-nox/trunk/epmd.conf)
  erlang-nox/repos/community-i686/epmd.service
(from rev 190198, erlang-nox/trunk/epmd.service)
  erlang-nox/repos/community-i686/epmd.socket
(from rev 190198, erlang-nox/trunk/epmd.socket)
  erlang-nox/repos/community-x86_64/PKGBUILD
(from rev 190198, erlang-nox/trunk/PKGBUILD)
  erlang-nox/repos/community-x86_64/epmd.conf
(from rev 190198, erlang-nox/trunk/epmd.conf)
  erlang-nox/repos/community-x86_64/epmd.service
(from rev 190198, erlang-nox/trunk/epmd.service)
  erlang-nox/repos/community-x86_64/epmd.socket
(from rev 190198, erlang-nox/trunk/epmd.socket)
Deleted:
  erlang-nox/repos/community-i686/PKGBUILD
  erlang-nox/repos/community-i686/epmd.conf
  erlang-nox/repos/community-i686/epmd.service
  erlang-nox/repos/community-i686/epmd.socket
  erlang-nox/repos/community-x86_64/PKGBUILD
  erlang-nox/repos/community-x86_64/epmd.conf
  erlang-nox/repos/community-x86_64/epmd.service
  erlang-nox/repos/community-x86_64/epmd.socket

---+
 /PKGBUILD |  148 
 /epmd.conf|6 +
 /epmd.service |   22 +
 /epmd.socket  |   18 
 community-i686/PKGBUILD   |   74 
 community-i686/epmd.conf  |3 
 community-i686/epmd.service   |   11 --
 community-i686/epmd.socket|9 --
 community-x86_64/PKGBUILD |   74 
 community-x86_64/epmd.conf|3 
 community-x86_64/epmd.service |   11 --
 community-x86_64/epmd.socket  |9 --
 12 files changed, 194 insertions(+), 194 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 11:13:46 UTC (rev 190198)
+++ community-i686/PKGBUILD 2016-09-23 11:15:54 UTC (rev 190199)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgname=erlang-nox
-pkgver=19.0.7
-pkgrel=1
-pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('Apache')
-depends=('ncurses' 'openssl')
-makedepends=('perl' 'lksctp-tools' 'unixodbc' 'git' 'libxslt' 'fop'
- 'java-environment')
-conflicts=('erlang')
-optdepends=('erlang-unixodbc: database support'
-'java-environment: for Java support'
-'lksctp-tools: for SCTP support')
-options=('staticlibs')
-source=("git://github.com/erlang/otp.git#tag=OTP-$pkgver"
-"http://www.erlang.org/download/otp_doc_man_${pkgver%.*}.tar.gz;
-'epmd.service'
-'epmd.socket'
-'epmd.conf')
-sha256sums=('SKIP'
-'c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
-
-prepare() {
-  cd otp
-  ./otp_build setup
-}
-
-build() {
-  cd otp
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package() {
-  make -C otp DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm0644 "$srcdir/otp/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-
-  # Remove files that are packaged as erlang-unixodbc
-  rm -r "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION
-# vim:set ts=2 sw=2 et:

Copied: erlang-nox/repos/community-i686/PKGBUILD (from rev 190198, 
erlang-nox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD  

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

2016-09-23 Thread Alexander Rødseth
Date: Friday, September 23, 2016 @ 11:13:46
  Author: arodseth
Revision: 190198

archrelease: copy trunk to community-any

Added:
  kotlin/repos/community-any/PKGBUILD
(from rev 190197, kotlin/trunk/PKGBUILD)
Deleted:
  kotlin/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 11:12:52 UTC (rev 190197)
+++ PKGBUILD2016-09-23 11:13:46 UTC (rev 190198)
@@ -1,52 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: Romain Gautier 
-
-pkgname=kotlin
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='The Kotlin programming language'
-arch=('any')
-url="https://github.com/JetBrains/kotlin/releases/tag/v$pkgver;
-license=('apache' 'custom')
-depends=('java-environment>=6')
-makedepends=('setconf')
-source=("https://github.com/JetBrains/kotlin/releases/download/v$pkgver/kotlin-compiler-$pkgver.zip;)
-sha256sums=("37615f1d63e8500cd33c7f3e60b715263f65189d6d8f25defba78968c896dc97")
-
-prepare() {
-  cd "${pkgname}c/bin"
-
-  setconf kotlin DIR /usr/bin
-  setconf kotlinc KOTLIN_HOME "/usr/share/$pkgname"
-  setconf kotlinc-js DIR /usr/bin
-  setconf kotlinc-jvm DIR /usr/bin
-}
-
-package() {
-  cd "${pkgname}c"
-
-  msg2 'Packaging executables...'
-  install -Dm755 bin/kotlinc "$pkgdir/usr/bin/kotlinc"
-  install -Dm755 bin/kotlin "$pkgdir/usr/bin/kotlin"
-  install -Dm755 bin/kotlinc-js "$pkgdir/usr/bin/kotlinc-js"
-  install -Dm755 bin/kotlinc-jvm "$pkgdir/usr/bin/kotlinc-jvm"
-
-  msg2 'Packaging jar files...'
-  cd "$srcdir/${pkgname}c/lib"
-  install -d "$pkgdir/usr/share/$pkgname/lib"
-  for jar in *.jar; do
-install -Dm644 "$jar" "$pkgdir/usr/share/$pkgname/lib"
-  done
-
-  msg2 'Packaging licenses...'
-  cd "$srcdir/${pkgname}c/license"
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 NOTICE.txt "$pkgdir/usr/share/licenses/$pkgname"
-  cd third_party
-  for txt in *.txt; do
-install -Dm644 "$txt" "$pkgdir/usr/share/licenses/$pkgname"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: kotlin/repos/community-any/PKGBUILD (from rev 190197, 
kotlin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 11:13:46 UTC (rev 190198)
@@ -0,0 +1,52 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Romain Gautier 
+
+pkgname=kotlin
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='The Kotlin programming language'
+arch=('any')
+url='http://kotlinlang.org/'
+license=('apache' 'custom')
+depends=('java-environment>=6')
+makedepends=('setconf')
+source=("https://github.com/JetBrains/kotlin/releases/download/v$pkgver/kotlin-compiler-$pkgver.zip;)
+sha256sums=('cf665121a7075da6ffca3e0572c23faa9bd64a368c8c9fc6ba3f4242deb44572')
+
+prepare() {
+  cd "${pkgname}c/bin"
+
+  setconf kotlin DIR /usr/bin
+  setconf kotlinc KOTLIN_HOME "/usr/share/$pkgname"
+  setconf kotlinc-js DIR /usr/bin
+  setconf kotlinc-jvm DIR /usr/bin
+}
+
+package() {
+  cd "${pkgname}c"
+
+  msg2 'Packaging executables...'
+  install -Dm755 bin/kotlinc "$pkgdir/usr/bin/kotlinc"
+  install -Dm755 bin/kotlin "$pkgdir/usr/bin/kotlin"
+  install -Dm755 bin/kotlinc-js "$pkgdir/usr/bin/kotlinc-js"
+  install -Dm755 bin/kotlinc-jvm "$pkgdir/usr/bin/kotlinc-jvm"
+
+  msg2 'Packaging jar files...'
+  cd "$srcdir/${pkgname}c/lib"
+  install -d "$pkgdir/usr/share/$pkgname/lib"
+  for jar in *.jar; do
+install -Dm644 "$jar" "$pkgdir/usr/share/$pkgname/lib"
+  done
+
+  msg2 'Packaging licenses...'
+  cd "$srcdir/${pkgname}c/license"
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 NOTICE.txt "$pkgdir/usr/share/licenses/$pkgname"
+  cd third_party
+  for txt in *.txt; do
+install -Dm644 "$txt" "$pkgdir/usr/share/licenses/$pkgname"
+  done
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-09-23 Thread Alexander Rødseth
Date: Friday, September 23, 2016 @ 11:12:52
  Author: arodseth
Revision: 190197

upgpkg: kotlin 1.0.4-1

Modified:
  kotlin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 11:12:46 UTC (rev 190196)
+++ PKGBUILD2016-09-23 11:12:52 UTC (rev 190197)
@@ -2,7 +2,7 @@
 # Contributor: Romain Gautier 
 
 pkgname=kotlin
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc='The Kotlin programming language'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('java-environment>=6')
 makedepends=('setconf')
 
source=("https://github.com/JetBrains/kotlin/releases/download/v$pkgver/kotlin-compiler-$pkgver.zip;)
-sha256sums=("37615f1d63e8500cd33c7f3e60b715263f65189d6d8f25defba78968c896dc97")
+sha256sums=('cf665121a7075da6ffca3e0572c23faa9bd64a368c8c9fc6ba3f4242deb44572')
 
 prepare() {
   cd "${pkgname}c/bin"


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

2016-09-23 Thread Alexander Rødseth
Date: Friday, September 23, 2016 @ 11:12:46
  Author: arodseth
Revision: 190196

upgpkg: erlang-nox 19.1-1

Modified:
  erlang-nox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 10:28:39 UTC (rev 190195)
+++ PKGBUILD2016-09-23 11:12:46 UTC (rev 190196)
@@ -7,7 +7,7 @@
 # Contributor: Ricardo Catalinas Jiménez 
 
 pkgname=erlang-nox
-pkgver=19.0.7
+pkgver=19.1
 pkgrel=1
 pkgdesc='General-purpose concurrent functional programming language developed 
by Ericsson (headless version)'
 arch=('x86_64' 'i686')
@@ -22,12 +22,12 @@
 'lksctp-tools: for SCTP support')
 options=('staticlibs')
 source=("git://github.com/erlang/otp.git#tag=OTP-$pkgver"
-"http://www.erlang.org/download/otp_doc_man_${pkgver%.*}.tar.gz;
+"http://www.erlang.org/download/otp_doc_man_$pkgver.tar.gz; # 
${pkgver%.*}
 'epmd.service'
 'epmd.socket'
 'epmd.conf')
 sha256sums=('SKIP'
-'c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e'
+'7200e9e5b3a229a6b3838046e1b3e64afc869265539d49d0e4853212f19c0c79'
 'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
 '998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
 '78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
@@ -49,7 +49,7 @@
   # Documentation
   install -d "$pkgdir/usr/share/doc/erlang"
   install -m0644 "$srcdir/otp/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
+"$srcdir"/COPYRIGHT \
 "$pkgdir/usr/share/doc/erlang"
 
   # Compressed man pages


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

2016-09-23 Thread Alexander Rødseth
Date: Friday, September 23, 2016 @ 09:18:14
  Author: arodseth
Revision: 190194

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

Added:
  erlang/repos/community-i686/PKGBUILD
(from rev 190193, erlang/trunk/PKGBUILD)
  erlang/repos/community-i686/epmd.conf
(from rev 190193, erlang/trunk/epmd.conf)
  erlang/repos/community-i686/epmd.service
(from rev 190193, erlang/trunk/epmd.service)
  erlang/repos/community-i686/epmd.socket
(from rev 190193, erlang/trunk/epmd.socket)
  erlang/repos/community-x86_64/PKGBUILD
(from rev 190193, erlang/trunk/PKGBUILD)
  erlang/repos/community-x86_64/epmd.conf
(from rev 190193, erlang/trunk/epmd.conf)
  erlang/repos/community-x86_64/epmd.service
(from rev 190193, erlang/trunk/epmd.service)
  erlang/repos/community-x86_64/epmd.socket
(from rev 190193, erlang/trunk/epmd.socket)
Deleted:
  erlang/repos/community-i686/PKGBUILD
  erlang/repos/community-i686/epmd.conf
  erlang/repos/community-i686/epmd.service
  erlang/repos/community-i686/epmd.socket
  erlang/repos/community-x86_64/PKGBUILD
  erlang/repos/community-x86_64/epmd.conf
  erlang/repos/community-x86_64/epmd.service
  erlang/repos/community-x86_64/epmd.socket

---+
 /PKGBUILD |  186 
 /epmd.conf|6 +
 /epmd.service |   22 
 /epmd.socket  |   18 +++
 community-i686/PKGBUILD   |   93 
 community-i686/epmd.conf  |3 
 community-i686/epmd.service   |   11 --
 community-i686/epmd.socket|9 -
 community-x86_64/PKGBUILD |   93 
 community-x86_64/epmd.conf|3 
 community-x86_64/epmd.service |   11 --
 community-x86_64/epmd.socket  |9 -
 12 files changed, 232 insertions(+), 232 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 09:16:36 UTC (rev 190193)
+++ community-i686/PKGBUILD 2016-09-23 09:18:14 UTC (rev 190194)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgbase=erlang
-pkgname=('erlang' 'erlang-unixodbc')
-pkgver=19.0.7
-pkgrel=1
-arch=('x86_64' 'i686')
-url='http://www.erlang.org/'
-license=('Apache')
-makedepends=('perl' 'mesa' 'lksctp-tools' 'unixodbc' 'wxgtk' 'glu' 'git'
- 'libxslt' 'fop' 'java-environment')
-options=('staticlibs')
-source=("git://github.com/erlang/otp.git#tag=OTP-$pkgver"
-"http://www.erlang.org/download/otp_doc_man_${pkgver%.*}.tar.gz;
-'epmd.service'
-'epmd.socket'
-'epmd.conf')
-sha256sums=('SKIP'
-'c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e'
-'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
-'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
-'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
-
-prepare() {
-  cd otp
-  ./otp_build setup
-}
-
-build() {
-  cd otp
-  ./configure --prefix=/usr --enable-smp-support --with-odbc
-  make
-}
-
-package_erlang() {
-  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
-  depends=('ncurses' 'glu' 'wxgtk' 'openssl')
-  optdepends=('erlang-unixodbc: database support'
-  'java-environment: for Java support'
-  'lksctp-tools: for SCTP support')
-  provides=('erlang-nox')
-  conflicts=('erlang-nox')
-
-  make -C otp DESTDIR="$pkgdir" install
-
-  # Documentation
-  install -d "$pkgdir/usr/share/doc/erlang"
-  install -m0644 "$srcdir/otp/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
-"$pkgdir/usr/share/doc/erlang"
-
-  # Compressed man pages
-  for page in "$srcdir/man/man?/*"; do gzip $page; done
-  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
-
-  # License
-  install -Dm0644 "$srcdir/otp/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-
-  # Move over files that will be packaged as erlang-unixodbc
-  mkdir "$srcdir/unixodbc"
-  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
-  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
-
-  # epmd service, socket and conf
-  cd "$srcdir"
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-}
-
-package_erlang-unixodbc() {
-  pkgdesc='Unixodbc support for Erlang'
-  depends=('unixodbc' 'erlang-nox')
-
-  # Get the files that should be packaged as erlang-unixodbc
-  mkdir -p 

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

2016-09-23 Thread Alexander Rødseth
Date: Friday, September 23, 2016 @ 09:16:36
  Author: arodseth
Revision: 190193

upgpkg: erlang 19.1-1

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 08:53:29 UTC (rev 190192)
+++ PKGBUILD2016-09-23 09:16:36 UTC (rev 190193)
@@ -8,7 +8,7 @@
 
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
-pkgver=19.0.7
+pkgver=19.1
 pkgrel=1
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
@@ -17,12 +17,12 @@
  'libxslt' 'fop' 'java-environment')
 options=('staticlibs')
 source=("git://github.com/erlang/otp.git#tag=OTP-$pkgver"
-"http://www.erlang.org/download/otp_doc_man_${pkgver%.*}.tar.gz;
+"http://www.erlang.org/download/otp_doc_man_$pkgver.tar.gz; # 
${pkgver%.*}
 'epmd.service'
 'epmd.socket'
 'epmd.conf')
 sha256sums=('SKIP'
-'c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e'
+'7200e9e5b3a229a6b3838046e1b3e64afc869265539d49d0e4853212f19c0c79'
 'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
 '998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
 '78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
@@ -52,7 +52,7 @@
   # Documentation
   install -d "$pkgdir/usr/share/doc/erlang"
   install -m0644 "$srcdir/otp/README.md" \
-"$srcdir"/{README,COPYRIGHT} \
+"$srcdir"/COPYRIGHT \
 "$pkgdir/usr/share/doc/erlang"
 
   # Compressed man pages


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

2016-09-23 Thread Nicola Squartini
Date: Friday, September 23, 2016 @ 08:53:29
  Author: tensor5
Revision: 190192

upgpkg: electron 1.4.1-1

Modified:
  electron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 08:45:35 UTC (rev 190191)
+++ PKGBUILD2016-09-23 08:53:29 UTC (rev 190192)
@@ -3,7 +3,7 @@
 
 _chromiumver=53.0.2785.113
 pkgname=electron
-pkgver=1.4.0
+pkgver=1.4.1
 pkgrel=1
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('i686' 'x86_64')
@@ -14,7 +14,10 @@
 makedepends=('clang' 'gconf' 'git' 'gperf' 'gtk2' 'harfbuzz-icu' 'jsoncpp'
  'libexif' 'libgnome-keyring' 'libnotify' 'ninja' 'npm' 'pciutils'
  'python2' 'yasm')
-optdepends=('gvfs: file deletion support')
+optdepends=('gvfs: file deletion support (gvfs-trash)'
+'kde-cli-tools: file deletion support (kioclient5)'
+'kdebase-runtime: file deletion support (kioclient)'
+'trash-cli: file deletion support (trash-put)')
 source=("git+https://github.com/electron/electron.git#tag=v${pkgver};
 'git+https://github.com/boto/boto.git'
 'git+https://github.com/electron/brightray.git'
@@ -122,12 +125,6 @@
 prepare() {
   cd "${srcdir}"/electron
 
-  ### Bump version (temporary fix)
-  git config user.email "tens...@gmail.com"
-  git config user.name "Nicola Squartini"
-  python2 script/bump-version.py 1.4.0
-  ###
-
   patch -Np1 -i "${srcdir}"/default_app-icon.patch  # Icon from .desktop file
   patch -Np1 -i "${srcdir}"/gtk3-menu-bar.patch
   patch -Np1 -i "${srcdir}"/gtk3-warnings.patch


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

2016-09-23 Thread Nicola Squartini
Date: Friday, September 23, 2016 @ 08:45:35
  Author: tensor5
Revision: 190191

electron: install .desktop and icon file

Added:
  electron/trunk/default_app-icon.patch
  electron/trunk/electron.desktop
Modified:
  electron/trunk/PKGBUILD

+
 PKGBUILD   |   12 
 default_app-icon.patch |   22 ++
 electron.desktop   |7 +++
 3 files changed, 41 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 08:04:08 UTC (rev 190190)
+++ PKGBUILD2016-09-23 08:45:35 UTC (rev 190191)
@@ -26,6 +26,8 @@
 'git+https://github.com/kennethreitz/requests.git'
 
'google-breakpad::git+https://chromium.googlesource.com/breakpad/breakpad/src'
 
"https://github.com/zcbenz/chromium-source-tarball/releases/download/${_chromiumver}/chromium-${_chromiumver}.tar.xz;
+'electron.desktop'
+'default_app-icon.patch'
 'dont-bootstrap-libchromiumcontent.patch'
 'dont-update-submodules.patch'
 'dont-use-sysroot.patch'
@@ -62,6 +64,8 @@
 'SKIP'
 'SKIP'
 'f2768f4c79516344db73569c4844e0d8722dd73a7b0df13ba4747511001b5a2a'
+'5270db01f3f8aaa5137dec275a02caa832b7f2e37942e068cba8d28b3a29df39'
+'a0402b11c655d44ba1d71c769913b17d82abb0921759c3f1f72f204637ded725'
 '14dbd1eecb7034d9e19e1f0c61b0a36ed3b9c610db008ff2a6da2a540ade1221'
 '7fd0fc72a14b2a08ce0f258a750a9d181386b9277312f2ed5446c29b8ec4e282'
 '75b2e9827f0593e59a35c36c6039ad10d35d7499fed6d97c4ed48ef1cce54c2b'
@@ -124,6 +128,7 @@
   python2 script/bump-version.py 1.4.0
   ###
 
+  patch -Np1 -i "${srcdir}"/default_app-icon.patch  # Icon from .desktop file
   patch -Np1 -i "${srcdir}"/gtk3-menu-bar.patch
   patch -Np1 -i "${srcdir}"/gtk3-warnings.patch
   patch -Np1 -i "${srcdir}"/use-system-clang.patch
@@ -235,9 +240,16 @@
   # Fixable by moving libnode.so to /usr/lib
   install -m644 libnode.so "${pkgdir}"/usr/lib/electron
   cp -r locales resources "${pkgdir}"/usr/lib/electron
+  cd ../..
 
   echo -n "v${pkgver}" > "${pkgdir}"/usr/lib/electron/version
 
+  # Install .desktop and icon file
+  install -Dm644 "${srcdir}"/electron.desktop \
+  "${pkgdir}"/usr/share/applications/electron.desktop
+  install -Dm644 default_app/icon.png \
+  "${pkgdir}"/usr/share/pixmaps/electron.png  # hicolor has no 
1024x1024
+
   # Install Node headers
   _headers_dest="${pkgdir}/usr/lib/electron/node"
   install -d -m755 "${_headers_dest}"

Added: default_app-icon.patch
===
--- default_app-icon.patch  (rev 0)
+++ default_app-icon.patch  2016-09-23 08:45:35 UTC (rev 190191)
@@ -0,0 +1,22 @@
+--- a/default_app/default_app.js
 b/default_app/default_app.js
+@@ -17,9 +17,6 @@ exports.load = (appUrl) => {
+   backgroundColor: '#FF',
+   useContentSize: true
+ }
+-if (process.platform === 'linux') {
+-  options.icon = path.join(__dirname, 'icon.png')
+-}
+ 
+ mainWindow = new BrowserWindow(options)
+ mainWindow.loadURL(appUrl)
+--- a/filenames.gypi
 b/filenames.gypi
+@@ -75,7 +75,6 @@
+ ],
+ 'default_app_sources': [
+   'default_app/default_app.js',
+-  'default_app/icon.png',
+   'default_app/index.html',
+   'default_app/main.js',
+   'default_app/package.json',

Added: electron.desktop
===
--- electron.desktop(rev 0)
+++ electron.desktop2016-09-23 08:45:35 UTC (rev 190191)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Type=Application
+Name=Electron
+Icon=electron
+Exec=electron %u
+Categories=Development;GTK;
+StartupNotify=true


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 08:05:34
  Author: felixonmars
Revision: 276864

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

Added:
  python-cryptography/repos/extra-i686/PKGBUILD
(from rev 276863, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/extra-x86_64/PKGBUILD
(from rev 276863, python-cryptography/trunk/PKGBUILD)
Deleted:
  python-cryptography/repos/extra-i686/PKGBUILD
  python-cryptography/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-23 08:05:11 UTC (rev 276863)
+++ extra-i686/PKGBUILD 2016-09-23 08:05:34 UTC (rev 276864)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cryptography
-pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=1.5
-pkgrel=1
-pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
-arch=('i686' 'x86_64')
-license=('Apache')
-url="http://pypi.python.org/pypi/cryptography;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi'
- 'python2-cffi' 'python2-enum34' 'python-pyasn1' 'python2-pyasn1' 
'python-idna'
- 'python2-idna' 'python2-ipaddress')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver"
-  "python2-cryptography-vectors=$pkgver" 'python-iso8601' 
'python2-iso8601'
-  'python-pretend' 'python2-pretend' 'python-pyasn1-modules' 
'python2-pyasn1-modules'
-  'python-hypothesis' 'python2-hypothesis' 'python-pytz' 
'python2-pytz')
-source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
-md5sums=('d85a91af3e943c68fa5ff82a3ccdd5df')
-
-prepare() {
-  cp -a cryptography-${pkgver}{,-python2}
-}
-
-build() {
-   cd "$srcdir"/cryptography-$pkgver
-   python setup.py build
- 
-   cd "$srcdir"/cryptography-$pkgver-python2
-   python2 setup.py build
-}
-
-check() {
-   cd "$srcdir"/cryptography-$pkgver
-   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" python setup.py ptr
-
-   cd "$srcdir"/cryptography-$pkgver-python2
-   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" python2 setup.py 
ptr
-}
- 
-package_python-cryptography() {
-   depends=('python-pyasn1' 'python-six' 'python-cffi' 'python-idna' 
'python-setuptools')
- 
-   cd cryptography-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
- 
-package_python2-cryptography() {
-   depends=('python2-pyasn1' 'python2-six' 'python2-cffi' 'python2-enum34' 
'python2-idna'
-'python2-ipaddress' 'python2-setuptools')
- 
-   cd cryptography-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-cryptography/repos/extra-i686/PKGBUILD (from rev 276863, 
python-cryptography/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-23 08:05:34 UTC (rev 276864)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi'
+ 'python2-cffi' 'python2-enum34' 'python-pyasn1' 'python2-pyasn1' 
'python-idna'
+ 'python2-idna' 'python2-ipaddress')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver"
+  "python2-cryptography-vectors=$pkgver" 'python-iso8601' 
'python2-iso8601'
+  'python-pretend' 'python2-pretend' 'python-pyasn1-modules' 
'python2-pyasn1-modules'
+  'python-hypothesis' 'python2-hypothesis' 'python-pytz' 
'python2-pytz')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+md5sums=('66a3e01f5f436d2413ef47b7e6bb7729')
+
+prepare() {
+  cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   cd "$srcdir"/cryptography-$pkgver
+   python setup.py build
+ 
+   cd "$srcdir"/cryptography-$pkgver-python2
+   python2 setup.py build
+}
+
+check() {
+   cd "$srcdir"/cryptography-$pkgver
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" python setup.py ptr
+
+   cd "$srcdir"/cryptography-$pkgver-python2
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" python2 

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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 08:05:11
  Author: felixonmars
Revision: 276863

upgpkg: python-cryptography 1.5.1-1

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-22 22:32:51 UTC (rev 276862)
+++ PKGBUILD2016-09-23 08:05:11 UTC (rev 276863)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography
 pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=1.5
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
   'python-pretend' 'python2-pretend' 'python-pyasn1-modules' 
'python2-pyasn1-modules'
   'python-hypothesis' 'python2-hypothesis' 'python-pytz' 
'python2-pytz')
 
source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
-md5sums=('d85a91af3e943c68fa5ff82a3ccdd5df')
+md5sums=('66a3e01f5f436d2413ef47b7e6bb7729')
 
 prepare() {
   cp -a cryptography-${pkgver}{,-python2}


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

2016-09-23 Thread Jonathan Steel
Date: Friday, September 23, 2016 @ 08:03:58
  Author: jsteel
Revision: 190189

upgpkg: puppet 4.7.0-1

Modified:
  puppet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 07:52:33 UTC (rev 190188)
+++ PKGBUILD2016-09-23 08:03:58 UTC (rev 190189)
@@ -9,7 +9,7 @@
 # Contributor: Niels Abspoel 
 
 pkgname=puppet
-pkgver=4.6.2
+pkgver=4.7.0
 pkgrel=1
 pkgdesc="Server automation framework and application"
 arch=('any')
@@ -21,7 +21,7 @@
 'etc/puppetlabs/puppet/puppet.conf')
 install=$pkgname.install
 source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('452f4357178218c8528b1daebd89f3ef')
+md5sums=('0ca4c2287f0d14eb59cd94a59b618635')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-09-23 Thread Jonathan Steel
Date: Friday, September 23, 2016 @ 08:04:08
  Author: jsteel
Revision: 190190

archrelease: copy trunk to community-testing-any

Added:
  puppet/repos/community-testing-any/
  puppet/repos/community-testing-any/PKGBUILD
(from rev 190189, puppet/trunk/PKGBUILD)
  puppet/repos/community-testing-any/puppet.install
(from rev 190189, puppet/trunk/puppet.install)

+
 PKGBUILD   |   65 +++
 puppet.install |   20 
 2 files changed, 85 insertions(+)

Copied: puppet/repos/community-testing-any/PKGBUILD (from rev 190189, 
puppet/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2016-09-23 08:04:08 UTC (rev 190190)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Thomas S Hatch 
+# Contributor: Xavion 
+# Contributor: Miah Johnson 
+# Contributor: Dave Simons 
+# Contributor: Niels Abspoel 
+
+pkgname=puppet
+pkgver=4.7.0
+pkgrel=1
+pkgdesc="Server automation framework and application"
+arch=('any')
+url="http://puppetlabs.com/puppet/puppet-open-source;
+license=('Apache')
+depends=('facter' 'hiera')
+optdepends=('ruby-shadow: user password management')
+backup=('etc/puppetlabs/puppet/auth.conf'
+'etc/puppetlabs/puppet/puppet.conf')
+install=$pkgname.install
+source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('0ca4c2287f0d14eb59cd94a59b618635')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # FS#45044: fix file location
+  sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
+'puts RbConfig::CONFIG["vendorlibdir"]' )"
+
+  install -d "$pkgdir"/{var/lib/$pkgname,usr/lib/tmpfiles.d}
+
+  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
+"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+
+  # systemd
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
+"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+
+  # vim and emacs
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/vim/ftdetect/$pkgname.vim \
+"$pkgdir"/usr/share/vim/vimfiles/ftdetect/$pkgname.vim
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/vim/syntax/$pkgname.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/$pkgname.vim
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/emacs/$pkgname-mode.el \
+"$pkgdir"/usr/share/emacs/site-lisp/$pkgname-mode.el
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/emacs/$pkgname-mode-init.el \
+"$pkgdir"/usr/share/emacs/site-lisp/site-start.d/$pkgname-mode-init.el
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Match permissions that puppet sets when running
+  chmod 775 "$pkgdir"/var/lib/puppet
+  chmod 750 "$pkgdir"/var/log/puppetlabs/puppet
+
+  rm -r "$pkgdir"/var/run
+}

Copied: puppet/repos/community-testing-any/puppet.install (from rev 190189, 
puppet/trunk/puppet.install)
===
--- community-testing-any/puppet.install(rev 0)
+++ community-testing-any/puppet.install2016-09-23 08:04:08 UTC (rev 
190190)
@@ -0,0 +1,20 @@
+pre_install() {
+  getent group puppet &>/dev/null || groupadd -r puppet -g 52
+  getent passwd puppet &>/dev/null || useradd -r -u 52 -g puppet \
+-d /var/lib/puppet -s /usr/bin/nologin -c "Puppet" puppet
+}
+
+pre_upgrade() {
+  pre_install
+
+  # puppetmaster has been dropped
+  if [[ -f /run/puppetlabs/master.pid ]]; then
+systemctl stop puppetmaster
+  fi
+}
+
+pre_remove() {
+  if [[ -f /run/puppetlabs/agent.pid ]]; then
+systemctl stop puppet
+  fi
+}


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

2016-09-23 Thread Christian Hesse
Date: Friday, September 23, 2016 @ 07:52:33
  Author: eworm
Revision: 190188

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 07:52:29 UTC (rev 190187)
+++ community-i686/PKGBUILD 2016-09-23 07:52:33 UTC (rev 190188)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: mickele  (librecad-git PKGBUILD)
-# Contributor: Ilmari Repo  (librecad-svn PKGBUILD)
-# Contributor: GazJ Gary James  (CADuntu 
PKGBUILD)
-
-pkgname=librecad
-pkgver=2.1.2
-pkgrel=1
-pkgdesc='A 2D CAD drawing tool based on the community edition of QCad'
-arch=('i686' 'x86_64')
-url='http://www.librecad.org/'
-license=('GPL')
-depends=('qt5-base' 'qt5-svg' 'qt5-tools' 'libxcb' 'muparser')
-makedepends=('boost' 'imagemagick' 'librsvg')
-conflicts=('librecad-git')
-replaces=('librecad-svn' 'caduntu' 'caduntu-svn')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreCAD/LibreCAD/archive/${pkgver}.tar.gz;)
-sha256sums=('12ece7102c9406b28acf5901e20e7940c44b570957d24599793c90c38d882d3e')
-
-build() {
-   cd "${srcdir}/LibreCAD-${pkgver}"
-
-   # fix version string
-   sed -i "/^SCMREVISION/c SCMREVISION=\"${pkgver}\"" librecad/src/src.pro
-
-   qmake-qt5 librecad.pro
-
-   # fix include path... this is an issue with gcc 6.1.1 and qmake-qt5...
-   make qmake_all
-   sed -i '/INCPATH/s|-isystem /usr/include ||' librecad/src/Makefile
-
-   make
-}
-
-package() {
-   cd "${srcdir}/LibreCAD-${pkgver}"
-
-   # executables
-   install -D -m0755 unix/librecad "${pkgdir}/usr/bin/librecad"
-   install -D -m0755 unix/ttf2lff "${pkgdir}/usr/bin/ttf2lff"
-
-   # desktop file and man pages
-   install -D -m0644 desktop/librecad.desktop 
"${pkgdir}/usr/share/applications/librecad.desktop"
-   install -D -m0644 desktop/librecad.1 
"${pkgdir}/usr/share/man/man1/librecad.1"
-
-   # documentation
-   install -D -m0644 librecad/support/doc/README 
"${pkgdir}/usr/share/doc/librecad/index.README"
-   install -D -m0644 librecad/support/doc/index.html 
"${pkgdir}/usr/share/doc/librecad/index.html"
-   install -D -m0644 librecad/support/doc/style.css 
"${pkgdir}/usr/share/doc/librecad/style.css"
-   install -D -m0644 librecad/support/doc/img/librecadlogo.png 
"${pkgdir}/usr/share/doc/librecad/img/librecadlogo.png"
-
-   # icons
-   for SIZE in 16 24 32 48 64 96 128; do
-   convert -scale ${SIZE} \
-   desktop/graphics_icons_and_splash/Icon\ 
LibreCAD/Icon_Librecad.svg \
-   ${srcdir}/librecad.png
-   install -D -m0644 ${srcdir}/librecad.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/librecad.png"
-   done
-   install -D -m0644 desktop/graphics_icons_and_splash/Icon\ 
LibreCAD/Icon_Librecad.svg 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/librecad.svg"
-
-   # resources
-   mkdir -p "${pkgdir}/usr/share/librecad/"
-   cp -r unix/resources/{library,patterns,fonts,qm} 
"${pkgdir}/usr/share/librecad/"
-}
-

Copied: librecad/repos/community-i686/PKGBUILD (from rev 190187, 
librecad/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-23 07:52:33 UTC (rev 190188)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: mickele  (librecad-git PKGBUILD)
+# Contributor: Ilmari Repo  (librecad-svn PKGBUILD)
+# Contributor: GazJ Gary James  (CADuntu 
PKGBUILD)
+
+pkgname=librecad
+pkgver=2.1.3
+pkgrel=1
+pkgdesc='A 2D CAD drawing tool based on the community edition of QCad'
+arch=('i686' 'x86_64')
+url='http://www.librecad.org/'
+license=('GPL')
+depends=('qt5-base' 'qt5-svg' 'qt5-tools' 'libxcb' 'muparser')
+makedepends=('boost' 'imagemagick' 'librsvg')
+conflicts=('librecad-git')
+replaces=('librecad-svn' 'caduntu' 'caduntu-svn')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreCAD/LibreCAD/archive/${pkgver}.tar.gz;)
+sha256sums=('74c4ede409b13d0365c65c0cd52dba04f1049530f6df706dc905443d5e60db06')
+
+build() {
+   cd "${srcdir}/LibreCAD-${pkgver}"
+
+   # fix version string
+   sed -i "/^SCMREVISION/c SCMREVISION=\"${pkgver}\"" librecad/src/src.pro
+
+  

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

2016-09-23 Thread Christian Hesse
Date: Friday, September 23, 2016 @ 07:52:29
  Author: eworm
Revision: 190187

upgpkg: librecad 2.1.3-1

new upstream release

Modified:
  librecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 07:23:30 UTC (rev 190186)
+++ PKGBUILD2016-09-23 07:52:29 UTC (rev 190187)
@@ -5,7 +5,7 @@
 # Contributor: GazJ Gary James  (CADuntu 
PKGBUILD)
 
 pkgname=librecad
-pkgver=2.1.2
+pkgver=2.1.3
 pkgrel=1
 pkgdesc='A 2D CAD drawing tool based on the community edition of QCad'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 conflicts=('librecad-git')
 replaces=('librecad-svn' 'caduntu' 'caduntu-svn')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreCAD/LibreCAD/archive/${pkgver}.tar.gz;)
-sha256sums=('12ece7102c9406b28acf5901e20e7940c44b570957d24599793c90c38d882d3e')
+sha256sums=('74c4ede409b13d0365c65c0cd52dba04f1049530f6df706dc905443d5e60db06')
 
 build() {
cd "${srcdir}/LibreCAD-${pkgver}"


[arch-commits] Commit in python-cryptography-vectors/repos/community-any (2 files)

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:23:30
  Author: felixonmars
Revision: 190186

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 190185, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 07:23:11 UTC (rev 190185)
+++ PKGBUILD2016-09-23 07:23:30 UTC (rev 190186)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=1.5
-pkgrel=1
-pkgdesc="Test vectors for the cryptography package"
-arch=('any')
-license=('Apache')
-url="http://pypi.python.org/pypi/cryptography-vectors;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('2593c8f741379655f9c391cc369f9958')
-
-prepare() {
-   cp -a cryptography_vectors-$pkgver{,-python2}
-}
-
-package_python-cryptography-vectors() {
-   depends=('python')
- 
-   cd cryptography_vectors-$pkgver
-   python3 setup.py install --root="$pkgdir" --optimize=1
-}
- 
-package_python2-cryptography-vectors() {
-   depends=('python2')
- 
-   cd cryptography_vectors-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
190185, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 07:23:30 UTC (rev 190186)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Test vectors for the cryptography package"
+arch=('any')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('3b5cf4dd20a654c79e2f2674bd086b96')
+
+prepare() {
+   cp -a cryptography_vectors-$pkgver{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-$pkgver
+   python3 setup.py install --root="$pkgdir" --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-$pkgver-python2
+   python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:23:01
  Author: felixonmars
Revision: 190184

archrelease: copy trunk to community-any

Added:
  apache-libcloud/repos/community-any/PKGBUILD
(from rev 190183, apache-libcloud/trunk/PKGBUILD)
Deleted:
  apache-libcloud/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 07:22:45 UTC (rev 190183)
+++ PKGBUILD2016-09-23 07:23:01 UTC (rev 190184)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Lex Black 
-# Contributor: Alasdair Haswell 
-
-pkgbase=apache-libcloud
-pkgname=('python-apache-libcloud' 'python2-apache-libcloud')
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="Apache Libcloud is a standard Python library that abstracts away 
differences among multiple cloud provider APIs"
-arch=('any')
-url="https://libcloud.apache.org;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-mock' 'python2-mock' 'python2-paramiko' 'openssh')
-source=("https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-${pkgver}.tar.gz;)
-sha256sums=('494b17bf38df7d90bf1d847caebaa69a999ae4c6852b348a07d709280a3d57a0')
-
-prepare() {
-  cp -a apache-libcloud-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/apache-libcloud-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/apache-libcloud-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/apache-libcloud-$pkgver"
-  cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
-  python setup.py test
-  rm libcloud/test/secrets.py
-
-  cd "$srcdir/apache-libcloud-$pkgver-py2"
-  cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
-  python2 setup.py test
-  rm libcloud/test/secrets.py
-}
-
-package_python-apache-libcloud() {
-  depends=('python')
-
-  cd apache-libcloud-$pkgver
-  python setup.py install --root="$pkgdir"
-}
-
-package_python2-apache-libcloud() {
-  depends=('python2')
-  replaces=('apache-libcloud')
-  conflicts=('apache-libcloud')
-
-  cd apache-libcloud-$pkgver-py2
-  python2 setup.py install --root="$pkgdir"
-}

Copied: apache-libcloud/repos/community-any/PKGBUILD (from rev 190183, 
apache-libcloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 07:23:01 UTC (rev 190184)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Lex Black 
+# Contributor: Alasdair Haswell 
+
+pkgbase=apache-libcloud
+pkgname=('python-apache-libcloud' 'python2-apache-libcloud')
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="Apache Libcloud is a standard Python library that abstracts away 
differences among multiple cloud provider APIs"
+arch=('any')
+url="https://libcloud.apache.org;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-mock' 'python2-mock' 'python2-paramiko' 'openssh')
+source=("https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-${pkgver}.tar.gz;)
+sha256sums=('b26b542c6c9785dd4e34892d87421ffa4c043335c1cba301a97a8d9748c423f2')
+
+prepare() {
+  cp -a apache-libcloud-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/apache-libcloud-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/apache-libcloud-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/apache-libcloud-$pkgver"
+  cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
+  python setup.py test
+  rm libcloud/test/secrets.py
+
+  cd "$srcdir/apache-libcloud-$pkgver-py2"
+  cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
+  python2 setup.py test
+  rm libcloud/test/secrets.py
+}
+
+package_python-apache-libcloud() {
+  depends=('python')
+
+  cd apache-libcloud-$pkgver
+  python setup.py install --root="$pkgdir"
+}
+
+package_python2-apache-libcloud() {
+  depends=('python2')
+  replaces=('apache-libcloud')
+  conflicts=('apache-libcloud')
+
+  cd apache-libcloud-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"
+}


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:23:11
  Author: felixonmars
Revision: 190185

upgpkg: python-cryptography-vectors 1.5.1-1

Modified:
  python-cryptography-vectors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 07:23:01 UTC (rev 190184)
+++ PKGBUILD2016-09-23 07:23:11 UTC (rev 190185)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography-vectors
 pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=1.5
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="Test vectors for the cryptography package"
 arch=('any')
@@ -11,7 +11,7 @@
 url="http://pypi.python.org/pypi/cryptography-vectors;
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('2593c8f741379655f9c391cc369f9958')
+md5sums=('3b5cf4dd20a654c79e2f2674bd086b96')
 
 prepare() {
cp -a cryptography_vectors-$pkgver{,-python2}


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:22:45
  Author: felixonmars
Revision: 190183

upgpkg: apache-libcloud 1.2.1-1

Modified:
  apache-libcloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 07:11:31 UTC (rev 190182)
+++ PKGBUILD2016-09-23 07:22:45 UTC (rev 190183)
@@ -6,7 +6,7 @@
 
 pkgbase=apache-libcloud
 pkgname=('python-apache-libcloud' 'python2-apache-libcloud')
-pkgver=1.1.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="Apache Libcloud is a standard Python library that abstracts away 
differences among multiple cloud provider APIs"
 arch=('any')
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-mock' 'python2-mock' 'python2-paramiko' 'openssh')
 
source=("https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-${pkgver}.tar.gz;)
-sha256sums=('494b17bf38df7d90bf1d847caebaa69a999ae4c6852b348a07d709280a3d57a0')
+sha256sums=('b26b542c6c9785dd4e34892d87421ffa4c043335c1cba301a97a8d9748c423f2')
 
 prepare() {
   cp -a apache-libcloud-$pkgver{,-py2}


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:11:11
  Author: felixonmars
Revision: 190181

upgpkg: typescript 2.0.3-1

Modified:
  typescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 07:09:58 UTC (rev 190180)
+++ PKGBUILD2016-09-23 07:11:11 UTC (rev 190181)
@@ -3,7 +3,7 @@
 # Contributor: Bruno Galeotti 
 
 pkgname=typescript
-pkgver=1.8.10
+pkgver=2.0.3
 pkgrel=1
 pkgdesc="TypeScript is a language for application scale JavaScript development"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha256sums=('18bfff799945915dd700064ceeb1efe7c6c853d93aa3a0cf6d54741faf80e119')
+sha256sums=('3cfa9db91b68f95723a8f64db3dd3ee158b828d51d5a6eb6370dbca9e3045367')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:11:31
  Author: felixonmars
Revision: 190182

archrelease: copy trunk to community-any

Added:
  typescript/repos/community-any/PKGBUILD
(from rev 190181, typescript/trunk/PKGBUILD)
Deleted:
  typescript/repos/community-any/PKGBUILD

--+
 PKGBUILD |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 07:11:11 UTC (rev 190181)
+++ PKGBUILD2016-09-23 07:11:31 UTC (rev 190182)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Bruno Galeotti 
-
-pkgname=typescript
-pkgver=1.8.10
-pkgrel=1
-pkgdesc="TypeScript is a language for application scale JavaScript development"
-arch=('any')
-url="http://typescriptlang.org/;
-license=('Apache')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha256sums=('18bfff799945915dd700064ceeb1efe7c6c853d93aa3a0cf6d54741faf80e119')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-}
-
-# vim:set ts=2 sw=2 et:

Copied: typescript/repos/community-any/PKGBUILD (from rev 190181, 
typescript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 07:11:31 UTC (rev 190182)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Bruno Galeotti 
+
+pkgname=typescript
+pkgver=2.0.3
+pkgrel=1
+pkgdesc="TypeScript is a language for application scale JavaScript development"
+arch=('any')
+url="http://typescriptlang.org/;
+license=('Apache')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha256sums=('3cfa9db91b68f95723a8f64db3dd3ee158b828d51d5a6eb6370dbca9e3045367')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:09:58
  Author: felixonmars
Revision: 190180

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

Added:
  gost/repos/community-i686/LICENSE
(from rev 190179, gost/trunk/LICENSE)
  gost/repos/community-i686/PKGBUILD
(from rev 190179, gost/trunk/PKGBUILD)
  gost/repos/community-x86_64/LICENSE
(from rev 190179, gost/trunk/LICENSE)
  gost/repos/community-x86_64/PKGBUILD
(from rev 190179, gost/trunk/PKGBUILD)
Deleted:
  gost/repos/community-i686/LICENSE
  gost/repos/community-i686/PKGBUILD
  gost/repos/community-x86_64/LICENSE
  gost/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |   44 
 /PKGBUILD |   78 
 community-i686/LICENSE|   22 
 community-i686/PKGBUILD   |   40 --
 community-x86_64/LICENSE  |   22 
 community-x86_64/PKGBUILD |   40 --
 6 files changed, 122 insertions(+), 124 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2016-09-23 07:09:16 UTC (rev 190179)
+++ community-i686/LICENSE  2016-09-23 07:09:58 UTC (rev 190180)
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014 郑锐
-
-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: gost/repos/community-i686/LICENSE (from rev 190179, gost/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2016-09-23 07:09:58 UTC (rev 190180)
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 郑锐
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-23 07:09:16 UTC (rev 190179)
+++ community-i686/PKGBUILD 2016-09-23 07:09:58 UTC (rev 190180)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=gost
-pkgver=2.0
-_tag=2.0
-pkgrel=1
-pkgdesc="GO Simple Tunnel"
-arch=('i686' 'x86_64')
-url="https://github.com/ginuerzh/gost;
-license=('MIT')
-depends=('gcc-libs>=5.3.0-3')
-makedepends=('git' 'mercurial' 'gcc-go')
-source=("git+https://github.com/ginuerzh/gost.git#tag=$_tag;
-LICENSE)
-md5sums=('SKIP'
- '24a6686f7498d7af0b51690f712dd618')
-
-prepare() {
-  cd gost
-
-  mkdir -p .gopath/src/github.com/ginuerzh
-  ln -sf "$PWD" .gopath/src/github.com/ginuerzh/gost
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/ginuerzh/gosocks5 github.com/gorilla/websocket 
github.com/shadowsocks/shadowsocks-go/shadowsocks github.com/golang/glog
-}
-
-build() {
-  cd gost
-  export GOPATH="$PWD/.gopath"
-
-  go build -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd gost
-  install -Dm755 gost "$pkgdir/usr/bin/gost"
-  install -Dm644 

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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:09:16
  Author: felixonmars
Revision: 190179

upgpkg: gost 2.1-1

Modified:
  gost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 07:07:25 UTC (rev 190178)
+++ PKGBUILD2016-09-23 07:09:16 UTC (rev 190179)
@@ -2,8 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=gost
-pkgver=2.0
-_tag=2.0
+pkgver=2.1
 pkgrel=1
 pkgdesc="GO Simple Tunnel"
 arch=('i686' 'x86_64')
@@ -11,7 +10,7 @@
 license=('MIT')
 depends=('gcc-libs>=5.3.0-3')
 makedepends=('git' 'mercurial' 'gcc-go')
-source=("git+https://github.com/ginuerzh/gost.git#tag=$_tag;
+source=("git+https://github.com/ginuerzh/gost.git#tag=$pkgver;
 LICENSE)
 md5sums=('SKIP'
  '24a6686f7498d7af0b51690f712dd618')


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:06:55
  Author: felixonmars
Revision: 190177

upgpkg: you-get 0.4.555-1

Modified:
  you-get/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-23 01:20:37 UTC (rev 190176)
+++ PKGBUILD2016-09-23 07:06:55 UTC (rev 190177)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=you-get
-pkgver=0.4.536
+pkgver=0.4.555
 pkgrel=1
 pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
 url="http://www.soimort.org/you-get/;


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

2016-09-23 Thread Felix Yan
Date: Friday, September 23, 2016 @ 07:07:25
  Author: felixonmars
Revision: 190178

archrelease: copy trunk to community-any

Added:
  you-get/repos/community-any/PKGBUILD
(from rev 190177, you-get/trunk/PKGBUILD)
Deleted:
  you-get/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-23 07:06:55 UTC (rev 190177)
+++ PKGBUILD2016-09-23 07:07:25 UTC (rev 190178)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=you-get
-pkgver=0.4.536
-pkgrel=1
-pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
-url="http://www.soimort.org/you-get/;
-arch=('any')
-license=('MIT')
-depends=('python-setuptools')
-makedepends=('git')
-source=("git+https://github.com/soimort/you-get.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname
-  LC_CTYPE=en_US.UTF-8 python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname
-  python setup.py install --root="$pkgdir"
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: you-get/repos/community-any/PKGBUILD (from rev 190177, 
you-get/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-23 07:07:25 UTC (rev 190178)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=you-get
+pkgver=0.4.555
+pkgrel=1
+pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
+url="http://www.soimort.org/you-get/;
+arch=('any')
+license=('MIT')
+depends=('python-setuptools')
+makedepends=('git')
+source=("git+https://github.com/soimort/you-get.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname
+  LC_CTYPE=en_US.UTF-8 python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname
+  python setup.py install --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}