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

2017-09-17 Thread Felix Yan
Date: Monday, September 18, 2017 @ 05:41:35
  Author: felixonmars
Revision: 258723

archrelease: copy trunk to community-any

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

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

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

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

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

2017-09-17 Thread Felix Yan
Date: Monday, September 18, 2017 @ 05:41:11
  Author: felixonmars
Revision: 258722

upgpkg: python-hypothesis 3.28.2-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:42:48 UTC (rev 258721)
+++ PKGBUILD2017-09-18 05:41:11 UTC (rev 258722)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.28.1
+pkgver=3.28.2
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('7b46d862773b61b02859022fb291416c7deed7566257a5b74de215a64d7c0c9d9d6366b05141dd6d2e12c0a3a54ff91a9095a85126043b93fe688c29ed30ab72')
+sha512sums=('af112cec7260d5c82a73f1906c7e27a629b04a2e3e43176389b726942f97eb1682cd197242eb84bbfd23a34b5f03aa4628ec328da33bdb9494835dbb9bb72e92')
 
 prepare() {
   # Make tests faster


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 22:21:59
  Author: arojas
Revision: 305765

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

Added:
  intel-tbb/repos/extra-i686/PKGBUILD
(from rev 305764, intel-tbb/trunk/PKGBUILD)
  intel-tbb/repos/extra-x86_64/PKGBUILD
(from rev 305764, intel-tbb/trunk/PKGBUILD)
Deleted:
  intel-tbb/repos/extra-i686/PKGBUILD
  intel-tbb/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 2017-09-17 22:21:26 UTC (rev 305764)
+++ extra-i686/PKGBUILD 2017-09-17 22:21:59 UTC (rev 305765)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Denis Martinez 
-
-pkgname=intel-tbb
-pkgver=2017_20170604
-_pkgver=2017_U7
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=(i686 x86_64)
-url='http://www.threadingbuildingblocks.org/'
-license=(GPL)
-depends=(gcc-libs)
-source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
-sha256sums=('755b7dfaf018f5d8ae3bf2e8cfa0fa4672372548e8cc043ed1eb5b22a9bf5b72')
-
-build() {
-  cd tbb-$_pkgver
-  export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
-  make
-}
-
-package() {
-  cd tbb-$_pkgver
-  install -d "$pkgdir"/usr/lib
-  install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
-  install -d "$pkgdir"/usr/include
-  cp -a include/tbb "$pkgdir"/usr/include
-}

Copied: intel-tbb/repos/extra-i686/PKGBUILD (from rev 305764, 
intel-tbb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-17 22:21:59 UTC (rev 305765)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Denis Martinez 
+
+pkgname=intel-tbb
+pkgver=2018_20170726
+_pkgver=2018
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=(i686 x86_64)
+url='http://www.threadingbuildingblocks.org/'
+license=(GPL)
+depends=(gcc-libs)
+source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
+sha256sums=('94f643f1edfaccb57d64b503c7c96f00dec64e8635c054bbaa33855d72c5822d')
+
+build() {
+  cd tbb-$_pkgver
+  export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
+  make
+}
+
+package() {
+  cd tbb-$_pkgver
+  install -d "$pkgdir"/usr/lib
+  install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
+  install -d "$pkgdir"/usr/include
+  cp -a include/tbb "$pkgdir"/usr/include
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-17 22:21:26 UTC (rev 305764)
+++ extra-x86_64/PKGBUILD   2017-09-17 22:21:59 UTC (rev 305765)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Denis Martinez 
-
-pkgname=intel-tbb
-pkgver=2017_20170604
-_pkgver=2017_U7
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=(i686 x86_64)
-url='http://www.threadingbuildingblocks.org/'
-license=(GPL)
-depends=(gcc-libs)
-source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
-sha256sums=('755b7dfaf018f5d8ae3bf2e8cfa0fa4672372548e8cc043ed1eb5b22a9bf5b72')
-
-build() {
-  cd tbb-$_pkgver
-  export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
-  make
-}
-
-package() {
-  cd tbb-$_pkgver
-  install -d "$pkgdir"/usr/lib
-  install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
-  install -d "$pkgdir"/usr/include
-  cp -a include/tbb "$pkgdir"/usr/include
-}

Copied: intel-tbb/repos/extra-x86_64/PKGBUILD (from rev 305764, 
intel-tbb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-09-17 22:21:59 UTC (rev 305765)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Denis Martinez 
+
+pkgname=intel-tbb
+pkgver=2018_20170726
+_pkgver=2018
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=(i686 x86_64)
+url='http://www.threadingbuildingblocks.org/'
+license=(GPL)
+depends=(gcc-libs)
+source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
+sha256sums=('94f643f1edfaccb57d64b503c7c96f00dec64e8635c054bbaa33855d72c5822d')
+
+build() {
+  cd tbb-$_pkgver
+  export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
+  make
+}
+
+package() {
+  cd tbb-$_pkgver
+  install -d "$pkgdir"/usr/lib
+  install -m755 build/linux_*/*.so* 

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 22:21:26
  Author: arojas
Revision: 305764

Update to 2018_20170726

Modified:
  intel-tbb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 22:01:59 UTC (rev 305763)
+++ PKGBUILD2017-09-17 22:21:26 UTC (rev 305764)
@@ -5,8 +5,8 @@
 # Contributor: Denis Martinez 
 
 pkgname=intel-tbb
-pkgver=2017_20170604
-_pkgver=2017_U7
+pkgver=2018_20170726
+_pkgver=2018
 pkgrel=1
 pkgdesc='High level abstract threading library'
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 license=(GPL)
 depends=(gcc-libs)
 source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
-sha256sums=('755b7dfaf018f5d8ae3bf2e8cfa0fa4672372548e8cc043ed1eb5b22a9bf5b72')
+sha256sums=('94f643f1edfaccb57d64b503c7c96f00dec64e8635c054bbaa33855d72c5822d')
 
 build() {
   cd tbb-$_pkgver


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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 22:01:39
  Author: jgc
Revision: 305762

upgpkg: gspell 1.6.0-1

Modified:
  gspell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:55:35 UTC (rev 305761)
+++ PKGBUILD2017-09-17 22:01:39 UTC (rev 305762)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Jan de Groot 
 pkgname=gspell
-pkgver=1.4.1
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
 arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@
 license=('GPL2')
 depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
 makedepends=('intltool' 'gobject-introspection' 'vala' gtk-doc 
autoconf-archive git)
-_commit=55bcf50713b3665935ef2e842d097238dc54e977  # tags/1.4.1^0
+_commit=db6fab254c6044cc26820144049ef86fb444aec6  # tags/1.6.0^0
 source=("git+https://git.gnome.org/browse/gspell#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 22:01:59
  Author: jgc
Revision: 305763

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

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

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

Copied: gspell/repos/gnome-unstable-i686/PKGBUILD (from rev 305762, 
gspell/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 22:01:59 UTC (rev 305763)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gspell
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gspell;
+license=('GPL2')
+depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
+makedepends=('intltool' 'gobject-introspection' 'vala' gtk-doc 
autoconf-archive git)
+_commit=db6fab254c6044cc26820144049ef86fb444aec6  # tags/1.6.0^0
+source=("git+https://git.gnome.org/browse/gspell#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure  --prefix=/usr --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+package(){
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Copied: gspell/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305762, 
gspell/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 22:01:59 UTC (rev 305763)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gspell
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gspell;
+license=('GPL2')
+depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
+makedepends=('intltool' 'gobject-introspection' 'vala' gtk-doc 
autoconf-archive git)
+_commit=db6fab254c6044cc26820144049ef86fb444aec6  # tags/1.6.0^0
+source=("git+https://git.gnome.org/browse/gspell#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure  --prefix=/usr --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+package(){
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 21:55:35
  Author: jgc
Revision: 305761

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

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

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

Copied: gtksourceview3/repos/gnome-unstable-i686/PKGBUILD (from rev 305760, 
gtksourceview3/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 21:55:35 UTC (rev 305761)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gtksourceview3
+pkgver=3.24.4+11+g190037e9
+pkgrel=1
+pkgdesc="A text widget adding syntax highlighting and more to GNOME"
+url="https://wiki.gnome.org/Projects/GtkSourceView;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 libxml2)
+makedepends=(intltool gobject-introspection glade vala gtk-doc 
autoconf-archive git)
+_commit=190037e9a62d25cb2f678b465b8d0715ae4a5355  # gnome-3-24
+source=("git+https://git.gnome.org/browse/gtksourceview#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gtksourceview
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gtksourceview
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gtksourceview
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-glade-catalog --enable-gtk-doc --disable-Werror
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd gtksourceview
+  make DESTDIR="$pkgdir" install
+}

Copied: gtksourceview3/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305760, 
gtksourceview3/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 21:55:35 UTC (rev 305761)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gtksourceview3
+pkgver=3.24.4+11+g190037e9
+pkgrel=1
+pkgdesc="A text widget adding syntax highlighting and more to GNOME"
+url="https://wiki.gnome.org/Projects/GtkSourceView;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 libxml2)
+makedepends=(intltool gobject-introspection glade vala gtk-doc 
autoconf-archive git)
+_commit=190037e9a62d25cb2f678b465b8d0715ae4a5355  # gnome-3-24
+source=("git+https://git.gnome.org/browse/gtksourceview#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gtksourceview
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gtksourceview
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gtksourceview
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-glade-catalog --enable-gtk-doc --disable-Werror
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd gtksourceview
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 21:55:27
  Author: jgc
Revision: 305760

upgpkg: gtksourceview3 3.24.4+11+g190037e9-1

Modified:
  gtksourceview3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:47:11 UTC (rev 305759)
+++ PKGBUILD2017-09-17 21:55:27 UTC (rev 305760)
@@ -3,7 +3,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=gtksourceview3
-pkgver=3.24.3
+pkgver=3.24.4+11+g190037e9
 pkgrel=1
 pkgdesc="A text widget adding syntax highlighting and more to GNOME"
 url="https://wiki.gnome.org/Projects/GtkSourceView;
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(gtk3 libxml2)
 makedepends=(intltool gobject-introspection glade vala gtk-doc 
autoconf-archive git)
-_commit=17defd3caf6eaa8d66aa56070293514c04efddfb  # tags/3.24.3^0
+_commit=190037e9a62d25cb2f678b465b8d0715ae4a5355  # gnome-3-24
 source=("git+https://git.gnome.org/browse/gtksourceview#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in mm-common/repos (2 files)

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 21:47:11
  Author: jgc
Revision: 305759

archrelease: copy trunk to gnome-unstable-any

Added:
  mm-common/repos/gnome-unstable-any/
  mm-common/repos/gnome-unstable-any/PKGBUILD
(from rev 305758, mm-common/trunk/PKGBUILD)

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

Copied: mm-common/repos/gnome-unstable-any/PKGBUILD (from rev 305758, 
mm-common/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2017-09-17 21:47:11 UTC (rev 305759)
@@ -0,0 +1,41 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=mm-common
+pkgver=0.9.11
+pkgrel=1
+pkgdesc="Common build files of the C++ bindings"
+url="http://www.gtkmm.org/;
+arch=(any)
+depends=(graphviz doxygen gtk-doc libsigc++-docs perl-xml-parser)
+makedepends=(libsigc++ git)
+license=(GPL2)
+_commit=85476c318c5c51958c92660de3cf7feea9ac3fd8  # tags/0.9.11^0
+source=("git+https://git.gnome.org/browse/mm-common#commit=$_commit;
+https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag)
+sha256sums=('SKIP'
+'f6c8c74e8293aefaefb4d25fd154d5f537b3bc80e7ceecaa02c5a01836fc09e6')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  cp ../libstdc++.tag doctags
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-network
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 21:47:06
  Author: jgc
Revision: 305758

upgpkg: mm-common 0.9.11-1

Modified:
  mm-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:47:00 UTC (rev 305757)
+++ PKGBUILD2017-09-17 21:47:06 UTC (rev 305758)
@@ -2,8 +2,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=mm-common
-pkgver=0.9.10+2+g71a4333
-pkgrel=5
+pkgver=0.9.11
+pkgrel=1
 pkgdesc="Common build files of the C++ bindings"
 url="http://www.gtkmm.org/;
 arch=(any)
@@ -10,11 +10,11 @@
 depends=(graphviz doxygen gtk-doc libsigc++-docs perl-xml-parser)
 makedepends=(libsigc++ git)
 license=(GPL2)
-_commit=71a4333c8fbc85047a315dc126fe9e8e4619a6b6  # master
+_commit=85476c318c5c51958c92660de3cf7feea9ac3fd8  # tags/0.9.11^0
 source=("git+https://git.gnome.org/browse/mm-common#commit=$_commit;
 https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag)
 sha256sums=('SKIP'
-'fd3fed61b637e3e6e24794f8c40b22002f8ac154a8c5cc1f3a5b3ad7c8f4be4c')
+'f6c8c74e8293aefaefb4d25fd154d5f537b3bc80e7ceecaa02c5a01836fc09e6')
 
 pkgver() {
   cd $pkgname


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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 21:47:00
  Author: jgc
Revision: 305757

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

Added:
  mutter/repos/gnome-unstable-i686/PKGBUILD
(from rev 305756, mutter/trunk/PKGBUILD)
  mutter/repos/gnome-unstable-i686/startup-notification.patch
(from rev 305756, mutter/trunk/startup-notification.patch)
  mutter/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305756, mutter/trunk/PKGBUILD)
  mutter/repos/gnome-unstable-x86_64/startup-notification.patch
(from rev 305756, mutter/trunk/startup-notification.patch)
Deleted:
  mutter/repos/gnome-unstable-i686/PKGBUILD
  mutter/repos/gnome-unstable-i686/startup-notification.patch
  mutter/repos/gnome-unstable-x86_64/PKGBUILD
  mutter/repos/gnome-unstable-x86_64/startup-notification.patch

--+
 /PKGBUILD|  114 +
 /startup-notification.patch  |   90 
 gnome-unstable-i686/PKGBUILD |   57 --
 gnome-unstable-i686/startup-notification.patch   |   45 
 gnome-unstable-x86_64/PKGBUILD   |   57 --
 gnome-unstable-x86_64/startup-notification.patch |   45 
 6 files changed, 204 insertions(+), 204 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2017-09-17 21:46:50 UTC (rev 305756)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 21:47:00 UTC (rev 305757)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Ionut Biru 
-# Contributor: Michael Kanis 
-
-pkgname=mutter
-pkgver=3.26.0+6+g26cd031be
-pkgrel=1
-pkgdesc="A window manager for GNOME"
-url="https://git.gnome.org/browse/mutter;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
- libcanberra startup-notification zenity libsm gnome-desktop upower
- libxkbcommon-x11 gnome-settings-daemon libgudev libinput)
-makedepends=(intltool gobject-introspection git gnome-common)
-groups=(gnome)
-options=(!emptydirs)
-_commit=26cd031be8b675bd89fc4582e0e4c6af81d7  # master
-source=("git+https://git.gnome.org/browse/mutter#commit=$_commit;
-startup-notification.patch)
-sha256sums=('SKIP'
-'5a35ca4794fc361219658d9fae24a3ca21a365f2cb1901702961ac869c759366')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # https://bugs.archlinux.org/task/51940
-  patch -Np1 -i ../startup-notification.patch
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static \
-  --disable-schemas-compile --enable-compile-warnings=minimum \
-  --enable-gtk-doc --enable-egl-device
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
-  -i {.,cogl,clutter}/libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: mutter/repos/gnome-unstable-i686/PKGBUILD (from rev 305756, 
mutter/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 21:47:00 UTC (rev 305757)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=3.26.0+6+g26cd031be
+pkgrel=2
+pkgdesc="A window manager for GNOME"
+url="https://git.gnome.org/browse/mutter;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
+ libcanberra startup-notification zenity libsm gnome-desktop upower
+ libxkbcommon-x11 gnome-settings-daemon libgudev libinput pipewire)
+makedepends=(intltool gobject-introspection git gnome-common)
+groups=(gnome)
+options=(!emptydirs)
+_commit=26cd031be8b675bd89fc4582e0e4c6af81d7  # master
+source=("git+https://git.gnome.org/browse/mutter#commit=$_commit;
+startup-notification.patch)
+sha256sums=('SKIP'
+'5a35ca4794fc361219658d9fae24a3ca21a365f2cb1901702961ac869c759366')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/51940
+  patch -Np1 -i ../startup-notification.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum \
+  --enable-gtk-doc 

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

2017-09-17 Thread Jan de Groot
Date: Sunday, September 17, 2017 @ 21:46:50
  Author: jgc
Revision: 305756

upgpkg: mutter 3.26.0+6+g26cd031be-2

Enable remote desktop

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:42:32 UTC (rev 305755)
+++ PKGBUILD2017-09-17 21:46:50 UTC (rev 305756)
@@ -5,7 +5,7 @@
 
 pkgname=mutter
 pkgver=3.26.0+6+g26cd031be
-pkgrel=1
+pkgrel=2
 pkgdesc="A window manager for GNOME"
 url="https://git.gnome.org/browse/mutter;
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=(GPL)
 depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
  libcanberra startup-notification zenity libsm gnome-desktop upower
- libxkbcommon-x11 gnome-settings-daemon libgudev libinput)
+ libxkbcommon-x11 gnome-settings-daemon libgudev libinput pipewire)
 makedepends=(intltool gobject-introspection git gnome-common)
 groups=(gnome)
 options=(!emptydirs)
@@ -42,7 +42,7 @@
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --libexecdir=/usr/lib/$pkgname --disable-static \
   --disable-schemas-compile --enable-compile-warnings=minimum \
-  --enable-gtk-doc --enable-egl-device
+  --enable-gtk-doc --enable-egl-device --enable-remote-desktop
 
   #https://bugzilla.gnome.org/show_bug.cgi?id=655517
   sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 21:37:26
  Author: arojas
Revision: 258720

xiccd is in AUR

Modified:
  displaycal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:36:46 UTC (rev 258719)
+++ PKGBUILD2017-09-17 21:37:26 UTC (rev 258720)
@@ -13,8 +13,7 @@
 license=('GPL3')
 makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools')
 depends=('argyllcms' 'wxpython' 'python2-numpy')
-optdepends=('gnome-color-manager: profile installation for GNOME' 'colord-kde: 
profile installation for Plasma'
-'xiccd: profile installation for other X environments')
+optdepends=('gnome-color-manager: profile installation for GNOME' 'colord-kde: 
profile installation for Plasma')
 replaces=('dispcalgui')
 conflicts=('dispcalgui')
 
source=("http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 21:36:46
  Author: arojas
Revision: 258719

Add optdepends (FS#54330)

Modified:
  displaycal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 21:16:03 UTC (rev 258718)
+++ PKGBUILD2017-09-17 21:36:46 UTC (rev 258719)
@@ -13,7 +13,8 @@
 license=('GPL3')
 makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools')
 depends=('argyllcms' 'wxpython' 'python2-numpy')
-optdepends=('gksu: For running as root')
+optdepends=('gnome-color-manager: profile installation for GNOME' 'colord-kde: 
profile installation for Plasma'
+'xiccd: profile installation for other X environments')
 replaces=('dispcalgui')
 conflicts=('dispcalgui')
 
source=("http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 21:22:09
  Author: arojas
Revision: 305753

quote

Modified:
  tk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 20:55:07 UTC (rev 305752)
+++ PKGBUILD2017-09-17 21:22:09 UTC (rev 305753)
@@ -35,8 +35,8 @@
   # install private headers (FS#14388, FS#47616)
   cd ..
   for dir in compat generic generic/ttk unix; do
-install -dm755 ${pkgdir}/usr/include/tk-private/$dir
-install -m644 -t ${pkgdir}/usr/include/tk-private/$dir $dir/*.h
+install -dm755 "${pkgdir}"/usr/include/tk-private/$dir
+install -m644 -t "${pkgdir}"/usr/include/tk-private/$dir $dir/*.h
   done
 
   # remove buildroot traces


[arch-commits] Commit in mongodb/repos (11 files)

2017-09-17 Thread Bartłomiej Piotrowski
Date: Sunday, September 17, 2017 @ 20:43:04
  Author: bpiotrowski
Revision: 258649

archrelease: copy trunk to community-staging-x86_64

Added:
  mongodb/repos/community-staging-x86_64/
  mongodb/repos/community-staging-x86_64/PKGBUILD
(from rev 258648, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-x86_64/asio-openssl-1.1.0.patch
(from rev 258648, mongodb/trunk/asio-openssl-1.1.0.patch)
  mongodb/repos/community-staging-x86_64/boost160.patch
(from rev 258648, mongodb/trunk/boost160.patch)
  mongodb/repos/community-staging-x86_64/mongodb-3.2.10-boost-1.62.0.patch
(from rev 258648, mongodb/trunk/mongodb-3.2.10-boost-1.62.0.patch)
  
mongodb/repos/community-staging-x86_64/mongodb-3.2.10-network_interface_asio_integration_test.patch
(from rev 258648, 
mongodb/trunk/mongodb-3.2.10-network_interface_asio_integration_test.patch)
  mongodb/repos/community-staging-x86_64/mongodb.conf
(from rev 258648, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-x86_64/mongodb.install
(from rev 258648, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-x86_64/mongodb.service
(from rev 258648, mongodb/trunk/mongodb.service)
  mongodb/repos/community-staging-x86_64/openssl-1.1.0.patch
(from rev 258648, mongodb/trunk/openssl-1.1.0.patch)
  mongodb/repos/community-staging-x86_64/using-std-string.patch
(from rev 258648, mongodb/trunk/using-std-string.patch)

--+
 PKGBUILD |   95 +
 asio-openssl-1.1.0.patch |  666 ++
 boost160.patch   |   11 
 mongodb-3.2.10-boost-1.62.0.patch|   15 
 mongodb-3.2.10-network_interface_asio_integration_test.patch |   23 
 mongodb.conf |8 
 mongodb.install  |   20 
 mongodb.service  |   10 
 openssl-1.1.0.patch  |   71 +
 using-std-string.patch   |   70 +
 10 files changed, 989 insertions(+)

Copied: mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 258648, 
mongodb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 20:43:04 UTC (rev 258649)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Mathias Stearn 
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=3.4.3
+pkgrel=3
+pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
+arch=('x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('pcre' 'snappy' 'openssl' 'libsasl' 'boost-libs' 'yaml-cpp' 
'lsb-release' 'wiredtiger')
+makedepends=('scons' 'readline' 'ncurses' 'libpcap' 'boost')
+checkdepends=('python2-pymongo' 'python2-yaml')
+optdepends=('libpcap: needed for mongosniff'
+'mongodb-tools: mongoimport, mongodump, mongotop, etc')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
+'mongodb.conf' 'mongodb.service' 'mongodb-3.2.10-boost-1.62.0.patch'
+'asio-openssl-1.1.0.patch'
+'openssl-1.1.0.patch'
+'using-std-string.patch')
+sha512sums=('e2fb5fc2f02e9dbca6c30d2e2aaf1569180ca15198226cdad46f47f44905293afe77763fe2e5c9add0b5bcbd62b7ce7905fb183068c0738cdeeae8d39f848cef'
+
'05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
+
'177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9'
+
'd6f014d2778decde268b9e856d812bc61f7c45986aad751e44fdece39aa8a96505b77e0b917ea38880501497e01d4b051a6f3205c82af653425b5247cd813417'
+
'aea8fecb17be07e4517822798810751114f61164dc3ab3e335a7b837876acb918d287caa8b9fe32d7b1d9e7cad2e677d9818a1532ae08b8b013840d2a68b25f5'
+
'62ec95ac4eef42b6fefa1063336812e5e6a78f2d119e5f9a7206e063c5b5a859d160ce77bc57123150a55a51e8695eefea7e301259154bc009bfe027d40de314'
+
'f2e1e9b9418701738c7a9b6db4f894dc3c35a6fbbf9ded8321080350ba692c6c8b11d6f507043a5bdae83fe8f9806426c0f33acd94895412369e4776c2358052')
+
+_scons_args=(
+  --use-system-boost
+  --use-system-pcre
+  --use-system-snappy
+  --use-system-yaml
+  --use-system-zlib
+  --use-system-wiredtiger
+  --use-sasl-client
+  --ssl
+  --disable-warnings-as-errors
+  # --use-system-asio # https://jira.mongodb.org/browse/SERVER-21839
+  # --use-system-v8   # Doesn't 

[arch-commits] Commit in mongodb/trunk (PKGBUILD using-std-string.patch)

2017-09-17 Thread Bartłomiej Piotrowski
Date: Sunday, September 17, 2017 @ 20:42:51
  Author: bpiotrowski
Revision: 258648

3.4.3-3: rebuild against boost 1.65.1

Added:
  mongodb/trunk/using-std-string.patch
Modified:
  mongodb/trunk/PKGBUILD

+
 PKGBUILD   |9 --
 using-std-string.patch |   70 +++
 2 files changed, 76 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 20:25:50 UTC (rev 258647)
+++ PKGBUILD2017-09-17 20:42:51 UTC (rev 258648)
@@ -7,7 +7,7 @@
 
 pkgname=mongodb
 pkgver=3.4.3
-pkgrel=2
+pkgrel=3
 pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
 arch=('x86_64')
 url='http://www.mongodb.org'
@@ -22,13 +22,15 @@
 source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
 'mongodb.conf' 'mongodb.service' 'mongodb-3.2.10-boost-1.62.0.patch'
 'asio-openssl-1.1.0.patch'
-'openssl-1.1.0.patch')
+'openssl-1.1.0.patch'
+'using-std-string.patch')
 
sha512sums=('e2fb5fc2f02e9dbca6c30d2e2aaf1569180ca15198226cdad46f47f44905293afe77763fe2e5c9add0b5bcbd62b7ce7905fb183068c0738cdeeae8d39f848cef'
 
'05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
 
'177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9'
 
'd6f014d2778decde268b9e856d812bc61f7c45986aad751e44fdece39aa8a96505b77e0b917ea38880501497e01d4b051a6f3205c82af653425b5247cd813417'
 
'aea8fecb17be07e4517822798810751114f61164dc3ab3e335a7b837876acb918d287caa8b9fe32d7b1d9e7cad2e677d9818a1532ae08b8b013840d2a68b25f5'
-
'62ec95ac4eef42b6fefa1063336812e5e6a78f2d119e5f9a7206e063c5b5a859d160ce77bc57123150a55a51e8695eefea7e301259154bc009bfe027d40de314')
+
'62ec95ac4eef42b6fefa1063336812e5e6a78f2d119e5f9a7206e063c5b5a859d160ce77bc57123150a55a51e8695eefea7e301259154bc009bfe027d40de314'
+
'f2e1e9b9418701738c7a9b6db4f894dc3c35a6fbbf9ded8321080350ba692c6c8b11d6f507043a5bdae83fe8f9806426c0f33acd94895412369e4776c2358052')
 
 _scons_args=(
   --use-system-boost
@@ -49,6 +51,7 @@
   cd mongodb-src-r${pkgver}
   patch -Np1 -i ../mongodb-3.2.10-boost-1.62.0.patch
   patch -Np1 -i ../openssl-1.1.0.patch
+  patch -Np1 -i ../using-std-string.patch
 
   sed -e 's|-std=c++11|-std=gnu++11|g' -i SConstruct  # tests use hex floats, 
not supported in plain C++
 

Added: using-std-string.patch
===
--- using-std-string.patch  (rev 0)
+++ using-std-string.patch  2017-09-17 20:42:51 UTC (rev 258648)
@@ -0,0 +1,70 @@
+diff --git a/src/mongo/db/dbwebserver.cpp b/src/mongo/db/dbwebserver.cpp
+index b202e05..0255613 100644
+--- a/src/mongo/db/dbwebserver.cpp
 b/src/mongo/db/dbwebserver.cpp
+@@ -67,6 +67,7 @@ namespace mongo {
+ using std::map;
+ using std::stringstream;
+ using std::vector;
++using std::string;
+ 
+ using namespace html;
+ 
+diff --git a/src/mongo/db/matcher/expression_leaf.cpp 
b/src/mongo/db/matcher/expression_leaf.cpp
+index d562bff..b96a36d 100644
+--- a/src/mongo/db/matcher/expression_leaf.cpp
 b/src/mongo/db/matcher/expression_leaf.cpp
+@@ -202,7 +202,7 @@ void ComparisonMatchExpression::debugString(StringBuilder& 
debug, int level) con
+ }
+ 
+ void ComparisonMatchExpression::serialize(BSONObjBuilder* out) const {
+-string opString = "";
++std::string opString = "";
+ switch (matchType()) {
+ case LT:
+ opString = "$lt";
+@@ -884,7 +884,7 @@ void BitTestMatchExpression::debugString(StringBuilder& 
debug, int level) const
+ }
+ 
+ void BitTestMatchExpression::serialize(BSONObjBuilder* out) const {
+-string opString = "";
++std::string opString = "";
+ 
+ switch (matchType()) {
+ case BITS_ALL_SET:
+diff --git a/src/mongo/db/repl/master_slave.cpp 
b/src/mongo/db/repl/master_slave.cpp
+index 05faad1..7fbc062 100644
+--- a/src/mongo/db/repl/master_slave.cpp
 b/src/mongo/db/repl/master_slave.cpp
+@@ -81,6 +81,7 @@ using std::set;
+ using std::stringstream;
+ using std::unique_ptr;
+ using std::vector;
++using std::string;
+ 
+ namespace mongo {
+ namespace repl {
+diff --git a/src/mongo/shell/bench.cpp b/src/mongo/shell/bench.cpp
+index 040002f..cb0f6f4 100644
+--- a/src/mongo/shell/bench.cpp
 b/src/mongo/shell/bench.cpp
+@@ -78,6 +78,7 @@ namespace mongo {
+ using std::unique_ptr;
+ using std::cout;
+ using std::map;
++using std::string;
+ 
+ const std::map opTypeName{{OpType::NONE, "none"},
+{OpType::NOP, "nop"},
+diff --git a/src/mongo/util/net/miniwebserver.cpp 
b/src/mongo/util/net/miniwebserver.cpp
+index 5f4165d..7a7d071 100644
+--- 

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 20:26:23
  Author: arojas
Revision: 305734

Install private headers (FS#47616)

Modified:
  tk/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 19:52:41 UTC (rev 305733)
+++ PKGBUILD2017-09-17 20:26:23 UTC (rev 305734)
@@ -3,7 +3,7 @@
 
 pkgname=tk
 pkgver=8.6.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A windowing toolkit for use with tcl"
 arch=('i686' 'x86_64')
 url="http://tcl.sourceforge.net/;
@@ -32,6 +32,13 @@
   ln -sf libtk${pkgver%.*}.so "${pkgdir}/usr/lib/libtk.so"
   install -Dm644 license.terms 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
+  # install private headers (FS#14388, FS#47616)
+  cd ..
+  for dir in compat generic generic/ttk unix; do
+install -dm755 ${pkgdir}/usr/include/tk-private/$dir
+install -m644 -t ${pkgdir}/usr/include/tk-private/$dir $dir/*.h
+  done
+
   # remove buildroot traces
   sed -e "s#${srcdir}/tk${pkgver}/unix#/usr/lib#" \
   -e "s#${srcdir}/tk${pkgver}#/usr/include#" \


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

2017-09-17 Thread Jelle van der Waa
Date: Sunday, September 17, 2017 @ 20:25:35
  Author: jelle
Revision: 258646

upgpkg: povray 2:3.7.0.4-1

boost 1.65.1 rebuild

Modified:
  povray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 19:38:33 UTC (rev 258645)
+++ PKGBUILD2017-09-17 20:25:35 UTC (rev 258646)
@@ -6,9 +6,9 @@
 # Contributor: neri
 
 pkgname=povray
-pkgver=3.7.2_alpha
-pkgrel=3
-epoch=1
+pkgver=3.7.0.4
+pkgrel=1
+epoch=2
 pkgdesc='Script based raytracer for creating 3D graphics'
 arch=('x86_64' 'i686')
 license=('AGPL3')
@@ -17,13 +17,12 @@
 makedepends=('boost' 'git' 'glu')
 backup=("etc/povray/${pkgver%.*}/povray.conf"
 "etc/povray/${pkgver%.*}/povray.ini")
-source=('git+https://github.com/POV-Ray/povray#commit=5410fd423cebbf2270fe16888edbe2ca28b99ec7'
 # 2017-06-24
-'povray3.7.0_rc3-user-conf.patch')
-sha256sums=('SKIP'
-'95b04ec4973e6e8a80fc83df2e3caff0b4d6699c4154144f3017d42cab7236e0')
+source=($pkgname-$pkgver.tar.gz::https://github.com/POV-Ray/povray/archive/v$pkgver.tar.gz)
+#source=('git+https://github.com/POV-Ray/povray#commit=0dcc58e144866c53afadc5e91232afc5ca11e018')
+sha256sums=('SKIP')
 
 prepare() {
-  cd "$pkgname/unix"
+  cd "$pkgname-$pkgver/unix"
 
   sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh
   sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac
@@ -31,11 +30,10 @@
 
   cd ..
   ./bootstrap
-  patch -p1 -i "$srcdir/povray3.7.0_rc3-user-conf.patch"
 }
 
 build() {
-  cd "$pkgname"
+  cd "$pkgname-$pkgver"
 
   ./configure \
 LIBS="-lboost_system -lboost_thread" \
@@ -43,11 +41,11 @@
 --sysconfdir=/etc \
 --prefix=/usr
 
-  make CXXFLAGS+="-std=c++03 -lboost_system -lboost_thread -w"
+  make CXXFLAGS+="-std=c++11 -lboost_system -lboost_thread -w"
 }
 
 package() {
-  cd "$pkgname"
+  cd "$pkgname-$pkgver"
 
   install -d "$pkgdir"/usr/share/{doc/,}"$pkgname-${pkgver%.*}"
   cp -r icons include ini scenes scripts 
"$pkgdir/usr/share/$pkgname-${pkgver%.*}"


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 20:26:56
  Author: arojas
Revision: 305735

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-17 20:26:23 UTC (rev 305734)
+++ extra-i686/PKGBUILD 2017-09-17 20:26:56 UTC (rev 305735)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=tk
-pkgver=8.6.7
-pkgrel=1
-pkgdesc="A windowing toolkit for use with tcl"
-arch=('i686' 'x86_64')
-url="http://tcl.sourceforge.net/;
-license=('custom')
-depends=("tcl=${pkgver}" 'libxss' 'libxft')
-options=('staticlibs')
-source=(http://downloads.sourceforge.net/sourceforge/tcl/tk${pkgver}-src.tar.gz)
-sha1sums=('eb58b4523f376fdf8b1f4439a958227ada52e2c8')
-
-build() {
-  cd tk${pkgver}/unix
-  [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
-  ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads 
--disable-rpath $BIT
-  make
-}
-
-check() {
-  cd tk${pkgver}/unix
-#  make test
-}
-
-package() {
-  cd tk${pkgver}/unix
-  make INSTALL_ROOT="${pkgdir}" install install-private-headers
-  ln -sf wish${pkgver%.*} "${pkgdir}/usr/bin/wish"
-  ln -sf libtk${pkgver%.*}.so "${pkgdir}/usr/lib/libtk.so"
-  install -Dm644 license.terms 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # remove buildroot traces
-  sed -e "s#${srcdir}/tk${pkgver}/unix#/usr/lib#" \
-  -e "s#${srcdir}/tk${pkgver}#/usr/include#" \
-  -i "${pkgdir}/usr/lib/tkConfig.sh"
-}

Copied: tk/repos/extra-i686/PKGBUILD (from rev 305734, tk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-17 20:26:56 UTC (rev 305735)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=tk
+pkgver=8.6.7
+pkgrel=2
+pkgdesc="A windowing toolkit for use with tcl"
+arch=('i686' 'x86_64')
+url="http://tcl.sourceforge.net/;
+license=('custom')
+depends=("tcl=${pkgver}" 'libxss' 'libxft')
+options=('staticlibs')
+source=(http://downloads.sourceforge.net/sourceforge/tcl/tk${pkgver}-src.tar.gz)
+sha1sums=('eb58b4523f376fdf8b1f4439a958227ada52e2c8')
+
+build() {
+  cd tk${pkgver}/unix
+  [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads 
--disable-rpath $BIT
+  make
+}
+
+check() {
+  cd tk${pkgver}/unix
+#  make test
+}
+
+package() {
+  cd tk${pkgver}/unix
+  make INSTALL_ROOT="${pkgdir}" install install-private-headers
+  ln -sf wish${pkgver%.*} "${pkgdir}/usr/bin/wish"
+  ln -sf libtk${pkgver%.*}.so "${pkgdir}/usr/lib/libtk.so"
+  install -Dm644 license.terms 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # install private headers (FS#14388, FS#47616)
+  cd ..
+  for dir in compat generic generic/ttk unix; do
+install -dm755 ${pkgdir}/usr/include/tk-private/$dir
+install -m644 -t ${pkgdir}/usr/include/tk-private/$dir $dir/*.h
+  done
+
+  # remove buildroot traces
+  sed -e "s#${srcdir}/tk${pkgver}/unix#/usr/lib#" \
+  -e "s#${srcdir}/tk${pkgver}#/usr/include#" \
+  -i "${pkgdir}/usr/lib/tkConfig.sh"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-17 20:26:23 UTC (rev 305734)
+++ extra-x86_64/PKGBUILD   2017-09-17 20:26:56 UTC (rev 305735)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=tk
-pkgver=8.6.7
-pkgrel=1
-pkgdesc="A windowing toolkit for use with tcl"
-arch=('i686' 'x86_64')
-url="http://tcl.sourceforge.net/;
-license=('custom')
-depends=("tcl=${pkgver}" 'libxss' 'libxft')
-options=('staticlibs')
-source=(http://downloads.sourceforge.net/sourceforge/tcl/tk${pkgver}-src.tar.gz)
-sha1sums=('eb58b4523f376fdf8b1f4439a958227ada52e2c8')
-
-build() {
-  cd tk${pkgver}/unix
-  [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
-  ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads 
--disable-rpath $BIT
-  make
-}
-
-check() {
-  cd tk${pkgver}/unix
-#  make test
-}
-
-package() {
-  cd tk${pkgver}/unix
-  make INSTALL_ROOT="${pkgdir}" install install-private-headers
-  ln -sf wish${pkgver%.*} "${pkgdir}/usr/bin/wish"
-  ln -sf libtk${pkgver%.*}.so "${pkgdir}/usr/lib/libtk.so"
-  install -Dm644 license.terms 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # remove buildroot traces
-  sed -e "s#${srcdir}/tk${pkgver}/unix#/usr/lib#" \
-   

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

2017-09-17 Thread Jelle van der Waa
Date: Sunday, September 17, 2017 @ 20:25:50
  Author: jelle
Revision: 258647

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

Added:
  povray/repos/community-staging-i686/
  povray/repos/community-staging-i686/PKGBUILD
(from rev 258646, povray/trunk/PKGBUILD)
  povray/repos/community-staging-i686/povray3.7.0_rc3-user-conf.patch
(from rev 258646, povray/trunk/povray3.7.0_rc3-user-conf.patch)
  povray/repos/community-staging-x86_64/
  povray/repos/community-staging-x86_64/PKGBUILD
(from rev 258646, povray/trunk/PKGBUILD)
  povray/repos/community-staging-x86_64/povray3.7.0_rc3-user-conf.patch
(from rev 258646, povray/trunk/povray3.7.0_rc3-user-conf.patch)

--+
 community-staging-i686/PKGBUILD  |   60 +
 community-staging-i686/povray3.7.0_rc3-user-conf.patch   |   27 +
 community-staging-x86_64/PKGBUILD|   60 +
 community-staging-x86_64/povray3.7.0_rc3-user-conf.patch |   27 +
 4 files changed, 174 insertions(+)

Copied: povray/repos/community-staging-i686/PKGBUILD (from rev 258646, 
povray/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 20:25:50 UTC (rev 258647)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Tom Newsom 
+# Contributor: tobias 
+# Contributor: red_over_blue
+# Contributor: neri
+
+pkgname=povray
+pkgver=3.7.0.4
+pkgrel=1
+epoch=2
+pkgdesc='Script based raytracer for creating 3D graphics'
+arch=('x86_64' 'i686')
+license=('AGPL3')
+url='http://povray.org/'
+depends=('libtiff' 'libpng' 'boost-libs' 'openexr')
+makedepends=('boost' 'git' 'glu')
+backup=("etc/povray/${pkgver%.*}/povray.conf"
+"etc/povray/${pkgver%.*}/povray.ini")
+source=($pkgname-$pkgver.tar.gz::https://github.com/POV-Ray/povray/archive/v$pkgver.tar.gz)
+#source=('git+https://github.com/POV-Ray/povray#commit=0dcc58e144866c53afadc5e91232afc5ca11e018')
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver/unix"
+
+  sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh
+  sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac
+  ./prebuild.sh
+
+  cd ..
+  ./bootstrap
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+LIBS="-lboost_system -lboost_thread" \
+COMPILED_BY='Arch Linux' \
+--sysconfdir=/etc \
+--prefix=/usr
+
+  make CXXFLAGS+="-std=c++11 -lboost_system -lboost_thread -w"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -d "$pkgdir"/usr/share/{doc/,}"$pkgname-${pkgver%.*}"
+  cp -r icons include ini scenes scripts 
"$pkgdir/usr/share/$pkgname-${pkgver%.*}"
+  cp -r doc "$pkgdir/usr/share/doc/$pkgname-${pkgver%.*}"
+  install -Dm755 unix/povray "$pkgdir/usr/bin/povray"
+  install -Dm644 povray.conf "$pkgdir/etc/povray/${pkgver%.*}/povray.conf"
+  install -Dm644 povray.ini "$pkgdir/etc/povray/${pkgver%.*}/povray.ini"
+  install -Dm644 povray.1 "$pkgdir/usr/share/man/man1/povray.1"
+}
+
+# getver: povray.org/documentation
+# vim:set ts=2 sw=2 et:

Copied: povray/repos/community-staging-i686/povray3.7.0_rc3-user-conf.patch 
(from rev 258646, povray/trunk/povray3.7.0_rc3-user-conf.patch)
===
--- community-staging-i686/povray3.7.0_rc3-user-conf.patch  
(rev 0)
+++ community-staging-i686/povray3.7.0_rc3-user-conf.patch  2017-09-17 
20:25:50 UTC (rev 258647)
@@ -0,0 +1,27 @@
+ Makefile.am |   13 -
+ 1 files changed, 0 insertions(+), 13 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index 76b394c..9822c52 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -107,19 +107,6 @@ install-data-local:
+   for f in $$filelist ; do \
+ $(INSTALL_DATA) $(top_srcdir)/doc/$$f $(DESTDIR)$(povdocdir)/$$f && 
echo "$(DESTDIR)$(povdocdir)/$$f" >> $(povinstall); \
+   done
+-  @echo "Creating user directories..."; \
+-  for p in $(povuser) $(povconfuser) ; do \
+-$(mkdir_p) $$p && chown $(povowner) $$p && chgrp $(povgroup) $$p && 
printf "%s\n" "$$p" "`cat $(povinstall)`" > $(povinstall); \
+-  done
+-  @echo "Copying user configuration and INI files..."; \
+-  for f in povray.conf povray.ini ; do \
+-if test -f $(povconfuser)/$$f; then \
+-  echo "Creating backup of $(povconfuser)/$$f"; \
+-  mv -f $(povconfuser)/$$f $(povconfuser)/$$f.bak; \
+-fi; \
+-  done; \
+-  $(INSTALL_DATA) $(top_srcdir)/povray.conf $(povconfuser)/povray.conf && 
chown $(povowner) $(povconfuser)/povray.conf && chgrp $(povgroup) 
$(povconfuser)/povray.conf  && echo "$(povconfuser)/povray.conf" >> 
$(povinstall); \
+-  $(INSTALL_DATA) $(top_builddir)/povray.ini 

[arch-commits] Commit in ppp/repos (50 files)

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 19:52:41
  Author: arojas
Revision: 305733

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

Added:
  ppp/repos/testing-i686/CVE-2015-3310.patch
(from rev 305732, ppp/trunk/CVE-2015-3310.patch)
  ppp/repos/testing-i686/LICENSE
(from rev 305732, ppp/trunk/LICENSE)
  ppp/repos/testing-i686/PKGBUILD
(from rev 305732, ppp/trunk/PKGBUILD)
  ppp/repos/testing-i686/ip-down
(from rev 305732, ppp/trunk/ip-down)
  ppp/repos/testing-i686/ip-down.d.dns.sh
(from rev 305732, ppp/trunk/ip-down.d.dns.sh)
  ppp/repos/testing-i686/ip-up
(from rev 305732, ppp/trunk/ip-up)
  ppp/repos/testing-i686/ip-up.d.dns.sh
(from rev 305732, ppp/trunk/ip-up.d.dns.sh)
  ppp/repos/testing-i686/ipv6-down
(from rev 305732, ppp/trunk/ipv6-down)
  ppp/repos/testing-i686/ipv6-up
(from rev 305732, ppp/trunk/ipv6-up)
  ppp/repos/testing-i686/ipv6-up.d.iface-config.sh
(from rev 305732, ppp/trunk/ipv6-up.d.iface-config.sh)
  ppp/repos/testing-i686/options
(from rev 305732, ppp/trunk/options)
  ppp/repos/testing-i686/ppp-2.4.6-makefiles.patch
(from rev 305732, ppp/trunk/ppp-2.4.6-makefiles.patch)
  ppp/repos/testing-i686/ppp.systemd
(from rev 305732, ppp/trunk/ppp.systemd)
  ppp/repos/testing-x86_64/CVE-2015-3310.patch
(from rev 305732, ppp/trunk/CVE-2015-3310.patch)
  ppp/repos/testing-x86_64/LICENSE
(from rev 305732, ppp/trunk/LICENSE)
  ppp/repos/testing-x86_64/PKGBUILD
(from rev 305732, ppp/trunk/PKGBUILD)
  ppp/repos/testing-x86_64/ip-down
(from rev 305732, ppp/trunk/ip-down)
  ppp/repos/testing-x86_64/ip-down.d.dns.sh
(from rev 305732, ppp/trunk/ip-down.d.dns.sh)
  ppp/repos/testing-x86_64/ip-up
(from rev 305732, ppp/trunk/ip-up)
  ppp/repos/testing-x86_64/ip-up.d.dns.sh
(from rev 305732, ppp/trunk/ip-up.d.dns.sh)
  ppp/repos/testing-x86_64/ipv6-down
(from rev 305732, ppp/trunk/ipv6-down)
  ppp/repos/testing-x86_64/ipv6-up
(from rev 305732, ppp/trunk/ipv6-up)
  ppp/repos/testing-x86_64/ipv6-up.d.iface-config.sh
(from rev 305732, ppp/trunk/ipv6-up.d.iface-config.sh)
  ppp/repos/testing-x86_64/options
(from rev 305732, ppp/trunk/options)
  ppp/repos/testing-x86_64/ppp-2.4.6-makefiles.patch
(from rev 305732, ppp/trunk/ppp-2.4.6-makefiles.patch)
  ppp/repos/testing-x86_64/ppp.systemd
(from rev 305732, ppp/trunk/ppp.systemd)
Deleted:
  ppp/repos/testing-i686/CVE-2015-3310.patch
  ppp/repos/testing-i686/PKGBUILD
  ppp/repos/testing-i686/ip-down
  ppp/repos/testing-i686/ip-down.d.dns.sh
  ppp/repos/testing-i686/ip-up
  ppp/repos/testing-i686/ip-up.d.dns.sh
  ppp/repos/testing-i686/ipv6-down
  ppp/repos/testing-i686/ipv6-up
  ppp/repos/testing-i686/ipv6-up.d.iface-config.sh
  ppp/repos/testing-i686/options
  ppp/repos/testing-i686/ppp-2.4.6-makefiles.patch
  ppp/repos/testing-i686/ppp.systemd
  ppp/repos/testing-x86_64/CVE-2015-3310.patch
  ppp/repos/testing-x86_64/PKGBUILD
  ppp/repos/testing-x86_64/ip-down
  ppp/repos/testing-x86_64/ip-down.d.dns.sh
  ppp/repos/testing-x86_64/ip-up
  ppp/repos/testing-x86_64/ip-up.d.dns.sh
  ppp/repos/testing-x86_64/ipv6-down
  ppp/repos/testing-x86_64/ipv6-up
  ppp/repos/testing-x86_64/ipv6-up.d.iface-config.sh
  ppp/repos/testing-x86_64/options
  ppp/repos/testing-x86_64/ppp-2.4.6-makefiles.patch
  ppp/repos/testing-x86_64/ppp.systemd

--+
 /CVE-2015-3310.patch |   36 +
 /PKGBUILD|  190 +++
 /ip-down |   24 
 /ip-down.d.dns.sh|   14 
 /ip-up   |   24 
 /ip-up.d.dns.sh  |   22 
 /ipv6-down   |   24 
 /ipv6-up |   24 
 /ipv6-up.d.iface-config.sh   |8 
 /options |  704 +
 /ppp-2.4.6-makefiles.patch   |  540 ++
 /ppp.systemd |   18 
 testing-i686/CVE-2015-3310.patch |   18 
 testing-i686/LICENSE |7 
 testing-i686/PKGBUILD|   91 ---
 testing-i686/ip-down |   12 
 testing-i686/ip-down.d.dns.sh|7 
 testing-i686/ip-up   |   12 
 testing-i686/ip-up.d.dns.sh  |   11 
 testing-i686/ipv6-down   |   12 
 testing-i686/ipv6-up |   12 
 testing-i686/ipv6-up.d.iface-config.sh   |4 
 testing-i686/options |  352 --
 testing-i686/ppp-2.4.6-makefiles.patch   |  270 ---
 testing-i686/ppp.systemd |9 
 testing-x86_64/CVE-2015-3310.patch   |   18 
 testing-x86_64/LICENSE   |7 
 testing-x86_64/PKGBUILD  |   91 ---
 testing-x86_64/ip-down   |   12 
 testing-x86_64/ip-down.d.dns.sh  |7 
 testing-x86_64/ip-up   

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 19:51:43
  Author: arojas
Revision: 305732

Clarify license (FS#36510)

Added:
  ppp/trunk/LICENSE
Modified:
  ppp/trunk/PKGBUILD

--+
 LICENSE  |7 +++
 PKGBUILD |   12 
 2 files changed, 15 insertions(+), 4 deletions(-)

Added: LICENSE
===
--- LICENSE (rev 0)
+++ LICENSE 2017-09-17 19:51:43 UTC (rev 305732)
@@ -0,0 +1,7 @@
+Copyrights:
+***
+
+All of the code can be freely used and redistributed.  The individual
+source files each have their own copyright and permission notice.
+Pppd, pppstats and pppdump are under BSD-style notices.  Some of the
+pppd plugins are GPL'd.  Chat is public domain.

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 17:50:59 UTC (rev 305731)
+++ PKGBUILD2017-09-17 19:51:43 UTC (rev 305732)
@@ -2,11 +2,11 @@
 # Maintainer: Thomas Baechler 
 pkgname=ppp
 pkgver=2.4.7
-pkgrel=3
+pkgrel=4
 pkgdesc="A daemon which implements the Point-to-Point Protocol for dial-up 
networking"
 arch=(i686 x86_64) 
 url="http://www.samba.org/ppp/;
-license=('custom:GPL/BSD')
+license=('GPL' 'BSD')
 depends=('glibc' 'libpcap>=1.0.0')
 
backup=(etc/ppp/{chap-secrets,pap-secrets,options,ip-up,ip-down,ip-down.d/00-dns.sh,ip-up.d/00-dns.sh,ipv6-up.d/00-iface-config.sh})
 source=(https://download.samba.org/pub/ppp/ppp-${pkgver}.tar.gz{,.asc}
@@ -21,7 +21,8 @@
 ipv6-up.d.iface-config.sh
 ppp.systemd
 CVE-2015-3310.patch
-
ppp-build-fix.patch::"https://github.com/paulusmack/ppp/commit/50a2997b.patch;)
+
ppp-build-fix.patch::"https://github.com/paulusmack/ppp/commit/50a2997b.patch;
+LICENSE)
 sha256sums=('02e0a3dd3e4799e33103f70ec7df75348c8540966ee7c948e4ed8a42bbccfb30'
 'SKIP'
 'f04f47318226c79594f45b8b75877c30710d22fe0fb1e2e17db3b4257dc4218c'
@@ -35,7 +36,8 @@
 '20780cf4bd0774bebb55ecb3bdae7667c9ae5cbe003a52a1ecb0bbc77d46260f'
 'eb8ab2e2d71c3bb9c4297cf847b6e9d52616a3fdbf2257c479cc43dff318c831'
 'f0fe7e7d9b35141c2565a09e39c4f66b475ed3fe8e2528d10faa4412f480e338'
-'94225c64e806e75d6f792649c4beb26a791c4994c2701dc6a47cfccf3d91e4bf')
+'94225c64e806e75d6f792649c4beb26a791c4994c2701dc6a47cfccf3d91e4bf'
+'96fd35104e3d0ec472517afecead88419913ae73ae0189476d5dad9029c2be42')
 validpgpkeys=('631E179E370CD727A7F2A33A9E4295D605F66CE9') # Paul Mackerras 
(Signing key) 
 
 prepare() {
@@ -88,4 +90,6 @@
   chmod 0755 "${pkgdir}/usr/lib/pppd/${pkgver}"/*.so
 
   install -D -m644 "${srcdir}"/ppp.systemd 
"${pkgdir}"/usr/lib/systemd/system/ppp@.service
+
+  install -Dm644 "$srcdir"/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 19:38:08
  Author: felixonmars
Revision: 258644

upgpkg: python-hypothesis 3.28.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 18:56:10 UTC (rev 258643)
+++ PKGBUILD2017-09-17 19:38:08 UTC (rev 258644)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.28.0
+pkgver=3.28.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('d50c2f180550054066c5d22e8d78e922bf18ac4d2617a466dbd420d19891fdfc4b80b57acff9b39111a35f15d80229020ac843cbe8e9c77291145209610a')
+sha512sums=('7b46d862773b61b02859022fb291416c7deed7566257a5b74de215a64d7c0c9d9d6366b05141dd6d2e12c0a3a54ff91a9095a85126043b93fe688c29ed30ab72')
 
 prepare() {
   # Make tests faster


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 19:38:33
  Author: felixonmars
Revision: 258645

archrelease: copy trunk to community-any

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

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

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

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

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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 18:55:46
  Author: felixonmars
Revision: 258642

upgpkg: wiredtiger 2.9.3-1

Modified:
  wiredtiger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 18:09:10 UTC (rev 258641)
+++ PKGBUILD2017-09-17 18:55:46 UTC (rev 258642)
@@ -3,8 +3,7 @@
 # Contributor: Stefan Husmann 
 
 pkgname=wiredtiger
-pkgver=2.9.1
-_commit=13d9445453ff5e4727040ceed972dc0923bb8ae5
+pkgver=2.9.3
 pkgrel=1
 pkgdesc="High performance, scalable, production quality, NoSQL, Open Source 
extensible platform for data management"
 arch=('x86_64')
@@ -11,13 +10,12 @@
 url="http://source.wiredtiger.com/;
 license=('GPL')
 depends=('snappy' 'lz4' 'zlib' 'gperftools')
-makedepends=('git')
-source=("git://github.com/wiredtiger/wiredtiger.git#commit=$_commit")
-md5sums=('SKIP')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wiredtiger/wiredtiger/archive/$pkgver.tar.gz;)
+sha512sums=('3ba7e3bd7990cdfc870618bfcd5e5c08bde617b835c563ce063fb7954f9ebf107ab3557ff70ea78fa4cc28b9762e8be2b2acb31c366782fc5c67ec554f5dd9c5')
 
 build() {
-  cd "$srcdir/wiredtiger"
-  
+  cd wiredtiger-$pkgver
+
   ./autogen.sh
   ./configure --prefix=/usr \
   --enable-leveldb \
@@ -28,11 +26,11 @@
 }
 
 check() {
-  cd "$srcdir/wiredtiger"
+  cd wiredtiger-$pkgver
   make test
 }
 
 package() {
-  cd "$srcdir/wiredtiger"
-  make DESTDIR="$pkgdir/" install
+  cd wiredtiger-$pkgver
+  make DESTDIR="$pkgdir" install
 }


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 18:56:10
  Author: felixonmars
Revision: 258643

archrelease: copy trunk to community-staging-x86_64

Added:
  wiredtiger/repos/community-staging-x86_64/
  wiredtiger/repos/community-staging-x86_64/PKGBUILD
(from rev 258642, wiredtiger/trunk/PKGBUILD)

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

Copied: wiredtiger/repos/community-staging-x86_64/PKGBUILD (from rev 258642, 
wiredtiger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 18:56:10 UTC (rev 258643)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Stefan Husmann 
+
+pkgname=wiredtiger
+pkgver=2.9.3
+pkgrel=1
+pkgdesc="High performance, scalable, production quality, NoSQL, Open Source 
extensible platform for data management"
+arch=('x86_64')
+url="http://source.wiredtiger.com/;
+license=('GPL')
+depends=('snappy' 'lz4' 'zlib' 'gperftools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wiredtiger/wiredtiger/archive/$pkgver.tar.gz;)
+sha512sums=('3ba7e3bd7990cdfc870618bfcd5e5c08bde617b835c563ce063fb7954f9ebf107ab3557ff70ea78fa4cc28b9762e8be2b2acb31c366782fc5c67ec554f5dd9c5')
+
+build() {
+  cd wiredtiger-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr \
+  --enable-leveldb \
+  --enable-lz4 \
+  --enable-tcmalloc \
+  --with-builtins=snappy,zlib
+  make
+}
+
+check() {
+  cd wiredtiger-$pkgver
+  make test
+}
+
+package() {
+  cd wiredtiger-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 18:06:18
  Author: felixonmars
Revision: 258639

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

Added:
  haskell-pipes-http/repos/community-staging-i686/
  haskell-pipes-http/repos/community-staging-i686/PKGBUILD
(from rev 258638, haskell-pipes-http/trunk/PKGBUILD)
  haskell-pipes-http/repos/community-staging-x86_64/
  haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD
(from rev 258638, haskell-pipes-http/trunk/PKGBUILD)

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

Copied: haskell-pipes-http/repos/community-staging-i686/PKGBUILD (from rev 
258638, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 18:06:18 UTC (rev 258639)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=59
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD (from rev 
258638, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 18:06:18 UTC (rev 258639)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=59
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 18:05:44
  Author: felixonmars
Revision: 258638

upgpkg: haskell-pipes-http 1.0.5-59

rebuild with pipes,4.3.5

Modified:
  haskell-pipes-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 18:04:32 UTC (rev 258637)
+++ PKGBUILD2017-09-17 18:05:44 UTC (rev 258638)
@@ -5,7 +5,7 @@
 _hkgname=pipes-http
 pkgname=haskell-pipes-http
 pkgver=1.0.5
-pkgrel=58
+pkgrel=59
 pkgdesc="HTTP client with pipes interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 18:04:32
  Author: felixonmars
Revision: 258637

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

Added:
  haskell-pipes/repos/community-staging-i686/
  haskell-pipes/repos/community-staging-i686/PKGBUILD
(from rev 258636, haskell-pipes/trunk/PKGBUILD)
  haskell-pipes/repos/community-staging-x86_64/
  haskell-pipes/repos/community-staging-x86_64/PKGBUILD
(from rev 258636, haskell-pipes/trunk/PKGBUILD)

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

Copied: haskell-pipes/repos/community-staging-i686/PKGBUILD (from rev 258636, 
haskell-pipes/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 18:04:32 UTC (rev 258637)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes
+pkgname=haskell-pipes
+pkgver=4.3.5
+pkgrel=1
+pkgdesc="Compositional pipelines"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-exceptions" "haskell-mmorph" "haskell-mtl" 
"haskell-semigroups"
+ "haskell-void")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('15854a2ea7793138eb7a97946d76c4f8c1db3936ce5e1ef69b8c1531d7b30dced4f0c851243569186e8631bea12eda722b5259b5dea08029549871358fe76346')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-pipes/repos/community-staging-x86_64/PKGBUILD (from rev 258636, 
haskell-pipes/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 18:04:32 UTC (rev 258637)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes
+pkgname=haskell-pipes
+pkgver=4.3.5
+pkgrel=1
+pkgdesc="Compositional pipelines"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-exceptions" "haskell-mmorph" "haskell-mtl" 
"haskell-semigroups"
+ "haskell-void")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('15854a2ea7793138eb7a97946d76c4f8c1db3936ce5e1ef69b8c1531d7b30dced4f0c851243569186e8631bea12eda722b5259b5dea08029549871358fe76346')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 18:03:59
  Author: felixonmars
Revision: 258636

upgpkg: haskell-pipes 4.3.5-1

rebuild with pipes,4.3.5

Modified:
  haskell-pipes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 17:14:24 UTC (rev 258635)
+++ PKGBUILD2017-09-17 18:03:59 UTC (rev 258636)
@@ -4,16 +4,17 @@
 
 _hkgname=pipes
 pkgname=haskell-pipes
-pkgver=4.3.4
-pkgrel=4
+pkgver=4.3.5
+pkgrel=1
 pkgdesc="Compositional pipelines"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=('ghc-libs' "haskell-exceptions" "haskell-mmorph" "haskell-mtl" 
"haskell-void")
+depends=('ghc-libs' "haskell-exceptions" "haskell-mmorph" "haskell-mtl" 
"haskell-semigroups"
+ "haskell-void")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('2643edeb5b0c657bffe6d6b04330da7e60c1413de9dedd661093712c1b9aefafe28ea53d11887585b4d47a7fe01f49c820dccea10dc96ab0f867e1e608447e75')
+sha512sums=('15854a2ea7793138eb7a97946d76c4f8c1db3936ce5e1ef69b8c1531d7b30dced4f0c851243569186e8631bea12eda722b5259b5dea08029549871358fe76346')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 17:50:59
  Author: heftig
Revision: 305731

start with tracker

Added:
  tracker2/trunk/PKGBUILD
(from rev 305730, tracker/trunk/PKGBUILD)

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

Copied: tracker2/trunk/PKGBUILD (from rev 305730, tracker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-17 17:50:59 UTC (rev 305731)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Alexander Fehr 
+
+pkgbase=tracker
+pkgname=(tracker libtracker-sparql)
+pkgver=1.12.3
+pkgrel=1
+pkgdesc="Desktop-neutral user information store, search tool and indexer"
+url="https://wiki.gnome.org/Projects/Tracker;
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(libsecret upower libexif exempi poppler-glib libgsf icu enca 
libnm-glib
+ gtk3 gobject-introspection intltool giflib gst-plugins-base-libs 
totem-plparser taglib libsoup json-glib
+ libvorbis flac vala libgxps libnautilus-extension libxslt 
libiptcdata
+ libosinfo libcue libstemmer git gtk-doc libgrss libseccomp)
+_commit=c756218387e1df2590a50b8ba93ecd19f9d5cf7d  # tags/1.12.3^0
+options=(!emptydirs)
+source=("git+https://git.gnome.org/browse/tracker#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/tracker \
+--disable-libmediaart \
+--disable-unit-tests \
+--disable-miner-user-guides \
+--enable-libflac \
+--enable-libvorbis \
+--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_tracker() {
+  depends=("libtracker-sparql=$pkgver-$pkgrel" libsecret
+   upower libexif exempi poppler-glib libgsf enca libiptcdata libcue 
libosinfo
+   libnm-glib gtk3 libgxps taglib flac libvorbis totem-plparser
+   gst-plugins-base-libs giflib libgrss gvfs)
+  optdepends=("nautilus: edit files' tracker tags")
+  groups=('gnome')
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" install
+
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql uninstall
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql-backend uninstall
+  make DESTDIR="$pkgdir" -C src/libtracker-data 
uninstall-libtracker_dataLTLIBRARIES
+  make DESTDIR="$pkgdir" -C src/libtracker-common 
uninstall-libtracker_commonLTLIBRARIES
+}
+
+package_libtracker-sparql() {
+  pkgdesc="$pkgdesc (SPARQL library)"
+  depends=(sqlite icu glib2 libffi pcre util-linux libstemmer libseccomp 
libsoup json-glib)
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" -C src/libtracker-common 
install-libtracker_commonLTLIBRARIES
+  make DESTDIR="$pkgdir" -C src/libtracker-data 
install-libtracker_dataLTLIBRARIES
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql install
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql-backend install
+}


[arch-commits] Commit in (tracker2 tracker2/repos tracker2/trunk)

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 17:50:22
  Author: heftig
Revision: 305730

Add tracker2

Added:
  tracker2/
  tracker2/repos/
  tracker2/trunk/


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 17:46:22
  Author: heftig
Revision: 305729

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

Added:
  gnome-shell/repos/gnome-unstable-i686/
  gnome-shell/repos/gnome-unstable-i686/PKGBUILD
(from rev 305728, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/gnome-unstable-i686/nm-libexecdir.patch
(from rev 305728, gnome-shell/trunk/nm-libexecdir.patch)
  gnome-shell/repos/gnome-unstable-x86_64/
  gnome-shell/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305728, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/gnome-unstable-x86_64/nm-libexecdir.patch
(from rev 305728, gnome-shell/trunk/nm-libexecdir.patch)

---+
 gnome-unstable-i686/PKGBUILD  |   64 
 gnome-unstable-i686/nm-libexecdir.patch   |   12 +
 gnome-unstable-x86_64/PKGBUILD|   64 
 gnome-unstable-x86_64/nm-libexecdir.patch |   12 +
 4 files changed, 152 insertions(+)

Copied: gnome-shell/repos/gnome-unstable-i686/PKGBUILD (from rev 305728, 
gnome-shell/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 17:46:22 UTC (rev 305729)
@@ -0,0 +1,64 @@
+# $Id$
+# Contributor: Ionut Biru 
+# Contributor: Flamelab 

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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 17:45:20
  Author: heftig
Revision: 305728

3.26.0+8+g8331436ab-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 17:05:53 UTC (rev 305727)
+++ PKGBUILD2017-09-17 17:45:20 UTC (rev 305728)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab 

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 17:03:46
  Author: arojas
Revision: 305726

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

Added:
  ppp/repos/testing-i686/
  ppp/repos/testing-i686/CVE-2015-3310.patch
(from rev 305725, ppp/trunk/CVE-2015-3310.patch)
  ppp/repos/testing-i686/PKGBUILD
(from rev 305725, ppp/trunk/PKGBUILD)
  ppp/repos/testing-i686/ip-down
(from rev 305725, ppp/trunk/ip-down)
  ppp/repos/testing-i686/ip-down.d.dns.sh
(from rev 305725, ppp/trunk/ip-down.d.dns.sh)
  ppp/repos/testing-i686/ip-up
(from rev 305725, ppp/trunk/ip-up)
  ppp/repos/testing-i686/ip-up.d.dns.sh
(from rev 305725, ppp/trunk/ip-up.d.dns.sh)
  ppp/repos/testing-i686/ipv6-down
(from rev 305725, ppp/trunk/ipv6-down)
  ppp/repos/testing-i686/ipv6-up
(from rev 305725, ppp/trunk/ipv6-up)
  ppp/repos/testing-i686/ipv6-up.d.iface-config.sh
(from rev 305725, ppp/trunk/ipv6-up.d.iface-config.sh)
  ppp/repos/testing-i686/options
(from rev 305725, ppp/trunk/options)
  ppp/repos/testing-i686/ppp-2.4.6-makefiles.patch
(from rev 305725, ppp/trunk/ppp-2.4.6-makefiles.patch)
  ppp/repos/testing-i686/ppp.systemd
(from rev 305725, ppp/trunk/ppp.systemd)
  ppp/repos/testing-x86_64/
  ppp/repos/testing-x86_64/CVE-2015-3310.patch
(from rev 305725, ppp/trunk/CVE-2015-3310.patch)
  ppp/repos/testing-x86_64/PKGBUILD
(from rev 305725, ppp/trunk/PKGBUILD)
  ppp/repos/testing-x86_64/ip-down
(from rev 305725, ppp/trunk/ip-down)
  ppp/repos/testing-x86_64/ip-down.d.dns.sh
(from rev 305725, ppp/trunk/ip-down.d.dns.sh)
  ppp/repos/testing-x86_64/ip-up
(from rev 305725, ppp/trunk/ip-up)
  ppp/repos/testing-x86_64/ip-up.d.dns.sh
(from rev 305725, ppp/trunk/ip-up.d.dns.sh)
  ppp/repos/testing-x86_64/ipv6-down
(from rev 305725, ppp/trunk/ipv6-down)
  ppp/repos/testing-x86_64/ipv6-up
(from rev 305725, ppp/trunk/ipv6-up)
  ppp/repos/testing-x86_64/ipv6-up.d.iface-config.sh
(from rev 305725, ppp/trunk/ipv6-up.d.iface-config.sh)
  ppp/repos/testing-x86_64/options
(from rev 305725, ppp/trunk/options)
  ppp/repos/testing-x86_64/ppp-2.4.6-makefiles.patch
(from rev 305725, ppp/trunk/ppp-2.4.6-makefiles.patch)
  ppp/repos/testing-x86_64/ppp.systemd
(from rev 305725, ppp/trunk/ppp.systemd)

--+
 testing-i686/CVE-2015-3310.patch |   18 +
 testing-i686/PKGBUILD|   91 +++
 testing-i686/ip-down |   12 
 testing-i686/ip-down.d.dns.sh|7 
 testing-i686/ip-up   |   12 
 testing-i686/ip-up.d.dns.sh  |   11 
 testing-i686/ipv6-down   |   12 
 testing-i686/ipv6-up |   12 
 testing-i686/ipv6-up.d.iface-config.sh   |4 
 testing-i686/options |  352 +
 testing-i686/ppp-2.4.6-makefiles.patch   |  270 ++
 testing-i686/ppp.systemd |9 
 testing-x86_64/CVE-2015-3310.patch   |   18 +
 testing-x86_64/PKGBUILD  |   91 +++
 testing-x86_64/ip-down   |   12 
 testing-x86_64/ip-down.d.dns.sh  |7 
 testing-x86_64/ip-up |   12 
 testing-x86_64/ip-up.d.dns.sh|   11 
 testing-x86_64/ipv6-down |   12 
 testing-x86_64/ipv6-up   |   12 
 testing-x86_64/ipv6-up.d.iface-config.sh |4 
 testing-x86_64/options   |  352 +
 testing-x86_64/ppp-2.4.6-makefiles.patch |  270 ++
 testing-x86_64/ppp.systemd   |9 
 24 files changed, 1620 insertions(+)

Copied: ppp/repos/testing-i686/CVE-2015-3310.patch (from rev 305725, 
ppp/trunk/CVE-2015-3310.patch)
===
--- testing-i686/CVE-2015-3310.patch(rev 0)
+++ testing-i686/CVE-2015-3310.patch2017-09-17 17:03:46 UTC (rev 305726)
@@ -0,0 +1,18 @@
+Fix buffer overflow in rc_mksid()
+
+rc_mksid converts the PID of pppd to hex to generate a pseudo-unique string.
+If the process id is bigger than 65535 (), its hex representation will be
+longer than 4 characters, resulting in a buffer overflow.
+ 
+The bug can be exploited to cause a remote DoS.
+--- ppp-2.4.7/pppd/plugins/radius/util.c
 ppp-2.4.7/pppd/plugins/radius/util.c
+@@ -77,7 +77,7 @@ rc_mksid (void)
+   static unsigned short int cnt = 0;
+   sprintf (buf, "%08lX%04X%02hX",
+  (unsigned long int) time (NULL),
+- (unsigned int) getpid (),
++ (unsigned int) getpid () & 0x,
+  cnt & 0xFF);
+   cnt++;
+   return buf;

Copied: ppp/repos/testing-i686/PKGBUILD (from rev 305725, ppp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-17 17:03:46 UTC (rev 305726)
@@ -0,0 +1,91 @@
+# $Id$
+# 

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 17:02:42
  Author: arojas
Revision: 305725

Backport build fix (FS#55633), rebuild old package

Modified:
  ppp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:52:11 UTC (rev 305724)
+++ PKGBUILD2017-09-17 17:02:42 UTC (rev 305725)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Baechler 
 pkgname=ppp
 pkgver=2.4.7
-pkgrel=2
+pkgrel=3
 pkgdesc="A daemon which implements the Point-to-Point Protocol for dial-up 
networking"
 arch=(i686 x86_64) 
 url="http://www.samba.org/ppp/;
@@ -20,7 +20,8 @@
 ipv6-down
 ipv6-up.d.iface-config.sh
 ppp.systemd
-CVE-2015-3310.patch)
+CVE-2015-3310.patch
+
ppp-build-fix.patch::"https://github.com/paulusmack/ppp/commit/50a2997b.patch;)
 sha256sums=('02e0a3dd3e4799e33103f70ec7df75348c8540966ee7c948e4ed8a42bbccfb30'
 'SKIP'
 'f04f47318226c79594f45b8b75877c30710d22fe0fb1e2e17db3b4257dc4218c'
@@ -33,7 +34,8 @@
 '77292b79f99f97a01aa9a75cd7cd93da70d746d3b8cc60f35b31dfe0568544c0'
 '20780cf4bd0774bebb55ecb3bdae7667c9ae5cbe003a52a1ecb0bbc77d46260f'
 'eb8ab2e2d71c3bb9c4297cf847b6e9d52616a3fdbf2257c479cc43dff318c831'
-'f0fe7e7d9b35141c2565a09e39c4f66b475ed3fe8e2528d10faa4412f480e338')
+'f0fe7e7d9b35141c2565a09e39c4f66b475ed3fe8e2528d10faa4412f480e338'
+'94225c64e806e75d6f792649c4beb26a791c4994c2701dc6a47cfccf3d91e4bf')
 validpgpkeys=('631E179E370CD727A7F2A33A9E4295D605F66CE9') # Paul Mackerras 
(Signing key) 
 
 prepare() {
@@ -41,6 +43,7 @@
 
   patch -p1 -i "${srcdir}/ppp-2.4.6-makefiles.patch"
   patch -p1 -i "${srcdir}/CVE-2015-3310.patch"
+  patch -p1 -i "${srcdir}/ppp-build-fix.patch"
 
   # enable active filter
   sed -i "s:^#FILTER=y:FILTER=y:" pppd/Makefile.linux


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:59:56
  Author: felixonmars
Revision: 258632

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

Added:
  hopenpgp-tools/repos/community-staging-i686/
  hopenpgp-tools/repos/community-staging-i686/PKGBUILD
(from rev 258631, hopenpgp-tools/trunk/PKGBUILD)
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 258631, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-i686/PKGBUILD (from rev 258631, 
hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 16:59:56 UTC (rev 258632)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.5
+pkgrel=8
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-attoparsec"
+ "haskell-base16-bytestring" "haskell-binary-conduit" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-pubkey" "haskell-cryptohash" 
"haskell-errors"
+ "haskell-fgl" "haskell-graphviz" "haskell-hopenpgp" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-types" "haskell-ixset-typed" 
"haskell-lens"
+ "haskell-monad-loops" "haskell-openpgp-asciiarmor" 
"haskell-optparse-applicative"
+ "haskell-resourcet" "haskell-text" "haskell-time-locale-compat" 
"haskell-wl-pprint-extras"
+ "haskell-wl-pprint-terminfo" "haskell-yaml")
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0ecba903607ef27f14c43bf1f6a2383a740c44802dcecf6ac093f41f8d754d77ef6f14e8200316cd2d7e56b8c63934299c521b6693baf1ca219b65485fd6d52a')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
258631, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 16:59:56 UTC (rev 258632)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.5
+pkgrel=8
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-attoparsec"
+ "haskell-base16-bytestring" "haskell-binary-conduit" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-pubkey" "haskell-cryptohash" 
"haskell-errors"
+ "haskell-fgl" "haskell-graphviz" "haskell-hopenpgp" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-types" "haskell-ixset-typed" 
"haskell-lens"
+ "haskell-monad-loops" "haskell-openpgp-asciiarmor" 
"haskell-optparse-applicative"
+ "haskell-resourcet" "haskell-text" "haskell-time-locale-compat" 
"haskell-wl-pprint-extras"
+ "haskell-wl-pprint-terminfo" "haskell-yaml")
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0ecba903607ef27f14c43bf1f6a2383a740c44802dcecf6ac093f41f8d754d77ef6f14e8200316cd2d7e56b8c63934299c521b6693baf1ca219b65485fd6d52a')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:59:23
  Author: felixonmars
Revision: 258631

upgpkg: hopenpgp-tools 0.19.5-8

rebuild with errors,2.2.2

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:55:22 UTC (rev 258630)
+++ PKGBUILD2017-09-17 16:59:23 UTC (rev 258631)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.19.5
-pkgrel=7
+pkgrel=8
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:55:22
  Author: felixonmars
Revision: 258630

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

Added:
  haskell-hopenpgp/repos/community-staging-i686/
  haskell-hopenpgp/repos/community-staging-i686/PKGBUILD
(from rev 258629, haskell-hopenpgp/trunk/PKGBUILD)
  haskell-hopenpgp/repos/community-staging-x86_64/
  haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD
(from rev 258629, haskell-hopenpgp/trunk/PKGBUILD)

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

Copied: haskell-hopenpgp/repos/community-staging-i686/PKGBUILD (from rev 
258629, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 16:55:22 UTC (rev 258630)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=116
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-wl-pprint-extras'
+ 'haskell-zlib')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('f480201a10f14150adc290c81d38e7b6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
258629, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 16:55:22 UTC (rev 258630)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=116
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-wl-pprint-extras'
+ 'haskell-zlib')
+makedepends=('ghc')

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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:54:43
  Author: felixonmars
Revision: 258629

upgpkg: haskell-hopenpgp 2.5.5-116

rebuild with errors,2.2.2

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:50:02 UTC (rev 258628)
+++ PKGBUILD2017-09-17 16:54:43 UTC (rev 258629)
@@ -4,7 +4,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.5.5
-pkgrel=115
+pkgrel=116
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:52:11
  Author: heftig
Revision: 305724

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

Added:
  gdm/repos/gnome-unstable-i686/
  
gdm/repos/gnome-unstable-i686/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
(from rev 305723, 
gdm/trunk/0002-Xsession-Don-t-start-ssh-agent-by-default.patch)
  gdm/repos/gnome-unstable-i686/PKGBUILD
(from rev 305723, gdm/trunk/PKGBUILD)
  gdm/repos/gnome-unstable-i686/gdm.install
(from rev 305723, gdm/trunk/gdm.install)
  gdm/repos/gnome-unstable-i686/gdm.sysusers
(from rev 305723, gdm/trunk/gdm.sysusers)
  gdm/repos/gnome-unstable-x86_64/
  
gdm/repos/gnome-unstable-x86_64/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
(from rev 305723, 
gdm/trunk/0002-Xsession-Don-t-start-ssh-agent-by-default.patch)
  gdm/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305723, gdm/trunk/PKGBUILD)
  gdm/repos/gnome-unstable-x86_64/gdm.install
(from rev 305723, gdm/trunk/gdm.install)
  gdm/repos/gnome-unstable-x86_64/gdm.sysusers
(from rev 305723, gdm/trunk/gdm.sysusers)

+
 gnome-unstable-i686/0002-Xsession-Don-t-start-ssh-agent-by-default.patch   |   
31 +++
 gnome-unstable-i686/PKGBUILD   |   
96 ++
 gnome-unstable-i686/gdm.install|   
 3 
 gnome-unstable-i686/gdm.sysusers   |   
 2 
 gnome-unstable-x86_64/0002-Xsession-Don-t-start-ssh-agent-by-default.patch |   
31 +++
 gnome-unstable-x86_64/PKGBUILD |   
96 ++
 gnome-unstable-x86_64/gdm.install  |   
 3 
 gnome-unstable-x86_64/gdm.sysusers |   
 2 
 8 files changed, 264 insertions(+)

Copied: 
gdm/repos/gnome-unstable-i686/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
 (from rev 305723, 
gdm/trunk/0002-Xsession-Don-t-start-ssh-agent-by-default.patch)
===
--- gnome-unstable-i686/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
(rev 0)
+++ gnome-unstable-i686/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
2017-09-17 16:52:11 UTC (rev 305724)
@@ -0,0 +1,31 @@
+From 8bf4d553ba9e7a5978ed8920ca0b06e624de2eda Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 20 Jun 2015 17:22:38 +0200
+Subject: [PATCH 2/2] Xsession: Don't start ssh-agent by default
+
+---
+ data/Xsession.in | 8 
+ 1 file changed, 8 deletions(-)
+
+diff --git a/data/Xsession.in b/data/Xsession.in
+index f253375..c143b30 100755
+--- a/data/Xsession.in
 b/data/Xsession.in
+@@ -184,14 +184,6 @@ if [ "x$command" = "xdefault" ] ; then
+   fi
+ fi
+ 
+-# add ssh-agent if found
+-sshagent="`gdmwhich ssh-agent`"
+-if [ -n "$sshagent" ] && [ -x "$sshagent" ] && [ -z "$SSH_AUTH_SOCK" ]; then
+-command="$sshagent -- $command"
+-elif [ -z "$sshagent" ] ; then
+-echo "$0: ssh-agent not found!"
+-fi
+-
+ echo "$0: Setup done, will execute: $command"
+ 
+ eval exec $command
+-- 
+2.4.5
+

Copied: gdm/repos/gnome-unstable-i686/PKGBUILD (from rev 305723, 
gdm/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 16:52:11 UTC (rev 305724)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=gdm
+pkgname=(gdm libgdm)
+pkgver=3.26.0+2+gfb3acee6
+pkgrel=1
+pkgdesc="Display manager and login screen"
+arch=(i686 x86_64)
+license=(GPL)
+url="https://wiki.gnome.org/Projects/GDM;
+depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server 
xorg-server-xwayland xorg-xhost)
+makedepends=(yelp-tools intltool gobject-introspection git)
+checkdepends=(check)
+_commit=fb3acee665183c348df73469c12790f497ac50b4  # master
+source=("git+https://git.gnome.org/browse/gdm#commit=$_commit;
+0002-Xsession-Don-t-start-ssh-agent-by-default.patch
+gdm.sysusers)
+sha256sums=('SKIP'
+'9449da0b6ee58aa3fde65e6d8d1f30513e4176a7dc6d176f17f320ce82cb1d82'
+'6d9c8e38c7de85b6ec75e488585b8c451f5d9b4fabd2a42921dc3bfcc4aa3e13')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  patch -Np1 -i ../0002-Xsession-Don-t-start-ssh-agent-by-default.patch
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/gdm \
+--localstatedir=/var \
+--disable-static \
+--disable-schemas-compile \
+--enable-gdm-xsession \
+--enable-ipv6 \
+ 

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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:51:32
  Author: heftig
Revision: 305723

3.26.0+2+gfb3acee6-1

Added:
  gdm/trunk/gdm.sysusers
Modified:
  gdm/trunk/PKGBUILD
  gdm/trunk/gdm.install

--+
 PKGBUILD |   18 +++---
 gdm.install  |6 +-
 gdm.sysusers |2 ++
 3 files changed, 14 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:34:40 UTC (rev 305722)
+++ PKGBUILD2017-09-17 16:51:32 UTC (rev 305723)
@@ -4,7 +4,7 @@
 
 pkgbase=gdm
 pkgname=(gdm libgdm)
-pkgver=3.24.2
+pkgver=3.26.0+2+gfb3acee6
 pkgrel=1
 pkgdesc="Display manager and login screen"
 arch=(i686 x86_64)
@@ -12,12 +12,14 @@
 url="https://wiki.gnome.org/Projects/GDM;
 depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server 
xorg-server-xwayland xorg-xhost)
 makedepends=(yelp-tools intltool gobject-introspection git)
-checkdepends=('check')
-_commit=147bbd9f0502f389385a579b0871da62221e96bc  # tags/3.24.2^0
+checkdepends=(check)
+_commit=fb3acee665183c348df73469c12790f497ac50b4  # master
 source=("git+https://git.gnome.org/browse/gdm#commit=$_commit;
-0002-Xsession-Don-t-start-ssh-agent-by-default.patch)
+0002-Xsession-Don-t-start-ssh-agent-by-default.patch
+gdm.sysusers)
 sha256sums=('SKIP'
-'9449da0b6ee58aa3fde65e6d8d1f30513e4176a7dc6d176f17f320ce82cb1d82')
+'9449da0b6ee58aa3fde65e6d8d1f30513e4176a7dc6d176f17f320ce82cb1d82'
+'6d9c8e38c7de85b6ec75e488585b8c451f5d9b4fabd2a42921dc3bfcc4aa3e13')
 
 pkgver() {
   cd $pkgbase
@@ -76,6 +78,8 @@
   # Unused or created at start
   rm -r "$pkgdir"/var/{cache,log,run}
 
+  install -Dm644 ../gdm.sysusers "$pkgdir/usr/lib/sysusers.d/gdm.conf"
+
 ### Split libgdm
   make -C libgdm DESTDIR="$pkgdir" uninstall
   mv "$pkgdir/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml" 
"$srcdir"
@@ -87,6 +91,6 @@
 
   cd $pkgbase
   make -C libgdm DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/org.gnome.login-screen.gschema.xml" \
-"$pkgdir/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml"
+  install -Dt "$pkgdir/usr/share/glib-2.0/schemas" -m644 \
+"$srcdir/org.gnome.login-screen.gschema.xml"
 }

Modified: gdm.install
===
--- gdm.install 2017-09-17 16:34:40 UTC (rev 305722)
+++ gdm.install 2017-09-17 16:51:32 UTC (rev 305723)
@@ -1,7 +1,3 @@
 post_install() {
-  if ! getent passwd gdm >/dev/null; then
-groupadd -g 120 gdm
-useradd -c 'Gnome Display Manager' -u 120 -g gdm -d /var/lib/gdm -s 
/sbin/nologin gdm
-passwd -ql gdm
-  fi
+  systemd-sysusers gdm.conf
 }

Added: gdm.sysusers
===
--- gdm.sysusers(rev 0)
+++ gdm.sysusers2017-09-17 16:51:32 UTC (rev 305723)
@@ -0,0 +1,2 @@
+g gdm 120 -
+u gdm 120 "Gnome Display Manager" /var/lib/gdm


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:50:02
  Author: felixonmars
Revision: 258628

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

Added:
  haskell-errors/repos/community-staging-i686/
  haskell-errors/repos/community-staging-i686/PKGBUILD
(from rev 258627, haskell-errors/trunk/PKGBUILD)
  haskell-errors/repos/community-staging-x86_64/
  haskell-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 258627, haskell-errors/trunk/PKGBUILD)

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

Copied: haskell-errors/repos/community-staging-i686/PKGBUILD (from rev 258627, 
haskell-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 16:50:02 UTC (rev 258628)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=errors
+pkgname=haskell-errors
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="Simplified error-handling"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-exceptions" "haskell-safe" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-unexceptionalio")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ed84f3d76a81dabc75a84e78a31c3756ac5bd21897d7f9b1ab70df3ca5fccc7b0cdc27e0747e10eac2fd81f92527daaa525454702370d1841ded52eaf921fd4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-errors/repos/community-staging-x86_64/PKGBUILD (from rev 
258627, haskell-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 16:50:02 UTC (rev 258628)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=errors
+pkgname=haskell-errors
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="Simplified error-handling"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-exceptions" "haskell-safe" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-unexceptionalio")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ed84f3d76a81dabc75a84e78a31c3756ac5bd21897d7f9b1ab70df3ca5fccc7b0cdc27e0747e10eac2fd81f92527daaa525454702370d1841ded52eaf921fd4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" 

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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:49:31
  Author: felixonmars
Revision: 258627

upgpkg: haskell-errors 2.2.2-1

rebuild with errors,2.2.2

Modified:
  haskell-errors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:47:38 UTC (rev 258626)
+++ PKGBUILD2017-09-17 16:49:31 UTC (rev 258627)
@@ -4,8 +4,8 @@
 
 _hkgname=errors
 pkgname=haskell-errors
-pkgver=2.2.1
-pkgrel=2
+pkgver=2.2.2
+pkgrel=1
 pkgdesc="Simplified error-handling"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")
@@ -14,7 +14,7 @@
  "haskell-unexceptionalio")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('fe4672d24046af3a1119b1378ed704c6310da6976b8470f896281010d4e54f616515a3042673600bd405e412cae2635d013ffa2c3772b1a98179e2d3c4741f50')
+sha512sums=('7ed84f3d76a81dabc75a84e78a31c3756ac5bd21897d7f9b1ab70df3ca5fccc7b0cdc27e0747e10eac2fd81f92527daaa525454702370d1841ded52eaf921fd4')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in haskell-open-browser/repos (4 files)

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:47:38
  Author: felixonmars
Revision: 258626

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

Added:
  haskell-open-browser/repos/community-i686/PKGBUILD
(from rev 258625, haskell-open-browser/trunk/PKGBUILD)
  haskell-open-browser/repos/community-x86_64/PKGBUILD
(from rev 258625, haskell-open-browser/trunk/PKGBUILD)
Deleted:
  haskell-open-browser/repos/community-i686/PKGBUILD
  haskell-open-browser/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   42 -
 community-x86_64/PKGBUILD |   42 -
 3 files changed, 88 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 16:47:01 UTC (rev 258625)
+++ community-i686/PKGBUILD 2017-09-17 16:47:38 UTC (rev 258626)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=open-browser
-pkgname=haskell-open-browser
-pkgver=0.2.1.0
-pkgrel=4
-pkgdesc="Open a web browser from Haskell."
-url="https://github.com/rightfold/open-browser;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('ghc-libs')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66')
-
-build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
-install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-
-# Remove static libs
-find "$pkgdir"/usr/lib -name "*.a" -delete
-}

Copied: haskell-open-browser/repos/community-i686/PKGBUILD (from rev 258625, 
haskell-open-browser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 16:47:38 UTC (rev 258626)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=open-browser
+pkgname=haskell-open-browser
+pkgver=0.2.1.0
+pkgrel=5
+pkgdesc="Open a web browser from Haskell."
+url="https://github.com/rightfold/open-browser;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+
+mv "$pkgdir"/usr/bin/{,open-browser-}example
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 16:47:01 UTC (rev 258625)
+++ community-x86_64/PKGBUILD   2017-09-17 16:47:38 UTC (rev 258626)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# 

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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:47:01
  Author: felixonmars
Revision: 258625

upgpkg: haskell-open-browser 0.2.1.0-5

fix file conflict

Modified:
  haskell-open-browser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:44:01 UTC (rev 258624)
+++ PKGBUILD2017-09-17 16:47:01 UTC (rev 258625)
@@ -5,7 +5,7 @@
 _hkgname=open-browser
 pkgname=haskell-open-browser
 pkgver=0.2.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Open a web browser from Haskell."
 url="https://github.com/rightfold/open-browser;
 license=("custom:BSD3")
@@ -39,4 +39,6 @@
 
 # Remove static libs
 find "$pkgdir"/usr/lib -name "*.a" -delete
+
+mv "$pkgdir"/usr/bin/{,open-browser-}example
 }


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:44:01
  Author: felixonmars
Revision: 258624

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

Added:
  haskell-jose/repos/community-i686/PKGBUILD
(from rev 258623, haskell-jose/trunk/PKGBUILD)
  haskell-jose/repos/community-x86_64/PKGBUILD
(from rev 258623, haskell-jose/trunk/PKGBUILD)
Deleted:
  haskell-jose/repos/community-i686/PKGBUILD
  haskell-jose/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   94 
 community-i686/PKGBUILD   |   45 -
 community-x86_64/PKGBUILD |   45 -
 3 files changed, 94 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 16:43:24 UTC (rev 258623)
+++ community-i686/PKGBUILD 2017-09-17 16:44:01 UTC (rev 258624)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=jose
-pkgname=haskell-jose
-pkgver=0.6.0.3
-pkgrel=1
-pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
-url="https://github.com/frasertweedale/hs-jose;
-license=("Apache")
-arch=('i686' 'x86_64')
-depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
- 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
- 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
- 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
- 'haskell-x509' 'haskell-vector')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
-
-build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
-install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-runhaskell Setup copy --destdir="${pkgdir}"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-
-# Remove static libs
-find "$pkgdir"/usr/lib -name "*.a" -delete
-}

Copied: haskell-jose/repos/community-i686/PKGBUILD (from rev 258623, 
haskell-jose/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 16:44:01 UTC (rev 258624)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.6.0.3
+pkgrel=2
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
+ 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
+ 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-x509' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 

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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 16:43:24
  Author: felixonmars
Revision: 258623

upgpkg: haskell-jose 0.6.0.3-2

fix file conflict

Modified:
  haskell-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 15:03:51 UTC (rev 258622)
+++ PKGBUILD2017-09-17 16:43:24 UTC (rev 258623)
@@ -5,7 +5,7 @@
 _hkgname=jose
 pkgname=haskell-jose
 pkgver=0.6.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
 url="https://github.com/frasertweedale/hs-jose;
 license=("Apache")
@@ -42,4 +42,6 @@
 
 # Remove static libs
 find "$pkgdir"/usr/lib -name "*.a" -delete
+
+mv "$pkgdir"/usr/bin/{,jose-}example
 }


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:34:40
  Author: heftig
Revision: 305722

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

Added:
  gnome-themes-standard/repos/gnome-unstable-i686/
  gnome-themes-standard/repos/gnome-unstable-i686/PKGBUILD
(from rev 305721, gnome-themes-standard/trunk/PKGBUILD)
  gnome-themes-standard/repos/gnome-unstable-x86_64/
  gnome-themes-standard/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305721, gnome-themes-standard/trunk/PKGBUILD)

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

Copied: gnome-themes-standard/repos/gnome-unstable-i686/PKGBUILD (from rev 
305721, gnome-themes-standard/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 16:34:40 UTC (rev 305722)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-themes-standard
+pkgver=3.22.3+13+ga993fdc0
+pkgrel=1
+pkgdesc="Standard Themes for GNOME Applications"
+url="https://git.gnome.org/browse/gnome-themes-standard;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(cantarell-fonts ttf-dejavu librsvg)
+makedepends=(intltool gtk2 gtk3 gnome-common git)
+optdepends=('gtk-engines: HighContrast GTK2 theme')
+groups=(gnome)
+options=(!emptydirs)
+_commit=a993fdc050a001fe7880b29155908772f874efb4  # master
+source=("git+https://git.gnome.org/browse/gnome-themes-standard#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gnome-themes-standard/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
305721, gnome-themes-standard/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 16:34:40 UTC (rev 305722)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-themes-standard
+pkgver=3.22.3+13+ga993fdc0
+pkgrel=1
+pkgdesc="Standard Themes for GNOME Applications"
+url="https://git.gnome.org/browse/gnome-themes-standard;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(cantarell-fonts ttf-dejavu librsvg)
+makedepends=(intltool gtk2 gtk3 gnome-common git)
+optdepends=('gtk-engines: HighContrast GTK2 theme')
+groups=(gnome)
+options=(!emptydirs)
+_commit=a993fdc050a001fe7880b29155908772f874efb4  # master
+source=("git+https://git.gnome.org/browse/gnome-themes-standard#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:33:41
  Author: heftig
Revision: 305721

3.22.3+13+ga993fdc0-1

Modified:
  gnome-themes-standard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:29:29 UTC (rev 305720)
+++ PKGBUILD2017-09-17 16:33:41 UTC (rev 305721)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-themes-standard
-pkgver=3.22.3
+pkgver=3.22.3+13+ga993fdc0
 pkgrel=1
 pkgdesc="Standard Themes for GNOME Applications"
 url="https://git.gnome.org/browse/gnome-themes-standard;
@@ -13,7 +13,7 @@
 optdepends=('gtk-engines: HighContrast GTK2 theme')
 groups=(gnome)
 options=(!emptydirs)
-_commit=015785c53c37912bc6266c9cf107a0d1c8816d51  # tags/3.22.3^0
+_commit=a993fdc050a001fe7880b29155908772f874efb4  # master
 
source=("git+https://git.gnome.org/browse/gnome-themes-standard#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:29:29
  Author: heftig
Revision: 305720

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

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

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

Copied: gnome-session/repos/gnome-unstable-i686/PKGBUILD (from rev 305719, 
gnome-session/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 16:29:29 UTC (rev 305720)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-session
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="The GNOME Session Handler"
+url="https://git.gnome.org/browse/gnome-session;
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
+ json-glib libgl libsm libxtst systemd)
+makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
+groups=(gnome)
+_commit=f289a01ad10bfac6e6df9cc6c6db138fd4beda94  # tags/3.26.0^0
+source=("git+https://git.gnome.org/browse/gnome-session#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-session/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305719, 
gnome-session/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 16:29:29 UTC (rev 305720)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-session
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="The GNOME Session Handler"
+url="https://git.gnome.org/browse/gnome-session;
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
+ json-glib libgl libsm libxtst systemd)
+makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
+groups=(gnome)
+_commit=f289a01ad10bfac6e6df9cc6c6db138fd4beda94  # tags/3.26.0^0
+source=("git+https://git.gnome.org/browse/gnome-session#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:28:57
  Author: heftig
Revision: 305719

3.26.0-1

Modified:
  gnome-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:27:11 UTC (rev 305718)
+++ PKGBUILD2017-09-17 16:28:57 UTC (rev 305719)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-session
-pkgver=3.24.1
+pkgver=3.26.0
 pkgrel=1
 pkgdesc="The GNOME Session Handler"
 url="https://git.gnome.org/browse/gnome-session;
@@ -12,7 +12,7 @@
  json-glib libgl libsm libxtst systemd)
 makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
 groups=(gnome)
-_commit=6fec14cb8802105e68116e167ad10ca68548767f  # tags/3.24.1^0
+_commit=f289a01ad10bfac6e6df9cc6c6db138fd4beda94  # tags/3.26.0^0
 source=("git+https://git.gnome.org/browse/gnome-session#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:27:11
  Author: heftig
Revision: 305718

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

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

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

Copied: gnome-menus/repos/gnome-unstable-i686/PKGBUILD (from rev 305717, 
gnome-menus/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 16:27:11 UTC (rev 305718)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-menus
+pkgver=3.13.3+29+g7f0844e
+pkgrel=1
+pkgdesc="GNOME menu specifications"
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' git gnome-common)
+license=('GPL' 'LGPL')
+url="https://www.gnome.org;
+_commit=7f0844e1c933249faccb3999aacaf44b155813e4  # master
+source=("git+https://git.gnome.org/browse/gnome-menus#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure \
+  --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var  --disable-static
+  make
+}
+
+package(){
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-menus/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305717, 
gnome-menus/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 16:27:11 UTC (rev 305718)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-menus
+pkgver=3.13.3+29+g7f0844e
+pkgrel=1
+pkgdesc="GNOME menu specifications"
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' git gnome-common)
+license=('GPL' 'LGPL')
+url="https://www.gnome.org;
+_commit=7f0844e1c933249faccb3999aacaf44b155813e4  # master
+source=("git+https://git.gnome.org/browse/gnome-menus#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure \
+  --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var  --disable-static
+  make
+}
+
+package(){
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:26:49
  Author: heftig
Revision: 305717

3.13.3+29+g7f0844e-1

Modified:
  gnome-menus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:22:45 UTC (rev 305716)
+++ PKGBUILD2017-09-17 16:26:49 UTC (rev 305717)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-menus
-pkgver=3.13.3+27+g69656ff
+pkgver=3.13.3+29+g7f0844e
 pkgrel=1
 pkgdesc="GNOME menu specifications"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 makedepends=('intltool' 'gobject-introspection' 'python2' git gnome-common)
 license=('GPL' 'LGPL')
 url="https://www.gnome.org;
-_commit=69656ff5f11be5d37fbcff3e222b2fae4afe2f68  # master
+_commit=7f0844e1c933249faccb3999aacaf44b155813e4  # master
 source=("git+https://git.gnome.org/browse/gnome-menus#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:22:45
  Author: heftig
Revision: 305716

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

Added:
  mutter/repos/gnome-unstable-i686/
  mutter/repos/gnome-unstable-i686/PKGBUILD
(from rev 305715, mutter/trunk/PKGBUILD)
  mutter/repos/gnome-unstable-i686/startup-notification.patch
(from rev 305715, mutter/trunk/startup-notification.patch)
  mutter/repos/gnome-unstable-x86_64/
  mutter/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305715, mutter/trunk/PKGBUILD)
  mutter/repos/gnome-unstable-x86_64/startup-notification.patch
(from rev 305715, mutter/trunk/startup-notification.patch)

--+
 gnome-unstable-i686/PKGBUILD |   57 +
 gnome-unstable-i686/startup-notification.patch   |   45 
 gnome-unstable-x86_64/PKGBUILD   |   57 +
 gnome-unstable-x86_64/startup-notification.patch |   45 
 4 files changed, 204 insertions(+)

Copied: mutter/repos/gnome-unstable-i686/PKGBUILD (from rev 305715, 
mutter/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 16:22:45 UTC (rev 305716)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=3.26.0+6+g26cd031be
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+url="https://git.gnome.org/browse/mutter;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
+ libcanberra startup-notification zenity libsm gnome-desktop upower
+ libxkbcommon-x11 gnome-settings-daemon libgudev libinput)
+makedepends=(intltool gobject-introspection git gnome-common)
+groups=(gnome)
+options=(!emptydirs)
+_commit=26cd031be8b675bd89fc4582e0e4c6af81d7  # master
+source=("git+https://git.gnome.org/browse/mutter#commit=$_commit;
+startup-notification.patch)
+sha256sums=('SKIP'
+'5a35ca4794fc361219658d9fae24a3ca21a365f2cb1901702961ac869c759366')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/51940
+  patch -Np1 -i ../startup-notification.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum \
+  --enable-gtk-doc --enable-egl-device
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
+  -i {.,cogl,clutter}/libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: mutter/repos/gnome-unstable-i686/startup-notification.patch (from rev 
305715, mutter/trunk/startup-notification.patch)
===
--- gnome-unstable-i686/startup-notification.patch  
(rev 0)
+++ gnome-unstable-i686/startup-notification.patch  2017-09-17 16:22:45 UTC 
(rev 305716)
@@ -0,0 +1,45 @@
+From 4ed430b4ef3013c96fa56cdc57b925b42d20ead9 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Florian=20M=C3=BCllner?= 
+Date: Thu, 20 Oct 2016 18:00:04 +0200
+Subject: [PATCH] gtk-shell: Work around non-working startup notifications
+
+GNOME Shell relies on the MetaScreen::startup-sequence-changed signal,
+which is tied to (lib)startup-notification and therefore X11. As a result,
+when we remove the startup sequence of a wayland client, GNOME Shell will
+not be notified about this until startup-notification's timeout is hit.
+As a temporary stop-gap, go through XWayland even for wayland clients,
+so that the signal is emitted when expected.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=768531
+---
+ src/wayland/meta-wayland-gtk-shell.c | 10 ++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/src/wayland/meta-wayland-gtk-shell.c 
b/src/wayland/meta-wayland-gtk-shell.c
+index d6e249f..9d1a19e 100644
+--- a/src/wayland/meta-wayland-gtk-shell.c
 b/src/wayland/meta-wayland-gtk-shell.c
+@@ -219,11 +219,21 @@ gtk_shell_set_startup_id (struct wl_client   *client,
+   struct wl_resource *resource,
+   const char *startup_id)
+ {
++#if 0
+   MetaDisplay *display;
+ 
+   display = meta_get_display ();
+   meta_startup_notification_remove_sequence (display->startup_notification,
+  startup_id);
++#else
++  /* HACK: MetaScreen::startup-sequence-changed is currently tied to
++   (lib)startup-notification, which means it only 

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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:21:48
  Author: heftig
Revision: 305715

3.26.0+6+g26cd031be-1

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 16:15:30 UTC (rev 305714)
+++ PKGBUILD2017-09-17 16:21:48 UTC (rev 305715)
@@ -4,7 +4,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=3.24.4
+pkgver=3.26.0+6+g26cd031be
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 url="https://git.gnome.org/browse/mutter;
@@ -16,7 +16,7 @@
 makedepends=(intltool gobject-introspection git gnome-common)
 groups=(gnome)
 options=(!emptydirs)
-_commit=4c3e166469b724ff1b3c232473b1dacca2a42fe4  # tags/3.24.4^0
+_commit=26cd031be8b675bd89fc4582e0e4c6af81d7  # master
 source=("git+https://git.gnome.org/browse/mutter#commit=$_commit;
 startup-notification.patch)
 sha256sums=('SKIP'


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:15:30
  Author: heftig
Revision: 305714

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

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

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

Copied: libgudev/repos/gnome-unstable-i686/PKGBUILD (from rev 305713, 
libgudev/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 16:15:30 UTC (rev 305714)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=libgudev
+pkgver=232
+pkgrel=1
+pkgdesc="GObject bindings for libudev"
+url="https://wiki.gnome.org/Projects/libgudev;
+arch=(i686 x86_64)
+license=(LGPL2.1)
+depends=(libsystemd glib2)
+makedepends=(systemd gobject-introspection gtk-doc git gnome-common)
+provides=(libgudev-1.0.so)
+_commit=58eb745d8c4fb06b35706c2c997313235dccb1fc  # tags/232^0
+source=("git+https://git.gnome.org/browse/libgudev#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--enable-gtk-doc \
+--disable-umockdev
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' -i libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libgudev/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305713, 
libgudev/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 16:15:30 UTC (rev 305714)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=libgudev
+pkgver=232
+pkgrel=1
+pkgdesc="GObject bindings for libudev"
+url="https://wiki.gnome.org/Projects/libgudev;
+arch=(i686 x86_64)
+license=(LGPL2.1)
+depends=(libsystemd glib2)
+makedepends=(systemd gobject-introspection gtk-doc git gnome-common)
+provides=(libgudev-1.0.so)
+_commit=58eb745d8c4fb06b35706c2c997313235dccb1fc  # tags/232^0
+source=("git+https://git.gnome.org/browse/libgudev#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--enable-gtk-doc \
+--disable-umockdev
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' -i libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 16:15:05
  Author: heftig
Revision: 305713

232-1

Modified:
  libgudev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 15:29:04 UTC (rev 305712)
+++ PKGBUILD2017-09-17 16:15:05 UTC (rev 305713)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=libgudev
-pkgver=231+1+g0841288
+pkgver=232
 pkgrel=1
 pkgdesc="GObject bindings for libudev"
 url="https://wiki.gnome.org/Projects/libgudev;
@@ -11,7 +11,7 @@
 depends=(libsystemd glib2)
 makedepends=(systemd gobject-introspection gtk-doc git gnome-common)
 provides=(libgudev-1.0.so)
-_commit=08412886f840603db9127d3d66ecbc1cc2326f43  # master
+_commit=58eb745d8c4fb06b35706c2c997313235dccb1fc  # tags/232^0
 source=("git+https://git.gnome.org/browse/libgudev#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -36,6 +36,7 @@
 --prefix=/usr \
 --enable-gtk-doc \
 --disable-umockdev
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' -i libtool
   make
 }
 


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 15:29:04
  Author: heftig
Revision: 305712

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

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

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

Copied: zenity/repos/gnome-unstable-i686/PKGBUILD (from rev 305711, 
zenity/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-17 15:29:04 UTC (rev 305712)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=zenity
+pkgver=3.24.2
+pkgrel=1
+pkgdesc="Display graphical dialog boxes from shell scripts"
+url="https://git.gnome.org/browse/zenity;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(webkit2gtk libnotify)
+makedepends=(itstool yelp-tools gettext gnome-common git)
+_commit=3496685dd5bd49c0cce99bdc0753a468bf8e464c  # tags/ZENITY_3_24_2^0
+source=("git+https://git.gnome.org/browse/zenity#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^ZENITY_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Copied: zenity/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305711, 
zenity/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-17 15:29:04 UTC (rev 305712)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=zenity
+pkgver=3.24.2
+pkgrel=1
+pkgdesc="Display graphical dialog boxes from shell scripts"
+url="https://git.gnome.org/browse/zenity;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(webkit2gtk libnotify)
+makedepends=(itstool yelp-tools gettext gnome-common git)
+_commit=3496685dd5bd49c0cce99bdc0753a468bf8e464c  # tags/ZENITY_3_24_2^0
+source=("git+https://git.gnome.org/browse/zenity#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^ZENITY_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 15:25:31
  Author: heftig
Revision: 305711

3.24.2-1

Modified:
  zenity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 15:18:08 UTC (rev 305710)
+++ PKGBUILD2017-09-17 15:25:31 UTC (rev 305711)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=zenity
-pkgver=3.24.0
+pkgver=3.24.2
 pkgrel=1
 pkgdesc="Display graphical dialog boxes from shell scripts"
 url="https://git.gnome.org/browse/zenity;
@@ -10,7 +10,7 @@
 license=(LGPL)
 depends=(webkit2gtk libnotify)
 makedepends=(itstool yelp-tools gettext gnome-common git)
-_commit=0b990c541c202412cb3a4120199af154094dfeac  # tags/3.24.0^0
+_commit=3496685dd5bd49c0cce99bdc0753a468bf8e464c  # tags/ZENITY_3_24_2^0
 source=("git+https://git.gnome.org/browse/zenity#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-09-17 Thread Jan Steffens
Date: Sunday, September 17, 2017 @ 15:18:08
  Author: heftig
Revision: 305710

maintainer

Modified:
  gsettings-desktop-schemas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 13:45:04 UTC (rev 305709)
+++ PKGBUILD2017-09-17 15:18:08 UTC (rev 305710)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer : Ionut Biru 
+# Contributor: Ionut Biru 
 # Contributor: Jaroslav Lichtblau 
 # Contributor: Adam Hani Schakaki (krzd) 
 


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 15:03:51
  Author: felixonmars
Revision: 258622

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

Added:
  python-ruamel-yaml/repos/community-i686/PKGBUILD
(from rev 258621, python-ruamel-yaml/trunk/PKGBUILD)
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 258621, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-i686/PKGBUILD
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 15:03:14 UTC (rev 258621)
+++ community-i686/PKGBUILD 2017-09-17 15:03:51 UTC (rev 258622)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.33
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('b154ed4f320fd62fd0eff36f3600b31f33c783d07baeedff0173b3cc3d976cdece11e52664a281fc52dfa295c97d75a755a42cd9f1fa349b6c90fe463b3d9958')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-i686/PKGBUILD (from rev 258621, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 15:03:51 UTC (rev 258622)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.15.34
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('f5ae2c590f5570b40d4c05ee86eaf326d210897f6d27fecefd1a43de2dcb7189d181572cf24df370d78568622822df193e4126c1d42ae4a528eba8f281272545')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 15:03:14 UTC (rev 258621)
+++ community-x86_64/PKGBUILD   2017-09-17 15:03:51 UTC (rev 258622)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.33
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('b154ed4f320fd62fd0eff36f3600b31f33c783d07baeedff0173b3cc3d976cdece11e52664a281fc52dfa295c97d75a755a42cd9f1fa349b6c90fe463b3d9958')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 258621, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 15:03:51 UTC (rev 258622)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.15.34
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')

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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 15:03:14
  Author: felixonmars
Revision: 258621

upgpkg: python-ruamel-yaml 0.15.34-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 15:02:53 UTC (rev 258620)
+++ PKGBUILD2017-09-17 15:03:14 UTC (rev 258621)
@@ -4,7 +4,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.33
+pkgver=0.15.34
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('b154ed4f320fd62fd0eff36f3600b31f33c783d07baeedff0173b3cc3d976cdece11e52664a281fc52dfa295c97d75a755a42cd9f1fa349b6c90fe463b3d9958')
+sha512sums=('f5ae2c590f5570b40d4c05ee86eaf326d210897f6d27fecefd1a43de2dcb7189d181572cf24df370d78568622822df193e4126c1d42ae4a528eba8f281272545')
 
 package() {
   depends=('python')


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 15:02:53
  Author: felixonmars
Revision: 258620

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-17 15:02:28 UTC (rev 258619)
+++ PKGBUILD2017-09-17 15:02:53 UTC (rev 258620)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-daiquiri
-pkgname=('python-daiquiri' 'python2-daiquiri')
-pkgver=1.2.2
-pkgrel=1
-pkgdesc='Library to configure Python logging easily'
-arch=('any')
-license=('Apache')
-url='https://github.com/jd/daiquiri'
-makedepends=('python-pbr' 'python2-pbr')
-checkdepends=('python-testrepository' 'python2-testrepository' 
'python-testtools'
-  'python2-testtools' 'python-json-logger' 'python2-json-logger')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/jd/daiquiri/archive/$pkgver.tar.gz;)
-sha512sums=('4b030f4b5efe0da596fe88b0c5ef175ae4ea82432b31d76a0298d4937a9375c26a79d730fbbba8fa583dff53d49bf46e71793ef1a5de93d36719b7fa03db8f65')
-
-prepare() {
-  cp -a daiquiri-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/daiquiri-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/daiquiri-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/daiquiri-$pkgver
-  python setup.py testr
-
-  cd "$srcdir"/daiquiri-$pkgver-py2
-  python2 setup.py testr
-}
-
-package_python-daiquiri() {
-  depends=('python')
-  optdepends=('python-json-logger: For JSON support')
-
-  cd daiquiri-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-daiquiri() {
-  depends=('python2')
-  optdepends=('python2-json-logger: For JSON support')
-
-  cd daiquiri-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-daiquiri/repos/community-any/PKGBUILD (from rev 258619, 
python-daiquiri/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-17 15:02:53 UTC (rev 258620)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-daiquiri
+pkgname=('python-daiquiri' 'python2-daiquiri')
+pkgver=1.3.0
+pkgrel=1
+pkgdesc='Library to configure Python logging easily'
+arch=('any')
+license=('Apache')
+url='https://github.com/jd/daiquiri'
+makedepends=('python-pbr' 'python2-pbr')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-testtools'
+  'python2-testtools' 'python-json-logger' 'python2-json-logger')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/jd/daiquiri/archive/$pkgver.tar.gz;)
+sha512sums=('858536bdff836655a6a3e5bdbfe125d3ced74ae19a3931450a0b7253d234ca74492a258cab8a45d75c0ca7b955970b439c786c1ab59d7901377fae7047b5cf35')
+
+prepare() {
+  cp -a daiquiri-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/daiquiri-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/daiquiri-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/daiquiri-$pkgver
+  python setup.py testr
+
+  cd "$srcdir"/daiquiri-$pkgver-py2
+  python2 setup.py testr
+}
+
+package_python-daiquiri() {
+  depends=('python')
+  optdepends=('python-json-logger: For JSON support')
+
+  cd daiquiri-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-daiquiri() {
+  depends=('python2')
+  optdepends=('python2-json-logger: For JSON support')
+
+  cd daiquiri-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 15:02:28
  Author: felixonmars
Revision: 258619

upgpkg: python-daiquiri 1.3.0-1

Modified:
  python-daiquiri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 14:56:16 UTC (rev 258618)
+++ PKGBUILD2017-09-17 15:02:28 UTC (rev 258619)
@@ -3,7 +3,7 @@
 
 pkgbase=python-daiquiri
 pkgname=('python-daiquiri' 'python2-daiquiri')
-pkgver=1.2.2
+pkgver=1.3.0
 pkgrel=1
 pkgdesc='Library to configure Python logging easily'
 arch=('any')
@@ -13,7 +13,7 @@
 checkdepends=('python-testrepository' 'python2-testrepository' 
'python-testtools'
   'python2-testtools' 'python-json-logger' 'python2-json-logger')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/jd/daiquiri/archive/$pkgver.tar.gz;)
-sha512sums=('4b030f4b5efe0da596fe88b0c5ef175ae4ea82432b31d76a0298d4937a9375c26a79d730fbbba8fa583dff53d49bf46e71793ef1a5de93d36719b7fa03db8f65')
+sha512sums=('858536bdff836655a6a3e5bdbfe125d3ced74ae19a3931450a0b7253d234ca74492a258cab8a45d75c0ca7b955970b439c786c1ab59d7901377fae7047b5cf35')
 
 prepare() {
   cp -a daiquiri-$pkgver{,-py2}


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 14:55:50
  Author: felixonmars
Revision: 258617

upgpkg: uglify-js 3.1.1-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 12:35:23 UTC (rev 258616)
+++ PKGBUILD2017-09-17 14:55:50 UTC (rev 258617)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.1.0
+pkgver=3.1.1
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('3c6517b93279024adf3ecca0d0bf7f2c3f815989bd7de56781b5a95b96e0ed0dc1ee1a83337c73d34b4d6f2e326340aa8eb2d317a08ff70a5bfda3484d1b925e')
+sha512sums=('7fb0e998482dfd16002b343371f6a19f7258647a1b0f04d909af288b10bba70795184222cd35f691361d35671d934d31b0c26a52123c44301af475c75c684dc4')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-09-17 Thread Felix Yan
Date: Sunday, September 17, 2017 @ 14:56:16
  Author: felixonmars
Revision: 258618

archrelease: copy trunk to community-any

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

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

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

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

Deleted: uglify-js.install
===
--- uglify-js.install   2017-09-17 14:55:50 UTC (rev 258617)
+++ uglify-js.install   2017-09-17 14:56:16 UTC (rev 258618)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 258617, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2017-09-17 14:56:16 UTC (rev 258618)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2017-09-17 Thread Thomas Bächler
Date: Sunday, September 17, 2017 @ 13:45:04
  Author: thomas
Revision: 305709

archrelease: copy trunk to testing-any

Added:
  ovmf/repos/testing-any/
  ovmf/repos/testing-any/PKGBUILD
(from rev 305708, ovmf/trunk/PKGBUILD)

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

Copied: ovmf/repos/testing-any/PKGBUILD (from rev 305708, ovmf/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-09-17 13:45:04 UTC (rev 305709)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+pkgname=ovmf
+pkgver=r22345.bec7a86c70
+epoch=1
+pkgrel=1
+arch=('any')
+pkgdesc="Tianocore UEFI firmware for qemu."
+url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2;
+license=('custom')
+makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww')
+source=('edk2::git+https://github.com/tianocore/edk2#commit=bec7a86c70398e774eb90511d7d5a370e23ad0dd')
+sha256sums=('SKIP')
+options=(!makeflags)
+_toolchain_opt=GCC5
+
+pkgver() {
+  cd "${srcdir}"/edk2
+  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+prepare() {
+  cd "${srcdir}"
+  # edk2 uses python everywhere, but expects python2
+  mkdir -p bin
+  ln -sf /usr/bin/python2 bin/python
+}
+
+build() {
+  if [ "$CARCH" != "x86_64" ]; then
+error "This package must be built under the x86_64 architecture."
+false
+  fi
+  export PATH="${srcdir}/bin:$PATH"
+  cd "${srcdir}/"edk2
+  make -C BaseTools
+  export EDK_TOOLS_PATH="${srcdir}"/edk2/BaseTools
+  . edksetup.sh BaseTools
+
+  # Set RELEASE target, toolchain and number of build threads
+  sed "s|^TARGET[ ]*=.*|TARGET = RELEASE|; \
+   s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = ${_toolchain_opt}|; \
+   s|MAX_CONCURRENT_THREAD_NUMBER[ ]*=.*|MAX_CONCURRENT_THREAD_NUMBER = 
$(nproc)|;" -i Conf/target.txt
+  # Build OVMF for ia32
+  #sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \
+  # s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" 
-i Conf/target.txt
+  #./BaseTools/BinWrappers/PosixLike/build
+  # Build OVMF for x64
+  sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = X64|; \
+   s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc|;" 
-i Conf/target.txt
+  ./BaseTools/BinWrappers/PosixLike/build
+}
+
+package() {
+  #install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/ia32/OVMF_CODE.fd
+  #install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/ia32/OVMF_VARS.fd
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/x64/OVMF_CODE.fd
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/x64/OVMF_VARS.fd
+  install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt 
"${pkgdir}"/usr/share/licenses/ovmf/License.txt
+}


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

2017-09-17 Thread Thomas Bächler
Date: Sunday, September 17, 2017 @ 13:44:47
  Author: thomas
Revision: 305708

Disable the ia32 build for now

Modified:
  ovmf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 13:35:03 UTC (rev 305707)
+++ PKGBUILD2017-09-17 13:44:47 UTC (rev 305708)
@@ -42,9 +42,9 @@
s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = ${_toolchain_opt}|; \
s|MAX_CONCURRENT_THREAD_NUMBER[ ]*=.*|MAX_CONCURRENT_THREAD_NUMBER = 
$(nproc)|;" -i Conf/target.txt
   # Build OVMF for ia32
-  sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \
-   s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" 
-i Conf/target.txt
-  ./BaseTools/BinWrappers/PosixLike/build
+  #sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \
+  # s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" 
-i Conf/target.txt
+  #./BaseTools/BinWrappers/PosixLike/build
   # Build OVMF for x64
   sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = X64|; \
s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc|;" 
-i Conf/target.txt
@@ -52,9 +52,9 @@
 }
 
 package() {
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/ia32/
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/ia32/
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/x64/
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/x64/
+  #install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/ia32/OVMF_CODE.fd
+  #install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/ia32/OVMF_VARS.fd
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/x64/OVMF_CODE.fd
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/x64/OVMF_VARS.fd
   install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt 
"${pkgdir}"/usr/share/licenses/ovmf/License.txt
 }


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

2017-09-17 Thread Thomas Bächler
Date: Sunday, September 17, 2017 @ 13:35:03
  Author: thomas
Revision: 305707

ovmf: Upgrade to version bec7a86c70, make prepare() idempotent, use upstream 
file names

Modified:
  ovmf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 10:06:44 UTC (rev 305706)
+++ PKGBUILD2017-09-17 13:35:03 UTC (rev 305707)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Thomas Bächler 
 pkgname=ovmf
-pkgver=r21243.3858b4a1ff
+pkgver=r22345.bec7a86c70
 epoch=1
 pkgrel=1
 arch=('any')
@@ -9,7 +9,7 @@
 url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2;
 license=('custom')
 makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww')
-source=('edk2::git+https://github.com/tianocore/edk2#commit=3858b4a1ff09d3243fea8d07bd135478237cb8f7')
+source=('edk2::git+https://github.com/tianocore/edk2#commit=bec7a86c70398e774eb90511d7d5a370e23ad0dd')
 sha256sums=('SKIP')
 options=(!makeflags)
 _toolchain_opt=GCC5
@@ -22,8 +22,8 @@
 prepare() {
   cd "${srcdir}"
   # edk2 uses python everywhere, but expects python2
-  mkdir bin
-  ln -s /usr/bin/python2 bin/python
+  mkdir -p bin
+  ln -sf /usr/bin/python2 bin/python
 }
 
 build() {
@@ -52,9 +52,9 @@
 }
 
 package() {
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/ovmf_code_ia32.bin
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/ovmf_vars_ia32.bin
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/ovmf_code_x64.bin
-  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/ovmf_vars_x64.bin
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/ia32/
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/ia32/
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd 
"${pkgdir}"/usr/share/ovmf/x64/
+  install -D -m644 
"${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd 
"${pkgdir}"/usr/share/ovmf/x64/
   install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt 
"${pkgdir}"/usr/share/licenses/ovmf/License.txt
 }


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 12:35:23
  Author: arojas
Revision: 258616

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

Added:
  xjadeo/repos/community-i686/PKGBUILD
(from rev 258614, xjadeo/trunk/PKGBUILD)
  xjadeo/repos/community-i686/xjadeo.desktop
(from rev 258614, xjadeo/trunk/xjadeo.desktop)
  xjadeo/repos/community-x86_64/PKGBUILD
(from rev 258614, xjadeo/trunk/PKGBUILD)
  xjadeo/repos/community-x86_64/xjadeo.desktop
(from rev 258614, xjadeo/trunk/xjadeo.desktop)
Deleted:
  xjadeo/repos/community-i686/PKGBUILD
  xjadeo/repos/community-i686/xjadeo.desktop
  xjadeo/repos/community-x86_64/PKGBUILD
  xjadeo/repos/community-x86_64/xjadeo.desktop

-+
 /PKGBUILD   |   80 ++
 /xjadeo.desktop |   16 +++
 community-i686/PKGBUILD |   40 ---
 community-i686/xjadeo.desktop   |8 ---
 community-x86_64/PKGBUILD   |   40 ---
 community-x86_64/xjadeo.desktop |8 ---
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 12:35:17 UTC (rev 258615)
+++ community-i686/PKGBUILD 2017-09-17 12:35:23 UTC (rev 258616)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer : speps 
-
-pkgname=xjadeo
-pkgver=0.8.5
-pkgrel=4
-pkgdesc="A simple video player that is synchronized to jack transport."
-arch=('i686' 'x86_64')
-url="http://xjadeo.sourceforge.net;
-license=('GPL')
-depends=('ffmpeg' 'imlib2' 'jack' 'liblo>=0.28' 'libltc' 'libxpm' 'libxv' 
'mesa' 'portmidi')
-makedepends=('glu')
-backup=('etc/xjadeorc')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
-   "$pkgname.desktop")
-md5sums=('cc645fd249551cc679ee6f128072bedf'
- '13af7a942e95d9a0079084f24b357e36')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-
-  # rc file
-  install -Dm644 doc/xjadeorc "$pkgdir/etc/xjadeorc"
-
-  # desktop file
-  install -Dm644 ../xjadeo.desktop \
-"$pkgdir/usr/share/applications/xjadeo.desktop"
-
-  # icon
-  install -Dm644 src/xjadeo/icons/xjadeoH128.png \
-"$pkgdir/usr/share/pixmaps/xjadeo.png"
-}

Copied: xjadeo/repos/community-i686/PKGBUILD (from rev 258614, 
xjadeo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 12:35:23 UTC (rev 258616)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer : speps 
+
+pkgname=xjadeo
+pkgver=0.8.7
+pkgrel=1
+pkgdesc="A simple video player that is synchronized to jack transport."
+arch=('i686' 'x86_64')
+url="http://xjadeo.sourceforge.net;
+license=('GPL')
+depends=('ffmpeg' 'imlib2' 'jack' 'liblo>=0.28' 'libltc' 'libxpm' 'libxv' 
'mesa' 'portmidi')
+makedepends=('glu')
+backup=('etc/xjadeorc')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
+   "$pkgname.desktop")
+md5sums=('9c929f80b44c9549fbda372b26a19462'
+ '13af7a942e95d9a0079084f24b357e36')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+
+  # rc file
+  install -Dm644 doc/xjadeorc "$pkgdir/etc/xjadeorc"
+
+  # desktop file
+  install -Dm644 ../xjadeo.desktop \
+"$pkgdir/usr/share/applications/xjadeo.desktop"
+
+  # icon
+  install -Dm644 src/xjadeo/icons/xjadeoH128.png \
+"$pkgdir/usr/share/pixmaps/xjadeo.png"
+}

Deleted: community-i686/xjadeo.desktop
===
--- community-i686/xjadeo.desktop   2017-09-17 12:35:17 UTC (rev 258615)
+++ community-i686/xjadeo.desktop   2017-09-17 12:35:23 UTC (rev 258616)
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Exec=xjadeo
-Type=Application
-Terminal=false
-Name=XJadeo
-Comment=XJadeo Jack Video Player
-Categories=AudioVideo;
-Icon=xjadeo
\ No newline at end of file

Copied: xjadeo/repos/community-i686/xjadeo.desktop (from rev 258614, 
xjadeo/trunk/xjadeo.desktop)
===
--- community-i686/xjadeo.desktop   (rev 0)
+++ community-i686/xjadeo.desktop   2017-09-17 12:35:23 UTC (rev 258616)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Exec=xjadeo
+Type=Application
+Terminal=false
+Name=XJadeo
+Comment=XJadeo Jack Video Player
+Categories=AudioVideo;
+Icon=xjadeo
\ No newline at end of file

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 12:35:17 UTC (rev 258615)
+++ community-x86_64/PKGBUILD   2017-09-17 12:35:23 UTC (rev 258616)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer 

[arch-commits] Commit in min/repos/community-any (8 files)

2017-09-17 Thread Nicola Squartini
Date: Sunday, September 17, 2017 @ 12:35:17
  Author: tensor5
Revision: 258615

archrelease: copy trunk to community-any

Added:
  min/repos/community-any/PKGBUILD
(from rev 258614, min/trunk/PKGBUILD)
  min/repos/community-any/icon.patch
(from rev 258614, min/trunk/icon.patch)
  min/repos/community-any/min.desktop
(from rev 258614, min/trunk/min.desktop)
  min/repos/community-any/min.js
(from rev 258614, min/trunk/min.js)
Deleted:
  min/repos/community-any/PKGBUILD
  min/repos/community-any/icon.patch
  min/repos/community-any/min.desktop
  min/repos/community-any/min.js

-+
 PKGBUILD|  148 +-
 icon.patch  |   24 -
 min.desktop |   18 +++
 min.js  |   58 +++---
 4 files changed, 126 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-17 12:34:54 UTC (rev 258614)
+++ PKGBUILD2017-09-17 12:35:17 UTC (rev 258615)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=min
-pkgver=1.6.1
-pkgrel=1
-pkgdesc='A smarter, faster web browser'
-arch=('any')
-url='https://minbrowser.github.io/min'
-license=('Apache')
-depends=('electron')
-makedepends=('nodejs-grunt-cli' 'npm')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/minbrowser/min/archive/v${pkgver}.tar.gz;
-'min.desktop'
-'min.js'
-'icon.patch')
-sha256sums=('a267cfd3cd2e0526e9e473e2e7807512f14593141465b0afea6a00818bff24f6'
-'a779a8daff1d684779ebc6d13ea4c2f09e838df018de41fa19fa3f25aa12e32f'
-'c22324184b72b3fad5a0aadb4e18182414e0294c5596c26426adc204fd473258'
-'f73d138d68f90e11a60128099b57eecb84a7d067e7f6883ff98924c5f4a61ea8')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-
-patch -Np1 -i "${srcdir}"/icon.patch
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-
-npm install grunt grunt-contrib-concat grunt-contrib-uglify
-grunt
-rm -r node_modules
-
-npm install --production --no-optional
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-appdir=/usr/lib/${pkgname}
-
-install -dm755 "${pkgdir}"${appdir}
-cp -r * "${pkgdir}"${appdir}
-
-install -dm755 "${pkgdir}"/usr/share/icons/hicolor/256x256/apps
-mv icons/icon256.png \
-"${pkgdir}"/usr/share/icons/hicolor/256x256/apps/${pkgname}.png
-
-install -Dm755 "${srcdir}"/${pkgname}.js "${pkgdir}"/usr/bin/${pkgname}
-install -Dm644 "${srcdir}"/${pkgname}.desktop \
-"${pkgdir}"/usr/share/applications/${pkgname}.desktop
-
-# Clean up
-rm "${pkgdir}"${appdir}/dist/{build,webview}.js
-rm -r "${pkgdir}"${appdir}/icons
-rm -r "${pkgdir}"${appdir}/main
-find "${pkgdir}"${appdir} \
--name "package.json" \
--exec sed -e "s|${srcdir}/${pkgname}-${pkgver}|${appdir}|" \
--i {} \; \
--or -name ".*" -prune -exec rm -r '{}' \; \
--or -name "Gruntfile.js" -exec rm '{}' \; \
--or -name "Makefile" -exec rm '{}' \; \
--or -name "bower.json" -exec rm '{}' \; \
--or -name "cmd.js" -exec rm '{}' \; \
--or -name "coffee" -prune -exec rm -r '{}' \; \
--or -name "example" -prune -exec rm -r '{}' \; \
--or -name "gulpfile.js" -exec rm '{}' \; \
--or -name "test" -prune -exec rm -r '{}' \; \
--or -name "tests" -prune -exec rm -r '{}' \;
-}

Copied: min/repos/community-any/PKGBUILD (from rev 258614, min/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-17 12:35:17 UTC (rev 258615)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=min
+pkgver=1.6.2
+pkgrel=1
+pkgdesc='A smarter, faster web browser'
+arch=('any')
+url='https://minbrowser.github.io/min'
+license=('Apache')
+depends=('electron')
+makedepends=('nodejs-grunt-cli' 'npm')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/minbrowser/min/archive/v${pkgver}.tar.gz;
+'min.desktop'
+'min.js'
+'icon.patch')
+sha256sums=('3d859c98ffa052e78a8f253ed0c695caf455347206fa072b7260038245a8430e'
+'a779a8daff1d684779ebc6d13ea4c2f09e838df018de41fa19fa3f25aa12e32f'
+'c22324184b72b3fad5a0aadb4e18182414e0294c5596c26426adc204fd473258'
+'f73d138d68f90e11a60128099b57eecb84a7d067e7f6883ff98924c5f4a61ea8')
+
+prepare() {
+cd ${pkgname}-${pkgver}
+
+patch -Np1 -i "${srcdir}"/icon.patch
+}
+
+build() {
+cd ${pkgname}-${pkgver}
+
+npm install decomment grunt grunt-contrib-concat grunt-contrib-uglify
+mkdir dist
+npm run buildTranslations
+grunt
+rm -r node_modules
+
+npm install --production --no-optional
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+appdir=/usr/lib/${pkgname}
+
+install -dm755 "${pkgdir}"${appdir}
+cp -r * "${pkgdir}"${appdir}

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 12:34:52
  Author: arojas
Revision: 258613

Update to 0.8.7

Modified:
  xjadeo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 12:28:30 UTC (rev 258612)
+++ PKGBUILD2017-09-17 12:34:52 UTC (rev 258613)
@@ -2,8 +2,8 @@
 # Maintainer : speps 
 
 pkgname=xjadeo
-pkgver=0.8.5
-pkgrel=4
+pkgver=0.8.7
+pkgrel=1
 pkgdesc="A simple video player that is synchronized to jack transport."
 arch=('i686' 'x86_64')
 url="http://xjadeo.sourceforge.net;
@@ -13,7 +13,7 @@
 backup=('etc/xjadeorc')
 source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
"$pkgname.desktop")
-md5sums=('cc645fd249551cc679ee6f128072bedf'
+md5sums=('9c929f80b44c9549fbda372b26a19462'
  '13af7a942e95d9a0079084f24b357e36')
 
 build() {


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

2017-09-17 Thread Nicola Squartini
Date: Sunday, September 17, 2017 @ 12:34:54
  Author: tensor5
Revision: 258614

upgpkg: min 1.6.2-1

Modified:
  min/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 12:34:52 UTC (rev 258613)
+++ PKGBUILD2017-09-17 12:34:54 UTC (rev 258614)
@@ -2,7 +2,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=min
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc='A smarter, faster web browser'
 arch=('any')
@@ -14,7 +14,7 @@
 'min.desktop'
 'min.js'
 'icon.patch')
-sha256sums=('a267cfd3cd2e0526e9e473e2e7807512f14593141465b0afea6a00818bff24f6'
+sha256sums=('3d859c98ffa052e78a8f253ed0c695caf455347206fa072b7260038245a8430e'
 'a779a8daff1d684779ebc6d13ea4c2f09e838df018de41fa19fa3f25aa12e32f'
 'c22324184b72b3fad5a0aadb4e18182414e0294c5596c26426adc204fd473258'
 'f73d138d68f90e11a60128099b57eecb84a7d067e7f6883ff98924c5f4a61ea8')
@@ -28,7 +28,9 @@
 build() {
 cd ${pkgname}-${pkgver}
 
-npm install grunt grunt-contrib-concat grunt-contrib-uglify
+npm install decomment grunt grunt-contrib-concat grunt-contrib-uglify
+mkdir dist
+npm run buildTranslations
 grunt
 rm -r node_modules
 
@@ -54,7 +56,9 @@
 # Clean up
 rm "${pkgdir}"${appdir}/dist/{build,webview}.js
 rm -r "${pkgdir}"${appdir}/icons
+rm -r "${pkgdir}"${appdir}/localization
 rm -r "${pkgdir}"${appdir}/main
+rm -r "${pkgdir}"${appdir}/scripts
 find "${pkgdir}"${appdir} \
 -name "package.json" \
 -exec sed -e "s|${srcdir}/${pkgname}-${pkgver}|${appdir}|" \


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 12:28:30
  Author: arojas
Revision: 258612

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 12:28:01 UTC (rev 258611)
+++ community-i686/PKGBUILD 2017-09-17 12:28:30 UTC (rev 258612)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: DrZaius 
-
-pkgname=libltc
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
-arch=('i686' 'x86_64')
-url="http://x42.github.io/libltc/;
-license=('GPL3')
-depends=('glibc')
-source=("https://github.com/x42/libltc/releases/download/v$pkgver/libltc-$pkgver.tar.gz;)
-md5sums=('34f7e716c8f0b041bf5f08b62162b1e3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}

Copied: libltc/repos/community-i686/PKGBUILD (from rev 258611, 
libltc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 12:28:30 UTC (rev 258612)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: DrZaius 
+
+pkgname=libltc
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
+arch=('i686' 'x86_64')
+url="http://x42.github.io/libltc/;
+license=('GPL3')
+depends=('glibc')
+source=("https://github.com/x42/libltc/releases/download/v$pkgver/libltc-$pkgver.tar.gz;)
+md5sums=('7c95bfbf0240b9ab34dc5730311a8307')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 12:28:01 UTC (rev 258611)
+++ community-x86_64/PKGBUILD   2017-09-17 12:28:30 UTC (rev 258612)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: DrZaius 
-
-pkgname=libltc
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
-arch=('i686' 'x86_64')
-url="http://x42.github.io/libltc/;
-license=('GPL3')
-depends=('glibc')
-source=("https://github.com/x42/libltc/releases/download/v$pkgver/libltc-$pkgver.tar.gz;)
-md5sums=('34f7e716c8f0b041bf5f08b62162b1e3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}

Copied: libltc/repos/community-x86_64/PKGBUILD (from rev 258611, 
libltc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 12:28:30 UTC (rev 258612)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: DrZaius 
+
+pkgname=libltc
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
+arch=('i686' 'x86_64')
+url="http://x42.github.io/libltc/;
+license=('GPL3')
+depends=('glibc')
+source=("https://github.com/x42/libltc/releases/download/v$pkgver/libltc-$pkgver.tar.gz;)
+md5sums=('7c95bfbf0240b9ab34dc5730311a8307')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 12:28:01
  Author: arojas
Revision: 258611

Update to 1.3.0

Modified:
  libltc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 12:14:45 UTC (rev 258610)
+++ PKGBUILD2017-09-17 12:28:01 UTC (rev 258611)
@@ -3,7 +3,7 @@
 # Contributor: DrZaius 
 
 pkgname=libltc
-pkgver=1.1.4
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="Linear/Logitudinal Time Code (LTC) Library"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('GPL3')
 depends=('glibc')
 
source=("https://github.com/x42/libltc/releases/download/v$pkgver/libltc-$pkgver.tar.gz;)
-md5sums=('34f7e716c8f0b041bf5f08b62162b1e3')
+md5sums=('7c95bfbf0240b9ab34dc5730311a8307')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 12:14:45
  Author: arojas
Revision: 258610

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 12:14:10 UTC (rev 258609)
+++ community-i686/PKGBUILD 2017-09-17 12:14:45 UTC (rev 258610)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer : Ray Rashif 
-# Maintainer : speps 
-# Contributor: Philipp Überbacher 
-
-pkgname=qtractor
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="Audio/MIDI multitrack sequencer"
-arch=('i686' 'x86_64')
-url="http://qtractor.org/;
-license=('GPL')
-depends=('qt5-x11extras' 'suil' 'lilv' 'libmad' 'liblo>=0.28'
- 'rubberband' 'hicolor-icon-theme')
-makedepends=('qt5-tools' 'ladspa' 'dssi')
-optdepends=('dssi-vst: win32 VST support')
-source=("https://sourceforge.net/projects/qtractor/files/qtractor/$pkgver/qtractor-$pkgver.tar.gz;)
-md5sums=('89949777599c68208f120a6af93f8a12')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # do not look for /usr/lib64/lv2
-  # prevent to load lv2 plugins twice
-  sed -i '/__x86_64__/,/#endif/d' src/qtractorPluginFactory.cpp
-
-  # force qt4
-  #export ac_qmake=/usr/bin/qmake-qt4 \
-  #   ac_moc=/usr/bin/moc-qt4 \
-  #   ac_uic=/usr/bin/uic-qt4 \
-  #   ac_lupdate=/usr/bin/lupdate-qt4 \
-  #   ac_lrelease=/usr/bin/lrelease-qt4 \
-  #   QMAKE=qmake-qt4
-
-  export ac_qmake=/usr/bin/qmake-qt5 \
- ac_moc=/usr/bin/moc-qt5 \
- ac_uic=/usr/bin/uic-qt5 \
- ac_lupdate=/usr/bin/lupdate-qt5 \
- ac_lrelease=/usr/bin/lrelease-qt5 \
- QMAKE=qmake-qt5
-
- # Fix build with GCC 6 (Fedora)
- #sed -i.ac_with_paths -e "s|^ac_with_paths=.*|ac_with_paths=|g" configure 
configure.ac
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: qtractor/repos/community-i686/PKGBUILD (from rev 258609, 
qtractor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 12:14:45 UTC (rev 258610)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer : Ray Rashif 
+# Maintainer : speps 
+# Contributor: Philipp Überbacher 
+
+pkgname=qtractor
+pkgver=0.8.3
+pkgrel=1
+pkgdesc="Audio/MIDI multitrack sequencer"
+arch=('i686' 'x86_64')
+url="http://qtractor.org/;
+license=('GPL')
+depends=('qt5-x11extras' 'suil' 'lilv' 'libmad' 'liblo>=0.28'
+ 'rubberband' 'hicolor-icon-theme')
+makedepends=('qt5-tools' 'ladspa' 'dssi')
+optdepends=('dssi-vst: win32 VST support')
+source=("https://sourceforge.net/projects/qtractor/files/qtractor/$pkgver/qtractor-$pkgver.tar.gz;)
+md5sums=('f944e6ac1af3760cd92648658d4b')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # do not look for /usr/lib64/lv2
+  # prevent to load lv2 plugins twice
+  sed -i '/__x86_64__/,/#endif/d' src/qtractorPluginFactory.cpp
+
+  # force qt4
+  #export ac_qmake=/usr/bin/qmake-qt4 \
+  #   ac_moc=/usr/bin/moc-qt4 \
+  #   ac_uic=/usr/bin/uic-qt4 \
+  #   ac_lupdate=/usr/bin/lupdate-qt4 \
+  #   ac_lrelease=/usr/bin/lrelease-qt4 \
+  #   QMAKE=qmake-qt4
+
+  export ac_qmake=/usr/bin/qmake-qt5 \
+ ac_moc=/usr/bin/moc-qt5 \
+ ac_uic=/usr/bin/uic-qt5 \
+ ac_lupdate=/usr/bin/lupdate-qt5 \
+ ac_lrelease=/usr/bin/lrelease-qt5 \
+ QMAKE=qmake-qt5
+
+ # Fix build with GCC 6 (Fedora)
+ #sed -i.ac_with_paths -e "s|^ac_with_paths=.*|ac_with_paths=|g" configure 
configure.ac
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 12:14:10 UTC (rev 258609)
+++ community-x86_64/PKGBUILD   2017-09-17 12:14:45 UTC (rev 258610)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer : Ray Rashif 
-# Maintainer : speps 
-# Contributor: Philipp Überbacher 
-
-pkgname=qtractor
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="Audio/MIDI multitrack sequencer"
-arch=('i686' 'x86_64')

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 12:14:10
  Author: arojas
Revision: 258609

Update to 0.8.3

Modified:
  qtractor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:49:45 UTC (rev 258608)
+++ PKGBUILD2017-09-17 12:14:10 UTC (rev 258609)
@@ -4,7 +4,7 @@
 # Contributor: Philipp Überbacher 
 
 pkgname=qtractor
-pkgver=0.8.1
+pkgver=0.8.3
 pkgrel=1
 pkgdesc="Audio/MIDI multitrack sequencer"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('qt5-tools' 'ladspa' 'dssi')
 optdepends=('dssi-vst: win32 VST support')
 
source=("https://sourceforge.net/projects/qtractor/files/qtractor/$pkgver/qtractor-$pkgver.tar.gz;)
-md5sums=('89949777599c68208f120a6af93f8a12')
+md5sums=('f944e6ac1af3760cd92648658d4b')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:49:45
  Author: arojas
Revision: 258608

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

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

---+
 /PKGBUILD |   54 
 community-i686/PKGBUILD   |   26 -
 community-x86_64/PKGBUILD |   26 -
 3 files changed, 54 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:48:46 UTC (rev 258607)
+++ community-i686/PKGBUILD 2017-09-17 11:49:45 UTC (rev 258608)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Shinlun Hsieh 
-
-pkgname=qmidiarp
-pkgver=0.6.3
-pkgrel=2
-pkgdesc="A MIDI arpeggiator, phrase generator and controller LFO for the ALSA 
sequencer."
-arch=(i686 x86_64)
-url="http://sourceforge.net/projects/qmidiarp/;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('qt4' 'jack' 'liblo' 'lv2')
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
-md5sums=('30ab9a9d906b6a264919001ceac00386')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}

Copied: qmidiarp/repos/community-i686/PKGBUILD (from rev 258607, 
qmidiarp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:49:45 UTC (rev 258608)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Shinlun Hsieh 
+
+pkgname=qmidiarp
+pkgver=0.6.4
+pkgrel=1
+pkgdesc="A MIDI arpeggiator, phrase generator and controller LFO for the ALSA 
sequencer."
+arch=(i686 x86_64)
+url="http://sourceforge.net/projects/qmidiarp/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('qt5-base' 'jack' 'liblo' 'lv2')
+makedepends=('qt5-tools')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
+md5sums=('f1cf6428411a7e4a1cc1e3fc63231d28')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-qt5
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 11:48:46 UTC (rev 258607)
+++ community-x86_64/PKGBUILD   2017-09-17 11:49:45 UTC (rev 258608)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Shinlun Hsieh 
-
-pkgname=qmidiarp
-pkgver=0.6.3
-pkgrel=2
-pkgdesc="A MIDI arpeggiator, phrase generator and controller LFO for the ALSA 
sequencer."
-arch=(i686 x86_64)
-url="http://sourceforge.net/projects/qmidiarp/;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('qt4' 'jack' 'liblo' 'lv2')
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
-md5sums=('30ab9a9d906b6a264919001ceac00386')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}

Copied: qmidiarp/repos/community-x86_64/PKGBUILD (from rev 258607, 
qmidiarp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 11:49:45 UTC (rev 258608)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Shinlun Hsieh 
+
+pkgname=qmidiarp
+pkgver=0.6.4
+pkgrel=1
+pkgdesc="A MIDI arpeggiator, phrase generator and controller LFO for the ALSA 
sequencer."
+arch=(i686 x86_64)
+url="http://sourceforge.net/projects/qmidiarp/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('qt5-base' 'jack' 'liblo' 'lv2')
+makedepends=('qt5-tools')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
+md5sums=('f1cf6428411a7e4a1cc1e3fc63231d28')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-qt5
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:48:46
  Author: arojas
Revision: 258607

Update to 0.6.4

Modified:
  qmidiarp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:39:59 UTC (rev 258606)
+++ PKGBUILD2017-09-17 11:48:46 UTC (rev 258607)
@@ -3,20 +3,21 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=qmidiarp
-pkgver=0.6.3
-pkgrel=2
+pkgver=0.6.4
+pkgrel=1
 pkgdesc="A MIDI arpeggiator, phrase generator and controller LFO for the ALSA 
sequencer."
 arch=(i686 x86_64)
 url="http://sourceforge.net/projects/qmidiarp/;
 license=('GPL')
 groups=('lv2-plugins')
-depends=('qt4' 'jack' 'liblo' 'lv2')
+depends=('qt5-base' 'jack' 'liblo' 'lv2')
+makedepends=('qt5-tools')
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2;)
-md5sums=('30ab9a9d906b6a264919001ceac00386')
+md5sums=('f1cf6428411a7e4a1cc1e3fc63231d28')
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr --enable-qt5
   make
 }
 


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:39:59
  Author: arojas
Revision: 258606

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:39:19 UTC (rev 258605)
+++ community-i686/PKGBUILD 2017-09-17 11:39:59 UTC (rev 258606)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-pkgname=pd
-pkgver=0.47.1
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('i686' 'x86_64')
-url="http://msp.ucsd.edu/software.html;
-license=('custom:BSD')
-depends=('jack' 'tk' 'fftw')
-provides=('puredata')
-options=('!strip')
-source=("http://msp.ucsd.edu/Software/pd-$_ver.src.tar.gz;)
-md5sums=('78f012826bdbebcc683e15e5f8a94db9')
-
-build() {
-  cd pd-$_ver
-  ./autogen.sh
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-jack \
-  --disable-portaudio \
-  --enable-fftw=no \
-  --enable-debug
-  make
-}
-
-package() {
-  cd pd-$_ver
-  make DESTDIR="$pkgdir" install
-
-  # license
-  install -Dm644 LICENSE.txt \
-"$pkgdir/usr/share/licenses/pd/LICENSE"
-}

Copied: pd/repos/community-i686/PKGBUILD (from rev 258605, pd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:39:59 UTC (rev 258606)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+pkgname=pd
+pkgver=0.48.0
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('i686' 'x86_64')
+url="http://msp.ucsd.edu/software.html;
+license=('custom:BSD')
+depends=('jack' 'fftw' 'tk')
+provides=('puredata')
+options=('!strip')
+source=("http://msp.ucsd.edu/Software/pd-$_ver.src.tar.gz;)
+md5sums=('b746efd17a8a571c6fcfb536ff607c29')
+
+build() {
+  cd pd-$_ver
+  ./autogen.sh
+  ./configure --prefix=/usr \
+  --enable-alsa \
+  --enable-jack \
+  --disable-portaudio \
+  --enable-fftw \
+  --enable-debug
+  make
+}
+
+package() {
+  cd pd-$_ver
+  make DESTDIR="$pkgdir" install
+
+  # license
+  install -Dm644 LICENSE.txt \
+"$pkgdir/usr/share/licenses/pd/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 11:39:19 UTC (rev 258605)
+++ community-x86_64/PKGBUILD   2017-09-17 11:39:59 UTC (rev 258606)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-pkgname=pd
-pkgver=0.47.1
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('i686' 'x86_64')
-url="http://msp.ucsd.edu/software.html;
-license=('custom:BSD')
-depends=('jack' 'tk' 'fftw')
-provides=('puredata')
-options=('!strip')
-source=("http://msp.ucsd.edu/Software/pd-$_ver.src.tar.gz;)
-md5sums=('78f012826bdbebcc683e15e5f8a94db9')
-
-build() {
-  cd pd-$_ver
-  ./autogen.sh
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-jack \
-  --disable-portaudio \
-  --enable-fftw=no \
-  --enable-debug
-  make
-}
-
-package() {
-  cd pd-$_ver
-  make DESTDIR="$pkgdir" install
-
-  # license
-  install -Dm644 LICENSE.txt \
-"$pkgdir/usr/share/licenses/pd/LICENSE"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 258605, pd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 11:39:59 UTC (rev 258606)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+pkgname=pd
+pkgver=0.48.0
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('i686' 'x86_64')
+url="http://msp.ucsd.edu/software.html;
+license=('custom:BSD')
+depends=('jack' 'fftw' 'tk')
+provides=('puredata')

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:39:19
  Author: arojas
Revision: 258605

Update to 0.48.0

Modified:
  pd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:27:07 UTC (rev 258604)
+++ PKGBUILD2017-09-17 11:39:19 UTC (rev 258605)
@@ -4,7 +4,7 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=pd
-pkgver=0.47.1
+pkgver=0.48.0
 _ver=${pkgver%.*}-${pkgver##*.}
 pkgrel=1
 pkgdesc="The Pure Data real-time music and multimedia environment"
@@ -11,11 +11,11 @@
 arch=('i686' 'x86_64')
 url="http://msp.ucsd.edu/software.html;
 license=('custom:BSD')
-depends=('jack' 'tk' 'fftw')
+depends=('jack' 'fftw' 'tk')
 provides=('puredata')
 options=('!strip')
 source=("http://msp.ucsd.edu/Software/pd-$_ver.src.tar.gz;)
-md5sums=('78f012826bdbebcc683e15e5f8a94db9')
+md5sums=('b746efd17a8a571c6fcfb536ff607c29')
 
 build() {
   cd pd-$_ver
@@ -24,7 +24,7 @@
   --enable-alsa \
   --enable-jack \
   --disable-portaudio \
-  --enable-fftw=no \
+  --enable-fftw \
   --enable-debug
   make
 }


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:27:07
  Author: arojas
Revision: 258604

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

Added:
  aeolus/repos/community-i686/PKGBUILD
(from rev 258603, aeolus/trunk/PKGBUILD)
  aeolus/repos/community-i686/aeolus.conf
(from rev 258603, aeolus/trunk/aeolus.conf)
  aeolus/repos/community-x86_64/PKGBUILD
(from rev 258603, aeolus/trunk/PKGBUILD)
  aeolus/repos/community-x86_64/aeolus.conf
(from rev 258603, aeolus/trunk/aeolus.conf)
Deleted:
  aeolus/repos/community-i686/PKGBUILD
  aeolus/repos/community-i686/aeolus.conf
  aeolus/repos/community-x86_64/PKGBUILD
  aeolus/repos/community-x86_64/aeolus.conf

--+
 /PKGBUILD|   90 +
 /aeolus.conf |6 ++
 community-i686/PKGBUILD  |   45 
 community-i686/aeolus.conf   |3 -
 community-x86_64/PKGBUILD|   45 
 community-x86_64/aeolus.conf |3 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:26:40 UTC (rev 258603)
+++ community-i686/PKGBUILD 2017-09-17 11:27:07 UTC (rev 258604)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Tom K 
-# Contributor: Shinlun Hsieh 
-# Contributor: Christoph Zeiler 
-# Contributor: Philipp Überbacher 
-
-_stopver=0.3.0
-pkgname=aeolus
-pkgver=0.9.0
-pkgrel=3
-pkgdesc="Synthesised pipe organ emulator"
-arch=('i686' 'x86_64')
-url="http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/;
-license=('GPL3')
-depends=('clthreads' 'clxclient' 'jack' 'zita-alsa-pcmi')
-source=(${url}../downloads/{$pkgname-$pkgver,stops-$_stopver}.tar.bz2 
$pkgname.conf)
-md5sums=('6ae707e441f6d17eaabfde91c889bce2'
- '2a7b1cae820408fa1cc655800d08d88f'
- 'b9cbca97ac4184f0b207faf4f58f72a9')
-
-prepare() {
-  cd "$pkgname-$pkgver/source"
-  # strip ldconfig and -march=native
-  sed -i '/ldconfig\|-march=native/d' Makefile
-}
-
-build() {
-  cd "$pkgname-$pkgver/source"
-  make PREFIX=/usr LIBDIR=lib
-}
-
-package(){
-  cd "$pkgname-$pkgver/source"
-  make DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
-
-  # system config file
-  install -Dm644 "$srcdir/$pkgname.conf" "$pkgdir/etc/$pkgname.conf"
-
-  # stops
-  cd "$srcdir/stops-$_stopver"
-  find . -name definition -exec install -Dm644 {} 
${pkgdir}/usr/share/$pkgname/stops/{} \;
-  find . -name presets -exec install -Dm644 {} 
${pkgdir}/usr/share/$pkgname/stops/{} \;
-  find . -name '*.ae0' -exec install -Dm644 {} 
${pkgdir}/usr/share/$pkgname/stops \;
-}

Copied: aeolus/repos/community-i686/PKGBUILD (from rev 258603, 
aeolus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:27:07 UTC (rev 258604)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Tom K 
+# Contributor: Shinlun Hsieh 
+# Contributor: Christoph Zeiler 
+# Contributor: Philipp Überbacher 
+
+_stopver=0.3.0
+pkgname=aeolus
+pkgver=0.9.5
+pkgrel=1
+pkgdesc="Synthesised pipe organ emulator"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/;
+license=('GPL3')
+depends=('clthreads' 'clxclient' 'jack' 'zita-alsa-pcmi')
+source=(${url}../downloads/{$pkgname-$pkgver,stops-$_stopver}.tar.bz2 
$pkgname.conf)
+md5sums=('a190e3238a205289c3e0757110b84f5c'
+ '2a7b1cae820408fa1cc655800d08d88f'
+ 'b9cbca97ac4184f0b207faf4f58f72a9')
+
+prepare() {
+  cd "$pkgname-$pkgver/source"
+  # strip ldconfig and -march=native
+  sed -i '/ldconfig\|-march=native/d' Makefile
+}
+
+build() {
+  cd "$pkgname-$pkgver/source"
+  make PREFIX=/usr LIBDIR=lib
+}
+
+package(){
+  cd "$pkgname-$pkgver/source"
+  make DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+
+  # system config file
+  install -Dm644 "$srcdir/$pkgname.conf" "$pkgdir/etc/$pkgname.conf"
+
+  # stops
+  cd "$srcdir/stops-$_stopver"
+  find . -name definition -exec install -Dm644 {} 
${pkgdir}/usr/share/$pkgname/stops/{} \;
+  find . -name presets -exec install -Dm644 {} 
${pkgdir}/usr/share/$pkgname/stops/{} \;
+  find . -name '*.ae0' -exec install -Dm644 {} 
${pkgdir}/usr/share/$pkgname/stops \;
+}

Deleted: community-i686/aeolus.conf
===
--- community-i686/aeolus.conf  2017-09-17 11:26:40 UTC (rev 258603)
+++ community-i686/aeolus.conf  2017-09-17 11:27:07 UTC (rev 258604)
@@ -1,3 +0,0 @@
-# Aeolus system wide default options
-# use ~/.aeolusrc for local options
--u -S /usr/share/aeolus/stops

Copied: aeolus/repos/community-i686/aeolus.conf (from rev 258603, 
aeolus/trunk/aeolus.conf)
===
--- 

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:26:40
  Author: arojas
Revision: 258603

Update to 0.9.5

Modified:
  aeolus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:24:57 UTC (rev 258602)
+++ PKGBUILD2017-09-17 11:26:40 UTC (rev 258603)
@@ -7,8 +7,8 @@
 
 _stopver=0.3.0
 pkgname=aeolus
-pkgver=0.9.0
-pkgrel=3
+pkgver=0.9.5
+pkgrel=1
 pkgdesc="Synthesised pipe organ emulator"
 arch=('i686' 'x86_64')
 url="http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/;
@@ -15,7 +15,7 @@
 license=('GPL3')
 depends=('clthreads' 'clxclient' 'jack' 'zita-alsa-pcmi')
 source=(${url}../downloads/{$pkgname-$pkgver,stops-$_stopver}.tar.bz2 
$pkgname.conf)
-md5sums=('6ae707e441f6d17eaabfde91c889bce2'
+md5sums=('a190e3238a205289c3e0757110b84f5c'
  '2a7b1cae820408fa1cc655800d08d88f'
  'b9cbca97ac4184f0b207faf4f58f72a9')
 


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:24:57
  Author: arojas
Revision: 258602

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:24:07 UTC (rev 258601)
+++ community-i686/PKGBUILD 2017-09-17 11:24:57 UTC (rev 258602)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Alessio Biancalana 
-
-pkgname=amsynth
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="Analogue Modeling SYNTHesizer"
-arch=('i686' 'x86_64')
-url="https://amsynth.github.io/;
-license=('GPL')
-groups=('dssi-plugins' 'lv2-plugins')
-depends=('gtkmm' 'jack' 'liblo')
-makedepends=('dssi' 'ladspa' 'intltool')
-source=("https://github.com/amsynth/amsynth/releases/download/release-$pkgver/amsynth-$pkgver.tar.bz2;)
-md5sums=('4856f582caed59fca79dfe3ca4597938')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # enable required C++11 support
-  export CXXFLAGS+=' -std=c++11'
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}

Copied: amsynth/repos/community-i686/PKGBUILD (from rev 258601, 
amsynth/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:24:57 UTC (rev 258602)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Alessio Biancalana 
+
+pkgname=amsynth
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Analogue Modeling SYNTHesizer"
+arch=('i686' 'x86_64')
+url="https://amsynth.github.io/;
+license=('GPL')
+groups=('dssi-plugins' 'lv2-plugins')
+depends=('gtk2' 'jack' 'liblo')
+makedepends=('dssi' 'ladspa' 'intltool')
+source=("https://github.com/amsynth/amsynth/releases/download/release-$pkgver/amsynth-$pkgver.tar.bz2;)
+md5sums=('54eaabc55d90ece5675b3cb3c2dc732d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # enable required C++11 support
+  export CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 11:24:07 UTC (rev 258601)
+++ community-x86_64/PKGBUILD   2017-09-17 11:24:57 UTC (rev 258602)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Contributor: Alessio Biancalana 
-
-pkgname=amsynth
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="Analogue Modeling SYNTHesizer"
-arch=('i686' 'x86_64')
-url="https://amsynth.github.io/;
-license=('GPL')
-groups=('dssi-plugins' 'lv2-plugins')
-depends=('gtkmm' 'jack' 'liblo')
-makedepends=('dssi' 'ladspa' 'intltool')
-source=("https://github.com/amsynth/amsynth/releases/download/release-$pkgver/amsynth-$pkgver.tar.bz2;)
-md5sums=('4856f582caed59fca79dfe3ca4597938')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # enable required C++11 support
-  export CXXFLAGS+=' -std=c++11'
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}

Copied: amsynth/repos/community-x86_64/PKGBUILD (from rev 258601, 
amsynth/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 11:24:57 UTC (rev 258602)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps 
+# Contributor: Alessio Biancalana 
+
+pkgname=amsynth
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Analogue Modeling SYNTHesizer"
+arch=('i686' 'x86_64')
+url="https://amsynth.github.io/;
+license=('GPL')
+groups=('dssi-plugins' 'lv2-plugins')
+depends=('gtk2' 'jack' 'liblo')
+makedepends=('dssi' 'ladspa' 'intltool')
+source=("https://github.com/amsynth/amsynth/releases/download/release-$pkgver/amsynth-$pkgver.tar.bz2;)
+md5sums=('54eaabc55d90ece5675b3cb3c2dc732d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # enable required C++11 support
+  export CXXFLAGS+=' -std=c++11'
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:24:07
  Author: arojas
Revision: 258601

Update to 1.8.0

Modified:
  amsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:17:29 UTC (rev 258600)
+++ PKGBUILD2017-09-17 11:24:07 UTC (rev 258601)
@@ -3,7 +3,7 @@
 # Contributor: Alessio Biancalana 
 
 pkgname=amsynth
-pkgver=1.7.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="Analogue Modeling SYNTHesizer"
 arch=('i686' 'x86_64')
@@ -10,10 +10,10 @@
 url="https://amsynth.github.io/;
 license=('GPL')
 groups=('dssi-plugins' 'lv2-plugins')
-depends=('gtkmm' 'jack' 'liblo')
+depends=('gtk2' 'jack' 'liblo')
 makedepends=('dssi' 'ladspa' 'intltool')
 
source=("https://github.com/amsynth/amsynth/releases/download/release-$pkgver/amsynth-$pkgver.tar.bz2;)
-md5sums=('4856f582caed59fca79dfe3ca4597938')
+md5sums=('54eaabc55d90ece5675b3cb3c2dc732d')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:17:29
  Author: arojas
Revision: 258600

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:16:59 UTC (rev 258599)
+++ community-i686/PKGBUILD 2017-09-17 11:17:29 UTC (rev 258600)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgname=synthv1
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
-arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
- 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('88e74c64bb3182f19b7e3d66e429cda0')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: synthv1/repos/community-i686/PKGBUILD (from rev 258599, 
synthv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:17:29 UTC (rev 258600)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=synthv1
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="https://$pkgname.sourceforge.net/$pkgname-index.html;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('a8a8ba00a2d10006ef8df8e08cb9b710')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 11:16:59 UTC (rev 258599)
+++ community-x86_64/PKGBUILD   2017-09-17 11:17:29 UTC (rev 258600)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgname=synthv1
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
-arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
- 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('88e74c64bb3182f19b7e3d66e429cda0')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: synthv1/repos/community-x86_64/PKGBUILD (from rev 258599, 
synthv1/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 11:17:29 UTC (rev 258600)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=synthv1
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="https://$pkgname.sourceforge.net/$pkgname-index.html;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('a8a8ba00a2d10006ef8df8e08cb9b710')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:16:59
  Author: arojas
Revision: 258599

Update to 0.8.4

Modified:
  synthv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:15:40 UTC (rev 258598)
+++ PKGBUILD2017-09-17 11:16:59 UTC (rev 258599)
@@ -2,7 +2,7 @@
 # Maintainer: speps 
 
 pkgname=synthv1
-pkgver=0.8.0
+pkgver=0.8.4
 pkgrel=1
 pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
  'hicolor-icon-theme' 'shared-mime-info')
 makedepends=('qt5-tools')
 source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('88e74c64bb3182f19b7e3d66e429cda0')
+md5sums=('a8a8ba00a2d10006ef8df8e08cb9b710')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:15:40
  Author: arojas
Revision: 258598

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:15:10 UTC (rev 258597)
+++ community-i686/PKGBUILD 2017-09-17 11:15:40 UTC (rev 258598)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgname=samplv1
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="Polyphonic sampler synthesizer with stereo fx"
-arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
- 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('e3598531ae7c7b3ee571ee2b22c143f4')
-
-build() {
-  cd $pkgname-$pkgver 
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver 
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: samplv1/repos/community-i686/PKGBUILD (from rev 258597, 
samplv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:15:40 UTC (rev 258598)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=samplv1
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="Polyphonic sampler synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="https://samplv1.sourceforge.io/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('4bebff3eecd46f7f0ed717cba0aa9f9d')
+
+build() {
+  cd $pkgname-$pkgver 
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver 
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 11:15:10 UTC (rev 258597)
+++ community-x86_64/PKGBUILD   2017-09-17 11:15:40 UTC (rev 258598)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgname=samplv1
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="Polyphonic sampler synthesizer with stereo fx"
-arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
- 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('e3598531ae7c7b3ee571ee2b22c143f4')
-
-build() {
-  cd $pkgname-$pkgver 
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver 
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: samplv1/repos/community-x86_64/PKGBUILD (from rev 258597, 
samplv1/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 11:15:40 UTC (rev 258598)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=samplv1
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="Polyphonic sampler synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="https://samplv1.sourceforge.io/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('4bebff3eecd46f7f0ed717cba0aa9f9d')
+
+build() {
+  cd $pkgname-$pkgver 
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver 
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:15:10
  Author: arojas
Revision: 258597

Update to 0.8.4

Modified:
  samplv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 11:13:30 UTC (rev 258596)
+++ PKGBUILD2017-09-17 11:15:10 UTC (rev 258597)
@@ -2,11 +2,11 @@
 # Maintainer: speps 
 
 pkgname=samplv1
-pkgver=0.8.0
+pkgver=0.8.4
 pkgrel=1
 pkgdesc="Polyphonic sampler synthesizer with stereo fx"
 arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
+url="https://samplv1.sourceforge.io/;
 license=('GPL')
 groups=('lv2-plugins')
 depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
@@ -13,7 +13,7 @@
  'hicolor-icon-theme' 'shared-mime-info')
 makedepends=('qt5-tools')
 source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('e3598531ae7c7b3ee571ee2b22c143f4')
+md5sums=('4bebff3eecd46f7f0ed717cba0aa9f9d')
 
 build() {
   cd $pkgname-$pkgver 


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:13:30
  Author: arojas
Revision: 258596

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 11:12:59 UTC (rev 258595)
+++ community-i686/PKGBUILD 2017-09-17 11:13:30 UTC (rev 258596)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgname=drumkv1
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="An old-school drum-kit sampler"
-arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
- 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c9af118f491ea21f5542f30395d37864')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: drumkv1/repos/community-i686/PKGBUILD (from rev 258595, 
drumkv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 11:13:30 UTC (rev 258596)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=drumkv1
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="An old-school drum-kit sampler"
+arch=(i686 x86_64)
+url="https://drumkv1.sourceforge.io/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('ec6107f84b7967df1162e1c60c24da65')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 11:12:59 UTC (rev 258595)
+++ community-x86_64/PKGBUILD   2017-09-17 11:13:30 UTC (rev 258596)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: speps 
-
-pkgname=drumkv1
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="An old-school drum-kit sampler"
-arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
-license=('GPL')
-groups=('lv2-plugins')
-depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
- 'hicolor-icon-theme' 'shared-mime-info')
-makedepends=('qt5-tools')
-source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c9af118f491ea21f5542f30395d37864')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: drumkv1/repos/community-x86_64/PKGBUILD (from rev 258595, 
drumkv1/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 11:13:30 UTC (rev 258596)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=drumkv1
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="An old-school drum-kit sampler"
+arch=(i686 x86_64)
+url="https://drumkv1.sourceforge.io/;
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
+ 'hicolor-icon-theme' 'shared-mime-info')
+makedepends=('qt5-tools')
+source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('ec6107f84b7967df1162e1c60c24da65')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 11:12:59
  Author: arojas
Revision: 258595

Update to 0.8.4

Modified:
  drumkv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 10:38:52 UTC (rev 258594)
+++ PKGBUILD2017-09-17 11:12:59 UTC (rev 258595)
@@ -2,11 +2,11 @@
 # Maintainer: speps 
 
 pkgname=drumkv1
-pkgver=0.8.0
+pkgver=0.8.4
 pkgrel=1
 pkgdesc="An old-school drum-kit sampler"
 arch=(i686 x86_64)
-url="https://$pkgname.sourceforge.net/$pkgname-index.html;
+url="https://drumkv1.sourceforge.io/;
 license=('GPL')
 groups=('lv2-plugins')
 depends=('jack' 'liblo' 'lv2' 'qt5-base' 'desktop-file-utils'
@@ -13,7 +13,7 @@
  'hicolor-icon-theme' 'shared-mime-info')
 makedepends=('qt5-tools')
 source=("https://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c9af118f491ea21f5542f30395d37864')
+md5sums=('ec6107f84b7967df1162e1c60c24da65')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-17 Thread Jelle van der Waa
Date: Sunday, September 17, 2017 @ 10:38:38
  Author: jelle
Revision: 258593

upgpkg: geckodriver 0.19.0-1

Modified:
  geckodriver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 08:39:02 UTC (rev 258592)
+++ PKGBUILD2017-09-17 10:38:38 UTC (rev 258593)
@@ -2,7 +2,7 @@
 # Contributor: kevku 
 
 pkgname=geckodriver
-pkgver=0.18.0
+pkgver=0.19.0
 pkgrel=1
 pkgdesc="Proxy for using W3C WebDriver-compatible clients to interact with 
Gecko-based browsers."
 arch=("x86_64" "i686")
@@ -10,7 +10,7 @@
 license=("MPL")
 makedepends=("rust" "cargo" "gcc-libs")
 source=("https://github.com/mozilla/geckodriver/archive/v$pkgver.tar.gz;)
-sha256sums=('a2a5bbf6077c1dca05ef1ff1d48572803d022f2faf92a749721aa04c446d97e2')
+sha256sums=('eba534fd299f7f3867523b059d414d88aa4e785d8962436f5b944d01638d759f')
 
 build() {
cd "$pkgname-$pkgver"


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

2017-09-17 Thread Jelle van der Waa
Date: Sunday, September 17, 2017 @ 10:38:52
  Author: jelle
Revision: 258594

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 10:38:38 UTC (rev 258593)
+++ community-i686/PKGBUILD 2017-09-17 10:38:52 UTC (rev 258594)
@@ -1,24 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: kevku 
-
-pkgname=geckodriver
-pkgver=0.18.0
-pkgrel=1
-pkgdesc="Proxy for using W3C WebDriver-compatible clients to interact with 
Gecko-based browsers."
-arch=("x86_64" "i686")
-url="https://github.com/mozilla/geckodriver;
-license=("MPL")
-makedepends=("rust" "cargo" "gcc-libs")
-source=("https://github.com/mozilla/geckodriver/archive/v$pkgver.tar.gz;)
-sha256sums=('a2a5bbf6077c1dca05ef1ff1d48572803d022f2faf92a749721aa04c446d97e2')
-
-build() {
-   cd "$pkgname-$pkgver"
-   cargo build --release
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-install -Dm755 target/release/$pkgname "$pkgdir"/usr/bin/$pkgname
-ln -sf /usr/bin/$pkgname "$pkgdir"/usr/bin/wires
-}

Copied: geckodriver/repos/community-i686/PKGBUILD (from rev 258593, 
geckodriver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 10:38:52 UTC (rev 258594)
@@ -0,0 +1,24 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: kevku 
+
+pkgname=geckodriver
+pkgver=0.19.0
+pkgrel=1
+pkgdesc="Proxy for using W3C WebDriver-compatible clients to interact with 
Gecko-based browsers."
+arch=("x86_64" "i686")
+url="https://github.com/mozilla/geckodriver;
+license=("MPL")
+makedepends=("rust" "cargo" "gcc-libs")
+source=("https://github.com/mozilla/geckodriver/archive/v$pkgver.tar.gz;)
+sha256sums=('eba534fd299f7f3867523b059d414d88aa4e785d8962436f5b944d01638d759f')
+
+build() {
+   cd "$pkgname-$pkgver"
+   cargo build --release
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+install -Dm755 target/release/$pkgname "$pkgdir"/usr/bin/$pkgname
+ln -sf /usr/bin/$pkgname "$pkgdir"/usr/bin/wires
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 10:38:38 UTC (rev 258593)
+++ community-x86_64/PKGBUILD   2017-09-17 10:38:52 UTC (rev 258594)
@@ -1,24 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: kevku 
-
-pkgname=geckodriver
-pkgver=0.18.0
-pkgrel=1
-pkgdesc="Proxy for using W3C WebDriver-compatible clients to interact with 
Gecko-based browsers."
-arch=("x86_64" "i686")
-url="https://github.com/mozilla/geckodriver;
-license=("MPL")
-makedepends=("rust" "cargo" "gcc-libs")
-source=("https://github.com/mozilla/geckodriver/archive/v$pkgver.tar.gz;)
-sha256sums=('a2a5bbf6077c1dca05ef1ff1d48572803d022f2faf92a749721aa04c446d97e2')
-
-build() {
-   cd "$pkgname-$pkgver"
-   cargo build --release
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-install -Dm755 target/release/$pkgname "$pkgdir"/usr/bin/$pkgname
-ln -sf /usr/bin/$pkgname "$pkgdir"/usr/bin/wires
-}

Copied: geckodriver/repos/community-x86_64/PKGBUILD (from rev 258593, 
geckodriver/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 10:38:52 UTC (rev 258594)
@@ -0,0 +1,24 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: kevku 
+
+pkgname=geckodriver
+pkgver=0.19.0
+pkgrel=1
+pkgdesc="Proxy for using W3C WebDriver-compatible clients to interact with 
Gecko-based browsers."
+arch=("x86_64" "i686")
+url="https://github.com/mozilla/geckodriver;
+license=("MPL")
+makedepends=("rust" "cargo" "gcc-libs")
+source=("https://github.com/mozilla/geckodriver/archive/v$pkgver.tar.gz;)
+sha256sums=('eba534fd299f7f3867523b059d414d88aa4e785d8962436f5b944d01638d759f')
+
+build() {
+   cd "$pkgname-$pkgver"
+   cargo build --release
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+install -Dm755 target/release/$pkgname "$pkgdir"/usr/bin/$pkgname
+ln -sf /usr/bin/$pkgname "$pkgdir"/usr/bin/wires
+}


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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 10:06:44
  Author: arojas
Revision: 305706

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-17 10:06:01 UTC (rev 305705)
+++ extra-i686/PKGBUILD 2017-09-17 10:06:44 UTC (rev 305706)
@@ -1,30 +0,0 @@
-#$Id$
-# Maintainer: tobias 
-
-pkgname=exiv2
-pkgver=0.26
-pkgrel=1
-pkgdesc="Exif, Iptc and XMP metadata manipulation library and tools"
-arch=('i686' 'x86_64')
-url="http://exiv2.org;
-license=('GPL2')
-depends=('gcc-libs' 'zlib' 'expat')
-makedepends=('cmake')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/Exiv2/exiv2/archive/v$pkgver.tar.gz;)
-md5sums=('5a32bfa41b5e5409c9347b227350e100')
-
-build() {
-  cd $pkgname-$pkgver 
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DEXIV2_ENABLE_VIDEO=ON \
--DEXIV2_ENABLE_BUILD_PO=ON \
--DEXIV2_ENABLE_BUILD_SAMPLES=OFF \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: exiv2/repos/extra-i686/PKGBUILD (from rev 305705, exiv2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-17 10:06:44 UTC (rev 305706)
@@ -0,0 +1,37 @@
+#$Id$
+# Maintainer: tobias 
+
+pkgname=exiv2
+pkgver=0.26
+pkgrel=2
+pkgdesc="Exif, Iptc and XMP metadata manipulation library and tools"
+arch=('i686' 'x86_64')
+url="http://exiv2.org;
+license=('GPL2')
+depends=('gcc-libs' 'zlib' 'expat')
+makedepends=('cmake')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/Exiv2/exiv2/archive/v$pkgver.tar.gz;
+
exiv2-fix-segfault.patch::"https://github.com/Exiv2/exiv2/commit/5405d616.patch;)
+md5sums=('5a32bfa41b5e5409c9347b227350e100'
+ '2f3a0bf2ceb9f2143f97fe1afb3c8c54')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../exiv2-fix-segfault.patch # http://dev.exiv2.org/issues/1305
+}
+
+build() {
+  cd $pkgname-$pkgver 
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DEXIV2_ENABLE_VIDEO=ON \
+-DEXIV2_ENABLE_BUILD_PO=ON \
+-DEXIV2_ENABLE_BUILD_SAMPLES=OFF \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-17 10:06:01 UTC (rev 305705)
+++ extra-x86_64/PKGBUILD   2017-09-17 10:06:44 UTC (rev 305706)
@@ -1,30 +0,0 @@
-#$Id$
-# Maintainer: tobias 
-
-pkgname=exiv2
-pkgver=0.26
-pkgrel=1
-pkgdesc="Exif, Iptc and XMP metadata manipulation library and tools"
-arch=('i686' 'x86_64')
-url="http://exiv2.org;
-license=('GPL2')
-depends=('gcc-libs' 'zlib' 'expat')
-makedepends=('cmake')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/Exiv2/exiv2/archive/v$pkgver.tar.gz;)
-md5sums=('5a32bfa41b5e5409c9347b227350e100')
-
-build() {
-  cd $pkgname-$pkgver 
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DEXIV2_ENABLE_VIDEO=ON \
--DEXIV2_ENABLE_BUILD_PO=ON \
--DEXIV2_ENABLE_BUILD_SAMPLES=OFF \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: exiv2/repos/extra-x86_64/PKGBUILD (from rev 305705, 
exiv2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-09-17 10:06:44 UTC (rev 305706)
@@ -0,0 +1,37 @@
+#$Id$
+# Maintainer: tobias 
+
+pkgname=exiv2
+pkgver=0.26
+pkgrel=2
+pkgdesc="Exif, Iptc and XMP metadata manipulation library and tools"
+arch=('i686' 'x86_64')
+url="http://exiv2.org;
+license=('GPL2')
+depends=('gcc-libs' 'zlib' 'expat')
+makedepends=('cmake')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/Exiv2/exiv2/archive/v$pkgver.tar.gz;
+
exiv2-fix-segfault.patch::"https://github.com/Exiv2/exiv2/commit/5405d616.patch;)
+md5sums=('5a32bfa41b5e5409c9347b227350e100'
+ '2f3a0bf2ceb9f2143f97fe1afb3c8c54')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../exiv2-fix-segfault.patch # http://dev.exiv2.org/issues/1305
+}
+
+build() {
+  cd $pkgname-$pkgver 
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DEXIV2_ENABLE_VIDEO=ON \
+

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

2017-09-17 Thread Antonio Rojas
Date: Sunday, September 17, 2017 @ 10:06:01
  Author: arojas
Revision: 305705

Fix crash on loading certain images (FS#55003)

Modified:
  exiv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:49:20 UTC (rev 305704)
+++ PKGBUILD2017-09-17 10:06:01 UTC (rev 305705)
@@ -3,7 +3,7 @@
 
 pkgname=exiv2
 pkgver=0.26
-pkgrel=1
+pkgrel=2
 pkgdesc="Exif, Iptc and XMP metadata manipulation library and tools"
 arch=('i686' 'x86_64')
 url="http://exiv2.org;
@@ -10,9 +10,16 @@
 license=('GPL2')
 depends=('gcc-libs' 'zlib' 'expat')
 makedepends=('cmake')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/Exiv2/exiv2/archive/v$pkgver.tar.gz;)
-md5sums=('5a32bfa41b5e5409c9347b227350e100')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/Exiv2/exiv2/archive/v$pkgver.tar.gz;
+
exiv2-fix-segfault.patch::"https://github.com/Exiv2/exiv2/commit/5405d616.patch;)
+md5sums=('5a32bfa41b5e5409c9347b227350e100'
+ '2f3a0bf2ceb9f2143f97fe1afb3c8c54')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../exiv2-fix-segfault.patch # http://dev.exiv2.org/issues/1305
+}
+
 build() {
   cd $pkgname-$pkgver 
   cmake . \


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

2017-09-17 Thread Bruno Pagani
Date: Sunday, September 17, 2017 @ 08:39:02
  Author: archange
Revision: 258592

archrelease: copy trunk to community-any

Added:
  arc-kde/repos/community-any/PKGBUILD
(from rev 258591, arc-kde/trunk/PKGBUILD)
Deleted:
  arc-kde/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-17 08:38:22 UTC (rev 258591)
+++ PKGBUILD2017-09-17 08:39:02 UTC (rev 258592)
@@ -1,40 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgbase=arc-kde
-pkgname=('arc-kde' 'kvantum-theme-arc')
-pkgver=20170912
-pkgrel=3
-pkgdesc="Arc theme for KDE Plasma 5"
-arch=('any')
-url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
-license=('GPL3')
-options=('!strip')
-source=(${pkgbase}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
-sha256sums=('313ccb8440a3fa81e84effca779ddcbba7765490974c1e8c002c9e77efb8d111')
-
-prepare() {
-cd ${pkgbase}-${pkgver}
-mv yakuake/{kns_,}skins
-}
-
-package_arc-kde() {
-optdepends=('kvantum-theme-arc: Arc theme for Kvantum Qt style 
(recommended)')
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
- 
-cp -r plasma "${pkgdir}"/usr/share
-cp -r aurorae "${pkgdir}"/usr/share
-cp -r color-schemes "${pkgdir}"/usr/share
-cp -r konsole "${pkgdir}"/usr/share
-cp -r yakuake "${pkgdir}"/usr/share
-}
-
-
-package_kvantum-theme-arc() {
-pkgdesc="Arc theme for Kvantum"
-depends=('kvantum-qt5')
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r Kvantum "${pkgdir}"/usr/share
-}

Copied: arc-kde/repos/community-any/PKGBUILD (from rev 258591, 
arc-kde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-17 08:39:02 UTC (rev 258592)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+
+pkgbase=arc-kde
+pkgname=('arc-kde' 'kvantum-theme-arc')
+pkgver=20170916
+pkgrel=1
+pkgdesc="Arc theme for KDE Plasma 5"
+arch=('any')
+url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
+license=('GPL3')
+options=('!strip')
+source=(${pkgbase}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
+sha256sums=('7e0e4b72cadaf37c325c203ee228e3e240cd48c34ddc018b3aa6de140dd68c7a')
+
+package_arc-kde() {
+optdepends=('kvantum-theme-arc: Arc theme for Kvantum Qt style 
(recommended)')
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+ 
+cp -r plasma "${pkgdir}"/usr/share
+cp -r aurorae "${pkgdir}"/usr/share
+cp -r color-schemes "${pkgdir}"/usr/share
+cp -r konsole "${pkgdir}"/usr/share
+cp -r yakuake "${pkgdir}"/usr/share
+}
+
+
+package_kvantum-theme-arc() {
+pkgdesc="Arc theme for Kvantum"
+depends=('kvantum-qt5')
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r Kvantum "${pkgdir}"/usr/share
+}


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

2017-09-17 Thread Bruno Pagani
Date: Sunday, September 17, 2017 @ 08:38:22
  Author: archange
Revision: 258591

upgpkg: arc-kde 20170916-1

Modified:
  arc-kde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 06:28:31 UTC (rev 258590)
+++ PKGBUILD2017-09-17 08:38:22 UTC (rev 258591)
@@ -2,8 +2,8 @@
 
 pkgbase=arc-kde
 pkgname=('arc-kde' 'kvantum-theme-arc')
-pkgver=20170912
-pkgrel=3
+pkgver=20170916
+pkgrel=1
 pkgdesc="Arc theme for KDE Plasma 5"
 arch=('any')
 url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
@@ -10,13 +10,8 @@
 license=('GPL3')
 options=('!strip')
 source=(${pkgbase}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
-sha256sums=('313ccb8440a3fa81e84effca779ddcbba7765490974c1e8c002c9e77efb8d111')
+sha256sums=('7e0e4b72cadaf37c325c203ee228e3e240cd48c34ddc018b3aa6de140dd68c7a')
 
-prepare() {
-cd ${pkgbase}-${pkgver}
-mv yakuake/{kns_,}skins
-}
-
 package_arc-kde() {
 optdepends=('kvantum-theme-arc: Arc theme for Kvantum Qt style 
(recommended)')
 cd ${pkgbase}-${pkgver}


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

2017-09-17 Thread Evangelos Foutras
Date: Sunday, September 17, 2017 @ 06:28:31
  Author: foutrelis
Revision: 258590

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 06:28:16 UTC (rev 258589)
+++ community-i686/PKGBUILD 2017-09-17 06:28:31 UTC (rev 258590)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Roman G 
-
-pkgname=axel
-pkgver=2.14
-pkgrel=1
-pkgdesc="Light command line download accelerator"
-arch=('i686' 'x86_64')
-url="https://github.com/eribertomota/axel;
-license=('GPL')
-depends=('glibc' 'openssl')
-source=($pkgname-$pkgver.tar.gz::https://github.com/eribertomota/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('a2bf0859380347bcfbdec1d34322f609f0b883e107d3bf5c06001bcc6a8136ad')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./autogen.sh
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: axel/repos/community-i686/PKGBUILD (from rev 258589, 
axel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 06:28:31 UTC (rev 258590)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Roman G 
+
+pkgname=axel
+pkgver=2.14.1
+pkgrel=1
+pkgdesc="Light command line download accelerator"
+arch=('i686' 'x86_64')
+url="https://github.com/eribertomota/axel;
+license=('GPL')
+depends=('glibc' 'openssl')
+source=($pkgname-$pkgver.tar.gz::https://github.com/eribertomota/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('acf6820d98a792faf309fc9acf22f7caf4b8a4b7001072c8f546b3c4fc755e39')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./autogen.sh
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 06:28:16 UTC (rev 258589)
+++ community-x86_64/PKGBUILD   2017-09-17 06:28:31 UTC (rev 258590)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Roman G 
-
-pkgname=axel
-pkgver=2.14
-pkgrel=1
-pkgdesc="Light command line download accelerator"
-arch=('i686' 'x86_64')
-url="https://github.com/eribertomota/axel;
-license=('GPL')
-depends=('glibc' 'openssl')
-source=($pkgname-$pkgver.tar.gz::https://github.com/eribertomota/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('a2bf0859380347bcfbdec1d34322f609f0b883e107d3bf5c06001bcc6a8136ad')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./autogen.sh
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: axel/repos/community-x86_64/PKGBUILD (from rev 258589, 
axel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-17 06:28:31 UTC (rev 258590)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Roman G 
+
+pkgname=axel
+pkgver=2.14.1
+pkgrel=1
+pkgdesc="Light command line download accelerator"
+arch=('i686' 'x86_64')
+url="https://github.com/eribertomota/axel;
+license=('GPL')
+depends=('glibc' 'openssl')
+source=($pkgname-$pkgver.tar.gz::https://github.com/eribertomota/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('acf6820d98a792faf309fc9acf22f7caf4b8a4b7001072c8f546b3c4fc755e39')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./autogen.sh
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


  1   2   >