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

2016-04-21 Thread Felix Yan
Date: Friday, April 22, 2016 @ 06:09:24
  Author: fyan
Revision: 171565

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-22 04:08:49 UTC (rev 171564)
+++ community-i686/PKGBUILD 2016-04-22 04:09:24 UTC (rev 171565)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=5.10.1
-pkgrel=3
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
-sha256sums=('c6e278b612b53c240ddf85521403e55abfd8f0201d2f2c7e3d2c21383054aacd')
-
-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 PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser
-# --shared-v8
-
-  make
-}
-
-check() {
-  cd node-v$pkgver
-  make test
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # install docs as per user request
-  install -d "$pkgdir"/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-"$pkgdir"/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 171564, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-22 04:09:24 UTC (rev 171565)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=5.11.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
+sha256sums=('ef41b01a9e49de5a5d160071166f911d0bc9ff6a0bd0e88ea4863df572d95e91')
+
+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 PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser
+# --shared-v8
+
+  make
+}
+
+check() {
+  cd node-v$pkgver
+  make test
+}
+
+package() {
+  cd node-v$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # install docs as per user request
+  install -d "$pkgdir"/usr/share/doc/nodejs
+  cp -r 

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

2016-04-21 Thread Felix Yan
Date: Friday, April 22, 2016 @ 06:08:49
  Author: fyan
Revision: 171564

upgpkg: nodejs 5.11.0-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-22 03:56:48 UTC (rev 171563)
+++ PKGBUILD2016-04-22 04:08:49 UTC (rev 171564)
@@ -9,8 +9,8 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=5.10.1
-pkgrel=3
+pkgver=5.11.0
+pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'
@@ -19,7 +19,7 @@
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
-sha256sums=('c6e278b612b53c240ddf85521403e55abfd8f0201d2f2c7e3d2c21383054aacd')
+sha256sums=('ef41b01a9e49de5a5d160071166f911d0bc9ff6a0bd0e88ea4863df572d95e91')
 
 prepare() {
   cd node-v$pkgver


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

2016-04-21 Thread Felix Yan
Date: Friday, April 22, 2016 @ 05:56:48
  Author: fyan
Revision: 171563

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 171562, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-22 03:56:26 UTC (rev 171562)
+++ PKGBUILD2016-04-22 03:56:48 UTC (rev 171563)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=3.8.6
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'semver')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-  
-  # Fix files owned by nobody:
-  chown -R root "$pkgdir/usr/lib/node_modules" 
-
-  # Fix wrong symlinks
-  for _dir in man1 man5 man7; do
-rm -f "$pkgdir"/usr/share/man/$_dir/*
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-  
-  # Provide node-gyp executable
-  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
-  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-node "$srcdir"/npm/cli.js link $dep;
-  done
-  
-  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 171562, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-22 03:56:48 UTC (rev 171563)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=3.8.7
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'semver')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+  
+  # Fix files owned by nobody:
+  chown -R root "$pkgdir/usr/lib/node_modules" 
+
+  # Fix wrong symlinks
+  for _dir in man1 man5 man7; do
+rm -f "$pkgdir"/usr/share/man/$_dir/*
+cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
+done
+  done
+  
+  # Provide node-gyp executable
+  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
+  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+node "$srcdir"/npm/cli.js link $dep;
+  done
+  
+  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-04-21 Thread Felix Yan
Date: Friday, April 22, 2016 @ 05:56:26
  Author: fyan
Revision: 171562

upgpkg: npm 3.8.7-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-22 03:55:53 UTC (rev 171561)
+++ PKGBUILD2016-04-22 03:56:26 UTC (rev 171562)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=3.8.6
+pkgver=3.8.7
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


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

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:55:35
  Author: kkeen
Revision: 171560

upgpkg: ipython 4.2.0-2  FS#49044

Modified:
  ipython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-22 03:51:55 UTC (rev 171559)
+++ PKGBUILD2016-04-22 03:55:35 UTC (rev 171560)
@@ -8,7 +8,7 @@
 pkgbase=ipython
 pkgname=(ipython ipython2)
 pkgver=4.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
 url="http://ipython.org;
@@ -28,7 +28,6 @@
 
"https://pypi.python.org/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz;
 
"https://pypi.python.org/packages/source/p/pickleshare/pickleshare-$_psharev.tar.gz;
 
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip;
-
"https://pypi.python.org/packages/source/b/backports.shutil_get_terminal_size/backports.shutil_get_terminal_size-1.0.0.tar.gz;
 
"http://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
 md5sums=('9432d4758961501bf5f33adde08a9e6e'
  'f9cc1ad00a793a65d7bc88d69ee65920'
@@ -35,7 +34,6 @@
  '9a8afbe0978adbcbfcb3b35b2d015a56'
  '29d74cde0255546b6b2e1b48a0b31a54'
  'f9c1fab00fd981be588fc32759f474e3'
- '03267762480bd86b50580dc19dff3c66'
  '2901d65f1b1fe354e72850085cd1c072')
 
 # With 4.0 many previously bundled external libraries are no longer bundled
@@ -108,7 +106,9 @@
 
 package_ipython2() {
   pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite' 
'python2-setuptools' 'python2-path' 'python2-pathlib')
+  depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite'
+'python2-setuptools' 'python2-path' 'python2-pathlib'
+'python2-backports.shutil_get_terminal_size')
   optdepends=("wxpython: needed for ipython2 --gui=wx"
   "python2-nose: for IPython's test suite")
   # "wxpython: needed for ipython2 --gui=wx"   does this still work?
@@ -130,9 +130,6 @@
   cd "$srcdir/python2-simplegeneric-0.8.1"
   python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
 
-  cd "$srcdir/backports.shutil_get_terminal_size-1.0.0"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
   cd "$srcdir/ipython2-$pkgver"
   install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython2/LICENSE"
 


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

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:55:53
  Author: kkeen
Revision: 171561

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
(from rev 171560, ipython/trunk/PKGBUILD)
  ipython/repos/community-any/ipython.install
(from rev 171560, ipython/trunk/ipython.install)
Deleted:
  ipython/repos/community-any/PKGBUILD
  ipython/repos/community-any/ipython.install

-+
 PKGBUILD|  309 ++
 ipython.install |   24 ++--
 2 files changed, 165 insertions(+), 168 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-22 03:55:35 UTC (rev 171560)
+++ PKGBUILD2016-04-22 03:55:53 UTC (rev 171561)
@@ -1,156 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: PepeSmith
-# Contributor: Aron Asor 
-# Contributor: Chris Brannon 
-# Contributor : Douglas Soares de Andrade 
-
-pkgbase=ipython
-pkgname=(ipython ipython2)
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="http://ipython.org;
-license=('BSD')
-depends=('python' 'python-decorator' 'python-pexpect' 'sqlite' 
'python-setuptools' 'python-path')
-makedepends=('python-setuptools' 'python2-setuptools')
-optdepends=("python-nose: for IPython's test suite")
-install=ipython.install
-
-# some of these will update rapidly, others never
-# so _vars will be phased in as new updates are released
-_traitv=4.2.1
-_psharev=0.7.2
-
-source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz;
-
"https://pypi.python.org/packages/source/t/traitlets/traitlets-$_traitv.tar.gz;
-
"https://pypi.python.org/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz;
-
"https://pypi.python.org/packages/source/p/pickleshare/pickleshare-$_psharev.tar.gz;
-
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip;
-
"https://pypi.python.org/packages/source/b/backports.shutil_get_terminal_size/backports.shutil_get_terminal_size-1.0.0.tar.gz;
-
"http://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-md5sums=('9432d4758961501bf5f33adde08a9e6e'
- 'f9cc1ad00a793a65d7bc88d69ee65920'
- '9a8afbe0978adbcbfcb3b35b2d015a56'
- '29d74cde0255546b6b2e1b48a0b31a54'
- 'f9c1fab00fd981be588fc32759f474e3'
- '03267762480bd86b50580dc19dff3c66'
- '2901d65f1b1fe354e72850085cd1c072')
-
-# With 4.0 many previously bundled external libraries are no longer bundled
-# Most are written/maintained/used only by the ipython project
-# Since there are so many and they are so small, they get re-bundled here
-# Break them out if any non-ipython package ends up needing these
-
-# traitlets (depends on python-decorator)
-# ipython_genutils
-# "Pretend this doesn’t exist. Nobody should use it."
-# "Vestigial IPython utilities: DO NOT USE"
-# (still required for now though, but drop at first chance)
-# pickleshare (depends on path.py)
-# simplegeneric (so old that it only comes in .zip and still refers to the 
cheeseshop)
-# shutil_get_terminal_size ?
-
-# confirm that an update does not break sage?
-
-prepare() {
-  cd "$srcdir"
-  cp -r ipython-$pkgveripython2-$pkgver
-  cp -r ipython_genutils-0.1.0 ipython2_genutils-0.1.0
-  cp -r pickleshare-$_psharev  python2-pickleshare-$_psharev
-  cp -r traitlets-$_traitv python2-traitlets-$_traitv
-  cp -r simplegeneric-0.8.1python2-simplegeneric-0.8.1
-
-  # python 3.5 does not need a 3.3 backport hack
-  cd "$srcdir/ipython-$pkgver"
-  sed -i 's|backports.shutil_get_terminal_size|shutil|' 
IPython/utils/terminal.py
-}
-
-build() {
-  cd "$srcdir"
-}
-
-package_ipython() {
-  cd "$srcdir/ipython-$pkgver"
-
-  # see https://github.com/ipython/ipython/issues/2057
-  #export LC_ALL=en_US.UTF-8
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  # TEMPORARY!
-  cd "$srcdir/ipython_genutils-0.1.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/pickleshare-$_psharev"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/traitlets-$_traitv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/simplegeneric-0.8.1"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipython-$pkgver"
-  install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
-
-  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
-  # FS#45120
-  sed -i 's/gnome-netstatus-idle/ipython/' *.desktop
-  install -Dm644 ipython.desktop 
"$pkgdir/usr/share/applications/ipython.desktop"
-  #install -Dm644 ipython-qtconsole.desktop 

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

2016-04-21 Thread Gaetan Bisson
Date: Friday, April 22, 2016 @ 05:52:04
  Author: bisson
Revision: 265831

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

Added:
  uim/repos/extra-i686/PKGBUILD
(from rev 265830, uim/trunk/PKGBUILD)
  uim/repos/extra-i686/install
(from rev 265830, uim/trunk/install)
  uim/repos/extra-x86_64/PKGBUILD
(from rev 265830, uim/trunk/PKGBUILD)
  uim/repos/extra-x86_64/install
(from rev 265830, uim/trunk/install)
Deleted:
  uim/repos/extra-i686/PKGBUILD
  uim/repos/extra-i686/install
  uim/repos/extra-x86_64/PKGBUILD
  uim/repos/extra-x86_64/install

---+
 /PKGBUILD |   80 
 /install  |   26 +++
 extra-i686/PKGBUILD   |   40 
 extra-i686/install|   13 ---
 extra-x86_64/PKGBUILD |   40 
 extra-x86_64/install  |   13 ---
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-22 03:51:31 UTC (rev 265830)
+++ extra-i686/PKGBUILD 2016-04-22 03:52:04 UTC (rev 265831)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: damir 
-
-pkgname=uim
-pkgver=1.8.6
-pkgrel=5
-pkgdesc='Multilingual input method library'
-url='http://code.google.com/p/uim/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-depends=('libxft' 'libedit' 'm17n-lib')
-makedepends=('intltool' 'gettext' 'qt4' 'gtk2' 'gtk3' 'anthy')
-optdepends=('qt4: immodule and helper applications'
-'gtk2: immodule and helper applications'
-'gtk3: immodules and helper applications')
-source=("https://uim.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('409c30b31b9e58e3c18cb7862933487b0585cd1d')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/uim \
-   --with-anthy-utf8 \
-   --with-qt4-immodule \
-   --with-qt4 \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install -j1 # FS#41112
-   rm "${pkgdir}"/usr/lib/libgcroots.a
-   install -D -m644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: uim/repos/extra-i686/PKGBUILD (from rev 265830, uim/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-22 03:52:04 UTC (rev 265831)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: damir 
+
+pkgname=uim
+pkgver=1.8.6
+pkgrel=6
+pkgdesc='Multilingual input method library'
+url='https://github.com/uim/uim/wiki'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('libxft' 'libedit' 'm17n-lib')
+makedepends=('intltool' 'gettext' 'qt4' 'gtk2' 'gtk3' 'anthy')
+optdepends=('qt4: immodule and helper applications'
+'gtk2: immodule and helper applications'
+'gtk3: immodules and helper applications')
+source=("https://uim.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('409c30b31b9e58e3c18cb7862933487b0585cd1d')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/uim \
+   --with-anthy-utf8 \
+   --with-qt4-immodule \
+   --with-qt4 \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install -j1 # FS#41112
+   rm "${pkgdir}"/usr/lib/libgcroots.a
+   install -D -m644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2016-04-22 03:51:31 UTC (rev 265830)
+++ extra-i686/install  2016-04-22 03:52:04 UTC (rev 265831)
@@ -1,13 +0,0 @@
-post_install() {
-   [[ -x usr/bin/gtk-query-immodules-2.0 ]] && 
usr/bin/gtk-query-immodules-2.0 > etc/gtk-2.0/gtk.immodules
-   [[ -x usr/bin/gtk-query-immodules-3.0 ]] && 
usr/bin/gtk-query-immodules-3.0 > usr/lib/gtk-3.0/3.0.0/immodules.cache
-   true
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: uim/repos/extra-i686/install (from rev 265830, uim/trunk/install)
===
--- extra-i686/install  (rev 0)
+++ extra-i686/install  2016-04-22 03:52:04 UTC (rev 265831)
@@ -0,0 +1,13 @@
+post_install() {
+   [[ -x usr/bin/gtk-query-immodules-2.0 ]] && 
usr/bin/gtk-query-immodules-2.0 --update-cache
+   [[ -x usr/bin/gtk-query-immodules-3.0 ]] && 
usr/bin/gtk-query-immodules-3.0 --update-cache
+ 

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

2016-04-21 Thread Gaetan Bisson
Date: Friday, April 22, 2016 @ 05:51:31
  Author: bisson
Revision: 265830

fix FS#47202 and update url

Modified:
  uim/trunk/PKGBUILD
  uim/trunk/install

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:46:41 UTC (rev 265829)
+++ PKGBUILD2016-04-22 03:51:31 UTC (rev 265830)
@@ -4,9 +4,9 @@
 
 pkgname=uim
 pkgver=1.8.6
-pkgrel=5
+pkgrel=6
 pkgdesc='Multilingual input method library'
-url='http://code.google.com/p/uim/'
+url='https://github.com/uim/uim/wiki'
 license=('custom:BSD')
 arch=('i686' 'x86_64')
 depends=('libxft' 'libedit' 'm17n-lib')

Modified: install
===
--- install 2016-04-21 19:46:41 UTC (rev 265829)
+++ install 2016-04-22 03:51:31 UTC (rev 265830)
@@ -1,6 +1,6 @@
 post_install() {
-   [[ -x usr/bin/gtk-query-immodules-2.0 ]] && 
usr/bin/gtk-query-immodules-2.0 > etc/gtk-2.0/gtk.immodules
-   [[ -x usr/bin/gtk-query-immodules-3.0 ]] && 
usr/bin/gtk-query-immodules-3.0 > usr/lib/gtk-3.0/3.0.0/immodules.cache
+   [[ -x usr/bin/gtk-query-immodules-2.0 ]] && 
usr/bin/gtk-query-immodules-2.0 --update-cache
+   [[ -x usr/bin/gtk-query-immodules-3.0 ]] && 
usr/bin/gtk-query-immodules-3.0 --update-cache
true
 }
 


[arch-commits] Commit in python2-backports.ssl_match_hostname/trunk (PKGBUILD)

2016-04-21 Thread Felix Yan
Date: Friday, April 22, 2016 @ 05:51:34
  Author: fyan
Revision: 171558

upgpkg: python2-backports.ssl_match_hostname 3.5.0.1-2

use the python2-backports namespace package

Modified:
  python2-backports.ssl_match_hostname/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-22 03:51:06 UTC (rev 171557)
+++ PKGBUILD2016-04-22 03:51:34 UTC (rev 171558)
@@ -4,16 +4,21 @@
 
 pkgname=python2-backports.ssl_match_hostname
 pkgver=3.5.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="The ssl.match_hostname() function from Python 3.5"
 arch=('any')
 url="https://pypi.python.org/pypi/backports.ssl_match_hostname;
 license=('PSF')
-depends=('python2')
+depends=('python2-backports')
 optdepends=('python2-ipaddress: for IPAddress ServerAltnames support')
 
source=("https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-$pkgver.tar.gz;)
 sha256sums=('502ad98707319f4a51fa2ca1c677bd659008d27ded9f6380c79e8932e38dcdf2')
 
+prepare() {
+  # In python2-backports
+  rm backports.ssl_match_hostname-$pkgver/backports/__init__.py
+}
+
 package() {
   cd backports.ssl_match_hostname-$pkgver
   python2 setup.py install --root="$pkgdir" --optimize=1


[arch-commits] Commit in python2-backports.ssl_match_hostname/repos/community-any (2 files)

2016-04-21 Thread Felix Yan
Date: Friday, April 22, 2016 @ 05:51:55
  Author: fyan
Revision: 171559

archrelease: copy trunk to community-any

Added:
  python2-backports.ssl_match_hostname/repos/community-any/PKGBUILD
(from rev 171558, python2-backports.ssl_match_hostname/trunk/PKGBUILD)
Deleted:
  python2-backports.ssl_match_hostname/repos/community-any/PKGBUILD

--+
 PKGBUILD |   45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-22 03:51:34 UTC (rev 171558)
+++ PKGBUILD2016-04-22 03:51:55 UTC (rev 171559)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Crass00 
-
-pkgname=python2-backports.ssl_match_hostname
-pkgver=3.5.0.1
-pkgrel=1
-pkgdesc="The ssl.match_hostname() function from Python 3.5"
-arch=('any')
-url="https://pypi.python.org/pypi/backports.ssl_match_hostname;
-license=('PSF')
-depends=('python2')
-optdepends=('python2-ipaddress: for IPAddress ServerAltnames support')
-source=("https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-$pkgver.tar.gz;)
-sha256sums=('502ad98707319f4a51fa2ca1c677bd659008d27ded9f6380c79e8932e38dcdf2')
-
-package() {
-  cd backports.ssl_match_hostname-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python2-backports.ssl_match_hostname/repos/community-any/PKGBUILD (from 
rev 171558, python2-backports.ssl_match_hostname/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-22 03:51:55 UTC (rev 171559)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Crass00 
+
+pkgname=python2-backports.ssl_match_hostname
+pkgver=3.5.0.1
+pkgrel=2
+pkgdesc="The ssl.match_hostname() function from Python 3.5"
+arch=('any')
+url="https://pypi.python.org/pypi/backports.ssl_match_hostname;
+license=('PSF')
+depends=('python2-backports')
+optdepends=('python2-ipaddress: for IPAddress ServerAltnames support')
+source=("https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-$pkgver.tar.gz;)
+sha256sums=('502ad98707319f4a51fa2ca1c677bd659008d27ded9f6380c79e8932e38dcdf2')
+
+prepare() {
+  # In python2-backports
+  rm backports.ssl_match_hostname-$pkgver/backports/__init__.py
+}
+
+package() {
+  cd backports.ssl_match_hostname-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in python2-backports.shutil_get_terminal_size/repos (2 files)

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:51:06
  Author: kkeen
Revision: 171557

archrelease: copy trunk to community-any

Added:
  python2-backports.shutil_get_terminal_size/repos/community-any/
  python2-backports.shutil_get_terminal_size/repos/community-any/PKGBUILD
(from rev 171556, python2-backports.shutil_get_terminal_size/trunk/PKGBUILD)

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

Copied: python2-backports.shutil_get_terminal_size/repos/community-any/PKGBUILD 
(from rev 171556, python2-backports.shutil_get_terminal_size/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-04-22 03:51:06 UTC (rev 171557)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=python2-backports.shutil_get_terminal_size
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="The get_terminal_size() function from Python 3.3"
+arch=('any')
+url="https://pypi.python.org/pypi/backports.ssl_match_hostname;
+license=('MIT')
+depends=('python2-backports')
+makedepends=('python2-setuptools')
+source=("https://github.com/chrippa/backports.shutil_get_terminal_size/archive/v$pkgver.tar.gz;)
+md5sums=('82499a36a98dd7ed37c8678e6002a375')
+
+package() {
+  cd "$srcdir/backports.shutil_get_terminal_size-$pkgver"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  rm "$pkgdir/usr/lib/python2.7/site-packages/backports/__init__.py"*
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python2-backports.shutil_get_terminal_size/trunk (PKGBUILD)

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:50:55
  Author: kkeen
Revision: 171556

upgpkg: python2-backports.shutil_get_terminal_size 1.0.0-1

Modified:
  python2-backports.shutil_get_terminal_size/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-22 03:48:08 UTC (rev 171555)
+++ PKGBUILD2016-04-22 03:50:55 UTC (rev 171556)
@@ -8,6 +8,7 @@
 url="https://pypi.python.org/pypi/backports.ssl_match_hostname;
 license=('MIT')
 depends=('python2-backports')
+makedepends=('python2-setuptools')
 
source=("https://github.com/chrippa/backports.shutil_get_terminal_size/archive/v$pkgver.tar.gz;)
 md5sums=('82499a36a98dd7ed37c8678e6002a375')
 


[arch-commits] Commit in (4 files)

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:48:08
  Author: kkeen
Revision: 171555

pkginit: python2-backports.shutil_get_terminal_size

Added:
  python2-backports.shutil_get_terminal_size/
  python2-backports.shutil_get_terminal_size/repos/
  python2-backports.shutil_get_terminal_size/trunk/
  python2-backports.shutil_get_terminal_size/trunk/PKGBUILD

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

Added: python2-backports.shutil_get_terminal_size/trunk/PKGBUILD
===
--- python2-backports.shutil_get_terminal_size/trunk/PKGBUILD   
(rev 0)
+++ python2-backports.shutil_get_terminal_size/trunk/PKGBUILD   2016-04-22 
03:48:08 UTC (rev 171555)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=python2-backports.shutil_get_terminal_size
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="The get_terminal_size() function from Python 3.3"
+arch=('any')
+url="https://pypi.python.org/pypi/backports.ssl_match_hostname;
+license=('MIT')
+depends=('python2-backports')
+source=("https://github.com/chrippa/backports.shutil_get_terminal_size/archive/v$pkgver.tar.gz;)
+md5sums=('82499a36a98dd7ed37c8678e6002a375')
+
+package() {
+  cd "$srcdir/backports.shutil_get_terminal_size-$pkgver"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  rm "$pkgdir/usr/lib/python2.7/site-packages/backports/__init__.py"*
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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


[arch-commits] Commit in python2-backports/repos (2 files)

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:27:36
  Author: kkeen
Revision: 171554

archrelease: copy trunk to community-any

Added:
  python2-backports/repos/community-any/
  python2-backports/repos/community-any/PKGBUILD
(from rev 171553, python2-backports/trunk/PKGBUILD)

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

Copied: python2-backports/repos/community-any/PKGBUILD (from rev 171553, 
python2-backports/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-04-22 03:27:36 UTC (rev 171554)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python2-backports
+pkgver=1.0
+pkgrel=1
+pkgdesc="Namespace package required for backports collection"
+arch=('any')
+url="https://pypi.python.org/pypi/backports;
+license=('PSF')
+depends=('python2')
+
+build() {
+  cd "$srcdir"
+  cat << EOF > __init__.py
+from pkgutil import extend_path
+__path__ = extend_path(__path__, __name__)
+EOF
+  python2 -m compileall .
+}
+
+package() {
+  cd "$srcdir"
+  install -Dm644 __init__.py  
"$pkgdir/usr/lib/python2.7/site-packages/backports/__init__.py"
+  install -Dm644 __init__.pyc 
"$pkgdir/usr/lib/python2.7/site-packages/backports/__init__.pyc"
+}


[arch-commits] Commit in (4 files)

2016-04-21 Thread Kyle Keen
Date: Friday, April 22, 2016 @ 05:24:38
  Author: kkeen
Revision: 171553

pkginit: python2-backports namespace package

Added:
  python2-backports/
  python2-backports/repos/
  python2-backports/trunk/
  python2-backports/trunk/PKGBUILD

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

Added: python2-backports/trunk/PKGBUILD
===
--- python2-backports/trunk/PKGBUILD(rev 0)
+++ python2-backports/trunk/PKGBUILD2016-04-22 03:24:38 UTC (rev 171553)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python2-backports
+pkgver=1.0
+pkgrel=1
+pkgdesc="Namespace package required for backports collection"
+arch=('any')
+url="https://pypi.python.org/pypi/backports;
+license=('PSF')
+depends=('python2')
+
+build() {
+  cd "$srcdir"
+  cat << EOF > __init__.py
+from pkgutil import extend_path
+__path__ = extend_path(__path__, __name__)
+EOF
+  python2 -m compileall .
+}
+
+package() {
+  cd "$srcdir"
+  install -Dm644 __init__.py  
"$pkgdir/usr/lib/python2.7/site-packages/backports/__init__.py"
+  install -Dm644 __init__.pyc 
"$pkgdir/usr/lib/python2.7/site-packages/backports/__init__.pyc"
+}


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


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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:53:11
  Author: tpowa
Revision: 171539

upgpkg: bbswitch 0.8-47

rebuild against 4.5.2

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:51:42 UTC (rev 171538)
+++ PKGBUILD2016-04-21 19:53:11 UTC (rev 171539)
@@ -6,7 +6,7 @@
 pkgname=bbswitch
 pkgver=0.8
 _extramodules=extramodules-4.5-ARCH # Don't forget to update bbswitch.install
-pkgrel=46
+pkgrel=47
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('i686' 'x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:51:42
  Author: tpowa
Revision: 171538

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

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

+
 community-testing-i686/PKGBUILD|   47 +++
 community-testing-i686/acpi_call.install   |   14 
 community-testing-x86_64/PKGBUILD  |   47 +++
 community-testing-x86_64/acpi_call.install |   14 
 4 files changed, 122 insertions(+)

Copied: acpi_call/repos/community-testing-i686/PKGBUILD (from rev 171537, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-04-21 19:51:42 UTC (rev 171538)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=45
+_extramodules=extramodules-4.5-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='http://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.5' 'linux<4.6')
+makedepends=('linux-headers>=4.5' 'linux-headers<4.6')
+install='acpi_call.install'
+source=("$pkgname-$pkgver.tar.gz::http://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
+  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/acpi_call
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-i686/acpi_call.install (from rev 
171537, acpi_call/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2016-04-21 19:51:42 UTC (rev 
171538)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-4.5-ARCH
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 171537, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-04-21 19:51:42 UTC (rev 171538)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=45
+_extramodules=extramodules-4.5-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='http://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.5' 'linux<4.6')
+makedepends=('linux-headers>=4.5' 'linux-headers<4.6')
+install='acpi_call.install'
+source=("$pkgname-$pkgver.tar.gz::http://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip 

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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:51:33
  Author: tpowa
Revision: 171537

upgpkg: acpi_call 1.1.0-45

rebuild against 4.5.2

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:29:56 UTC (rev 171536)
+++ PKGBUILD2016-04-21 19:51:33 UTC (rev 171537)
@@ -5,7 +5,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=44
+pkgrel=45
 _extramodules=extramodules-4.5-ARCH
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')


[arch-commits] Commit in nvidia-304xx/trunk (PKGBUILD)

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:46:33
  Author: tpowa
Revision: 265828

upgpkg: nvidia-304xx 304.131-12

rebuild against 4.5.2

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:42:32 UTC (rev 265827)
+++ PKGBUILD2016-04-21 19:46:33 UTC (rev 265828)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.131
 _extramodules=extramodules-4.5-ARCH
-pkgrel=11
+pkgrel=12
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
 makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.5' 'linux-headers<4.6')


[arch-commits] Commit in nvidia-304xx/repos (8 files)

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:46:41
  Author: tpowa
Revision: 265829

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

Added:
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 265828, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/disable-mtrr.patch
(from rev 265828, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/testing-i686/nvidia-304xx.install
(from rev 265828, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/testing-x86_64/
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 265828, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/disable-mtrr.patch
(from rev 265828, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install
(from rev 265828, nvidia-304xx/trunk/nvidia-304xx.install)

-+
 testing-i686/PKGBUILD   |   70 ++
 testing-i686/disable-mtrr.patch |   24 +++
 testing-i686/nvidia-304xx.install   |   13 ++
 testing-x86_64/PKGBUILD |   70 ++
 testing-x86_64/disable-mtrr.patch   |   24 +++
 testing-x86_64/nvidia-304xx.install |   13 ++
 6 files changed, 214 insertions(+)

Copied: nvidia-304xx/repos/testing-i686/PKGBUILD (from rev 265828, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-21 19:46:41 UTC (rev 265829)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
+pkgver=304.131
+_extramodules=extramodules-4.5-ARCH
+pkgrel=12
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.5' 'linux-headers<4.6')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
"http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+disable-mtrr.patch)
+sha512sums=('3e67c40648554dc49472081eee88ae982c3b235b3346e4d9e7fb5ae33ec5f10ed088da804ac7d8bd1565995df3861f12b3560030cd3a19339a2d35768b0a943e'
+
'07e529e4e81c42b43861475029aa0f223f8f3d299be9ddfe820c583e26aae49223a9b0dfee6d66ab09c526554bb581e5f8cf755eda600cb9e0bdac7d5f4acb93'
+
'54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+# FS#47092
+(cd kernel; patch -p1 --no-backup-if-mismatch -i 
"$srcdir"/disable-mtrr.patch)
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-304xx() {
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+depends=('linux>=4.5' 'linux<4.6' 'libgl' "nvidia-304xx-utils=${pkgver}")
+   conflicts+=('nvidia-304xx-dkms')
+install=nvidia-304xx.install
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/${pkgname}.install"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+
+# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
+}
+
+package_nvidia-304xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 304xx legacy branch"
+depends=('dkms' "nvidia-304xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+   conflicts+=('nvidia-304xx')
+
+cd ${_pkg}
+   make -C kernel clean
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
+}

Copied: nvidia-304xx/repos/testing-i686/disable-mtrr.patch (from rev 265828, 
nvidia-304xx/trunk/disable-mtrr.patch)
===
--- testing-i686/disable-mtrr.patch (rev 0)
+++ 

[arch-commits] Commit in nvidia-340xx/repos (6 files)

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:42:32
  Author: tpowa
Revision: 265827

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

Added:
  nvidia-340xx/repos/testing-i686/
  nvidia-340xx/repos/testing-i686/PKGBUILD
(from rev 265826, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-i686/nvidia-340xx.install
(from rev 265826, nvidia-340xx/trunk/nvidia-340xx.install)
  nvidia-340xx/repos/testing-x86_64/
  nvidia-340xx/repos/testing-x86_64/PKGBUILD
(from rev 265826, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-x86_64/nvidia-340xx.install
(from rev 265826, nvidia-340xx/trunk/nvidia-340xx.install)

-+
 testing-i686/PKGBUILD   |   67 ++
 testing-i686/nvidia-340xx.install   |   13 ++
 testing-x86_64/PKGBUILD |   67 ++
 testing-x86_64/nvidia-340xx.install |   13 ++
 4 files changed, 160 insertions(+)

Copied: nvidia-340xx/repos/testing-i686/PKGBUILD (from rev 265826, 
nvidia-340xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-21 19:42:32 UTC (rev 265827)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.96
+_extramodules=extramodules-4.5-ARCH
+pkgrel=11
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.5' 'linux-headers<4.6')
+conflicts=('nvidia')
+license=('custom')
+options=(!strip)
+source_i686+=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
+source_x86_64+=("ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums_i686=('cb64b165b638671bcdc75bcf297b8d90')
+md5sums_x86_64=('7bdbcee13bade63227933d9217571882')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.5' 'linux<4.6' 'libgl' "nvidia-340xx-utils=${pkgver}")
+conflict+=('nvidia-340xx-dkms')
+install=nvidia-340xx.install
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+make -C kernel clean
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+}

Copied: nvidia-340xx/repos/testing-i686/nvidia-340xx.install (from rev 265826, 
nvidia-340xx/trunk/nvidia-340xx.install)
===
--- testing-i686/nvidia-340xx.install   (rev 0)
+++ testing-i686/nvidia-340xx.install   2016-04-21 19:42:32 UTC (rev 265827)
@@ -0,0 +1,13 @@
+post_install() {
+EXTRAMODULES='extramodules-4.5-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: nvidia-340xx/repos/testing-x86_64/PKGBUILD (from rev 265826, 
nvidia-340xx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-04-21 19:42:32 UTC (rev 265827)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# 

[arch-commits] Commit in nvidia-340xx/trunk (PKGBUILD)

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:42:23
  Author: tpowa
Revision: 265826

upgpkg: nvidia-340xx 340.96-11

rebuild against 4.5.2

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:33:28 UTC (rev 265825)
+++ PKGBUILD2016-04-21 19:42:23 UTC (rev 265826)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.96
 _extramodules=extramodules-4.5-ARCH
-pkgrel=10
+pkgrel=11
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
 makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.5' 'linux-headers<4.6')


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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:33:28
  Author: tpowa
Revision: 265825

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

Added:
  nvidia/repos/testing-i686/
  nvidia/repos/testing-i686/PKGBUILD
(from rev 265824, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia.install
(from rev 265824, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 265824, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 265824, nvidia/trunk/nvidia.install)

---+
 testing-i686/PKGBUILD |   89 
 testing-i686/nvidia.install   |   13 +
 testing-x86_64/PKGBUILD   |   89 
 testing-x86_64/nvidia.install |   13 +
 4 files changed, 204 insertions(+)

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 265824, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-21 19:33:28 UTC (rev 265825)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=364.16
+_extramodules=extramodules-4.5-ARCH
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.5' 'linux-headers<4.6')
+license=('custom')
+options=('!strip')
+# See nvidia-utils
+# 
source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
+# 
source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}.run;)
+source_i686=("NVIDIA-Linux-x86-${pkgver}.run::https://developer.nvidia.com/linux32bit;)
+source_x86_64=("NVIDIA-Linux-x86_64-${pkgver}.run::https://developer.nvidia.com/linux64bit;)
+md5sums_i686=('c25de6f7e328c6eab5305be0cd0b02d5')
+md5sums_x86_64=('5d954bfb0be8532779a4ca1741851493')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}"
+# [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() { 
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.5' 'linux<4.6' "nvidia-utils=${pkgver}" 'libgl')
+install=nvidia.install
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \
+ "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-modeset.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \
+ "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko"
+
+if [[ "$CARCH" = "x86_64" ]]; then
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+fi
+
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia')
+
+cd ${_pkg}
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+echo 'blacklist nouveau' > "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia/repos/testing-i686/nvidia.install (from rev 265824, 
nvidia/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ 

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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:33:09
  Author: tpowa
Revision: 265824

upgpkg: nvidia 364.16-4

rebuild against 4.5.2

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:23:37 UTC (rev 265823)
+++ PKGBUILD2016-04-21 19:33:09 UTC (rev 265824)
@@ -7,7 +7,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=364.16
 _extramodules=extramodules-4.5-ARCH
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 21:29:56
  Author: arojas
Revision: 171536

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 19:29:25 UTC (rev 171535)
+++ community-i686/PKGBUILD 2016-04-21 19:29:56 UTC (rev 171536)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-
-pkgname=sshfs
-pkgver=2.6
-_tag=sshfs_${pkgver/./_}
-pkgrel=1
-pkgdesc="FUSE client based on the SSH File Transfer Protocol"
-arch=('i686' 'x86_64')
-url="http://github.com/libfuse/sshfs;
-license=('GPL')
-depends=('fuse' 'glib2' 'openssh')
-makedepends=('pkg-config')
-source=(https://github.com/libfuse/sshfs/archive/${_tag}.zip)
-md5sums=('b5bf2b1205ae235905f8a20e5dbc2d5f')
-
-build() {
-  cd sshfs-$_tag
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd sshfs-${_tag}
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: sshfs/repos/community-i686/PKGBUILD (from rev 171535, 
sshfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 19:29:56 UTC (rev 171536)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=sshfs
+pkgver=2.7
+_tag=sshfs_${pkgver/./_}
+pkgrel=1
+pkgdesc="FUSE client based on the SSH File Transfer Protocol"
+arch=('i686' 'x86_64')
+url="http://github.com/libfuse/sshfs;
+license=('GPL')
+depends=('fuse' 'glib2' 'openssh')
+makedepends=('pkg-config')
+source=(https://github.com/libfuse/sshfs/archive/$pkgname-$pkgver.tar.gz)
+md5sums=('5e803dc318d4b2bfa82d274323fa99a2')
+
+build() {
+  cd sshfs-sshfs-$pkgver
+
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd sshfs-sshfs-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-21 19:29:25 UTC (rev 171535)
+++ community-x86_64/PKGBUILD   2016-04-21 19:29:56 UTC (rev 171536)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-
-pkgname=sshfs
-pkgver=2.6
-_tag=sshfs_${pkgver/./_}
-pkgrel=1
-pkgdesc="FUSE client based on the SSH File Transfer Protocol"
-arch=('i686' 'x86_64')
-url="http://github.com/libfuse/sshfs;
-license=('GPL')
-depends=('fuse' 'glib2' 'openssh')
-makedepends=('pkg-config')
-source=(https://github.com/libfuse/sshfs/archive/${_tag}.zip)
-md5sums=('b5bf2b1205ae235905f8a20e5dbc2d5f')
-
-build() {
-  cd sshfs-$_tag
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd sshfs-${_tag}
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: sshfs/repos/community-x86_64/PKGBUILD (from rev 171535, 
sshfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-21 19:29:56 UTC (rev 171536)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=sshfs
+pkgver=2.7
+_tag=sshfs_${pkgver/./_}
+pkgrel=1
+pkgdesc="FUSE client based on the SSH File Transfer Protocol"
+arch=('i686' 'x86_64')
+url="http://github.com/libfuse/sshfs;
+license=('GPL')
+depends=('fuse' 'glib2' 'openssh')
+makedepends=('pkg-config')
+source=(https://github.com/libfuse/sshfs/archive/$pkgname-$pkgver.tar.gz)
+md5sums=('5e803dc318d4b2bfa82d274323fa99a2')
+
+build() {
+  cd sshfs-sshfs-$pkgver
+
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd sshfs-sshfs-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 21:29:25
  Author: arojas
Revision: 171535

Update to 2.7

Modified:
  sshfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:25:49 UTC (rev 171534)
+++ PKGBUILD2016-04-21 19:29:25 UTC (rev 171535)
@@ -2,7 +2,7 @@
 # Maintainer: Giovanni Scafora 
 
 pkgname=sshfs
-pkgver=2.6
+pkgver=2.7
 _tag=sshfs_${pkgver/./_}
 pkgrel=1
 pkgdesc="FUSE client based on the SSH File Transfer Protocol"
@@ -11,11 +11,11 @@
 license=('GPL')
 depends=('fuse' 'glib2' 'openssh')
 makedepends=('pkg-config')
-source=(https://github.com/libfuse/sshfs/archive/${_tag}.zip)
-md5sums=('b5bf2b1205ae235905f8a20e5dbc2d5f')
+source=(https://github.com/libfuse/sshfs/archive/$pkgname-$pkgver.tar.gz)
+md5sums=('5e803dc318d4b2bfa82d274323fa99a2')
 
 build() {
-  cd sshfs-$_tag
+  cd sshfs-sshfs-$pkgver
 
   autoreconf -i
   ./configure --prefix=/usr
@@ -23,7 +23,7 @@
 }
 
 package() {
-  cd sshfs-${_tag}
+  cd sshfs-sshfs-$pkgver
 
   make DESTDIR="${pkgdir}" install
 }


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 21:25:49
  Author: arojas
Revision: 171534

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 19:25:15 UTC (rev 171533)
+++ community-i686/PKGBUILD 2016-04-21 19:25:49 UTC (rev 171534)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=ccache
-pkgver=3.2.4
-pkgrel=1
-pkgdesc="A compiler cache"
-arch=('i686' 'x86_64')
-url="http://ccache.samba.org/;
-license=('GPL3')
-depends=('zlib')
-source=("http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('1781eec25073765828b874004d944c53')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  install -Dm 755 ccache ${pkgdir}/usr/bin/ccache
-  install -Dm 644 ccache.1 ${pkgdir}/usr/share/man/man1/ccache.1
-
-  install -d ${pkgdir}/usr/lib/ccache/bin
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/cc 
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/gcc
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/g++
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/cpp
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/c++
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-cc
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-gcc
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-g++
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-cpp
-  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-c++
-}

Copied: ccache/repos/community-i686/PKGBUILD (from rev 171533, 
ccache/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 19:25:49 UTC (rev 171534)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=ccache
+pkgver=3.2.5
+pkgrel=1
+pkgdesc="A compiler cache"
+arch=('i686' 'x86_64')
+url="http://ccache.samba.org/;
+license=('GPL3')
+depends=('zlib')
+source=("http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('270c9ad0631c6e34f5fa84f0d9385f95')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc
+
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  install -Dm 755 ccache ${pkgdir}/usr/bin/ccache
+  install -Dm 644 ccache.1 ${pkgdir}/usr/share/man/man1/ccache.1
+
+  install -d ${pkgdir}/usr/lib/ccache/bin
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/cc 
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/gcc
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/g++
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/cpp
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/c++
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-cc
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-gcc
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-g++
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-cpp
+  ln -sf /usr/bin/ccache ${pkgdir}/usr/lib/ccache/bin/${CHOST}-c++
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-21 19:25:15 UTC (rev 171533)
+++ community-x86_64/PKGBUILD   2016-04-21 19:25:49 UTC (rev 171534)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=ccache
-pkgver=3.2.4
-pkgrel=1
-pkgdesc="A compiler cache"
-arch=('i686' 'x86_64')
-url="http://ccache.samba.org/;
-license=('GPL3')
-depends=('zlib')
-source=("http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('1781eec25073765828b874004d944c53')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  install -Dm 755 ccache ${pkgdir}/usr/bin/ccache
-  install -Dm 644 ccache.1 ${pkgdir}/usr/share/man/man1/ccache.1
-
-  install -d ${pkgdir}/usr/lib/ccache/bin
-  ln -sf 

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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 21:25:15
  Author: arojas
Revision: 171533

Update to 3.2.5

Modified:
  ccache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 16:56:58 UTC (rev 171532)
+++ PKGBUILD2016-04-21 19:25:15 UTC (rev 171533)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=ccache
-pkgver=3.2.4
+pkgver=3.2.5
 pkgrel=1
 pkgdesc="A compiler cache"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('GPL3')
 depends=('zlib')
 source=("http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('1781eec25073765828b874004d944c53')
+md5sums=('270c9ad0631c6e34f5fa84f0d9385f95')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 21:23:37
  Author: arojas
Revision: 265823

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-21 19:22:51 UTC (rev 265822)
+++ extra-i686/PKGBUILD 2016-04-21 19:23:37 UTC (rev 265823)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Simon Perry 
-# Contributor: Jonas Nyrén 
-
-pkgname=libsidplayfp
-pkgver=1.8.2
-pkgrel=2
-pkgdesc='Library to play Commodore 64 music derived from libsidplay2'
-url='http://sourceforge.net/projects/sidplay-residfp/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gcc-libs')
-makedepends=('vice' 'xa')
-optdepends=('vice: better SID support')
-source=("http://downloads.sourceforge.net/project/sidplay-residfp/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('41eb3b3f3f5689f5e42b244d9782163e12498fd3')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   install -d "${pkgdir}/usr/share/sidplayfp"
-   ln -t "${pkgdir}/usr/share/sidplayfp" -s 
/usr/lib/vice/C64/{kernal,basic,chargen}
-}

Copied: libsidplayfp/repos/extra-i686/PKGBUILD (from rev 265822, 
libsidplayfp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-21 19:23:37 UTC (rev 265823)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Simon Perry 
+# Contributor: Jonas Nyrén 
+
+pkgname=libsidplayfp
+pkgver=1.8.6
+pkgrel=1
+pkgdesc='Library to play Commodore 64 music derived from libsidplay2'
+url='http://sourceforge.net/projects/sidplay-residfp/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gcc-libs')
+makedepends=('vice' 'xa')
+optdepends=('vice: better SID support')
+source=("http://downloads.sourceforge.net/project/sidplay-residfp/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('a659614b3b62c29fd6df9c9c91f08850130ae3cf')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   install -d "${pkgdir}/usr/share/sidplayfp"
+   ln -t "${pkgdir}/usr/share/sidplayfp" -s 
/usr/lib/vice/C64/{kernal,basic,chargen}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-21 19:22:51 UTC (rev 265822)
+++ extra-x86_64/PKGBUILD   2016-04-21 19:23:37 UTC (rev 265823)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Simon Perry 
-# Contributor: Jonas Nyrén 
-
-pkgname=libsidplayfp
-pkgver=1.8.2
-pkgrel=2
-pkgdesc='Library to play Commodore 64 music derived from libsidplay2'
-url='http://sourceforge.net/projects/sidplay-residfp/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gcc-libs')
-makedepends=('vice' 'xa')
-optdepends=('vice: better SID support')
-source=("http://downloads.sourceforge.net/project/sidplay-residfp/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('41eb3b3f3f5689f5e42b244d9782163e12498fd3')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   install -d "${pkgdir}/usr/share/sidplayfp"
-   ln -t "${pkgdir}/usr/share/sidplayfp" -s 
/usr/lib/vice/C64/{kernal,basic,chargen}
-}

Copied: libsidplayfp/repos/extra-x86_64/PKGBUILD (from rev 265822, 
libsidplayfp/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-21 19:23:37 UTC (rev 265823)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Simon Perry 
+# Contributor: Jonas Nyrén 
+
+pkgname=libsidplayfp
+pkgver=1.8.6
+pkgrel=1
+pkgdesc='Library to play Commodore 64 music derived from libsidplay2'

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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 21:22:51
  Author: arojas
Revision: 265822

Update to 1.8.6

Modified:
  libsidplayfp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 19:11:15 UTC (rev 265821)
+++ PKGBUILD2016-04-21 19:22:51 UTC (rev 265822)
@@ -4,8 +4,8 @@
 # Contributor: Jonas Nyrén 
 
 pkgname=libsidplayfp
-pkgver=1.8.2
-pkgrel=2
+pkgver=1.8.6
+pkgrel=1
 pkgdesc='Library to play Commodore 64 music derived from libsidplay2'
 url='http://sourceforge.net/projects/sidplay-residfp/'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('vice' 'xa')
 optdepends=('vice: better SID support')
 
source=("http://downloads.sourceforge.net/project/sidplay-residfp/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('41eb3b3f3f5689f5e42b244d9782163e12498fd3')
+sha1sums=('a659614b3b62c29fd6df9c9c91f08850130ae3cf')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 21:11:15
  Author: tpowa
Revision: 265821

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

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

--+
 /PKGBUILD|  295 
 /change-default-console-loglevel.patch   |   11 
 /config  | 8003 +
 /config.x86_64   | 7760 
 /linux.install   |   37 
 /linux.preset|   14 
 testing-i686/PKGBUILD|  295 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 8003 -
 testing-i686/config.x86_64   | 7760 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  295 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 8003 +
 testing-x86_64/config.x86_64 | 7760 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 18 files changed, 32240 insertions(+), 16120 deletions(-)

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


[arch-commits] Commit in dhcpcd/trunk (PKGBUILD queue_from_compat.patch)

2016-04-21 Thread Anatol Pomozov
Date: Thursday, April 21, 2016 @ 18:52:51
  Author: anatolik
Revision: 265813

FS#49032: remove compilation fix patch

Upstream has fixed the problem in 
http://roy.marples.name/projects/dhcpcd/info/9a24615c8d

Modified:
  dhcpcd/trunk/PKGBUILD
Deleted:
  dhcpcd/trunk/queue_from_compat.patch

-+
 PKGBUILD|7 ---
 queue_from_compat.patch |   13 -
 2 files changed, 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 16:06:27 UTC (rev 265812)
+++ PKGBUILD2016-04-21 16:52:51 UTC (rev 265813)
@@ -17,19 +17,12 @@
 backup=('etc/dhcpcd.conf')
 options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
 source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
-'queue_from_compat.patch'
 'dhcpcd_.service'
 'dhcpcd.service')
 sha1sums=('62a48730bb1af0a187fc2a0873f719ddbc89f2b7'
-  '393f02700d0078862a461a1fbdeac1542791749b'
   '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
   '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
 
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 < ../queue_from_compat.patch
-}
-
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 

Deleted: queue_from_compat.patch
===
--- queue_from_compat.patch 2016-04-21 16:06:27 UTC (rev 265812)
+++ queue_from_compat.patch 2016-04-21 16:52:51 UTC (rev 265813)
@@ -1,13 +0,0 @@
-diff --git a/eloop.c b/eloop.c
-index e3a748d..c87a226 100644
 a/eloop.c
-+++ b/eloop.c
-@@ -132,7 +132,7 @@
- #define _QUEUE_HEADER(x) __QUEUE_HEADER(x)
- #include _QUEUE_HEADER(QUEUE_H)
- #else
--#include "queue.h"
-+#include "compat/queue.h"
- #endif
- #endif
- 


[arch-commits] Commit in angband/repos/community-i686 (PKGBUILD PKGBUILD)

2016-04-21 Thread Jakob Gruber
Date: Thursday, April 21, 2016 @ 18:30:40
  Author: schuay
Revision: 171527

archrelease: copy trunk to community-i686

Added:
  angband/repos/community-i686/PKGBUILD
(from rev 171526, angband/trunk/PKGBUILD)
Deleted:
  angband/repos/community-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 16:30:27 UTC (rev 171526)
+++ PKGBUILD2016-04-21 16:30:40 UTC (rev 171527)
@@ -1,55 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Mike Sampson 
-# Contributor: Adrian Stratulat 
-# Contributor: Anton Bazhenov 
-# Contributor: KillaB 
-# Contributor: Callan Barrett 
-# Contributor: Christian Schmidt 
-# Contributor: Sebastian Sareyko 
-
-pkgname=angband
-pkgver=4.0.4
-pkgrel=1
-pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
-arch=('i686' 'x86_64')
-url="http://rephial.org/;
-license=('GPL2' 'custom')
-depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
-makedepends=('python-docutils')
-source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz;)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Fix detection of ncurses config script for ncurses 6.0
-  sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./autogen.sh
-
-  ./configure \
---prefix=/usr \
---bindir=/usr/bin \
---sysconfdir=/usr/share/angband \
---with-configpath=/usr/share/angband \
---with-libpath=/usr/share/angband \
---enable-gtk \
---enable-sdl \
---enable-sdl-mixer
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  rm -f "${pkgdir}/usr/share/angband/*/delete.me"
-  install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-
-md5sums=('40896f314f2024b91303506adeff37ce')

Copied: angband/repos/community-i686/PKGBUILD (from rev 171526, 
angband/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 16:30:40 UTC (rev 171527)
@@ -0,0 +1,55 @@
+# Maintainer: schuay 
+# Contributor: Mike Sampson 
+# Contributor: Adrian Stratulat 
+# Contributor: Anton Bazhenov 
+# Contributor: KillaB 
+# Contributor: Callan Barrett 
+# Contributor: Christian Schmidt 
+# Contributor: Sebastian Sareyko 
+
+pkgname=angband
+pkgver=4.0.5
+pkgrel=1
+pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
+arch=('i686' 'x86_64')
+url="http://rephial.org/;
+license=('GPL2' 'custom')
+depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
+makedepends=('python-docutils')
+source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz;)
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Fix detection of ncurses config script for ncurses 6.0
+  sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./autogen.sh
+
+  ./configure \
+--prefix=/usr \
+--bindir=/usr/bin \
+--sysconfdir=/usr/share/angband \
+--with-configpath=/usr/share/angband \
+--with-libpath=/usr/share/angband \
+--enable-gtk \
+--enable-sdl \
+--enable-sdl-mixer
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -f "${pkgdir}/usr/share/angband/*/delete.me"
+  install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+
+md5sums=('82d28d0e51b167fb2b66603e310d9def')


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

2016-04-21 Thread Jakob Gruber
Date: Thursday, April 21, 2016 @ 18:30:48
  Author: schuay
Revision: 171528

archrelease: copy trunk to community-x86_64

Added:
  angband/repos/community-x86_64/PKGBUILD
(from rev 171527, angband/trunk/PKGBUILD)
Deleted:
  angband/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 16:30:40 UTC (rev 171527)
+++ PKGBUILD2016-04-21 16:30:48 UTC (rev 171528)
@@ -1,55 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Mike Sampson 
-# Contributor: Adrian Stratulat 
-# Contributor: Anton Bazhenov 
-# Contributor: KillaB 
-# Contributor: Callan Barrett 
-# Contributor: Christian Schmidt 
-# Contributor: Sebastian Sareyko 
-
-pkgname=angband
-pkgver=4.0.4
-pkgrel=1
-pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
-arch=('i686' 'x86_64')
-url="http://rephial.org/;
-license=('GPL2' 'custom')
-depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
-makedepends=('python-docutils')
-source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz;)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Fix detection of ncurses config script for ncurses 6.0
-  sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./autogen.sh
-
-  ./configure \
---prefix=/usr \
---bindir=/usr/bin \
---sysconfdir=/usr/share/angband \
---with-configpath=/usr/share/angband \
---with-libpath=/usr/share/angband \
---enable-gtk \
---enable-sdl \
---enable-sdl-mixer
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  rm -f "${pkgdir}/usr/share/angband/*/delete.me"
-  install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-
-md5sums=('40896f314f2024b91303506adeff37ce')

