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

2017-10-16 Thread Tobias Powalowski
Date: Tuesday, October 17, 2017 @ 05:02:33
  Author: tpowa
Revision: 308074

db-move: moved linux from [testing] to [core] (i686, x86_64)

Added:
  linux/repos/core-i686/90-linux.hook
(from rev 308073, linux/repos/testing-i686/90-linux.hook)
  linux/repos/core-i686/PKGBUILD
(from rev 308073, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/config.i686
(from rev 308073, linux/repos/testing-i686/config.i686)
  linux/repos/core-i686/config.x86_64
(from rev 308073, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/linux.install
(from rev 308073, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 308073, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/90-linux.hook
(from rev 308073, linux/repos/testing-x86_64/90-linux.hook)
  linux/repos/core-x86_64/PKGBUILD
(from rev 308073, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/config.i686
(from rev 308073, linux/repos/testing-x86_64/config.i686)
  linux/repos/core-x86_64/config.x86_64
(from rev 308073, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/linux.install
(from rev 308073, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 308073, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/90-linux.hook
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/config.i686
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/90-linux.hook
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/config.i686
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

---+
 /90-linux.hook|   22 
 /PKGBUILD |  478 +
 /config.i686  |17272 
 /config.x86_64|16750 ++
 /linux.install|   54 
 /linux.preset |   28 
 core-i686/90-linux.hook   |   11 
 core-i686/PKGBUILD|  239 
 core-i686/config.i686 | 8636 --
 core-i686/config.x86_64   | 8375 -
 core-i686/linux.install   |   27 
 core-i686/linux.preset|   14 
 core-x86_64/90-linux.hook |   11 
 core-x86_64/PKGBUILD  |  239 
 core-x86_64/config.i686   | 8636 --
 core-x86_64/config.x86_64 | 8375 -
 core-x86_64/linux.install |   27 
 core-x86_64/linux.preset  |   14 
 18 files changed, 34604 insertions(+), 34604 deletions(-)

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


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:38:59
  Author: felixonmars
Revision: 263120

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 263119, thefuck/trunk/PKGBUILD)
Deleted:
  thefuck/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-17 00:38:33 UTC (rev 263119)
+++ PKGBUILD2017-10-17 00:38:59 UTC (rev 263120)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=thefuck
-pkgver=3.23
-pkgrel=1
-pkgdesc="Magnificent app which corrects your previous console command"
-arch=('any')
-url="https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama' 
'python-decorator'
- 'python-pyte')
-makedepends=('python-pip')
-checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nvbn/thefuck/archive/$pkgver.tar.gz;)
-sha512sums=('893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814')
-
-build() {
-  cd thefuck-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd thefuck-$pkgver
-
-  # Hack distribution test by installing it and set PYTHONPATH afterwards
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-
-  # Hack $HOME as it's / in the chroot and not writable
-  cp tests/test_conf.py "$srcdir/test_conf.py.bak"
-  sed -i "s|data = {}|data = {'HOME': '$srcdir'}|" tests/test_conf.py
-  LC_CTYPE=en_US.utf8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test tests
-  mv "$srcdir/test_conf.py.bak" tests/test_conf.py
-}
-
-package() {
-  cd thefuck-$pkgver
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 263119, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-17 00:38:59 UTC (rev 263120)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=thefuck
+pkgver=3.24
+pkgrel=1
+pkgdesc="Magnificent app which corrects your previous console command"
+arch=('any')
+url="https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama' 
'python-decorator'
+ 'python-pyte')
+makedepends=('python-pip')
+checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nvbn/thefuck/archive/$pkgver.tar.gz;)
+sha512sums=('d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d')
+
+build() {
+  cd thefuck-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd thefuck-$pkgver
+
+  # Hack distribution test by installing it and set PYTHONPATH afterwards
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+
+  # Hack $HOME as it's / in the chroot and not writable
+  cp tests/test_conf.py "$srcdir/test_conf.py.bak"
+  sed -i "s|data = {}|data = {'HOME': '$srcdir'}|" tests/test_conf.py
+  LC_CTYPE=en_US.utf8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test tests
+  mv "$srcdir/test_conf.py.bak" tests/test_conf.py
+}
+
+package() {
+  cd thefuck-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:38:33
  Author: felixonmars
Revision: 263119

upgpkg: thefuck 3.24-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-17 00:37:53 UTC (rev 263118)
+++ PKGBUILD2017-10-17 00:38:33 UTC (rev 263119)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=thefuck
-pkgver=3.23
+pkgver=3.24
 pkgrel=1
 pkgdesc="Magnificent app which corrects your previous console command"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-pip')
 checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nvbn/thefuck/archive/$pkgver.tar.gz;)
-sha512sums=('893700fcec88d7c0070bdc1ea90309cb77ebd7e21895cc633e2d5d2f99a83117e182b8dd386abee97b96affce3126a745613612522b5c731c2e7ab7a162b3814')
+sha512sums=('d4949ea723cf3b080f2fbe269d0cafe3d0266089fa8cc515b3b9376b2004c045be82716cd219741a60a0e99c20575adb92339a879467f709f7ca03dcc71a5c2d')
 
 build() {
   cd thefuck-$pkgver


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:37:53
  Author: felixonmars
Revision: 263118

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-17 00:37:23 UTC (rev 263117)
+++ PKGBUILD2017-10-17 00:37:53 UTC (rev 263118)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jeremy "Ichimonji10" Audet 
-# Contributor: dnuux 
-
-pkgbase=python-faker
-pkgname=(python-faker python2-faker)
-pkgver=0.8.6
-pkgrel=1
-pkgdesc='Faker generates fake data for you.'
-arch=('any')
-url='http://www.joke2k.net/faker/'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
- 'python-unidecode' 'python2-unidecode')
-checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
-  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
-  'python2-ipaddress')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('00dc032f922c9e715a5cd3621d5bb45fb975a07a38e7b60394484c432d304da6b044c08f25b5fbcef0377ae7f85a922886577c0e864020eca5ce6f1b634d20ce')
-
-prepare() {
-  cp -a faker-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-faker() {
-  depends=('python-setuptools' 'python-dateutil' 'python-unidecode')
-  provides=("python-fake-factory=$pkgver")
-  conflicts=('python-fake-factory')
-  replaces=('python-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-package_python2-faker() {
-  depends=('python2-setuptools' 'python2-dateutil' 'python2-unidecode' 
'python2-ipaddress')
-  provides=("python2-fake-factory=$pkgver")
-  conflicts=('python2-fake-factory')
-  replaces=('python2-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/faker{,2}
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-faker/repos/community-any/PKGBUILD (from rev 263117, 
python-faker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-17 00:37:53 UTC (rev 263118)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jeremy "Ichimonji10" Audet 
+# Contributor: dnuux 
+
+pkgbase=python-faker
+pkgname=(python-faker python2-faker)
+pkgver=0.8.6
+pkgrel=2
+pkgdesc='Faker generates fake data for you.'
+arch=('any')
+url='http://www.joke2k.net/faker/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
+ 'python-text-unidecode' 'python2-text-unidecode')
+checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
+  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
+  'python2-ipaddress')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
+sha512sums=('00dc032f922c9e715a5cd3621d5bb45fb975a07a38e7b60394484c432d304da6b044c08f25b5fbcef0377ae7f85a922886577c0e864020eca5ce6f1b634d20ce')
+
+prepare() {
+  cp -a faker-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-faker() {
+  depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
+  provides=("python-fake-factory=$pkgver")
+  conflicts=('python-fake-factory')
+  replaces=('python-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-faker() {
+  depends=('python2-setuptools' 'python2-dateutil' 'python2-text-unidecode' 
'python2-ipaddress')
+  provides=("python2-fake-factory=$pkgver")
+  conflicts=('python2-fake-factory')
+  replaces=('python2-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py 

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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:37:23
  Author: felixonmars
Revision: 263117

upgpkg: python-faker 0.8.6-2

fix dependency

Modified:
  python-faker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-17 00:35:13 UTC (rev 263116)
+++ PKGBUILD2017-10-17 00:37:23 UTC (rev 263117)
@@ -6,13 +6,13 @@
 pkgbase=python-faker
 pkgname=(python-faker python2-faker)
 pkgver=0.8.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
 url='http://www.joke2k.net/faker/'
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
- 'python-unidecode' 'python2-unidecode')
+ 'python-text-unidecode' 'python2-text-unidecode')
 checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
   'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
   'python2-ipaddress')
@@ -40,7 +40,7 @@
 }
 
 package_python-faker() {
-  depends=('python-setuptools' 'python-dateutil' 'python-unidecode')
+  depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
   provides=("python-fake-factory=$pkgver")
   conflicts=('python-fake-factory')
   replaces=('python-fake-factory')
@@ -51,7 +51,7 @@
 }
 
 package_python2-faker() {
-  depends=('python2-setuptools' 'python2-dateutil' 'python2-unidecode' 
'python2-ipaddress')
+  depends=('python2-setuptools' 'python2-dateutil' 'python2-text-unidecode' 
'python2-ipaddress')
   provides=("python2-fake-factory=$pkgver")
   conflicts=('python2-fake-factory')
   replaces=('python2-fake-factory')


[arch-commits] Commit in python-text-unidecode/repos (2 files)

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:35:13
  Author: felixonmars
Revision: 263116

archrelease: copy trunk to community-any

Added:
  python-text-unidecode/repos/community-any/
  python-text-unidecode/repos/community-any/PKGBUILD
(from rev 263115, python-text-unidecode/trunk/PKGBUILD)

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

Copied: python-text-unidecode/repos/community-any/PKGBUILD (from rev 263115, 
python-text-unidecode/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-10-17 00:35:13 UTC (rev 263116)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-text-unidecode
+pkgname=(python-text-unidecode python2-text-unidecode)
+pkgver=1.0
+pkgrel=1
+pkgdesc="The most basic Text::Unidecode port"
+url="https://github.com/kmike/text-unidecode;
+license=('PerlArtistic')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("https://pypi.io/packages/source/t/text-unidecode/text-unidecode-$pkgver.tar.gz;)
+md5sums=('e8b5b7be1bf6107888db15359893383f')
+
+prepare() {
+  cp -a text-unidecode-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/text-unidecode-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/text-unidecode-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/text-unidecode-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/text-unidecode-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-text-unidecode() {
+  depends=('python')
+
+  cd text-unidecode-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-text-unidecode() {
+  depends=('python2')
+
+  cd text-unidecode-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in (4 files)

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:34:42
  Author: felixonmars
Revision: 263115

addpkg: python-text-unidecode 1.0-1

Added:
  python-text-unidecode/
  python-text-unidecode/repos/
  python-text-unidecode/trunk/
  python-text-unidecode/trunk/PKGBUILD

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

Added: python-text-unidecode/trunk/PKGBUILD
===
--- python-text-unidecode/trunk/PKGBUILD(rev 0)
+++ python-text-unidecode/trunk/PKGBUILD2017-10-17 00:34:42 UTC (rev 
263115)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-text-unidecode
+pkgname=(python-text-unidecode python2-text-unidecode)
+pkgver=1.0
+pkgrel=1
+pkgdesc="The most basic Text::Unidecode port"
+url="https://github.com/kmike/text-unidecode;
+license=('PerlArtistic')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("https://pypi.io/packages/source/t/text-unidecode/text-unidecode-$pkgver.tar.gz;)
+md5sums=('e8b5b7be1bf6107888db15359893383f')
+
+prepare() {
+  cp -a text-unidecode-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/text-unidecode-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/text-unidecode-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/text-unidecode-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/text-unidecode-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-text-unidecode() {
+  depends=('python')
+
+  cd text-unidecode-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-text-unidecode() {
+  depends=('python2')
+
+  cd text-unidecode-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:30:39
  Author: felixonmars
Revision: 263114

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

Added:
  phonegap/repos/community-testing-i686/
  phonegap/repos/community-testing-i686/PKGBUILD
(from rev 263113, phonegap/trunk/PKGBUILD)
  phonegap/repos/community-testing-i686/phonegap.install
(from rev 263113, phonegap/trunk/phonegap.install)
  phonegap/repos/community-testing-x86_64/
  phonegap/repos/community-testing-x86_64/PKGBUILD
(from rev 263113, phonegap/trunk/PKGBUILD)
  phonegap/repos/community-testing-x86_64/phonegap.install
(from rev 263113, phonegap/trunk/phonegap.install)

---+
 community-testing-i686/PKGBUILD   |   59 
 community-testing-i686/phonegap.install   |9 
 community-testing-x86_64/PKGBUILD |   59 
 community-testing-x86_64/phonegap.install |9 
 4 files changed, 136 insertions(+)

Copied: phonegap/repos/community-testing-i686/PKGBUILD (from rev 263113, 
phonegap/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-17 00:30:39 UTC (rev 263114)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=phonegap
+pkgver=7.1.0
+pkgrel=1
+pkgdesc="PhoneGap command-line interface and node.js library"
+arch=('i686' 'x86_64')
+url="https://github.com/phonegap/phonegap-cli;
+license=('Apache')
+depends=('npm' 'acorn' 'semver' 'cordova' 'browserify')
+makedepends=('python2')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('92dcc399414322c35e77c3d2c7cde4fcaca6be4db14c6b3d77ee8dddf047c24804e542c251a7c6b624ca6ed1f9194b0cbb51a1264a53b5bffadb6b3187ffad5c')
+
+package() {
+  PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn semver cordova npm browserify; do
+rm -r $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/syntax-error/node_modules
+  for dep in acorn; do
+rm -r $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/npm-package-arg/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/normalize-package-data/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/init-package-json/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver-diff/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: phonegap/repos/community-testing-i686/phonegap.install (from rev 
263113, phonegap/trunk/phonegap.install)
===
--- community-testing-i686/phonegap.install (rev 0)
+++ community-testing-i686/phonegap.install 2017-10-17 00:30:39 UTC (rev 
263114)
@@ -0,0 +1,9 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+  chmod -R g-w,o-w /usr/lib/node_modules/phonegap
+}
+
+post_upgrade() {
+  post_install
+}

Copied: phonegap/repos/community-testing-x86_64/PKGBUILD (from rev 263113, 
phonegap/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-10-17 00:30:39 UTC (rev 263114)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=phonegap
+pkgver=7.1.0
+pkgrel=1
+pkgdesc="PhoneGap command-line interface and node.js library"
+arch=('i686' 'x86_64')
+url="https://github.com/phonegap/phonegap-cli;
+license=('Apache')
+depends=('npm' 'acorn' 'semver' 'cordova' 'browserify')
+makedepends=('python2')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('92dcc399414322c35e77c3d2c7cde4fcaca6be4db14c6b3d77ee8dddf047c24804e542c251a7c6b624ca6ed1f9194b0cbb51a1264a53b5bffadb6b3187ffad5c')
+
+package() {
+  PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn semver cordova npm browserify; do
+rm -r $dep;
+  done
+
+  cd 

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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:29:55
  Author: felixonmars
Revision: 263113

upgpkg: phonegap 7.1.0-1

Modified:
  phonegap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-17 00:13:59 UTC (rev 263112)
+++ PKGBUILD2017-10-17 00:29:55 UTC (rev 263113)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=phonegap
-pkgver=7.0.1
+pkgver=7.1.0
 pkgrel=1
 pkgdesc="PhoneGap command-line interface and node.js library"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('6638ce7a65638587cf3a39504469df17f44bd8d2b47ed7fc31fb7864313568f4f5ce6abacdf48d9fd82a9397727efb56dce6841a9a3885b3e86b651c75816c0d')
+sha512sums=('92dcc399414322c35e77c3d2c7cde4fcaca6be4db14c6b3d77ee8dddf047c24804e542c251a7c6b624ca6ed1f9194b0cbb51a1264a53b5bffadb6b3187ffad5c')
 
 package() {
   PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
@@ -23,43 +23,36 @@
   cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
   for dep in acorn semver cordova npm browserify; do
 rm -r $dep;
-npm link $dep;
   done
 
   cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/syntax-error/node_modules
   for dep in acorn; do
 rm -r $dep;
-npm link $dep;
   done
 
   cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules
   for dep in semver; do
 rm -r $dep;
-npm link $dep;
   done
 
   cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/npm-package-arg/node_modules
   for dep in semver; do
 rm -r $dep;
-npm link $dep;
   done
 
   cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/normalize-package-data/node_modules
   for dep in semver; do
 rm -r $dep;
-npm link $dep;
   done
 
   cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/init-package-json/node_modules
   for dep in semver; do
 rm -r $dep;
-npm link $dep;
   done
 
   cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver-diff/node_modules
   for dep in semver; do
 rm -r $dep;
-npm link $dep;
   done
 }
 


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:13:59
  Author: felixonmars
Revision: 263112

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-17 00:13:29 UTC (rev 263111)
+++ PKGBUILD2017-10-17 00:13:59 UTC (rev 263112)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jeremy "Ichimonji10" Audet 
-# Contributor: dnuux 
-
-pkgbase=python-faker
-pkgname=(python-faker python2-faker)
-pkgver=0.8.5
-pkgrel=1
-pkgdesc='Faker generates fake data for you.'
-arch=('any')
-url='http://www.joke2k.net/faker/'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
- 'python-unidecode' 'python2-unidecode')
-checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
-  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
-  'python2-ipaddress')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('8a7548959ed2d10f1322e65c1b2e2e2b5e9743d4b5e71acaae6699810ff97d8e433e812ed0c06ee3e321f919da6a5e8920bee5195317f87cddd461e2819c2047')
-
-prepare() {
-  cp -a faker-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-faker() {
-  depends=('python-setuptools' 'python-dateutil' 'python-unidecode')
-  provides=("python-fake-factory=$pkgver")
-  conflicts=('python-fake-factory')
-  replaces=('python-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-package_python2-faker() {
-  depends=('python2-setuptools' 'python2-dateutil' 'python2-unidecode' 
'python2-ipaddress')
-  provides=("python2-fake-factory=$pkgver")
-  conflicts=('python2-fake-factory')
-  replaces=('python2-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/faker{,2}
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-faker/repos/community-any/PKGBUILD (from rev 263111, 
python-faker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-17 00:13:59 UTC (rev 263112)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jeremy "Ichimonji10" Audet 
+# Contributor: dnuux 
+
+pkgbase=python-faker
+pkgname=(python-faker python2-faker)
+pkgver=0.8.6
+pkgrel=1
+pkgdesc='Faker generates fake data for you.'
+arch=('any')
+url='http://www.joke2k.net/faker/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
+ 'python-unidecode' 'python2-unidecode')
+checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
+  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
+  'python2-ipaddress')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
+sha512sums=('00dc032f922c9e715a5cd3621d5bb45fb975a07a38e7b60394484c432d304da6b044c08f25b5fbcef0377ae7f85a922886577c0e864020eca5ce6f1b634d20ce')
+
+prepare() {
+  cp -a faker-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-faker() {
+  depends=('python-setuptools' 'python-dateutil' 'python-unidecode')
+  provides=("python-fake-factory=$pkgver")
+  conflicts=('python-fake-factory')
+  replaces=('python-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-faker() {
+  depends=('python2-setuptools' 'python2-dateutil' 'python2-unidecode' 
'python2-ipaddress')
+  provides=("python2-fake-factory=$pkgver")
+  conflicts=('python2-fake-factory')
+  replaces=('python2-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" 

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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:13:29
  Author: felixonmars
Revision: 263111

upgpkg: python-faker 0.8.6-1

Modified:
  python-faker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-17 00:12:01 UTC (rev 263110)
+++ PKGBUILD2017-10-17 00:13:29 UTC (rev 263111)
@@ -5,7 +5,7 @@
 
 pkgbase=python-faker
 pkgname=(python-faker python2-faker)
-pkgver=0.8.5
+pkgver=0.8.6
 pkgrel=1
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
@@ -17,7 +17,7 @@
   'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
   'python2-ipaddress')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('8a7548959ed2d10f1322e65c1b2e2e2b5e9743d4b5e71acaae6699810ff97d8e433e812ed0c06ee3e321f919da6a5e8920bee5195317f87cddd461e2819c2047')
+sha512sums=('00dc032f922c9e715a5cd3621d5bb45fb975a07a38e7b60394484c432d304da6b044c08f25b5fbcef0377ae7f85a922886577c0e864020eca5ce6f1b634d20ce')
 
 prepare() {
   cp -a faker-$pkgver{,-py2}


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:12:01
  Author: felixonmars
Revision: 263110

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

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

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

Copied: happy/repos/community-testing-i686/PKGBUILD (from rev 263109, 
happy/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-17 00:12:01 UTC (rev 263110)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: simo 
+# Contributor: Vesa Kaihlavirta 
+
+pkgname=happy
+pkgver=1.19.8
+pkgrel=1
+pkgdesc="The Parser Generator for Haskell"
+url="https://hackage.haskell.org/package/happy;
+arch=('i686' 'x86_64')
+license=("custom:BSD2")
+depends=('ghc-libs' 'haskell-mtl')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9c55ce19fbc433128550bf3736bbd886feb91512d52131d5b59c486474e223efaddc553569f96cea2275e3fe47c2042858076de9689f1a328dce0d0276bb7c8b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--ghc-option='-dynload=deploy' --prefix=/usr --datasubdir="$pkgname"
+  runhaskell Setup build
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  rm -r "$pkgdir/usr/share/doc"
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: happy/repos/community-testing-x86_64/PKGBUILD (from rev 263109, 
happy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-10-17 00:12:01 UTC (rev 263110)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: simo 
+# Contributor: Vesa Kaihlavirta 
+
+pkgname=happy
+pkgver=1.19.8
+pkgrel=1
+pkgdesc="The Parser Generator for Haskell"
+url="https://hackage.haskell.org/package/happy;
+arch=('i686' 'x86_64')
+license=("custom:BSD2")
+depends=('ghc-libs' 'haskell-mtl')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9c55ce19fbc433128550bf3736bbd886feb91512d52131d5b59c486474e223efaddc553569f96cea2275e3fe47c2042858076de9689f1a328dce0d0276bb7c8b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--ghc-option='-dynload=deploy' --prefix=/usr --datasubdir="$pkgname"
+  runhaskell Setup build
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  rm -r "$pkgdir/usr/share/doc"
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-10-16 Thread Felix Yan
Date: Tuesday, October 17, 2017 @ 00:11:25
  Author: felixonmars
Revision: 263109

upgpkg: happy 1.19.8-1

Modified:
  happy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-17 00:07:27 UTC (rev 263108)
+++ PKGBUILD2017-10-17 00:11:25 UTC (rev 263109)
@@ -5,8 +5,8 @@
 # Contributor: Vesa Kaihlavirta 
 
 pkgname=happy
-pkgver=1.19.5
-pkgrel=10
+pkgver=1.19.8
+pkgrel=1
 pkgdesc="The Parser Generator for Haskell"
 url="https://hackage.haskell.org/package/happy;
 arch=('i686' 'x86_64')
@@ -14,12 +14,12 @@
 depends=('ghc-libs' 'haskell-mtl')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('7b43ef5236bdfba82bbddedb7edc7a8094990a389c0d3f5f848cb6208c3577e7b394cb290e51a2b2eebca25c97978a85ee932e74bbf6a792e261e5b5bff25a2b')
+sha512sums=('9c55ce19fbc433128550bf3736bbd886feb91512d52131d5b59c486474e223efaddc553569f96cea2275e3fe47c2042858076de9689f1a328dce0d0276bb7c8b')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
-  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --ghc-option='-dynload=deploy' --prefix=/usr --datasubdir="$pkgname"
   runhaskell Setup build
 }


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

2017-10-16 Thread Anatol Pomozov
Date: Tuesday, October 17, 2017 @ 00:07:27
  Author: anatolik
Revision: 263108

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

Added:
  rethinkdb/repos/community-staging-i686/
  rethinkdb/repos/community-staging-i686/PKGBUILD
(from rev 263107, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-i686/rethinkdb-tmpfile.conf
(from rev 263107, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-i686/rethinkdb.install
(from rev 263107, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-i686/rethinkdb.service
(from rev 263107, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-staging-i686/rethinkdb.sysusers
(from rev 263107, rethinkdb/trunk/rethinkdb.sysusers)
  rethinkdb/repos/community-staging-x86_64/
  rethinkdb/repos/community-staging-x86_64/PKGBUILD
(from rev 263107, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-x86_64/rethinkdb-tmpfile.conf
(from rev 263107, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.install
(from rev 263107, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.service
(from rev 263107, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.sysusers
(from rev 263107, rethinkdb/trunk/rethinkdb.sysusers)

-+
 community-staging-i686/PKGBUILD |   81 ++
 community-staging-i686/rethinkdb-tmpfile.conf   |1 
 community-staging-i686/rethinkdb.install|   15 
 community-staging-i686/rethinkdb.service|   12 +++
 community-staging-i686/rethinkdb.sysusers   |1 
 community-staging-x86_64/PKGBUILD   |   81 ++
 community-staging-x86_64/rethinkdb-tmpfile.conf |1 
 community-staging-x86_64/rethinkdb.install  |   15 
 community-staging-x86_64/rethinkdb.service  |   12 +++
 community-staging-x86_64/rethinkdb.sysusers |1 
 10 files changed, 220 insertions(+)

Copied: rethinkdb/repos/community-staging-i686/PKGBUILD (from rev 263107, 
rethinkdb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-10-17 00:07:27 UTC (rev 263108)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.3.6
+_tag=rethinkdb-$pkgver
+pkgrel=2
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='https://www.rethinkdb.com/'
+license=(APACHE)
+depends=(protobuf ncurses curl openssl-1.0)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  https://download.rethinkdb.com/dist/$_tag.tgz
+  https://download.rethinkdb.com/dist/$_tag.tgz.asc
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+  rethinkdb.sysusers
+  
mksnapshot_crash_fix.patch::https://github.com/rethinkdb/rethinkdb/commit/871bd3705a1f29c4ab07a096d562a4b06231a97c.patch
+)
+sha512sums=('653177750f7439fa1d61a121e488d578be1eab90f87c7d17ad52b9793d8543f22bbe98f8d501c2ab2d7048c65118096430fe7bde945d87c7a3228905af801af2'
+'SKIP'
+
'5996f72b8e08aac80285373e8e1b5a664177e9d0e8d13e5638c6b821fe5b7a0368001fbfa9ef3f6709dabf0616abcabea40adc4808d176572f8f99b7a3255bae'
+
'95e352cb941ea37b1dc3ddf4c8eaf0c8ef80b32e7a3cccf0e6fdefb92f0af83cfa47e3e6354d0397d7dc63c3c3cd87a8cb600f7b970c20fa6a65b832be219650'
+
'974eda083410f400766833588e775c6f054fa16fd31ca80328dcacd985969db2aadfe71ad6cb91ffac89992de7efe94d90f0b3e960e9ccf4858ac962df663236'
+
'f49bc92ecdd6d93bf89bd816268569f839daf0b289c44b7bede195b26ef53c2efd4ab6fb03ef0086d0a9e347210cd385755eff7e44b50d304a400d513addd5bf')
+validpgpkeys=('3B87619DF812A63A8C1005C30742918E5C8DA04A') # RethinkDB 
Packaging 
+
+prepare() {
+  cd $_tag
+
+  # fix for https://github.com/rethinkdb/rethinkdb/issues/5757
+  patch -p1 < ../mksnapshot_crash_fix.patch
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  CXX=g++-5 ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
CXXFLAGS="$CXXFLAGS -I/usr/include/openssl-1.0" LDFLAGS="$LDFLAGS 
-L/usr/lib/openssl-1.0"
+  make ALLOW_WARNINGS=1
+}
+

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

2017-10-16 Thread Anatol Pomozov
Date: Tuesday, October 17, 2017 @ 00:06:01
  Author: anatolik
Revision: 263107

protobuf 3.4.0 rebuild

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 20:58:04 UTC (rev 263106)
+++ PKGBUILD2017-10-17 00:06:01 UTC (rev 263107)
@@ -6,7 +6,7 @@
 pkgname=rethinkdb
 pkgver=2.3.6
 _tag=rethinkdb-$pkgver
-pkgrel=1
+pkgrel=2
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
 url='https://www.rethinkdb.com/'


[arch-commits] Commit in filesystem/repos (80 files)

2017-10-16 Thread Sébastien Luttringer
Date: Monday, October 16, 2017 @ 23:01:32
  Author: seblu
Revision: 308073

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

Added:
  filesystem/repos/testing-i686/PKGBUILD
(from rev 308072, filesystem/trunk/PKGBUILD)
  filesystem/repos/testing-i686/crypttab
(from rev 308072, filesystem/trunk/crypttab)
  filesystem/repos/testing-i686/env-generator
(from rev 308072, filesystem/trunk/env-generator)
  filesystem/repos/testing-i686/fstab
(from rev 308072, filesystem/trunk/fstab)
  filesystem/repos/testing-i686/host.conf
(from rev 308072, filesystem/trunk/host.conf)
  filesystem/repos/testing-i686/hosts
(from rev 308072, filesystem/trunk/hosts)
  filesystem/repos/testing-i686/issue
(from rev 308072, filesystem/trunk/issue)
  filesystem/repos/testing-i686/ld.so.conf
(from rev 308072, filesystem/trunk/ld.so.conf)
  filesystem/repos/testing-i686/locale.sh
(from rev 308072, filesystem/trunk/locale.sh)
  filesystem/repos/testing-i686/motd
(from rev 308072, filesystem/trunk/motd)
  filesystem/repos/testing-i686/nsswitch.conf
(from rev 308072, filesystem/trunk/nsswitch.conf)
  filesystem/repos/testing-i686/os-release
(from rev 308072, filesystem/trunk/os-release)
  filesystem/repos/testing-i686/profile
(from rev 308072, filesystem/trunk/profile)
  filesystem/repos/testing-i686/resolv.conf
(from rev 308072, filesystem/trunk/resolv.conf)
  filesystem/repos/testing-i686/securetty
(from rev 308072, filesystem/trunk/securetty)
  filesystem/repos/testing-i686/shells
(from rev 308072, filesystem/trunk/shells)
  filesystem/repos/testing-i686/sysusers
(from rev 308072, filesystem/trunk/sysusers)
  filesystem/repos/testing-i686/tmpfiles
(from rev 308072, filesystem/trunk/tmpfiles)
  filesystem/repos/testing-x86_64/PKGBUILD
(from rev 308072, filesystem/trunk/PKGBUILD)
  filesystem/repos/testing-x86_64/crypttab
(from rev 308072, filesystem/trunk/crypttab)
  filesystem/repos/testing-x86_64/env-generator
(from rev 308072, filesystem/trunk/env-generator)
  filesystem/repos/testing-x86_64/fstab
(from rev 308072, filesystem/trunk/fstab)
  filesystem/repos/testing-x86_64/host.conf
(from rev 308072, filesystem/trunk/host.conf)
  filesystem/repos/testing-x86_64/hosts
(from rev 308072, filesystem/trunk/hosts)
  filesystem/repos/testing-x86_64/issue
(from rev 308072, filesystem/trunk/issue)
  filesystem/repos/testing-x86_64/ld.so.conf
(from rev 308072, filesystem/trunk/ld.so.conf)
  filesystem/repos/testing-x86_64/locale.sh
(from rev 308072, filesystem/trunk/locale.sh)
  filesystem/repos/testing-x86_64/motd
(from rev 308072, filesystem/trunk/motd)
  filesystem/repos/testing-x86_64/nsswitch.conf
(from rev 308072, filesystem/trunk/nsswitch.conf)
  filesystem/repos/testing-x86_64/os-release
(from rev 308072, filesystem/trunk/os-release)
  filesystem/repos/testing-x86_64/profile
(from rev 308072, filesystem/trunk/profile)
  filesystem/repos/testing-x86_64/resolv.conf
(from rev 308072, filesystem/trunk/resolv.conf)
  filesystem/repos/testing-x86_64/securetty
(from rev 308072, filesystem/trunk/securetty)
  filesystem/repos/testing-x86_64/shells
(from rev 308072, filesystem/trunk/shells)
  filesystem/repos/testing-x86_64/sysusers
(from rev 308072, filesystem/trunk/sysusers)
  filesystem/repos/testing-x86_64/tmpfiles
(from rev 308072, filesystem/trunk/tmpfiles)
Deleted:
  filesystem/repos/testing-i686/PKGBUILD
  filesystem/repos/testing-i686/crypttab
  filesystem/repos/testing-i686/env-generator
  filesystem/repos/testing-i686/fstab
  filesystem/repos/testing-i686/group
  filesystem/repos/testing-i686/gshadow
  filesystem/repos/testing-i686/host.conf
  filesystem/repos/testing-i686/hosts
  filesystem/repos/testing-i686/issue
  filesystem/repos/testing-i686/ld.so.conf
  filesystem/repos/testing-i686/locale.sh
  filesystem/repos/testing-i686/motd
  filesystem/repos/testing-i686/nsswitch.conf
  filesystem/repos/testing-i686/os-release
  filesystem/repos/testing-i686/passwd
  filesystem/repos/testing-i686/profile
  filesystem/repos/testing-i686/resolv.conf
  filesystem/repos/testing-i686/securetty
  filesystem/repos/testing-i686/shadow
  filesystem/repos/testing-i686/shells
  filesystem/repos/testing-i686/sysusers
  filesystem/repos/testing-i686/tmpfiles
  filesystem/repos/testing-x86_64/PKGBUILD
  filesystem/repos/testing-x86_64/crypttab
  filesystem/repos/testing-x86_64/env-generator
  filesystem/repos/testing-x86_64/fstab
  filesystem/repos/testing-x86_64/group
  filesystem/repos/testing-x86_64/gshadow
  filesystem/repos/testing-x86_64/host.conf
  filesystem/repos/testing-x86_64/hosts
  filesystem/repos/testing-x86_64/issue
  filesystem/repos/testing-x86_64/ld.so.conf
  filesystem/repos/testing-x86_64/locale.sh
  filesystem/repos/testing-x86_64/motd
  filesystem/repos/testing-x86_64/nsswitch.conf
  filesystem/repos/testing-x86_64/os-release
  filesystem/repos/testing-x86_64/passwd
  

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

2017-10-16 Thread Sébastien Luttringer
Date: Monday, October 16, 2017 @ 22:59:28
  Author: seblu
Revision: 308072

upgpkg: filesystem 2017.10-1

- remove lp (in systemd)
- empty passwd,gpasswd,group,gpasswd (need systemd >v235)

Modified:
  filesystem/trunk/PKGBUILD
  filesystem/trunk/sysusers
Deleted:
  filesystem/trunk/group
  filesystem/trunk/gshadow
  filesystem/trunk/passwd
  filesystem/trunk/shadow

--+
 PKGBUILD |   27 ---
 group|2 --
 gshadow  |2 --
 passwd   |2 --
 shadow   |2 --
 sysusers |2 --
 6 files changed, 12 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 19:17:27 UTC (rev 308071)
+++ PKGBUILD2017-10-16 22:59:28 UTC (rev 308072)
@@ -3,8 +3,8 @@
 # Contributor: Tom Gundersen 
 
 pkgname=filesystem
-pkgver=2017.09
-pkgrel=4
+pkgver=2017.10
+pkgrel=1
 pkgdesc='Base Arch Linux files'
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,15 +15,12 @@
 'etc/hosts' 'etc/issue' 'etc/ld.so.conf' 'etc/motd' 'etc/nsswitch.conf'
 'etc/passwd' 'etc/profile' 'etc/resolv.conf' 'etc/securetty'
 'etc/shadow' 'etc/shells')
-source=('crypttab' 'env-generator' 'fstab' 'group' 'gshadow' 'host.conf' 
'hosts'
-'issue' 'ld.so.conf' 'locale.sh' 'motd' 'nsswitch.conf' 'os-release'
-'passwd' 'profile' 'resolv.conf' 'securetty' 'shadow' 'shells'
-'sysusers' 'tmpfiles')
+source=('crypttab' 'env-generator' 'fstab' 'host.conf' 'hosts' 'issue'
+'ld.so.conf' 'locale.sh' 'motd' 'nsswitch.conf' 'os-release' 'profile'
+'resolv.conf' 'securetty' 'shells' 'sysusers' 'tmpfiles')
 md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
  '2b0344e9639f35f3c0d5637a23556089'
  'e33f6dfdd61978fcb3ddf1431286e05a'
- '803da7c3c9df9b47a78b52fe9ddf02b1'
- '822b75f0faca19a9c4cee334c63ab1b3'
  '7d119a9cce152aa182fb3392ddeecea7'
  'a1315ea3e2b64d197b6efaf9c14ff778'
  '7813c481156f6b280a3ba91fc6236368'
@@ -32,13 +29,11 @@
  'd41d8cd98f00b204e9800998ecf8427e'
  '44851ecc062ba34a4c024b6f3246c48f'
  '0a0fbb8e64faabb40023bd180d7190a1'
- 'cffabcce564fa9e47981da780059a621'
  '13feaea89d404729ad2f7cf0bcc41d85'
  '0ee015fad07732676d9488ae498eed41'
  'f04bcb2803afc4dcb95670fe87343b4d'
- '7cc0d3e777ccb03f91e979c3aab296a0'
  'a78cd8d7f8240a8448edee82f503c34e'
- '9f56bb6248654d732ec4843d67e37a68'
+ 'af7832eabaac9804c22f1f2b53816a49'
  '0267a3a463f35eec8a31f40a720dfd86')
 
 package() {
@@ -58,14 +53,16 @@
 
   # setup /etc and /usr/share/factory/etc
   install -d etc/{ld.so.conf.d,skel,profile.d} usr/share/factory/etc
-  for f in fstab group host.conf hosts issue ld.so.conf motd nsswitch.conf 
passwd resolv.conf securetty shells profile; do
+  for f in fstab host.conf hosts issue ld.so.conf motd nsswitch.conf crypttab \
+   resolv.conf securetty shells profile; do
 install -m644 "$srcdir"/$f etc/
 install -m644 "$srcdir"/$f usr/share/factory/etc/
   done
+  chmod 600 {usr/share/factory/,}etc/crypttab
   ln -s ../proc/self/mounts etc/mtab
-  for f in gshadow shadow crypttab; do
-install -m600 "$srcdir"/$f etc/
-install -m600 "$srcdir"/$f usr/share/factory/etc/
+  for f in passwd group gshadow shadow; do
+install -Dm600 /dev/null etc/$f
+install -Dm600 /dev/null usr/share/factory/etc/$f
   done
   touch etc/arch-release
   install -m755 "$srcdir"/locale.sh etc/profile.d/locale.sh

Deleted: group
===
--- group   2017-10-16 19:17:27 UTC (rev 308071)
+++ group   2017-10-16 22:59:28 UTC (rev 308072)
@@ -1,2 +0,0 @@
-root:x:0:root
-nobody:x:99:

Deleted: gshadow
===
--- gshadow 2017-10-16 19:17:27 UTC (rev 308071)
+++ gshadow 2017-10-16 22:59:28 UTC (rev 308072)
@@ -1,2 +0,0 @@
-root:::root
-nobody:::

Deleted: passwd
===
--- passwd  2017-10-16 19:17:27 UTC (rev 308071)
+++ passwd  2017-10-16 22:59:28 UTC (rev 308072)
@@ -1,2 +0,0 @@
-root:x:0:0::/root:/bin/bash
-nobody:x:99:99::/:/usr/bin/nologin

Deleted: shadow
===
--- shadow  2017-10-16 19:17:27 UTC (rev 308071)
+++ shadow  2017-10-16 22:59:28 UTC (rev 308072)
@@ -1,2 +0,0 @@
-root::14871::
-nobody:x:14871::

Modified: sysusers
===
--- sysusers2017-10-16 19:17:27 UTC (rev 308071)
+++ sysusers2017-10-16 22:59:28 UTC (rev 308072)
@@ -1,7 +1,6 @@
 # default arch groups
 # groups first, because we have user/group id mismatch on ftp and mail
 g sys 3 - -
-g lp 7 - -
 g mem 8 - -
 g ftp 11 - -
 g mail 12 - -
@@ -27,4 +26,3 @@
 m bin sys
 m daemon adm
 m daemon bin
-m daemon lp


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

2017-10-16 Thread Nicola Squartini
Date: Monday, October 16, 2017 @ 20:58:04
  Author: tensor5
Revision: 263106

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

Added:
  atom/repos/community-i686/PKGBUILD
(from rev 263105, atom/trunk/PKGBUILD)
  atom/repos/community-i686/dugite-use-system-git.patch
(from rev 263105, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-i686/fix-atom-sh.patch
(from rev 263105, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-i686/fix-license-path.patch
(from rev 263105, atom/trunk/fix-license-path.patch)
  atom/repos/community-i686/fix-restart.patch
(from rev 263105, atom/trunk/fix-restart.patch)
  atom/repos/community-i686/symbols-view-use-system-ctags.patch
(from rev 263105, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-i686/use-system-apm.patch
(from rev 263105, atom/trunk/use-system-apm.patch)
  atom/repos/community-i686/use-system-electron.patch
(from rev 263105, atom/trunk/use-system-electron.patch)
  atom/repos/community-x86_64/PKGBUILD
(from rev 263105, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 263105, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 263105, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 263105, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 263105, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 263105, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 263105, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 263105, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-i686/PKGBUILD
  atom/repos/community-i686/dugite-use-system-git.patch
  atom/repos/community-i686/fix-atom-sh.patch
  atom/repos/community-i686/fix-license-path.patch
  atom/repos/community-i686/fix-restart.patch
  atom/repos/community-i686/symbols-view-use-system-ctags.patch
  atom/repos/community-i686/use-system-apm.patch
  atom/repos/community-i686/use-system-electron.patch
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

--+
 /PKGBUILD|  216 +
 /dugite-use-system-git.patch |   48 ++
 /fix-atom-sh.patch   |  230 +
 /fix-license-path.patch  |   44 +
 /fix-restart.patch   |   22 
 /symbols-view-use-system-ctags.patch |   22 
 /use-system-apm.patch|   64 ++
 /use-system-electron.patch   |  392 +
 community-i686/PKGBUILD  |  108 
 community-i686/dugite-use-system-git.patch   |   24 -
 community-i686/fix-atom-sh.patch |  115 
 community-i686/fix-license-path.patch|   22 
 community-i686/fix-restart.patch |   11 
 community-i686/symbols-view-use-system-ctags.patch   |   11 
 community-i686/use-system-apm.patch  |   31 -
 community-i686/use-system-electron.patch |  156 --
 community-x86_64/PKGBUILD|  108 
 community-x86_64/dugite-use-system-git.patch |   24 -
 community-x86_64/fix-atom-sh.patch   |  115 
 community-x86_64/fix-license-path.patch  |   22 
 community-x86_64/fix-restart.patch   |   11 
 community-x86_64/symbols-view-use-system-ctags.patch |   11 
 community-x86_64/use-system-apm.patch|   31 -
 community-x86_64/use-system-electron.patch   |  156 --
 24 files changed, 1038 insertions(+), 956 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 20:57:22 UTC (rev 263105)
+++ community-i686/PKGBUILD 2017-10-16 20:58:04 UTC (rev 263106)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.20.1
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('i686' 'x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-  

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

2017-10-16 Thread Nicola Squartini
Date: Monday, October 16, 2017 @ 20:57:22
  Author: tensor5
Revision: 263105

upgpkg: atom 1.21.1-1

Modified:
  atom/trunk/PKGBUILD
  atom/trunk/symbols-view-use-system-ctags.patch
  atom/trunk/use-system-apm.patch
  atom/trunk/use-system-electron.patch

-+
 PKGBUILD|   10 ++---
 symbols-view-use-system-ctags.patch |2 -
 use-system-apm.patch|   29 +++---
 use-system-electron.patch   |   66 +++---
 4 files changed, 74 insertions(+), 33 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 19:58:38 UTC (rev 263104)
+++ PKGBUILD2017-10-16 20:57:22 UTC (rev 263105)
@@ -2,7 +2,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=atom
-pkgver=1.20.1
+pkgver=1.21.1
 pkgrel=1
 pkgdesc='A hackable text editor for the 21st Century'
 arch=('i686' 'x86_64')
@@ -22,14 +22,14 @@
 'symbols-view-use-system-ctags.patch'
 'use-system-apm.patch'
 'use-system-electron.patch')
-sha256sums=('0577ff9df069f8c290fb73b387ea88f8af1fae8b4a40c5ad7cf97af824584b11'
+sha256sums=('537cbb6be91d3bd2a7b6372c14b95b8ae07ee8bc06d608bcab8a3dc93a6cc88d'
 'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
 '7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
 '951bbc248c9ae4ef3ef712e0caeb728a8577b12e4593870569de15e570a71c4c'
 '646f81b0621a86eff3bb1f229eeb92b2f33bac41b3324424a6de06a780a8a22d'
-'9bed08e8bbb96ecb0063a4603478f5f4ea8409a45dc565b2df00839fd3cd2c85'
-'bb1469f02cef5c1363d9add8eb7af6eab503023d5a56f76dc868b70be1b77e01'
-'f5aa3efafe796bd07b8221746a4fe693dcefbe5861a4e4cf49f7679516422123')
+'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
+'c120739911ce6a455a642c97d4d7de0956abee4d94bfc338f8a13f771a2d381c'
+'13ee051e304cb8e612d5e910dc9a3e73b5d993df9afce2f2d22d2d24a9e938c7')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"

Modified: symbols-view-use-system-ctags.patch
===
--- symbols-view-use-system-ctags.patch 2017-10-16 19:58:38 UTC (rev 263104)
+++ symbols-view-use-system-ctags.patch 2017-10-16 20:57:22 UTC (rev 263105)
@@ -1,6 +1,6 @@
 --- a/lib/tag-generator.js
 +++ b/lib/tag-generator.js
-@@ -81,7 +81,7 @@ export default class TagGenerator {
+@@ -79,7 +79,7 @@ export default class TagGenerator {
generate() {
  let tags = {};
  const packageRoot = this.getPackageRoot();

Modified: use-system-apm.patch
===
--- use-system-apm.patch2017-10-16 19:58:38 UTC (rev 263104)
+++ use-system-apm.patch2017-10-16 20:57:22 UTC (rev 263105)
@@ -13,19 +13,20 @@
  ['--loglevel=error', 'install'],
  {env: installEnv, cwd: packagePath, stdio: 'inherit'}
)
 a/src/package-manager.coffee
-+++ b/src/package-manager.coffee
-@@ -147,12 +147,7 @@
- return configPath if configPath
- return @apmPath if @apmPath?
+--- a/src/package-manager.js
 b/src/package-manager.js
+@@ -165,13 +165,7 @@
+   return configPath || this.apmPath
+ }
  
--commandName = 'apm'
--commandName += '.cmd' if process.platform is 'win32'
--apmRoot = path.join(process.resourcesPath, 'app', 'apm')
--@apmPath = path.join(apmRoot, 'bin', commandName)
--unless fs.isFileSync(@apmPath)
--  @apmPath = path.join(apmRoot, 'node_modules', 'atom-package-manager', 
'bin', commandName)
-+@apmPath = '/usr/lib/node_modules/atom-package-manager/bin/apm'
- @apmPath
+-const commandName = process.platform === 'win32' ? 'apm.cmd' : 'apm'
+-const apmRoot = path.join(process.resourcesPath, 'app', 'apm')
+-this.apmPath = path.join(apmRoot, 'bin', commandName)
+-if (!fs.isFileSync(this.apmPath)) {
+-  this.apmPath = path.join(apmRoot, 'node_modules', 
'atom-package-manager', 'bin', commandName)
+-}
+-return this.apmPath
++return '/usr/lib/node_modules/atom-package-manager/bin/apm'
+   }
  
-   # Public: Get the paths being used to look for packages.
+   // Public: Get the paths being used to look for packages.

Modified: use-system-electron.patch
===
--- use-system-electron.patch   2017-10-16 19:58:38 UTC (rev 263104)
+++ use-system-electron.patch   2017-10-16 20:57:22 UTC (rev 263105)
@@ -4,7 +4,7 @@
  "url": "https://github.com/atom/atom/issues;
},
"license": "MIT",
--  "electronVersion": "1.6.9",
+-  "electronVersion": "1.6.15",
"dependencies": {
  "@atom/source-map-support": "^0.3.4",
  "async": "0.2.6",
@@ -116,11 +116,31 @@
  "csslint": "1.0.2",
  "donna": "1.0.16",
 -"electron-chromedriver": "~1.6",
--"electron-link": "0.1.0",
+-

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

2017-10-16 Thread Jelle van der Waa
Date: Monday, October 16, 2017 @ 19:58:38
  Author: jelle
Revision: 263104

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

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

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

Copied: arcus/repos/community-staging-i686/PKGBUILD (from rev 263103, 
arcus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-10-16 19:58:38 UTC (rev 263104)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=arcus
+pkgver=2.7.0
+pkgrel=3
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus;
+arch=('x86_64' 'i686')
+license=('AGPL')
+makedepends=('cmake')
+depends=('python' 'protobuf' 'python-sip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
+md5sums=('212448a2f278a080a3430626e26526c2')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: arcus/repos/community-staging-x86_64/PKGBUILD (from rev 263103, 
arcus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-10-16 19:58:38 UTC (rev 263104)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=arcus
+pkgver=2.7.0
+pkgrel=3
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus;
+arch=('x86_64' 'i686')
+license=('AGPL')
+makedepends=('cmake')
+depends=('python' 'protobuf' 'python-sip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
+md5sums=('212448a2f278a080a3430626e26526c2')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-10-16 Thread Jelle van der Waa
Date: Monday, October 16, 2017 @ 19:58:27
  Author: jelle
Revision: 263103

upgpkg: arcus 2.7.0-3

protobuf 3.4.0 rebuild

Modified:
  arcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 19:46:16 UTC (rev 263102)
+++ PKGBUILD2017-10-16 19:58:27 UTC (rev 263103)
@@ -3,7 +3,7 @@
 
 pkgname=arcus
 pkgver=2.7.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Communication library between internal components for Ultimaker 
software"
 url="https://github.com/Ultimaker/libArcus;
 arch=('x86_64' 'i686')


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

2017-10-16 Thread Johannes Löthberg
Date: Monday, October 16, 2017 @ 19:46:16
  Author: demize
Revision: 263102

db-move: moved rust from [community-testing] to [community] (i686, x86_64)

Added:
  
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 263101, 
rust/repos/community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-i686/PKGBUILD
(from rev 263101, rust/repos/community-testing-i686/PKGBUILD)
  rust/repos/community-i686/bootstrap-config.toml
(from rev 263101, rust/repos/community-testing-i686/bootstrap-config.toml)
  
rust/repos/community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 263101, 
rust/repos/community-testing-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-x86_64/PKGBUILD
(from rev 263101, rust/repos/community-testing-x86_64/PKGBUILD)
  rust/repos/community-x86_64/bootstrap-config.toml
(from rev 263101, rust/repos/community-testing-x86_64/bootstrap-config.toml)
Deleted:
  
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/bootstrap-config.toml
  rust/repos/community-testing-i686/
  rust/repos/community-testing-x86_64/
  
rust/repos/community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/bootstrap-config.toml

---+
 /0001-librustc_llvm-build-Force-link-against-libffi.patch |   
64 
 /PKGBUILD |  
156 ++
 /bootstrap-config.toml|   
54 +++
 community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch   |   
32 --
 community-i686/PKGBUILD   |   
78 -
 community-i686/bootstrap-config.toml  |   
27 -
 community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch |   
32 --
 community-x86_64/PKGBUILD |   
78 -
 community-x86_64/bootstrap-config.toml|   
27 -
 9 files changed, 274 insertions(+), 274 deletions(-)

Deleted: community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
===
--- community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-10-16 19:14:58 UTC (rev 263101)
+++ community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-10-16 19:46:16 UTC (rev 263102)
@@ -1,32 +0,0 @@
-From 5dbc650a60ddb230f59e5a18ffd298b033566945 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
-Date: Thu, 20 Jul 2017 23:07:01 +0200
-Subject: [PATCH] librustc_llvm/build: Force link against libffi
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-`llvm-config --libs` doesn't output libffi in many cases.  Fixing it
-turned out to take quite a bit of effort, so force libffi linking in
-here for now.
-
-Signed-off-by: Johannes Löthberg 

- src/librustc_llvm/build.rs | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs
-index 3f0f536960..7dc0c40c9d 100644
 a/src/librustc_llvm/build.rs
-+++ b/src/librustc_llvm/build.rs
-@@ -220,6 +220,7 @@ fn main() {
- };
- println!("cargo:rustc-link-lib={}={}", kind, name);
- }
-+println!("cargo:rustc-link-lib=dylib=ffi");
- 
- // LLVM ldflags
- //
--- 
-2.13.3
-

Copied: 
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
 (from rev 263101, 
rust/repos/community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch)
===
--- community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
(rev 0)
+++ community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-10-16 19:46:16 UTC (rev 263102)
@@ -0,0 +1,32 @@
+From 5dbc650a60ddb230f59e5a18ffd298b033566945 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Thu, 20 Jul 2017 23:07:01 +0200
+Subject: [PATCH] librustc_llvm/build: Force link against libffi
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+`llvm-config --libs` doesn't output libffi in many cases.  Fixing it
+turned out to take quite a bit of effort, so force libffi linking in
+here for now.
+
+Signed-off-by: Johannes Löthberg 
+---
+ src/librustc_llvm/build.rs | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git 

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

2017-10-16 Thread Christian Hesse
Date: Monday, October 16, 2017 @ 19:17:27
  Author: eworm
Revision: 308071

add a more specific comment about bundled zlib

Modified:
  rsync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 18:23:18 UTC (rev 308070)
+++ PKGBUILD2017-10-16 19:17:27 UTC (rev 308071)
@@ -28,6 +28,7 @@
cd "$srcdir/$pkgname-$pkgver"
 
# rsync requires the bundled zlib to support old-style --compress
+   # This is to be reevaluated once rsync 3.1.1 is more available in the 
wild...
./configure --prefix=/usr \
--with-included-popt=no \
--with-included-zlib=yes \


[arch-commits] Commit in python-i3-py/repos/community-testing-any (PKGBUILD PKGBUILD)

2017-10-16 Thread Alad Wenter
Date: Monday, October 16, 2017 @ 19:14:58
  Author: alad
Revision: 263101

archrelease: copy trunk to community-testing-any

Added:
  python-i3-py/repos/community-testing-any/PKGBUILD
(from rev 263100, python-i3-py/trunk/PKGBUILD)
Deleted:
  python-i3-py/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 19:14:45 UTC (rev 263100)
+++ PKGBUILD2017-10-16 19:14:58 UTC (rev 263101)
@@ -1,56 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: willemw 
-# Contributor: Anntoin Wilkinson 
-
-pkgbase=python-i3-py
-pkgname=('python-i3-py' 'python2-i3-py' 'python-i3-py-examples')
-pkgver=0.6.5
-# https://github.com/ziberna/i3-py/issues/22
-_commit=27f88a616e9ecc340e7d041d3d00782f8a1964c1
-pkgrel=3
-pkgdesc="tools for i3 users and developers"
-arch=('any')
-url='https://github.com/ziberna/i3-py'
-makedepends=('git' 'python' 'python2')
-source=("$pkgbase::git+https://github.com/ziberna/i3-py#commit=$_commit;
-'LICENSE::http://www.wtfpl.net/txt/copying/')
-md5sums=('SKIP'
- '8365d07beeb5f39d87e846dca3ae7b64')
-
-prepare() {
-cp -a "$pkgbase" "$pkgbase"-python2
-}
-
-build() {
-cd "$pkgbase"
-python setup.py build
-
-cd ../"$pkgbase"-python2
-python2 setup.py build
-}
-
-package_python-i3-py() {
-depends=('python' 'i3-wm')
-license=('GPL3')
-
-cd "$pkgbase"
-python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-i3-py() {
-depends=('python2' 'i3-wm')
-license=('GPL3')
-
-cd "$pkgbase"-python2
-python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python-i3-py-examples() {
-depends=('python-i3-py')
-license=('GPL3' 'custom:WTFPL2')
-
-install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
-install -Dm644 "$pkgbase"/examples/*.py -t 
"$pkgdir"/usr/share/python-i3-py/examples
-}
-
-# vim: set et sw=4 sts=4 ft=sh:

Copied: python-i3-py/repos/community-testing-any/PKGBUILD (from rev 263100, 
python-i3-py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 19:14:58 UTC (rev 263101)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Alad Wenter 
+# Contributor: willemw 
+# Contributor: Anntoin Wilkinson 
+
+pkgbase=python-i3-py
+pkgname=('python-i3-py' 'python2-i3-py')
+pkgver=0.6.5
+# https://github.com/ziberna/i3-py/issues/22
+_commit=27f88a616e9ecc340e7d041d3d00782f8a1964c1
+pkgrel=4
+pkgdesc="tools for i3 users and developers"
+arch=('any')
+url='https://github.com/ziberna/i3-py'
+license=('GPL3' 'custom:WTFPL2')
+makedepends=('git' 'python' 'python2')
+source=("$pkgbase::git+https://github.com/ziberna/i3-py#commit=$_commit;
+'LICENSE::http://www.wtfpl.net/txt/copying/')
+md5sums=('SKIP'
+ '8365d07beeb5f39d87e846dca3ae7b64')
+
+prepare() {
+cp -a "$pkgbase" "$pkgbase"-python2
+}
+
+build() {
+cd "$pkgbase"
+python setup.py build
+
+cd ../"$pkgbase"-python2
+python2 setup.py build
+}
+
+package_python-i3-py() {
+depends=('python' 'i3-wm')
+
+cd "$pkgbase"
+python setup.py install --root="$pkgdir/" --optimize=1
+
+install -Dm644 "$srcdir"/LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
+install -Dm644 examples/*.py -t "$pkgdir"/usr/share/"$pkgname"/examples
+}
+
+package_python2-i3-py() {
+depends=('python2' 'i3-wm')
+
+cd "$pkgbase"-python2
+python2 setup.py install --root="$pkgdir/" --optimize=1
+
+install -Dm644 "$srcdir"/LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
+install -Dm644 examples/*.py -t "$pkgdir"/usr/share/"$pkgname"/examples
+}
+
+# vim: set et sw=4 sts=4 ft=sh:


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

2017-10-16 Thread Alad Wenter
Date: Monday, October 16, 2017 @ 19:14:45
  Author: alad
Revision: 263100

upgpkg: python-i3-py 0.6.5-4

Remove -examples

Modified:
  python-i3-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 18:07:20 UTC (rev 263099)
+++ PKGBUILD2017-10-16 19:14:45 UTC (rev 263100)
@@ -4,14 +4,15 @@
 # Contributor: Anntoin Wilkinson 
 
 pkgbase=python-i3-py
-pkgname=('python-i3-py' 'python2-i3-py' 'python-i3-py-examples')
+pkgname=('python-i3-py' 'python2-i3-py')
 pkgver=0.6.5
 # https://github.com/ziberna/i3-py/issues/22
 _commit=27f88a616e9ecc340e7d041d3d00782f8a1964c1
-pkgrel=3
+pkgrel=4
 pkgdesc="tools for i3 users and developers"
 arch=('any')
 url='https://github.com/ziberna/i3-py'
+license=('GPL3' 'custom:WTFPL2')
 makedepends=('git' 'python' 'python2')
 source=("$pkgbase::git+https://github.com/ziberna/i3-py#commit=$_commit;
 'LICENSE::http://www.wtfpl.net/txt/copying/')
@@ -32,26 +33,22 @@
 
 package_python-i3-py() {
 depends=('python' 'i3-wm')
-license=('GPL3')
 
 cd "$pkgbase"
 python setup.py install --root="$pkgdir/" --optimize=1
+
+install -Dm644 "$srcdir"/LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
+install -Dm644 examples/*.py -t "$pkgdir"/usr/share/"$pkgname"/examples
 }
 
 package_python2-i3-py() {
 depends=('python2' 'i3-wm')
-license=('GPL3')
 
 cd "$pkgbase"-python2
 python2 setup.py install --root="$pkgdir/" --optimize=1
-}
 
-package_python-i3-py-examples() {
-depends=('python-i3-py')
-license=('GPL3' 'custom:WTFPL2')
-
-install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
-install -Dm644 "$pkgbase"/examples/*.py -t 
"$pkgdir"/usr/share/python-i3-py/examples
+install -Dm644 "$srcdir"/LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
+install -Dm644 examples/*.py -t "$pkgdir"/usr/share/"$pkgname"/examples
 }
 
 # vim: set et sw=4 sts=4 ft=sh:


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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 18:07:20
  Author: heftig
Revision: 263099

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

Added:
  gnome-boxes/repos/community-i686/PKGBUILD
(from rev 263098, gnome-boxes/trunk/PKGBUILD)
  gnome-boxes/repos/community-x86_64/PKGBUILD
(from rev 263098, gnome-boxes/trunk/PKGBUILD)
Deleted:
  gnome-boxes/repos/community-i686/PKGBUILD
  gnome-boxes/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 18:06:24 UTC (rev 263098)
+++ community-i686/PKGBUILD 2017-10-16 18:07:20 UTC (rev 263099)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Stefano Facchini 
-
-pkgname=gnome-boxes
-pkgver=3.26.1
-pkgrel=1
-pkgdesc="Simple GNOME application to access remote or virtual systems"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Apps/Boxes;
-license=('LGPL')
-depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'libtracker-sparql'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
-makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-boxes/repos/community-i686/PKGBUILD (from rev 263098, 
gnome-boxes/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 18:07:20 UTC (rev 263099)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Stefano Facchini 
+
+pkgname=gnome-boxes
+pkgver=3.26.1
+pkgrel=2
+pkgdesc="Simple GNOME application to access remote or virtual systems"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Apps/Boxes;
+license=('LGPL')
+depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'tracker'
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'libgovirt')
+makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile --enable-vala
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-10-16 18:06:24 UTC (rev 263098)
+++ community-x86_64/PKGBUILD   2017-10-16 18:07:20 UTC (rev 263099)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Stefano Facchini 
-
-pkgname=gnome-boxes
-pkgver=3.26.1
-pkgrel=1
-pkgdesc="Simple GNOME application to access remote or virtual systems"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Apps/Boxes;
-license=('LGPL')
-depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'libtracker-sparql'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
-makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-boxes/repos/community-x86_64/PKGBUILD (from rev 263098, 
gnome-boxes/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-10-16 18:07:20 UTC (rev 263099)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: 

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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 18:06:24
  Author: heftig
Revision: 263098

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

Added:
  gnome-applets/repos/community-i686/0001-fix-build-with-kernel-4.7.patch
(from rev 263097, gnome-applets/trunk/0001-fix-build-with-kernel-4.7.patch)
  gnome-applets/repos/community-i686/PKGBUILD
(from rev 263097, gnome-applets/trunk/PKGBUILD)
  gnome-applets/repos/community-x86_64/0001-fix-build-with-kernel-4.7.patch
(from rev 263097, gnome-applets/trunk/0001-fix-build-with-kernel-4.7.patch)
  gnome-applets/repos/community-x86_64/PKGBUILD
(from rev 263097, gnome-applets/trunk/PKGBUILD)
Deleted:
  gnome-applets/repos/community-i686/0001-fix-build-with-kernel-4.7.patch
  gnome-applets/repos/community-i686/PKGBUILD
  gnome-applets/repos/community-x86_64/0001-fix-build-with-kernel-4.7.patch
  gnome-applets/repos/community-x86_64/PKGBUILD

---+
 /0001-fix-build-with-kernel-4.7.patch |   72 ++
 /PKGBUILD |   78 
 community-i686/0001-fix-build-with-kernel-4.7.patch   |   36 ---
 community-i686/PKGBUILD   |   42 
 community-x86_64/0001-fix-build-with-kernel-4.7.patch |   36 ---
 community-x86_64/PKGBUILD |   42 
 6 files changed, 150 insertions(+), 156 deletions(-)

Deleted: community-i686/0001-fix-build-with-kernel-4.7.patch
===
--- community-i686/0001-fix-build-with-kernel-4.7.patch 2017-10-16 17:58:46 UTC 
(rev 263097)
+++ community-i686/0001-fix-build-with-kernel-4.7.patch 2017-10-16 18:06:24 UTC 
(rev 263098)
@@ -1,36 +0,0 @@
-From e6e2837764ae430662220cb0df18089a681a0364 Mon Sep 17 00:00:00 2001
-From: leigh123linux 
-Date: Thu, 9 Jun 2016 10:06:34 +0100
-Subject: [PATCH] fix build with kernel-4.7
-

- cpufreq/src/cpufreq-monitor.c | 5 +
- 1 file changed, 5 insertions(+)
-
-diff --git a/cpufreq/src/cpufreq-monitor.c b/cpufreq/src/cpufreq-monitor.c
-index 36fbb4e15..e25d0d506 100644
 a/cpufreq/src/cpufreq-monitor.c
-+++ b/cpufreq/src/cpufreq-monitor.c
-@@ -23,6 +23,7 @@
- #include "config.h"
- 
- #include 
-+#include 
- #include 
- 
- #include "cpufreq-monitor.h"
-@@ -76,7 +77,11 @@ monitor_run (CPUFreqMonitor *monitor)
-   if (!policy)
- {
-   /* Check whether it failed because cpu is not online. */
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 7, 0)
-   if (!cpufreq_cpu_exists (monitor->cpu))
-+#else
-+  if (cpupower_is_cpu_online (monitor->cpu))
-+#endif
- {
-   monitor->online = FALSE;
-   return TRUE;
--- 
-2.14.2
-

Copied: gnome-applets/repos/community-i686/0001-fix-build-with-kernel-4.7.patch 
(from rev 263097, gnome-applets/trunk/0001-fix-build-with-kernel-4.7.patch)
===
--- community-i686/0001-fix-build-with-kernel-4.7.patch 
(rev 0)
+++ community-i686/0001-fix-build-with-kernel-4.7.patch 2017-10-16 18:06:24 UTC 
(rev 263098)
@@ -0,0 +1,36 @@
+From e6e2837764ae430662220cb0df18089a681a0364 Mon Sep 17 00:00:00 2001
+From: leigh123linux 
+Date: Thu, 9 Jun 2016 10:06:34 +0100
+Subject: [PATCH] fix build with kernel-4.7
+
+---
+ cpufreq/src/cpufreq-monitor.c | 5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/cpufreq/src/cpufreq-monitor.c b/cpufreq/src/cpufreq-monitor.c
+index 36fbb4e15..e25d0d506 100644
+--- a/cpufreq/src/cpufreq-monitor.c
 b/cpufreq/src/cpufreq-monitor.c
+@@ -23,6 +23,7 @@
+ #include "config.h"
+ 
+ #include 
++#include 
+ #include 
+ 
+ #include "cpufreq-monitor.h"
+@@ -76,7 +77,11 @@ monitor_run (CPUFreqMonitor *monitor)
+   if (!policy)
+ {
+   /* Check whether it failed because cpu is not online. */
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 7, 0)
+   if (!cpufreq_cpu_exists (monitor->cpu))
++#else
++  if (cpupower_is_cpu_online (monitor->cpu))
++#endif
+ {
+   monitor->online = FALSE;
+   return TRUE;
+-- 
+2.14.2
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 17:58:46 UTC (rev 263097)
+++ community-i686/PKGBUILD 2017-10-16 18:06:24 UTC (rev 263098)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-applets
-pkgver=3.26.0
-pkgrel=2
-pkgdesc="Small applications for the GNOME Panel"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/GnomeApplets;
-license=('GPL')
-depends=('gnome-panel' 'libgtop' 'libtracker-sparql' 'cpupower' 'upower')
-makedepends=('intltool' 'itstool' 'gnome-settings-daemon')

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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 18:05:48
  Author: heftig
Revision: 308069

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-16 18:05:12 UTC (rev 308068)
+++ extra-i686/PKGBUILD 2017-10-16 18:05:48 UTC (rev 308069)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libgovirt
-pkgver=0.3.4+9+g82cfd86
-pkgrel=1
-pkgdesc="GObject-based library to access oVirt REST API"
-arch=('i686' 'x86_64')
-url="https://www.gnome.org/;
-license=('GPL')
-depends=('glib2' 'rest')
-makedepends=('gobject-introspection' 'git' 'gnome-common')
-_commit=82cfd86b978f5e94fae1b028c36bc1ac58cc1374
-source=("git://git.gnome.org/libgovirt#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed -e 's/^v//' -e 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-build(){
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package(){
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}
-
-check(){
-  cd $pkgname
-# disable for now: coredumps
-#  make check
-}

Copied: libgovirt/repos/extra-i686/PKGBUILD (from rev 308068, 
libgovirt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-10-16 18:05:48 UTC (rev 308069)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libgovirt
+pkgver=0.3.4+45+g46288e8
+pkgrel=1
+pkgdesc="GObject-based library to access oVirt REST API"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/libgovirt;
+license=(GPL)
+depends=(glib2 rest)
+makedepends=(gobject-introspection git)
+_commit=46288e859023c6a1b3450d29456e59c999a69799  # master
+source=("git+https://git.gnome.org/browse/libgovirt#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -e 's/^v//' -e 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+  
+build(){
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  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
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-10-16 18:05:12 UTC (rev 308068)
+++ extra-x86_64/PKGBUILD   2017-10-16 18:05:48 UTC (rev 308069)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libgovirt
-pkgver=0.3.4+9+g82cfd86
-pkgrel=1
-pkgdesc="GObject-based library to access oVirt REST API"
-arch=('i686' 'x86_64')
-url="https://www.gnome.org/;
-license=('GPL')
-depends=('glib2' 'rest')
-makedepends=('gobject-introspection' 'git' 'gnome-common')
-_commit=82cfd86b978f5e94fae1b028c36bc1ac58cc1374
-source=("git://git.gnome.org/libgovirt#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed -e 's/^v//' -e 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-build(){
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package(){
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}
-
-check(){
-  cd $pkgname
-# disable for now: coredumps
-#  make check
-}

Copied: libgovirt/repos/extra-x86_64/PKGBUILD (from rev 308068, 
libgovirt/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-10-16 18:05:48 UTC (rev 308069)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libgovirt
+pkgver=0.3.4+45+g46288e8
+pkgrel=1
+pkgdesc="GObject-based library to access oVirt REST API"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/libgovirt;
+license=(GPL)
+depends=(glib2 rest)
+makedepends=(gobject-introspection git)
+_commit=46288e859023c6a1b3450d29456e59c999a69799  # master
+source=("git+https://git.gnome.org/browse/libgovirt#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -e 's/^v//' -e 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  

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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 18:05:12
  Author: heftig
Revision: 308068

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

Added:
  nautilus/repos/extra-i686/PKGBUILD
(from rev 308067, nautilus/trunk/PKGBUILD)
  nautilus/repos/extra-i686/fix-prefs.diff
(from rev 308067, nautilus/trunk/fix-prefs.diff)
  nautilus/repos/extra-x86_64/PKGBUILD
(from rev 308067, nautilus/trunk/PKGBUILD)
  nautilus/repos/extra-x86_64/fix-prefs.diff
(from rev 308067, nautilus/trunk/fix-prefs.diff)
Deleted:
  nautilus/repos/extra-i686/PKGBUILD
  nautilus/repos/extra-x86_64/PKGBUILD

-+
 /PKGBUILD   |  136 ++
 extra-i686/PKGBUILD |   66 
 extra-i686/fix-prefs.diff   |   16 
 extra-x86_64/PKGBUILD   |   66 
 extra-x86_64/fix-prefs.diff |   16 
 5 files changed, 168 insertions(+), 132 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-16 18:04:23 UTC (rev 308067)
+++ extra-i686/PKGBUILD 2017-10-16 18:05:12 UTC (rev 308068)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=nautilus
-pkgname=(nautilus libnautilus-extension)
-pkgver=3.26.0
-pkgrel=1
-pkgdesc="Default file manager for GNOME"
-url="https://wiki.gnome.org/Apps/Nautilus;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
-makedepends=(gobject-introspection packagekit git gtk-doc meson)
-options=(!emptydirs)
-_commit=69942c754ea4e45ab0d32bcbc9e29f1c08da8990  # tags/3.26.0^0
-source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  mkdir -p build libne/usr/{lib,share}
-  cd $pkgbase
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git submodule update
-}
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd build
-  export LANG=en_US.UTF-8
-  meson --prefix=/usr --buildtype=release ../$pkgbase \
---sysconfdir=/etc \
--Denable-exif=true \
--Denable-xmp=true \
--Denable-gtk-doc=true \
--Denable-selinux=false
-  ninja
-}
-
-package_nautilus() {
-  depends+=(libnautilus-extension)
-  groups=(gnome)
-
-  cd build
-  DESTDIR="$pkgdir" ninja install
-
-### Split libnautilus-extension
-
-  cd ../libne
-  mv "$pkgdir"/usr/include usr
-  mv "$pkgdir"/usr/lib/{girepository-1.0,libnautilus-extension*,pkgconfig} 
usr/lib
-  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} usr/share
-}
-
-package_libnautilus-extension() {
-  pkgdesc="Library for extending the $pkgdesc"
-  depends=(gtk3)
-  mv libne/usr "$pkgdir"
-}

Copied: nautilus/repos/extra-i686/PKGBUILD (from rev 308067, 
nautilus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-10-16 18:05:12 UTC (rev 308068)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=nautilus
+pkgname=(nautilus libnautilus-extension)
+pkgver=3.26.0+7+g9f51ed0ff
+pkgrel=1
+pkgdesc="Default file manager for GNOME"
+url="https://wiki.gnome.org/Apps/Nautilus;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libexif gnome-desktop exempi gvfs dconf tracker nautilus-sendto 
gnome-autoar)
+makedepends=(gobject-introspection packagekit git gtk-doc meson)
+options=(!emptydirs)
+_commit=9f51ed0ffaeeac865f535ea63c49c1dfd09357ea  # gnome-3-26
+source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd; fix-prefs.diff)
+sha256sums=('SKIP'
+'SKIP'
+'b3f2dafdc04a405ef8f11017fa86b199c94c139986b98916c3ed2d28cf443d94')
+
+prepare() {
+  mkdir -p build libne/usr/{lib,share}
+  cd $pkgbase
+
+  # https://gitlab.gnome.org/GNOME/nautilus/issues/25
+  git apply -3 ../fix-prefs.diff
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+}
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd build
+  arch-meson ../$pkgbase  \
+-Denable-exif=true \
+-Denable-xmp=true \
+-Denable-gtk-doc=true \
+-Denable-selinux=false
+  ninja
+}
+
+package_nautilus() {
+  depends+=(libnautilus-extension)
+  groups=(gnome)
+
+  cd build
+  DESTDIR="$pkgdir" ninja install
+
+### Split libnautilus-extension
+
+  cd ../libne
+  mv "$pkgdir"/usr/include usr
+  mv "$pkgdir"/usr/lib/{girepository-1.0,libnautilus-extension*,pkgconfig} 
usr/lib
+  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} usr/share
+}
+
+package_libnautilus-extension() {
+  pkgdesc="Library for extending the $pkgdesc"
+  depends=(gtk3)
+  mv libne/usr "$pkgdir"
+}

Copied: nautilus/repos/extra-i686/fix-prefs.diff (from rev 

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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 18:04:23
  Author: heftig
Revision: 308067

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-16 18:03:46 UTC (rev 308066)
+++ extra-i686/PKGBUILD 2017-10-16 18:04:23 UTC (rev 308067)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-
-pkgname=rygel
-pkgver=0.36.0+2+gd80ae646
-pkgrel=1
-pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share 
audio, video and pictures, and control of media player on your home network"
-url="https://wiki.gnome.org/Projects/Rygel;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gupnp-av gupnp-dlna libgee gtk3 libunistring libtracker-sparql 
libmediaart)
-makedepends=(vala intltool python2 gobject-introspection git valadoc)
-optdepends=('gst-plugins-base: Extra media codecs'
-'gst-plugins-good: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-'gst-libav: Extra media codecs'
-'tracker: Share indexed media files')
-backup=(etc/rygel.conf)
-groups=(gnome-extra)
-_commit=d80ae6461f7771defa46d64f8566496dfe7d  # master
-source=("git+https://git.gnome.org/browse/rygel#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^RYGEL_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
-  --disable-static --enable-mediathek-plugin 
--enable-gst-launch-plugin \
-  --enable-apidocs
-  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
-}

Copied: rygel/repos/extra-i686/PKGBUILD (from rev 308066, rygel/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-10-16 18:04:23 UTC (rev 308067)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+
+pkgname=rygel
+pkgver=0.36.0+7+gd7225192
+pkgrel=1
+pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share 
audio, video and pictures, and control of media player on your home network"
+url="https://wiki.gnome.org/Projects/Rygel;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gupnp-av gupnp-dlna libgee gtk3 libunistring tracker libmediaart)
+makedepends=(vala intltool python2 gobject-introspection git valadoc)
+optdepends=('gst-plugins-base: Extra media codecs'
+'gst-plugins-good: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-libav: Extra media codecs'
+'tracker-miners: Share indexed media files')
+backup=(etc/rygel.conf)
+groups=(gnome-extra)
+_commit=d7225192a534f50de3bd6694bf37a9fe663e7f4a  # master
+source=("git+https://git.gnome.org/browse/rygel#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^RYGEL_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
+  --disable-static --enable-mediathek-plugin 
--enable-gst-launch-plugin \
+  --enable-apidocs
+  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
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-10-16 18:03:46 UTC (rev 308066)
+++ extra-x86_64/PKGBUILD   2017-10-16 18:04:23 UTC (rev 308067)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-
-pkgname=rygel
-pkgver=0.36.0+2+gd80ae646
-pkgrel=1
-pkgdesc="UPnP AV MediaServer and 

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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 18:03:46
  Author: heftig
Revision: 308066

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-16 17:56:51 UTC (rev 308065)
+++ extra-i686/PKGBUILD 2017-10-16 18:03:46 UTC (rev 308066)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Maintainer: Jan de Groot 
-# Contributor: William Rea 
-
-pkgname=brasero
-pkgver=3.12.2
-pkgrel=1
-pkgdesc="CD/DVD mastering tool"
-url="https://wiki.gnome.org/Apps/Brasero;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
- dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
-makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
- gobject-introspection gconf itstool docbook-xsl git)
-optdepends=('libburn: alternative back-end'
-'libisofs: libburn back-end'
-'dvdauthor: video project'
-'vcdimager: video project')
-groups=(gnome-extra)
-_commit=f0c7ac25f7e01a608f74111e64ff196fb470ed9f  # tags/3.12.2^0
-source=("git+https://git.gnome.org/browse/brasero#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 --localstatedir=/var \
---disable-caches --disable-schemas-compile 
--enable-compile-warnings=minimum \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR=$pkgdir install
-}
-

Copied: brasero/repos/extra-i686/PKGBUILD (from rev 308065, 
brasero/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-10-16 18:03:46 UTC (rev 308066)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Maintainer: Jan de Groot 
+# Contributor: William Rea 
+
+pkgname=brasero
+pkgver=3.12.2
+pkgrel=2
+pkgdesc="CD/DVD mastering tool"
+url="https://wiki.gnome.org/Apps/Brasero;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
+ dvd+rw-tools dconf libsm tracker libnotify gvfs)
+makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
+ gobject-introspection gconf itstool docbook-xsl git)
+optdepends=('libburn: alternative back-end'
+'libisofs: libburn back-end'
+'dvdauthor: video project'
+'vcdimager: video project')
+groups=(gnome-extra)
+_commit=f0c7ac25f7e01a608f74111e64ff196fb470ed9f  # tags/3.12.2^0
+source=("git+https://git.gnome.org/browse/brasero#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 --localstatedir=/var \
+--disable-caches --disable-schemas-compile 
--enable-compile-warnings=minimum \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-10-16 17:56:51 UTC (rev 308065)
+++ extra-x86_64/PKGBUILD   2017-10-16 18:03:46 UTC (rev 308066)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Maintainer: Jan de Groot 
-# Contributor: William Rea 
-
-pkgname=brasero
-pkgver=3.12.2
-pkgrel=1
-pkgdesc="CD/DVD mastering tool"
-url="https://wiki.gnome.org/Apps/Brasero;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
- dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
-makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
- gobject-introspection gconf itstool docbook-xsl git)

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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:58:46
  Author: heftig
Revision: 263097

3.26.1-2

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 17:54:34 UTC (rev 263096)
+++ PKGBUILD2017-10-16 17:58:46 UTC (rev 263097)
@@ -4,13 +4,13 @@
 
 pkgname=gnome-boxes
 pkgver=3.26.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/Boxes;
 license=('LGPL')
-depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'libtracker-sparql'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3')
+depends=('cdrkit' 'gtk-vnc' 'libarchive' 'libgudev' 'libosinfo' 'libsecret' 
'tracker'
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'libgovirt')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'spice-protocol' 
'vala')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
 sha256sums=('fc0d4479b076393caeeab22d9ae3247503b9eb15b6bfe8fdfab2f2435051fa58')
@@ -18,7 +18,7 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile
+  --disable-schemas-compile --enable-vala
   make
 }
 


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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:56:51
  Author: heftig
Revision: 308065

0.3.4+45+g46288e8-1

Modified:
  libgovirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 17:49:36 UTC (rev 308064)
+++ PKGBUILD2017-10-16 17:56:51 UTC (rev 308065)
@@ -2,16 +2,16 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libgovirt
-pkgver=0.3.4+9+g82cfd86
+pkgver=0.3.4+45+g46288e8
 pkgrel=1
 pkgdesc="GObject-based library to access oVirt REST API"
-arch=('i686' 'x86_64')
-url="https://www.gnome.org/;
-license=('GPL')
-depends=('glib2' 'rest')
-makedepends=('gobject-introspection' 'git' 'gnome-common')
-_commit=82cfd86b978f5e94fae1b028c36bc1ac58cc1374
-source=("git://git.gnome.org/libgovirt#commit=$_commit")
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/libgovirt;
+license=(GPL)
+depends=(glib2 rest)
+makedepends=(gobject-introspection git)
+_commit=46288e859023c6a1b3450d29456e59c999a69799  # master
+source=("git+https://git.gnome.org/browse/libgovirt#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
@@ -21,23 +21,22 @@
 
 prepare() {
   cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
+  autoreconf -fvi
 }
   
 build(){
   cd $pkgname
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
-package(){
+check(){
   cd $pkgname
-  make DESTDIR="${pkgdir}" install
+  make check
 }
 
-check(){
+package(){
   cd $pkgname
-# disable for now: coredumps
-#  make check
+  make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in embree/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-10-16 Thread Lukas Jirkovsky
Date: Monday, October 16, 2017 @ 17:54:34
  Author: stativ
Revision: 263096

archrelease: copy trunk to community-x86_64

Added:
  embree/repos/community-x86_64/PKGBUILD
(from rev 263095, embree/trunk/PKGBUILD)
Deleted:
  embree/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 17:54:20 UTC (rev 263095)
+++ PKGBUILD2017-10-16 17:54:34 UTC (rev 263096)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=embree
-pkgver=2.16.4
-pkgrel=1
-pkgdesc="A collection of high-performance ray tracing kernels"
-arch=('x86_64')
-url="https://embree.github.io/;
-license=('Apache')
-depends=('intel-tbb')
-makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
-source=("$pkgname-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
-md5sums=('3d9674024198f2944a13dd0a476ff43c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DEMBREE_TUTORIALS=OFF \
--DEMBREE_MAX_ISA="SSE2"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-

Copied: embree/repos/community-x86_64/PKGBUILD (from rev 263095, 
embree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 17:54:34 UTC (rev 263096)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=embree
+pkgver=2.17.0
+pkgrel=1
+pkgdesc="A collection of high-performance ray tracing kernels"
+arch=('x86_64')
+url="https://embree.github.io/;
+license=('Apache')
+depends=('intel-tbb')
+makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
+source=("$pkgname-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
+md5sums=('3ea7a72546baee497ae8098bc12f3de6')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DEMBREE_TUTORIALS=OFF \
+-DEMBREE_MAX_ISA="SSE2"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+


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

2017-10-16 Thread Lukas Jirkovsky
Date: Monday, October 16, 2017 @ 17:54:20
  Author: stativ
Revision: 263095

upgpkg: embree 2.17.0-1

update to 2.17.0

Modified:
  embree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 17:49:52 UTC (rev 263094)
+++ PKGBUILD2017-10-16 17:54:20 UTC (rev 263095)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=embree
-pkgver=2.16.4
+pkgver=2.17.0
 pkgrel=1
 pkgdesc="A collection of high-performance ray tracing kernels"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('intel-tbb')
 makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
 
source=("$pkgname-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
-md5sums=('3d9674024198f2944a13dd0a476ff43c')
+md5sums=('3ea7a72546baee497ae8098bc12f3de6')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:49:36
  Author: heftig
Revision: 308064

0.36.0+7+gd7225192-1

Modified:
  rygel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 17:49:13 UTC (rev 308063)
+++ PKGBUILD2017-10-16 17:49:36 UTC (rev 308064)
@@ -3,13 +3,13 @@
 # Contributor: Balló György 
 
 pkgname=rygel
-pkgver=0.36.0+2+gd80ae646
+pkgver=0.36.0+7+gd7225192
 pkgrel=1
 pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share 
audio, video and pictures, and control of media player on your home network"
 url="https://wiki.gnome.org/Projects/Rygel;
 arch=(i686 x86_64)
 license=(LGPL)
-depends=(gupnp-av gupnp-dlna libgee gtk3 libunistring libtracker-sparql 
libmediaart)
+depends=(gupnp-av gupnp-dlna libgee gtk3 libunistring tracker libmediaart)
 makedepends=(vala intltool python2 gobject-introspection git valadoc)
 optdepends=('gst-plugins-base: Extra media codecs'
 'gst-plugins-good: Extra media codecs'
@@ -16,10 +16,10 @@
 'gst-plugins-bad: Extra media codecs'
 'gst-plugins-ugly: Extra media codecs'
 'gst-libav: Extra media codecs'
-'tracker: Share indexed media files')
+'tracker-miners: Share indexed media files')
 backup=(etc/rygel.conf)
 groups=(gnome-extra)
-_commit=d80ae6461f7771defa46d64f8566496dfe7d  # master
+_commit=d7225192a534f50de3bd6694bf37a9fe663e7f4a  # master
 source=("git+https://git.gnome.org/browse/rygel#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:49:13
  Author: heftig
Revision: 308063

3.12.2-2

Modified:
  brasero/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 17:44:58 UTC (rev 308062)
+++ PKGBUILD2017-10-16 17:49:13 UTC (rev 308063)
@@ -5,13 +5,13 @@
 
 pkgname=brasero
 pkgver=3.12.2
-pkgrel=1
+pkgrel=2
 pkgdesc="CD/DVD mastering tool"
 url="https://wiki.gnome.org/Apps/Brasero;
 arch=(i686 x86_64)
 license=(GPL)
 depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
- dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
+ dvd+rw-tools dconf libsm tracker libnotify gvfs)
 makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
  gobject-introspection gconf itstool docbook-xsl git)
 optdepends=('libburn: alternative back-end'


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

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:49:52
  Author: heftig
Revision: 263094

3.26.0-3

Modified:
  gnome-applets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 16:44:38 UTC (rev 263093)
+++ PKGBUILD2017-10-16 17:49:52 UTC (rev 263094)
@@ -4,12 +4,12 @@
 
 pkgname=gnome-applets
 pkgver=3.26.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Small applications for the GNOME Panel"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Projects/GnomeApplets;
 license=('GPL')
-depends=('gnome-panel' 'libgtop' 'libtracker-sparql' 'cpupower' 'upower')
+depends=('gnome-panel' 'libgtop' 'tracker' 'cpupower' 'upower')
 makedepends=('intltool' 'itstool' 'gnome-settings-daemon')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
 0001-fix-build-with-kernel-4.7.patch)
@@ -20,9 +20,6 @@
   cd $pkgname-$pkgver
   # Fix cpufreq applet with recent kernel
   patch -Np1 -i ../0001-fix-build-with-kernel-4.7.patch
-
-  # Build with Tracker 1.0 for now
-  sed -i 's/tracker-sparql-2.0/tracker-sparql-1.0/' configure{,.ac}
 }
 
 build() {


[arch-commits] Commit in nautilus/trunk (PKGBUILD fix-prefs.diff)

2017-10-16 Thread Jan Steffens
Date: Monday, October 16, 2017 @ 17:44:58
  Author: heftig
Revision: 308062

3.26.0+7+g9f51ed0ff-1

Added:
  nautilus/trunk/fix-prefs.diff
Modified:
  nautilus/trunk/PKGBUILD

+
 PKGBUILD   |   18 ++
 fix-prefs.diff |   16 
 2 files changed, 26 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 15:32:55 UTC (rev 308061)
+++ PKGBUILD2017-10-16 17:44:58 UTC (rev 308062)
@@ -3,25 +3,29 @@
 
 pkgbase=nautilus
 pkgname=(nautilus libnautilus-extension)
-pkgver=3.26.0
+pkgver=3.26.0+7+g9f51ed0ff
 pkgrel=1
 pkgdesc="Default file manager for GNOME"
 url="https://wiki.gnome.org/Apps/Nautilus;
 arch=(i686 x86_64)
 license=(GPL)
-depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
+depends=(libexif gnome-desktop exempi gvfs dconf tracker nautilus-sendto 
gnome-autoar)
 makedepends=(gobject-introspection packagekit git gtk-doc meson)
 options=(!emptydirs)
-_commit=69942c754ea4e45ab0d32bcbc9e29f1c08da8990  # tags/3.26.0^0
+_commit=9f51ed0ffaeeac865f535ea63c49c1dfd09357ea  # gnome-3-26
 source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
+"git+https://git.gnome.org/browse/libgd; fix-prefs.diff)
 sha256sums=('SKIP'
-'SKIP')
+'SKIP'
+'b3f2dafdc04a405ef8f11017fa86b199c94c139986b98916c3ed2d28cf443d94')
 
 prepare() {
   mkdir -p build libne/usr/{lib,share}
   cd $pkgbase
 
+  # https://gitlab.gnome.org/GNOME/nautilus/issues/25
+  git apply -3 ../fix-prefs.diff
+
   git submodule init
   git config --local submodule.libgd.url "$srcdir/libgd"
   git submodule update
@@ -34,9 +38,7 @@
 
 build() {
   cd build
-  export LANG=en_US.UTF-8
-  meson --prefix=/usr --buildtype=release ../$pkgbase \
---sysconfdir=/etc \
+  arch-meson ../$pkgbase  \
 -Denable-exif=true \
 -Denable-xmp=true \
 -Denable-gtk-doc=true \

Added: fix-prefs.diff
===
--- fix-prefs.diff  (rev 0)
+++ fix-prefs.diff  2017-10-16 17:44:58 UTC (rev 308062)
@@ -0,0 +1,16 @@
+ src/resources/ui/nautilus-preferences-window.ui | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git c/src/resources/ui/nautilus-preferences-window.ui 
i/src/resources/ui/nautilus-preferences-window.ui
+index fe89e248ef1b25f0..03e3ddf177501c53 100644
+--- c/src/resources/ui/nautilus-preferences-window.ui
 i/src/resources/ui/nautilus-preferences-window.ui
+@@ -959,7 +959,7 @@
+ False
+ Onl_y 
for files smaller than:
+ True
+-preview_image_size_combobox
++preview_image_size_spinbutton
+ 0
+   
+   


[arch-commits] Commit in arrayfire/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-10-16 Thread Sven-Hendrik Haase
Date: Monday, October 16, 2017 @ 16:44:38
  Author: svenstaro
Revision: 263093

archrelease: copy trunk to community-x86_64

Added:
  arrayfire/repos/community-x86_64/PKGBUILD
(from rev 263092, arrayfire/trunk/PKGBUILD)
Deleted:
  arrayfire/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 16:44:22 UTC (rev 263092)
+++ PKGBUILD2017-10-16 16:44:38 UTC (rev 263093)
@@ -1,63 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=arrayfire
-pkgdesc="High performance software library for parallel computing with an 
easy-to-use API"
-url='https://arrayfire.com'
-pkgver=3.5.1
-arch=('x86_64')
-pkgrel=1
-license=('BSD')
-makedepends=('cmake' 'graphviz' 'doxygen' 'opencl-headers' 'glfw' 'glew' 
'boost' 'git' 'python' 'ocl-icd' 'gcc6')
-makedepends_x86_64=('cuda' 'nvidia-utils')
-depends=('cblas' 'fftw' 'boost-libs' 'lapacke' 'forge' 'freeimage' 'glfw' 
'glew')
-optdepends=('cuda: Required for using CUDA backend'
-'nvidia-utils: Required for using CUDA backend'
-'libclc: Required for using OpenCL backend')
-options=('!buildflags')
-source=("http://arrayfire.com/arrayfire_source/arrayfire-full-${pkgver}.tar.bz2;)
-sha512sums=('e9d696e8fa9d9c9a89497d6f0615cb2bdf8583237193ae354a365bbcb403891279795a65a03c364cadf9403b7a62412a1b6b5c5eee2f2e763329d1e3a6954c52')
-
-prepare() {
-  cd "${srcdir}/arrayfire-full-${pkgver}"
-
-  # patches here
-  sed -i "/NVCC does not support GCC version 6.0/d" 
src/backend/cuda/CMakeLists.txt
-}
-
-build() {
-  cd "${srcdir}/arrayfire-full-${pkgver}"
-
-  rm -rf build
-  mkdir build && cd build
-
-  export CC=gcc-6
-  export CXX=g++-6
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DUSE_SYSTEM_FORGE=ON \
-  -DCOMPUTES_DETECTED_LIST="30;32;35;37;50;52;53;60;61;62" \
-  -DBUILD_CPU=ON \
-  -DBUILD_OPENCL=ON \
-  -DBUILD_NONFREE=ON \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBUILD_EXAMPLES=ON \
-  -DBUILD_DOCS=ON
-
-  make
-}
-
-# check() {
-#   cd "${srcdir}/arrayfire-full-${pkgver}/build"
-#
-#   # Some tests fail :(
-#   make test
-# }
-
-package() {
-  cd "${srcdir}/arrayfire-full-${pkgver}"
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: arrayfire/repos/community-x86_64/PKGBUILD (from rev 263092, 
arrayfire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 16:44:38 UTC (rev 263093)
@@ -0,0 +1,63 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=arrayfire
+pkgdesc="High performance software library for parallel computing with an 
easy-to-use API"
+url='https://arrayfire.com'
+pkgver=3.5.1
+arch=('x86_64')
+pkgrel=2
+license=('BSD')
+makedepends=('cmake' 'graphviz' 'doxygen' 'opencl-headers' 'glfw' 'glew' 
'boost' 'git' 'python' 'ocl-icd' 'gcc6')
+makedepends_x86_64=('cuda' 'nvidia-utils')
+depends=('cblas' 'fftw' 'boost-libs' 'lapacke' 'forge' 'freeimage' 'glfw' 
'glew')
+optdepends=('cuda: Required for using CUDA backend'
+'nvidia-utils: Required for using CUDA backend'
+'libclc: Required for using OpenCL backend')
+options=('!buildflags')
+source=("http://arrayfire.com/arrayfire_source/arrayfire-full-${pkgver}.tar.bz2;)
+sha512sums=('1b521f93abdef985f54443f42e2b0270787da1194a5cdbb06a91af285672bf66fe0e6dbba2e5616968051052ff0face5b518b27014ccd10925008ecb3e53bf76')
+
+prepare() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+
+  # patches here
+  sed -i "/NVCC does not support GCC version 6.0/d" 
src/backend/cuda/CMakeLists.txt
+}
+
+build() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+
+  rm -rf build
+  mkdir build && cd build
+
+  export CC=gcc-6
+  export CXX=g++-6
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DUSE_SYSTEM_FORGE=ON \
+  -DCOMPUTES_DETECTED_LIST="30;32;35;37;50;52;53;60;61;62" \
+  -DBUILD_CPU=ON \
+  -DBUILD_OPENCL=ON \
+  -DBUILD_NONFREE=ON \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=ON \
+  -DBUILD_DOCS=ON
+
+  make
+}
+
+# check() {
+#   cd "${srcdir}/arrayfire-full-${pkgver}/build"
+#
+#   # Some tests fail :(
+#   make test
+# }
+
+package() {
+  cd "${srcdir}/arrayfire-full-${pkgver}"
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+}


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

2017-10-16 Thread Sven-Hendrik Haase
Date: Monday, October 16, 2017 @ 16:44:22
  Author: svenstaro
Revision: 263092

upgpkg: arrayfire 3.5.1-2

Modified:
  arrayfire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 15:59:32 UTC (rev 263091)
+++ PKGBUILD2017-10-16 16:44:22 UTC (rev 263092)
@@ -4,7 +4,7 @@
 url='https://arrayfire.com'
 pkgver=3.5.1
 arch=('x86_64')
-pkgrel=1
+pkgrel=2
 license=('BSD')
 makedepends=('cmake' 'graphviz' 'doxygen' 'opencl-headers' 'glfw' 'glew' 
'boost' 'git' 'python' 'ocl-icd' 'gcc6')
 makedepends_x86_64=('cuda' 'nvidia-utils')
@@ -14,7 +14,7 @@
 'libclc: Required for using OpenCL backend')
 options=('!buildflags')
 
source=("http://arrayfire.com/arrayfire_source/arrayfire-full-${pkgver}.tar.bz2;)
-sha512sums=('e9d696e8fa9d9c9a89497d6f0615cb2bdf8583237193ae354a365bbcb403891279795a65a03c364cadf9403b7a62412a1b6b5c5eee2f2e763329d1e3a6954c52')
+sha512sums=('1b521f93abdef985f54443f42e2b0270787da1194a5cdbb06a91af285672bf66fe0e6dbba2e5616968051052ff0face5b518b27014ccd10925008ecb3e53bf76')
 
 prepare() {
   cd "${srcdir}/arrayfire-full-${pkgver}"


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

2017-10-16 Thread Laurent Carlier
Date: Monday, October 16, 2017 @ 15:59:16
  Author: lcarlier
Revision: 263090

upgpkg: playonlinux 4.2.12-1

upstream update 4.2.12

Modified:
  playonlinux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:46:31 UTC (rev 263089)
+++ PKGBUILD2017-10-16 15:59:16 UTC (rev 263090)
@@ -3,7 +3,7 @@
 # Contributor: Skunnyk 
 
 pkgname=playonlinux
-pkgver=4.2.10
+pkgver=4.2.12
 pkgrel=1
 pkgdesc="GUI for managing Windows programs under linux"
 url="http://www.playonlinux.com/;
@@ -13,7 +13,7 @@
 arch=('any')
 
source=(http://www.playonlinux.com/script_files/PlayOnLinux/${pkgver/.0/}/PlayOnLinux_${pkgver/.0/}.tar.gz)
 options=(!strip)
-md5sums=('9869697c13010e88cf68607cea334dbd')
+md5sums=('c4407d9e558a1eb6424cd024c91bd96f')
 
 package() {
   cd "$srcdir/$pkgname"


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

2017-10-16 Thread Laurent Carlier
Date: Monday, October 16, 2017 @ 15:59:32
  Author: lcarlier
Revision: 263091

archrelease: copy trunk to community-any

Added:
  playonlinux/repos/community-any/PKGBUILD
(from rev 263090, playonlinux/trunk/PKGBUILD)
Deleted:
  playonlinux/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 15:59:16 UTC (rev 263090)
+++ PKGBUILD2017-10-16 15:59:32 UTC (rev 263091)
@@ -1,31 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Contributor: K. Hampf 
-# Contributor: Skunnyk 
-
-pkgname=playonlinux
-pkgver=4.2.10
-pkgrel=1
-pkgdesc="GUI for managing Windows programs under linux"
-url="http://www.playonlinux.com/;
-license=('GPL')
-depends=('wine' 'imagemagick' 'xterm' 'wxpython' 'cabextract' 'unzip' 
'mesa-demos' 'gnupg'
- 'icoutils' 'xdg-user-dirs' 'libxmu' 'netcat' 'wget' 'p7zip')
-arch=('any')
-source=(http://www.playonlinux.com/script_files/PlayOnLinux/${pkgver/.0/}/PlayOnLinux_${pkgver/.0/}.tar.gz)
-options=(!strip)
-md5sums=('9869697c13010e88cf68607cea334dbd')
-
-package() {
-  cd "$srcdir/$pkgname"
-
-  install -d $pkgdir/usr/share/$pkgname
-  install -d $pkgdir/usr/bin 
-  cp -r $srcdir/$pkgname/ $pkgdir/usr/share/
-
-  echo "#!/bin/bash" > $pkgdir/usr/bin/$pkgname 
-  echo "/usr/share/$pkgname/$pkgname \"\$@\"" >> $pkgdir/usr/bin/$pkgname
-  chmod +x  $pkgdir/usr/bin/$pkgname
-
-  install -D -m644 $srcdir/$pkgname/etc/PlayOnLinux.desktop 
$pkgdir/usr/share/applications/playonlinux.desktop
-  sed -i "s/ %F//g" $pkgdir/usr/share/applications/playonlinux.desktop
-}

Copied: playonlinux/repos/community-any/PKGBUILD (from rev 263090, 
playonlinux/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 15:59:32 UTC (rev 263091)
@@ -0,0 +1,31 @@
+# Maintainer: Laurent Carlier 
+# Contributor: K. Hampf 
+# Contributor: Skunnyk 
+
+pkgname=playonlinux
+pkgver=4.2.12
+pkgrel=1
+pkgdesc="GUI for managing Windows programs under linux"
+url="http://www.playonlinux.com/;
+license=('GPL')
+depends=('wine' 'imagemagick' 'xterm' 'wxpython' 'cabextract' 'unzip' 
'mesa-demos' 'gnupg'
+ 'icoutils' 'xdg-user-dirs' 'libxmu' 'netcat' 'wget' 'p7zip')
+arch=('any')
+source=(http://www.playonlinux.com/script_files/PlayOnLinux/${pkgver/.0/}/PlayOnLinux_${pkgver/.0/}.tar.gz)
+options=(!strip)
+md5sums=('c4407d9e558a1eb6424cd024c91bd96f')
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  install -d $pkgdir/usr/share/$pkgname
+  install -d $pkgdir/usr/bin 
+  cp -r $srcdir/$pkgname/ $pkgdir/usr/share/
+
+  echo "#!/bin/bash" > $pkgdir/usr/bin/$pkgname 
+  echo "/usr/share/$pkgname/$pkgname \"\$@\"" >> $pkgdir/usr/bin/$pkgname
+  chmod +x  $pkgdir/usr/bin/$pkgname
+
+  install -D -m644 $srcdir/$pkgname/etc/PlayOnLinux.desktop 
$pkgdir/usr/share/applications/playonlinux.desktop
+  sed -i "s/ %F//g" $pkgdir/usr/share/applications/playonlinux.desktop
+}


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

2017-10-16 Thread Florian Pritz
Date: Monday, October 16, 2017 @ 15:32:55
  Author: bluewind
Revision: 308061

archrelease: copy trunk to testing-x86_64

Added:
  ceph/repos/testing-x86_64/
  ceph/repos/testing-x86_64/PKGBUILD
(from rev 308060, ceph/trunk/PKGBUILD)
  ceph/repos/testing-x86_64/PKGBUILD.v11
(from rev 308060, ceph/trunk/PKGBUILD.v11)
  ceph/repos/testing-x86_64/PKGBUILD.v12
(from rev 308060, ceph/trunk/PKGBUILD.v12)
  ceph/repos/testing-x86_64/ceph.sysusers
(from rev 308060, ceph/trunk/ceph.sysusers)
  ceph/repos/testing-x86_64/fix-ceph_disk-python-interpreter.patch
(from rev 308060, ceph/trunk/fix-ceph_disk-python-interpreter.patch)
  ceph/repos/testing-x86_64/fix-or-disable-broken-tests.patch
(from rev 308060, ceph/trunk/fix-or-disable-broken-tests.patch)
  ceph/repos/testing-x86_64/fix-python2-paths.patch
(from rev 308060, ceph/trunk/fix-python2-paths.patch)
  ceph/repos/testing-x86_64/fix-sphinx-binary-name.patch
(from rev 308060, ceph/trunk/fix-sphinx-binary-name.patch)
  ceph/repos/testing-x86_64/remove-distro-version-detection.patch
(from rev 308060, ceph/trunk/remove-distro-version-detection.patch)

+
 PKGBUILD   |  154 +++
 PKGBUILD.v11   |   92 +
 PKGBUILD.v12   |   91 +
 ceph.sysusers  |1 
 fix-ceph_disk-python-interpreter.patch |8 
 fix-or-disable-broken-tests.patch  |  313 +++
 fix-python2-paths.patch|   52 +
 fix-sphinx-binary-name.patch   |   11 +
 remove-distro-version-detection.patch  |   21 ++
 9 files changed, 743 insertions(+)

Copied: ceph/repos/testing-x86_64/PKGBUILD (from rev 308060, 
ceph/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-10-16 15:32:55 UTC (rev 308061)
@@ -0,0 +1,154 @@
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Thore Bödecker 
+
+pkgname=ceph
+pkgver=12.2.1
+pkgrel=1
+pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
+arch=('x86_64' 'i686')
+url='https://ceph.com/'
+license=('GPL')
+makedepends=('babeltrace>=1.5.3-1' 'bc' 'boost' 'boost-libs' 'cmake' 'cpio'
+  'crypto++' 'curl' 'cython' 'cython2' 'expat' 'fcgi' 'fuse2' 'gcc-libs' 'git'
+  'glibc' 'gperf' 'gperftools' 'gptfdisk' 'inetutils' 'jq' 'junit' 'keyutils'
+  'leveldb' 'libaio' 'libatomic_ops' 'libedit' 'libsystemd' 'libutil-linux'
+  'libxml2' 'lsb-release' 'lttng-ust>=2.10.0-8' 'lz4' 'ncurses' 'nss' 'parted'
+  'pcre' 'procps-ng' 'python2-cherrypy' 'python2-jinja'
+  'python2-lttngust>=2.10.0-8' 'python2-nose' 'python2-pecan' 'python2-pip'
+  'python2-prettytable' 'python2-pyopenssl' 'python2-setuptools'
+  'python2-sphinx' 'python2-tox' 'python2-virtualenv' 'python2-werkzeug'
+  'sed' 'snappy' 'socat' 'systemd' 'valgrind' 'xfsprogs' 'xmlstarlet' 'yasm'
+  'zlib' 'zstd')
+depends=('babeltrace' 'boost-libs' 'curl' 'fuse2' 'glibc' 'gperftools'
+  'keyutils' 'leveldb' 'libaio' 'libsystemd' 'libutil-linux' 'lsb-release'
+  'lttng-ust' 'ncurses' 'nss' 'python2' 'python2-cherrypy' 'python2-jinja'
+  'python2-pecan' 'python2-prettytable' 'python2-pyopenssl' 
'python2-setuptools'
+  'python2-werkzeug' 'snappy' 'xfsprogs')
+options=('emptydirs')
+source=("https://download.ceph.com/tarballs/${pkgname}-${pkgver}.tar.gz;
+'ceph.sysusers'
+'fix-ceph_disk-python-interpreter.patch'
+'fix-or-disable-broken-tests.patch'
+'fix-python2-paths.patch'
+'remove-distro-version-detection.patch')
+sha512sums=('ec2623c1f6ab563c6fd0bb5fd046c78528fdbedca7cde347c92a9b15005d2ab2b1a46d7294e93f56933386462f1066750285109aafb6bf94f7d5bcdb7214d8a8'
+
'4354001c1abd9a0c385ba7bd529e3638fb6660b6a88d4e49706d4ac21c81b8e829303a20fb5445730bdac18c4865efb10bc809c1cd56d743c12aa9a52e160049'
+
'7abd94a333fb0d6c9f7156d69ed6d4bf123f0f3030407f4347209d677b282e5023664d43e74a21a27b7856d3493ae469a17ea8a810331c7266018cc34eee4841'
+
'43cbd68841758d58d11ab9acfb04800bf8b34321503b8ebc3b02291c5e2de7a60e26dc0d5e99af75dae63aa7d03e3e9322aba7cbe3b4f1dfb5e7d01fc5b40cad'
+
'd5d9e8123833212f6cf0ecef209a5dd9b9a8ec70d780b5140884dc9f87690ec305fb2569c5d1da2b28deb05bd03caecc534acc9dc5ce7ec75e2580df4b5b2063'
+
'e2ed33e2ac37bfdb9597083388e1a87f10051e976033055d440b1a4bc2bd11148c29128fb9841771ca983c12fb36b343bcc04219dea87199321ceea9aa18b3cc')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+
+  # remove tests 

[arch-commits] Commit in ceph/trunk (8 files)

2017-10-16 Thread Florian Pritz
Date: Monday, October 16, 2017 @ 15:32:39
  Author: bluewind
Revision: 308060

upgpkg: ceph 12.2.1-1

ceph 12 by foxxx0

Added:
  ceph/trunk/fix-ceph_disk-python-interpreter.patch
  ceph/trunk/fix-or-disable-broken-tests.patch
  ceph/trunk/fix-python2-paths.patch
  ceph/trunk/fix-sphinx-binary-name.patch
  ceph/trunk/remove-distro-version-detection.patch
Modified:
  ceph/trunk/PKGBUILD
  ceph/trunk/ceph.sysusers
Deleted:
  ceph/trunk/01-ceph-detec-init.patch

+
 01-ceph-detec-init.patch   |   69 --
 PKGBUILD   |  171 +++-
 ceph.sysusers  |2 
 fix-ceph_disk-python-interpreter.patch |8 
 fix-or-disable-broken-tests.patch  |  313 +++
 fix-python2-paths.patch|   52 +
 fix-sphinx-binary-name.patch   |   11 +
 remove-distro-version-detection.patch  |   21 ++
 8 files changed, 521 insertions(+), 126 deletions(-)

Deleted: 01-ceph-detec-init.patch
===
--- 01-ceph-detec-init.patch2017-10-16 13:31:08 UTC (rev 308059)
+++ 01-ceph-detec-init.patch2017-10-16 15:32:39 UTC (rev 308060)
@@ -1,69 +0,0 @@
-commit c19cb3cd2756ba830edd92158a2913beaa6e24aa
-Author: Sébastien Luttringer 
-Date:   Sun Mar 26 16:35:13 2017 +0200
-
-Arch support
-
-diff --git a/src/ceph-detect-init/ceph_detect_init/__init__.py 
b/src/ceph-detect-init/ceph_detect_init/__init__.py
-index a2bcc7cf27..ca2f2d7975 100644
 a/src/ceph-detect-init/ceph_detect_init/__init__.py
-+++ b/src/ceph-detect-init/ceph_detect_init/__init__.py
-@@ -13,6 +13,7 @@
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- # GNU Library Public License for more details.
- #
-+from ceph_detect_init import arch
- from ceph_detect_init import centos
- from ceph_detect_init import debian
- from ceph_detect_init import exc
-@@ -21,6 +22,7 @@ from ceph_detect_init import rhel
- from ceph_detect_init import suse
- import logging
- import platform
-+import os
- 
- 
- def get(use_rhceph=False):
-@@ -49,6 +51,7 @@ def _get_distro(distro, use_rhceph=False):
- 
- distro = _normalized_distro_name(distro)
- distributions = {
-+'arch': arch,
- 'debian': debian,
- 'ubuntu': debian,
- 'linuxmint': debian,
-@@ -75,6 +78,8 @@ def _normalized_distro_name(distro):
- return 'suse'
- elif distro.startswith('centos'):
- return 'centos'
-+elif distro.startswith('arch'):
-+return 'arch'
- return distro
- 
- 
-@@ -103,6 +108,8 @@ def platform_information():
- else:
- codename = major
- 
-+elif os.path.exists("/etc/arch-release"):
-+return ("arch", None, "arch")
- return (
- str(distro).rstrip(),
- str(release).rstrip(),
-diff --git a/src/ceph-detect-init/ceph_detect_init/arch/__init__.py 
b/src/ceph-detect-init/ceph_detect_init/arch/__init__.py
-new file mode 100644
-index 00..425ce50bb2
 /dev/null
-+++ b/src/ceph-detect-init/ceph_detect_init/arch/__init__.py
-@@ -0,0 +1,11 @@
-+distro = None
-+release = None
-+codename = None
-+
-+
-+def choose_init():
-+"""Select a init system
-+
-+Returns the name of a init system (upstart, sysvinit ...).
-+"""
-+return 'systemd'

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:31:08 UTC (rev 308059)
+++ PKGBUILD2017-10-16 15:32:39 UTC (rev 308060)
@@ -1,28 +1,45 @@
-# $Id$
 # Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Thore Bödecker 
 
 pkgname=ceph
-pkgver=10.2.9
+pkgver=12.2.1
 pkgrel=1
 pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
 arch=('x86_64' 'i686')
 url='https://ceph.com/'
 license=('GPL')
-makedepends=('boost' 'systemd' 'xfsprogs' 'python2-sphinx' 'cython2' 'sed')
-depends=('boost-libs' 'curl' 'expat' 'fcgi' 'fuse2' 'gcc-libs' 'glibc'
-  'gperftools' 'keyutils' 'leveldb' 'libaio' 'libatomic_ops' 'libedit'
-  'libsystemd' 'libutil-linux' 'ncurses' 'nss' 'python2' 'snappy'
-  'python2-setuptools' 'xfsprogs')
+makedepends=('babeltrace>=1.5.3-1' 'bc' 'boost' 'boost-libs' 'cmake' 'cpio'
+  'crypto++' 'curl' 'cython' 'cython2' 'expat' 'fcgi' 'fuse2' 'gcc-libs' 'git'
+  'glibc' 'gperf' 'gperftools' 'gptfdisk' 'inetutils' 'jq' 'junit' 'keyutils'
+  'leveldb' 'libaio' 'libatomic_ops' 'libedit' 'libsystemd' 'libutil-linux'
+  'libxml2' 'lsb-release' 'lttng-ust>=2.10.0-8' 'lz4' 'ncurses' 'nss' 'parted'
+  'pcre' 'procps-ng' 'python2-cherrypy' 'python2-jinja'
+  'python2-lttngust>=2.10.0-8' 'python2-nose' 'python2-pecan' 'python2-pip'
+  'python2-prettytable' 'python2-pyopenssl' 'python2-setuptools'
+  'python2-sphinx' 'python2-tox' 'python2-virtualenv' 'python2-werkzeug'
+  'sed' 'snappy' 'socat' 'systemd' 'valgrind' 'xfsprogs' 

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

2017-10-16 Thread Jonathan Steel
Date: Monday, October 16, 2017 @ 13:46:31
  Author: jsteel
Revision: 263089

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 263088, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 13:46:21 UTC (rev 263088)
+++ PKGBUILD2017-10-16 13:46:31 UTC (rev 263089)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.11.168
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('a104b8aaf3dbff9436a04296998bea1f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 263088, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 13:46:31 UTC (rev 263089)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.11.170
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('200cc2a4b0bfe50515813b459169362b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2017-10-16 Thread Jonathan Steel
Date: Monday, October 16, 2017 @ 13:46:21
  Author: jsteel
Revision: 263088

upgpkg: aws-cli 1.11.170-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:46:10 UTC (rev 263087)
+++ PKGBUILD2017-10-16 13:46:21 UTC (rev 263088)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.168
+pkgver=1.11.170
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('a104b8aaf3dbff9436a04296998bea1f')
+md5sums=('200cc2a4b0bfe50515813b459169362b')
 
 build() {
   cd $pkgname-$pkgver


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

2017-10-16 Thread Jonathan Steel
Date: Monday, October 16, 2017 @ 13:46:10
  Author: jsteel
Revision: 263087

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 13:45:58 UTC (rev 263086)
+++ PKGBUILD2017-10-16 13:46:10 UTC (rev 263087)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.7.26
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('453e6cc1f190fd5e4744c7587c301fa0')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 263086, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 13:46:10 UTC (rev 263087)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.7.28
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('73230069b6a95d6c594695be6147129b')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-10-16 Thread Jonathan Steel
Date: Monday, October 16, 2017 @ 13:45:58
  Author: jsteel
Revision: 263086

upgpkg: python-botocore 1.7.28-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:43:27 UTC (rev 263085)
+++ PKGBUILD2017-10-16 13:45:58 UTC (rev 263086)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.7.26
+pkgver=1.7.28
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('453e6cc1f190fd5e4744c7587c301fa0')
+md5sums=('73230069b6a95d6c594695be6147129b')
 
 build() {
   cd botocore-$pkgver


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

2017-10-16 Thread Jonathan Steel
Date: Monday, October 16, 2017 @ 13:43:16
  Author: jsteel
Revision: 263084

upgpkg: clonezilla 3.27.16-1

Modified:
  clonezilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:14:08 UTC (rev 263083)
+++ PKGBUILD2017-10-16 13:43:16 UTC (rev 263084)
@@ -3,7 +3,7 @@
 # Contributor: M0Rf30
 
 pkgname=clonezilla
-pkgver=3.21.13
+pkgver=3.27.16
 pkgrel=1
 pkgdesc="ncurses partition and disk imaging/cloning program"
 arch=('any')
@@ -13,9 +13,9 @@
  'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip'
  'xz' 'pixz' 'lzop' 'ecryptfs-utils')
 backup=('etc/drbl/drbl-ocs.conf')
-source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver.tar.bz2
+source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver.tar.xz
 usrbin.patch)
-md5sums=('e07b06d52e3ac07832d14c10f23c566c'
+md5sums=('4beae63adc5d75632b2b2a07f0f095bc'
  'a976c9209f7bbccd352a9d0a5c8b41ae')
 
 prepare() {


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

2017-10-16 Thread Jonathan Steel
Date: Monday, October 16, 2017 @ 13:43:27
  Author: jsteel
Revision: 263085

archrelease: copy trunk to community-any

Added:
  clonezilla/repos/community-any/PKGBUILD
(from rev 263084, clonezilla/trunk/PKGBUILD)
  clonezilla/repos/community-any/usrbin.patch
(from rev 263084, clonezilla/trunk/usrbin.patch)
Deleted:
  clonezilla/repos/community-any/PKGBUILD
  clonezilla/repos/community-any/usrbin.patch

--+
 PKGBUILD |   62 -
 usrbin.patch |   26 +++
 2 files changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 13:43:16 UTC (rev 263084)
+++ PKGBUILD2017-10-16 13:43:27 UTC (rev 263085)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: M0Rf30
-
-pkgname=clonezilla
-pkgver=3.21.13
-pkgrel=1
-pkgdesc="ncurses partition and disk imaging/cloning program"
-arch=('any')
-url="http://clonezilla.org;
-license=('GPL2')
-depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted'
- 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip'
- 'xz' 'pixz' 'lzop' 'ecryptfs-utils')
-backup=('etc/drbl/drbl-ocs.conf')
-source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver.tar.bz2
-usrbin.patch)
-md5sums=('e07b06d52e3ac07832d14c10f23c566c'
- 'a976c9209f7bbccd352a9d0a5c8b41ae')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -Np0 -i "$srcdir"/usrbin.patch
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install  
-}

Copied: clonezilla/repos/community-any/PKGBUILD (from rev 263084, 
clonezilla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 13:43:27 UTC (rev 263085)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: M0Rf30
+
+pkgname=clonezilla
+pkgver=3.27.16
+pkgrel=1
+pkgdesc="ncurses partition and disk imaging/cloning program"
+arch=('any')
+url="http://clonezilla.org;
+license=('GPL2')
+depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted'
+ 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip'
+ 'xz' 'pixz' 'lzop' 'ecryptfs-utils')
+backup=('etc/drbl/drbl-ocs.conf')
+source=(http://free.nchc.org.tw/drbl-core/src/stable/$pkgname-$pkgver.tar.xz
+usrbin.patch)
+md5sums=('4beae63adc5d75632b2b2a07f0f095bc'
+ 'a976c9209f7bbccd352a9d0a5c8b41ae')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np0 -i "$srcdir"/usrbin.patch
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install  
+}

Deleted: usrbin.patch
===
--- usrbin.patch2017-10-16 13:43:16 UTC (rev 263084)
+++ usrbin.patch2017-10-16 13:43:27 UTC (rev 263085)
@@ -1,13 +0,0 @@
 Makefile.orig  2013-05-30 17:42:49.851418658 +0100
-+++ Makefile   2013-05-30 17:44:41.157482402 +0100
-@@ -18,8 +18,8 @@
- 
- install:
-   # install exec files
--  install -d ${DESTDIR}/usr/
--  cp -a sbin bin ${DESTDIR}/usr/
-+  install -d ${DESTDIR}/usr/bin
-+  cp -a sbin/* bin/* ${DESTDIR}/usr/bin/
- 
-   # install setup dir
-   install -d $(DESTDIR)/$(SHAREDIR)/

Copied: clonezilla/repos/community-any/usrbin.patch (from rev 263084, 
clonezilla/trunk/usrbin.patch)
===
--- usrbin.patch(rev 0)
+++ usrbin.patch2017-10-16 13:43:27 UTC (rev 263085)
@@ -0,0 +1,13 @@
+--- Makefile.orig  2013-05-30 17:42:49.851418658 +0100
 Makefile   2013-05-30 17:44:41.157482402 +0100
+@@ -18,8 +18,8 @@
+ 
+ install:
+   # install exec files
+-  install -d ${DESTDIR}/usr/
+-  cp -a sbin bin ${DESTDIR}/usr/
++  install -d ${DESTDIR}/usr/bin
++  cp -a sbin/* bin/* ${DESTDIR}/usr/bin/
+ 
+   # install setup dir
+   install -d $(DESTDIR)/$(SHAREDIR)/


[arch-commits] Commit in thin-provisioning-tools/repos (6 files)

2017-10-16 Thread Christian Hesse
Date: Monday, October 16, 2017 @ 13:31:08
  Author: eworm
Revision: 308059

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

Added:
  thin-provisioning-tools/repos/testing-i686/
  
thin-provisioning-tools/repos/testing-i686/0001-fix-build-with-testing-disabled.patch
(from rev 308058, 
thin-provisioning-tools/trunk/0001-fix-build-with-testing-disabled.patch)
  thin-provisioning-tools/repos/testing-i686/PKGBUILD
(from rev 308058, thin-provisioning-tools/trunk/PKGBUILD)
  thin-provisioning-tools/repos/testing-x86_64/
  
thin-provisioning-tools/repos/testing-x86_64/0001-fix-build-with-testing-disabled.patch
(from rev 308058, 
thin-provisioning-tools/trunk/0001-fix-build-with-testing-disabled.patch)
  thin-provisioning-tools/repos/testing-x86_64/PKGBUILD
(from rev 308058, thin-provisioning-tools/trunk/PKGBUILD)

---+
 testing-i686/0001-fix-build-with-testing-disabled.patch   |   35 
 testing-i686/PKGBUILD |   35 
 testing-x86_64/0001-fix-build-with-testing-disabled.patch |   35 
 testing-x86_64/PKGBUILD   |   35 
 4 files changed, 140 insertions(+)

Copied: 
thin-provisioning-tools/repos/testing-i686/0001-fix-build-with-testing-disabled.patch
 (from rev 308058, 
thin-provisioning-tools/trunk/0001-fix-build-with-testing-disabled.patch)
===
--- testing-i686/0001-fix-build-with-testing-disabled.patch 
(rev 0)
+++ testing-i686/0001-fix-build-with-testing-disabled.patch 2017-10-16 
13:31:08 UTC (rev 308059)
@@ -0,0 +1,35 @@
+From 8d75be81120b9cf172c95d0153c5f845ed804234 Mon Sep 17 00:00:00 2001
+From: Adam Sampson 
+Date: Mon, 16 Oct 2017 13:07:36 +0100
+Subject: [functional-tests] fix build with testing disabled (#88)
+
+The rule for lib/libft.so is only enabled with --enable-testing,
+so the default target shouldn't depend unconditionally on it.
+With the default configure options, the build failed with:
+make: *** No rule to make target 'lib/libft.so', needed by 'all'.  Stop.
+---
+ Makefile.in | 7 ++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index e745739..02b75dd 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -21,8 +21,13 @@ V=@
+ PROGRAMS=\
+   bin/pdata_tools
+ 
++ifeq ("@TESTING@", "yes")
++TESTLIBS=\
++  lib/libft.so
++endif
++
+ .PHONY: all
+-all: $(PROGRAMS) lib/libft.so
++all: $(PROGRAMS) $(TESTLIBS)
+ 
+ SOURCE=\
+   base/output_file_requirements.cc \
+-- 
+cgit v1.1-22-g1649
+

Copied: thin-provisioning-tools/repos/testing-i686/PKGBUILD (from rev 308058, 
thin-provisioning-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-10-16 13:31:08 UTC (rev 308059)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Contributor: Jason Hall 
+
+pkgname=thin-provisioning-tools
+pkgver=0.7.4
+pkgrel=1
+pkgdesc='Suite of tools for manipulating the metadata of the dm-thin 
device-mapper target'
+arch=('i686' 'x86_64')
+url="https://github.com/jthornber/thin-provisioning-tools;
+license=('GPL3')
+depends=('expat' 'gcc-libs' 'libaio')
+makedepends=('boost')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz;
+'0001-fix-build-with-testing-disabled.patch')
+sha256sums=('f65f84e653e182480dacad77c611e13cd6de1c354e02fb4b96db4d2f328c3904'
+'8f59d9076ed23d593f8671792804cbfeb8bdae5c996200e1269f27fa49a6b873')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 < "${srcdir}"/0001-fix-build-with-testing-disabled.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoconf
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" BINDIR="${pkgdir}"/usr/bin MANDIR=/usr/share/man 
install
+}
+

Copied: 
thin-provisioning-tools/repos/testing-x86_64/0001-fix-build-with-testing-disabled.patch
 (from rev 308058, 
thin-provisioning-tools/trunk/0001-fix-build-with-testing-disabled.patch)
===
--- testing-x86_64/0001-fix-build-with-testing-disabled.patch   
(rev 0)
+++ testing-x86_64/0001-fix-build-with-testing-disabled.patch   2017-10-16 
13:31:08 UTC (rev 308059)
@@ -0,0 +1,35 @@
+From 8d75be81120b9cf172c95d0153c5f845ed804234 Mon Sep 17 00:00:00 2001
+From: Adam Sampson 
+Date: Mon, 16 Oct 2017 13:07:36 +0100
+Subject: [functional-tests] fix build with testing disabled (#88)
+
+The rule for lib/libft.so is only enabled with --enable-testing,
+so the default target shouldn't depend unconditionally on it.

[arch-commits] Commit in thin-provisioning-tools/trunk (2 files)

2017-10-16 Thread Christian Hesse
Date: Monday, October 16, 2017 @ 13:30:58
  Author: eworm
Revision: 308058

upgpkg: thin-provisioning-tools 0.7.4-1

new upstream release

Added:
  thin-provisioning-tools/trunk/0001-fix-build-with-testing-disabled.patch
Modified:
  thin-provisioning-tools/trunk/PKGBUILD

+
 0001-fix-build-with-testing-disabled.patch |   35 +++
 PKGBUILD   |   15 ---
 2 files changed, 46 insertions(+), 4 deletions(-)

Added: 0001-fix-build-with-testing-disabled.patch
===
--- 0001-fix-build-with-testing-disabled.patch  (rev 0)
+++ 0001-fix-build-with-testing-disabled.patch  2017-10-16 13:30:58 UTC (rev 
308058)
@@ -0,0 +1,35 @@
+From 8d75be81120b9cf172c95d0153c5f845ed804234 Mon Sep 17 00:00:00 2001
+From: Adam Sampson 
+Date: Mon, 16 Oct 2017 13:07:36 +0100
+Subject: [functional-tests] fix build with testing disabled (#88)
+
+The rule for lib/libft.so is only enabled with --enable-testing,
+so the default target shouldn't depend unconditionally on it.
+With the default configure options, the build failed with:
+make: *** No rule to make target 'lib/libft.so', needed by 'all'.  Stop.
+---
+ Makefile.in | 7 ++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index e745739..02b75dd 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -21,8 +21,13 @@ V=@
+ PROGRAMS=\
+   bin/pdata_tools
+ 
++ifeq ("@TESTING@", "yes")
++TESTLIBS=\
++  lib/libft.so
++endif
++
+ .PHONY: all
+-all: $(PROGRAMS) lib/libft.so
++all: $(PROGRAMS) $(TESTLIBS)
+ 
+ SOURCE=\
+   base/output_file_requirements.cc \
+-- 
+cgit v1.1-22-g1649
+

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:48:38 UTC (rev 308057)
+++ PKGBUILD2017-10-16 13:30:58 UTC (rev 308058)
@@ -3,8 +3,8 @@
 # Contributor: Jason Hall 
 
 pkgname=thin-provisioning-tools
-pkgver=0.7.3
-pkgrel=2
+pkgver=0.7.4
+pkgrel=1
 pkgdesc='Suite of tools for manipulating the metadata of the dm-thin 
device-mapper target'
 arch=('i686' 'x86_64')
 url="https://github.com/jthornber/thin-provisioning-tools;
@@ -11,9 +11,16 @@
 license=('GPL3')
 depends=('expat' 'gcc-libs' 'libaio')
 makedepends=('boost')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('bb30c432afcbd6105c694c8e323d490d2fa54deeb55df82161303094ef85039b')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz;
+'0001-fix-build-with-testing-disabled.patch')
+sha256sums=('f65f84e653e182480dacad77c611e13cd6de1c354e02fb4b96db4d2f328c3904'
+'8f59d9076ed23d593f8671792804cbfeb8bdae5c996200e1269f27fa49a6b873')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 < "${srcdir}"/0001-fix-build-with-testing-disabled.patch
+}
+
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   autoconf


[arch-commits] Commit in nodejs-lts-boron/trunk (PKGBUILD)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 13:13:58
  Author: bgyorgy
Revision: 263082

upgpkg: nodejs-lts-boron 6.11.4-1

Upstream update, add versioned provide to nodejs (FS#54903)

Modified:
  nodejs-lts-boron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:02:00 UTC (rev 263081)
+++ PKGBUILD2017-10-16 13:13:58 UTC (rev 263082)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
 
 pkgname=nodejs-lts-boron
-pkgver=6.11.3
+pkgver=6.11.4
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
 arch=('i686' 'x86_64')
@@ -10,11 +10,11 @@
 depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
-provides=('nodejs')
+provides=("nodejs=$pkgver")
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
 # "${url}/dist/v${pkgver}/SHASUMS256.txt"{,.sig} or .asc to check
-sha256sums=('5f09b77010cb3ec4e321ecdc30beb6b49d8a2843155b7f0ad97202ec308ab6bc')
+sha256sums=('4c2f0435e3088136ac4bc75236a7717f189d590a13f490065e7b3b8e5aacd450')
 #validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8') # Myles Borins 

 
 prepare() {
@@ -59,5 +59,5 @@
 
   make DESTDIR="${pkgdir}" install
 
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/nodejs/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
 }


[arch-commits] Commit in nodejs-lts-boron/repos (4 files)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 13:14:08
  Author: bgyorgy
Revision: 263083

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

Added:
  nodejs-lts-boron/repos/community-i686/PKGBUILD
(from rev 263082, nodejs-lts-boron/trunk/PKGBUILD)
  nodejs-lts-boron/repos/community-x86_64/PKGBUILD
(from rev 263082, nodejs-lts-boron/trunk/PKGBUILD)
Deleted:
  nodejs-lts-boron/repos/community-i686/PKGBUILD
  nodejs-lts-boron/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 13:13:58 UTC (rev 263082)
+++ community-i686/PKGBUILD 2017-10-16 13:14:08 UTC (rev 263083)
@@ -1,63 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-
-pkgname=nodejs-lts-boron
-pkgver=6.11.3
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
-arch=('i686' 'x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-provides=('nodejs')
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
-# "${url}/dist/v${pkgver}/SHASUMS256.txt"{,.sig} or .asc to check
-sha256sums=('5f09b77010cb3ec4e321ecdc30beb6b49d8a2843155b7f0ad97202ec308ab6bc')
-#validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8') # Myles Borins 

-
-prepare() {
-  cd node-v${pkgver}
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  # At least two expected failures because of OpenSSL 1.1 vs 1.0
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/nodejs/LICENSE
-}

Copied: nodejs-lts-boron/repos/community-i686/PKGBUILD (from rev 263082, 
nodejs-lts-boron/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 13:14:08 UTC (rev 263083)
@@ -0,0 +1,63 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=nodejs-lts-boron
+pkgver=6.11.4
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
+arch=('i686' 'x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz")
+# "${url}/dist/v${pkgver}/SHASUMS256.txt"{,.sig} or .asc to check
+sha256sums=('4c2f0435e3088136ac4bc75236a7717f189d590a13f490065e7b3b8e5aacd450')
+#validpgpkeys=('C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8') # Myles Borins 

+
+prepare() {
+  cd node-v${pkgver}
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  # At least two expected failures because of OpenSSL 1.1 vs 1.0
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-v${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE 

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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 13:01:32
  Author: felixonmars
Revision: 263080

upgpkg: deepin-system-monitor 1.3.1-1

Modified:
  deepin-system-monitor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 13:00:17 UTC (rev 263079)
+++ PKGBUILD2017-10-16 13:01:32 UTC (rev 263080)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-system-monitor
-pkgver=1.3
+pkgver=1.3.1
 pkgrel=1
 pkgdesc='A more user-friendly system monitor'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 groups=('deepin')
 install=deepin-system-monitor.install
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-system-monitor/archive/$pkgver.tar.gz;)
-sha512sums=('ead92d5e11ef527e0aef8b861ad496ee8a5fa533925029b177ae3f8b47fb41cb53bb47ac48f61ebc566aa739e2c785f9aed52b213b0c786f8dfcd6cf5ea3feb9')
+sha512sums=('2402b635fec2226a903de5b26bf88cdb1b9207d14e904252f5a169a08606c5012af4758b86a0c2bf959918e3f31c12bd6efb11dc23555e90bd4db3e0488f2d4f')
 
 prepare() {
   cd deepin-system-monitor-$pkgver


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 13:02:00
  Author: felixonmars
Revision: 263081

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

Added:
  deepin-system-monitor/repos/community-testing-i686/
  deepin-system-monitor/repos/community-testing-i686/PKGBUILD
(from rev 263080, deepin-system-monitor/trunk/PKGBUILD)
  
deepin-system-monitor/repos/community-testing-i686/deepin-system-monitor.install
(from rev 263080, deepin-system-monitor/trunk/deepin-system-monitor.install)
  deepin-system-monitor/repos/community-testing-x86_64/
  deepin-system-monitor/repos/community-testing-x86_64/PKGBUILD
(from rev 263080, deepin-system-monitor/trunk/PKGBUILD)
  
deepin-system-monitor/repos/community-testing-x86_64/deepin-system-monitor.install
(from rev 263080, deepin-system-monitor/trunk/deepin-system-monitor.install)

+
 community-testing-i686/PKGBUILD|   35 +++
 community-testing-i686/deepin-system-monitor.install   |7 +++
 community-testing-x86_64/PKGBUILD  |   35 +++
 community-testing-x86_64/deepin-system-monitor.install |7 +++
 4 files changed, 84 insertions(+)

Copied: deepin-system-monitor/repos/community-testing-i686/PKGBUILD (from rev 
263080, deepin-system-monitor/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-16 13:02:00 UTC (rev 263081)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-system-monitor
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='A more user-friendly system monitor'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-system-monitor;
+license=('GPL3')
+depends=('dtkwidget' 'dtkwm' 'procps-ng' 'nethogs' 'libcap')
+makedepends=('qt5-tools')
+groups=('deepin')
+install=deepin-system-monitor.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-system-monitor/archive/$pkgver.tar.gz;)
+sha512sums=('2402b635fec2226a903de5b26bf88cdb1b9207d14e904252f5a169a08606c5012af4758b86a0c2bf959918e3f31c12bd6efb11dc23555e90bd4db3e0488f2d4f')
+
+prepare() {
+  cd deepin-system-monitor-$pkgver
+  rm -r nethogs
+  sed -i 's|error("Build nethogs static library failed.")||' 
deepin-system-monitor.pro
+}
+
+build() {
+  cd deepin-system-monitor-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-system-monitor-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: 
deepin-system-monitor/repos/community-testing-i686/deepin-system-monitor.install
 (from rev 263080, deepin-system-monitor/trunk/deepin-system-monitor.install)
===
--- community-testing-i686/deepin-system-monitor.install
(rev 0)
+++ community-testing-i686/deepin-system-monitor.install2017-10-16 
13:02:00 UTC (rev 263081)
@@ -0,0 +1,7 @@
+post_install() {
+  setcap cap_kill,cap_net_raw,cap_dac_read_search,cap_sys_ptrace+ep 
usr/bin/deepin-system-monitor
+}
+
+post_upgrade() {
+  post_install
+}

Copied: deepin-system-monitor/repos/community-testing-x86_64/PKGBUILD (from rev 
263080, deepin-system-monitor/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-10-16 13:02:00 UTC (rev 263081)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-system-monitor
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='A more user-friendly system monitor'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-system-monitor;
+license=('GPL3')
+depends=('dtkwidget' 'dtkwm' 'procps-ng' 'nethogs' 'libcap')
+makedepends=('qt5-tools')
+groups=('deepin')
+install=deepin-system-monitor.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-system-monitor/archive/$pkgver.tar.gz;)
+sha512sums=('2402b635fec2226a903de5b26bf88cdb1b9207d14e904252f5a169a08606c5012af4758b86a0c2bf959918e3f31c12bd6efb11dc23555e90bd4db3e0488f2d4f')
+
+prepare() {
+  cd deepin-system-monitor-$pkgver
+  rm -r nethogs
+  sed -i 's|error("Build nethogs static library failed.")||' 
deepin-system-monitor.pro
+}
+
+build() {
+  cd deepin-system-monitor-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-system-monitor-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: 
deepin-system-monitor/repos/community-testing-x86_64/deepin-system-monitor.install
 (from rev 263080, deepin-system-monitor/trunk/deepin-system-monitor.install)

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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 13:00:17
  Author: felixonmars
Revision: 263079

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 12:59:39 UTC (rev 263078)
+++ community-i686/PKGBUILD 2017-10-16 13:00:17 UTC (rev 263079)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-picker
-pkgver=0.4
-pkgrel=1
-pkgdesc='Color picker tool for deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/manateelazycat/deepin-picker;
-license=('GPL3')
-depends=('dtkwidget' 'qt5-svg')
-makedepends=('qt5-tools' 'deepin-gettext-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-picker/archive/$pkgver.tar.gz;)
-sha512sums=('9002ae5ae933f167e24d5b04bf8c2b84119d6a5fcf15e0655e9b03f809db1ddee31d2651a1c91bcbf18898530110548b76864896140f0e307b4770d0536743d2')
-
-build() {
-  cd deepin-picker-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-picker-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-picker/repos/community-i686/PKGBUILD (from rev 263078, 
deepin-picker/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 13:00:17 UTC (rev 263079)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-picker
+pkgver=1.0
+pkgrel=1
+pkgdesc='Color picker tool for deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/manateelazycat/deepin-picker;
+license=('GPL3')
+depends=('dtkwidget' 'qt5-svg')
+makedepends=('qt5-tools' 'deepin-gettext-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-picker/archive/$pkgver.tar.gz;)
+sha512sums=('925746f6d4a93e38bbc2f595de03eec4b906a36cb1822aef0eb5ba39badcb35c6de252bb40a9c804c62e32e7ac317074bff60541d51fe15c693b880cb4fa8fa9')
+
+build() {
+  cd deepin-picker-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-picker-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-10-16 12:59:39 UTC (rev 263078)
+++ community-x86_64/PKGBUILD   2017-10-16 13:00:17 UTC (rev 263079)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-picker
-pkgver=0.4
-pkgrel=1
-pkgdesc='Color picker tool for deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/manateelazycat/deepin-picker;
-license=('GPL3')
-depends=('dtkwidget' 'qt5-svg')
-makedepends=('qt5-tools' 'deepin-gettext-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-picker/archive/$pkgver.tar.gz;)
-sha512sums=('9002ae5ae933f167e24d5b04bf8c2b84119d6a5fcf15e0655e9b03f809db1ddee31d2651a1c91bcbf18898530110548b76864896140f0e307b4770d0536743d2')
-
-build() {
-  cd deepin-picker-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-picker-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-picker/repos/community-x86_64/PKGBUILD (from rev 263078, 
deepin-picker/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-10-16 13:00:17 UTC (rev 263079)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-picker
+pkgver=1.0
+pkgrel=1
+pkgdesc='Color picker tool for deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/manateelazycat/deepin-picker;
+license=('GPL3')
+depends=('dtkwidget' 'qt5-svg')
+makedepends=('qt5-tools' 'deepin-gettext-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-picker/archive/$pkgver.tar.gz;)

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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:59:39
  Author: felixonmars
Revision: 263078

upgpkg: deepin-picker 1.0-1

Modified:
  deepin-picker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:58:15 UTC (rev 263077)
+++ PKGBUILD2017-10-16 12:59:39 UTC (rev 263078)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-picker
-pkgver=0.4
+pkgver=1.0
 pkgrel=1
 pkgdesc='Color picker tool for deepin'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('qt5-tools' 'deepin-gettext-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-picker/archive/$pkgver.tar.gz;)
-sha512sums=('9002ae5ae933f167e24d5b04bf8c2b84119d6a5fcf15e0655e9b03f809db1ddee31d2651a1c91bcbf18898530110548b76864896140f0e307b4770d0536743d2')
+sha512sums=('925746f6d4a93e38bbc2f595de03eec4b906a36cb1822aef0eb5ba39badcb35c6de252bb40a9c804c62e32e7ac317074bff60541d51fe15c693b880cb4fa8fa9')
 
 build() {
   cd deepin-picker-$pkgver


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:58:15
  Author: felixonmars
Revision: 263077

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

Added:
  deepin-screen-recorder/repos/community-i686/PKGBUILD
(from rev 263076, deepin-screen-recorder/trunk/PKGBUILD)
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD
(from rev 263076, deepin-screen-recorder/trunk/PKGBUILD)
Deleted:
  deepin-screen-recorder/repos/community-i686/PKGBUILD
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 12:57:38 UTC (rev 263076)
+++ community-i686/PKGBUILD 2017-10-16 12:58:15 UTC (rev 263077)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screen-recorder
-pkgver=2.6
-pkgrel=1
-pkgdesc='Deepin Screen Recorder'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-screen-recorder;
-license=('GPL3')
-depends=('dtkwidget' 'dtkwm' 'byzanz' 'ffmpeg')
-makedepends=('qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-screen-recorder/archive/$pkgver.tar.gz;)
-sha512sums=('a7510f4392ebb104cb2825b18ab7c5bdb0007489a5222849e4389262ab34fce331d5470ac0748a97317443e5e71709562e81325ece2f18f4388315670f992fa7')
-
-build(){
-  cd deepin-screen-recorder-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screen-recorder-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-screen-recorder/repos/community-i686/PKGBUILD (from rev 263076, 
deepin-screen-recorder/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 12:58:15 UTC (rev 263077)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screen-recorder
+pkgver=2.6.1
+pkgrel=1
+pkgdesc='Deepin Screen Recorder'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-screen-recorder;
+license=('GPL3')
+depends=('dtkwidget' 'dtkwm' 'byzanz' 'ffmpeg')
+makedepends=('qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-screen-recorder/archive/$pkgver.tar.gz;)
+sha512sums=('541f217e0f79e8e2defa2851e4c1f50853f86da573f7d5cc54f184182f1a3af87deabcafe67847ce330c494dbb5aeba0b11e1941de18bdf4c8d4eb081f1b3c11')
+
+build(){
+  cd deepin-screen-recorder-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screen-recorder-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-10-16 12:57:38 UTC (rev 263076)
+++ community-x86_64/PKGBUILD   2017-10-16 12:58:15 UTC (rev 263077)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screen-recorder
-pkgver=2.6
-pkgrel=1
-pkgdesc='Deepin Screen Recorder'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-screen-recorder;
-license=('GPL3')
-depends=('dtkwidget' 'dtkwm' 'byzanz' 'ffmpeg')
-makedepends=('qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-screen-recorder/archive/$pkgver.tar.gz;)
-sha512sums=('a7510f4392ebb104cb2825b18ab7c5bdb0007489a5222849e4389262ab34fce331d5470ac0748a97317443e5e71709562e81325ece2f18f4388315670f992fa7')
-
-build(){
-  cd deepin-screen-recorder-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screen-recorder-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-screen-recorder/repos/community-x86_64/PKGBUILD (from rev 
263076, deepin-screen-recorder/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-10-16 12:58:15 UTC (rev 263077)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screen-recorder
+pkgver=2.6.1
+pkgrel=1
+pkgdesc='Deepin Screen Recorder'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-screen-recorder;
+license=('GPL3')
+depends=('dtkwidget' 'dtkwm' 

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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:57:38
  Author: felixonmars
Revision: 263076

upgpkg: deepin-screen-recorder 2.6.1-1

Modified:
  deepin-screen-recorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:56:44 UTC (rev 263075)
+++ PKGBUILD2017-10-16 12:57:38 UTC (rev 263076)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-screen-recorder
-pkgver=2.6
+pkgver=2.6.1
 pkgrel=1
 pkgdesc='Deepin Screen Recorder'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/manateelazycat/deepin-screen-recorder/archive/$pkgver.tar.gz;)
-sha512sums=('a7510f4392ebb104cb2825b18ab7c5bdb0007489a5222849e4389262ab34fce331d5470ac0748a97317443e5e71709562e81325ece2f18f4388315670f992fa7')
+sha512sums=('541f217e0f79e8e2defa2851e4c1f50853f86da573f7d5cc54f184182f1a3af87deabcafe67847ce330c494dbb5aeba0b11e1941de18bdf4c8d4eb081f1b3c11')
 
 build(){
   cd deepin-screen-recorder-$pkgver


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:56:09
  Author: felixonmars
Revision: 263074

upgpkg: dtkwidget 2.0.1-1

Modified:
  dtkwidget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:55:07 UTC (rev 263073)
+++ PKGBUILD2017-10-16 12:56:09 UTC (rev 263074)
@@ -4,18 +4,19 @@
 # Contributor: Xu Fasheng 
 
 pkgname=dtkwidget
-pkgver=2.0.0
-pkgrel=3
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='Deepin graphical user interface library'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dtkwidget;
 license=('GPL3')
-depends=('dtkcore' 'gsettings-qt' 'qt5-multimedia' 'qt5-x11extras' 
'startup-notification')
+depends=('deepin-qt-dbus-factory' 'dtkcore' 'librsvg' 'gsettings-qt' 
'qt5-multimedia' 'qt5-svg'
+ 'qt5-x11extras' 'startup-notification')
 makedepends=('qt5-tools')
 replaces=('deepin-tool-kit')
 conflicts=('deepin-tool-kit<0.3.4')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
-sha512sums=('47f1bc8d13e3773e4c9584c7e9092435275a40cf01a20ecf3517f21856a89bdcd3903da72b9e4e36fda01f9a9e97623950cfcd8a77912d741ab2d8d7b43fb091')
+sha512sums=('3ddc48556ecc105dffa0f7f5281d7304419273e34731259079931e09545a7b4a47606c288c53c1ab50a6995d59c9446573b206a6522d9767a3cb9071ce1a7eaa')
 
 build() {
   cd dtkwidget-$pkgver


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:56:44
  Author: felixonmars
Revision: 263075

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

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

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

Copied: dtkwidget/repos/community-testing-i686/PKGBUILD (from rev 263074, 
dtkwidget/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-16 12:56:44 UTC (rev 263075)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwidget
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Deepin graphical user interface library'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtkwidget;
+license=('GPL3')
+depends=('deepin-qt-dbus-factory' 'dtkcore' 'librsvg' 'gsettings-qt' 
'qt5-multimedia' 'qt5-svg'
+ 'qt5-x11extras' 'startup-notification')
+makedepends=('qt5-tools')
+replaces=('deepin-tool-kit')
+conflicts=('deepin-tool-kit<0.3.4')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
+sha512sums=('3ddc48556ecc105dffa0f7f5281d7304419273e34731259079931e09545a7b4a47606c288c53c1ab50a6995d59c9446573b206a6522d9767a3cb9071ce1a7eaa')
+
+build() {
+  cd dtkwidget-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwidget-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: dtkwidget/repos/community-testing-x86_64/PKGBUILD (from rev 263074, 
dtkwidget/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-10-16 12:56:44 UTC (rev 263075)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwidget
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Deepin graphical user interface library'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtkwidget;
+license=('GPL3')
+depends=('deepin-qt-dbus-factory' 'dtkcore' 'librsvg' 'gsettings-qt' 
'qt5-multimedia' 'qt5-svg'
+ 'qt5-x11extras' 'startup-notification')
+makedepends=('qt5-tools')
+replaces=('deepin-tool-kit')
+conflicts=('deepin-tool-kit<0.3.4')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
+sha512sums=('3ddc48556ecc105dffa0f7f5281d7304419273e34731259079931e09545a7b4a47606c288c53c1ab50a6995d59c9446573b206a6522d9767a3cb9071ce1a7eaa')
+
+build() {
+  cd dtkwidget-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwidget-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:55:07
  Author: felixonmars
Revision: 263073

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 12:54:31 UTC (rev 263072)
+++ community-i686/PKGBUILD 2017-10-16 12:55:07 UTC (rev 263073)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-terminal
-pkgver=2.6.4
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-terminal;
-license=('GPL3')
-depends=('libsecret' 'libgee' 'libwnck3' 'expect' 'deepin-shortcut-viewer' 
'deepin-menu'
- 'deepin-manual')
-makedepends=('vala' 'cmake' 'intltool' 'gobject-introspection' 'gperf')
-groups=('deepin-extra')
-#options=(!emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('864b344a56936944b881a4df1619880098fff27175ba3ceda5f913d24c3036cac8b1838c3f211b48bcf1b4f7553597fdbfeda6d61550be9caa479d9972b192ff')
-
-prepare() {
-  mkdir -p build
-
-  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' 
deepin-terminal-$pkgver/project_path.c
-}
-
-build() {
-  cd build
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-../deepin-terminal-$pkgver
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-  ln -s deepin-terminal "$pkgdir"/usr/bin/x-terminal-emulator
-}

Copied: deepin-terminal/repos/community-i686/PKGBUILD (from rev 263072, 
deepin-terminal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 12:55:07 UTC (rev 263073)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-terminal
+pkgver=2.7
+pkgrel=1
+pkgdesc='Default terminal emulation application for Deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-terminal;
+license=('GPL3')
+depends=('libsecret' 'libgee' 'libwnck3' 'expect' 'deepin-shortcut-viewer' 
'deepin-menu'
+ 'deepin-manual')
+makedepends=('vala' 'cmake' 'intltool' 'gobject-introspection' 'gperf')
+groups=('deepin-extra')
+#options=(!emptydirs)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
+sha512sums=('b9c69e51d6fd52ccf9d6e13cd1d817b12b650527d942e0f091f4fa258700a9ec69ef144b0f9598945819ebc7f83f80f93602af5a7706671627ccafe3f901a5f5')
+
+prepare() {
+  mkdir -p build
+
+  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' 
deepin-terminal-$pkgver/project_path.c
+}
+
+build() {
+  cd build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+../deepin-terminal-$pkgver
+  make
+}
+
+package() {
+  make -C build DESTDIR="$pkgdir" install
+  ln -s deepin-terminal "$pkgdir"/usr/bin/x-terminal-emulator
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-10-16 12:54:31 UTC (rev 263072)
+++ community-x86_64/PKGBUILD   2017-10-16 12:55:07 UTC (rev 263073)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-terminal
-pkgver=2.6.4
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-terminal;
-license=('GPL3')
-depends=('libsecret' 'libgee' 'libwnck3' 'expect' 'deepin-shortcut-viewer' 
'deepin-menu'
- 'deepin-manual')
-makedepends=('vala' 'cmake' 'intltool' 'gobject-introspection' 'gperf')
-groups=('deepin-extra')
-#options=(!emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('864b344a56936944b881a4df1619880098fff27175ba3ceda5f913d24c3036cac8b1838c3f211b48bcf1b4f7553597fdbfeda6d61550be9caa479d9972b192ff')
-
-prepare() 

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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:54:31
  Author: felixonmars
Revision: 263072

upgpkg: deepin-terminal 2.7-1

Modified:
  deepin-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:48:59 UTC (rev 263071)
+++ PKGBUILD2017-10-16 12:54:31 UTC (rev 263072)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-terminal
-pkgver=2.6.4
+pkgver=2.7
 pkgrel=1
 pkgdesc='Default terminal emulation application for Deepin'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 groups=('deepin-extra')
 #options=(!emptydirs)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('864b344a56936944b881a4df1619880098fff27175ba3ceda5f913d24c3036cac8b1838c3f211b48bcf1b4f7553597fdbfeda6d61550be9caa479d9972b192ff')
+sha512sums=('b9c69e51d6fd52ccf9d6e13cd1d817b12b650527d942e0f091f4fa258700a9ec69ef144b0f9598945819ebc7f83f80f93602af5a7706671627ccafe3f901a5f5')
 
 prepare() {
   mkdir -p build


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:48:59
  Author: felixonmars
Revision: 263071

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

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

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

Copied: dtkwm/repos/community-testing-i686/PKGBUILD (from rev 263070, 
dtkwm/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-16 12:48:59 UTC (rev 263071)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwm
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Deepin Tool Kit Wm'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtkwm;
+license=('GPL3')
+depends=('dtkcore' 'qt5-x11extras')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwm/archive/$pkgver.tar.gz;)
+sha512sums=('227a69a6e4248a84cfff1cde25b6810a3f7de376f469ee323353a1d15660aea36f47d67e2eb98aef929000d47a44681fba7ea1b12f4494e445bf997ad1fb4932')
+
+build() {
+  cd dtkwm-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwm-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: dtkwm/repos/community-testing-x86_64/PKGBUILD (from rev 263070, 
dtkwm/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-10-16 12:48:59 UTC (rev 263071)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwm
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Deepin Tool Kit Wm'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtkwm;
+license=('GPL3')
+depends=('dtkcore' 'qt5-x11extras')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwm/archive/$pkgver.tar.gz;)
+sha512sums=('227a69a6e4248a84cfff1cde25b6810a3f7de376f469ee323353a1d15660aea36f47d67e2eb98aef929000d47a44681fba7ea1b12f4494e445bf997ad1fb4932')
+
+build() {
+  cd dtkwm-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwm-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:48:29
  Author: felixonmars
Revision: 263070

upgpkg: dtkwm 2.0.1-1

Modified:
  dtkwm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:48:02 UTC (rev 263069)
+++ PKGBUILD2017-10-16 12:48:29 UTC (rev 263070)
@@ -4,8 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=dtkwm
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='Deepin Tool Kit Wm'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dtkwm;
@@ -13,7 +13,7 @@
 depends=('dtkcore' 'qt5-x11extras')
 makedepends=('qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwm/archive/$pkgver.tar.gz;)
-sha512sums=('de98dd26a13ecdc2261d4c1598d984fdacec2898ffd6584543e83d8a7171e7c6ae7ce9d5fc62111eaf2e079cb7328f21ba65e61d46265412247761df454a3c94')
+sha512sums=('227a69a6e4248a84cfff1cde25b6810a3f7de376f469ee323353a1d15660aea36f47d67e2eb98aef929000d47a44681fba7ea1b12f4494e445bf997ad1fb4932')
 
 build() {
   cd dtkwm-$pkgver


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

2017-10-16 Thread Antonio Rojas
Date: Monday, October 16, 2017 @ 12:48:38
  Author: arojas
Revision: 308057

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

Added:
  qqc2-desktop-style/repos/extra-i686/PKGBUILD
(from rev 308056, qqc2-desktop-style/trunk/PKGBUILD)
  qqc2-desktop-style/repos/extra-x86_64/PKGBUILD
(from rev 308056, qqc2-desktop-style/trunk/PKGBUILD)
Deleted:
  qqc2-desktop-style/repos/extra-i686/PKGBUILD
  qqc2-desktop-style/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-16 12:48:16 UTC (rev 308056)
+++ extra-i686/PKGBUILD 2017-10-16 12:48:38 UTC (rev 308057)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=qqc2-desktop-style
-pkgver=5.39.0
-pkgrel=1
-pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
-arch=(i686 x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-groups=(kf5)
-depends=(kirigami2 kiconthemes)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('fb8818b22dbc1f47c38bef488543f025ec5da810e84f5ed732b08969338411e1'
-'SKIP')
-validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: qqc2-desktop-style/repos/extra-i686/PKGBUILD (from rev 308056, 
qqc2-desktop-style/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-10-16 12:48:38 UTC (rev 308057)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=qqc2-desktop-style
+pkgver=5.39.0
+pkgrel=1
+pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+groups=(kf5)
+depends=(kirigami2 kiconthemes)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('fb8818b22dbc1f47c38bef488543f025ec5da810e84f5ed732b08969338411e1'
+'SKIP')
+validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-10-16 12:48:16 UTC (rev 308056)
+++ extra-x86_64/PKGBUILD   2017-10-16 12:48:38 UTC (rev 308057)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=qqc2-desktop-style
-pkgver=5.39.0
-pkgrel=1
-pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
-arch=(i686 x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-groups=(kf5)
-depends=(kirigami2 kiconthemes)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('fb8818b22dbc1f47c38bef488543f025ec5da810e84f5ed732b08969338411e1'
-'SKIP')
-validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: qqc2-desktop-style/repos/extra-x86_64/PKGBUILD (from rev 308056, 
qqc2-desktop-style/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-10-16 12:48:38 UTC (rev 308057)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=qqc2-desktop-style
+pkgver=5.39.0
+pkgrel=1
+pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+groups=(kf5)
+depends=(kirigami2 kiconthemes)
+makedepends=(extra-cmake-modules)

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

2017-10-16 Thread Antonio Rojas
Date: Monday, October 16, 2017 @ 12:48:16
  Author: arojas
Revision: 308056

Fix source URL (FS#56013)

Modified:
  qqc2-desktop-style/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:13:08 UTC (rev 308055)
+++ PKGBUILD2017-10-16 12:48:16 UTC (rev 308056)
@@ -10,7 +10,7 @@
 groups=(kf5)
 depends=(kirigami2 kiconthemes)
 makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('fb8818b22dbc1f47c38bef488543f025ec5da810e84f5ed732b08969338411e1'
 'SKIP')
 validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure 



[arch-commits] Commit in python-execnet/repos (2 files)

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:48:02
  Author: felixonmars
Revision: 263069

archrelease: copy trunk to community-testing-any

Added:
  python-execnet/repos/community-testing-any/
  python-execnet/repos/community-testing-any/PKGBUILD
(from rev 263068, python-execnet/trunk/PKGBUILD)

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

Copied: python-execnet/repos/community-testing-any/PKGBUILD (from rev 263068, 
python-execnet/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-10-16 12:48:02 UTC (rev 263069)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-execnet
+pkgname=('python-execnet' 'python2-execnet')
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Rapid multi-Python deployment"
+arch=('any')
+license=('MIT')
+url="http://codespeak.net/execnet;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-apipkg' 
'python2-apipkg')
+checkdepends=('python-pytest-timeout' 'python2-pytest-timeout' 'procps-ng' 
'openssh' 'pypy')
+source=("https://pypi.io/packages/source/e/execnet/execnet-$pkgver.tar.gz;)
+sha512sums=('ca2b571fafdf8f68b3cc7a04ee326e3255828d4cde28ead65d0cef325569c3a6dee09359e525152248038de65326ffc6b75c8362f53aa5c0b3f736eb596cb2d9')
+
+prepare() {
+  cp -a execnet-${pkgver}{,-py2}
+}
+
+build() {
+  cd "$srcdir/execnet-${pkgver}"
+  python setup.py build
+
+  cd "$srcdir/execnet-${pkgver}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/execnet-${pkgver}"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test testing
+
+  cd "$srcdir/execnet-${pkgver}-py2"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test2 testing
+}
+
+package_python-execnet() {
+  depends=('python-apipkg')
+
+  cd execnet-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-execnet() {
+  depends=('python2-apipkg')
+
+  cd execnet-${pkgver}-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:47:02
  Author: felixonmars
Revision: 263068

upgpkg: python-execnet 1.5.0-1

Modified:
  python-execnet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:45:29 UTC (rev 263067)
+++ PKGBUILD2017-10-16 12:47:02 UTC (rev 263068)
@@ -3,8 +3,8 @@
 
 pkgbase=python-execnet
 pkgname=('python-execnet' 'python2-execnet')
-pkgver=1.4.1
-pkgrel=4
+pkgver=1.5.0
+pkgrel=1
 pkgdesc="Rapid multi-Python deployment"
 arch=('any')
 license=('MIT')
@@ -11,8 +11,8 @@
 url="http://codespeak.net/execnet;
 makedepends=('python-setuptools' 'python2-setuptools' 'python-apipkg' 
'python2-apipkg')
 checkdepends=('python-pytest-timeout' 'python2-pytest-timeout' 'procps-ng' 
'openssh' 'pypy')
-source=("http://pypi.python.org/packages/source/e/execnet/execnet-$pkgver.tar.gz;)
-sha512sums=('e8c0c32e873f8585ff4d4da3b9cbd40046479370f5653f67a98c9029d4535a619731d1b825332fe4af4dc5ebc9ab11ee879ef45df07f08943b1e1685f2255790')
+source=("https://pypi.io/packages/source/e/execnet/execnet-$pkgver.tar.gz;)
+sha512sums=('ca2b571fafdf8f68b3cc7a04ee326e3255828d4cde28ead65d0cef325569c3a6dee09359e525152248038de65326ffc6b75c8362f53aa5c0b3f736eb596cb2d9')
 
 prepare() {
   cp -a execnet-${pkgver}{,-py2}


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:45:29
  Author: felixonmars
Revision: 263067

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

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

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

Copied: dtkcore/repos/community-testing-i686/PKGBUILD (from rev 263066, 
dtkcore/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-16 12:45:29 UTC (rev 263067)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkcore
+pkgver=2.0.1
+pkgrel=1
+epoch=1
+pkgdesc='DTK core modules'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtkcore;
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkcore/archive/$pkgver.tar.gz;)
+sha512sums=('980d9397e2aedfa589d11b69a4a1a28cc47b94112bf8c2f1c3b046a5f8f746efc5b5d46cb3be6b718caa6aa99a93af5abed5e7436704702d11d64a066b6b1e96')
+
+build() {
+  cd dtkcore-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkcore-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/tests
+}

Copied: dtkcore/repos/community-testing-x86_64/PKGBUILD (from rev 263066, 
dtkcore/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-10-16 12:45:29 UTC (rev 263067)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkcore
+pkgver=2.0.1
+pkgrel=1
+epoch=1
+pkgdesc='DTK core modules'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtkcore;
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkcore/archive/$pkgver.tar.gz;)
+sha512sums=('980d9397e2aedfa589d11b69a4a1a28cc47b94112bf8c2f1c3b046a5f8f746efc5b5d46cb3be6b718caa6aa99a93af5abed5e7436704702d11d64a066b6b1e96')
+
+build() {
+  cd dtkcore-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkcore-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/tests
+}


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:44:00
  Author: felixonmars
Revision: 263066

upgpkg: dtkcore 1:2.0.1-1

Modified:
  dtkcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:43:52 UTC (rev 263065)
+++ PKGBUILD2017-10-16 12:44:00 UTC (rev 263066)
@@ -4,8 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=dtkcore
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 epoch=1
 pkgdesc='DTK core modules'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('qt5-base')
 makedepends=('qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkcore/archive/$pkgver.tar.gz;)
-sha512sums=('92569e3bbea2244f7a4bb7f76f1134e55249bbe04d257f528fd6cedfd13de1b62436cbae93b66fdf7b83c25162c46c0fd6a5b25a10cbee07f0de8f56ed672948')
+sha512sums=('980d9397e2aedfa589d11b69a4a1a28cc47b94112bf8c2f1c3b046a5f8f746efc5b5d46cb3be6b718caa6aa99a93af5abed5e7436704702d11d64a066b6b1e96')
 
 build() {
   cd dtkcore-$pkgver


[arch-commits] Commit in nodejs-lts-argon/repos (8 files)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 12:43:52
  Author: bgyorgy
Revision: 263065

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

Added:
  nodejs-lts-argon/repos/community-i686/PKGBUILD
(from rev 263064, nodejs-lts-argon/trunk/PKGBUILD)
  nodejs-lts-argon/repos/community-i686/nodejs-v8-icu59.patch
(from rev 263064, nodejs-lts-argon/trunk/nodejs-v8-icu59.patch)
  nodejs-lts-argon/repos/community-x86_64/PKGBUILD
(from rev 263064, nodejs-lts-argon/trunk/PKGBUILD)
  nodejs-lts-argon/repos/community-x86_64/nodejs-v8-icu59.patch
(from rev 263064, nodejs-lts-argon/trunk/nodejs-v8-icu59.patch)
Deleted:
  nodejs-lts-argon/repos/community-i686/PKGBUILD
  nodejs-lts-argon/repos/community-i686/nodejs-v8-icu59.patch
  nodejs-lts-argon/repos/community-x86_64/PKGBUILD
  nodejs-lts-argon/repos/community-x86_64/nodejs-v8-icu59.patch

+
 /PKGBUILD  |  128 +++
 /nodejs-v8-icu59.patch |   20 
 community-i686/PKGBUILD|   64 ---
 community-i686/nodejs-v8-icu59.patch   |   10 --
 community-x86_64/PKGBUILD  |   64 ---
 community-x86_64/nodejs-v8-icu59.patch |   10 --
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 12:43:29 UTC (rev 263064)
+++ community-i686/PKGBUILD 2017-10-16 12:43:52 UTC (rev 263065)
@@ -1,64 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-
-pkgname=nodejs-lts-argon
-pkgver=4.8.4
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Argon)'
-arch=('i686' 'x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-provides=('nodejs')
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
-'nodejs-v8-icu59.patch')
-sha256sums=('35fe633a48cbe93c79327161d9dc964ac9810f4ceb2ed8628487e6e14a15905b'
-'3b4d747522f655054829a67b5358f6f1c8bcbb2845f8e0f9866c9c78e55e1be8')
-
-prepare() {
-  cd node-v${pkgver}
-
-  patch -p1 -i ../nodejs-v8-icu59.patch
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  # At least two expected failures because of OpenSSL 1.1 vs 1.0
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/nodejs/LICENSE
-}

Copied: nodejs-lts-argon/repos/community-i686/PKGBUILD (from rev 263064, 
nodejs-lts-argon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 12:43:52 UTC (rev 263065)
@@ -0,0 +1,64 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=nodejs-lts-argon
+pkgver=4.8.4
+pkgrel=2
+pkgdesc='Evented I/O for V8 javascript (LTS release: Argon)'
+arch=('i686' 'x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+provides=("nodejs=$pkgver")
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
+'nodejs-v8-icu59.patch')
+sha256sums=('35fe633a48cbe93c79327161d9dc964ac9810f4ceb2ed8628487e6e14a15905b'
+'3b4d747522f655054829a67b5358f6f1c8bcbb2845f8e0f9866c9c78e55e1be8')
+
+prepare() {
+  cd node-v${pkgver}
+
+  patch -p1 -i ../nodejs-v8-icu59.patch
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2

[arch-commits] Commit in nodejs-lts-argon/trunk (PKGBUILD)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 12:43:29
  Author: bgyorgy
Revision: 263064

upgpkg: nodejs-lts-argon 4.8.4-2

Add versioned provide to nodejs (FS#54903)

Modified:
  nodejs-lts-argon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:43:26 UTC (rev 263063)
+++ PKGBUILD2017-10-16 12:43:29 UTC (rev 263064)
@@ -2,7 +2,7 @@
 
 pkgname=nodejs-lts-argon
 pkgver=4.8.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Evented I/O for V8 javascript (LTS release: Argon)'
 arch=('i686' 'x86_64')
 url='https://nodejs.org/'
@@ -10,7 +10,7 @@
 depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser')
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
-provides=('nodejs')
+provides=("nodejs=$pkgver")
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
 'nodejs-v8-icu59.patch')
@@ -60,5 +60,5 @@
 
   make DESTDIR="${pkgdir}" install
 
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/nodejs/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
 }


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:43:26
  Author: felixonmars
Revision: 263063

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  156 ++---
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 12:41:59 UTC (rev 263062)
+++ PKGBUILD2017-10-16 12:43:26 UTC (rev 263063)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.32.2
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('8a7cdba42e17b165eef076216d465a29ba328440f132cd2b7b6f2b3c3b12a35503cc0fc6faeda23758f5c54469ea943bc847e8515b89663e47a492d72cec87f2')
-
-prepare() {
-  # Make tests faster
-  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
-
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 263062, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 12:43:26 UTC (rev 263063)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.33.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)

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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:41:59
  Author: felixonmars
Revision: 263062

upgpkg: python-hypothesis 3.33.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:40:30 UTC (rev 263061)
+++ PKGBUILD2017-10-16 12:41:59 UTC (rev 263062)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.32.2
+pkgver=3.33.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('8a7cdba42e17b165eef076216d465a29ba328440f132cd2b7b6f2b3c3b12a35503cc0fc6faeda23758f5c54469ea943bc847e8515b89663e47a492d72cec87f2')
+sha512sums=('3e89fa183381f2df556016ff4af17d2731685b019aed74d5f8dccd53ad262dce107f83f105b7e950a579ef247cc9b8336f15ee321292522118fa4c3487a21138')
 
 prepare() {
   # Make tests faster


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:40:30
  Author: felixonmars
Revision: 263061

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 12:40:06 UTC (rev 263060)
+++ PKGBUILD2017-10-16 12:40:30 UTC (rev 263061)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-fs
-pkgname=('python-fs' 'python2-fs')
-pkgver=2.0.11
-pkgrel=1
-pkgdesc="Filesystem abstraction layer"
-arch=('any')
-license=('custom:BSD')
-url="http://pypi.python.org/pypi/fs/;
-makedepends=('python-appdirs' 'python2-appdirs' 'python2-enum34' 'python-pytz' 
'python2-pytz'
- 'python2-scandir' 'python-setuptools' 'python2-setuptools' 
'python-six' 'python2-six')
-checkdepends=('python-nose' 'python2-nose' 'fuse2' 'python-mock' 
'python2-mock' 'python-pyftpdlib'
-  'python2-pyftpdlib')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/PyFilesystem/pyfilesystem2/archive/v$pkgver.tar.gz;)
-sha512sums=('eafba3e33317ea86fb3c9f655c1e1468c8aba4b86b29120a9449d5e8289a9df1346384b74105d27604cc59b4338420daaa69a4ed7ed1fc77e7bcbb02a1e28e01')
-
-prepare() {
-  cp -a pyfilesystem2-$pkgver{,-py2}
-
-  sed -e '/enum34/d' -e '/scandir/d' -i pyfilesystem2-$pkgver/setup.py
-}
-
-build() {
-  cd "$srcdir"/pyfilesystem2-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pyfilesystem2-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/pyfilesystem2-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
nosetests3 tests
-
-  cd "$srcdir"/pyfilesystem2-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
nosetests2 tests
-}
-
-package_python-fs() {
-  depends=('python-appdirs' 'python-pytz' 'python-setuptools' 'python-six')
-
-  cd pyfilesystem2-$pkgver
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-fs() {
-  depends=('python2-appdirs' 'python2-enum34' 'python2-pytz' 'python2-scandir' 
'python2-setuptools'
-   'python2-six')
-
-  cd pyfilesystem2-$pkgver-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-fs/repos/community-any/PKGBUILD (from rev 263060, 
python-fs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 12:40:30 UTC (rev 263061)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-fs
+pkgname=('python-fs' 'python2-fs')
+pkgver=2.0.12
+pkgrel=1
+pkgdesc="Filesystem abstraction layer"
+arch=('any')
+license=('custom:BSD')
+url="http://pypi.python.org/pypi/fs/;
+makedepends=('python-appdirs' 'python2-appdirs' 'python2-enum34' 'python-pytz' 
'python2-pytz'
+ 'python2-scandir' 'python-setuptools' 'python2-setuptools' 
'python-six' 'python2-six')
+checkdepends=('python-nose' 'python2-nose' 'fuse2' 'python-mock' 
'python2-mock' 'python-pyftpdlib'
+  'python2-pyftpdlib')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/PyFilesystem/pyfilesystem2/archive/v$pkgver.tar.gz;)
+sha512sums=('b5e79513fd637e6a6b1041bcf10fabf327af56b8dc3b07229d1570b8ec4b0baea459ff7a90b8324c5c04af51d4718657a3dab1eb6a55a13725c1115315463c24')
+
+prepare() {
+  cp -a pyfilesystem2-$pkgver{,-py2}
+
+  sed -e '/enum34/d' -e '/scandir/d' -i pyfilesystem2-$pkgver/setup.py
+}
+
+build() {
+  cd "$srcdir"/pyfilesystem2-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pyfilesystem2-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/pyfilesystem2-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
nosetests3 tests
+
+  cd "$srcdir"/pyfilesystem2-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
nosetests2 tests
+}
+
+package_python-fs() {
+  depends=('python-appdirs' 'python-pytz' 'python-setuptools' 'python-six')
+
+  cd pyfilesystem2-$pkgver
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-fs() {
+  depends=('python2-appdirs' 'python2-enum34' 'python2-pytz' 'python2-scandir' 
'python2-setuptools'
+   'python2-six')
+
+  cd pyfilesystem2-$pkgver-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:40:06
  Author: felixonmars
Revision: 263060

upgpkg: python-fs 2.0.12-1

Modified:
  python-fs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 12:37:31 UTC (rev 263059)
+++ PKGBUILD2017-10-16 12:40:06 UTC (rev 263060)
@@ -3,7 +3,7 @@
 
 pkgbase=python-fs
 pkgname=('python-fs' 'python2-fs')
-pkgver=2.0.11
+pkgver=2.0.12
 pkgrel=1
 pkgdesc="Filesystem abstraction layer"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('python-nose' 'python2-nose' 'fuse2' 'python-mock' 
'python2-mock' 'python-pyftpdlib'
   'python2-pyftpdlib')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/PyFilesystem/pyfilesystem2/archive/v$pkgver.tar.gz;)
-sha512sums=('eafba3e33317ea86fb3c9f655c1e1468c8aba4b86b29120a9449d5e8289a9df1346384b74105d27604cc59b4338420daaa69a4ed7ed1fc77e7bcbb02a1e28e01')
+sha512sums=('b5e79513fd637e6a6b1041bcf10fabf327af56b8dc3b07229d1570b8ec4b0baea459ff7a90b8324c5c04af51d4718657a3dab1eb6a55a13725c1115315463c24')
 
 prepare() {
   cp -a pyfilesystem2-$pkgver{,-py2}


[arch-commits] Commit in uglify-js/repos/community-any (4 files)

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:37:31
  Author: felixonmars
Revision: 263059

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 263058, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 263058, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   58 ++--
 uglify-js.install |   16 +++---
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 12:37:00 UTC (rev 263058)
+++ PKGBUILD2017-10-16 12:37:31 UTC (rev 263059)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.1.3
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('e5950e82e7c21e337698104b7f3eb752d5933fabdadac4b306934233efe2a88e919cfcc484036607410a88a0587506dcdefeca7a89972760c9c745eaf60bd4bc')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 263058, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 12:37:31 UTC (rev 263059)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.1.4
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('0dc6e43e0d752f0da5016a700a64035feaa8478262208eb2a6c42617ab6c719b65c463c5026491506b8ca154f7ff4107ab2a558a4fd3a641f821388c25e42a40')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2017-10-16 12:37:00 UTC (rev 263058)
+++ uglify-js.install   2017-10-16 12:37:31 UTC (rev 263059)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 263058, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2017-10-16 12:37:31 UTC (rev 263059)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2017-10-16 Thread Felix Yan
Date: Monday, October 16, 2017 @ 12:37:00
  Author: felixonmars
Revision: 263058

upgpkg: uglify-js 3.1.4-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 11:20:43 UTC (rev 263057)
+++ PKGBUILD2017-10-16 12:37:00 UTC (rev 263058)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.1.3
+pkgver=3.1.4
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('e5950e82e7c21e337698104b7f3eb752d5933fabdadac4b306934233efe2a88e919cfcc484036607410a88a0587506dcdefeca7a89972760c9c745eaf60bd4bc')
+sha512sums=('0dc6e43e0d752f0da5016a700a64035feaa8478262208eb2a6c42617ab6c719b65c463c5026491506b8ca154f7ff4107ab2a558a4fd3a641f821388c25e42a40')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-10-16 Thread Christian Hesse
Date: Monday, October 16, 2017 @ 11:32:54
  Author: eworm
Revision: 308052

upgpkg: systemd 235.8-1

pull in latest stable commits

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 10:43:18 UTC (rev 308051)
+++ PKGBUILD2017-10-16 11:32:54 UTC (rev 308052)
@@ -6,10 +6,10 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 # latest commit on stable branch
-_commit='c1719d8bc924ed59448616bd748671c5c7a66d93'
+_commit='7ba74d5f939d0322d6ea730dd0b5ceefd7d7f527'
 # Bump this to latest major release for signed tag verification,
 # the commit count is handled by pkgver() function.
-pkgver=235.0
+pkgver=235.8
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://www.github.com/systemd/systemd;


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

2017-10-16 Thread Christian Hesse
Date: Monday, October 16, 2017 @ 11:33:10
  Author: eworm
Revision: 308053

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

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/PKGBUILD
(from rev 308052, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 308052, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 308052, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 308052, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 308052, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 308052, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 308052, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd-hwdb.hook
(from rev 308052, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-i686/systemd-sysusers.hook
(from rev 308052, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-i686/systemd-tmpfiles.hook
(from rev 308052, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-i686/systemd-update.hook
(from rev 308052, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-i686/systemd-user.pam
(from rev 308052, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-i686/systemd.install
(from rev 308052, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 308052, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 308052, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 308052, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 308052, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 308052, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 308052, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 308052, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hwdb.hook
(from rev 308052, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-x86_64/systemd-sysusers.hook
(from rev 308052, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-x86_64/systemd-tmpfiles.hook
(from rev 308052, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/systemd-update.hook
(from rev 308052, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 308052, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 308052, systemd/trunk/systemd.install)

-+
 testing-i686/PKGBUILD   |  260 ++
 testing-i686/arch.conf  |7 
 testing-i686/initcpio-hook-udev |   22 ++
 testing-i686/initcpio-install-systemd   |  198 ++
 testing-i686/initcpio-install-udev  |   29 +++
 testing-i686/loader.conf|1 
 testing-i686/systemd-hwdb.hook  |   11 +
 testing-i686/systemd-sysusers.hook  |   11 +
 testing-i686/systemd-tmpfiles.hook  |   11 +
 testing-i686/systemd-update.hook|   11 +
 testing-i686/systemd-user.pam   |5 
 testing-i686/systemd.install|   99 +++
 testing-x86_64/PKGBUILD |  260 ++
 testing-x86_64/arch.conf|7 
 testing-x86_64/initcpio-hook-udev   |   22 ++
 testing-x86_64/initcpio-install-systemd |  198 ++
 testing-x86_64/initcpio-install-udev|   29 +++
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd-hwdb.hook|   11 +
 testing-x86_64/systemd-sysusers.hook|   11 +
 testing-x86_64/systemd-tmpfiles.hook|   11 +
 testing-x86_64/systemd-update.hook  |   11 +
 testing-x86_64/systemd-user.pam |5 
 testing-x86_64/systemd.install  |   99 +++
 24 files changed, 1330 insertions(+)

Copied: systemd/repos/testing-i686/PKGBUILD (from rev 308052, 
systemd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-10-16 11:33:10 UTC (rev 308053)
@@ -0,0 +1,260 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+# latest commit on stable branch
+_commit='7ba74d5f939d0322d6ea730dd0b5ceefd7d7f527'
+# Bump this to latest major release for signed tag verification,
+# the commit count is handled by pkgver() 

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

2017-10-16 Thread Levente Polyak
Date: Monday, October 16, 2017 @ 11:20:43
  Author: anthraxx
Revision: 263057

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

Added:
  
hostapd/repos/community-i686/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
(from rev 263056, 
hostapd/trunk/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch)
  
hostapd/repos/community-i686/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch
(from rev 263056, 
hostapd/trunk/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch)
  
hostapd/repos/community-i686/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch
(from rev 263056, 
hostapd/trunk/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch)
  hostapd/repos/community-i686/0004-Prevent-installation-of-an-all-zero-TK.patch
(from rev 263056, 
hostapd/trunk/0004-Prevent-installation-of-an-all-zero-TK.patch)
  
hostapd/repos/community-i686/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
(from rev 263056, 
hostapd/trunk/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch)
  hostapd/repos/community-i686/0006-TDLS-Reject-TPK-TK-reconfiguration.patch
(from rev 263056, 
hostapd/trunk/0006-TDLS-Reject-TPK-TK-reconfiguration.patch)
  
hostapd/repos/community-i686/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch
(from rev 263056, 
hostapd/trunk/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch)
  hostapd/repos/community-i686/PKGBUILD
(from rev 263056, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-i686/config
(from rev 263056, hostapd/trunk/config)
  hostapd/repos/community-i686/hostapd-2.3-noscan.patch
(from rev 263056, hostapd/trunk/hostapd-2.3-noscan.patch)
  hostapd/repos/community-i686/hostapd.service
(from rev 263056, hostapd/trunk/hostapd.service)
  hostapd/repos/community-i686/openvswitch.patch
(from rev 263056, hostapd/trunk/openvswitch.patch)
  
hostapd/repos/community-x86_64/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
(from rev 263056, 
hostapd/trunk/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch)
  
hostapd/repos/community-x86_64/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch
(from rev 263056, 
hostapd/trunk/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch)
  
hostapd/repos/community-x86_64/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch
(from rev 263056, 
hostapd/trunk/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch)
  
hostapd/repos/community-x86_64/0004-Prevent-installation-of-an-all-zero-TK.patch
(from rev 263056, 
hostapd/trunk/0004-Prevent-installation-of-an-all-zero-TK.patch)
  
hostapd/repos/community-x86_64/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
(from rev 263056, 
hostapd/trunk/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch)
  hostapd/repos/community-x86_64/0006-TDLS-Reject-TPK-TK-reconfiguration.patch
(from rev 263056, 
hostapd/trunk/0006-TDLS-Reject-TPK-TK-reconfiguration.patch)
  
hostapd/repos/community-x86_64/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch
(from rev 263056, 
hostapd/trunk/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch)
  hostapd/repos/community-x86_64/PKGBUILD
(from rev 263056, hostapd/trunk/PKGBUILD)
  hostapd/repos/community-x86_64/config
(from rev 263056, hostapd/trunk/config)
  hostapd/repos/community-x86_64/hostapd-2.3-noscan.patch
(from rev 263056, hostapd/trunk/hostapd-2.3-noscan.patch)
  hostapd/repos/community-x86_64/hostapd.service
(from rev 263056, hostapd/trunk/hostapd.service)
  hostapd/repos/community-x86_64/openvswitch.patch
(from rev 263056, hostapd/trunk/openvswitch.patch)
Deleted:
  hostapd/repos/community-i686/PKGBUILD
  hostapd/repos/community-i686/config
  hostapd/repos/community-i686/hostapd-2.3-noscan.patch
  hostapd/repos/community-i686/hostapd.install
  hostapd/repos/community-i686/hostapd.service
  hostapd/repos/community-i686/openvswitch.patch
  hostapd/repos/community-x86_64/PKGBUILD
  hostapd/repos/community-x86_64/config
  hostapd/repos/community-x86_64/hostapd-2.3-noscan.patch
  hostapd/repos/community-x86_64/hostapd.install
  hostapd/repos/community-x86_64/hostapd.service
  hostapd/repos/community-x86_64/openvswitch.patch

--+
 /PKGBUILD  
  |  170 +
 /config
  |  200 ++
 /hostapd-2.3-noscan.patch  
  |  152 
 /hostapd.service   
  |   20 
 /openvswitch.patch 
  |  306 ++
 community-i686/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch 
  |  174 +
 

[arch-commits] Commit in hostapd/trunk (9 files)

2017-10-16 Thread Levente Polyak
Date: Monday, October 16, 2017 @ 11:20:17
  Author: anthraxx
Revision: 263056

upgpkg: hostapd 2.6-6 (security update)

https://w1.fi/security/2017-1/wpa-packet-number-reuse-with-replayed-messages.txt

Added:
  hostapd/trunk/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
  hostapd/trunk/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch
  hostapd/trunk/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch
  hostapd/trunk/0004-Prevent-installation-of-an-all-zero-TK.patch
  hostapd/trunk/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
  hostapd/trunk/0006-TDLS-Reject-TPK-TK-reconfiguration.patch
  hostapd/trunk/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch
Modified:
  hostapd/trunk/PKGBUILD
Deleted:
  hostapd/trunk/hostapd.install

-+
 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch |  174 ++
 0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch |  250 
++
 0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch |  184 +++
 0004-Prevent-installation-of-an-all-zero-TK.patch   |   79 +++
 0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch|   64 ++
 0006-TDLS-Reject-TPK-TK-reconfiguration.patch   |  132 +
 0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch |   82 +++
 PKGBUILD|   43 +
 hostapd.install |3 
 9 files changed, 996 insertions(+), 15 deletions(-)

Added: 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
===
--- 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch 
(rev 0)
+++ 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch 2017-10-16 
11:20:17 UTC (rev 263056)
@@ -0,0 +1,174 @@
+From cf4cab804c7afd5c45505528a8d16e46163243a2 Mon Sep 17 00:00:00 2001
+From: Mathy Vanhoef 
+Date: Fri, 14 Jul 2017 15:15:35 +0200
+Subject: [PATCH 1/8] hostapd: Avoid key reinstallation in FT handshake
+
+Do not reinstall TK to the driver during Reassociation Response frame
+processing if the first attempt of setting the TK succeeded. This avoids
+issues related to clearing the TX/RX PN that could result in reusing
+same PN values for transmitted frames (e.g., due to CCM nonce reuse and
+also hitting replay protection on the receiver) and accepting replayed
+frames on RX side.
+
+This issue was introduced by the commit
+0e84c25434e6a1f283c7b4e62e483729085b78d2 ('FT: Fix PTK configuration in
+authenticator') which allowed wpa_ft_install_ptk() to be called multiple
+times with the same PTK. While the second configuration attempt is
+needed with some drivers, it must be done only if the first attempt
+failed.
+
+Signed-off-by: Mathy Vanhoef 
+---
+ src/ap/ieee802_11.c  | 16 +---
+ src/ap/wpa_auth.c| 11 +++
+ src/ap/wpa_auth.h|  3 ++-
+ src/ap/wpa_auth_ft.c | 10 ++
+ src/ap/wpa_auth_i.h  |  1 +
+ 5 files changed, 37 insertions(+), 4 deletions(-)
+
+diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c
+index 4e04169..333035f 100644
+--- a/src/ap/ieee802_11.c
 b/src/ap/ieee802_11.c
+@@ -1841,6 +1841,7 @@ static int add_associated_sta(struct hostapd_data *hapd,
+ {
+   struct ieee80211_ht_capabilities ht_cap;
+   struct ieee80211_vht_capabilities vht_cap;
++  int set = 1;
+ 
+   /*
+* Remove the STA entry to ensure the STA PS state gets cleared and
+@@ -1848,9 +1849,18 @@ static int add_associated_sta(struct hostapd_data *hapd,
+* FT-over-the-DS, where a station re-associates back to the same AP but
+* skips the authentication flow, or if working with a driver that
+* does not support full AP client state.
++   *
++   * Skip this if the STA has already completed FT reassociation and the
++   * TK has been configured since the TX/RX PN must not be reset to 0 for
++   * the same key.
+*/
+-  if (!sta->added_unassoc)
++  if (!sta->added_unassoc &&
++  (!(sta->flags & WLAN_STA_AUTHORIZED) ||
++   !wpa_auth_sta_ft_tk_already_set(sta->wpa_sm))) {
+   hostapd_drv_sta_remove(hapd, sta->addr);
++  wpa_auth_sm_event(sta->wpa_sm, WPA_DRV_STA_REMOVED);
++  set = 0;
++  }
+ 
+ #ifdef CONFIG_IEEE80211N
+   if (sta->flags & WLAN_STA_HT)
+@@ -1873,11 +1883,11 @@ static int add_associated_sta(struct hostapd_data 
*hapd,
+   sta->flags & WLAN_STA_VHT ? _cap : NULL,
+   sta->flags | WLAN_STA_ASSOC, sta->qosinfo,
+   sta->vht_opmode, sta->p2p_ie ? 1 : 0,
+-  sta->added_unassoc)) {
++  set)) {
+   hostapd_logger(hapd, sta->addr,
+ 

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

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 11:18:52
  Author: bgyorgy
Revision: 263055

Add zstd to optdepends

Modified:
  xarchiver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 10:43:27 UTC (rev 263054)
+++ PKGBUILD2017-10-16 11:18:52 UTC (rev 263055)
@@ -29,7 +29,8 @@
 'unrar: RAR support'
 'unzip: ZIP support'
 'xz: xz support'
-'zip: ZIP support')
+'zip: ZIP support'
+'zstd: zstd support')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz)
 sha256sums=('62885813edce274055e8fccd3f360b61a74a3b0e4854080201638fd1f3306370')
 


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

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 10:43:27
  Author: bgyorgy
Revision: 263054

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-16 10:43:15 UTC (rev 263053)
+++ community-i686/PKGBUILD 2017-10-16 10:43:27 UTC (rev 263054)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Alexander Fehr 
-# Contributor: Andrew Simmons 
-
-pkgbase=xarchiver
-pkgname=(xarchiver xarchiver-gtk2)
-pkgver=0.5.4.11
-_gitrev=79a73d46b782cf8bb93d058d00d2cb81a9b3df8a
-pkgrel=1
-pkgdesc="GTK+ frontend to various command line archivers"
-arch=('i686' 'x86_64')
-url="https://github.com/ib/xarchiver;
-license=('GPL')
-depends=('gtk2' 'gtk3')
-makedepends=('docbook-xsl' 'intltool' 'xmlto')
-optdepends=('zip: ZIP support'
-'unzip: ZIP support'
-'p7zip: 7z support'
-'lzop: LZOP support'
-'cpio: RPM support'
-'unrar: RAR support')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$_gitrev.tar.gz)
-sha256sums=('2dabd6f5d96c5d886d9a5ed7d299cfc43d1fef88be37d1d298a78c4c01a63b45')
-
-build() {
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$_gitrev gtk3
-  cd gtk3
-  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
-  make -j1
-
-  cd "$srcdir"
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$_gitrev gtk2
-  cd gtk2
-  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4 --enable-gtk2
-  make -j1
-}
-
-package_xarchiver() {
-  depends=('gtk3')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}
-
-package_xarchiver-gtk2() {
-  pkgdesc+=' (GTK+ 2 version)'
-  depends=('gtk2')
-  conflicts=('xarchiver')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}

Copied: xarchiver/repos/community-i686/PKGBUILD (from rev 263053, 
xarchiver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 10:43:27 UTC (rev 263054)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Alexander Fehr 
+# Contributor: Andrew Simmons 
+
+pkgbase=xarchiver
+pkgname=(xarchiver xarchiver-gtk2)
+pkgver=0.5.4.12
+pkgrel=1
+pkgdesc="GTK+ frontend to various command line archivers"
+arch=('i686' 'x86_64')
+url="https://github.com/ib/xarchiver;
+license=('GPL')
+depends=('gtk2' 'gtk3')
+makedepends=('docbook-xsl' 'intltool' 'xmlto')
+optdepends=('arj: ARJ support'
+'binutils: deb support'
+'bzip2: bzip2 support'
+'cpio: RPM support'
+'gzip: gzip support'
+'lha: LHA support'
+'lrzip: lrzip support'
+'lz4: LZ4 support'
+'lzip: lzip support'
+'lzop: LZOP support'
+'p7zip: 7z support'
+'tar: tar support'
+'unarj: ARJ support'
+'unrar: RAR support'
+'unzip: ZIP support'
+'xz: xz support'
+'zip: ZIP support')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz)
+sha256sums=('62885813edce274055e8fccd3f360b61a74a3b0e4854080201638fd1f3306370')
+
+build() {
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
+  make -j1
+
+  cd "$srcdir"
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4 --enable-gtk2
+  make -j1
+}
+
+package_xarchiver() {
+  depends=('gtk3')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}
+
+package_xarchiver-gtk2() {
+  pkgdesc+=' (GTK+ 2 version)'
+  depends=('gtk2')
+  conflicts=('xarchiver')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-10-16 10:43:15 UTC (rev 263053)
+++ community-x86_64/PKGBUILD   2017-10-16 10:43:27 UTC (rev 263054)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Alexander Fehr 
-# Contributor: Andrew Simmons 
-
-pkgbase=xarchiver
-pkgname=(xarchiver 

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

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 10:43:15
  Author: bgyorgy
Revision: 263053

upgpkg: xarchiver 0.5.4.12-1

Update to new version

Modified:
  xarchiver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 09:45:17 UTC (rev 263052)
+++ PKGBUILD2017-10-16 10:43:15 UTC (rev 263053)
@@ -5,8 +5,7 @@
 
 pkgbase=xarchiver
 pkgname=(xarchiver xarchiver-gtk2)
-pkgver=0.5.4.11
-_gitrev=79a73d46b782cf8bb93d058d00d2cb81a9b3df8a
+pkgver=0.5.4.12
 pkgrel=1
 pkgdesc="GTK+ frontend to various command line archivers"
 arch=('i686' 'x86_64')
@@ -14,18 +13,29 @@
 license=('GPL')
 depends=('gtk2' 'gtk3')
 makedepends=('docbook-xsl' 'intltool' 'xmlto')
-optdepends=('zip: ZIP support'
+optdepends=('arj: ARJ support'
+'binutils: deb support'
+'bzip2: bzip2 support'
+'cpio: RPM support'
+'gzip: gzip support'
+'lha: LHA support'
+'lrzip: lrzip support'
+'lz4: LZ4 support'
+'lzip: lzip support'
+'lzop: LZOP support'
+'p7zip: 7z support'
+'tar: tar support'
+'unarj: ARJ support'
+'unrar: RAR support'
 'unzip: ZIP support'
-'p7zip: 7z support'
-'lzop: LZOP support'
-'cpio: RPM support'
-'unrar: RAR support')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$_gitrev.tar.gz)
-sha256sums=('2dabd6f5d96c5d886d9a5ed7d299cfc43d1fef88be37d1d298a78c4c01a63b45')
+'xz: xz support'
+'zip: ZIP support')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz)
+sha256sums=('62885813edce274055e8fccd3f360b61a74a3b0e4854080201638fd1f3306370')
 
 build() {
   # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$_gitrev gtk3
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
   cd gtk3
   ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
   make -j1
@@ -32,7 +42,7 @@
 
   cd "$srcdir"
   # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$_gitrev gtk2
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
   cd gtk2
   ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4 --enable-gtk2
   make -j1


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

2017-10-16 Thread Evgeniy Alekseev
Date: Monday, October 16, 2017 @ 09:45:05
  Author: arcanis
Revision: 263051

upgpkg: eric-i18n 17.10-1

Modified:
  eric-i18n/trunk/ChangeLog
  eric-i18n/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |   22 +++---
 2 files changed, 14 insertions(+), 11 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2017-10-16 09:44:42 UTC (rev 263050)
+++ ChangeLog   2017-10-16 09:45:05 UTC (rev 263051)
@@ -1,3 +1,6 @@
+17.10-1:
+upstream update
+
 17.09-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 09:44:42 UTC (rev 263050)
+++ PKGBUILD2017-10-16 09:45:05 UTC (rev 263051)
@@ -3,7 +3,7 @@
 # Contributor: M0Rf30
 
 pkgbase=eric-i18n
-pkgver=17.09
+pkgver=17.10
 pkgrel=1
 pkgdesc="Language pack for the Eric IDE"
 arch=('any')
@@ -48,13 +48,13 @@
  "${pkgdir}/usr/share/qt/translations/eric6_${1}.qm"
 }
 
-sha512sums=('2fdd96eb1511772d06379437ff4400637f158ec51923564995ca993d1a86285b0ff682970a779bb5d7f33dac5a240ff2db83ec4e4edffec3766c5b7c6899'
-
'e4da7b57f971518ccbaa635c9f8978846c8ab2159514133a7daf3928c6a88a1066d166d68f88f11465a0d12e480190f9b152a0a03da52ad207d68f9663ed1192'
-
'722fb3661e674618665507a29db720e5349c3d347f0b272d3ee29546d0ee7661bd0df65c769cfcafe7e4954e04e476597ac00ed844c156b49478f2a5bb2471c5'
-
'c830007a039d1ef6408c2379cdf92c17a43980dd67c45c78b2f6685b8191f578c1ffd6bba4333ed6f3217c3393c74d7002b163000c9cdb189d2c13cd9d733020'
-
'afa31c1be7bb70f209d7250cdf746a916f58cfcec212a4d2c6f8c7980e0a6430d4d06db79d3035339adb3ada9def1c89792084dd469bd9b1e74b6a8d6a0d6c8f'
-
'b83f481f14beee4b42c8299508bc3169829a53bd901856573996b5fe2998d2ecbf6e33c3c619ae335436d94517c56bb1c4bd1937ff03da6a0526aba8bbc8881f'
-
'92a879d6b828d3c45e9d96b8c79a9945bbc4f82d12f08186ac0bc5fbe1b6c613f69bc6e313d0165aed6af85790833efaf7bf905476d5a5b1154a09c8b1c941e4'
-
'389b222bfacb5534683265728f47b6432492d5ae7a1b760ff66cc314235f98d0dbe5ffdf8a99428f00f8ff2c16f5d84dba4b45215508674252db56e5c91e1440'
-
'10400633da9330f4ecfdfe30c6399c64af40d62df74e9837e58584bf8b84c014d9b5877287ca8abdb0edb813d93537b60da68d8f20b59edb886f6cef3834e897'
-
'd9c2f93e49a06c8c525dc62a97c14ad0404ad1fce9f811182fbb5bc4438e3ea4778c511fa771c0ec417d15ec51dc8b873c873b6b3c978fc66e09e5efdfdf39ef')
+sha512sums=('12d52a4c7abe84305b8ad6aed581fde0e4c0ec19068d162b0ae30cc1585eb71e597fcf94af8ad4870715cf4aac463be4e415c17581bcfade00725ee221c53526'
+
'c8d697ddb1390a9b3e10292944e9730cdb181267921b98686bbab1eb95ab9514651b466c1f08dae40f6bb32b2721bbb9dd64c98460bceea073032d5e93960b5d'
+
'a2bc88fddc4411d95ff393343e84a103f59280e2b3ee52bd47b4e80b9bcc4255b5ded7d564b924f85611cb1711db37d495e359d40b6707bc1c083270d58017ed'
+
'2b21fa534c3c1b0a3a05ef56ffb850bbc03f1be83bf3a5a0747ad3bc67acb21f0db83e0bc2565ceb95d803d350e8427046cdf07313dca87c3fa1f713db500c0e'
+
'eb556f97d6f83c8236b5cf4b8ed32512f659a77186749f43c5117223737c2c2b34db0023dfd42c29ddecef316263f372bec444b458a690b7ecd96ce48a56'
+
'192233a512923a0a3725cf8e8c978e422135eaeee529fba367a0f6eea5f527ab9ed4b8d392e6022a4f26fb92d8c8b032b73975849d4492d4380deeff3698e86a'
+
'1b3ae5ad4140a09d1725ab688f4dce8617dde0950234308e77207d082afbf75c40cde679219b61f217ab968e3a4feb5d6f6b129e655e488937f35f4379741325'
+
'383f0814938158e6a5bedc8a75938011698db4b666312439607b97936b11a62019086299d2e174466c40fd52238c8bd981642ed4721270a2f057376a9876af1a'
+
'b71de68ab978c83584cbfb881c890729873200b513817e83fcc14b00cc3e127603df3419143f5a0d3691f19b52ce211440bc76364dc408c7d5e4f5dee0c216b3'
+
'777b3712d1ad0a8a1192569f4f3fb76d61da6f1aceacc09cf0c2499905fe63020c65c07283506617790396378ada6e991d4101b72519c97dafae577155c8acb3')


[arch-commits] Commit in eric-i18n/repos/community-any (4 files)

2017-10-16 Thread Evgeniy Alekseev
Date: Monday, October 16, 2017 @ 09:45:17
  Author: arcanis
Revision: 263052

archrelease: copy trunk to community-any

Added:
  eric-i18n/repos/community-any/ChangeLog
(from rev 263051, eric-i18n/trunk/ChangeLog)
  eric-i18n/repos/community-any/PKGBUILD
(from rev 263051, eric-i18n/trunk/PKGBUILD)
Deleted:
  eric-i18n/repos/community-any/ChangeLog
  eric-i18n/repos/community-any/PKGBUILD

---+
 ChangeLog |  269 ++--
 PKGBUILD  |  120 +-
 2 files changed, 196 insertions(+), 193 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2017-10-16 09:45:05 UTC (rev 263051)
+++ ChangeLog   2017-10-16 09:45:17 UTC (rev 263052)
@@ -1,133 +0,0 @@
-17.09-1:
-upstream update
-
-17.08-1:
-upstream update
-
-17.07-1:
-upstream update
-
-17.06-1:
-upstream update
-
-17.05-1:
-upstream update
-
-17.04.1-1:
-upstream update
-
-17.03.1-1:
-upstream update
-
-17.03-1:
-upstream update
-
-17.02-1:
-* upstream update
-* drop qt4 versions as soon as they depend on qtwebkit
-
-17.01-1:
-upstream update
-
-16.12-1:
-upstream update
-
-16.11-1:
-upstream update
-
-6.1.11-1:
-upstream update
-
-6.1.10-1:
-upstream update
-
-6.1.9-1:
-upstream update
-
-6.1.8-1:
-upstream update
-
-6.1.7-1:
-upstream update
-
-6.1.6-1:
-upstream update
-
-6.1.5-2:
-fix broken Qt4 translations
-
-6.1.5-1:
-upstream update
-
-6.1.4-1:
-upstream update
-
-6.1.3-1:
-upstream update
-
-6.1.2-3:
-* rename zh_CN package to zh_cn
-* fix description
-
-6.1.2-2:
-rebuild in clean chroot for .BUILDINFO
-
-6.1.2-1:
-upstream update
-
-6.1.1-2:
-fix FS#47677
-
-6.1.1-1:
-upstream update
-
-6.1.0-1:
-upsream update
-
-6.0.11-1:
-upstream update
-
-6.0.10-1:
-upstream update
-
-6.0.9-1:
-upstream update
-
-6.0.8-1:
-upstream update
-
-6.0.7-1:
-upstream update
-
-6.0.6-1:
-upstream update
-
-6.0.5-1:
-upstream update
-
-6.0.4-1:
-upstream update
-
-6.0.3-1:
-upstream update
-
-6.0.2-1:
-upstream update
-
-6.0.0-1:
-upstream update
-
-6.0.0-2:
-rename qt4 packages to more pretty name
-
-6.0.0-1:
-upstream update
-
-5.5.2-1:
-upstream update
-
-5.5.1-1:
-upstream update
-
-5.5.0-1:
-upstream update. Create package

Copied: eric-i18n/repos/community-any/ChangeLog (from rev 263051, 
eric-i18n/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2017-10-16 09:45:17 UTC (rev 263052)
@@ -0,0 +1,136 @@
+17.10-1:
+upstream update
+
+17.09-1:
+upstream update
+
+17.08-1:
+upstream update
+
+17.07-1:
+upstream update
+
+17.06-1:
+upstream update
+
+17.05-1:
+upstream update
+
+17.04.1-1:
+upstream update
+
+17.03.1-1:
+upstream update
+
+17.03-1:
+upstream update
+
+17.02-1:
+* upstream update
+* drop qt4 versions as soon as they depend on qtwebkit
+
+17.01-1:
+upstream update
+
+16.12-1:
+upstream update
+
+16.11-1:
+upstream update
+
+6.1.11-1:
+upstream update
+
+6.1.10-1:
+upstream update
+
+6.1.9-1:
+upstream update
+
+6.1.8-1:
+upstream update
+
+6.1.7-1:
+upstream update
+
+6.1.6-1:
+upstream update
+
+6.1.5-2:
+fix broken Qt4 translations
+
+6.1.5-1:
+upstream update
+
+6.1.4-1:
+upstream update
+
+6.1.3-1:
+upstream update
+
+6.1.2-3:
+* rename zh_CN package to zh_cn
+* fix description
+
+6.1.2-2:
+rebuild in clean chroot for .BUILDINFO
+
+6.1.2-1:
+upstream update
+
+6.1.1-2:
+fix FS#47677
+
+6.1.1-1:
+upstream update
+
+6.1.0-1:
+upsream update
+
+6.0.11-1:
+upstream update
+
+6.0.10-1:
+upstream update
+
+6.0.9-1:
+upstream update
+
+6.0.8-1:
+upstream update
+
+6.0.7-1:
+upstream update
+
+6.0.6-1:
+upstream update
+
+6.0.5-1:
+upstream update
+
+6.0.4-1:
+upstream update
+
+6.0.3-1:
+upstream update
+
+6.0.2-1:
+upstream update
+
+6.0.0-1:
+upstream update
+
+6.0.0-2:
+rename qt4 packages to more pretty name
+
+6.0.0-1:
+upstream update
+
+5.5.2-1:
+upstream update
+
+5.5.1-1:
+upstream update
+
+5.5.0-1:
+upstream update. Create package

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 09:45:05 UTC (rev 263051)
+++ PKGBUILD2017-10-16 09:45:17 UTC (rev 263052)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: M0Rf30
-
-pkgbase=eric-i18n
-pkgver=17.09
-pkgrel=1
-pkgdesc="Language pack for the Eric IDE"
-arch=('any')
-makedepends=("eric-common>=${pkgver}")
-depends=()
-url="http://eric-ide.python-projects.org/index.html;
-license=('GPL3')
-depends=()
-changelog=ChangeLog
-
-_languages=('cs "Czech"'
-'de "German"'
-'en "English"'
-'es "Spanish"'
-'fr "French"'
-'it "Italian"'
-'pt "Portuguese"'
-'ru "Russian"'
-'tr "Turkish"'
-'zh_CN  "Chinese (Simplified)"')
-
-pkgname=()
-source=()

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

2017-10-16 Thread Evgeniy Alekseev
Date: Monday, October 16, 2017 @ 09:44:42
  Author: arcanis
Revision: 263050

archrelease: copy trunk to community-any

Added:
  eric/repos/community-any/.contrib
(from rev 263049, eric/trunk/.contrib)
  eric/repos/community-any/ChangeLog
(from rev 263049, eric/trunk/ChangeLog)
  eric/repos/community-any/PKGBUILD
(from rev 263049, eric/trunk/PKGBUILD)
Deleted:
  eric/repos/community-any/.contrib
  eric/repos/community-any/ChangeLog
  eric/repos/community-any/PKGBUILD

---+
 .contrib  |   14 +--
 ChangeLog |  267 ++--
 PKGBUILD  |  164 ++--
 3 files changed, 224 insertions(+), 221 deletions(-)

Deleted: .contrib
===
--- .contrib2017-10-16 09:44:24 UTC (rev 263049)
+++ .contrib2017-10-16 09:44:42 UTC (rev 263050)
@@ -1,7 +0,0 @@
-This is a list of (past) contributors not already credited in the PKGBUILD:
-
-Eric Belanger 
-riai 
-Ben 
-Daniel J Griffiths 
-Felix Rohrbach 

Copied: eric/repos/community-any/.contrib (from rev 263049, eric/trunk/.contrib)
===
--- .contrib(rev 0)
+++ .contrib2017-10-16 09:44:42 UTC (rev 263050)
@@ -0,0 +1,7 @@
+This is a list of (past) contributors not already credited in the PKGBUILD:
+
+Eric Belanger 
+riai 
+Ben 
+Daniel J Griffiths 
+Felix Rohrbach 

Deleted: ChangeLog
===
--- ChangeLog   2017-10-16 09:44:24 UTC (rev 263049)
+++ ChangeLog   2017-10-16 09:44:42 UTC (rev 263050)
@@ -1,132 +0,0 @@
-17.09-1:
-upstream update
-
-17.08-1:
-upstream update
-
-17.07-1:
-upstream update
-
-17.06-1:
-upstream update
-
-17.05-1:
-upstream update
-
-17.04.1:
-upstream update
-
-17.03.1:
-upstream update
-
-17.03:
-upstream update
-
-17.02-1:
-* upstream update
-* drop qt4 versions as soon as they depend on qtwebkit
-
-17.01-1:
-upstream update
-
-16.12-1:
-upstream update
-
-16.11-1:
-upstream update
-
-6.1.11-1:
-upstream update
-
-6.1.10-1:
-upstream update
-
-6.1.9-1:
-upstream update
-
-6.1.8-1:
-upstream update
-
-6.1.7-1:
-upstream update
-
-6.1.6-1:
-upstream update
-
-6.1.5-1:
-upstream update
-
-6.1.4-2:
-drop install file, move to pacman hooks
-
-6.1.4-1:
-upstream update
-
-6.1.3-1:
-upstream update
-
-6.1.2-1:
-upstream update
-
-6.1.1-1:
-upstream update
-
-6.1.0-1:
-upstream update
-
-6.0.11-1:
-upstream update
-
-6.0.10-1:
-upstream update
-
-6.0.9-2:
-python3.5 rebuild
-
-6.0.9-1:
-upstream update
-
-6.0.8-1:
-upstream update
-
-6.0.7-1:
-upstream update
-
-6.0.6-1:
-upstream update
-
-6.0.5-1:
-upstream update
-
-6.0.4-1:
-upstream update
-
-6.0.3-1:
-upstream update
-
-6.0.2-1:
-upstream update
-
-6.0.1-2:
-* fix FS#43573
-* fix API path
-
-6.0.1-1:
-upstream update
-
-6.0.0-1:
-* upstream update
-* split to qt5 and qt4 packages
-
-5.5.2-1:
-upstream update
-
-5.5.1-1:
-upstream update
-
-5.5.0-1:
-* upstream update
-* create python2-eric package
-
-5.4.7-1:
-upstream update. Create eric-common package

Copied: eric/repos/community-any/ChangeLog (from rev 263049, 
eric/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2017-10-16 09:44:42 UTC (rev 263050)
@@ -0,0 +1,135 @@
+17.10-1:
+upstream update
+
+17.09-1:
+upstream update
+
+17.08-1:
+upstream update
+
+17.07-1:
+upstream update
+
+17.06-1:
+upstream update
+
+17.05-1:
+upstream update
+
+17.04.1:
+upstream update
+
+17.03.1:
+upstream update
+
+17.03:
+upstream update
+
+17.02-1:
+* upstream update
+* drop qt4 versions as soon as they depend on qtwebkit
+
+17.01-1:
+upstream update
+
+16.12-1:
+upstream update
+
+16.11-1:
+upstream update
+
+6.1.11-1:
+upstream update
+
+6.1.10-1:
+upstream update
+
+6.1.9-1:
+upstream update
+
+6.1.8-1:
+upstream update
+
+6.1.7-1:
+upstream update
+
+6.1.6-1:
+upstream update
+
+6.1.5-1:
+upstream update
+
+6.1.4-2:
+drop install file, move to pacman hooks
+
+6.1.4-1:
+upstream update
+
+6.1.3-1:
+upstream update
+
+6.1.2-1:
+upstream update
+
+6.1.1-1:
+upstream update
+
+6.1.0-1:
+upstream update
+
+6.0.11-1:
+upstream update
+
+6.0.10-1:
+upstream update
+
+6.0.9-2:
+python3.5 rebuild
+
+6.0.9-1:
+upstream update
+
+6.0.8-1:
+upstream update
+
+6.0.7-1:
+upstream update
+
+6.0.6-1:
+upstream update
+
+6.0.5-1:
+upstream update
+
+6.0.4-1:
+upstream update
+
+6.0.3-1:
+upstream update
+
+6.0.2-1:
+upstream update
+
+6.0.1-2:
+* fix FS#43573
+* fix API path
+
+6.0.1-1:
+upstream update
+
+6.0.0-1:
+* upstream update
+* split to qt5 and qt4 packages
+
+5.5.2-1:
+upstream update
+
+5.5.1-1:
+upstream update
+
+5.5.0-1:
+* upstream update
+* create 

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

2017-10-16 Thread Evgeniy Alekseev
Date: Monday, October 16, 2017 @ 09:44:24
  Author: arcanis
Revision: 263049

upgpkg: eric 17.10-1

Modified:
  eric/trunk/ChangeLog
  eric/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2017-10-16 09:23:45 UTC (rev 263048)
+++ ChangeLog   2017-10-16 09:44:24 UTC (rev 263049)
@@ -1,3 +1,6 @@
+17.10-1:
+upstream update
+
 17.09-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 09:23:45 UTC (rev 263048)
+++ PKGBUILD2017-10-16 09:44:24 UTC (rev 263049)
@@ -6,7 +6,7 @@
 
 pkgbase=eric
 pkgname=('eric-common' 'eric' 'python2-eric')
-pkgver=17.09
+pkgver=17.10
 pkgrel=1
 pkgdesc="A full-featured Python and Ruby IDE in PyQt"
 arch=('any')
@@ -16,7 +16,7 @@
  'python-qscintilla-qt5' 'python2-qscintilla-qt5'
  'qt5-svg' 'qt5-webkit')
 source=("https://downloads.sourceforge.net/eric-ide/eric6-${pkgver}.tar.gz;)
-sha512sums=('73631ff1faef01b51a640af13dbb3adabebc63280f15b5e594e1fcbfb799a40a8e7ecb7395c52c6878b1fa232d7c00fb531a24be9f89a3592602aeb10520737d')
+sha512sums=('f9b97dc9627d0a1b8df76af5a9c09a1d10a9f708de8b2be567bd2cdaed9f5e7ce712fb900b9e5982512c3bc5160dcf4e7718e6a1a17bf3fc650bd112715f846b')
 changelog=ChangeLog
 
 prepare() {


[arch-commits] Commit in wpa_supplicant/trunk (9 files)

2017-10-16 Thread Bartłomiej Piotrowski
Date: Monday, October 16, 2017 @ 09:30:13
  Author: bpiotrowski
Revision: 308049

1:2.6-11: security update

https://w1.fi/security/2017-1/wpa-packet-number-reuse-with-replayed-messages.txt

Added:
  
wpa_supplicant/trunk/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
  
wpa_supplicant/trunk/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch
  
wpa_supplicant/trunk/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch
  wpa_supplicant/trunk/0004-Prevent-installation-of-an-all-zero-TK.patch
  wpa_supplicant/trunk/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
  wpa_supplicant/trunk/0006-TDLS-Reject-TPK-TK-reconfiguration.patch
  
wpa_supplicant/trunk/0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch
  
wpa_supplicant/trunk/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch
Modified:
  wpa_supplicant/trunk/PKGBUILD

-+
 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch |  174 ++
 0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch |  250 
++
 0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch |  184 +++
 0004-Prevent-installation-of-an-all-zero-TK.patch   |   79 +++
 0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch|   64 ++
 0006-TDLS-Reject-TPK-TK-reconfiguration.patch   |  132 +
 0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch |   43 +
 0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch |   82 +++
 PKGBUILD|   33 +
 9 files changed, 1038 insertions(+), 3 deletions(-)

Added: 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
===
--- 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch 
(rev 0)
+++ 0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch 2017-10-16 
09:30:13 UTC (rev 308049)
@@ -0,0 +1,174 @@
+From cf4cab804c7afd5c45505528a8d16e46163243a2 Mon Sep 17 00:00:00 2001
+From: Mathy Vanhoef 
+Date: Fri, 14 Jul 2017 15:15:35 +0200
+Subject: [PATCH 1/8] hostapd: Avoid key reinstallation in FT handshake
+
+Do not reinstall TK to the driver during Reassociation Response frame
+processing if the first attempt of setting the TK succeeded. This avoids
+issues related to clearing the TX/RX PN that could result in reusing
+same PN values for transmitted frames (e.g., due to CCM nonce reuse and
+also hitting replay protection on the receiver) and accepting replayed
+frames on RX side.
+
+This issue was introduced by the commit
+0e84c25434e6a1f283c7b4e62e483729085b78d2 ('FT: Fix PTK configuration in
+authenticator') which allowed wpa_ft_install_ptk() to be called multiple
+times with the same PTK. While the second configuration attempt is
+needed with some drivers, it must be done only if the first attempt
+failed.
+
+Signed-off-by: Mathy Vanhoef 
+---
+ src/ap/ieee802_11.c  | 16 +---
+ src/ap/wpa_auth.c| 11 +++
+ src/ap/wpa_auth.h|  3 ++-
+ src/ap/wpa_auth_ft.c | 10 ++
+ src/ap/wpa_auth_i.h  |  1 +
+ 5 files changed, 37 insertions(+), 4 deletions(-)
+
+diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c
+index 4e04169..333035f 100644
+--- a/src/ap/ieee802_11.c
 b/src/ap/ieee802_11.c
+@@ -1841,6 +1841,7 @@ static int add_associated_sta(struct hostapd_data *hapd,
+ {
+   struct ieee80211_ht_capabilities ht_cap;
+   struct ieee80211_vht_capabilities vht_cap;
++  int set = 1;
+ 
+   /*
+* Remove the STA entry to ensure the STA PS state gets cleared and
+@@ -1848,9 +1849,18 @@ static int add_associated_sta(struct hostapd_data *hapd,
+* FT-over-the-DS, where a station re-associates back to the same AP but
+* skips the authentication flow, or if working with a driver that
+* does not support full AP client state.
++   *
++   * Skip this if the STA has already completed FT reassociation and the
++   * TK has been configured since the TX/RX PN must not be reset to 0 for
++   * the same key.
+*/
+-  if (!sta->added_unassoc)
++  if (!sta->added_unassoc &&
++  (!(sta->flags & WLAN_STA_AUTHORIZED) ||
++   !wpa_auth_sta_ft_tk_already_set(sta->wpa_sm))) {
+   hostapd_drv_sta_remove(hapd, sta->addr);
++  wpa_auth_sm_event(sta->wpa_sm, WPA_DRV_STA_REMOVED);
++  set = 0;
++  }
+ 
+ #ifdef CONFIG_IEEE80211N
+   if (sta->flags & WLAN_STA_HT)
+@@ -1873,11 +1883,11 @@ static int add_associated_sta(struct hostapd_data 
*hapd,
+   sta->flags & WLAN_STA_VHT ? _cap : NULL,
+   sta->flags | WLAN_STA_ASSOC, sta->qosinfo,
+   sta->vht_opmode, sta->p2p_ie ? 1 : 0,
+-  

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

2017-10-16 Thread Bartłomiej Piotrowski
Date: Monday, October 16, 2017 @ 09:30:34
  Author: bpiotrowski
Revision: 308050

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

Added:
  
wpa_supplicant/repos/testing-i686/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
(from rev 308049, 
wpa_supplicant/trunk/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch)
  
wpa_supplicant/repos/testing-i686/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch
(from rev 308049, 
wpa_supplicant/trunk/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch)
  
wpa_supplicant/repos/testing-i686/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch
(from rev 308049, 
wpa_supplicant/trunk/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch)
  
wpa_supplicant/repos/testing-i686/0004-Prevent-installation-of-an-all-zero-TK.patch
(from rev 308049, 
wpa_supplicant/trunk/0004-Prevent-installation-of-an-all-zero-TK.patch)
  
wpa_supplicant/repos/testing-i686/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
(from rev 308049, 
wpa_supplicant/trunk/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch)
  
wpa_supplicant/repos/testing-i686/0006-TDLS-Reject-TPK-TK-reconfiguration.patch
(from rev 308049, 
wpa_supplicant/trunk/0006-TDLS-Reject-TPK-TK-reconfiguration.patch)
  
wpa_supplicant/repos/testing-i686/0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch
(from rev 308049, 
wpa_supplicant/trunk/0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch)
  
wpa_supplicant/repos/testing-i686/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch
(from rev 308049, 
wpa_supplicant/trunk/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch)
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 308049, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 308049, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/wpa_supplicant.install
(from rev 308049, wpa_supplicant/trunk/wpa_supplicant.install)
  
wpa_supplicant/repos/testing-x86_64/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
(from rev 308049, 
wpa_supplicant/trunk/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch)
  
wpa_supplicant/repos/testing-x86_64/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch
(from rev 308049, 
wpa_supplicant/trunk/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch)
  
wpa_supplicant/repos/testing-x86_64/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch
(from rev 308049, 
wpa_supplicant/trunk/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch)
  
wpa_supplicant/repos/testing-x86_64/0004-Prevent-installation-of-an-all-zero-TK.patch
(from rev 308049, 
wpa_supplicant/trunk/0004-Prevent-installation-of-an-all-zero-TK.patch)
  
wpa_supplicant/repos/testing-x86_64/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
(from rev 308049, 
wpa_supplicant/trunk/0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch)
  
wpa_supplicant/repos/testing-x86_64/0006-TDLS-Reject-TPK-TK-reconfiguration.patch
(from rev 308049, 
wpa_supplicant/trunk/0006-TDLS-Reject-TPK-TK-reconfiguration.patch)
  
wpa_supplicant/repos/testing-x86_64/0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch
(from rev 308049, 
wpa_supplicant/trunk/0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch)
  
wpa_supplicant/repos/testing-x86_64/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch
(from rev 308049, 
wpa_supplicant/trunk/0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch)
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 308049, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 308049, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/wpa_supplicant.install
(from rev 308049, wpa_supplicant/trunk/wpa_supplicant.install)
Deleted:
  wpa_supplicant/repos/testing-i686/PKGBUILD
  wpa_supplicant/repos/testing-i686/config
  wpa_supplicant/repos/testing-i686/wpa_supplicant.install
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
  wpa_supplicant/repos/testing-x86_64/config
  wpa_supplicant/repos/testing-x86_64/wpa_supplicant.install

+
 /PKGBUILD  
|  180 +++
 /config
|   92 +++
 /wpa_supplicant.install
|   14 
 testing-i686/0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch   
|  174 ++
 testing-i686/0002-Prevent-reinstallation-of-an-already-in-use-group-ke.patch   
|  250 ++
 testing-i686/0003-Extend-protection-of-GTK-IGTK-reinstallation-of-WNM-.patch   
|  184 +++
 

[arch-commits] Commit in xcursor-vanilla-dmz/repos/community-any (PKGBUILD PKGBUILD)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 09:23:45
  Author: bgyorgy
Revision: 263048

archrelease: copy trunk to community-any

Added:
  xcursor-vanilla-dmz/repos/community-any/PKGBUILD
(from rev 263047, xcursor-vanilla-dmz/trunk/PKGBUILD)
Deleted:
  xcursor-vanilla-dmz/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 09:23:34 UTC (rev 263047)
+++ PKGBUILD2017-10-16 09:23:45 UTC (rev 263048)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Roman Kyrylych 
-# Contributor: Björn Martensen 
-# Contributor: Daniel J Griffiths 
-
-pkgbase=xcursor-vanilla-dmz
-pkgname=('xcursor-vanilla-dmz' 'xcursor-vanilla-dmz-aa')
-pkgver=0.4.4
-pkgrel=1
-arch=('any')
-url="http://jimmac.musichall.cz/;
-license=('CCPL:by-nc-sa')
-makedepends=('xorg-xcursorgen')
-source=(http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_$pkgver.tar.gz)
-md5sums=('06fbab13df89c5770ce61b0e3e31e5f6')
-
-build() {
-  cd "$srcdir/dmz-cursor-theme-$pkgver"
-  (cd DMZ-White/pngs ; ./make.sh)
-  (cd DMZ-Black/pngs ; ./make.sh)
-}
-
-package_xcursor-vanilla-dmz() {
-  pkgdesc="Vanilla DMZ cursor theme"
-
-  cd "$srcdir/dmz-cursor-theme-$pkgver"
-  install -d "$pkgdir"/usr/share/icons/Vanilla-DMZ/cursors
-  cp -a DMZ-White/xcursors/* "$pkgdir"/usr/share/icons/Vanilla-DMZ/cursors
-  install -Dm644 DMZ-White/index.theme 
"$pkgdir"/usr/share/icons/Vanilla-DMZ/index.theme
-}
-
-package_xcursor-vanilla-dmz-aa() {
-  pkgdesc="Vanilla DMZ AA cursor theme"
-
-  cd "$srcdir/dmz-cursor-theme-${pkgver}"
-  install -d "$pkgdir"/usr/share/icons/Vanilla-DMZ-AA/cursors
-  cp -a DMZ-Black/xcursors/* "$pkgdir"/usr/share/icons/Vanilla-DMZ-AA/cursors
-  install -Dm644 DMZ-Black/index.theme 
"$pkgdir"/usr/share/icons/Vanilla-DMZ-AA/index.theme
-}

Copied: xcursor-vanilla-dmz/repos/community-any/PKGBUILD (from rev 263047, 
xcursor-vanilla-dmz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 09:23:45 UTC (rev 263048)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Roman Kyrylych 
+# Contributor: Björn Martensen 
+# Contributor: Daniel J Griffiths 
+
+pkgbase=xcursor-vanilla-dmz
+pkgname=('xcursor-vanilla-dmz' 'xcursor-vanilla-dmz-aa')
+pkgver=0.4.4
+pkgrel=1
+arch=('any')
+url="http://jimmac.musichall.cz/;
+license=('CCPL:by-nc-sa')
+makedepends=('xorg-xcursorgen')
+source=(https://debian.inf.tu-dresden.de/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_$pkgver.tar.gz)
+md5sums=('06fbab13df89c5770ce61b0e3e31e5f6')
+
+build() {
+  cd "$srcdir/dmz-cursor-theme-$pkgver"
+  (cd DMZ-White/pngs ; ./make.sh)
+  (cd DMZ-Black/pngs ; ./make.sh)
+}
+
+package_xcursor-vanilla-dmz() {
+  pkgdesc="Vanilla DMZ cursor theme"
+
+  cd "$srcdir/dmz-cursor-theme-$pkgver"
+  install -d "$pkgdir"/usr/share/icons/Vanilla-DMZ/cursors
+  cp -a DMZ-White/xcursors/* "$pkgdir"/usr/share/icons/Vanilla-DMZ/cursors
+  install -Dm644 DMZ-White/index.theme 
"$pkgdir"/usr/share/icons/Vanilla-DMZ/index.theme
+}
+
+package_xcursor-vanilla-dmz-aa() {
+  pkgdesc="Vanilla DMZ AA cursor theme"
+
+  cd "$srcdir/dmz-cursor-theme-${pkgver}"
+  install -d "$pkgdir"/usr/share/icons/Vanilla-DMZ-AA/cursors
+  cp -a DMZ-Black/xcursors/* "$pkgdir"/usr/share/icons/Vanilla-DMZ-AA/cursors
+  install -Dm644 DMZ-Black/index.theme 
"$pkgdir"/usr/share/icons/Vanilla-DMZ-AA/index.theme
+}


[arch-commits] Commit in xcursor-vanilla-dmz/trunk (PKGBUILD)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 09:23:34
  Author: bgyorgy
Revision: 263047

Use https source

Modified:
  xcursor-vanilla-dmz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 09:19:16 UTC (rev 263046)
+++ PKGBUILD2017-10-16 09:23:34 UTC (rev 263047)
@@ -12,7 +12,7 @@
 url="http://jimmac.musichall.cz/;
 license=('CCPL:by-nc-sa')
 makedepends=('xorg-xcursorgen')
-source=(http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_$pkgver.tar.gz)
+source=(https://debian.inf.tu-dresden.de/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_$pkgver.tar.gz)
 md5sums=('06fbab13df89c5770ce61b0e3e31e5f6')
 
 build() {


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

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 09:19:16
  Author: bgyorgy
Revision: 263046

archrelease: copy trunk to community-any

Added:
  bt747/repos/community-any/PKGBUILD
(from rev 263045, bt747/trunk/PKGBUILD)
  bt747/repos/community-any/bt747.desktop
(from rev 263045, bt747/trunk/bt747.desktop)
Deleted:
  bt747/repos/community-any/PKGBUILD
  bt747/repos/community-any/bt747.desktop

---+
 PKGBUILD  |   98 
 bt747.desktop |   26 +++---
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-10-16 09:18:57 UTC (rev 263045)
+++ PKGBUILD2017-10-16 09:19:16 UTC (rev 263046)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=bt747
-_pkgname=BT747
-pkgver=2.1.3
-pkgrel=3
-pkgdesc="The swiss army knife for MTK GPS dataloggers"
-arch=('any')
-url="http://bt747.org/;
-license=('GPL')
-depends=('java-rxtx')
-makedepends=('imagemagick')
-source=(http://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
-http://www.bt747.org/icon/${pkgname}_128x128.gif
-$pkgname.desktop)
-sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
-'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
-'7ab8f2ae7a1cdc6e4aec353b5b2b7601d1bf6c7df99c942a3b98c1bc2437474f')
-
-prepare() {
-  cd "$srcdir"
-  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
-  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
-  s|amd64|x86_64|
-  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
-  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
-}
-
-build() {
-  cd "$srcdir"
-  convert "${pkgname}_128x128.gif" "${pkgname}_128x128.png"
-}
-
-package() {
-  cd "$srcdir"
-  _installdir="$pkgdir"/usr/share/java/$pkgname
-  install -D -m644 lib/jchart2d-3.1.0.jar "$_installdir"/lib/jchart2d-3.1.0.jar
-  install -D -m644 lib/jopt-simple-2.4.1.jar 
"$_installdir"/lib/jopt-simple-2.4.1.jar
-  install -D -m644 lib/jcalendar-1.3.2.jar 
"$_installdir"/lib/jcalendar-1.3.2.jar
-  install -D -m644 lib/swing-layout-1.0.3.jar 
"$_installdir"/lib/swing-layout-1.0.3.jar
-  install -D -m644 lib/swingx.jar "$_installdir"/lib/swingx.jar
-  install -D -m644 lib/swingx-ws.jar "$_installdir"/lib/swingx-ws.jar
-  install -D -m644 dist/libBT747.jar "$_installdir"/dist/libBT747.jar
-  install -D -m644 dist/BT747_j2se.jar "$_installdir"/dist/BT747_j2se.jar
-  install -D -m755 ./run_j2se.sh "$pkgdir"/usr/bin/$pkgname
-  install -D -m644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
-  install -D -m644 ${pkgname}_128x128.png 
"$pkgdir"/usr/share/pixmaps/$pkgname.png
-}

Copied: bt747/repos/community-any/PKGBUILD (from rev 263045, 
bt747/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-10-16 09:19:16 UTC (rev 263046)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=bt747
+_pkgname=BT747
+pkgver=2.1.3
+pkgrel=3
+pkgdesc="The swiss army knife for MTK GPS dataloggers"
+arch=('any')
+url="http://bt747.org/;
+license=('GPL')
+depends=('java-rxtx')
+makedepends=('imagemagick')
+source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
+https://www.bt747.org/icon/${pkgname}_128x128.gif
+$pkgname.desktop)
+sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
+'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
+'7ab8f2ae7a1cdc6e4aec353b5b2b7601d1bf6c7df99c942a3b98c1bc2437474f')
+
+prepare() {
+  cd "$srcdir"
+  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
+  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
+  s|amd64|x86_64|
+  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
+  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
+}
+
+build() {
+  cd "$srcdir"
+  convert "${pkgname}_128x128.gif" "${pkgname}_128x128.png"
+}
+
+package() {
+  cd "$srcdir"
+  _installdir="$pkgdir"/usr/share/java/$pkgname
+  install -D -m644 lib/jchart2d-3.1.0.jar "$_installdir"/lib/jchart2d-3.1.0.jar
+  install -D -m644 lib/jopt-simple-2.4.1.jar 
"$_installdir"/lib/jopt-simple-2.4.1.jar
+  install -D -m644 lib/jcalendar-1.3.2.jar 
"$_installdir"/lib/jcalendar-1.3.2.jar
+  install -D -m644 lib/swing-layout-1.0.3.jar 
"$_installdir"/lib/swing-layout-1.0.3.jar
+  install -D -m644 lib/swingx.jar "$_installdir"/lib/swingx.jar
+  install -D -m644 lib/swingx-ws.jar "$_installdir"/lib/swingx-ws.jar
+  

[arch-commits] Commit in bt747/repos (community-i686 community-x86_64)

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 09:18:57
  Author: bgyorgy
Revision: 263045

Revert bad commit

Deleted:
  bt747/repos/community-i686/
  bt747/repos/community-x86_64/


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

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 09:18:07
  Author: bgyorgy
Revision: 263044

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

Added:
  bt747/repos/community-i686/
  bt747/repos/community-i686/PKGBUILD
(from rev 263043, bt747/trunk/PKGBUILD)
  bt747/repos/community-i686/bt747.desktop
(from rev 263043, bt747/trunk/bt747.desktop)
  bt747/repos/community-x86_64/
  bt747/repos/community-x86_64/PKGBUILD
(from rev 263043, bt747/trunk/PKGBUILD)
  bt747/repos/community-x86_64/bt747.desktop
(from rev 263043, bt747/trunk/bt747.desktop)

+
 community-i686/PKGBUILD|   49 +++
 community-i686/bt747.desktop   |   13 ++
 community-x86_64/PKGBUILD  |   49 +++
 community-x86_64/bt747.desktop |   13 ++
 4 files changed, 124 insertions(+)

Copied: bt747/repos/community-i686/PKGBUILD (from rev 263043, 
bt747/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-16 09:18:07 UTC (rev 263044)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=bt747
+_pkgname=BT747
+pkgver=2.1.3
+pkgrel=3
+pkgdesc="The swiss army knife for MTK GPS dataloggers"
+arch=('any')
+url="http://bt747.org/;
+license=('GPL')
+depends=('java-rxtx')
+makedepends=('imagemagick')
+source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
+https://www.bt747.org/icon/${pkgname}_128x128.gif
+$pkgname.desktop)
+sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
+'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
+'7ab8f2ae7a1cdc6e4aec353b5b2b7601d1bf6c7df99c942a3b98c1bc2437474f')
+
+prepare() {
+  cd "$srcdir"
+  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
+  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
+  s|amd64|x86_64|
+  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
+  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
+}
+
+build() {
+  cd "$srcdir"
+  convert "${pkgname}_128x128.gif" "${pkgname}_128x128.png"
+}
+
+package() {
+  cd "$srcdir"
+  _installdir="$pkgdir"/usr/share/java/$pkgname
+  install -D -m644 lib/jchart2d-3.1.0.jar "$_installdir"/lib/jchart2d-3.1.0.jar
+  install -D -m644 lib/jopt-simple-2.4.1.jar 
"$_installdir"/lib/jopt-simple-2.4.1.jar
+  install -D -m644 lib/jcalendar-1.3.2.jar 
"$_installdir"/lib/jcalendar-1.3.2.jar
+  install -D -m644 lib/swing-layout-1.0.3.jar 
"$_installdir"/lib/swing-layout-1.0.3.jar
+  install -D -m644 lib/swingx.jar "$_installdir"/lib/swingx.jar
+  install -D -m644 lib/swingx-ws.jar "$_installdir"/lib/swingx-ws.jar
+  install -D -m644 dist/libBT747.jar "$_installdir"/dist/libBT747.jar
+  install -D -m644 dist/BT747_j2se.jar "$_installdir"/dist/BT747_j2se.jar
+  install -D -m755 ./run_j2se.sh "$pkgdir"/usr/bin/$pkgname
+  install -D -m644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+  install -D -m644 ${pkgname}_128x128.png 
"$pkgdir"/usr/share/pixmaps/$pkgname.png
+}

Copied: bt747/repos/community-i686/bt747.desktop (from rev 263043, 
bt747/trunk/bt747.desktop)
===
--- community-i686/bt747.desktop(rev 0)
+++ community-i686/bt747.desktop2017-10-16 09:18:07 UTC (rev 263044)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=BT747
+GenericName=GPS Tool
+GenericName[hu]=GPS eszköz
+X-GNOME-FullName=BT747 GPS Tool
+X-GNOME-FullName[hu]=BT747 GPS eszköz
+Comment=The swiss army knife for MTK loggers
+Comment[hu]=A svájcibicska MTK rögzítőkhöz
+Exec=bt747
+Icon=bt747
+Categories=Java;Utility;Map;

Copied: bt747/repos/community-x86_64/PKGBUILD (from rev 263043, 
bt747/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-10-16 09:18:07 UTC (rev 263044)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=bt747
+_pkgname=BT747
+pkgver=2.1.3
+pkgrel=3
+pkgdesc="The swiss army knife for MTK GPS dataloggers"
+arch=('any')
+url="http://bt747.org/;
+license=('GPL')
+depends=('java-rxtx')
+makedepends=('imagemagick')
+source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
+https://www.bt747.org/icon/${pkgname}_128x128.gif
+$pkgname.desktop)
+sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
+'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
+

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

2017-10-16 Thread Balló György
Date: Monday, October 16, 2017 @ 09:17:53
  Author: bgyorgy
Revision: 263043

Use https source

Modified:
  bt747/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-16 09:16:24 UTC (rev 263042)
+++ PKGBUILD2017-10-16 09:17:53 UTC (rev 263043)
@@ -11,8 +11,8 @@
 license=('GPL')
 depends=('java-rxtx')
 makedepends=('imagemagick')
-source=(http://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
-http://www.bt747.org/icon/${pkgname}_128x128.gif
+source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
+https://www.bt747.org/icon/${pkgname}_128x128.gif
 $pkgname.desktop)
 sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
 '6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'


  1   2   >