Copied: angband/repos/community-x86_64/PKGBUILD (from rev 171527, 
angband/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 16:30:48 UTC (rev 171528)
@@ -0,0 +1,55 @@
+# Maintainer: schuay 
+# Contributor: Mike Sampson 
+# Contributor: Adrian Stratulat 
+# Contributor: Anton Bazhenov 
+# Contributor: KillaB 
+# Contributor: Callan Barrett 
+# Contributor: Christian Schmidt 
+# Contributor: Sebastian Sareyko 
+
+pkgname=angband
+pkgver=4.0.5
+pkgrel=1
+pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
+arch=('i686' 'x86_64')
+url="http://rephial.org/;
+license=('GPL2' 'custom')
+depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
+makedepends=('python-docutils')
+source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz;)
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Fix detection of ncurses config script for ncurses 6.0
+  sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./autogen.sh
+
+  ./configure \
+--prefix=/usr \
+--bindir=/usr/bin \
+--sysconfdir=/usr/share/angband \
+--with-configpath=/usr/share/angband \
+--with-libpath=/usr/share/angband \
+--enable-gtk \
+--enable-sdl \
+--enable-sdl-mixer
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -f "${pkgdir}/usr/share/angband/*/delete.me"
+  install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+
+md5sums=('82d28d0e51b167fb2b66603e310d9def')


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

2016-04-21 Thread Jakob Gruber
Date: Thursday, April 21, 2016 @ 18:30:27
  Author: schuay
Revision: 171526

angband-4.0.5

Modified:
  angband/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 15:26:28 UTC (rev 171525)
+++ PKGBUILD2016-04-21 16:30:27 UTC (rev 171526)
@@ -8,7 +8,7 @@
 # Contributor: Sebastian Sareyko 
 
 pkgname=angband
-pkgver=4.0.4
+pkgver=4.0.5
 pkgrel=1
 pkgdesc="A roguelike dungeon exploration game based on the writings of JRR 
Tolkien"
 arch=('i686' 'x86_64')
@@ -52,4 +52,4 @@
   install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
 }
 
-md5sums=('40896f314f2024b91303506adeff37ce')
+md5sums=('82d28d0e51b167fb2b66603e310d9def')


[arch-commits] Commit in linux/trunk (PKGBUILD config config.x86_64)

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 18:06:16
  Author: tpowa
Revision: 265811

upgpkg: linux 4.5.2-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config
  linux/trunk/config.x86_64

---+
 PKGBUILD  |8 
 config|   10 +++---
 config.x86_64 |7 +--
 3 files changed, 16 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 15:14:40 UTC (rev 265810)
+++ PKGBUILD2016-04-21 16:06:16 UTC (rev 265811)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.5
-pkgver=4.5.1
+pkgver=4.5.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/;
@@ -24,10 +24,10 @@
 
 sha256sums=('a40defb401e01b37d6b8c8ad5c1bbab665be6ac6310cdeed59950c96b31a519c'
 'SKIP'
-'060ad091ebfa2b63d62e86beaf68c3a5d4638c506c3ac941c1825ba756e830b1'
+'a9913a04ddbd06acde9b00b3179c41fddb99f61168ef5d01d3e8cf72385038b1'
 'SKIP'
-'8a8a955f015ee8342701231a63836cec0e300fd7e96d30e8696fde8a383fcdc9'
-'8b60911aad591306336e300e27071f2d108c5016e66a04327b82ac69acbfefff'
+'2355efbab340d16c1b60a7805b987a78e57266809ba6c986ceef68ef7ce71db0'
+'cee1781f96e55a909757c4533cdacb57c3ffe6f6f01f709e8a5a837dc4a68bba'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
 validpgpkeys=(

Modified: config
===
--- config  2016-04-21 15:14:40 UTC (rev 265810)
+++ config  2016-04-21 16:06:16 UTC (rev 265811)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.5.0 Kernel Configuration
+# Linux/x86 4.5.2-1 Kernel Configuration
 #
 # CONFIG_64BIT is not set
 CONFIG_X86_32=y
@@ -5440,6 +5440,9 @@
 CONFIG_SND_SOC_INTEL_SST=m
 CONFIG_SND_SOC_INTEL_SST_ACPI=m
 CONFIG_SND_SOC_INTEL_SST_MATCH=m
+CONFIG_SND_SOC_INTEL_HASWELL=m
+CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
+CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
 CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
 CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
 CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
@@ -5448,7 +5451,7 @@
 CONFIG_SND_SOC_INTEL_SKYLAKE=m
 CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m
 CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m 
+CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m
 
 #
 # Allwinner SoC Audio support
@@ -5484,6 +5487,7 @@
 # CONFIG_SND_SOC_GTM601 is not set
 # CONFIG_SND_SOC_INNO_RK3036 is not set
 CONFIG_SND_SOC_MAX98090=m
+CONFIG_SND_SOC_MAX98357A=m
 # CONFIG_SND_SOC_PCM1681 is not set
 # CONFIG_SND_SOC_PCM179X is not set
 # CONFIG_SND_SOC_PCM3168A_I2C is not set
@@ -6239,7 +6243,7 @@
 CONFIG_INTEL_IDMA64=m
 CONFIG_PCH_DMA=m
 CONFIG_DW_DMAC_CORE=y
-CONFIG_DW_DMAC=m
+CONFIG_DW_DMAC=y
 CONFIG_DW_DMAC_PCI=m
 CONFIG_HSU_DMA=y
 

Modified: config.x86_64
===
--- config.x86_64   2016-04-21 15:14:40 UTC (rev 265810)
+++ config.x86_64   2016-04-21 16:06:16 UTC (rev 265811)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.5.0 Kernel Configuration
+# Linux/x86 4.5.2-1 Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
@@ -5226,6 +5226,9 @@
 CONFIG_SND_SOC_INTEL_SST=m
 CONFIG_SND_SOC_INTEL_SST_ACPI=m
 CONFIG_SND_SOC_INTEL_SST_MATCH=m
+CONFIG_SND_SOC_INTEL_HASWELL=m
+CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
+CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
 CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
 CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
 CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
@@ -6009,7 +6012,7 @@
 CONFIG_INTEL_IOATDMA=m
 CONFIG_INTEL_MIC_X100_DMA=m
 CONFIG_DW_DMAC_CORE=y
-CONFIG_DW_DMAC=m
+CONFIG_DW_DMAC=y
 CONFIG_DW_DMAC_PCI=m
 CONFIG_HSU_DMA=y
 


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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 18:06:27
  Author: tpowa
Revision: 265812

archrelease: copy trunk to testing-i686

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

---+
 PKGBUILD  |  295 +
 change-default-console-loglevel.patch |   11 
 config| 8003 
 config.x86_64 | 7760 +++
 linux.install |   37 
 linux.preset  |   14 
 6 files changed, 16120 insertions(+)

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


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

2016-04-21 Thread Kyle Keen
Date: Thursday, April 21, 2016 @ 17:26:28
  Author: kkeen
Revision: 171525

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
(from rev 171524, ipython/trunk/PKGBUILD)
  ipython/repos/community-any/ipython.install
(from rev 171524, ipython/trunk/ipython.install)
Deleted:
  ipython/repos/community-any/PKGBUILD
  ipython/repos/community-any/ipython.install

-+
 PKGBUILD|  300 --
 ipython.install |   24 ++--
 2 files changed, 168 insertions(+), 156 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 15:26:14 UTC (rev 171524)
+++ PKGBUILD2016-04-21 15:26:28 UTC (rev 171525)
@@ -1,144 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: PepeSmith
-# Contributor: Aron Asor 
-# Contributor: Chris Brannon 
-# Contributor : Douglas Soares de Andrade 
-
-pkgbase=ipython
-pkgname=(ipython ipython2)
-pkgver=4.1.2
-pkgrel=2
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="http://ipython.org;
-license=('BSD')
-depends=('python' 'python-decorator' 'python-pexpect' 'sqlite' 
'python-setuptools' 'python-path')
-makedepends=('python-setuptools' 'python2-setuptools')
-optdepends=("python-nose: for IPython's test suite")
-install=ipython.install
-
-# some of these will update rapidly, others never
-# so _vars will be phased in as new updates are released
-_traitv=4.1.0
-
-source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz;
-
"https://pypi.python.org/packages/source/t/traitlets/traitlets-$_traitv.tar.gz;
-
"https://pypi.python.org/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz;
-
"https://pypi.python.org/packages/source/p/pickleshare/pickleshare-0.5.tar.gz;
-
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip;
-
"http://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-md5sums=('28c9ebd1abfb9b4a07cb87005f285edd'
- '2ebf5e11a19f82f25395b4a793097080'
- '9a8afbe0978adbcbfcb3b35b2d015a56'
- '25337740507cb855ad58bfcf60f7710e'
- 'f9c1fab00fd981be588fc32759f474e3'
- '2901d65f1b1fe354e72850085cd1c072')
-
-# With 4.0 many previously bundled external libraries are no longer bundled
-# Since there are so many and they are so small, they get re-bundled here
-# Break them out if any non-ipython package ends up needing these
-
-# traitlets (depends on python-decorator)
-# ipython_genutils
-# "Pretend this doesn’t exist. Nobody should use it."
-# "Vestigial IPython utilities: DO NOT USE"
-# (still required for now though, but drop at first chance)
-# pickleshare (depends on path.py)
-# simplegeneric (so old that it only comes in .zip and still refers to the 
cheeseshop)
-
-# confirm that an update does not break sage?
-
-prepare() {
-  cd "$srcdir"
-  cp -r ipython-$pkgveripython2-$pkgver
-  cp -r ipython_genutils-0.1.0 ipython2_genutils-0.1.0
-  cp -r pickleshare-0.5python2-pickleshare-0.5
-  cp -r traitlets-$_traitv python2-traitlets-$_traitv
-  cp -r simplegeneric-0.8.1python2-simplegeneric-0.8.1
-}
-
-build() {
-  cd "$srcdir"
-}
-
-package_ipython() {
-  cd "$srcdir/ipython-$pkgver"
-
-  # see https://github.com/ipython/ipython/issues/2057
-  #export LC_ALL=en_US.UTF-8
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  # TEMPORARY!
-  cd "$srcdir/ipython_genutils-0.1.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/pickleshare-0.5"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/traitlets-$_traitv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/simplegeneric-0.8.1"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipython-$pkgver"
-  install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
-
-  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
-  # FS#45120
-  sed -i 's/gnome-netstatus-idle/ipython/' *.desktop
-  install -Dm644 ipython.desktop 
"$pkgdir/usr/share/applications/ipython.desktop"
-  #install -Dm644 ipython-qtconsole.desktop 
"$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
-  # FS#47046
-  install -Dm644 "$srcdir/icon.png" "$pkgdir/usr/share/pixmaps/ipython.png"
-
-  #cd $srcdir/ipython-$pkgver/IPython/qt/console/resources/icon/
-  #install -Dm644 IPythonConsole.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ipython.svg"
-}
-
-package_ipython2() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite' 
'python2-setuptools' 'python2-path')
-  optdepends=("wxpython: 

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

2016-04-21 Thread Kyle Keen
Date: Thursday, April 21, 2016 @ 17:26:14
  Author: kkeen
Revision: 171524

upgpkg: ipython 4.2.0-1

Modified:
  ipython/trunk/PKGBUILD

--+
 PKGBUILD |   36 
 1 file changed, 24 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 15:06:08 UTC (rev 171523)
+++ PKGBUILD2016-04-21 15:26:14 UTC (rev 171524)
@@ -7,8 +7,8 @@
 
 pkgbase=ipython
 pkgname=(ipython ipython2)
-pkgver=4.1.2
-pkgrel=2
+pkgver=4.2.0
+pkgrel=1
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
 url="http://ipython.org;
@@ -20,22 +20,26 @@
 
 # some of these will update rapidly, others never
 # so _vars will be phased in as new updates are released
-_traitv=4.1.0
+_traitv=4.2.1
+_psharev=0.7.2
 
-source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz;
+source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz;
 
"https://pypi.python.org/packages/source/t/traitlets/traitlets-$_traitv.tar.gz;
 
"https://pypi.python.org/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz;
-
"https://pypi.python.org/packages/source/p/pickleshare/pickleshare-0.5.tar.gz;
+
"https://pypi.python.org/packages/source/p/pickleshare/pickleshare-$_psharev.tar.gz;
 
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip;
+
"https://pypi.python.org/packages/source/b/backports.shutil_get_terminal_size/backports.shutil_get_terminal_size-1.0.0.tar.gz;
 
"http://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-md5sums=('28c9ebd1abfb9b4a07cb87005f285edd'
- '2ebf5e11a19f82f25395b4a793097080'
+md5sums=('9432d4758961501bf5f33adde08a9e6e'
+ 'f9cc1ad00a793a65d7bc88d69ee65920'
  '9a8afbe0978adbcbfcb3b35b2d015a56'
- '25337740507cb855ad58bfcf60f7710e'
+ '29d74cde0255546b6b2e1b48a0b31a54'
  'f9c1fab00fd981be588fc32759f474e3'
+ '03267762480bd86b50580dc19dff3c66'
  '2901d65f1b1fe354e72850085cd1c072')
 
 # With 4.0 many previously bundled external libraries are no longer bundled
+# Most are written/maintained/used only by the ipython project
 # Since there are so many and they are so small, they get re-bundled here
 # Break them out if any non-ipython package ends up needing these
 
@@ -46,6 +50,7 @@
 # (still required for now though, but drop at first chance)
 # pickleshare (depends on path.py)
 # simplegeneric (so old that it only comes in .zip and still refers to the 
cheeseshop)
+# shutil_get_terminal_size ?
 
 # confirm that an update does not break sage?
 
@@ -53,9 +58,13 @@
   cd "$srcdir"
   cp -r ipython-$pkgveripython2-$pkgver
   cp -r ipython_genutils-0.1.0 ipython2_genutils-0.1.0
-  cp -r pickleshare-0.5python2-pickleshare-0.5
+  cp -r pickleshare-$_psharev  python2-pickleshare-$_psharev
   cp -r traitlets-$_traitv python2-traitlets-$_traitv
   cp -r simplegeneric-0.8.1python2-simplegeneric-0.8.1
+
+  # python 3.5 does not need a 3.3 backport hack
+  cd "$srcdir/ipython-$pkgver"
+  sed -i 's|backports.shutil_get_terminal_size|shutil|' 
IPython/utils/terminal.py
 }
 
 build() {
@@ -73,7 +82,7 @@
   cd "$srcdir/ipython_genutils-0.1.0"
   python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
 
-  cd "$srcdir/pickleshare-0.5"
+  cd "$srcdir/pickleshare-$_psharev"
   python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
 
   cd "$srcdir/traitlets-$_traitv"
@@ -99,7 +108,7 @@
 
 package_ipython2() {
   pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite' 
'python2-setuptools' 'python2-path')
+  depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite' 
'python2-setuptools' 'python2-path' 'python2-pathlib')
   optdepends=("wxpython: needed for ipython2 --gui=wx"
   "python2-nose: for IPython's test suite")
   # "wxpython: needed for ipython2 --gui=wx"   does this still work?
@@ -112,7 +121,7 @@
   cd "$srcdir/ipython2_genutils-0.1.0"
   python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
 
-  cd "$srcdir/python2-pickleshare-0.5"
+  cd "$srcdir/python2-pickleshare-$_psharev"
   python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
 
   cd "$srcdir/python2-traitlets-$_traitv"
@@ -121,6 +130,9 @@
   cd "$srcdir/python2-simplegeneric-0.8.1"
   python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
 
+  cd "$srcdir/backports.shutil_get_terminal_size-1.0.0"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+
   cd "$srcdir/ipython2-$pkgver"
   install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython2/LICENSE"
 


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 17:14:40
  Author: fyan
Revision: 265810

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

Added:
  python-cffi/repos/testing-i686/
  python-cffi/repos/testing-i686/PKGBUILD
(from rev 265809, python-cffi/trunk/PKGBUILD)
  python-cffi/repos/testing-x86_64/
  python-cffi/repos/testing-x86_64/PKGBUILD
(from rev 265809, python-cffi/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   53 ++
 testing-x86_64/PKGBUILD |   53 ++
 2 files changed, 106 insertions(+)

Copied: python-cffi/repos/testing-i686/PKGBUILD (from rev 265809, 
python-cffi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-21 15:14:40 UTC (rev 265810)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: lilydjwg 
+
+pkgbase=python-cffi
+pkgname=(python-cffi python2-cffi)
+pkgver=1.6.0
+_revision=a61429d5ad2d62b80c7e84d0281f7ed9a26e30ec
+pkgrel=1
+pkgdesc="Foreign Function Interface for Python calling C code"
+arch=('i686' 'x86_64')
+url="http://cffi.readthedocs.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pycparser' 
'python2-pycparser' 'mercurial')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("hg+https://bitbucket.org/cffi/cffi#revision=$_revision;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a cffi{,-py2}
+}
+
+build() {
+  cd "$srcdir"/cffi
+  python3 setup.py build
+
+  cd "$srcdir"/cffi-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cffi
+  python3 setup.py ptr
+
+  cd "$srcdir"/cffi-py2
+  python2 setup.py ptr
+}
+
+package_python-cffi() {
+  depends=('python-pycparser')
+
+  cd cffi
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cffi() {
+  depends=('python2-pycparser')
+
+  cd cffi-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-cffi/repos/testing-x86_64/PKGBUILD (from rev 265809, 
python-cffi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-04-21 15:14:40 UTC (rev 265810)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: lilydjwg 
+
+pkgbase=python-cffi
+pkgname=(python-cffi python2-cffi)
+pkgver=1.6.0
+_revision=a61429d5ad2d62b80c7e84d0281f7ed9a26e30ec
+pkgrel=1
+pkgdesc="Foreign Function Interface for Python calling C code"
+arch=('i686' 'x86_64')
+url="http://cffi.readthedocs.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pycparser' 
'python2-pycparser' 'mercurial')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("hg+https://bitbucket.org/cffi/cffi#revision=$_revision;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a cffi{,-py2}
+}
+
+build() {
+  cd "$srcdir"/cffi
+  python3 setup.py build
+
+  cd "$srcdir"/cffi-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cffi
+  python3 setup.py ptr
+
+  cd "$srcdir"/cffi-py2
+  python2 setup.py ptr
+}
+
+package_python-cffi() {
+  depends=('python-pycparser')
+
+  cd cffi
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cffi() {
+  depends=('python2-pycparser')
+
+  cd cffi-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 17:14:10
  Author: fyan
Revision: 265809

upgpkg: python-cffi 1.6.0-1

Modified:
  python-cffi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 12:18:46 UTC (rev 265808)
+++ PKGBUILD2016-04-21 15:14:10 UTC (rev 265809)
@@ -4,8 +4,8 @@
 
 pkgbase=python-cffi
 pkgname=(python-cffi python2-cffi)
-pkgver=1.5.2
-_revision=4640c7bfb3166763943b428bc7ae9d3585e45c34
+pkgver=1.6.0
+_revision=a61429d5ad2d62b80c7e84d0281f7ed9a26e30ec
 pkgrel=1
 pkgdesc="Foreign Function Interface for Python calling C code"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-pycparser' 
'python2-pycparser' 'mercurial')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("hg+https://felixonm...@bitbucket.org/cffi/cffi#revision=$_revision;)
+source=("hg+https://bitbucket.org/cffi/cffi#revision=$_revision;)
 sha512sums=('SKIP')
 
 prepare() {
@@ -21,18 +21,18 @@
 }
 
 build() {
-  cd "$srcdir/cffi"
+  cd "$srcdir"/cffi
   python3 setup.py build
 
-  cd "$srcdir/cffi-py2"
+  cd "$srcdir"/cffi-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/cffi"
+  cd "$srcdir"/cffi
   python3 setup.py ptr
 
-  cd "$srcdir/cffi-py2"
+  cd "$srcdir"/cffi-py2
   python2 setup.py ptr
 }
 
@@ -39,15 +39,15 @@
 package_python-cffi() {
   depends=('python-pycparser')
 
-  cd "$srcdir/cffi"
-  python3 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  cd cffi
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-cffi() {
   depends=('python2-pycparser')
 
-  cd "$srcdir/cffi-py2"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  cd cffi-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 17:06:08
  Author: fyan
Revision: 171523

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 15:05:45 UTC (rev 171522)
+++ PKGBUILD2016-04-21 15:06:08 UTC (rev 171523)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Chris Warrick 
-
-pkgbase=python-pygal
-pkgname=('python-pygal' 'python2-pygal')
-epoch=1
-pkgver=2.1.1
-pkgrel=1
-pkgdesc='A Python SVG graph plotting library'
-arch=('any')
-url='http://pygal.org/'
-license=('LGPL3')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-pytest' 'python2-pytest' 'python-lxml' 'python2-lxml'
-  'python-pyquery' 'python2-pyquery' 'python-cairosvg' 
'python2-cairosvg'
-  'python-flask' 'python2-flask')
-source=("git+https://github.com/Kozea/pygal.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a "${srcdir}/pygal"{,-py2}
-}
-
-build() {
-  cd "$srcdir/pygal"
-  python setup.py build
-
-  cd "$srcdir/pygal-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/pygal"
-  LC_CTYPE=en_US.UTF-8 py.test pygal/
-
-  cd "$srcdir/pygal-py2"
-  py.test2 pygal/
-}
-
-package_python-pygal() {
-  depends=('python-setuptools')
-  optdepends=('python-lxml: for XML output through lxml instead of xml.etree'
-  'python-cairosvg: for PNG output')
-
-  cd "${srcdir}/pygal"
-  python3 setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pygal() {
-  depends=('python2-setuptools')
-  optdepends=('python2-lxml: for XML output through lxml instead of xml.etree'
-  'python2-cairosvg: for PNG output')
-
-  cd "${srcdir}/pygal-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-  mv "${pkgdir}"/usr/bin/pygal_gen{,2}.py
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pygal/repos/community-any/PKGBUILD (from rev 171522, 
python-pygal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 15:06:08 UTC (rev 171523)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Chris Warrick 
+
+pkgbase=python-pygal
+pkgname=('python-pygal' 'python2-pygal')
+epoch=1
+pkgver=2.2.1
+pkgrel=1
+pkgdesc='A Python SVG graph plotting library'
+arch=('any')
+url='http://pygal.org/'
+license=('LGPL3')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-lxml' 'python2-lxml'
+  'python-pyquery' 'python2-pyquery' 'python-cairosvg' 
'python2-cairosvg'
+  'python-flask' 'python2-flask')
+source=("git+https://github.com/Kozea/pygal.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a "$srcdir/pygal"{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pygal
+  python setup.py build
+
+  cd "$srcdir"/pygal-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pygal
+  LC_CTYPE=en_US.UTF-8 py.test pygal/
+
+  cd "$srcdir"/pygal-py2
+  py.test2 pygal/
+}
+
+package_python-pygal() {
+  depends=('python-setuptools')
+  optdepends=('python-lxml: for XML output through lxml instead of xml.etree'
+  'python-cairosvg: for PNG output')
+
+  cd pygal
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygal() {
+  depends=('python2-setuptools')
+  optdepends=('python2-lxml: for XML output through lxml instead of xml.etree'
+  'python2-cairosvg: for PNG output')
+
+  cd pygal-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/pygal_gen{,2}.py
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 17:05:45
  Author: fyan
Revision: 171522

upgpkg: python-pygal 1:2.2.1-1

Modified:
  python-pygal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 14:59:17 UTC (rev 171521)
+++ PKGBUILD2016-04-21 15:05:45 UTC (rev 171522)
@@ -5,7 +5,7 @@
 pkgbase=python-pygal
 pkgname=('python-pygal' 'python2-pygal')
 epoch=1
-pkgver=2.1.1
+pkgver=2.2.1
 pkgrel=1
 pkgdesc='A Python SVG graph plotting library'
 arch=('any')
@@ -19,22 +19,22 @@
 md5sums=('SKIP')
 
 prepare() {
-  cp -a "${srcdir}/pygal"{,-py2}
+  cp -a "$srcdir/pygal"{,-py2}
 }
 
 build() {
-  cd "$srcdir/pygal"
+  cd "$srcdir"/pygal
   python setup.py build
 
-  cd "$srcdir/pygal-py2"
+  cd "$srcdir"/pygal-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/pygal"
+  cd "$srcdir"/pygal
   LC_CTYPE=en_US.UTF-8 py.test pygal/
 
-  cd "$srcdir/pygal-py2"
+  cd "$srcdir"/pygal-py2
   py.test2 pygal/
 }
 
@@ -43,8 +43,8 @@
   optdepends=('python-lxml: for XML output through lxml instead of xml.etree'
   'python-cairosvg: for PNG output')
 
-  cd "${srcdir}/pygal"
-  python3 setup.py install --root="${pkgdir}/" --optimize=1
+  cd pygal
+  python3 setup.py install --root="$pkgdir" --optimize=1
 }
 
 package_python2-pygal() {
@@ -52,10 +52,10 @@
   optdepends=('python2-lxml: for XML output through lxml instead of xml.etree'
   'python2-cairosvg: for PNG output')
 
-  cd "${srcdir}/pygal-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
+  cd pygal-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
 
-  mv "${pkgdir}"/usr/bin/pygal_gen{,2}.py
+  mv "$pkgdir"/usr/bin/pygal_gen{,2}.py
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Alexander Rødseth
Date: Thursday, April 21, 2016 @ 16:59:17
  Author: arodseth
Revision: 171521

archrelease: copy trunk to community-any

Added:
  wordpress/repos/community-any/PKGBUILD
(from rev 171520, wordpress/trunk/PKGBUILD)
  wordpress/repos/community-any/wordpress.install
(from rev 171520, wordpress/trunk/wordpress.install)
Deleted:
  wordpress/repos/community-any/PKGBUILD
  wordpress/repos/community-any/wordpress.install

---+
 PKGBUILD  |   60 ++--
 wordpress.install |   42 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 14:55:03 UTC (rev 171520)
+++ PKGBUILD2016-04-21 14:59:17 UTC (rev 171521)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jose Valecillos 
-# Contributor: Kaos 
-# Contributor: Christopher Rogers 
-
-pkgname=wordpress
-pkgver=4.5
-pkgrel=1
-pkgdesc='Blog tool and publishing platform'
-arch=('any')
-url='http://wordpress.org/'
-license=('GPL')
-depends=('php')
-optdepends=('apache: Web server to run wordpress'
-'nginx: Web server to run wordpress'
-'cherokee: Lightweight Web server to run wordpress'
-'mysql: Database server')
-options=('emptydirs')
-install="$pkgname.install"
-source=("http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0')
-
-package() {
-  install -d "$pkgdir/usr/share/webapps"
-  cp -r wordpress "$pkgdir/usr/share/webapps"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/PKGBUILD (from rev 171520, 
wordpress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 14:59:17 UTC (rev 171521)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Thomas Dziedzic 
+# Contributor: Jose Valecillos 
+# Contributor: Kaos 
+# Contributor: Christopher Rogers 
+
+pkgname=wordpress
+pkgver=4.5
+pkgrel=1
+pkgdesc='Blog tool and publishing platform'
+arch=('any')
+url='http://wordpress.org/'
+license=('GPL')
+depends=('php')
+optdepends=('apache: Web server to run wordpress'
+'nginx: Web server to run wordpress'
+'cherokee: Lightweight Web server to run wordpress'
+'mysql: Database server')
+options=('emptydirs')
+install="$pkgname.install"
+source=("http://wordpress.org/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0')
+
+package() {
+  install -d "$pkgdir/usr/share/webapps"
+  cp -r wordpress "$pkgdir/usr/share/webapps"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: wordpress.install
===
--- wordpress.install   2016-04-21 14:55:03 UTC (rev 171520)
+++ wordpress.install   2016-04-21 14:59:17 UTC (rev 171521)
@@ -1,21 +0,0 @@
-post_install() {
-  # Make uploads work
-  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
-  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
-  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
-}
-
-pre_remove() {
-  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
-  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
-}
-
-post_remove() {
-  rm -rf /usr/share/webapps/wordpress
-}
-
-post_upgrade() {
-  echo 'Wordpress is in /usr/share/webapps now'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/wordpress.install (from rev 171520, 
wordpress/trunk/wordpress.install)
===
--- wordpress.install   (rev 0)
+++ wordpress.install   2016-04-21 14:59:17 UTC (rev 171521)
@@ -0,0 +1,21 @@
+post_install() {
+  # Make uploads work
+  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
+  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
+  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
+}
+
+pre_remove() {
+  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
+  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
+}
+
+post_remove() {
+  rm -rf /usr/share/webapps/wordpress
+}
+
+post_upgrade() {
+  echo 'Wordpress is in /usr/share/webapps now'
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Alexander Rødseth
Date: Thursday, April 21, 2016 @ 16:49:38
  Author: arodseth
Revision: 171518

archrelease: copy trunk to community-any

Added:
  wordpress/repos/community-any/PKGBUILD
(from rev 171517, wordpress/trunk/PKGBUILD)
  wordpress/repos/community-any/wordpress.install
(from rev 171517, wordpress/trunk/wordpress.install)
Deleted:
  wordpress/repos/community-any/PKGBUILD
  wordpress/repos/community-any/wordpress.install

---+
 PKGBUILD  |   60 ++--
 wordpress.install |   42 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 14:48:44 UTC (rev 171517)
+++ PKGBUILD2016-04-21 14:49:38 UTC (rev 171518)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jose Valecillos 
-# Contributor: Kaos 
-# Contributor: Christopher Rogers 
-
-pkgname=wordpress
-pkgver=4.4.2
-pkgrel=1
-pkgdesc='Blog tool and publishing platform'
-arch=('any')
-url='http://wordpress.org/'
-license=('GPL')
-depends=('php')
-optdepends=('apache: Web server to run wordpress'
-'nginx: Web server to run wordpress'
-'cherokee: Lightweight Web server to run wordpress'
-'mysql: Database server')
-options=('emptydirs')
-install="$pkgname.install"
-source=("http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('c8a74c0f7cfc0d19989d235759e70cebd90f42aa0513bd9bc344230b0f79e08b')
-
-package() {
-  install -d "$pkgdir/usr/share/webapps"
-  cp -r wordpress "$pkgdir/usr/share/webapps"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/PKGBUILD (from rev 171517, 
wordpress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 14:49:38 UTC (rev 171518)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Thomas Dziedzic 
+# Contributor: Jose Valecillos 
+# Contributor: Kaos 
+# Contributor: Christopher Rogers 
+
+pkgname=wordpress
+pkgver=4.5
+pkgrel=1
+pkgdesc='Blog tool and publishing platform'
+arch=('any')
+url='http://wordpress.org/'
+license=('GPL')
+depends=('php')
+optdepends=('apache: Web server to run wordpress'
+'nginx: Web server to run wordpress'
+'cherokee: Lightweight Web server to run wordpress'
+'mysql: Database server')
+options=('emptydirs')
+install="$pkgname.install"
+source=("http://wordpress.org/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0')
+
+package() {
+  install -d "$pkgdir/usr/share/webapps"
+  cp -r wordpress "$pkgdir/usr/share/webapps"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: wordpress.install
===
--- wordpress.install   2016-04-21 14:48:44 UTC (rev 171517)
+++ wordpress.install   2016-04-21 14:49:38 UTC (rev 171518)
@@ -1,21 +0,0 @@
-post_install() {
-  # Make uploads work
-  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
-  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
-  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
-}
-
-pre_remove() {
-  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
-  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
-}
-
-post_remove() {
-  rm -rf /usr/share/webapps/wordpress
-}
-
-post_upgrade() {
-  echo 'Wordpress is in /usr/share/webapps now'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/wordpress.install (from rev 171517, 
wordpress/trunk/wordpress.install)
===
--- wordpress.install   (rev 0)
+++ wordpress.install   2016-04-21 14:49:38 UTC (rev 171518)
@@ -0,0 +1,21 @@
+post_install() {
+  # Make uploads work
+  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
+  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
+  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
+}
+
+pre_remove() {
+  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
+  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
+}
+
+post_remove() {
+  rm -rf /usr/share/webapps/wordpress
+}
+
+post_upgrade() {
+  echo 'Wordpress is in /usr/share/webapps now'
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 16:55:03
  Author: fyan
Revision: 171520

archrelease: copy trunk to community-any

Added:
  yapf/repos/community-any/PKGBUILD
(from rev 171519, yapf/trunk/PKGBUILD)
Deleted:
  yapf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 14:54:41 UTC (rev 171519)
+++ PKGBUILD2016-04-21 14:55:03 UTC (rev 171520)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=yapf
-pkgname=("$pkgbase" "python2-$pkgbase")
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Python style guide checker"
-arch=('any')
-url="http://github.com/google/yapf;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/google/${pkgbase}.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a $pkgbase{,-py2}
-}
-
-build() {
-  cd "${srcdir}/${pkgbase}"
-  python setup.py build
-
-  cd "${srcdir}/${pkgbase}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "${srcdir}/${pkgbase}"
-  nosetests3
-
-  cd "${srcdir}/${pkgbase}-py2"
-  nosetests2
-}
-
-package_yapf() {
-  depends=('python-setuptools')
-
-  cd $pkgbase
-  python setup.py install -O1 --root="$pkgdir/"
-}
-
-package_python2-yapf() {
-  depends=('python2-setuptools')
-
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/yapf" "$pkgdir/usr/bin/yapf2"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: yapf/repos/community-any/PKGBUILD (from rev 171519, yapf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 14:55:03 UTC (rev 171520)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=yapf
+pkgname=("yapf" "python2-yapf")
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="Python style guide checker"
+arch=('any')
+url="http://github.com/google/yapf;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/google/yapf.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a yapf{,-py2}
+}
+
+build() {
+  cd "$srcdir"/yapf
+  python setup.py build
+
+  cd "$srcdir"/yapf-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/yapf
+  nosetests3
+
+  cd "$srcdir"/yapf-py2
+  nosetests2
+}
+
+package_yapf() {
+  depends=('python-setuptools')
+
+  cd yapf
+  python setup.py install -O1 --root="$pkgdir"
+}
+
+package_python2-yapf() {
+  depends=('python2-setuptools')
+
+  cd yapf-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/yapf{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 16:54:41
  Author: fyan
Revision: 171519

upgpkg: yapf 0.7.1-1

Modified:
  yapf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 14:49:38 UTC (rev 171518)
+++ PKGBUILD2016-04-21 14:54:41 UTC (rev 171519)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgbase=yapf
-pkgname=("$pkgbase" "python2-$pkgbase")
-pkgver=0.7.0
+pkgname=("yapf" "python2-yapf")
+pkgver=0.7.1
 pkgrel=1
 pkgdesc="Python style guide checker"
 arch=('any')
@@ -11,26 +11,26 @@
 license=('Apache')
 makedepends=('python-setuptools' 'python2-setuptools' 'git')
 checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/google/${pkgbase}.git#tag=v$pkgver;)
+source=("git+https://github.com/google/yapf.git#tag=v$pkgver;)
 sha256sums=('SKIP')
 
 prepare() {
-  cp -a $pkgbase{,-py2}
+  cp -a yapf{,-py2}
 }
 
 build() {
-  cd "${srcdir}/${pkgbase}"
+  cd "$srcdir"/yapf
   python setup.py build
 
-  cd "${srcdir}/${pkgbase}-py2"
+  cd "$srcdir"/yapf-py2
   python2 setup.py build
 }
 
 check() {
-  cd "${srcdir}/${pkgbase}"
+  cd "$srcdir"/yapf
   nosetests3
 
-  cd "${srcdir}/${pkgbase}-py2"
+  cd "$srcdir"/yapf-py2
   nosetests2
 }
 
@@ -37,16 +37,16 @@
 package_yapf() {
   depends=('python-setuptools')
 
-  cd $pkgbase
-  python setup.py install -O1 --root="$pkgdir/"
+  cd yapf
+  python setup.py install -O1 --root="$pkgdir"
 }
 
 package_python2-yapf() {
   depends=('python2-setuptools')
 
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/yapf" "$pkgdir/usr/bin/yapf2"
+  cd yapf-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/yapf{,2}
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Alexander Rødseth
Date: Thursday, April 21, 2016 @ 16:48:44
  Author: arodseth
Revision: 171517

upgpkg: wordpress 4.5-1

Modified:
  wordpress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 14:20:02 UTC (rev 171516)
+++ PKGBUILD2016-04-21 14:48:44 UTC (rev 171517)
@@ -6,7 +6,7 @@
 # Contributor: Christopher Rogers 
 
 pkgname=wordpress
-pkgver=4.4.2
+pkgver=4.5
 pkgrel=1
 pkgdesc='Blog tool and publishing platform'
 arch=('any')
@@ -20,7 +20,7 @@
 options=('emptydirs')
 install="$pkgname.install"
 source=("http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('c8a74c0f7cfc0d19989d235759e70cebd90f42aa0513bd9bc344230b0f79e08b')
+sha256sums=('d99c9599d982c3e42e917e03628c2ced6b6b87b2a6fd05b38ebb724b4057faf0')
 
 package() {
   install -d "$pkgdir/usr/share/webapps"


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

2016-04-21 Thread Evgeniy Alekseev
Date: Thursday, April 21, 2016 @ 16:20:02
  Author: arcanis
Revision: 171516

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

Added:
  pymol/repos/community-i686/ChangeLog
(from rev 171515, pymol/trunk/ChangeLog)
  pymol/repos/community-i686/PKGBUILD
(from rev 171515, pymol/trunk/PKGBUILD)
  pymol/repos/community-i686/apbstools_tcltk8.6.patch
(from rev 171515, pymol/trunk/apbstools_tcltk8.6.patch)
  pymol/repos/community-i686/pymol-38899.patch
(from rev 171515, pymol/trunk/pymol-38899.patch)
  pymol/repos/community-i686/pymol.install
(from rev 171515, pymol/trunk/pymol.install)
  pymol/repos/community-x86_64/ChangeLog
(from rev 171515, pymol/trunk/ChangeLog)
  pymol/repos/community-x86_64/PKGBUILD
(from rev 171515, pymol/trunk/PKGBUILD)
  pymol/repos/community-x86_64/apbstools_tcltk8.6.patch
(from rev 171515, pymol/trunk/apbstools_tcltk8.6.patch)
  pymol/repos/community-x86_64/pymol-38899.patch
(from rev 171515, pymol/trunk/pymol-38899.patch)
  pymol/repos/community-x86_64/pymol.install
(from rev 171515, pymol/trunk/pymol.install)
Deleted:
  pymol/repos/community-i686/ChangeLog
  pymol/repos/community-i686/PKGBUILD
  pymol/repos/community-i686/apbstools_tcltk8.6.patch
  pymol/repos/community-i686/pymol-38899.patch
  pymol/repos/community-i686/pymol.install
  pymol/repos/community-x86_64/ChangeLog
  pymol/repos/community-x86_64/PKGBUILD
  pymol/repos/community-x86_64/apbstools_tcltk8.6.patch
  pymol/repos/community-x86_64/pymol-38899.patch
  pymol/repos/community-x86_64/pymol.install

---+
 /ChangeLog|   58 +++
 /PKGBUILD |  124 ++
 /apbstools_tcltk8.6.patch |  212 +++
 /pymol-38899.patch|  502 
 /pymol.install|   22 +
 community-i686/ChangeLog  |   26 -
 community-i686/PKGBUILD   |   63 ---
 community-i686/apbstools_tcltk8.6.patch   |  106 -
 community-i686/pymol-38899.patch  |  251 --
 community-i686/pymol.install  |   11 
 community-x86_64/ChangeLog|   26 -
 community-x86_64/PKGBUILD |   63 ---
 community-x86_64/apbstools_tcltk8.6.patch |  106 -
 community-x86_64/pymol-38899.patch|  251 --
 community-x86_64/pymol.install|   11 
 15 files changed, 918 insertions(+), 914 deletions(-)

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


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

2016-04-21 Thread Evgeniy Alekseev
Date: Thursday, April 21, 2016 @ 16:19:31
  Author: arcanis
Revision: 171515

upgpkg: pymol 1.8.2.0-1

Modified:
  pymol/trunk/ChangeLog
  pymol/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2016-04-21 13:41:57 UTC (rev 171514)
+++ ChangeLog   2016-04-21 14:19:31 UTC (rev 171515)
@@ -1,3 +1,6 @@
+1.8.2.0-1:
+upstream update
+
 1.8.0.0.r4144-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 13:41:57 UTC (rev 171514)
+++ PKGBUILD2016-04-21 14:19:31 UTC (rev 171515)
@@ -4,9 +4,8 @@
 # Contributor: Tomasz Żok 
 
 pkgname=pymol
-pkgver=1.8.0.0.r4144
-_pkgver=1.8.0.0-r4144
-pkgrel=2
+pkgver=1.8.2.0
+pkgrel=1
 pkgdesc="Molecular visualization system on an Open Source foundation"
 arch=('i686' 'x86_64')
 url="http://pymol.org/;
@@ -13,12 +12,12 @@
 license=('custom')
 depends=('glew' 'glut' 'libgl' 'libxml2' 'python2-numpy' 'python2-pmw' 'tcsh')
 makedepends=('desktop-file-utils' 'gendesk')
-source=("http://downloads.sourceforge.net/project/pymol/pymol/1.8/pymol-v${_pkgver}.tar.bz2;
+source=("http://downloads.sourceforge.net/project/pymol/pymol/1.8/pymol-v${pkgver}.tar.bz2;
 ${pkgname}.png::"https://c.fsdn.com/allura/p/pymol/icon;
 "${pkgname}-38899.patch"
 "apbstools_tcltk8.6.patch")
 install="${pkgname}.install"
-md5sums=('c3be2ef9e7114b2fe2c02524c380b63b'
+md5sums=('68dca95bc60f5979f7a0cb22839d95ae'
  '0e9df23150d39cbcb8f79c38ce2a52e5'
  '1f8152c4604ba2939b24e25a022937ca'
  '138550367b74fd62a7c7bc48d339eb2d')


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 15:41:57
  Author: fyan
Revision: 171514

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 13:41:22 UTC (rev 171513)
+++ community-i686/PKGBUILD 2016-04-21 13:41:57 UTC (rev 171514)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=5.10.1
-pkgrel=2
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
-sha256sums=('c6e278b612b53c240ddf85521403e55abfd8f0201d2f2c7e3d2c21383054aacd')
-
-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 PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser
-# --shared-v8
-
-  make
-}
-
-check() {
-  cd node-v$pkgver
-  make test
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # install docs as per user request
-  install -d "$pkgdir"/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-"$pkgdir"/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 171513, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 13:41:57 UTC (rev 171514)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=5.10.1
+pkgrel=3
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
+sha256sums=('c6e278b612b53c240ddf85521403e55abfd8f0201d2f2c7e3d2c21383054aacd')
+
+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 PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser
+# --shared-v8
+
+  make
+}
+
+check() {
+  cd node-v$pkgver
+  make test
+}
+
+package() {
+  cd node-v$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # install docs as per user request
+  install -d "$pkgdir"/usr/share/doc/nodejs
+  cp -r 

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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 15:41:22
  Author: fyan
Revision: 171513

upgpkg: nodejs 5.10.1-3

rebuild with http-parser-2.7.0

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 13:36:00 UTC (rev 171512)
+++ PKGBUILD2016-04-21 13:41:22 UTC (rev 171513)
@@ -10,7 +10,7 @@
 
 pkgname=nodejs
 pkgver=5.10.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 15:36:00
  Author: fyan
Revision: 171512

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

Added:
  http-parser/repos/community-i686/PKGBUILD
(from rev 171511, http-parser/trunk/PKGBUILD)
  http-parser/repos/community-x86_64/PKGBUILD
(from rev 171511, http-parser/trunk/PKGBUILD)
Deleted:
  http-parser/repos/community-i686/PKGBUILD
  http-parser/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 2016-04-21 13:35:25 UTC (rev 171511)
+++ community-i686/PKGBUILD 2016-04-21 13:36:00 UTC (rev 171512)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Brian Bidulock 
-
-pkgname=http-parser
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="Parser for HTTP Request/Response written in C"
-arch=('i686' 'x86_64')
-url="https://github.com/joyent/http-parser;
-license=('MIT')
-depends=('glibc')
-makedepends=('git')
-source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's|-Werror||' $pkgname/Makefile
-}
-
-build() {
-  cd $pkgname
-  make library
-}
-
-check() {
-  cd $pkgname
-  make test
-}
-
-package() {
-  cd $pkgname
-  make PREFIX="$pkgdir/usr" install
-
-  install -Dm644 LICENSE-MIT \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-
-  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/lib/libhttp_parser.so"
-}

Copied: http-parser/repos/community-i686/PKGBUILD (from rev 171511, 
http-parser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 13:36:00 UTC (rev 171512)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Brian Bidulock 
+
+pkgname=http-parser
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Parser for HTTP Request/Response written in C"
+arch=('i686' 'x86_64')
+url="https://github.com/nodejs/http-parser;
+license=('MIT')
+depends=('glibc')
+makedepends=('git')
+source=("git+https://github.com/nodejs/http-parser.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  sed -i 's|-Werror||' $pkgname/Makefile
+}
+
+build() {
+  cd $pkgname
+  make library
+}
+
+check() {
+  cd $pkgname
+  make test
+}
+
+package() {
+  cd $pkgname
+  make PREFIX="$pkgdir/usr" install
+
+  install -Dm644 LICENSE-MIT \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+
+  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/lib/libhttp_parser.so"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-21 13:35:25 UTC (rev 171511)
+++ community-x86_64/PKGBUILD   2016-04-21 13:36:00 UTC (rev 171512)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Brian Bidulock 
-
-pkgname=http-parser
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="Parser for HTTP Request/Response written in C"
-arch=('i686' 'x86_64')
-url="https://github.com/joyent/http-parser;
-license=('MIT')
-depends=('glibc')
-makedepends=('git')
-source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's|-Werror||' $pkgname/Makefile
-}
-
-build() {
-  cd $pkgname
-  make library
-}
-
-check() {
-  cd $pkgname
-  make test
-}
-
-package() {
-  cd $pkgname
-  make PREFIX="$pkgdir/usr" install
-
-  install -Dm644 LICENSE-MIT \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-
-  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/lib/libhttp_parser.so"
-}

Copied: http-parser/repos/community-x86_64/PKGBUILD (from rev 171511, 
http-parser/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-21 13:36:00 UTC (rev 171512)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Brian Bidulock 
+
+pkgname=http-parser
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Parser for HTTP Request/Response written in C"
+arch=('i686' 'x86_64')
+url="https://github.com/nodejs/http-parser;
+license=('MIT')
+depends=('glibc')
+makedepends=('git')
+source=("git+https://github.com/nodejs/http-parser.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  sed -i 's|-Werror||' $pkgname/Makefile
+}
+
+build() {
+  cd $pkgname
+  make library
+}
+
+check() {
+  cd $pkgname
+  make test
+}
+
+package() {
+  cd $pkgname
+  make 

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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 15:35:25
  Author: fyan
Revision: 171511

upgpkg: http-parser 2.7.0-1

Modified:
  http-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 13:00:47 UTC (rev 171510)
+++ PKGBUILD2016-04-21 13:35:25 UTC (rev 171511)
@@ -3,15 +3,15 @@
 # Contributor: Brian Bidulock 
 
 pkgname=http-parser
-pkgver=2.6.2
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Parser for HTTP Request/Response written in C"
 arch=('i686' 'x86_64')
-url="https://github.com/joyent/http-parser;
+url="https://github.com/nodejs/http-parser;
 license=('MIT')
 depends=('glibc')
 makedepends=('git')
-source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver;)
+source=("git+https://github.com/nodejs/http-parser.git#tag=v$pkgver;)
 md5sums=('SKIP')
 
 prepare() {


[arch-commits] Commit in jenkins/repos/community-any (14 files)

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 15:00:47
  Author: fyan
Revision: 171510

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 171509, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 171509, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 171509, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 171509, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 171509, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 171509, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 171509, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   90 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   18 +-
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 117 insertions(+), 117 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 13:00:00 UTC (rev 171509)
+++ PKGBUILD2016-04-21 13:00:47 UTC (rev 171510)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=1.656
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')

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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 15:00:00
  Author: fyan
Revision: 171509

upgpkg: jenkins 1.657-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 12:57:53 UTC (rev 171508)
+++ PKGBUILD2016-04-21 13:00:00 UTC (rev 171509)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=1.656
+pkgver=1.657
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('84750a70377fc09ed6a75909dd652ccd24999e1ec5f584ee7d36f9e5af02bb280b53f22b8fa47cf371a8a547a916bc9a87a93884fe176a822cc67dd69fd43d69'
+sha512sums=('edabe9c0fb609ef875c540e5e1d4f154f5d6c13b2fbea794c814c1b6c71a9374649277232a2e12117536a681ad6430839b4c036728393ae9a775ee4f50d7e26f'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2016-04-21 Thread Christian Hesse
Date: Thursday, April 21, 2016 @ 14:57:53
  Author: eworm
Revision: 171508

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

Added:
  mupdf/repos/community-i686/PKGBUILD
(from rev 171507, mupdf/trunk/PKGBUILD)
  mupdf/repos/community-i686/mupdf-1.5-openjpeg-2.1.0.patch
(from rev 171507, mupdf/trunk/mupdf-1.5-openjpeg-2.1.0.patch)
  mupdf/repos/community-i686/mupdf.desktop
(from rev 171507, mupdf/trunk/mupdf.desktop)
  mupdf/repos/community-i686/mupdf.install
(from rev 171507, mupdf/trunk/mupdf.install)
  mupdf/repos/community-i686/mupdf.xpm
(from rev 171507, mupdf/trunk/mupdf.xpm)
  mupdf/repos/community-x86_64/PKGBUILD
(from rev 171507, mupdf/trunk/PKGBUILD)
  mupdf/repos/community-x86_64/mupdf-1.5-openjpeg-2.1.0.patch
(from rev 171507, mupdf/trunk/mupdf-1.5-openjpeg-2.1.0.patch)
  mupdf/repos/community-x86_64/mupdf.desktop
(from rev 171507, mupdf/trunk/mupdf.desktop)
  mupdf/repos/community-x86_64/mupdf.install
(from rev 171507, mupdf/trunk/mupdf.install)
  mupdf/repos/community-x86_64/mupdf.xpm
(from rev 171507, mupdf/trunk/mupdf.xpm)
Deleted:
  mupdf/repos/community-i686/PKGBUILD
  mupdf/repos/community-i686/mupdf-1.5-openjpeg-2.1.0.patch
  mupdf/repos/community-i686/mupdf.desktop
  mupdf/repos/community-i686/mupdf.install
  mupdf/repos/community-i686/mupdf.xpm
  mupdf/repos/community-x86_64/PKGBUILD
  mupdf/repos/community-x86_64/mupdf-1.5-openjpeg-2.1.0.patch
  mupdf/repos/community-x86_64/mupdf.desktop
  mupdf/repos/community-x86_64/mupdf.install
  mupdf/repos/community-x86_64/mupdf.xpm

-+
 /PKGBUILD   |  120 ++
 /mupdf-1.5-openjpeg-2.1.0.patch |   26 
 /mupdf.desktop  |   30 +
 /mupdf.install  |   24 
 community-i686/PKGBUILD |   60 ---
 community-i686/mupdf-1.5-openjpeg-2.1.0.patch   |   13 --
 community-i686/mupdf.desktop|   15 --
 community-i686/mupdf.install|   12 --
 community-x86_64/PKGBUILD   |   60 ---
 community-x86_64/mupdf-1.5-openjpeg-2.1.0.patch |   13 --
 community-x86_64/mupdf.desktop  |   15 --
 community-x86_64/mupdf.install  |   12 --
 12 files changed, 200 insertions(+), 200 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 12:57:42 UTC (rev 171507)
+++ community-i686/PKGBUILD 2016-04-21 12:57:53 UTC (rev 171508)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Brad Fanella 
-# Contributor: Stefan Husmann 
-# Contributor: Pierre-Paul Paquin 
-# Contributor: xduugu
-
-pkgname=mupdf
-pkgver=1.9
-pkgrel=1
-pkgdesc='Lightweight PDF and XPS viewer'
-arch=('i686' 'x86_64')
-url='http://mupdf.com'
-license=('AGPL3')
-depends=('curl' 'desktop-file-utils' 'freetype2' 'jbig2dec' 'libjpeg' 'libxext'
- 'openssl' 'openjpeg2' 'mesa' 'libgl' 'libxcursor' 'libxrandr'
-'libxinerama')
-makedepends=('mesa-libgl')
-install=mupdf.install
-# we need static libs for zathura-pdf-mupdf
-options=('staticlibs')
-source=(http://mupdf.com/downloads/mupdf-${pkgver/_/}-source.tar.gz
-mupdf.desktop
-mupdf.xpm
-mupdf-1.5-openjpeg-2.1.0.patch)
-md5sums=('6677c6386e8408a72826a0b7bc647a45'
- '39b54f82a763aac54e352315a0ee9037'
- 'f3f35e7320bafde331250de1c99186a1'
- '8e71587ad9b86e10c9144618ab43149b')
-
-prepare() {
-  cd $pkgname-${pkgver/_/}-source
-  rm -rf thirdparty/{curl,freetype,jpeg,zlib,jbig2dec,openjpeg}
-  patch -p1 -i ../mupdf-1.5-openjpeg-2.1.0.patch
-
-  sed '/^JBIG2DEC_CFLAGS :=/s|$| -I./include/mupdf|' -i Makethird
-}
-
-build() {
-  CFLAGS+=' -fPIC'
-  CXXFLAGS+=' -fPIC'
-
-  cd $pkgname-${pkgver/_/}-source
-  make build=release CURL_LIBS='-lcurl -lpthread'
-}
-
-package() {
-  cd $pkgname-${pkgver/_/}-source
-  make build=release prefix="$pkgdir"/usr install
-
-  mv "$pkgdir"/usr/bin/mupdf-x11-curl "$pkgdir"/usr/bin/mupdf
-  rm "$pkgdir"/usr/bin/mupdf-x11
-
-  install -Dm644 ../mupdf.desktop 
"$pkgdir"/usr/share/applications/mupdf.desktop
-  install -Dm644 ../mupdf.xpm "$pkgdir"/usr/share/pixmaps/mupdf.xpm
-
-  find "$pkgdir"/usr/include "$pkgdir"/usr/share "$pkgdir"/usr/lib \
--type f -exec chmod -v 0644 {} +
-}

Copied: mupdf/repos/community-i686/PKGBUILD (from rev 171507, 
mupdf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 12:57:53 UTC (rev 171508)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Christian Hesse 

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

2016-04-21 Thread Christian Hesse
Date: Thursday, April 21, 2016 @ 14:57:42
  Author: eworm
Revision: 171507

upgpkg: mupdf 1.9_a-1

new upstream release

Modified:
  mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 12:00:14 UTC (rev 171506)
+++ PKGBUILD2016-04-21 12:57:42 UTC (rev 171507)
@@ -7,7 +7,7 @@
 # Contributor: xduugu
 
 pkgname=mupdf
-pkgver=1.9
+pkgver=1.9_a
 pkgrel=1
 pkgdesc='Lightweight PDF and XPS viewer'
 arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@
 mupdf.desktop
 mupdf.xpm
 mupdf-1.5-openjpeg-2.1.0.patch)
-md5sums=('6677c6386e8408a72826a0b7bc647a45'
+md5sums=('658b90788a57d858dcb069cf326e11c3'
  '39b54f82a763aac54e352315a0ee9037'
  'f3f35e7320bafde331250de1c99186a1'
  '8e71587ad9b86e10c9144618ab43149b')


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 14:18:33
  Author: ronald
Revision: 265807

upgpkg: gnuplot 5.0.3-1

update to 5.0.3; FS#48732 enable bitmap terminal support

Modified:
  gnuplot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 10:40:03 UTC (rev 265806)
+++ PKGBUILD2016-04-21 12:18:33 UTC (rev 265807)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=gnuplot
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Plotting package which outputs to X11, PostScript, PNG, GIF, and 
others" 
 arch=('i686' 'x86_64') 
@@ -16,7 +16,7 @@
 install=gnuplot.install
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 "lua53_compat.patch")
-sha1sums=('a7159d67f5b3312b219cc4386bd5e7937939bf49'
+sha1sums=('7ec8b4221ee5406f1beeac4f9db794acb501dc2b'
   '9005fa9e4da91ceedb8ccd1d761866e7b064f8b1')
 
 prepare() {
@@ -38,7 +38,8 @@
   WX_CONFIG=/usr/bin/wx-config ./configure --prefix=/usr \
   --libexecdir=/usr/bin \
   --with-gihdir=/usr/share/gnuplot \
-  --with-readline=gnu --enable-qt
+  --with-readline=gnu --enable-qt \
+  --with-bitmap-terminals
   make pkglibexecdir=/usr/bin
 }
 


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 14:18:46
  Author: ronald
Revision: 265808

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

Added:
  gnuplot/repos/extra-i686/PKGBUILD
(from rev 265807, gnuplot/trunk/PKGBUILD)
  gnuplot/repos/extra-i686/gnuplot.install
(from rev 265807, gnuplot/trunk/gnuplot.install)
  gnuplot/repos/extra-i686/lua53_compat.patch
(from rev 265807, gnuplot/trunk/lua53_compat.patch)
  gnuplot/repos/extra-x86_64/PKGBUILD
(from rev 265807, gnuplot/trunk/PKGBUILD)
  gnuplot/repos/extra-x86_64/gnuplot.install
(from rev 265807, gnuplot/trunk/gnuplot.install)
  gnuplot/repos/extra-x86_64/lua53_compat.patch
(from rev 265807, gnuplot/trunk/lua53_compat.patch)
Deleted:
  gnuplot/repos/extra-i686/PKGBUILD
  gnuplot/repos/extra-i686/gnuplot.install
  gnuplot/repos/extra-i686/lua53_compat.patch
  gnuplot/repos/extra-x86_64/PKGBUILD
  gnuplot/repos/extra-x86_64/gnuplot.install
  gnuplot/repos/extra-x86_64/lua53_compat.patch

-+
 /PKGBUILD   |  106 ++
 /gnuplot.install|   62 ++
 /lua53_compat.patch |   26 +
 extra-i686/PKGBUILD |   52 --
 extra-i686/gnuplot.install  |   31 ---
 extra-i686/lua53_compat.patch   |   13 
 extra-x86_64/PKGBUILD   |   52 --
 extra-x86_64/gnuplot.install|   31 ---
 extra-x86_64/lua53_compat.patch |   13 
 9 files changed, 194 insertions(+), 192 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-21 12:18:33 UTC (rev 265807)
+++ extra-i686/PKGBUILD 2016-04-21 12:18:46 UTC (rev 265808)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: damir 
-# Contributor: Tom Newsom 
-
-pkgname=gnuplot
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="Plotting package which outputs to X11, PostScript, PNG, GIF, and 
others" 
-arch=('i686' 'x86_64') 
-url="http://www.gnuplot.info; 
-license=('custom') 
-depends=('readline' 'gd' 'wxgtk' 'cairo' 'libjpeg' 'lua' 'qt5-svg' 'qt5-tools' 
'gnutls') 
-makedepends=('texinfo' 'texlive-core' 'emacs' 'texlive-latexextra')
-options=('!makeflags')
-install=gnuplot.install
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
-"lua53_compat.patch")
-sha1sums=('a7159d67f5b3312b219cc4386bd5e7937939bf49'
-  '9005fa9e4da91ceedb8ccd1d761866e7b064f8b1')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # fix default source location; use the GDFONTPATH variable to modify at 
runtime
-  sed -i 's|/usr/X11R6/lib/X11/fonts/truetype|/usr/share/fonts/TTF|' 
src/variable.c
-
-  sed -i -e 's|/usr/X11R6/lib/X11/fonts/Type1|/usr/share/fonts/Type1|' \
-  -e 
's|$(X11ROOT)/X11R6/lib/X11/fonts/Type1|$(X11ROOT)/usr/share/fonts/Type1|' \
-  src/variable.c
-
-  patch -p1 < "$srcdir"/lua53_compat.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  WX_CONFIG=/usr/bin/wx-config ./configure --prefix=/usr \
-  --libexecdir=/usr/bin \
-  --with-gihdir=/usr/share/gnuplot \
-  --with-readline=gnu --enable-qt
-  make pkglibexecdir=/usr/bin
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make pkglibexecdir=/usr/bin DESTDIR="${pkgdir}" install install-info
-
-  install -Dm644 Copyright "${pkgdir}/usr/share/licenses/$pkgname/Copyright"
-
-  rm -f "${pkgdir}/usr/share/texmf-dist/ls-R"
-}

Copied: gnuplot/repos/extra-i686/PKGBUILD (from rev 265807, 
gnuplot/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-21 12:18:46 UTC (rev 265808)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: damir 
+# Contributor: Tom Newsom 
+
+pkgname=gnuplot
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="Plotting package which outputs to X11, PostScript, PNG, GIF, and 
others" 
+arch=('i686' 'x86_64') 
+url="http://www.gnuplot.info; 
+license=('custom') 
+depends=('readline' 'gd' 'wxgtk' 'cairo' 'libjpeg' 'lua' 'qt5-svg' 'qt5-tools' 
'gnutls') 
+makedepends=('texinfo' 'texlive-core' 'emacs' 'texlive-latexextra')
+options=('!makeflags')
+install=gnuplot.install
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
+"lua53_compat.patch")
+sha1sums=('7ec8b4221ee5406f1beeac4f9db794acb501dc2b'
+  '9005fa9e4da91ceedb8ccd1d761866e7b064f8b1')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # fix default source location; use the GDFONTPATH variable to modify at 
runtime
+  sed -i 's|/usr/X11R6/lib/X11/fonts/truetype|/usr/share/fonts/TTF|' 
src/variable.c
+
+  sed -i -e 's|/usr/X11R6/lib/X11/fonts/Type1|/usr/share/fonts/Type1|' \
+  -e 

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

2016-04-21 Thread Sven-Hendrik Haase
Date: Thursday, April 21, 2016 @ 14:00:14
  Author: svenstaro
Revision: 171506

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

Added:
  netdata/repos/community-i686/
  netdata/repos/community-i686/PKGBUILD
(from rev 171505, netdata/trunk/PKGBUILD)
  netdata/repos/community-i686/netdata.install
(from rev 171505, netdata/trunk/netdata.install)
  netdata/repos/community-x86_64/
  netdata/repos/community-x86_64/PKGBUILD
(from rev 171505, netdata/trunk/PKGBUILD)
  netdata/repos/community-x86_64/netdata.install
(from rev 171505, netdata/trunk/netdata.install)

--+
 community-i686/PKGBUILD  |   41 +
 community-i686/netdata.install   |   25 ++
 community-x86_64/PKGBUILD|   41 +
 community-x86_64/netdata.install |   25 ++
 4 files changed, 132 insertions(+)

Copied: netdata/repos/community-i686/PKGBUILD (from rev 171505, 
netdata/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 12:00:14 UTC (rev 171506)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SanskritFritz (gmail)
+
+pkgname=netdata
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web."
+url="https://github.com/firehol/netdata/wiki;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libmnl' 'libnetfilter_acct' 'zlib')
+optdepends=('nodejs: Webbox plugin')
+source=("http://firehol.org/download/netdata/releases/v$pkgver/netdata-$pkgver.tar.xz;)
+backup=('etc/netdata/netdata.conf' 'etc/netdata/charts.d.conf' 
'etc/netdata/apps_groups.conf')
+install="$pkgname.install"
+md5sums=('19e6d2b142906f824d0951428d0c030e')
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   ./autogen.sh
+   ./configure \
+   --prefix="/usr" \
+   --sbindir="/usr/bin" \
+   --sysconfdir="/etc" \
+   --libexecdir="/usr/lib" \
+   --localstatedir="/var" \
+   --with-zlib --with-math --with-user=netdata
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir" install
+
+   touch "$pkgdir/etc/netdata/netdata.conf"
+
+   install -Dm0644 "system/netdata.service" 
"$pkgdir/usr/lib/systemd/system/netdata.service"
+}
+

Copied: netdata/repos/community-i686/netdata.install (from rev 171505, 
netdata/trunk/netdata.install)
===
--- community-i686/netdata.install  (rev 0)
+++ community-i686/netdata.install  2016-04-21 12:00:14 UTC (rev 171506)
@@ -0,0 +1,25 @@
+chown_netdata() {
+   chown -R netdata:netdata /var/log/netdata
+   chown -R netdata:netdata /var/cache/netdata
+   chown -R netdata:netdata /usr/share/netdata/web
+   chown -R netdata:netdata /etc/netdata
+}
+
+post_install() {
+   getent group netdata > /dev/null || groupadd -g 134 netdata 1>/dev/null
+   getent passwd netdata > /dev/null || useradd -u 134 -d 
/var/cache/netdata -g netdata -s /bin/nologin netdata 1>/dev/null
+
+   chown_netdata
+
+   echo
+   echo "After the daemon has been started for the first time,"
+   echo "download the default config file from"
+   echo "http://127.0.0.1:1/netdata.conf;
+   echo
+   echo "Copy it to /etc/netdata/ and modify it."
+   echo
+}
+
+post_upgrade() {
+   chown_netdata
+}

Copied: netdata/repos/community-x86_64/PKGBUILD (from rev 171505, 
netdata/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-21 12:00:14 UTC (rev 171506)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SanskritFritz (gmail)
+
+pkgname=netdata
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web."
+url="https://github.com/firehol/netdata/wiki;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libmnl' 'libnetfilter_acct' 'zlib')
+optdepends=('nodejs: Webbox plugin')
+source=("http://firehol.org/download/netdata/releases/v$pkgver/netdata-$pkgver.tar.xz;)
+backup=('etc/netdata/netdata.conf' 'etc/netdata/charts.d.conf' 
'etc/netdata/apps_groups.conf')
+install="$pkgname.install"
+md5sums=('19e6d2b142906f824d0951428d0c030e')
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   ./autogen.sh
+   ./configure \
+   --prefix="/usr" \
+   --sbindir="/usr/bin" \
+   --sysconfdir="/etc" \
+   --libexecdir="/usr/lib" \
+   --localstatedir="/var" \
+   --with-zlib --with-math --with-user=netdata
+   make
+}
+

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

2016-04-21 Thread Daniel Micay
Date: Thursday, April 21, 2016 @ 13:47:47
  Author: thestinger
Revision: 171505

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

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

+
 /PKGBUILD  |  642 
 /change-default-console-loglevel.patch |   22 
 /config|15932 +++
 /config.x86_64 |15346 ++
 /linux-grsec.install   |   74 
 /linux.preset  |   28 
 community-i686/PKGBUILD|  321 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 7966 ---
 community-i686/config.x86_64   | 7673 ---
 community-i686/linux-grsec.install |   37 
 community-i686/linux.preset|   14 
 community-x86_64/PKGBUILD  |  321 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 7966 ---
 community-x86_64/config.x86_64 | 7673 ---
 community-x86_64/linux-grsec.install   |   37 
 community-x86_64/linux.preset  |   14 
 18 files changed, 32044 insertions(+), 32044 deletions(-)

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


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

2016-04-21 Thread Daniel Micay
Date: Thursday, April 21, 2016 @ 13:46:41
  Author: thestinger
Revision: 171504

upgpkg: linux-grsec 4.4.8.201604201957-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 11:42:58 UTC (rev 171503)
+++ PKGBUILD2016-04-21 11:46:41 UTC (rev 171504)
@@ -7,9 +7,9 @@
 
 pkgbase=linux-grsec
 _srcname=linux-4.4
-_pkgver=4.4.7
+_pkgver=4.4.8
 _grsecver=3.1
-_timestamp=201604152208
+_timestamp=201604201957
 _grsec_patch="grsecurity-$_grsecver-$_pkgver-$_timestamp.patch"
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -32,9 +32,9 @@
 
 sha256sums=('401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2'
 'SKIP'
-'34a0e0bc123fe2224a83e13a4da25f7f816438fd77c58dce19588441f5166f0e'
+'11ec99ae0600bd831ff8d71b77e64592f4b6918b7857fd9ff0284ea4cf267b4e'
 'SKIP'
-'4b950fddc63ef08ef4fb017887a9473d6bf2ad156ce389add50c2a8ab2dffdd6'
+'157ecb3f5116dace0b1a108b1b902fa5f236e4cdc185322589eed96a5ff9f489'
 'SKIP'
 'd003b50ca1713b2b22c01eefd98259df20d2508cea53b6869bbf1ce81584f3cc'
 '2c5a5eeca681c387a6a5e6e461e7f20328c44dc8143455edfe0fc3957242c835'


[arch-commits] Commit in (5 files)

2016-04-21 Thread Sven-Hendrik Haase
Date: Thursday, April 21, 2016 @ 13:42:58
  Author: svenstaro
Revision: 171503

Movng netdata from AUR

Added:
  netdata/
  netdata/repos/
  netdata/trunk/
  netdata/trunk/PKGBUILD
  netdata/trunk/netdata.install

-+
 PKGBUILD|   41 +
 netdata.install |   25 +
 2 files changed, 66 insertions(+)

Added: netdata/trunk/PKGBUILD
===
--- netdata/trunk/PKGBUILD  (rev 0)
+++ netdata/trunk/PKGBUILD  2016-04-21 11:42:58 UTC (rev 171503)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SanskritFritz (gmail)
+
+pkgname=netdata
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web."
+url="https://github.com/firehol/netdata/wiki;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libmnl' 'libnetfilter_acct' 'zlib')
+optdepends=('nodejs: Webbox plugin')
+source=("http://firehol.org/download/netdata/releases/v$pkgver/netdata-$pkgver.tar.xz;)
+backup=('etc/netdata/netdata.conf' 'etc/netdata/charts.d.conf' 
'etc/netdata/apps_groups.conf')
+install="$pkgname.install"
+md5sums=('19e6d2b142906f824d0951428d0c030e')
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   ./autogen.sh
+   ./configure \
+   --prefix="/usr" \
+   --sbindir="/usr/bin" \
+   --sysconfdir="/etc" \
+   --libexecdir="/usr/lib" \
+   --localstatedir="/var" \
+   --with-zlib --with-math --with-user=netdata
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+   make DESTDIR="$pkgdir" install
+
+   touch "$pkgdir/etc/netdata/netdata.conf"
+
+   install -Dm0644 "system/netdata.service" 
"$pkgdir/usr/lib/systemd/system/netdata.service"
+}
+

Added: netdata/trunk/netdata.install
===
--- netdata/trunk/netdata.install   (rev 0)
+++ netdata/trunk/netdata.install   2016-04-21 11:42:58 UTC (rev 171503)
@@ -0,0 +1,25 @@
+chown_netdata() {
+   chown -R netdata:netdata /var/log/netdata
+   chown -R netdata:netdata /var/cache/netdata
+   chown -R netdata:netdata /usr/share/netdata/web
+   chown -R netdata:netdata /etc/netdata
+}
+
+post_install() {
+   getent group netdata > /dev/null || groupadd -g 134 netdata 1>/dev/null
+   getent passwd netdata > /dev/null || useradd -u 134 -d 
/var/cache/netdata -g netdata -s /bin/nologin netdata 1>/dev/null
+
+   chown_netdata
+
+   echo
+   echo "After the daemon has been started for the first time,"
+   echo "download the default config file from"
+   echo "http://127.0.0.1:1/netdata.conf;
+   echo
+   echo "Copy it to /etc/netdata/ and modify it."
+   echo
+}
+
+post_upgrade() {
+   chown_netdata
+}


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

2016-04-21 Thread Sven-Hendrik Haase
Date: Thursday, April 21, 2016 @ 12:52:12
  Author: svenstaro
Revision: 171501

upgpkg: scummvm-tools 1.8.0-1

upstream release 1.8.0

Modified:
  scummvm-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 10:51:13 UTC (rev 171500)
+++ PKGBUILD2016-04-21 10:52:12 UTC (rev 171501)
@@ -4,15 +4,15 @@
 # Contributor: Sebastian Hase 
 # Contributor: Joe Davison 
 pkgname=scummvm-tools
-pkgver=1.7.0
-pkgrel=2
+pkgver=1.8.0
+pkgrel=1
 pkgdesc="A set of tools that enable you to convert, compress and decode game 
datafiles for ScummVM"
 url="http://www.scummvm.org/;
 license=('GPL')
 depends=('libpng' 'wxgtk2.8' 'flac' 'libvorbis')
 arch=('i686' 'x86_64')
-source=(http://downloads.sourceforge.net/sourceforge/scummvm/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('436a878bca3e9bbc2d33cadff0dda08c')
+source=("https://www.scummvm.org/frs/scummvm-tools/${pkgver}/scummvm-tools-${pkgver}.tar.xz;)
+md5sums=('47cb6462a9eb985e22c801445a6ffdc5')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-04-21 Thread Sven-Hendrik Haase
Date: Thursday, April 21, 2016 @ 12:52:23
  Author: svenstaro
Revision: 171502

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

Added:
  scummvm-tools/repos/community-i686/PKGBUILD
(from rev 171501, scummvm-tools/trunk/PKGBUILD)
  scummvm-tools/repos/community-x86_64/PKGBUILD
(from rev 171501, scummvm-tools/trunk/PKGBUILD)
Deleted:
  scummvm-tools/repos/community-i686/PKGBUILD
  scummvm-tools/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 10:52:12 UTC (rev 171501)
+++ community-i686/PKGBUILD 2016-04-21 10:52:23 UTC (rev 171502)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jérémie Dimino 
-# Contributor: Sebastian Hase 
-# Contributor: Joe Davison 
-pkgname=scummvm-tools
-pkgver=1.7.0
-pkgrel=2
-pkgdesc="A set of tools that enable you to convert, compress and decode game 
datafiles for ScummVM"
-url="http://www.scummvm.org/;
-license=('GPL')
-depends=('libpng' 'wxgtk2.8' 'flac' 'libvorbis')
-arch=('i686' 'x86_64')
-source=(http://downloads.sourceforge.net/sourceforge/scummvm/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('436a878bca3e9bbc2d33cadff0dda08c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  sed -i 's/wxgtk2-2.8-config/wx-config-2.8/' configure
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d ${pkgdir}/usr/bin
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm 644 README ${pkgdir}/usr/share/doc/scummvm-tools/README
-  install -Dm 644 convert_dxa.sh 
${pkgdir}/usr/share/doc/scummvm-tools/samples/convert_dxa.sh
-}
-#vim: sw=2 ts=2 et:

Copied: scummvm-tools/repos/community-i686/PKGBUILD (from rev 171501, 
scummvm-tools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 10:52:23 UTC (rev 171502)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jérémie Dimino 
+# Contributor: Sebastian Hase 
+# Contributor: Joe Davison 
+pkgname=scummvm-tools
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="A set of tools that enable you to convert, compress and decode game 
datafiles for ScummVM"
+url="http://www.scummvm.org/;
+license=('GPL')
+depends=('libpng' 'wxgtk2.8' 'flac' 'libvorbis')
+arch=('i686' 'x86_64')
+source=("https://www.scummvm.org/frs/scummvm-tools/${pkgver}/scummvm-tools-${pkgver}.tar.xz;)
+md5sums=('47cb6462a9eb985e22c801445a6ffdc5')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  sed -i 's/wxgtk2-2.8-config/wx-config-2.8/' configure
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d ${pkgdir}/usr/bin
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm 644 README ${pkgdir}/usr/share/doc/scummvm-tools/README
+  install -Dm 644 convert_dxa.sh 
${pkgdir}/usr/share/doc/scummvm-tools/samples/convert_dxa.sh
+}
+#vim: sw=2 ts=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-21 10:52:12 UTC (rev 171501)
+++ community-x86_64/PKGBUILD   2016-04-21 10:52:23 UTC (rev 171502)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jérémie Dimino 
-# Contributor: Sebastian Hase 
-# Contributor: Joe Davison 
-pkgname=scummvm-tools
-pkgver=1.7.0
-pkgrel=2
-pkgdesc="A set of tools that enable you to convert, compress and decode game 
datafiles for ScummVM"
-url="http://www.scummvm.org/;
-license=('GPL')
-depends=('libpng' 'wxgtk2.8' 'flac' 'libvorbis')
-arch=('i686' 'x86_64')
-source=(http://downloads.sourceforge.net/sourceforge/scummvm/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('436a878bca3e9bbc2d33cadff0dda08c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  sed -i 's/wxgtk2-2.8-config/wx-config-2.8/' configure
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d ${pkgdir}/usr/bin
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm 644 README ${pkgdir}/usr/share/doc/scummvm-tools/README
-  install -Dm 644 convert_dxa.sh 
${pkgdir}/usr/share/doc/scummvm-tools/samples/convert_dxa.sh
-}
-#vim: sw=2 ts=2 et:

Copied: scummvm-tools/repos/community-x86_64/PKGBUILD (from rev 171501, 
scummvm-tools/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in nodejs-babel-cli/repos/community-any (4 files)

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 12:51:13
  Author: fyan
Revision: 171500

archrelease: copy trunk to community-any

Added:
  nodejs-babel-cli/repos/community-any/LICENSE
(from rev 171499, nodejs-babel-cli/trunk/LICENSE)
  nodejs-babel-cli/repos/community-any/PKGBUILD
(from rev 171499, nodejs-babel-cli/trunk/PKGBUILD)
Deleted:
  nodejs-babel-cli/repos/community-any/LICENSE
  nodejs-babel-cli/repos/community-any/PKGBUILD

--+
 LICENSE  |   44 +-
 PKGBUILD |   78 ++---
 2 files changed, 61 insertions(+), 61 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 10:50:51 UTC (rev 171499)
+++ PKGBUILD2016-04-21 10:51:13 UTC (rev 171500)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Mario Finelli 
-# Contributor: Andy Weidenbaum 
-# Contributor: Peter Wu 
-
-_npmname=babel-cli
-pkgname=nodejs-$_npmname
-pkgver=6.7.5
-pkgrel=1
-pkgdesc="A compiler for writing next generation JavaScript"
-arch=('any')
-url="https://babeljs.io/;
-license=('MIT')
-depends=('nodejs' 'semver')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;
-LICENSE)
-noextract=($_npmname-$pkgver.tgz)
-sha256sums=('084396701c5bc64375137ffde846af533e4ad97c557980a803c3c26edbd25c05'
-'8a5a22eb7991f5a022b91273b2395c2342f56fb43deddd29c248efb40c8ad62c')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  # Experimental dedup
-  for dir in $_npmname/node_modules 
$_npmname/node_modules/semver-truncate/node_modules; do
-cd "$pkgdir"/usr/lib/node_modules/$dir
-for dep in semver; do
-  rm -r $dep;
-  npm link $dep;
-done
-  done
-}

Copied: nodejs-babel-cli/repos/community-any/PKGBUILD (from rev 171499, 
nodejs-babel-cli/trunk/PKGBUILD)
===
--- PKGBUILD 

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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 12:50:51
  Author: fyan
Revision: 171499

upgpkg: nodejs-babel-cli 6.7.7-1

Modified:
  nodejs-babel-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 10:49:06 UTC (rev 171498)
+++ PKGBUILD2016-04-21 10:50:51 UTC (rev 171499)
@@ -6,7 +6,7 @@
 
 _npmname=babel-cli
 pkgname=nodejs-$_npmname
-pkgver=6.7.5
+pkgver=6.7.7
 pkgrel=1
 pkgdesc="A compiler for writing next generation JavaScript"
 arch=('any')
@@ -17,7 +17,7 @@
 source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;
 LICENSE)
 noextract=($_npmname-$pkgver.tgz)
-sha256sums=('084396701c5bc64375137ffde846af533e4ad97c557980a803c3c26edbd25c05'
+sha256sums=('359e62c4705f39c2f104ba208c8b0f4b0fce6a15ce9d39aa477a6a839e7d1bb6'
 '8a5a22eb7991f5a022b91273b2395c2342f56fb43deddd29c248efb40c8ad62c')
 
 package() {


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

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:49:06
  Author: spupykin
Revision: 171498

archrelease: copy trunk to community-x86_64

Added:
  scantailor/repos/community-x86_64/PKGBUILD
(from rev 171497, scantailor/trunk/PKGBUILD)
  scantailor/repos/community-x86_64/scantailor.desktop
(from rev 171497, scantailor/trunk/scantailor.desktop)
  scantailor/repos/community-x86_64/scantailor.install
(from rev 171497, scantailor/trunk/scantailor.install)
Deleted:
  scantailor/repos/community-x86_64/PKGBUILD
  scantailor/repos/community-x86_64/scantailor.desktop
  scantailor/repos/community-x86_64/scantailor.install

+
 PKGBUILD   |   70 +--
 scantailor.desktop |   22 
 scantailor.install |   26 +-
 3 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 10:44:16 UTC (rev 171497)
+++ PKGBUILD2016-04-21 10:49:06 UTC (rev 171498)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Denis Terskov aka neurosurgeon 
-
-pkgname=scantailor
-pkgver=0.9.11.1
-pkgrel=5
-_realver=EXPERIMENTAL_2015_10_27
-pkgdesc="Interactive post-processing tool for scanned pages"
-arch=(i686 x86_64)
-url="http://scantailor.org/;
-license="GPL"
-depends=('qt5-base' 'libtiff' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('cmake' 'qt5-tools' 'eigen' 'boost')
-install=scantailor.install
-source=($pkgname-$_realver.tar.gz::https://github.com/Tulon/$pkgname/archive/$_realver.tar.gz
-scantailor.desktop)
-md5sums=('1638dec878e9f35e9c0af1ab80dd'
- '7fdbdef6167d124762421ec99a98f8de')
-
-build() {
-  cd $srcdir/$pkgname-$_realver
-  cmake \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   .
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$_realver
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 "resources/appicon.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/scantailor.svg"
-  install -Dm0644 "$srcdir/scantailor.desktop" 
"$pkgdir/usr/share/applications/scantailor.desktop"
-}

Copied: scantailor/repos/community-x86_64/PKGBUILD (from rev 171497, 
scantailor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 10:49:06 UTC (rev 171498)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Denis Terskov aka neurosurgeon 
+
+pkgname=scantailor
+pkgver=0.9.12
+pkgrel=1
+_realver=EXPERIMENTAL_2015_10_27
+pkgdesc="Interactive post-processing tool for scanned pages"
+arch=(i686 x86_64)
+url="http://scantailor.org/;
+license=("GPL")
+depends=('qt5-base' 'libtiff' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('cmake' 'qt5-tools' 'eigen' 'boost')
+install=scantailor.install
+source=($pkgname-$_realver.tar.gz::https://github.com/Tulon/$pkgname/archive/$_realver.tar.gz
+scantailor.desktop)
+md5sums=('1638dec878e9f35e9c0af1ab80dd'
+ '7fdbdef6167d124762421ec99a98f8de')
+
+build() {
+  cd $srcdir/$pkgname-$_realver
+  cmake \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   .
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_realver
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 "resources/appicon.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/scantailor.svg"
+  install -Dm0644 "$srcdir/scantailor.desktop" 
"$pkgdir/usr/share/applications/scantailor.desktop"
+}

Deleted: scantailor.desktop
===
--- scantailor.desktop  2016-04-21 10:44:16 UTC (rev 171497)
+++ scantailor.desktop  2016-04-21 10:49:06 UTC (rev 171498)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=Scan Tailor
-Comment=An interactive post-processing tool for scanned pages.
-Icon=/usr/share/icons/hicolor/scalable/apps/scantailor.svg
-Exec=scantailor %u
-TryExec=scantailor
-Terminal=false
-Type=Application
-StartupNotify=true
-Categories=Graphics;
-MimeType=image/png;image/tif;image/jpeg

Copied: scantailor/repos/community-x86_64/scantailor.desktop (from rev 171497, 
scantailor/trunk/scantailor.desktop)
===
--- scantailor.desktop  (rev 0)
+++ scantailor.desktop  2016-04-21 10:49:06 UTC (rev 171498)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Scan Tailor
+Comment=An interactive post-processing tool for scanned pages.
+Icon=/usr/share/icons/hicolor/scalable/apps/scantailor.svg
+Exec=scantailor %u
+TryExec=scantailor
+Terminal=false
+Type=Application
+StartupNotify=true
+Categories=Graphics;
+MimeType=image/png;image/tif;image/jpeg

Deleted: scantailor.install
===
--- scantailor.install  2016-04-21 

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

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:44:06
  Author: spupykin
Revision: 171496

upgpkg: scantailor 0.9.12-1

upd

Modified:
  scantailor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 10:43:35 UTC (rev 171495)
+++ PKGBUILD2016-04-21 10:44:06 UTC (rev 171496)
@@ -3,13 +3,13 @@
 # Contributor: Denis Terskov aka neurosurgeon 
 
 pkgname=scantailor
-pkgver=0.9.11.1
-pkgrel=5
+pkgver=0.9.12
+pkgrel=1
 _realver=EXPERIMENTAL_2015_10_27
 pkgdesc="Interactive post-processing tool for scanned pages"
 arch=(i686 x86_64)
 url="http://scantailor.org/;
-license="GPL"
+license=("GPL")
 depends=('qt5-base' 'libtiff' 'hicolor-icon-theme' 'desktop-file-utils')
 makedepends=('cmake' 'qt5-tools' 'eigen' 'boost')
 install=scantailor.install


[arch-commits] Commit in scantailor/repos/community-i686 (6 files)

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:44:16
  Author: spupykin
Revision: 171497

archrelease: copy trunk to community-i686

Added:
  scantailor/repos/community-i686/PKGBUILD
(from rev 171496, scantailor/trunk/PKGBUILD)
  scantailor/repos/community-i686/scantailor.desktop
(from rev 171496, scantailor/trunk/scantailor.desktop)
  scantailor/repos/community-i686/scantailor.install
(from rev 171496, scantailor/trunk/scantailor.install)
Deleted:
  scantailor/repos/community-i686/PKGBUILD
  scantailor/repos/community-i686/scantailor.desktop
  scantailor/repos/community-i686/scantailor.install

+
 PKGBUILD   |   70 +--
 scantailor.desktop |   22 
 scantailor.install |   26 +-
 3 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 10:44:06 UTC (rev 171496)
+++ PKGBUILD2016-04-21 10:44:16 UTC (rev 171497)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Denis Terskov aka neurosurgeon 
-
-pkgname=scantailor
-pkgver=0.9.11.1
-pkgrel=5
-_realver=EXPERIMENTAL_2015_10_27
-pkgdesc="Interactive post-processing tool for scanned pages"
-arch=(i686 x86_64)
-url="http://scantailor.org/;
-license="GPL"
-depends=('qt5-base' 'libtiff' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('cmake' 'qt5-tools' 'eigen' 'boost')
-install=scantailor.install
-source=($pkgname-$_realver.tar.gz::https://github.com/Tulon/$pkgname/archive/$_realver.tar.gz
-scantailor.desktop)
-md5sums=('1638dec878e9f35e9c0af1ab80dd'
- '7fdbdef6167d124762421ec99a98f8de')
-
-build() {
-  cd $srcdir/$pkgname-$_realver
-  cmake \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   .
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$_realver
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 "resources/appicon.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/scantailor.svg"
-  install -Dm0644 "$srcdir/scantailor.desktop" 
"$pkgdir/usr/share/applications/scantailor.desktop"
-}

Copied: scantailor/repos/community-i686/PKGBUILD (from rev 171496, 
scantailor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 10:44:16 UTC (rev 171497)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Denis Terskov aka neurosurgeon 
+
+pkgname=scantailor
+pkgver=0.9.12
+pkgrel=1
+_realver=EXPERIMENTAL_2015_10_27
+pkgdesc="Interactive post-processing tool for scanned pages"
+arch=(i686 x86_64)
+url="http://scantailor.org/;
+license=("GPL")
+depends=('qt5-base' 'libtiff' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('cmake' 'qt5-tools' 'eigen' 'boost')
+install=scantailor.install
+source=($pkgname-$_realver.tar.gz::https://github.com/Tulon/$pkgname/archive/$_realver.tar.gz
+scantailor.desktop)
+md5sums=('1638dec878e9f35e9c0af1ab80dd'
+ '7fdbdef6167d124762421ec99a98f8de')
+
+build() {
+  cd $srcdir/$pkgname-$_realver
+  cmake \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   .
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_realver
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 "resources/appicon.svg" 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/scantailor.svg"
+  install -Dm0644 "$srcdir/scantailor.desktop" 
"$pkgdir/usr/share/applications/scantailor.desktop"
+}

Deleted: scantailor.desktop
===
--- scantailor.desktop  2016-04-21 10:44:06 UTC (rev 171496)
+++ scantailor.desktop  2016-04-21 10:44:16 UTC (rev 171497)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=Scan Tailor
-Comment=An interactive post-processing tool for scanned pages.
-Icon=/usr/share/icons/hicolor/scalable/apps/scantailor.svg
-Exec=scantailor %u
-TryExec=scantailor
-Terminal=false
-Type=Application
-StartupNotify=true
-Categories=Graphics;
-MimeType=image/png;image/tif;image/jpeg

Copied: scantailor/repos/community-i686/scantailor.desktop (from rev 171496, 
scantailor/trunk/scantailor.desktop)
===
--- scantailor.desktop  (rev 0)
+++ scantailor.desktop  2016-04-21 10:44:16 UTC (rev 171497)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Scan Tailor
+Comment=An interactive post-processing tool for scanned pages.
+Icon=/usr/share/icons/hicolor/scalable/apps/scantailor.svg
+Exec=scantailor %u
+TryExec=scantailor
+Terminal=false
+Type=Application
+StartupNotify=true
+Categories=Graphics;
+MimeType=image/png;image/tif;image/jpeg

Deleted: scantailor.install
===
--- scantailor.install  2016-04-21 10:44:06 UTC (rev 

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

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:43:35
  Author: spupykin
Revision: 171495

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

Added:
  squid/repos/community-i686/PKGBUILD
(from rev 171494, squid/trunk/PKGBUILD)
  squid/repos/community-i686/squid-rotate.service
(from rev 171494, squid/trunk/squid-rotate.service)
  squid/repos/community-i686/squid-rotate.timer
(from rev 171494, squid/trunk/squid-rotate.timer)
  squid/repos/community-i686/squid.install
(from rev 171494, squid/trunk/squid.install)
  squid/repos/community-i686/squid.pam
(from rev 171494, squid/trunk/squid.pam)
  squid/repos/community-i686/squid.service
(from rev 171494, squid/trunk/squid.service)
  squid/repos/community-i686/squid.sysusers
(from rev 171494, squid/trunk/squid.sysusers)
  squid/repos/community-i686/squid.tmpfiles
(from rev 171494, squid/trunk/squid.tmpfiles)
  squid/repos/community-x86_64/PKGBUILD
(from rev 171494, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid-rotate.service
(from rev 171494, squid/trunk/squid-rotate.service)
  squid/repos/community-x86_64/squid-rotate.timer
(from rev 171494, squid/trunk/squid-rotate.timer)
  squid/repos/community-x86_64/squid.install
(from rev 171494, squid/trunk/squid.install)
  squid/repos/community-x86_64/squid.pam
(from rev 171494, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.service
(from rev 171494, squid/trunk/squid.service)
  squid/repos/community-x86_64/squid.sysusers
(from rev 171494, squid/trunk/squid.sysusers)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 171494, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-i686/PKGBUILD
  squid/repos/community-i686/squid-rotate.service
  squid/repos/community-i686/squid-rotate.timer
  squid/repos/community-i686/squid.install
  squid/repos/community-i686/squid.pam
  squid/repos/community-i686/squid.service
  squid/repos/community-i686/squid.sysusers
  squid/repos/community-i686/squid.tmpfiles
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid-rotate.service
  squid/repos/community-x86_64/squid-rotate.timer
  squid/repos/community-x86_64/squid.install
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.service
  squid/repos/community-x86_64/squid.sysusers
  squid/repos/community-x86_64/squid.tmpfiles

---+
 /PKGBUILD |  212 
 /squid-rotate.service |   18 ++
 /squid-rotate.timer   |   14 ++
 /squid.install|   24 +++
 /squid.pam|8 +
 /squid.service|   26 +++
 /squid.sysusers   |2 
 /squid.tmpfiles   |2 
 community-i686/PKGBUILD   |  106 
 community-i686/squid-rotate.service   |9 -
 community-i686/squid-rotate.timer |7 -
 community-i686/squid.install  |   12 -
 community-i686/squid.pam  |4 
 community-i686/squid.service  |   13 -
 community-i686/squid.sysusers |1 
 community-i686/squid.tmpfiles |1 
 community-x86_64/PKGBUILD |  106 
 community-x86_64/squid-rotate.service |9 -
 community-x86_64/squid-rotate.timer   |7 -
 community-x86_64/squid.install|   12 -
 community-x86_64/squid.pam|4 
 community-x86_64/squid.service|   13 -
 community-x86_64/squid.sysusers   |1 
 community-x86_64/squid.tmpfiles   |1 
 24 files changed, 306 insertions(+), 306 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 10:43:02 UTC (rev 171494)
+++ community-i686/PKGBUILD 2016-04-21 10:43:35 UTC (rev 171495)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Mark Coolen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=squid
-pkgver=3.5.16
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'perl' 'libltdl' 'libcap' 'nettle')
-makedepends=('libcap' 'krb5')
-optdepends=('gnutls: for squidclient')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-   'etc/squid/cachemgr.conf'
-   'etc/squid/errorpage.css'
-   'etc/squid/mime.conf')
-install=$pkgname.install
-source=("http://www.squid-cache.org/Versions/v3/3.5/$pkgname-$pkgver.tar.xz;
-'squid.pam'
-'squid.service'
-'squid.tmpfiles'
-'squid.sysusers'
-'squid-rotate.service'
-'squid-rotate.timer')
-md5sums=('557b1011a880ec3291797367e2ca4c45'
- '270977cdd9b47ef44c0c427ab9034777'
- 

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

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:42:40
  Author: spupykin
Revision: 171492

upgpkg: roundcubemail 1.2rc-1

upd

Modified:
  roundcubemail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 10:40:33 UTC (rev 171491)
+++ PKGBUILD2016-04-21 10:42:40 UTC (rev 171492)
@@ -2,9 +2,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=roundcubemail
-pkgver=1.2beta
-_commit=332ffef199745f1ddb3f3ad3e5618a4675b929bb
-pkgrel=3
+pkgver=1.2rc
+pkgrel=1
 pkgdesc="A PHP web-based mail client"
 arch=('any')
 url="http://www.roundcube.net;
@@ -16,14 +15,14 @@
'etc/webapps/roundcubemail/apache.conf')
 install=roundcubemail.install
 options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver-${_commit}.tar.gz::https://github.com/roundcube/roundcubemail/archive/${_commit}.tar.gz;
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
apache.conf)
-md5sums=('391339848be6432a976e0af60989c298'
+md5sums=('b12e98b2f3cf19419793e477516c8bba'
  'f11b17e2a80b383cde4af963fb307541')
 
 prepare() {
-  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
   sed -i \
 -e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
 -e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
@@ -38,7 +37,7 @@
   mkdir -p ${pkgdir}/usr/share/webapps
   mkdir -p ${pkgdir}/var/log
   cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
   cd roundcubemail
 
   mv .htaccess $pkgdir/etc/webapps/roundcubemail/


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

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:43:02
  Author: spupykin
Revision: 171494

upgpkg: squid 3.5.17-1

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 10:42:55 UTC (rev 171493)
+++ PKGBUILD2016-04-21 10:43:02 UTC (rev 171494)
@@ -5,7 +5,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=squid
-pkgver=3.5.16
+pkgver=3.5.17
 pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
@@ -27,7 +27,7 @@
 'squid.sysusers'
 'squid-rotate.service'
 'squid-rotate.timer')
-md5sums=('557b1011a880ec3291797367e2ca4c45'
+md5sums=('2dc73cc01e77b1bd16d9070780ae79b1'
  '270977cdd9b47ef44c0c427ab9034777'
  'ceeb57c69ebb165676219222f109a24e'
  'd243da117c1aee03c0cc6052f023a380'


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

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:42:55
  Author: spupykin
Revision: 171493

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 171492, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 171492, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 171492, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  117 +++-
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 72 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 10:42:40 UTC (rev 171492)
+++ PKGBUILD2016-04-21 10:42:55 UTC (rev 171493)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2beta
-_commit=332ffef199745f1ddb3f3ad3e5618a4675b929bb
-pkgrel=3
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver-${_commit}.tar.gz::https://github.com/roundcube/roundcubemail/archive/${_commit}.tar.gz;
-   apache.conf)
-md5sums=('391339848be6432a976e0af60989c298'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 171492, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 10:42:55 UTC (rev 171493)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2rc
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('b12e98b2f3cf19419793e477516c8bba'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 11:28:25
  Author: ronald
Revision: 265805

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

Added:
  net-tools/repos/testing-i686/
  net-tools/repos/testing-i686/Makefile.patch
(from rev 265804, net-tools/trunk/Makefile.patch)
  net-tools/repos/testing-i686/PKGBUILD
(from rev 265804, net-tools/trunk/PKGBUILD)
  net-tools/repos/testing-x86_64/
  net-tools/repos/testing-x86_64/Makefile.patch
(from rev 265804, net-tools/trunk/Makefile.patch)
  net-tools/repos/testing-x86_64/PKGBUILD
(from rev 265804, net-tools/trunk/PKGBUILD)

---+
 testing-i686/Makefile.patch   |   17 +
 testing-i686/PKGBUILD |   40 
 testing-x86_64/Makefile.patch |   17 +
 testing-x86_64/PKGBUILD   |   40 
 4 files changed, 114 insertions(+)

Copied: net-tools/repos/testing-i686/Makefile.patch (from rev 265804, 
net-tools/trunk/Makefile.patch)
===
--- testing-i686/Makefile.patch (rev 0)
+++ testing-i686/Makefile.patch 2016-04-21 09:28:25 UTC (rev 265805)
@@ -0,0 +1,17 @@
+--- Makefile.old   2012-08-07 22:07:58.235437087 +0200
 Makefile   2012-08-07 22:10:21.192104345 +0200
+@@ -239,12 +239,12 @@
+   install -m 0755 -d ${BASEDIR}/bin
+   install -m 0755 arp${BASEDIR}/sbin
+   install -m 0755 hostname   ${BASEDIR}/bin
+-  install -m 0755 ifconfig   ${BASEDIR}/bin
++  install -m 0755 ifconfig   ${BASEDIR}/sbin
+   install -m 0755 nameif ${BASEDIR}/sbin
+   install -m 0755 netstat${BASEDIR}/bin
+   install -m 0755 plipconfig $(BASEDIR)/sbin
+   install -m 0755 rarp   ${BASEDIR}/sbin
+-  install -m 0755 route  ${BASEDIR}/bin
++  install -m 0755 route  ${BASEDIR}/sbin
+   install -m 0755 slattach   $(BASEDIR)/sbin
+ ifeq ($(HAVE_IP_TOOLS),1)
+   install -m 0755 ipmaddr$(BASEDIR)/sbin

Copied: net-tools/repos/testing-i686/PKGBUILD (from rev 265804, 
net-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-21 09:28:25 UTC (rev 265805)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=net-tools
+pkgver=1.60.20160215git
+pkgrel=1
+pkgdesc="Configuration tools for Linux networking"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://net-tools.sourceforge.net/;
+depends=('glibc')
+makedepends=('git')
+# use git snapshot currently prefered over release
+source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=bd8bce")
+options=(!makeflags)
+sha1sums=('SKIP')
+
+prepare() {
+  sed -i "s#/sbin#/bin#" ${srcdir}/${pkgname}/Makefile
+  sed -i "s#/usr##" ${srcdir}/${pkgname}/man/Makefile
+}
+
+build() {
+  cd ${srcdir}/${pkgname}
+  yes "" | make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+  make DESTDIR=${pkgdir}/usr update
+
+  # the following is provided by yp-tools
+  rm "${pkgdir}"/usr/bin/{nis,yp}domainname
+  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
+
+  # hostname is provided by inetutils
+  rm "${pkgdir}"/usr/bin/{hostname,dnsdomainname,domainname}
+  rm -rf "${pkgdir}"/usr/share/man/man1
+}

Copied: net-tools/repos/testing-x86_64/Makefile.patch (from rev 265804, 
net-tools/trunk/Makefile.patch)
===
--- testing-x86_64/Makefile.patch   (rev 0)
+++ testing-x86_64/Makefile.patch   2016-04-21 09:28:25 UTC (rev 265805)
@@ -0,0 +1,17 @@
+--- Makefile.old   2012-08-07 22:07:58.235437087 +0200
 Makefile   2012-08-07 22:10:21.192104345 +0200
+@@ -239,12 +239,12 @@
+   install -m 0755 -d ${BASEDIR}/bin
+   install -m 0755 arp${BASEDIR}/sbin
+   install -m 0755 hostname   ${BASEDIR}/bin
+-  install -m 0755 ifconfig   ${BASEDIR}/bin
++  install -m 0755 ifconfig   ${BASEDIR}/sbin
+   install -m 0755 nameif ${BASEDIR}/sbin
+   install -m 0755 netstat${BASEDIR}/bin
+   install -m 0755 plipconfig $(BASEDIR)/sbin
+   install -m 0755 rarp   ${BASEDIR}/sbin
+-  install -m 0755 route  ${BASEDIR}/bin
++  install -m 0755 route  ${BASEDIR}/sbin
+   install -m 0755 slattach   $(BASEDIR)/sbin
+ ifeq ($(HAVE_IP_TOOLS),1)
+   install -m 0755 ipmaddr$(BASEDIR)/sbin

Copied: net-tools/repos/testing-x86_64/PKGBUILD (from rev 265804, 
net-tools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-04-21 09:28:25 UTC (rev 265805)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=net-tools

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 11:28:18
  Author: ronald
Revision: 265804

upgpkg: net-tools 1.60.20160215git-1

update to current head

Modified:
  net-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 09:22:26 UTC (rev 265803)
+++ PKGBUILD2016-04-21 09:28:18 UTC (rev 265804)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=net-tools
-pkgver=1.60.20130531git
+pkgver=1.60.20160215git
 pkgrel=1
 pkgdesc="Configuration tools for Linux networking"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('glibc')
 makedepends=('git')
 # use git snapshot currently prefered over release
-source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=6a14c03f")
+source=("net-tools::git://git.code.sf.net/p/net-tools/code#commit=bd8bce")
 options=(!makeflags)
 sha1sums=('SKIP')
 


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 11:22:17
  Author: ronald
Revision: 265802

upgpkg: bdf-unifont 8.0.01-1

update to 8.0.01

Modified:
  bdf-unifont/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 09:12:39 UTC (rev 265801)
+++ PKGBUILD2016-04-21 09:22:17 UTC (rev 265802)
@@ -2,8 +2,8 @@
 # Maintainer: Ronald van Haren 
 
 pkgname=bdf-unifont
-pkgver=7.0.06
-pkgrel=2
+pkgver=8.0.01
+pkgrel=1
 pkgdesc="GNU Unifont Glyphs"
 arch=('any')
 license=('custom' 'GPL2')
@@ -12,7 +12,7 @@
 install=unifont.install
 
source=("http://unifoundry.com/pub/unifont-${pkgver}/font-builds/unifont-${pkgver}.bdf.gz"{,.sig}
 'LICENSE')
 validpgpkeys=('95D2E9AB8740D8046387FD151A09227B1F435A33') # Paul Hardy
-sha1sums=('0c3f60246c87870754abf6fdddf5d2df2ca357bc'
+sha1sums=('f2b0b06d7d0225157f06660666454e0dcf7100f5'
   'SKIP'
   'e4ba558b4af9b8ab0f129c1f1788e168e412b9be')
 


[arch-commits] Commit in bdf-unifont/repos/extra-any (6 files)

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 11:22:26
  Author: ronald
Revision: 265803

archrelease: copy trunk to extra-any

Added:
  bdf-unifont/repos/extra-any/LICENSE
(from rev 265802, bdf-unifont/trunk/LICENSE)
  bdf-unifont/repos/extra-any/PKGBUILD
(from rev 265802, bdf-unifont/trunk/PKGBUILD)
  bdf-unifont/repos/extra-any/unifont.install
(from rev 265802, bdf-unifont/trunk/unifont.install)
Deleted:
  bdf-unifont/repos/extra-any/LICENSE
  bdf-unifont/repos/extra-any/PKGBUILD
  bdf-unifont/repos/extra-any/unifont.install

-+
 LICENSE |  120 +++---
 PKGBUILD|   46 ++--
 unifont.install |   30 ++---
 3 files changed, 98 insertions(+), 98 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-04-21 09:22:17 UTC (rev 265802)
+++ LICENSE 2016-04-21 09:22:26 UTC (rev 265803)
@@ -1,60 +0,0 @@
-CENSE

-Roman Czyborra released his work (Perl scripts and font .hex files)
-under the following terms:
-
- All of my works you find here are freeware. You may
- freely copy, use, quote, modify or redistribute them
- as long as you properly attribute my contribution and
- have given a quick thought about whether Roman might
- perhaps be interested to read what you did with his
- stuff. Horizontal rules don't apply.
-
-David Starner released what in this package is named "hex2bdf-split"
-under the same license as Roman Czyborra's work.
-
-License for all of Paul Hardy's work (except "johab2ucs2" and
-"blanks.hex", mentioned separately), Makefile and debian/ mods
-by Anthony Fok, and modified software from Luis Gonzalez Miranda
-(with permission granted to Paul Hardy):
-
- These are released under the terms of the GNU General Public
- License version 2, or (at your option) a later version.
-
-License for Fonts:
-
- Any fonts using glyphs from the "wqy-cjk.hex" file (including
- the default TrueType font) are bound by the terms of the Wen
- Quan Yi font license.  Those fonts are released under the terms
- of the GNU General Public License (GPL) versionn 2, with the
- exception that embedding the font in a document does not by
- itself bind that document to the terms of the GNU GPL.
-
- Any fonts that do not use glyphs from the "wqy-cjk.hex" file
- fall under the above "License for all of Roman Czyborra's work".
-
- The fonts in "./font/precompiled" do use wqy-cjk.hex, and so
- are licensed under the GNU GPL version 2, with the exception
- that embedding the font in a document does not in itself bind
- that document to the terms of the GNU GPL.  The following
- paragraphs explaining the exception is taken from the Wen
- Quan Yi font distribution:
-
-  ** GPL v2.0 license with font embedding exception:
-
-  As a special exception, if you create a document which
-  uses this font, and embed this font or unaltered portions
-  of this font into the document, this font does not by
-  itself cause the resulting document to be covered by
-  the GNU General Public License. This exception does not
-  however invalidate any other reasons why the document
-  might be covered by the GNU General Public License.
-  If you modify this font, you may extend this exception
-  to your version of the font, but you are not obligated
-  to do so. If you do not wish to do so, delete this
-  exception statement from your version.
-
-License for "blanks.hex":
-
- There is one exception to the above rules: Paul Hardy earlier
- released the "blanks.hex" file into the public domain.

Copied: bdf-unifont/repos/extra-any/LICENSE (from rev 265802, 
bdf-unifont/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-04-21 09:22:26 UTC (rev 265803)
@@ -0,0 +1,60 @@
+CENSE
+---
+Roman Czyborra released his work (Perl scripts and font .hex files)
+under the following terms:
+
+ All of my works you find here are freeware. You may
+ freely copy, use, quote, modify or redistribute them
+ as long as you properly attribute my contribution and
+ have given a quick thought about whether Roman might
+ perhaps be interested to read what you did with his
+ stuff. Horizontal rules don't apply.
+
+David Starner released what in this package is named "hex2bdf-split"
+under the same license as Roman Czyborra's work.
+
+License for all of Paul Hardy's work (except "johab2ucs2" and
+"blanks.hex", mentioned separately), Makefile and debian/ mods
+by Anthony Fok, and modified software from Luis Gonzalez Miranda
+(with permission granted to Paul Hardy):
+
+ These are released under the terms of the GNU General Public
+ License version 2, or (at your option) a later version.

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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 11:12:39
  Author: arojas
Revision: 265801

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-21 09:12:03 UTC (rev 265800)
+++ extra-i686/PKGBUILD 2016-04-21 09:12:39 UTC (rev 265801)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Fabian Schoelzel 
-# Contributor: funkyou 
-# Contributor: tardo 
-# Contributor: Stefan Husmann 
-# Contributor: Gustavo Alvarez 
-
-pkgbase=mlt
-pkgname=(mlt mlt-python-bindings)
-pkgver=6.0.0
-pkgrel=1
-pkgdesc="An open source multimedia framework"
-arch=(i686 x86_64)
-url="http://www.mltframework.org;
-license=(GPL)
-makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg jack libexif python2 swig movit eigen)
-source=("https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;)
-md5sums=('df4909bbf3dacb1186b5c1bd2aeef568')
-
-build() {
-  # mlt
-  cd mlt-$pkgver
-
-  msg "SSE2=$SSE2"
-  ./configure --prefix=/usr \
-   --avformat-swscale \
-   --enable-gpl --enable-gpl3 \
-   --qt-libdir=/usr/lib --qt-includedir=/usr/include/qt
-  make
-
-  # mlt python bindings
-  cd src/swig/python
-  sed -i 's_path=`which python_path=`which python2_' build
-  sed -i 's_`python -c_`python2 -c_' build
-  sed -i 's#python-config#python2-config#' build
-  ./build
-}
-
-package_mlt() {
-  optdepends=('sdl_image: for SDL plugin'
-   'libsamplerate: for libavresample plugin'
-   'sox: for SOX (Audio Swiss Army Knife) plugin'
-   'ffmpeg: for ffmpeg plugin'
-   'vid.stab: for video stabilize plugin'
-   'gtk2: Gtk plugin'
-   'qt5-svg: for Qt5 plugins'
-   'jack: for JACK sound output plugin'
-   'libexif: for auto rotate plugin'
-   'frei0r-plugins: for additional effects'
-   'movit: opengl plugin')
-  conflicts=('mlt++<=0.3.8')
-
-  cd mlt-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-package_mlt-python-bindings() {
-  depends=(python2 mlt)
-
-  cd "$srcdir/mlt-$pkgver/src/swig/python"
-  mkdir -p "$pkgdir/usr/lib/python2.7/"
-  install -m755 mlt.py "$pkgdir/usr/lib/python2.7/"
-  install -m755 _mlt.so "$pkgdir/usr/lib/python2.7/"
-  install -m755 mlt_wrap.o "$pkgdir/usr/lib/python2.7/"
-}

Copied: mlt/repos/extra-i686/PKGBUILD (from rev 265800, mlt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-21 09:12:39 UTC (rev 265801)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Fabian Schoelzel 
+# Contributor: funkyou 
+# Contributor: tardo 
+# Contributor: Stefan Husmann 
+# Contributor: Gustavo Alvarez 
+
+pkgbase=mlt
+pkgname=(mlt mlt-python-bindings)
+pkgver=6.2.0
+pkgrel=1
+pkgdesc="An open source multimedia framework"
+arch=(i686 x86_64)
+url="http://www.mltframework.org;
+license=(GPL)
+makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg jack libexif python2 swig movit eigen)
+source=("https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;)
+md5sums=('a1c70e535c61dd9242ac9f6ae58899d0')
+
+build() {
+  # mlt
+  cd mlt-$pkgver
+
+  msg "SSE2=$SSE2"
+  ./configure --prefix=/usr \
+   --avformat-swscale \
+   --enable-gpl --enable-gpl3 \
+   --qt-libdir=/usr/lib --qt-includedir=/usr/include/qt
+  make
+
+  # mlt python bindings
+  cd src/swig/python
+  sed -i 's_path=`which python_path=`which python2_' build
+  sed -i 's_`python -c_`python2 -c_' build
+  sed -i 's#python-config#python2-config#' build
+  ./build
+}
+
+package_mlt() {
+  optdepends=('sdl_image: for SDL plugin'
+   'libsamplerate: for libavresample plugin'
+   'sox: for SOX (Audio Swiss Army Knife) plugin'
+   'ffmpeg: for ffmpeg plugin'
+   'vid.stab: for video stabilize plugin'
+   'gtk2: Gtk plugin'
+   'qt5-svg: for Qt5 plugins'
+   'jack: for JACK sound output plugin'
+'ladspa: for 

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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 11:12:03
  Author: arojas
Revision: 265800

Update to 6.2.0

Modified:
  mlt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 08:30:22 UTC (rev 265799)
+++ PKGBUILD2016-04-21 09:12:03 UTC (rev 265800)
@@ -9,7 +9,7 @@
 
 pkgbase=mlt
 pkgname=(mlt mlt-python-bindings)
-pkgver=6.0.0
+pkgver=6.2.0
 pkgrel=1
 pkgdesc="An open source multimedia framework"
 arch=(i686 x86_64)
@@ -17,7 +17,7 @@
 license=(GPL)
 makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg jack libexif python2 swig movit eigen)
 source=("https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;)
-md5sums=('df4909bbf3dacb1186b5c1bd2aeef568')
+md5sums=('a1c70e535c61dd9242ac9f6ae58899d0')
 
 build() {
   # mlt
@@ -47,6 +47,7 @@
'gtk2: Gtk plugin'
'qt5-svg: for Qt5 plugins'
'jack: for JACK sound output plugin'
+'ladspa: for LADSPA plugins'
'libexif: for auto rotate plugin'
'frei0r-plugins: for additional effects'
'movit: opengl plugin')


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 10:30:14
  Author: ronald
Revision: 265798

upgpkg: imlib2 1.4.8-1

update to 1.4.8

Modified:
  imlib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 08:25:00 UTC (rev 265797)
+++ PKGBUILD2016-04-21 08:30:14 UTC (rev 265798)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=imlib2
-pkgver=1.4.7
+pkgver=1.4.8
 pkgrel=1
 pkgdesc="Library that does image file loading and saving as well as rendering, 
manipulation, arbitrary polygon support"
 url="http://sourceforge.net/projects/enlightenment/;
@@ -12,7 +12,7 @@
 license=('BSD')
 depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 
'libjpeg-turbo')
 
source=(http://downloads.sourceforge.net/enlightenment/$pkgname-$pkgver.tar.bz2)
-sha1sums=('0ed225afbbee8e990c655cf13ed802bda8a5cd8a')
+sha1sums=('09759f9cd0bb530a738032d06b29edf0038f2052')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
@@ -31,6 +31,11 @@
   make
 }
 
+check() {
+  cd "${pkgname}-${pkgver}"
+  make check
+}
+
 package() {
   cd "${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 10:30:22
  Author: ronald
Revision: 265799

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

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

---+
 /PKGBUILD |   90 
 extra-i686/PKGBUILD   |   40 -
 extra-x86_64/PKGBUILD |   40 -
 3 files changed, 90 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-21 08:30:14 UTC (rev 265798)
+++ extra-i686/PKGBUILD 2016-04-21 08:30:22 UTC (rev 265799)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Arjan Timmerman 
-# Contributor: Tom Newsom 
-
-pkgname=imlib2
-pkgver=1.4.7
-pkgrel=1
-pkgdesc="Library that does image file loading and saving as well as rendering, 
manipulation, arbitrary polygon support"
-url="http://sourceforge.net/projects/enlightenment/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 
'libjpeg-turbo')
-source=(http://downloads.sourceforge.net/enlightenment/$pkgname-$pkgver.tar.bz2)
-sha1sums=('0ed225afbbee8e990c655cf13ed802bda8a5cd8a')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  sed -i 's/@my_libs@//' imlib2-config.in
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  [ $CARCH = "i686" ] && EXTRAOPTS="--enable-mmx"
-  [ $CARCH = "x86_64" ] && EXTRAOPTS="--enable-amd64"
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc/imlib2 \
-  --x-libraries=/usr/lib $EXTRAOPTS
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # Install License
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: imlib2/repos/extra-i686/PKGBUILD (from rev 265798, 
imlib2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-21 08:30:22 UTC (rev 265799)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Arjan Timmerman 
+# Contributor: Tom Newsom 
+
+pkgname=imlib2
+pkgver=1.4.8
+pkgrel=1
+pkgdesc="Library that does image file loading and saving as well as rendering, 
manipulation, arbitrary polygon support"
+url="http://sourceforge.net/projects/enlightenment/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 
'libjpeg-turbo')
+source=(http://downloads.sourceforge.net/enlightenment/$pkgname-$pkgver.tar.bz2)
+sha1sums=('09759f9cd0bb530a738032d06b29edf0038f2052')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  sed -i 's/@my_libs@//' imlib2-config.in
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  [ $CARCH = "i686" ] && EXTRAOPTS="--enable-mmx"
+  [ $CARCH = "x86_64" ] && EXTRAOPTS="--enable-amd64"
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc/imlib2 \
+  --x-libraries=/usr/lib $EXTRAOPTS
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-21 08:30:14 UTC (rev 265798)
+++ extra-x86_64/PKGBUILD   2016-04-21 08:30:22 UTC (rev 265799)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Arjan Timmerman 
-# Contributor: Tom Newsom 
-
-pkgname=imlib2
-pkgver=1.4.7
-pkgrel=1
-pkgdesc="Library that does image file loading and saving as well as rendering, 
manipulation, arbitrary polygon support"
-url="http://sourceforge.net/projects/enlightenment/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 
'libjpeg-turbo')
-source=(http://downloads.sourceforge.net/enlightenment/$pkgname-$pkgver.tar.bz2)
-sha1sums=('0ed225afbbee8e990c655cf13ed802bda8a5cd8a')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  sed -i 's/@my_libs@//' imlib2-config.in
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  [ $CARCH = "i686" ] && EXTRAOPTS="--enable-mmx"
-  [ $CARCH = "x86_64" ] && EXTRAOPTS="--enable-amd64"
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc/imlib2 \
-  --x-libraries=/usr/lib $EXTRAOPTS
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # Install License
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: imlib2/repos/extra-x86_64/PKGBUILD (from rev 

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 10:25:00
  Author: ronald
Revision: 265797

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

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

---+
 /PKGBUILD |   74 
 /wxmaxima.install |   52 
 extra-i686/PKGBUILD   |   32 -
 extra-i686/wxmaxima.install   |   26 --
 extra-x86_64/PKGBUILD |   32 -
 extra-x86_64/wxmaxima.install |   26 --
 6 files changed, 126 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-21 08:24:49 UTC (rev 265796)
+++ extra-i686/PKGBUILD 2016-04-21 08:25:00 UTC (rev 265797)
@@ -1,32 +0,0 @@
- $Id: PKGBUILD,v 1.10 2008/05/13 19:03:39 ronald Exp $
-# Maintainer: Ronald van Haren 
-# Contributor: Angelo Theodorou 
-# Contributor: Vinay S Shastry 
-
-pkgname=wxmaxima
-pkgver=15.08.2
-pkgrel=2
-pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
-arch=('i686' 'x86_64')
-url="http://wxmaxima.sourceforge.net/;
-license=('GPL2')
-depends=('maxima' 'libxml2' 'wxgtk' 'shared-mime-info' 'desktop-file-utils')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-install=wxmaxima.install
-sha1sums=('e365334527759a8e483f886bd85112d42791f9c2')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  export WX_CONFIG_PATH=/usr/bin/wx-config
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install 
-
-  # Fix category in .desktop file
-  sed -i '/Categories=/c\Categories=Science;Math;' data/wxMaxima.desktop
-}

Copied: wxmaxima/repos/extra-i686/PKGBUILD (from rev 265796, 
wxmaxima/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-21 08:25:00 UTC (rev 265797)
@@ -0,0 +1,37 @@
+ $Id: PKGBUILD,v 1.10 2008/05/13 19:03:39 ronald Exp $
+# Maintainer: Ronald van Haren 
+# Contributor: Angelo Theodorou 
+# Contributor: Vinay S Shastry 
+
+pkgname=wxmaxima
+pkgver=16.04.0
+pkgrel=1
+pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
+arch=('i686' 'x86_64')
+url="http://wxmaxima.sourceforge.net/;
+license=('GPL2')
+depends=('maxima' 'libxml2' 'wxgtk' 'shared-mime-info' 'desktop-file-utils')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+install=wxmaxima.install
+sha1sums=('5a2c6e1755e12b565eeb841e4a7d07aef3ada679')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export WX_CONFIG_PATH=/usr/bin/wx-config
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install 
+
+  # Fix category in .desktop file
+  sed -i '/Categories=/c\Categories=Science;Math;' data/wxMaxima.desktop
+}

Deleted: extra-i686/wxmaxima.install
===
--- extra-i686/wxmaxima.install 2016-04-21 08:24:49 UTC (rev 265796)
+++ extra-i686/wxmaxima.install 2016-04-21 08:25:00 UTC (rev 265797)
@@ -1,26 +0,0 @@
-infodir=/usr/share/info
-filelist=(wxmaxima.info.gz)
-
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime
-
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove () {
-  update-desktop-database -q
-  update-mime-database usr/share/mime
-
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-

Copied: wxmaxima/repos/extra-i686/wxmaxima.install (from rev 265796, 
wxmaxima/trunk/wxmaxima.install)
===
--- extra-i686/wxmaxima.install (rev 0)
+++ extra-i686/wxmaxima.install 2016-04-21 08:25:00 UTC (rev 265797)
@@ -0,0 +1,26 @@
+infodir=/usr/share/info
+filelist=(wxmaxima.info.gz)
+
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime
+
+  for file in ${filelist[@]}; do
+install-info $infodir/$file 

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 10:24:49
  Author: ronald
Revision: 265796

upgpkg: wxmaxima 16.04.0-1

update to 16.04.0

Modified:
  wxmaxima/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 07:53:59 UTC (rev 265795)
+++ PKGBUILD2016-04-21 08:24:49 UTC (rev 265796)
@@ -4,8 +4,8 @@
 # Contributor: Vinay S Shastry 
 
 pkgname=wxmaxima
-pkgver=15.08.2
-pkgrel=2
+pkgver=16.04.0
+pkgrel=1
 pkgdesc="A wxWidgets GUI for the computer algebra system Maxima"
 arch=('i686' 'x86_64')
 url="http://wxmaxima.sourceforge.net/;
@@ -13,7 +13,7 @@
 depends=('maxima' 'libxml2' 'wxgtk' 'shared-mime-info' 'desktop-file-utils')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
 install=wxmaxima.install
-sha1sums=('e365334527759a8e483f886bd85112d42791f9c2')
+sha1sums=('5a2c6e1755e12b565eeb841e4a7d07aef3ada679')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -22,6 +22,11 @@
   make
 }
 
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 10:22:47
  Author: fyan
Revision: 171489

upgpkg: python-raven 5.13.0-1

Modified:
  python-raven/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 07:56:07 UTC (rev 171488)
+++ PKGBUILD2016-04-21 08:22:47 UTC (rev 171489)
@@ -4,7 +4,7 @@
 
 pkgbase=python-raven
 pkgname=(python-raven python2-raven)
-pkgver=5.12.0
+pkgver=5.13.0
 pkgrel=1
 pkgdesc="Python client for Sentry"
 arch=('any')


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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 10:23:09
  Author: fyan
Revision: 171490

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 08:22:47 UTC (rev 171489)
+++ PKGBUILD2016-04-21 08:23:09 UTC (rev 171490)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.12.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 171489, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 08:23:09 UTC (rev 171490)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.13.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  

[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2016-04-21 Thread Florian Pritz
Date: Thursday, April 21, 2016 @ 09:53:59
  Author: bluewind
Revision: 265795

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 265794, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 265794, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 265794, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++--
 mirrorlist |  860 +--
 upgpkg |8 
 3 files changed, 466 insertions(+), 464 deletions(-)

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


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

2016-04-21 Thread Florian Pritz
Date: Thursday, April 21, 2016 @ 09:53:55
  Author: bluewind
Revision: 265794

upgpkg: pacman-mirrorlist 20160421-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |4 +++-
 2 files changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 07:47:59 UTC (rev 265793)
+++ PKGBUILD2016-04-21 07:53:55 UTC (rev 265794)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee <d...@archlinux.org>
 
 pkgname=pacman-mirrorlist
-pkgver=20160420
+pkgver=20160421
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('a233ac0ec39094e48988aa6e3273d99e')
-sha256sums=('ab5eb98f75e3e52b9d2241b154fb5a9d4153938eaf296e8cae3e8b0c3a2ffdef')
+md5sums=('ca633056aabb12b86d07b9f9492587df')
+sha256sums=('14d14f90080b104b83b299f95082b43699545c28a70d7ff34487938bb51d2d26')

Modified: mirrorlist
===
--- mirrorlist  2016-04-21 07:47:59 UTC (rev 265793)
+++ mirrorlist  2016-04-21 07:53:55 UTC (rev 265794)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2016-04-20
+## Generated on 2016-04-21
 ##
 
 ## Worldwide
@@ -303,7 +303,9 @@
 
 ## Russia
 #Server = http://mirror.rol.ru/archlinux/$repo/os/$arch
+#Server = https://mirror.rol.ru/archlinux/$repo/os/$arch
 #Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
+#Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
 
 ## Serbia
 #Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 09:47:59
  Author: ronald
Revision: 265793

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

Added:
  maxima/repos/extra-i686/PKGBUILD
(from rev 265792, maxima/trunk/PKGBUILD)
  maxima/repos/extra-i686/maxima.desktop
(from rev 265792, maxima/trunk/maxima.desktop)
  maxima/repos/extra-i686/maxima.install
(from rev 265792, maxima/trunk/maxima.install)
  maxima/repos/extra-x86_64/PKGBUILD
(from rev 265792, maxima/trunk/PKGBUILD)
  maxima/repos/extra-x86_64/maxima.desktop
(from rev 265792, maxima/trunk/maxima.desktop)
  maxima/repos/extra-x86_64/maxima.install
(from rev 265792, maxima/trunk/maxima.install)
Deleted:
  maxima/repos/extra-i686/PKGBUILD
  maxima/repos/extra-i686/maxima.desktop
  maxima/repos/extra-i686/maxima.install
  maxima/repos/extra-x86_64/PKGBUILD
  maxima/repos/extra-x86_64/maxima.desktop
  maxima/repos/extra-x86_64/maxima.install

-+
 /PKGBUILD   |  116 ++
 /maxima.desktop |   22 +++
 /maxima.install |   38 +
 extra-i686/PKGBUILD |   53 ---
 extra-i686/maxima.desktop   |   11 ---
 extra-i686/maxima.install   |   18 --
 extra-x86_64/PKGBUILD   |   53 ---
 extra-x86_64/maxima.desktop |   11 ---
 extra-x86_64/maxima.install |   18 --
 9 files changed, 176 insertions(+), 164 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-21 07:47:42 UTC (rev 265792)
+++ extra-i686/PKGBUILD 2016-04-21 07:47:59 UTC (rev 265793)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-
-pkgname=maxima
-pkgver=5.37.3
-pkgrel=1
-pkgdesc="A sophisticated computer algebra system"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://maxima.sourceforge.net;
-depends=('sbcl=1.3.1' 'texinfo' 'sh')
-makedepends=('python2' 'emacs')
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-# needs rebuild when bash changes version
-# needs a rebuild when sbcl changes version
-options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
-install=maxima.install
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 "$pkgname.desktop")
-sha1sums=('0ddd366338e4fc9850f27f8052a52b472350d3ae'
-  '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
-
-  # help avoid (re)running makeinfo/tex
-  touch doc/info/maxima.info
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/${pkgname}.desktop" \
-   "${pkgdir}/usr/share/applications/${pkgname}.desktop"
-
-  # make sure, we have a nice icon for the desktop file at the right place ;)
-  install -d "${pkgdir}/usr/share/pixmaps/"
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-}

Copied: maxima/repos/extra-i686/PKGBUILD (from rev 265792, 
maxima/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-21 07:47:59 UTC (rev 265793)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+
+pkgname=maxima
+pkgver=5.38.0
+pkgrel=1
+pkgdesc="A sophisticated computer algebra system"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://maxima.sourceforge.net;
+depends=('sbcl=1.3.1' 'texinfo' 'sh' 'shared-mime-info')
+makedepends=('python2' 'emacs')
+optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
+# needs rebuild when bash changes version
+# needs a rebuild when sbcl changes version
+options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
+install=maxima.install
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 "$pkgname.desktop")
+sha1sums=('1cc9ba840f115ab18813dfffeab89fb68ea735ce'
+  '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct python executable to create docs
+  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
+}
+
+build() {
+  cd 

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 09:47:42
  Author: ronald
Revision: 265792

upgpkg: maxima 5.38.0-1

update to 5.38.0

Modified:
  maxima/trunk/PKGBUILD
  maxima/trunk/maxima.install

+
 PKGBUILD   |   11 ---
 maxima.install |1 +
 2 files changed, 9 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 06:58:21 UTC (rev 265791)
+++ PKGBUILD2016-04-21 07:47:42 UTC (rev 265792)
@@ -3,13 +3,13 @@
 # Contributor: Damir Perisa 
 
 pkgname=maxima
-pkgver=5.37.3
+pkgver=5.38.0
 pkgrel=1
 pkgdesc="A sophisticated computer algebra system"
 arch=('i686' 'x86_64')
 license=('GPL')
 url="http://maxima.sourceforge.net;
-depends=('sbcl=1.3.1' 'texinfo' 'sh')
+depends=('sbcl=1.3.1' 'texinfo' 'sh' 'shared-mime-info')
 makedepends=('python2' 'emacs')
 optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
 # needs rebuild when bash changes version
@@ -17,7 +17,7 @@
 options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
 install=maxima.install
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 "$pkgname.desktop")
-sha1sums=('0ddd366338e4fc9850f27f8052a52b472350d3ae'
+sha1sums=('1cc9ba840f115ab18813dfffeab89fb68ea735ce'
   '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
 
 prepare() {
@@ -38,6 +38,11 @@
   make
 }
 
+#check() {  # test 23&129 fail from rtest_taylor
+#  cd "${srcdir}/${pkgname}-${pkgver}"
+#  make check
+#}
+
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install

Modified: maxima.install
===
--- maxima.install  2016-04-21 06:58:21 UTC (rev 265791)
+++ maxima.install  2016-04-21 07:47:42 UTC (rev 265792)
@@ -5,6 +5,7 @@
   for file in ${filelist[@]}; do
 install-info $infodir/$file $infodir/dir 2> /dev/null
   done
+  update-mime-database /usr/share/mime > /dev/null
 }
 
 post_upgrade() {


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 09:46:08
  Author: arojas
Revision: 171482

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

Added:
  sagemath/repos/community-staging-i686/
  sagemath/repos/community-staging-i686/PKGBUILD
(from rev 171481, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-i686/anal.h
(from rev 171481, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-i686/clean.patch
(from rev 171481, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-i686/cython-sys-path.patch
(from rev 171481, sagemath/trunk/cython-sys-path.patch)
  sagemath/repos/community-staging-i686/disable-fes.patch
(from rev 171481, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-staging-i686/env.patch
(from rev 171481, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-i686/gap-4.8.patch
(from rev 171481, sagemath/trunk/gap-4.8.patch)
  sagemath/repos/community-staging-i686/jupyter-path.patch
(from rev 171481, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-staging-i686/package.patch
(from rev 171481, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-i686/paths.patch
(from rev 171481, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-i686/python-2.7.11.patch
(from rev 171481, sagemath/trunk/python-2.7.11.patch)
  sagemath/repos/community-staging-i686/skip-check.patch
(from rev 171481, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-i686/test-optional.patch
(from rev 171481, sagemath/trunk/test-optional.patch)
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 171481, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/anal.h
(from rev 171481, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-x86_64/clean.patch
(from rev 171481, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-x86_64/cython-sys-path.patch
(from rev 171481, sagemath/trunk/cython-sys-path.patch)
  sagemath/repos/community-staging-x86_64/disable-fes.patch
(from rev 171481, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-staging-x86_64/env.patch
(from rev 171481, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-x86_64/gap-4.8.patch
(from rev 171481, sagemath/trunk/gap-4.8.patch)
  sagemath/repos/community-staging-x86_64/jupyter-path.patch
(from rev 171481, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 171481, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/paths.patch
(from rev 171481, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-x86_64/python-2.7.11.patch
(from rev 171481, sagemath/trunk/python-2.7.11.patch)
  sagemath/repos/community-staging-x86_64/skip-check.patch
(from rev 171481, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-x86_64/test-optional.patch
(from rev 171481, sagemath/trunk/test-optional.patch)

+
 community-staging-i686/PKGBUILD|  161 +
 community-staging-i686/anal.h  |   65 +++
 community-staging-i686/clean.patch |   24 +
 community-staging-i686/cython-sys-path.patch   |   10 
 community-staging-i686/disable-fes.patch   |   19 +
 community-staging-i686/env.patch   |  150 +
 community-staging-i686/gap-4.8.patch   |  378 +++
 community-staging-i686/jupyter-path.patch  |   31 +
 community-staging-i686/package.patch   |   11 
 community-staging-i686/paths.patch |   39 ++
 community-staging-i686/python-2.7.11.patch |   11 
 community-staging-i686/skip-check.patch|   21 +
 community-staging-i686/test-optional.patch |   11 
 community-staging-x86_64/PKGBUILD  |  161 +
 community-staging-x86_64/anal.h|   65 +++
 community-staging-x86_64/clean.patch   |   24 +
 community-staging-x86_64/cython-sys-path.patch |   10 
 community-staging-x86_64/disable-fes.patch |   19 +
 community-staging-x86_64/env.patch |  150 +
 community-staging-x86_64/gap-4.8.patch |  378 +++
 community-staging-x86_64/jupyter-path.patch|   31 +
 community-staging-x86_64/package.patch |   11 
 community-staging-x86_64/paths.patch   |   39 ++
 community-staging-x86_64/python-2.7.11.patch   |   11 
 community-staging-x86_64/skip-check.patch  |   21 +
 community-staging-x86_64/test-optional.patch   |   11 
 26 files changed, 1862 insertions(+)

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


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 09:45:10
  Author: arojas
Revision: 171481

upgpkg: sagemath 7.1-8

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 07:43:54 UTC (rev 171480)
+++ PKGBUILD2016-04-21 07:45:10 UTC (rev 171481)
@@ -31,9 +31,9 @@
 replaces=(sage-mathematics)
 provides=(sage-mathematics)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz;
-   
pexpect.zip::"https://github.com/pexpect/pexpect/archive/524495960dd8898ddd30f7ba37298de51beee773.zip;
-   anal.h package.patch env.patch paths.patch clean.patch skip-check.patch 
cython-sys-path.patch
-   disable-fes.patch jupyter-path.patch test-optional.patch 
python-2.7.11.patch gap-4.8.patch)
+
pexpect.zip::"https://github.com/pexpect/pexpect/archive/524495960dd8898ddd30f7ba37298de51beee773.zip;
+anal.h package.patch env.patch paths.patch clean.patch 
skip-check.patch cython-sys-path.patch
+disable-fes.patch jupyter-path.patch test-optional.patch 
python-2.7.11.patch gap-4.8.patch)
 md5sums=('c68e846444b9370fe79f43395cdc2725'
  'a346bb2c0350c1cb17d5325235c5e38a'
  'a906a180d198186a39820b0a2f9a9c63'


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 09:43:54
  Author: arojas
Revision: 171480

NTL 9.7.1 rebuild

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 06:58:36 UTC (rev 171479)
+++ PKGBUILD2016-04-21 07:43:54 UTC (rev 171480)
@@ -9,7 +9,7 @@
 
 pkgname=sagemath
 pkgver=7.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(i686 x86_64)
 url="http://www.sagemath.org;


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

2016-04-21 Thread Tobias Powalowski
Date: Thursday, April 21, 2016 @ 08:58:21
  Author: tpowa
Revision: 265791

#49028 fix url

Modified:
  libseccomp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 04:23:34 UTC (rev 265790)
+++ PKGBUILD2016-04-21 06:58:21 UTC (rev 265791)
@@ -7,7 +7,7 @@
 pkgdesc='Enhanced seccomp library'
 arch=('i686' 'x86_64')
 license=('LGPL2.1')
-url="http://sourceforge.net/projects/libseccomp/;
+url="https://github.com/seccomp/libseccomp;
 depends=('glibc')
 
source=("https://github.com/seccomp/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;)
 md5sums=('f93b366adc6a0dc94c37002b3ead67d1')


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 08:58:21
  Author: ronald
Revision: 171478

upgpkg: extremetuxracer 0.7.2-1

update to 0.7.2

Modified:
  extremetuxracer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 06:48:15 UTC (rev 171477)
+++ PKGBUILD2016-04-21 06:58:21 UTC (rev 171478)
@@ -5,29 +5,33 @@
 # Contributor: Alexander Rødseth 
 
 pkgname=extremetuxracer
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.7.2
+pkgrel=1
 pkgdesc="Downhill racing game starring Tux"
 arch=('x86_64' 'i686')
 url="http://sourceforge.net/projects/extremetuxracer/;
 license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'glu' 'freetype2')
-#depends=('libpng' )
-#makedepends=('mesa' 'libxi' 'libxmu')
+depends=('sfml' 'glu' 'freetype2')
+makedepends=('csfml')
 conflicts=('ppracer' 'etracer')
 replaces=('ppracer' 'etracer')
-source=("http://downloads.sourceforge.net/$pkgname/etr-$pkgver.tar.xz;)
-sha256sums=('44312719a1e9aa33e5aa0c8ad50bb52df702d64fd2d16bf2abda62ee27bf893a')
+source=("http://downloads.sourceforge.net/${pkgname}/etr-${pkgver}.tar.xz;)
+sha1sums=('50b0c3a42ae5f72ed33047baf68f76c8e7549be6')
 
 build() {
-  cd "$srcdir/etr-$pkgver"
+  cd "${srcdir}/etr-${pkgver}"
   ./configure --prefix=/usr
   make
 }
 
+check() {
+  cd "${srcdir}/etr-${pkgver}"
+  make check
+}
+
 package() {
-  cd "$srcdir/etr-$pkgver"
-  make DESTDIR="$pkgdir" install
+  cd "${srcdir}/etr-${pkgver}"
+  make DESTDIR="${pkgdir}" install
 }
 
 # vim:set ts=2 sw=2 et:


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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 08:58:36
  Author: ronald
Revision: 171479

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 06:58:21 UTC (rev 171478)
+++ community-i686/PKGBUILD 2016-04-21 06:58:36 UTC (rev 171479)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Eric Belanger 
-# Contributor: Fabio Scotoni 
-# Contributor: Alexander Rødseth 
-
-pkgname=extremetuxracer
-pkgver=0.6.0
-pkgrel=2
-pkgdesc="Downhill racing game starring Tux"
-arch=('x86_64' 'i686')
-url="http://sourceforge.net/projects/extremetuxracer/;
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'glu' 'freetype2')
-#depends=('libpng' )
-#makedepends=('mesa' 'libxi' 'libxmu')
-conflicts=('ppracer' 'etracer')
-replaces=('ppracer' 'etracer')
-source=("http://downloads.sourceforge.net/$pkgname/etr-$pkgver.tar.xz;)
-sha256sums=('44312719a1e9aa33e5aa0c8ad50bb52df702d64fd2d16bf2abda62ee27bf893a')
-
-build() {
-  cd "$srcdir/etr-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/etr-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: extremetuxracer/repos/community-i686/PKGBUILD (from rev 171478, 
extremetuxracer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 06:58:36 UTC (rev 171479)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Eric Belanger 
+# Contributor: Fabio Scotoni 
+# Contributor: Alexander Rødseth 
+
+pkgname=extremetuxracer
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="Downhill racing game starring Tux"
+arch=('x86_64' 'i686')
+url="http://sourceforge.net/projects/extremetuxracer/;
+license=('GPL')
+depends=('sfml' 'glu' 'freetype2')
+makedepends=('csfml')
+conflicts=('ppracer' 'etracer')
+replaces=('ppracer' 'etracer')
+source=("http://downloads.sourceforge.net/${pkgname}/etr-${pkgver}.tar.xz;)
+sha1sums=('50b0c3a42ae5f72ed33047baf68f76c8e7549be6')
+
+build() {
+  cd "${srcdir}/etr-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/etr-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/etr-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-21 06:58:21 UTC (rev 171478)
+++ community-x86_64/PKGBUILD   2016-04-21 06:58:36 UTC (rev 171479)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Eric Belanger 
-# Contributor: Fabio Scotoni 
-# Contributor: Alexander Rødseth 
-
-pkgname=extremetuxracer
-pkgver=0.6.0
-pkgrel=2
-pkgdesc="Downhill racing game starring Tux"
-arch=('x86_64' 'i686')
-url="http://sourceforge.net/projects/extremetuxracer/;
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'glu' 'freetype2')
-#depends=('libpng' )
-#makedepends=('mesa' 'libxi' 'libxmu')
-conflicts=('ppracer' 'etracer')
-replaces=('ppracer' 'etracer')
-source=("http://downloads.sourceforge.net/$pkgname/etr-$pkgver.tar.xz;)
-sha256sums=('44312719a1e9aa33e5aa0c8ad50bb52df702d64fd2d16bf2abda62ee27bf893a')
-
-build() {
-  cd "$srcdir/etr-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/etr-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: extremetuxracer/repos/community-x86_64/PKGBUILD (from rev 171478, 
extremetuxracer/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-21 06:58:36 UTC (rev 171479)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Eric Belanger 
+# Contributor: Fabio Scotoni 
+# Contributor: Alexander Rødseth 
+
+pkgname=extremetuxracer
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="Downhill racing game starring Tux"
+arch=('x86_64' 'i686')
+url="http://sourceforge.net/projects/extremetuxracer/;
+license=('GPL')
+depends=('sfml' 'glu' 'freetype2')
+makedepends=('csfml')
+conflicts=('ppracer' 'etracer')
+replaces=('ppracer' 'etracer')

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 08:48:15
  Author: ronald
Revision: 171477

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-21 06:48:02 UTC (rev 171476)
+++ community-i686/PKGBUILD 2016-04-21 06:48:15 UTC (rev 171477)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Allan McRae 
-# Contributor: Thomas Haider 
-
-pkgname=libev
-pkgver=4.20
-pkgrel=1
-pkgdesc="A full-featured and high-performance event loop"
-arch=('i686' 'x86_64')
-url="http://software.schmorp.de/pkg/libev.html;
-license=('BSD')
-depends=('glibc')
-source=(http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('2b9e01e0ceda77bb214f66a663b374813a3296d0')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  # fix conflict with libevent
-  rm ${pkgdir}/usr/include/event.h
-  
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: libev/repos/community-i686/PKGBUILD (from rev 171476, 
libev/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-21 06:48:15 UTC (rev 171477)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Allan McRae 
+# Contributor: Thomas Haider 
+
+pkgname=libev
+pkgver=4.22
+pkgrel=1
+pkgdesc="A full-featured and high-performance event loop"
+arch=('i686' 'x86_64')
+url="http://software.schmorp.de/pkg/libev.html;
+license=('BSD')
+depends=('glibc')
+source=(http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('4affcba78dc17239f2ccd84d6e3e6dec2bd1f8ba')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # fix conflict with libevent
+  rm ${pkgdir}/usr/include/event.h
+  
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-21 06:48:02 UTC (rev 171476)
+++ community-x86_64/PKGBUILD   2016-04-21 06:48:15 UTC (rev 171477)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Allan McRae 
-# Contributor: Thomas Haider 
-
-pkgname=libev
-pkgver=4.20
-pkgrel=1
-pkgdesc="A full-featured and high-performance event loop"
-arch=('i686' 'x86_64')
-url="http://software.schmorp.de/pkg/libev.html;
-license=('BSD')
-depends=('glibc')
-source=(http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('2b9e01e0ceda77bb214f66a663b374813a3296d0')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  # fix conflict with libevent
-  rm ${pkgdir}/usr/include/event.h
-  
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: libev/repos/community-x86_64/PKGBUILD (from rev 171476, 
libev/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-21 06:48:15 UTC (rev 171477)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Allan McRae 
+# Contributor: Thomas Haider 
+
+pkgname=libev
+pkgver=4.22
+pkgrel=1
+pkgdesc="A full-featured and high-performance event loop"
+arch=('i686' 'x86_64')
+url="http://software.schmorp.de/pkg/libev.html;
+license=('BSD')
+depends=('glibc')
+source=(http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('4affcba78dc17239f2ccd84d6e3e6dec2bd1f8ba')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd 

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

2016-04-21 Thread Ronald van Haren
Date: Thursday, April 21, 2016 @ 08:48:02
  Author: ronald
Revision: 171476

upgpkg: libev 4.22-1

update to 4.22

Modified:
  libev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-21 06:45:45 UTC (rev 171475)
+++ PKGBUILD2016-04-21 06:48:02 UTC (rev 171476)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Haider 
 
 pkgname=libev
-pkgver=4.20
+pkgver=4.22
 pkgrel=1
 pkgdesc="A full-featured and high-performance event loop"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('BSD')
 depends=('glibc')
 source=(http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('2b9e01e0ceda77bb214f66a663b374813a3296d0')
+sha1sums=('4affcba78dc17239f2ccd84d6e3e6dec2bd1f8ba')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -21,6 +21,11 @@
   make
 }
 
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 


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

2016-04-21 Thread Antonio Rojas
Date: Thursday, April 21, 2016 @ 08:45:45
  Author: arojas
Revision: 171475

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

Added:
  linbox/repos/community-staging-i686/
  linbox/repos/community-staging-i686/PKGBUILD
(from rev 171474, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-i686/lapack.patch
(from rev 171474, linbox/trunk/lapack.patch)
  linbox/repos/community-staging-i686/linbox-fplll.patch
(from rev 171474, linbox/trunk/linbox-fplll.patch)
  linbox/repos/community-staging-i686/underlink.patch
(from rev 171474, linbox/trunk/underlink.patch)
  linbox/repos/community-staging-x86_64/
  linbox/repos/community-staging-x86_64/PKGBUILD
(from rev 171474, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-x86_64/lapack.patch
(from rev 171474, linbox/trunk/lapack.patch)
  linbox/repos/community-staging-x86_64/linbox-fplll.patch
(from rev 171474, linbox/trunk/linbox-fplll.patch)
  linbox/repos/community-staging-x86_64/underlink.patch
(from rev 171474, linbox/trunk/underlink.patch)

-+
 community-staging-i686/PKGBUILD |   51 +++
 community-staging-i686/lapack.patch |   22 ++
 community-staging-i686/linbox-fplll.patch   |   87 ++
 community-staging-i686/underlink.patch  |   41 
 community-staging-x86_64/PKGBUILD   |   51 +++
 community-staging-x86_64/lapack.patch   |   22 ++
 community-staging-x86_64/linbox-fplll.patch |   87 ++
 community-staging-x86_64/underlink.patch|   41 
 8 files changed, 402 insertions(+)

Copied: linbox/repos/community-staging-i686/PKGBUILD (from rev 171474, 
linbox/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-21 06:45:45 UTC (rev 171475)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas < nqn7...@gmail.com >
+
+pkgname=linbox
+pkgver=1.3.2
+pkgrel=12
+pkgdesc="A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields"
+arch=(i686 x86_64)
+url="http://linalg.org/;
+license=(LGPL)
+depends=(m4rie lapack ntl libfplll iml givaro) 
+makedepends=(fflas-ffpack)
+source=("http://linalg.org/$pkgname-$pkgver.tar.gz; 'linbox-fplll.patch' 
'underlink.patch' 'lapack.patch')
+md5sums=('67c80345c8c3e93d213f2d7d37d8c9af'
+ '76fbb525cceff1dd74a7c1892ca965d0'
+ '731a6b17c40a56e38fef79e03391e0b5'
+ '3525650c88f9a2809214216b914f4f46')
+
+prepare() {
+  cd $pkgname-$pkgver
+# fix build with newer givaro
+  sed -i 's|version_max=30800|version_max=30900|' configure
+# fix libfplll support - Fedora patch
+  patch -p0 -i ../linbox-fplll.patch
+# fix underlink - Fedora patch
+  patch -p0 -i ../underlink.patch
+# fix detecting lapack support in fflas-ffpack
+  patch -p0 -i ../lapack.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  export CFLAGS="$CFLAGS -g -fPIC"
+  export CXXFLAGS="$CXXFLAGS -g -fPIC"
+  export LDFLAGS="$LDFLAGS -L/usr/lib"
+
+  ./configure --prefix=/usr --enable-sage --enable-optimization 
--with-fplll=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+

Copied: linbox/repos/community-staging-i686/lapack.patch (from rev 171474, 
linbox/trunk/lapack.patch)
===
--- community-staging-i686/lapack.patch (rev 0)
+++ community-staging-i686/lapack.patch 2016-04-21 06:45:45 UTC (rev 171475)
@@ -0,0 +1,22 @@
+--- ./macros/lapack-check.m4.orig  2012-06-07 02:30:26.0 -0600
 ./macros/lapack-check.m4   2012-10-02 15:05:47.051001770 -0600
+@@ -38,7 +38,7 @@ LIBS="${BACKUP_LIBS} ${BLAS_LIBS}"
+ 
+ AC_TRY_RUN(dnl ICC ?
+ [   #include "fflas-ffpack/fflas-ffpack-config.h"
+-  #ifdef __FFLAS_FFPACK_HAVE_LAPACK
++  #ifdef __FFLASFFPACK_HAVE_LAPACK
+  int main() { return 0 ; }
+#else
+a pas lapack
+--- ./configure.orig   2012-06-07 15:19:31.0 -0600
 ./configure2012-10-02 15:06:07.629005714 -0600
+@@ -18077,7 +18077,7 @@ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+#include "fflas-ffpack/fflas-ffpack-config.h"
+-  #ifdef __FFLAS_FFPACK_HAVE_LAPACK
++  #ifdef __FFLASFFPACK_HAVE_LAPACK
+  int main() { return 0 ; }
+#else
+a pas lapack

Copied: linbox/repos/community-staging-i686/linbox-fplll.patch (from rev 
171474, linbox/trunk/linbox-fplll.patch)
===
--- community-staging-i686/linbox-fplll.patch   (rev 0)
+++ community-staging-i686/linbox-fplll.patch   2016-04-21 06:45:45 UTC (rev 

  1   2   >