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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 05:43:23
  Author: eschwartz
Revision: 382201

upgpkg: python-arrow 0.12.1-4

fix broken url
remove incorrect runtime dependency on nose
add tests

Modified:
  python-arrow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 05:40:14 UTC (rev 382200)
+++ PKGBUILD2018-09-16 05:43:23 UTC (rev 382201)
@@ -4,13 +4,16 @@
 pkgbase=python-arrow
 pkgname=('python-arrow' 'python2-arrow')
 pkgver=0.12.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Better dates and times for Python'
 arch=('any')
-url='http://crsmithdev.com/arrow/'
-license=('GPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("python-arrow-${pkgver}.tar.gz::https://files.pythonhosted.org/packages/e0/86/4eb5228a43042e9a80fe8c84093a8a36f5db34a3767ebd5e1e7729864e7b/arrow-0.12.1.tar.gz;)
+url="https://arrow.readthedocs.io;
+license=('Apache')
+makedepends=('python-dateutil' 'python-setuptools'
+ 'python2-dateutil' 'python2-setuptools' 
'python2-backports.functools_lru_cache')
+checkdepends=('python-chai' 'python-nose' 'python-simplejson'
+  'python2-chai' 'python2-nose' 'python2-simplejson')
+source=("https://files.pythonhosted.org/packages/source/a/arrow/arrow-${pkgver}.tar.gz;)
 sha256sums=('a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd')
 
 prepare() {
@@ -25,8 +28,15 @@
 popd
   done
 }
+
+check() {
+  cd python-arrow-${pkgver}
+  nosetests
+  nosetests2
+}
+
 package_python-arrow() {
-  depends=('python' 'python-dateutil' 'python-nose')
+  depends=('python' 'python-dateutil')
 
   cd python-arrow-${pkgver}
 
@@ -34,7 +44,7 @@
 }
 
 package_python2-arrow() {
-  depends=('python2' 'python2-backports.functools_lru_cache' 
'python2-dateutil' 'python2-nose')
+  depends=('python2' 'python2-backports.functools_lru_cache' 
'python2-dateutil')
 
   cd python2-arrow-${pkgver}
 


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 05:43:39
  Author: eschwartz
Revision: 382202

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   99 +
 1 file changed, 54 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 05:43:23 UTC (rev 382201)
+++ PKGBUILD2018-09-16 05:43:39 UTC (rev 382202)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Tatsuyuki Ishi 
-
-pkgbase=python-arrow
-pkgname=('python-arrow' 'python2-arrow')
-pkgver=0.12.1
-pkgrel=3
-pkgdesc='Better dates and times for Python'
-arch=('any')
-url='http://crsmithdev.com/arrow/'
-license=('GPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("python-arrow-${pkgver}.tar.gz::https://files.pythonhosted.org/packages/e0/86/4eb5228a43042e9a80fe8c84093a8a36f5db34a3767ebd5e1e7729864e7b/arrow-0.12.1.tar.gz;)
-sha256sums=('a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd')
-
-prepare() {
-  cp -r {,python-}arrow-${pkgver}
-  mv {,python2-}arrow-${pkgver}
-}
-
-build() {
-  for py in python{,2}; do
-pushd ${py}-arrow-${pkgver}
-${py} setup.py build
-popd
-  done
-}
-package_python-arrow() {
-  depends=('python' 'python-dateutil' 'python-nose')
-
-  cd python-arrow-${pkgver}
-
-  python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
-}
-
-package_python2-arrow() {
-  depends=('python2' 'python2-backports.functools_lru_cache' 
'python2-dateutil' 'python2-nose')
-
-  cd python2-arrow-${pkgver}
-
-  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-arrow/repos/community-any/PKGBUILD (from rev 382201, 
python-arrow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 05:43:39 UTC (rev 382202)
@@ -0,0 +1,54 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Tatsuyuki Ishi 
+
+pkgbase=python-arrow
+pkgname=('python-arrow' 'python2-arrow')
+pkgver=0.12.1
+pkgrel=4
+pkgdesc='Better dates and times for Python'
+arch=('any')
+url="https://arrow.readthedocs.io;
+license=('Apache')
+makedepends=('python-dateutil' 'python-setuptools'
+ 'python2-dateutil' 'python2-setuptools' 
'python2-backports.functools_lru_cache')
+checkdepends=('python-chai' 'python-nose' 'python-simplejson'
+  'python2-chai' 'python2-nose' 'python2-simplejson')
+source=("https://files.pythonhosted.org/packages/source/a/arrow/arrow-${pkgver}.tar.gz;)
+sha256sums=('a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd')
+
+prepare() {
+  cp -r {,python-}arrow-${pkgver}
+  mv {,python2-}arrow-${pkgver}
+}
+
+build() {
+  for py in python{,2}; do
+pushd ${py}-arrow-${pkgver}
+${py} setup.py build
+popd
+  done
+}
+
+check() {
+  cd python-arrow-${pkgver}
+  nosetests
+  nosetests2
+}
+
+package_python-arrow() {
+  depends=('python' 'python-dateutil')
+
+  cd python-arrow-${pkgver}
+
+  python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
+}
+
+package_python2-arrow() {
+  depends=('python2' 'python2-backports.functools_lru_cache' 
'python2-dateutil')
+
+  cd python2-arrow-${pkgver}
+
+  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 05:40:14
  Author: eschwartz
Revision: 382200

archrelease: copy trunk to community-any

Added:
  python-chai/repos/community-any/
  python-chai/repos/community-any/PKGBUILD
(from rev 382199, python-chai/trunk/PKGBUILD)

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

Copied: python-chai/repos/community-any/PKGBUILD (from rev 382199, 
python-chai/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-09-16 05:40:14 UTC (rev 382200)
@@ -0,0 +1,45 @@
+# Contributor: Eli Schwartz 
+
+_pkgname=chai
+pkgbase=python-chai
+pkgname=('python-chai' 'python2-chai')
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Easy to use mocking, stubbing and spying framework."
+arch=('any')
+url="https://github.com/agoragames/${_pkgname};
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc')
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+python2 setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+nosetests
+nosetests2
+}
+
+package_python-chai() {
+depends=('python')
+
+cd "${srcdir}"/${_pkgname}-${pkgver}
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-chai() {
+depends=('python2')
+
+cd "${srcdir}"/${_pkgname}-${pkgver}
+python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


[arch-commits] Commit in (4 files)

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 05:39:36
  Author: eschwartz
Revision: 382199

addpkg: python-chai 1.1.2-1

checkdepends for python-arrow

Added:
  python-chai/
  python-chai/repos/
  python-chai/trunk/
  python-chai/trunk/PKGBUILD

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

Added: python-chai/trunk/PKGBUILD
===
--- python-chai/trunk/PKGBUILD  (rev 0)
+++ python-chai/trunk/PKGBUILD  2018-09-16 05:39:36 UTC (rev 382199)
@@ -0,0 +1,45 @@
+# Contributor: Eli Schwartz 
+
+_pkgname=chai
+pkgbase=python-chai
+pkgname=('python-chai' 'python2-chai')
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Easy to use mocking, stubbing and spying framework."
+arch=('any')
+url="https://github.com/agoragames/${_pkgname};
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc')
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+python2 setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+nosetests
+nosetests2
+}
+
+package_python-chai() {
+depends=('python')
+
+cd "${srcdir}"/${_pkgname}-${pkgver}
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-chai() {
+depends=('python2')
+
+cd "${srcdir}"/${_pkgname}-${pkgver}
+python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


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


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

2018-09-15 Thread Anatol Pomozov via arch-commits
Date: Sunday, September 16, 2018 @ 04:54:32
  Author: anatolik
Revision: 382198

archrelease: copy trunk to community-x86_64

Added:
  vegeta/repos/community-x86_64/
  vegeta/repos/community-x86_64/PKGBUILD
(from rev 382197, vegeta/trunk/PKGBUILD)

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

Copied: vegeta/repos/community-x86_64/PKGBUILD (from rev 382197, 
vegeta/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-16 04:54:32 UTC (rev 382198)
@@ -0,0 +1,36 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=vegeta
+pkgver=11.3.0
+pkgrel=1
+pkgdesc="HTTP load testing tool"
+arch=(x86_64)
+url="https://github.com/tsenart/vegeta;
+license=(MIT)
+makedepends=(go-pie dep git)
+source=(vegeta-$pkgver.zip::https://github.com/tsenart/vegeta/archive/cli/v$pkgver.zip)
+sha256sums=('ce2018ee047e3fdd9a0f01b7fc144d24e20db6386be5671385d84383e59c97c5')
+
+prepare() {
+  export GOPATH="$srcdir/gopath"
+  mkdir -p gopath/src/github.com/tsenart
+  cp -r vegeta-cli-v$pkgver/ gopath/src/github.com/tsenart/vegeta
+
+  cd gopath/src/github.com/tsenart/vegeta
+  dep ensure -v
+}
+
+build() {
+  cd gopath/src/github.com/tsenart/vegeta
+  #go build -v -X main.Version=$pkgver ./...
+  CGO_ENABLED=0 go install -v -ldflags "-X main.Version=$pkgver -X 
main.Date=`date +'%FT%TZ%z'`" ./...
+}
+
+check() {
+  cd gopath/src/github.com/tsenart/vegeta
+  go test ./...
+}
+
+package() {
+  install -Dm755 "gopath/bin/vegeta" "$pkgdir/usr/bin/vegeta"
+}


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 04:52:40
  Author: eschwartz
Revision: 382197

archrelease: copy trunk to community-x86_64

Added:
  gnome-twitch/repos/community-x86_64/PKGBUILD
(from rev 382196, gnome-twitch/trunk/PKGBUILD)
Deleted:
  gnome-twitch/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 04:52:23 UTC (rev 382196)
+++ PKGBUILD2018-09-16 04:52:40 UTC (rev 382197)
@@ -1,39 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=gnome-twitch
-pkgver=0.4.2
-pkgrel=5
-pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
-arch=('x86_64')
-url='https://github.com/vinszent/gnome-twitch'
-license=('GPL3')
-depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas')
-makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base'
- 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 
'mpv')
-optdepends=('gstreamer: gstreamer backends'
-'gst-libav: gstreamer backends'
-'gst-plugins-base: gstreamer backends'
-'gst-plugins-good: gstreamer backends'
-'gst-plugins-bad: gstreamer backends'
-'clutter-gst: gstreamer-clutter backend'
-'clutter-gtk: gstreamer-clutter backend'
-'mpv: mpv-opengl backend')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
-
-build() {
-  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
-
-  cd "$srcdir"/$pkgbase-$pkgver/build
-  meson --prefix=/usr \
---buildtype=plain \
-
-Dbuild-player-backends=gstreamer-cairo,gstreamer-clutter,gstreamer-opengl,mpv-opengl
 \
-..
-  ninja
-}
-
-package_gnome-twitch() {
-  cd $pkgbase-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: gnome-twitch/repos/community-x86_64/PKGBUILD (from rev 382196, 
gnome-twitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 04:52:40 UTC (rev 382197)
@@ -0,0 +1,41 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=gnome-twitch
+pkgver=0.4.2
+pkgrel=6
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')
+url='https://github.com/vinszent/gnome-twitch'
+license=('GPL3')
+depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas')
+makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base'
+ 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 
'mpv')
+optdepends=('gstreamer: gstreamer backends'
+'gst-libav: gstreamer backends'
+'gst-plugins-base: gstreamer backends'
+'gst-plugins-good: gstreamer backends'
+'gst-plugins-bad: gstreamer backends'
+'clutter-gst: gstreamer-clutter backend'
+'clutter-gtk: gstreamer-clutter backend'
+'mpv: mpv-opengl backend')
+conflicts=(gnome-twitch-player-backend-{gstreamer-{cairo,clutter,opengl},mpv-opengl})
+replaces=(gnome-twitch-player-backend-{gstreamer-{cairo,clutter,opengl},mpv-opengl})
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
+
+build() {
+  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
+
+  cd "$srcdir"/$pkgbase-$pkgver/build
+  meson --prefix=/usr \
+--buildtype=plain \
+
-Dbuild-player-backends=gstreamer-cairo,gstreamer-clutter,gstreamer-opengl,mpv-opengl
 \
+..
+  ninja
+}
+
+package_gnome-twitch() {
+  cd $pkgbase-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 04:52:23
  Author: eschwartz
Revision: 382196

upgpkg: gnome-twitch 0.4.2-6

have the new package replace the old split packages...

Modified:
  gnome-twitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 04:44:34 UTC (rev 382195)
+++ PKGBUILD2018-09-16 04:52:23 UTC (rev 382196)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-twitch
 pkgver=0.4.2
-pkgrel=5
+pkgrel=6
 pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
 arch=('x86_64')
 url='https://github.com/vinszent/gnome-twitch'
@@ -18,6 +18,8 @@
 'clutter-gst: gstreamer-clutter backend'
 'clutter-gtk: gstreamer-clutter backend'
 'mpv: mpv-opengl backend')
+conflicts=(gnome-twitch-player-backend-{gstreamer-{cairo,clutter,opengl},mpv-opengl})
+replaces=(gnome-twitch-player-backend-{gstreamer-{cairo,clutter,opengl},mpv-opengl})
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
 
sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
 


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

2018-09-15 Thread Anatol Pomozov via arch-commits
Date: Sunday, September 16, 2018 @ 04:44:34
  Author: anatolik
Revision: 382195

vegeta: add HTTP load testing tool

Added:
  vegeta/
  vegeta/repos/
  vegeta/trunk/
  vegeta/trunk/PKGBUILD

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

Added: vegeta/trunk/PKGBUILD
===
--- vegeta/trunk/PKGBUILD   (rev 0)
+++ vegeta/trunk/PKGBUILD   2018-09-16 04:44:34 UTC (rev 382195)
@@ -0,0 +1,36 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=vegeta
+pkgver=11.3.0
+pkgrel=1
+pkgdesc="HTTP load testing tool"
+arch=(x86_64)
+url="https://github.com/tsenart/vegeta;
+license=(MIT)
+makedepends=(go-pie dep git)
+source=(vegeta-$pkgver.zip::https://github.com/tsenart/vegeta/archive/cli/v$pkgver.zip)
+sha256sums=('ce2018ee047e3fdd9a0f01b7fc144d24e20db6386be5671385d84383e59c97c5')
+
+prepare() {
+  export GOPATH="$srcdir/gopath"
+  mkdir -p gopath/src/github.com/tsenart
+  cp -r vegeta-cli-v$pkgver/ gopath/src/github.com/tsenart/vegeta
+
+  cd gopath/src/github.com/tsenart/vegeta
+  dep ensure -v
+}
+
+build() {
+  cd gopath/src/github.com/tsenart/vegeta
+  #go build -v -X main.Version=$pkgver ./...
+  CGO_ENABLED=0 go install -v -ldflags "-X main.Version=$pkgver -X 
main.Date=`date +'%FT%TZ%z'`" ./...
+}
+
+check() {
+  cd gopath/src/github.com/tsenart/vegeta
+  go test ./...
+}
+
+package() {
+  install -Dm755 "gopath/bin/vegeta" "$pkgdir/usr/bin/vegeta"
+}


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


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 04:22:43
  Author: eschwartz
Revision: 382193

upgpkg: gnome-twitch 0.4.2-5

merge backends into main package via optdepends; gnome-twitch is perfectly
well-behaved when backends don't have their dependencies installed

Modified:
  gnome-twitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 03:48:05 UTC (rev 382192)
+++ PKGBUILD2018-09-16 04:22:43 UTC (rev 382193)
@@ -1,19 +1,23 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
-pkgbase=gnome-twitch
-pkgname=('gnome-twitch'
- 'gnome-twitch-player-backend-gstreamer-cairo'
- 'gnome-twitch-player-backend-gstreamer-clutter'
- 'gnome-twitch-player-backend-gstreamer-opengl'
- 'gnome-twitch-player-backend-mpv-opengl')
+pkgname=gnome-twitch
 pkgver=0.4.2
-pkgrel=4
+pkgrel=5
 pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
 arch=('x86_64')
 url='https://github.com/vinszent/gnome-twitch'
 license=('GPL3')
 depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas')
-makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 
'clutter-gtk' 'mpv')
+makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base'
+ 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 
'mpv')
+optdepends=('gstreamer: gstreamer backends'
+'gst-libav: gstreamer backends'
+'gst-plugins-base: gstreamer backends'
+'gst-plugins-good: gstreamer backends'
+'gst-plugins-bad: gstreamer backends'
+'clutter-gst: gstreamer-clutter backend'
+'clutter-gtk: gstreamer-clutter backend'
+'mpv: mpv-opengl backend')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
 
sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
 
@@ -20,90 +24,16 @@
 build() {
   mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
 
-  # Build app
-  echo 'Build the main app...'
   cd "$srcdir"/$pkgbase-$pkgver/build
-  arch-meson ..
+  meson --prefix=/usr \
+--buildtype=plain \
+
-Dbuild-player-backends=gstreamer-cairo,gstreamer-clutter,gstreamer-opengl,mpv-opengl
 \
+..
   ninja
-
-  # Build GStreamer Cairo backend
-  echo 'Building the GStreamer Cairo backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-cairo
-  ninja
-
-  # Build GStreamer Clutter backend
-  echo 'Building the GStreamer Clutter backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-clutter
-  ninja
-
-  # Build GStreamer OpenGL backend
-  echo 'Building the GStreamer OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-opengl
-  ninja
-
-  # Build MPV OpenGL backend
-  echo 'Building the MPV OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=mpv-opengl
-  ninja
 }
 
 package_gnome-twitch() {
-  depends+=('gnome-twitch-player-backend')
-  optdepends=('gnome-twitch-player-backend-gstreamer-cairo: GStreamer Cairo 
backend'
-  'gnome-twitch-player-backend-gstreamer-clutter: GStreamer 
Clutter backend'
-  'gnome-twitch-player-backend-gstreamer-opengl: GStreamer OpenGL 
backend'
-  'gnome-twitch-player-backend-mpv-opengl: MPV OpenGL')
-
   cd $pkgbase-$pkgver/build
 
   DESTDIR="$pkgdir" ninja install
 }
-
-package_gnome-twitch-player-backend-gstreamer-cairo() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-cairo
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-clutter() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-clutter
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-opengl() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-mpv-opengl() {
-  depends=('gnome-twitch' 'mpv')
-  

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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 04:22:58
  Author: eschwartz
Revision: 382194

archrelease: copy trunk to community-x86_64

Added:
  gnome-twitch/repos/community-x86_64/PKGBUILD
(from rev 382193, gnome-twitch/trunk/PKGBUILD)
Deleted:
  gnome-twitch/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 04:22:43 UTC (rev 382193)
+++ PKGBUILD2018-09-16 04:22:58 UTC (rev 382194)
@@ -1,109 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgbase=gnome-twitch
-pkgname=('gnome-twitch'
- 'gnome-twitch-player-backend-gstreamer-cairo'
- 'gnome-twitch-player-backend-gstreamer-clutter'
- 'gnome-twitch-player-backend-gstreamer-opengl'
- 'gnome-twitch-player-backend-mpv-opengl')
-pkgver=0.4.2
-pkgrel=4
-pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
-arch=('x86_64')
-url='https://github.com/vinszent/gnome-twitch'
-license=('GPL3')
-depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas')
-makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 
'clutter-gtk' 'mpv')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
-
-build() {
-  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
-
-  # Build app
-  echo 'Build the main app...'
-  cd "$srcdir"/$pkgbase-$pkgver/build
-  arch-meson ..
-  ninja
-
-  # Build GStreamer Cairo backend
-  echo 'Building the GStreamer Cairo backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-cairo
-  ninja
-
-  # Build GStreamer Clutter backend
-  echo 'Building the GStreamer Clutter backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-clutter
-  ninja
-
-  # Build GStreamer OpenGL backend
-  echo 'Building the GStreamer OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-opengl
-  ninja
-
-  # Build MPV OpenGL backend
-  echo 'Building the MPV OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=mpv-opengl
-  ninja
-}
-
-package_gnome-twitch() {
-  depends+=('gnome-twitch-player-backend')
-  optdepends=('gnome-twitch-player-backend-gstreamer-cairo: GStreamer Cairo 
backend'
-  'gnome-twitch-player-backend-gstreamer-clutter: GStreamer 
Clutter backend'
-  'gnome-twitch-player-backend-gstreamer-opengl: GStreamer OpenGL 
backend'
-  'gnome-twitch-player-backend-mpv-opengl: MPV OpenGL')
-
-  cd $pkgbase-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-cairo() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-cairo
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-clutter() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-clutter
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-opengl() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-mpv-opengl() {
-  depends=('gnome-twitch' 'mpv')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/mpv-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: gnome-twitch/repos/community-x86_64/PKGBUILD (from rev 382193, 
gnome-twitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 04:22:58 UTC (rev 382194)
@@ -0,0 +1,39 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=gnome-twitch
+pkgver=0.4.2
+pkgrel=5
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')
+url='https://github.com/vinszent/gnome-twitch'
+license=('GPL3')
+depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas')
+makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base'
+ 'gst-plugins-good' 

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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 03:48:05
  Author: eschwartz
Revision: 382192

rm propset svn:keywords

Modified:
  python-gphoto2/trunk/PKGBUILD (properties)

Index: python-gphoto2/trunk/PKGBUILD
===
--- python-gphoto2/trunk/PKGBUILD   2018-09-16 03:44:59 UTC (rev 382191)
+++ python-gphoto2/trunk/PKGBUILD   2018-09-16 03:48:05 UTC (rev 382192)

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


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 03:44:59
  Author: eschwartz
Revision: 382191

update url

Modified:
  python-easygui/trunk/PKGBUILD (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 03:40:09 UTC (rev 382190)
+++ PKGBUILD2018-09-16 03:44:59 UTC (rev 382191)
@@ -6,7 +6,7 @@
 pkgver=0.98.1
 pkgrel=2
 pkgdesc="Python module for very simple, very easy GUI programming"
-url="http://easygui.sourceforge.net/;
+url="https://easygui.readthedocs.io;
 license=('BSD')
 arch=('any')
 depends=('python' 'tk')


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


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 03:40:09
  Author: eschwartz
Revision: 382190

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 03:39:51 UTC (rev 382189)
+++ PKGBUILD2018-09-16 03:40:09 UTC (rev 382190)
@@ -1,32 +0,0 @@
-# Contributor: Hugo Osvaldo Barrera 
-# Contributor: farwayer 
-
-pkgname=python-colour
-_pyname=colour
-pkgver=0.1.5
-pkgrel=3
-pkgdesc="Colour representations manipulation library (RGB, HSL, web, ...)"
-arch=('any')
-url="https://github.com/vaab/colour;
-license=('BSD')
-depends=('python')
-makedepends=('git' 'python-setuptools')
-_commit=11f138eb7841d2045160b378a2eec0c2321144c0  # tags/0.1.5
-source=("git+https://github.com/vaab/colour#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $_pyname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $_pyname
-  python setup.py build
-}
-
-package() {
-  cd $_pyname
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-colour/repos/community-any/PKGBUILD (from rev 382189, 
python-colour/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 03:40:09 UTC (rev 382190)
@@ -0,0 +1,32 @@
+# Contributor: Hugo Osvaldo Barrera 
+# Contributor: farwayer 
+
+pkgname=python-colour
+_pyname=colour
+pkgver=0.1.5
+pkgrel=4
+pkgdesc="Colour representations manipulation library (RGB, HSL, web, ...)"
+arch=('any')
+url="https://github.com/vaab/colour;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools' 'python-d2to1')
+checkdepends=('python-nose')
+source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz;)
+sha256sums=('af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee')
+
+build() {
+  cd $_pyname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pyname-$pkgver
+  nosetests
+}
+
+package() {
+  cd $_pyname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 03:39:51
  Author: eschwartz
Revision: 382189

upgpkg: python-colour 0.1.5-4

add testsuite
fix missing makedepends downloaded from PyPI during build()
use PyPI release which does not depend on git metadata

Modified:
  python-colour/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 02:37:40 UTC (rev 382188)
+++ PKGBUILD2018-09-16 03:39:51 UTC (rev 382189)
@@ -4,29 +4,29 @@
 pkgname=python-colour
 _pyname=colour
 pkgver=0.1.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Colour representations manipulation library (RGB, HSL, web, ...)"
 arch=('any')
 url="https://github.com/vaab/colour;
 license=('BSD')
 depends=('python')
-makedepends=('git' 'python-setuptools')
-_commit=11f138eb7841d2045160b378a2eec0c2321144c0  # tags/0.1.5
-source=("git+https://github.com/vaab/colour#commit=$_commit;)
-sha256sums=('SKIP')
+makedepends=('python-setuptools' 'python-d2to1')
+checkdepends=('python-nose')
+source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz;)
+sha256sums=('af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee')
 
-pkgver() {
-  cd $_pyname
-  git describe --tags | sed 's/-/+/g'
-}
-
 build() {
-  cd $_pyname
+  cd $_pyname-$pkgver
   python setup.py build
 }
 
+check() {
+  cd $_pyname-$pkgver
+  nosetests
+}
+
 package() {
-  cd $_pyname
+  cd $_pyname-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


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

2018-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 16, 2018 @ 02:37:40
  Author: felixonmars
Revision: 382188

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 02:37:08 UTC (rev 382187)
+++ PKGBUILD2018-09-16 02:37:40 UTC (rev 382188)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Thomas S Hatch 
-
-pkgname=python-ioflo
-pkgver=1.7.4
-pkgrel=2
-pkgdesc='Flo based programming interface in python'
-arch=('any')
-url='http://ioflo.com'
-license=('Apache')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ioflo/ioflo/archive/v$pkgver.tar.gz;)
-sha512sums=('415b43b66c1be479e8ba4fc993f180418f95f1ae0d16ff8c496476da7a04f6caa0f918a064c60034cd926f4f49c1112946b911b57339a76ee5b0d2564ade224f')
-
-build() {
-  cd ioflo-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd ioflo-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd ioflo-$pkgver
-  python setup.py install --root="$pkgdir" -O1
-}

Copied: python-ioflo/repos/community-any/PKGBUILD (from rev 382187, 
python-ioflo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 02:37:40 UTC (rev 382188)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas S Hatch 
+
+pkgname=python-ioflo
+pkgver=1.7.5
+pkgrel=1
+pkgdesc='Flo based programming interface in python'
+arch=('any')
+url='http://ioflo.com'
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ioflo/ioflo/archive/v$pkgver.tar.gz;)
+sha512sums=('886767d72c4067727d47652fba157a76ecd8a6a5478a761feb3923992ffc585addfe892027ade104c5d44a56fd1645c0548ce3b554553f58e1104864c359470b')
+
+build() {
+  cd ioflo-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd ioflo-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd ioflo-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+}


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

2018-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 16, 2018 @ 02:37:08
  Author: felixonmars
Revision: 382187

upgpkg: python-ioflo 1.7.5-1

Modified:
  python-ioflo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 02:32:58 UTC (rev 382186)
+++ PKGBUILD2018-09-16 02:37:08 UTC (rev 382187)
@@ -3,8 +3,8 @@
 # Contributor: Thomas S Hatch 
 
 pkgname=python-ioflo
-pkgver=1.7.4
-pkgrel=2
+pkgver=1.7.5
+pkgrel=1
 pkgdesc='Flo based programming interface in python'
 arch=('any')
 url='http://ioflo.com'
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ioflo/ioflo/archive/v$pkgver.tar.gz;)
-sha512sums=('415b43b66c1be479e8ba4fc993f180418f95f1ae0d16ff8c496476da7a04f6caa0f918a064c60034cd926f4f49c1112946b911b57339a76ee5b0d2564ade224f')
+sha512sums=('886767d72c4067727d47652fba157a76ecd8a6a5478a761feb3923992ffc585addfe892027ade104c5d44a56fd1645c0548ce3b554553f58e1104864c359470b')
 
 build() {
   cd ioflo-$pkgver


[arch-commits] Commit in lz4/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2018-09-15 Thread Sébastien Luttringer via arch-commits
Date: Sunday, September 16, 2018 @ 01:05:05
  Author: seblu
Revision: 334664

archrelease: copy trunk to testing-x86_64

Added:
  lz4/repos/testing-x86_64/
  lz4/repos/testing-x86_64/PKGBUILD
(from rev 334663, lz4/trunk/PKGBUILD)

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

Copied: lz4/repos/testing-x86_64/PKGBUILD (from rev 334663, lz4/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-09-16 01:05:05 UTC (rev 334664)
@@ -0,0 +1,38 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=lz4
+epoch=1
+pkgver=1.8.3
+pkgrel=1
+pkgdesc='Extremely fast compression algorithm'
+arch=('x86_64')
+url='http://www.lz4.org/'
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('glibc')
+source=("git+https://github.com/lz4/lz4.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  # do not use the main makefile, it calls sub make with -e
+  # exported CLFAGS by makepkg break the version. see FS#50071
+  cd $pkgname
+  make -C lib PREFIX=/usr
+  make -C programs PREFIX=/usr lz4 lz4c
+}
+
+check() {
+  rm -f passwd.lz4
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install PREFIX=/usr DESTDIR="$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-09-15 Thread Sébastien Luttringer via arch-commits
Date: Sunday, September 16, 2018 @ 01:04:42
  Author: seblu
Revision: 334663

upgpkg: lz4 1:1.8.3-1

Modified:
  lz4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 00:37:17 UTC (rev 334662)
+++ PKGBUILD2018-09-16 01:04:42 UTC (rev 334663)
@@ -2,8 +2,8 @@
 
 pkgname=lz4
 epoch=1
-pkgver=1.8.2
-pkgrel=2
+pkgver=1.8.3
+pkgrel=1
 pkgdesc='Extremely fast compression algorithm'
 arch=('x86_64')
 url='http://www.lz4.org/'


[arch-commits] Commit in perl-test-number-delta/repos/community-any (2 files)

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 01:02:00
  Author: eschwartz
Revision: 381830

archrelease: copy trunk to community-any

Added:
  perl-test-number-delta/repos/community-any/PKGBUILD
(from rev 381829, perl-test-number-delta/trunk/PKGBUILD)
Deleted:
  perl-test-number-delta/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 01:01:42 UTC (rev 381829)
+++ PKGBUILD2018-09-16 01:02:00 UTC (rev 381830)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=perl-test-number-delta
-pkgver=1.06
-pkgrel=2
-pkgdesc="Compare the difference between numbers against a given tolerance"
-arch=(any)
-license=('PerlArtistic')
-url="http://search.cpan.org/~dagolden/Test-Number-Delta;
-options=(!emptydirs)
-depends=('perl')
-provides=("test-number-delta=$pkgver" "Test::Number::Delta=$pkgver" 
"perl-test-number-delta=$pkgver")
-source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Test-Number-Delta-$pkgver.tar.gz)
-md5sums=('f0d420e7f679a0bc593713d21c25f51e')
-
-build() {
-  cd  "$srcdir"/Test-Number-Delta-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/Test-Number-Delta-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-test-number-delta/repos/community-any/PKGBUILD (from rev 381829, 
perl-test-number-delta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 01:02:00 UTC (rev 381830)
@@ -0,0 +1,23 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=perl-test-number-delta
+pkgver=1.06
+pkgrel=3
+pkgdesc="Compare the difference between numbers against a given tolerance"
+arch=(any)
+license=('PerlArtistic')
+url="https://metacpan.org/release/Test-Number-Delta;
+depends=('perl')
+source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Test-Number-Delta-$pkgver.tar.gz)
+md5sums=('f0d420e7f679a0bc593713d21c25f51e')
+
+build() {
+  cd  "$srcdir"/Test-Number-Delta-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Test-Number-Delta-$pkgver
+  make install DESTDIR="$pkgdir"
+}


[arch-commits] Commit in perl-test-number-delta/trunk (PKGBUILD)

2018-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 16, 2018 @ 01:01:42
  Author: eschwartz
Revision: 381829

upgpkg: perl-test-number-delta 1.06-3

remove invalid or duplicative provides
update redirected url

Modified:
  perl-test-number-delta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-16 00:37:09 UTC (rev 381828)
+++ PKGBUILD2018-09-16 01:01:42 UTC (rev 381829)
@@ -2,14 +2,12 @@
 
 pkgname=perl-test-number-delta
 pkgver=1.06
-pkgrel=2
+pkgrel=3
 pkgdesc="Compare the difference between numbers against a given tolerance"
 arch=(any)
 license=('PerlArtistic')
-url="http://search.cpan.org/~dagolden/Test-Number-Delta;
-options=(!emptydirs)
+url="https://metacpan.org/release/Test-Number-Delta;
 depends=('perl')
-provides=("test-number-delta=$pkgver" "Test::Number::Delta=$pkgver" 
"perl-test-number-delta=$pkgver")
 
source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Test-Number-Delta-$pkgver.tar.gz)
 md5sums=('f0d420e7f679a0bc593713d21c25f51e')
 
@@ -22,6 +20,4 @@
 package() {
   cd  "$srcdir"/Test-Number-Delta-$pkgver
   make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
 }


[arch-commits] Commit in nvidia-390xx/repos (3 files)

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:27:36
  Author: heftig
Revision: 334655

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 334654, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 334654, nvidia-390xx/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   87 
 kernel-4.16.patch |   33 +++
 2 files changed, 120 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 334654, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-09-16 00:27:36 UTC (rev 334655)
@@ -0,0 +1,87 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.77
+_extramodules=extramodules-ARCH
+pkgrel=16
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 
'linux-headers>=4.18' 'linux-headers<4.19')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch)
+sha256sums=('6eb950dc4b59697d12d79a975b2c21a5e3cde49a12b61432d7e836110a06a6ea'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux>=4.18' 'linux<4.19' "nvidia-390xx-utils=${pkgver}" 
'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 334654, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2018-09-16 00:27:36 UTC (rev 334655)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 

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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:27:27
  Author: heftig
Revision: 381821

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 381820, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 381820, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 381820, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:27:27 UTC (rev 381821)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=160
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux>=4.18' 'linux<4.19')
+makedepends=('linux-headers>=4.18' 'linux-headers<4.19')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 381820, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-09-16 00:27:27 UTC (rev 381821)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:27:53
  Author: heftig
Revision: 334657

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 334656, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch
(from rev 334656, nvidia-340xx/trunk/kernel-4.11.patch)

---+
 PKGBUILD  |   72 
 kernel-4.11.patch |   38 +++
 2 files changed, 110 insertions(+)

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 334656, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-09-16 00:27:53 UTC (rev 334657)
@@ -0,0 +1,72 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.107
+_extramodules=extramodules-ARCH
+pkgrel=29
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.18' 
'linux-headers<4.19')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'kernel-4.11.patch')
+sha512sums=('0de6f182d67bd322df7ae04e74c0cde6973c55bfea47a8f2503a29f8a899cd1b801ae4b52d066628df4a4f9c84e5e7547465bdc37d1b87df47af43fdab23466f'
+
'c25d90499e1deb26129a67dd7e953be8c1e31c5770e2b8b64d03af54cf1afec1a52636e74900f8ac468692207ab8a3765a12edd581142c4d2cfd2d6e66ac7ac2')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np0 < "${srcdir}/kernel-4.11.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.18' 'linux<4.19' "nvidia-340xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-340xx=$pkgver")
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 334656, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2018-09-16 00:27:53 UTC (rev 334657)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  
++#endif
+ {
+ #if defined(NV_VM_FAULT_HAS_ADDRESS)
+ unsigned long vaddr = vmf->address;
+@@ -828,7 +832,11 @@
+ struct page *page = NULL;
+ int retval;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ retval = _fault_common(vma, vaddr, , vmf->flags);
++#else
++retval = _fault_common(NULL, vaddr, , vmf->flags);
++#endif
+ 
+ vmf->page = page;
+ 
+@@ -866,7 +874,11 @@
+ // it's dealing with anonymous mapping (see handle_pte_fault).
+ //
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _sigbus_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else
++int _sigbus_fault(struct vm_fault *vmf)
++#endif
+ {
+ 

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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:27:45
  Author: heftig
Revision: 334656

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 334655, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/kernel-4.16.patch
(from rev 334655, nvidia/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   86 
 kernel-4.16.patch |   33 +++
 2 files changed, 119 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 334655, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-09-16 00:27:45 UTC (rev 334656)
@@ -0,0 +1,86 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=396.54
+_extramodules=extramodules-ARCH
+pkgrel=5
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers>=4.18' 
'linux-headers<4.19')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch)
+sha256sums=('7c3e3c9ca6aea31ad2613ef9cb6a4510d95d61b698f084e55adcc0611ee9eec3'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.18' 'linux<4.19' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/kernel-4.16.patch (from rev 334655, 
nvidia/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2018-09-16 00:27:45 UTC (rev 334656)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ compile_test() {
+ # Determine if the phys_to_dma function is present.
+ #
+ CODE="
++

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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:27:08
  Author: heftig
Revision: 381819

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 381818, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 381818, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:27:08 UTC (rev 381819)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.046.00
+pkgrel=11
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('b2e66b03b696ba55c9fb7c896db8ac5377233d14120520735d31c33147d0d4c3')
+
+build() {
+   KERNEL_VERSION=$(=4.18" "linux<4.19")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-ARCH" -m644 src/*.ko
+   find "$pkgdir" -name '*.ko' -exec xz {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:26:59
  Author: heftig
Revision: 381818

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 381817, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 381817, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:26:59 UTC (rev 381818)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=166
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux>=4.18' 'linux<4.19')
+makedepends=('linux-headers>=4.18' 'linux-headers<4.19')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:27:18
  Author: heftig
Revision: 381820

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 381819, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 381819, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 381819, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   51 +++
 dkms.conf |9 +
 3 files changed, 61 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
381819, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2018-09-16 00:27:18 UTC (rev 
381820)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 381819, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:27:18 UTC (rev 381820)
@@ -0,0 +1,51 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=101
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.18' 'linux<4.19')
+makedepends=('linux-headers>=4.18' 'linux-headers<4.19')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 381819, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-09-16 00:27:18 UTC (rev 381820)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:26:34
  Author: heftig
Revision: 381815

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 381814, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 381814, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:26:34 UTC (rev 381815)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=54
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.18' 'linux<4.19')
+makedepends=('linux-headers>=4.18' 'linux-headers<4.19' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:26:41
  Author: heftig
Revision: 381816

archrelease: copy trunk to community-staging-x86_64

Added:
  broadcom-wl/repos/community-staging-x86_64/
  broadcom-wl/repos/community-staging-x86_64/PKGBUILD
(from rev 381815, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 381815, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:26:41 UTC (rev 381816)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+
+pkgname=broadcom-wl# Build against stock -arch kernel
+#pkgname=broadcom-wl-custom# Build agains kernel with a different name
+_kernelname=${pkgname#broadcom-wl}
+pkgver=6.30.223.271
+pkgrel=47
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" 
"${pkgname%$_kernelname}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "$srcdir" -m $pkgname/$pkgver -k $_kernver
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${pkgname}/${pkgver}/${_kernver}/${CARCH}/module/*.ko
+find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+_license="/usr/share/licenses/${pkgname}-dkms/"
+if [[ -d $_license ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/} ${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${pkgname}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} "${pkgdir}"/${_modprobe/-dkms/}
+fi
+}


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 16, 2018 @ 00:26:50
  Author: heftig
Revision: 381817

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 381816, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 381816, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-16 00:26:50 UTC (rev 381817)
@@ -0,0 +1,59 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.2.18
+pkgrel=10
+_linux_major=4
+_linux_minor=18
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux>=$_linux_cur" "linux<$_linux_next"
+ "linux-headers>=$_linux_cur" "linux-headers<$_linux_next"
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  license=('GPL')
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, September 16, 2018 @ 00:03:00
  Author: svenstaro
Revision: 381814

archrelease: copy trunk to community-x86_64

Added:
  springlobby/repos/community-x86_64/PKGBUILD
(from rev 381813, springlobby/trunk/PKGBUILD)
Deleted:
  springlobby/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-16 00:02:06 UTC (rev 381813)
+++ PKGBUILD2018-09-16 00:03:00 UTC (rev 381814)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: DuGi 
-
-pkgname=springlobby
-pkgver=0.264
-pkgrel=2
-pkgdesc="A free cross-platform lobby client for the Spring RTS project"
-arch=('x86_64')
-url="http://springlobby.info/;
-license=('GPL2')
-depends=('hicolor-icon-theme' 'wxgtk3' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
- 'alure' 'libsm')
-optdepends=('sdl' 'sdl_sound' 'sdl_mixer')
-makedepends=('boost' 'cmake')
-source=(http://springlobby.info/tarballs/springlobby-${pkgver}.tar.bz2)
-sha512sums=('f8024a98be7d6ea755c4380494415813084aadb6dcf72ed0aaeba0ddf9fbaf992ccd5455713c807c0d6feb7db606068be62d4bb2cfcb4697f0406a2ec4f404eb')
-
-build() {
-  cd $srcdir/${pkgname}-${pkgver}
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3
-  make
-}
-
-package() {
-  cd $srcdir/${pkgname}-${pkgver}
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim: sw=2:ts=2 et:

Copied: springlobby/repos/community-x86_64/PKGBUILD (from rev 381813, 
springlobby/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-16 00:03:00 UTC (rev 381814)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: DuGi 
+
+pkgname=springlobby
+pkgver=0.267
+pkgrel=1
+pkgdesc="A free cross-platform lobby client for the Spring RTS project"
+arch=('x86_64')
+url="http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk3' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer')
+makedepends=('boost' 'cmake')
+source=(http://springlobby.info/tarballs/springlobby-${pkgver}.tar.bz2)
+sha512sums=('6127bd7377f9a843b23df6dae7a07af1122f6ec5fa13cd8d16c0c7a3cc84e1f7af2fb7df929f904ee0b4e3abf12ae1e525ffb39b2afa0215433209054cf0de5f')
+
+build() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3
+  make
+}
+
+package() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, September 16, 2018 @ 00:02:06
  Author: svenstaro
Revision: 381813

upgpkg: springlobby 0.267-1

Modified:
  springlobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:50:56 UTC (rev 381812)
+++ PKGBUILD2018-09-16 00:02:06 UTC (rev 381813)
@@ -2,8 +2,8 @@
 # Contributor: DuGi 
 
 pkgname=springlobby
-pkgver=0.264
-pkgrel=2
+pkgver=0.267
+pkgrel=1
 pkgdesc="A free cross-platform lobby client for the Spring RTS project"
 arch=('x86_64')
 url="http://springlobby.info/;
@@ -13,7 +13,7 @@
 optdepends=('sdl' 'sdl_sound' 'sdl_mixer')
 makedepends=('boost' 'cmake')
 source=(http://springlobby.info/tarballs/springlobby-${pkgver}.tar.bz2)
-sha512sums=('f8024a98be7d6ea755c4380494415813084aadb6dcf72ed0aaeba0ddf9fbaf992ccd5455713c807c0d6feb7db606068be62d4bb2cfcb4697f0406a2ec4f404eb')
+sha512sums=('6127bd7377f9a843b23df6dae7a07af1122f6ec5fa13cd8d16c0c7a3cc84e1f7af2fb7df929f904ee0b4e3abf12ae1e525ffb39b2afa0215433209054cf0de5f')
 
 build() {
   cd $srcdir/${pkgname}-${pkgver}


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 23:50:56
  Author: ffy00
Revision: 381812

archrelease: copy trunk to community-any

Added:
  vimix-grub/repos/community-any/
  vimix-grub/repos/community-any/PKGBUILD
(from rev 381811, vimix-grub/trunk/PKGBUILD)

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

Copied: vimix-grub/repos/community-any/PKGBUILD (from rev 381811, 
vimix-grub/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-09-15 23:50:56 UTC (rev 381812)
@@ -0,0 +1,20 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=vimix-grub
+pkgver=20180916
+pkgrel=1
+pkgdesc='Vimix grub theme'
+arch=(any)
+url='https://github.com/vinceliuice/grub2-themes'
+license=('GPL3')
+depends=('grub')
+optdepends=('grub-customizer: GUI tool to configure grub')
+makedepends=('git')
+source=('git+https://github.com/Se7endAY/grub2-theme-vimix')
+sha512sums=('SKIP')
+
+package() {
+install -dm 755 $pkgdir/boot/grub/themes/Vimix
+cp -r --no-preserve=ownership grub2-theme-vimix/Vimix 
$pkgdir/boot/grub/themes/
+}
+


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 23:50:51
  Author: ffy00
Revision: 381811

upgpkg: vimix-grub 20180916-1

Added:
  vimix-grub/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 23:50:51 UTC (rev 381811)
@@ -0,0 +1,20 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=vimix-grub
+pkgver=20180916
+pkgrel=1
+pkgdesc='Vimix grub theme'
+arch=(any)
+url='https://github.com/vinceliuice/grub2-themes'
+license=('GPL3')
+depends=('grub')
+optdepends=('grub-customizer: GUI tool to configure grub')
+makedepends=('git')
+source=('git+https://github.com/Se7endAY/grub2-theme-vimix')
+sha512sums=('SKIP')
+
+package() {
+install -dm 755 $pkgdir/boot/grub/themes/Vimix
+cp -r --no-preserve=ownership grub2-theme-vimix/Vimix 
$pkgdir/boot/grub/themes/
+}
+


[arch-commits] Commit in (gcc54)

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:49:43
  Author: svenstaro
Revision: 381810

Drop gcc54

Deleted:
  gcc54/


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 23:43:52
  Author: ffy00
Revision: 381809

add root structure

Added:
  vimix-grub/
  vimix-grub/repos/
  vimix-grub/trunk/


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:41:07
  Author: svenstaro
Revision: 381808

archrelease: copy trunk to community-x86_64

Added:
  bazel/repos/community-x86_64/PKGBUILD
(from rev 381807, bazel/trunk/PKGBUILD)
Deleted:
  bazel/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 23:41:01 UTC (rev 381807)
+++ PKGBUILD2018-09-15 23:41:07 UTC (rev 381808)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Frederik Schwan 
-# Contributor: Simon Legner 
-
-pkgname=bazel
-pkgver=0.16.1
-pkgrel=1
-pkgdesc='Correct, reproducible, and fast builds for everyone'
-arch=('x86_64')
-license=('Apache')
-url='https://bazel.io/'
-depends=('java-environment=8' 'libarchive' 'zip' 'unzip')
-makedepends=('git' 'protobuf' 'python')
-options=('!distcc' '!strip')
-source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
-
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
-sha512sums=('8dd13c0138ed6c4d3624d748e2a0ba2af91d2550cc3ccc5976b855a4e1748df049e16cdaeb713b0a8544a95cb60b70d262285fa4127bbaa4c0e903b13f6a2122'
-'SKIP')
-validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
-
-build() {
-  ./compile.sh
-  ./output/bazel build scripts:bazel-complete.bash
-  cd output
-  ./bazel shutdown
-}
-
-package() {
-  install -Dm755 ${srcdir}/scripts/packages/bazel.sh ${pkgdir}/usr/bin/bazel
-  install -Dm755 ${srcdir}/output/bazel ${pkgdir}/usr/bin/bazel-real
-  install -Dm644 ${srcdir}/bazel-bin/scripts/bazel-complete.bash 
${pkgdir}/usr/share/bash-completion/completions/bazel
-  install -Dm644 ${srcdir}/scripts/zsh_completion/_bazel 
${pkgdir}/usr/share/zsh/site-functions/_bazel
-  mkdir -p ${pkgdir}/opt/bazel/
-  for d in examples third_party tools; do
-cp -r ${srcdir}/${d} ${pkgdir}/opt/bazel/
-  done
-}
-# vim:set ts=2 sw=2 et:

Copied: bazel/repos/community-x86_64/PKGBUILD (from rev 381807, 
bazel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 23:41:07 UTC (rev 381808)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frederik Schwan 
+# Contributor: Simon Legner 
+
+pkgname=bazel
+pkgver=0.17.1
+pkgrel=1
+pkgdesc='Correct, reproducible, and fast builds for everyone'
+arch=('x86_64')
+license=('Apache')
+url='https://bazel.io/'
+depends=('java-environment=8' 'libarchive' 'zip' 'unzip')
+makedepends=('git' 'protobuf' 'python')
+options=('!distcc' '!strip')
+source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
+
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
+sha512sums=('b8c2292baf67b0b8a85811145ac220084975a2bcd2f2a9f461e83589296c56166886f91a32cde343762247a9c3a04100b3f86a8f969d880f641f88183a804e6b'
+'SKIP')
+validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
+
+build() {
+  ./compile.sh
+  ./output/bazel build scripts:bazel-complete.bash
+  cd output
+  ./bazel shutdown
+}
+
+package() {
+  install -Dm755 ${srcdir}/scripts/packages/bazel.sh ${pkgdir}/usr/bin/bazel
+  install -Dm755 ${srcdir}/output/bazel ${pkgdir}/usr/bin/bazel-real
+  install -Dm644 ${srcdir}/bazel-bin/scripts/bazel-complete.bash 
${pkgdir}/usr/share/bash-completion/completions/bazel
+  install -Dm644 ${srcdir}/scripts/zsh_completion/_bazel 
${pkgdir}/usr/share/zsh/site-functions/_bazel
+  mkdir -p ${pkgdir}/opt/bazel/
+  for d in examples third_party tools; do
+cp -r ${srcdir}/${d} ${pkgdir}/opt/bazel/
+  done
+}
+# vim:set ts=2 sw=2 et:


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:41:01
  Author: svenstaro
Revision: 381807

upgpkg: bazel 0.17.1-1

Modified:
  bazel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:38:05 UTC (rev 381806)
+++ PKGBUILD2018-09-15 23:41:01 UTC (rev 381807)
@@ -3,7 +3,7 @@
 # Contributor: Simon Legner 
 
 pkgname=bazel
-pkgver=0.16.1
+pkgver=0.17.1
 pkgrel=1
 pkgdesc='Correct, reproducible, and fast builds for everyone'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 options=('!distcc' '!strip')
 
source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
 
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
-sha512sums=('8dd13c0138ed6c4d3624d748e2a0ba2af91d2550cc3ccc5976b855a4e1748df049e16cdaeb713b0a8544a95cb60b70d262285fa4127bbaa4c0e903b13f6a2122'
+sha512sums=('b8c2292baf67b0b8a85811145ac220084975a2bcd2f2a9f461e83589296c56166886f91a32cde343762247a9c3a04100b3f86a8f969d880f641f88183a804e6b'
 'SKIP')
 validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
 


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:38:00
  Author: svenstaro
Revision: 381805

upgpkg: glbinding 3.0.2-1

Modified:
  glbinding/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:35:39 UTC (rev 381804)
+++ PKGBUILD2018-09-15 23:38:00 UTC (rev 381805)
@@ -3,7 +3,7 @@
 # Contributor: Xentec 
 
 pkgname=glbinding
-pkgver=2.1.4
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="A C++ binding for the OpenGL API, generated using the gl.xml 
specification"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'mesa')
 checkdepends=('python')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/cginternals/glbinding/archive/v$pkgver.tar.gz;)
-sha256sums=('cb5971b086c0d217b2304d31368803fd2b8c12ee0d41c280d40d7c23588f8be2')
+sha256sums=('23a383f3ed31af742a4952b6c26faa9c346dd982ba9112c68293a578a6e542ad')
 
 prepare() {
   cd $pkgname-$pkgver


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:38:05
  Author: svenstaro
Revision: 381806

archrelease: copy trunk to community-staging-x86_64

Added:
  glbinding/repos/community-staging-x86_64/
  glbinding/repos/community-staging-x86_64/PKGBUILD
(from rev 381805, glbinding/trunk/PKGBUILD)

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

Copied: glbinding/repos/community-staging-x86_64/PKGBUILD (from rev 381805, 
glbinding/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-15 23:38:05 UTC (rev 381806)
@@ -0,0 +1,49 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Xentec 
+
+pkgname=glbinding
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="A C++ binding for the OpenGL API, generated using the gl.xml 
specification"
+arch=('x86_64')
+url="http://www.glbinding.org;
+license=('MIT')
+depends=('libgl' 'glfw')
+makedepends=('cmake' 'mesa')
+checkdepends=('python')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/cginternals/glbinding/archive/v$pkgver.tar.gz;)
+sha256sums=('23a383f3ed31af742a4952b6c26faa9c346dd982ba9112c68293a578a6e542ad')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  rm -rf build
+  mkdir build
+}
+
+build() {
+  cd $pkgname-$pkgver/build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DOPTION_BUILD_TESTS=ON
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/build
+
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make -C build DESTDIR="$pkgdir/" install
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 README.md AUTHORS "$pkgdir"/usr/share/doc/$pkgname
+}


[arch-commits] Commit in arm-none-eabi-newlib/repos/community-any (PKGBUILD PKGBUILD)

2018-09-15 Thread Anatol Pomozov via arch-commits
Date: Saturday, September 15, 2018 @ 23:35:39
  Author: anatolik
Revision: 381804

archrelease: copy trunk to community-any

Added:
  arm-none-eabi-newlib/repos/community-any/PKGBUILD
(from rev 381803, arm-none-eabi-newlib/trunk/PKGBUILD)
Deleted:
  arm-none-eabi-newlib/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 23:35:15 UTC (rev 381803)
+++ PKGBUILD2018-09-15 23:35:39 UTC (rev 381804)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-
-_target=arm-none-eabi
-pkgname=$_target-newlib
-pkgver=3.0.0.20180226
-pkgrel=2
-_upstream_ver=$pkgver
-pkgdesc='A C standard library implementation intended for use on embedded 
systems (ARM bare metal)'
-arch=(any)
-url='http://www.sourceware.org/newlib/'
-license=(BSD)
-makedepends=($_target-gcc)
-options=(!emptydirs !strip)
-source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
-sha256sums=('d0b40c874c3047eccbf06fe916d3fc746bd94e8a4cd14c54381b2f72f68c5665')
-
-build() {
-  rm -rf build-{newlib,nano}
-  mkdir build-{newlib,nano}
-
-  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
-  cd "$srcdir"/build-newlib
-  ../newlib-$_upstream_ver/configure \
---target=$_target \
---prefix=/usr \
---disable-newlib-supplied-syscalls \
---disable-nls \
---enable-newlib-io-long-long \
---enable-newlib-register-fini
-  make
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  cd "$srcdir"/build-nano
-  ../newlib-$_upstream_ver/configure \
---target=$_target \
---prefix=/usr \
---disable-newlib-supplied-syscalls \
---disable-nls \
---enable-newlib-reent-small   \
---disable-newlib-fvwrite-in-streamio  \
---disable-newlib-fseek-optimization   \
---disable-newlib-wide-orient  \
---enable-newlib-nano-malloc   \
---disable-newlib-unbuf-stream-opt \
---enable-lite-exit\
---enable-newlib-global-atexit \
---enable-newlib-nano-formatted-io
-  make
-}
-
-package() {
-  cd "$srcdir"/build-nano
-  make DESTDIR="$pkgdir" install -j1
-  find "$pkgdir" -regex ".*/lib\(c\|g\|rdimon\)\.a" -exec rename .a _nano.a 
'{}' \;
-  install -d "$pkgdir"/usr/$_target/include/newlib-nano
-  install -m644 -t "$pkgdir"/usr/$_target/include/newlib-nano 
"$pkgdir"/usr/$_target/include/newlib.h
-
-  cd "$srcdir"/build-newlib
-  make DESTDIR="$pkgdir" install -j1
-
-  find "$pkgdir"/usr/$_target/lib \( -name "*.a" -or -name "*.o" \) -exec 
$_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R 
.debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R 
.debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  install -d "$pkgdir"/usr/share/licenses/$pkgname/
-  install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ 
"$srcdir"/newlib-$_upstream_ver/COPYING*
-}

Copied: arm-none-eabi-newlib/repos/community-any/PKGBUILD (from rev 381803, 
arm-none-eabi-newlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 23:35:39 UTC (rev 381804)
@@ -0,0 +1,65 @@
+# Maintainer: Anatol Pomozov 
+
+_target=arm-none-eabi
+pkgname=$_target-newlib
+pkgver=3.0.0.20180831
+pkgrel=1
+_upstream_ver=$pkgver
+pkgdesc='A C standard library implementation intended for use on embedded 
systems (ARM bare metal)'
+arch=(any)
+url='http://www.sourceware.org/newlib/'
+license=(BSD)
+makedepends=($_target-gcc)
+options=(!emptydirs !strip)
+source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
+sha256sums=('3ad3664f227357df15ff34e954bfd9f501009a647667cd307bf0658aefd6eb5b')
+
+build() {
+  rm -rf build-{newlib,nano}
+  mkdir build-{newlib,nano}
+
+  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
+  cd "$srcdir"/build-newlib
+  ../newlib-$_upstream_ver/configure \
+--target=$_target \
+--prefix=/usr \
+--disable-newlib-supplied-syscalls \
+--disable-nls \
+--enable-newlib-io-long-long \
+--enable-newlib-register-fini
+  make
+
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  cd "$srcdir"/build-nano
+  ../newlib-$_upstream_ver/configure \
+--target=$_target \
+--prefix=/usr \
+--disable-newlib-supplied-syscalls \
+--disable-nls \
+--enable-newlib-reent-small   \
+--disable-newlib-fvwrite-in-streamio  \
+--disable-newlib-fseek-optimization   \
+--disable-newlib-wide-orient  \
+--enable-newlib-nano-malloc   \
+--disable-newlib-unbuf-stream-opt \
+--enable-lite-exit\
+--enable-newlib-global-atexit \
+--enable-newlib-nano-formatted-io
+  make
+}
+
+package() {
+  cd 

[arch-commits] Commit in shotcut/repos/community-x86_64 (4 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 23:35:15
  Author: ffy00
Revision: 381803

archrelease: copy trunk to community-x86_64

Added:
  shotcut/repos/community-x86_64/PKGBUILD
(from rev 381802, shotcut/trunk/PKGBUILD)
  shotcut/repos/community-x86_64/melt.patch
(from rev 381802, shotcut/trunk/melt.patch)
Deleted:
  shotcut/repos/community-x86_64/PKGBUILD
  shotcut/repos/community-x86_64/melt.patch

+
 PKGBUILD   |   94 +--
 melt.patch |   26 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 23:35:10 UTC (rev 381802)
+++ PKGBUILD2018-09-15 23:35:15 UTC (rev 381803)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: nfnty 
-
-pkgname=shotcut
-pkgdesc='Cross-platform Qt based Video Editor'
-pkgver=18.08.14
-pkgrel=4
-arch=('x86_64')
-url='https://www.shotcut.org'
-license=('GPL3')
-depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
- 'qt5-quickcontrols' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras'
- 'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins' 
'ladspa')
-makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz;
-'melt.patch')
-sha512sums=('ee1f8bac04907aae1ac3d85d1f61d1e7cdf0e0f67117c968dd79313f31d5b7f2fcb32bc8066c14fb5bb09a315a81b067a88c75004dae87a00b5f316ae87be8a0'
-
'57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 < ../melt.patch
-}
-
-build() {
-  mkdir $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  qmake .. \
-PREFIX='/usr' \
-QMAKE_CFLAGS_RELEASE="$CFLAGS" \
-QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
-SHOTCUT_VERSION=$pkgver
-
-  make
-
-  lrelease ../translations/*.ts
-}
-
-package() {
-cd $pkgname-$pkgver/build
-
-make INSTALL_ROOT="$pkgdir" install
-}
-

Copied: shotcut/repos/community-x86_64/PKGBUILD (from rev 381802, 
shotcut/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 23:35:15 UTC (rev 381803)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: nfnty 
+
+pkgname=shotcut
+pkgdesc='Cross-platform Qt based Video Editor'
+pkgver=18.09.15
+pkgrel=4
+arch=('x86_64')
+url='https://www.shotcut.org'
+license=('GPL3')
+depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-multimedia'
+ 'qt5-quickcontrols' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras'
+ 'mlt' 'movit' 'ffmpeg' 'libx264' 'libvpx' 'lame' 'frei0r-plugins' 
'ladspa')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz;
+'melt.patch')
+sha512sums=('1abf8130451afaca8b4c156bf2109e007553438a066dc13f3e52355a69894e44c9b5a7dde746809e2e96442a370f32ad2e1d9278e64492c8bc2fee58276078b2'
+
'57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 < ../melt.patch
+}
+
+build() {
+  mkdir $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  qmake .. \
+PREFIX='/usr' \
+QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
+SHOTCUT_VERSION=ARCH-$pkgver \
+DEFINES+=SHOTCUT_NOUPGRADE
+
+  make
+
+  lrelease ../translations/*.ts
+}
+
+package() {
+cd $pkgname-$pkgver/build
+
+make INSTALL_ROOT="$pkgdir" install
+}
+

Deleted: melt.patch
===
--- melt.patch  2018-09-15 23:35:10 UTC (rev 381802)
+++ melt.patch  2018-09-15 23:35:15 UTC (rev 381803)
@@ -1,13 +0,0 @@
-diff --git a/src/jobs/meltjob.cpp b/src/jobs/meltjob.cpp
-index f5390e4..693a089 100644
 a/src/jobs/meltjob.cpp
-+++ b/src/jobs/meltjob.cpp
-@@ -50,7 +50,7 @@ void MeltJob::start()
- #ifdef Q_OS_WIN
- QFileInfo meltPath(shotcutPath, "qmelt.exe");
- #else
--QFileInfo meltPath(shotcutPath, "qmelt");
-+QFileInfo meltPath(shotcutPath, "melt");
- #endif
- setReadChannel(QProcess::StandardError);
- QStringList args;

Copied: shotcut/repos/community-x86_64/melt.patch (from rev 381802, 
shotcut/trunk/melt.patch)
===
--- melt.patch  (rev 0)
+++ melt.patch  2018-09-15 23:35:15 UTC (rev 381803)
@@ -0,0 +1,13 @@
+diff --git a/src/jobs/meltjob.cpp b/src/jobs/meltjob.cpp
+index f5390e4..693a089 100644
+--- a/src/jobs/meltjob.cpp
 b/src/jobs/meltjob.cpp
+@@ -50,7 +50,7 @@ void MeltJob::start()
+ #ifdef Q_OS_WIN
+ QFileInfo meltPath(shotcutPath, "qmelt.exe");
+ #else

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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 23:35:10
  Author: ffy00
Revision: 381802

upgpkg: shotcut 18.09.15-4

Modified:
  shotcut/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:35:08 UTC (rev 381801)
+++ PKGBUILD2018-09-15 23:35:10 UTC (rev 381802)
@@ -3,7 +3,7 @@
 
 pkgname=shotcut
 pkgdesc='Cross-platform Qt based Video Editor'
-pkgver=18.08.14
+pkgver=18.09.15
 pkgrel=4
 arch=('x86_64')
 url='https://www.shotcut.org'
@@ -14,7 +14,7 @@
 makedepends=('qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mltframework/shotcut/archive/v$pkgver.tar.gz;
 'melt.patch')
-sha512sums=('ee1f8bac04907aae1ac3d85d1f61d1e7cdf0e0f67117c968dd79313f31d5b7f2fcb32bc8066c14fb5bb09a315a81b067a88c75004dae87a00b5f316ae87be8a0'
+sha512sums=('1abf8130451afaca8b4c156bf2109e007553438a066dc13f3e52355a69894e44c9b5a7dde746809e2e96442a370f32ad2e1d9278e64492c8bc2fee58276078b2'
 
'57063ccb11cb9bd061b807934afe5656d9e1e4a31850de2e60b6a0cdf4741c7975a2a548fdb5e7d2bb0a1e44635adb832d139ac55632a4e7f592952b67d17cfe')
 
 prepare() {
@@ -31,7 +31,8 @@
 PREFIX='/usr' \
 QMAKE_CFLAGS_RELEASE="$CFLAGS" \
 QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS" \
-SHOTCUT_VERSION=$pkgver
+SHOTCUT_VERSION=ARCH-$pkgver \
+DEFINES+=SHOTCUT_NOUPGRADE
 
   make
 


[arch-commits] Commit in arm-none-eabi-newlib/trunk (PKGBUILD)

2018-09-15 Thread Anatol Pomozov via arch-commits
Date: Saturday, September 15, 2018 @ 23:35:08
  Author: anatolik
Revision: 381801

upgpkg: arm-none-eabi-newlib 3.0.0.20180831-1

Modified:
  arm-none-eabi-newlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:29:36 UTC (rev 381800)
+++ PKGBUILD2018-09-15 23:35:08 UTC (rev 381801)
@@ -2,8 +2,8 @@
 
 _target=arm-none-eabi
 pkgname=$_target-newlib
-pkgver=3.0.0.20180226
-pkgrel=2
+pkgver=3.0.0.20180831
+pkgrel=1
 _upstream_ver=$pkgver
 pkgdesc='A C standard library implementation intended for use on embedded 
systems (ARM bare metal)'
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=($_target-gcc)
 options=(!emptydirs !strip)
 source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
-sha256sums=('d0b40c874c3047eccbf06fe916d3fc746bd94e8a4cd14c54381b2f72f68c5665')
+sha256sums=('3ad3664f227357df15ff34e954bfd9f501009a647667cd307bf0658aefd6eb5b')
 
 build() {
   rm -rf build-{newlib,nano}


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:29:36
  Author: svenstaro
Revision: 381800

archrelease: copy trunk to community-any

Added:
  glm/repos/community-any/PKGBUILD
(from rev 381799, glm/trunk/PKGBUILD)
Deleted:
  glm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 23:29:32 UTC (rev 381799)
+++ PKGBUILD2018-09-15 23:29:36 UTC (rev 381800)
@@ -1,40 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Peter Hatina 
-pkgname=glm
-pkgver=0.9.9.0
-pkgrel=1
-pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
-arch=('any')
-license=('MIT')
-url="http://glm.g-truc.net;
-makedepends=('cmake')
-source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
-sha512sums=('ac256e8ba515a0a57e27cb9dc79325af7a6f014341c11ba34af604fc2df03ada6979c39c0e5a3fd7526a5dc6dd4af99586e60cefe13bb134ad4df2212193a253')
-
-package() {
-cd $pkgname
-
-mkdir build
-cd build
-
-cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-make DESTDIR=$pkgdir install
-
-cd ..
-
-mkdir -p $pkgdir/usr/share/doc
-cp -r doc $pkgdir/usr/share/doc/glm
-
-find $pkgdir -type f -exec chmod 644 {} \;
-find $pkgdir -type d -exec chmod 755 {} \;
-
-# Fix https://bugs.archlinux.org/task/52501
-sed -i \
-"s/PACKAGE_VERSION_UNSUITABLE TRUE/PACKAGE_VERSION_UNSUITABLE FALSE/g" 
\
-$pkgdir/usr/lib/cmake/glm/glmConfigVersion.cmake
-
-# GCC 7.3 fix
-sed -i "s/(__GNUC__ == 7) && (__GNUC_MINOR__ == 2)/(__GNUC__ == 7) \&\& 
(__GNUC_MINOR__ >= 2)/" $pkgdir/usr/include/glm/simd/platform.h
-}

Copied: glm/repos/community-any/PKGBUILD (from rev 381799, glm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 23:29:36 UTC (rev 381800)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Peter Hatina 
+pkgname=glm
+pkgver=0.9.9.2
+pkgrel=1
+pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
+arch=('any')
+license=('MIT')
+url="http://glm.g-truc.net;
+makedepends=('cmake')
+source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
+sha512sums=('f50059118d907f7e7fa06f0c38dff15aa0cdec61b3ff0059b927d100ce9891f3c1aa3e2c120555891c096b428868006aa5e35c4f82d57198382f3a94240ee9f9')
+
+package() {
+cd $pkgname
+
+mkdir build
+cd build
+
+cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+make DESTDIR=$pkgdir install
+
+cd ..
+
+mkdir -p $pkgdir/usr/share/doc
+cp -r doc $pkgdir/usr/share/doc/glm
+
+find $pkgdir -type f -exec chmod 644 {} \;
+find $pkgdir -type d -exec chmod 755 {} \;
+
+# Fix https://bugs.archlinux.org/task/52501
+sed -i \
+"s/PACKAGE_VERSION_UNSUITABLE TRUE/PACKAGE_VERSION_UNSUITABLE FALSE/g" 
\
+$pkgdir/usr/lib/cmake/glm/glmConfigVersion.cmake
+
+# GCC 7.3 fix
+sed -i "s/(__GNUC__ == 7) && (__GNUC_MINOR__ == 2)/(__GNUC__ == 7) \&\& 
(__GNUC_MINOR__ >= 2)/" $pkgdir/usr/include/glm/simd/platform.h
+}


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:29:32
  Author: svenstaro
Revision: 381799

upgpkg: glm 0.9.9.2-1

Modified:
  glm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:26:13 UTC (rev 381798)
+++ PKGBUILD2018-09-15 23:29:32 UTC (rev 381799)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Peter Hatina 
 pkgname=glm
-pkgver=0.9.9.0
+pkgver=0.9.9.2
 pkgrel=1
 pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
 arch=('any')
@@ -9,7 +9,7 @@
 url="http://glm.g-truc.net;
 makedepends=('cmake')
 
source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
-sha512sums=('ac256e8ba515a0a57e27cb9dc79325af7a6f014341c11ba34af604fc2df03ada6979c39c0e5a3fd7526a5dc6dd4af99586e60cefe13bb134ad4df2212193a253')
+sha512sums=('f50059118d907f7e7fa06f0c38dff15aa0cdec61b3ff0059b927d100ce9891f3c1aa3e2c120555891c096b428868006aa5e35c4f82d57198382f3a94240ee9f9')
 
 package() {
 cd $pkgname


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:26:06
  Author: svenstaro
Revision: 381797

upgpkg: kcov 36-1

Modified:
  kcov/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:18:05 UTC (rev 381796)
+++ PKGBUILD2018-09-15 23:26:06 UTC (rev 381797)
@@ -2,7 +2,7 @@
 # Contributor: Jan-Erik Rediger 
 
 pkgname=kcov
-pkgver=35
+pkgver=36
 pkgrel=1
 pkgdesc="Code coverage tester for compiled programs, Python scripts and shell 
scripts"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('elfutils' 'curl')
 makedepends=('cmake' 'python')
 source=("https://github.com/SimonKagstrom/kcov/archive/v${pkgver}.tar.gz;)
-sha512sums=('a9e04b782eb8444ee4d13be3ceed8a0edd68f0ec3b0e01535730b5d5590e43dbe3fd6485d03df9a57ec6ba9c0440b3208b47dc29e2175816bfe7112004df9fb3')
+sha512sums=('9b3e2911b5049c80454d8feb075ed0f332a843bf222be88a2311269f05b648d34ac6424d0873d4e7cb1bb0fcb2f4d9f472307ad9d158d694fec0fdfa1e463b1c')
 
 prepare() {
   cd $pkgname-$pkgver


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

2018-09-15 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, September 15, 2018 @ 23:26:13
  Author: svenstaro
Revision: 381798

archrelease: copy trunk to community-x86_64

Added:
  kcov/repos/community-x86_64/PKGBUILD
(from rev 381797, kcov/trunk/PKGBUILD)
Deleted:
  kcov/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 23:26:06 UTC (rev 381797)
+++ PKGBUILD2018-09-15 23:26:13 UTC (rev 381798)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan-Erik Rediger 
-
-pkgname=kcov
-pkgver=35
-pkgrel=1
-pkgdesc="Code coverage tester for compiled programs, Python scripts and shell 
scripts"
-arch=('x86_64')
-url="http://simonkagstrom.github.com/kcov/index.html;
-license=('GPL2')
-depends=('elfutils' 'curl')
-makedepends=('cmake' 'python')
-source=("https://github.com/SimonKagstrom/kcov/archive/v${pkgver}.tar.gz;)
-sha512sums=('a9e04b782eb8444ee4d13be3ceed8a0edd68f0ec3b0e01535730b5d5590e43dbe3fd6485d03df9a57ec6ba9c0440b3208b47dc29e2175816bfe7112004df9fb3')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  rm -rf build
-  mkdir -p build
-}
-
-build() {
-  cd $pkgname-$pkgver/build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make DESTDIR="$pkgdir/" install
-  make clean
-}
-
-# vim:set ts=2 sw=2 et:

Copied: kcov/repos/community-x86_64/PKGBUILD (from rev 381797, 
kcov/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 23:26:13 UTC (rev 381798)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jan-Erik Rediger 
+
+pkgname=kcov
+pkgver=36
+pkgrel=1
+pkgdesc="Code coverage tester for compiled programs, Python scripts and shell 
scripts"
+arch=('x86_64')
+url="http://simonkagstrom.github.com/kcov/index.html;
+license=('GPL2')
+depends=('elfutils' 'curl')
+makedepends=('cmake' 'python')
+source=("https://github.com/SimonKagstrom/kcov/archive/v${pkgver}.tar.gz;)
+sha512sums=('9b3e2911b5049c80454d8feb075ed0f332a843bf222be88a2311269f05b648d34ac6424d0873d4e7cb1bb0fcb2f4d9f472307ad9d158d694fec0fdfa1e463b1c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  rm -rf build
+  mkdir -p build
+}
+
+build() {
+  cd $pkgname-$pkgver/build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir/" install
+  make clean
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:18:09
  Author: heftig
Revision: 334653

396.54-5: kernel 4.18.8.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:18:07 UTC (rev 334652)
+++ PKGBUILD2018-09-15 23:18:09 UTC (rev 334653)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=396.54
 _extramodules=extramodules-ARCH
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:18:11
  Author: heftig
Revision: 334654

340.107-29: kernel 4.18.8.arch1-1

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:18:09 UTC (rev 334653)
+++ PKGBUILD2018-09-15 23:18:11 UTC (rev 334654)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.107
 _extramodules=extramodules-ARCH
-pkgrel=28
+pkgrel=29
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:18:05
  Author: heftig
Revision: 381796

1.1.0-160: kernel 4.18.8.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:18:02 UTC (rev 381795)
+++ PKGBUILD2018-09-15 23:18:05 UTC (rev 381796)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=159
+pkgrel=160
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:18:02
  Author: heftig
Revision: 381795

20170610-101: kernel 4.18.8.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:18:00 UTC (rev 381794)
+++ PKGBUILD2018-09-15 23:18:02 UTC (rev 381795)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=100
+pkgrel=101
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:17:56
  Author: heftig
Revision: 381792

5.2.18-10: kernel 4.18.8.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:17:54 UTC (rev 381791)
+++ PKGBUILD2018-09-15 23:17:56 UTC (rev 381792)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.2.18
-pkgrel=9
+pkgrel=10
 _linux_major=4
 _linux_minor=18
 arch=('x86_64')


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:18:07
  Author: heftig
Revision: 334652

390.77-16: kernel 4.18.8.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 22:54:42 UTC (rev 334651)
+++ PKGBUILD2018-09-15 23:18:07 UTC (rev 334652)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.77
 _extramodules=extramodules-ARCH
-pkgrel=15
+pkgrel=16
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:18:00
  Author: heftig
Revision: 381794

8.046.00-11: kernel 4.18.8.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:17:58 UTC (rev 381793)
+++ PKGBUILD2018-09-15 23:18:00 UTC (rev 381794)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.046.00
-pkgrel=10
+pkgrel=11
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:17:58
  Author: heftig
Revision: 381793

0.8-166: kernel 4.18.8.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:17:56 UTC (rev 381792)
+++ PKGBUILD2018-09-15 23:17:58 UTC (rev 381793)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=165
+pkgrel=166
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:17:54
  Author: heftig
Revision: 381791

6.30.223.271-47: kernel 4.18.8.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 23:17:52 UTC (rev 381790)
+++ PKGBUILD2018-09-15 23:17:54 UTC (rev 381791)
@@ -4,7 +4,7 @@
 #pkgname=broadcom-wl-custom# Build agains kernel with a different name
 _kernelname=${pkgname#broadcom-wl}
 pkgver=6.30.223.271
-pkgrel=46
+pkgrel=47
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 23:17:52
  Author: heftig
Revision: 381790

0.43-54: kernel 4.18.8.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 22:49:06 UTC (rev 381789)
+++ PKGBUILD2018-09-15 23:17:52 UTC (rev 381790)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=53
+pkgrel=54
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 22:54:42
  Author: heftig
Revision: 334651

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/60-linux.hook
(from rev 334650, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 334650, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 334650, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 334650, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 334650, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 334650, linux/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  241 +
 config| 9676 
 linux.install |   10 
 linux.preset  |   14 
 6 files changed, 9964 insertions(+)

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


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 22:54:30
  Author: heftig
Revision: 334650

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 334649, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 334649, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 334649, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 334649, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 334649, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 334649, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  241 +
 config| 9720 
 linux.install |   10 
 linux.preset  |   14 
 6 files changed, 10008 insertions(+)

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


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 22:53:00
  Author: heftig
Revision: 334649

4.18.8.arch1-1

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |4 ++--
 config   |   34 ++
 2 files changed, 28 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 22:52:44 UTC (rev 334648)
+++ PKGBUILD2018-09-15 22:53:00 UTC (rev 334649)
@@ -4,7 +4,7 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=4.18.7-arch1
+_srcver=4.18.8-arch1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)
@@ -26,7 +26,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'da713ca0f1f3b2207e84b3c0ddd1fb00530413dd0987ef5165852b9c889b1024'
+'1fc23bd2613b821d8bdca1a33dc421e21de296221108ce047176d27d37ce397f'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config
===
--- config  2018-09-15 22:52:44 UTC (rev 334648)
+++ config  2018-09-15 22:53:00 UTC (rev 334649)
@@ -1,10 +1,10 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.18.7-arch1 Kernel Configuration
+# Linux/x86 4.18.8-arch1 Kernel Configuration
 #
 
 #
-# Compiler: gcc (GCC) 8.2.0
+# Compiler: gcc (GCC) 8.2.1 20180831
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
@@ -47,7 +47,7 @@
 CONFIG_DYNAMIC_PHYSICAL_MASK=y
 CONFIG_PGTABLE_LEVELS=4
 CONFIG_CC_IS_GCC=y
-CONFIG_GCC_VERSION=80200
+CONFIG_GCC_VERSION=80201
 CONFIG_CLANG_VERSION=0
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_EXTABLE_SORT=y
@@ -9217,9 +9217,10 @@
 # CONFIG_EARLY_PRINTK_DBGP is not set
 CONFIG_EARLY_PRINTK_EFI=y
 # CONFIG_EARLY_PRINTK_USB_XDBC is not set
+CONFIG_X86_PTDUMP_CORE=y
 # CONFIG_X86_PTDUMP is not set
 # CONFIG_EFI_PGT_DUMP is not set
-# CONFIG_DEBUG_WX is not set
+CONFIG_DEBUG_WX=y
 CONFIG_DOUBLEFAULT=y
 # CONFIG_DEBUG_TLBFLUSH is not set
 # CONFIG_IOMMU_DEBUG is not set
@@ -9264,6 +9265,7 @@
 CONFIG_SECURITY_NETWORK_XFRM=y
 CONFIG_SECURITY_PATH=y
 # CONFIG_INTEL_TXT is not set
+CONFIG_LSM_MMAP_MIN_ADDR=65536
 CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
 CONFIG_HARDENED_USERCOPY=y
 CONFIG_HARDENED_USERCOPY_FALLBACK=y
@@ -9270,13 +9272,29 @@
 # CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
 CONFIG_FORTIFY_SOURCE=y
 # CONFIG_STATIC_USERMODEHELPER is not set
-# CONFIG_SECURITY_SELINUX is not set
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0
+# CONFIG_SECURITY_SELINUX_DISABLE is not set
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0
 # CONFIG_SECURITY_SMACK is not set
 # CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
+CONFIG_SECURITY_APPARMOR=y
+CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=0
+CONFIG_SECURITY_APPARMOR_HASH=y
+CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y
+# CONFIG_SECURITY_APPARMOR_DEBUG is not set
 # CONFIG_SECURITY_LOADPIN is not set
 CONFIG_SECURITY_YAMA=y
-# CONFIG_INTEGRITY is not set
+CONFIG_INTEGRITY=y
+# CONFIG_INTEGRITY_SIGNATURE is not set
+CONFIG_INTEGRITY_AUDIT=y
+# CONFIG_IMA is not set
+# CONFIG_EVM is not set
+# CONFIG_DEFAULT_SECURITY_SELINUX is not set
+# CONFIG_DEFAULT_SECURITY_APPARMOR is not set
 CONFIG_DEFAULT_SECURITY_DAC=y
 CONFIG_DEFAULT_SECURITY=""
 CONFIG_XOR_BLOCKS=m
@@ -9437,7 +9455,7 @@
 CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
 CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
 CONFIG_CRYPTO_SM4=m
-CONFIG_CRYPTO_SPECK=m
+# CONFIG_CRYPTO_SPECK is not set
 CONFIG_CRYPTO_TEA=m
 CONFIG_CRYPTO_TWOFISH=m
 CONFIG_CRYPTO_TWOFISH_COMMON=m


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 22:52:44
  Author: heftig
Revision: 334648

4.18.8.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD  (contents, properties)
  linux-zen/trunk/config

--+
 PKGBUILD |4 ++--
 config   |   52 +---
 2 files changed, 43 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 22:51:27 UTC (rev 334647)
+++ PKGBUILD2018-09-15 22:52:44 UTC (rev 334648)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=4.18.7-zen1
+_srcver=4.18.8-zen1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)
@@ -26,7 +26,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'fd5a7203579777ab2c0deb3bcdf94ded8a4422fefc81506b98c3bce8070b5a8f'
+'8a852e70606513c77fc513d6ef970273345cc895d90e3f283ae103853bf50c41'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')


Property changes on: linux-zen/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Modified: config
===
--- config  2018-09-15 22:51:27 UTC (rev 334647)
+++ config  2018-09-15 22:52:44 UTC (rev 334648)
@@ -1,10 +1,10 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.18.5-zen1 Kernel Configuration
+# Linux/x86 4.18.8-zen1 Kernel Configuration
 #
 
 #
-# Compiler: gcc (GCC) 8.2.0
+# Compiler: gcc (GCC) 8.2.1 20180831
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
@@ -47,7 +47,7 @@
 CONFIG_DYNAMIC_PHYSICAL_MASK=y
 CONFIG_PGTABLE_LEVELS=4
 CONFIG_CC_IS_GCC=y
-CONFIG_GCC_VERSION=80200
+CONFIG_GCC_VERSION=80201
 CONFIG_CLANG_VERSION=0
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_EXTABLE_SORT=y
@@ -57,7 +57,7 @@
 # General setup
 #
 CONFIG_ZEN_INTERACTIVE=y
-# CONFIG_SCHED_PDS is not set
+# CONFIG_SCHED_MUQSS is not set
 CONFIG_INIT_ENV_ARG_LIMIT=32
 # CONFIG_COMPILE_TEST is not set
 CONFIG_LOCALVERSION=""
@@ -323,6 +323,7 @@
 CONFIG_HAVE_PERF_USER_STACK_DUMP=y
 CONFIG_HAVE_ARCH_JUMP_LABEL=y
 CONFIG_HAVE_RCU_TABLE_FREE=y
+CONFIG_HAVE_RCU_TABLE_INVALIDATE=y
 CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
 CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
 CONFIG_HAVE_CMPXCHG_LOCAL=y
@@ -384,7 +385,15 @@
 CONFIG_MODULE_FORCE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
-# CONFIG_MODULE_SIG is not set
+CONFIG_MODULE_SIG=y
+# CONFIG_MODULE_SIG_FORCE is not set
+CONFIG_MODULE_SIG_ALL=y
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA256 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+CONFIG_MODULE_SIG_SHA512=y
+CONFIG_MODULE_SIG_HASH="sha512"
 CONFIG_MODULE_COMPRESS=y
 # CONFIG_MODULE_COMPRESS_GZIP is not set
 CONFIG_MODULE_COMPRESS_XZ=y
@@ -561,6 +570,8 @@
 CONFIG_SCHED_SMT=y
 CONFIG_SCHED_MC=y
 CONFIG_SCHED_MC_PRIO=y
+CONFIG_RQ_NONE=y
+CONFIG_SHARERQ=0
 # CONFIG_PREEMPT_NONE is not set
 # CONFIG_PREEMPT_VOLUNTARY is not set
 CONFIG_PREEMPT=y
@@ -9250,9 +9261,10 @@
 # CONFIG_EARLY_PRINTK_DBGP is not set
 CONFIG_EARLY_PRINTK_EFI=y
 # CONFIG_EARLY_PRINTK_USB_XDBC is not set
+CONFIG_X86_PTDUMP_CORE=y
 # CONFIG_X86_PTDUMP is not set
 # CONFIG_EFI_PGT_DUMP is not set
-# CONFIG_DEBUG_WX is not set
+CONFIG_DEBUG_WX=y
 CONFIG_DOUBLEFAULT=y
 # CONFIG_DEBUG_TLBFLUSH is not set
 # CONFIG_IOMMU_DEBUG is not set
@@ -9297,6 +9309,7 @@
 CONFIG_SECURITY_NETWORK_XFRM=y
 CONFIG_SECURITY_PATH=y
 # CONFIG_INTEL_TXT is not set
+CONFIG_LSM_MMAP_MIN_ADDR=65536
 CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
 CONFIG_HARDENED_USERCOPY=y
 CONFIG_HARDENED_USERCOPY_FALLBACK=y
@@ -9303,13 +9316,29 @@
 # CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
 CONFIG_FORTIFY_SOURCE=y
 # CONFIG_STATIC_USERMODEHELPER is not set
-# CONFIG_SECURITY_SELINUX is not set
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0
+# CONFIG_SECURITY_SELINUX_DISABLE is not set
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0
 # CONFIG_SECURITY_SMACK is not set
 # CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
+CONFIG_SECURITY_APPARMOR=y
+CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=0
+CONFIG_SECURITY_APPARMOR_HASH=y
+CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y
+# CONFIG_SECURITY_APPARMOR_DEBUG is not set
 # CONFIG_SECURITY_LOADPIN is not set
 CONFIG_SECURITY_YAMA=y
-# CONFIG_INTEGRITY is not set
+CONFIG_INTEGRITY=y
+# CONFIG_INTEGRITY_SIGNATURE is not set
+CONFIG_INTEGRITY_AUDIT=y
+# CONFIG_IMA is not set
+# CONFIG_EVM is not set
+# 

[arch-commits] Commit in ntfs-3g/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-09-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, September 15, 2018 @ 22:51:27
  Author: bisson
Revision: 334647

archrelease: copy trunk to extra-x86_64

Added:
  ntfs-3g/repos/extra-x86_64/PKGBUILD
(from rev 334646, ntfs-3g/trunk/PKGBUILD)
Deleted:
  ntfs-3g/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   95 ++---
 1 file changed, 48 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 22:50:50 UTC (rev 334646)
+++ PKGBUILD2018-09-15 22:51:27 UTC (rev 334647)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tom Gundersen 
-# Contributor: Ronald van Haren 
-# Contributor: Thomas B�chler 
-
-pkgname=ntfs-3g
-_pkgname=ntfs-3g_ntfsprogs
-pkgver=2017.3.23
-pkgrel=1
-pkgdesc='NTFS filesystem driver and utilities'
-url='https://www.tuxera.com/community/open-source-ntfs-3g/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('util-linux' 'fuse2')
-source=("https://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('3e5a021d7b761261836dcb305370af299793eedbded731df3d6943802e1262d5')
-
-conflicts=('ntfsprogs')
-provides=('ntfsprogs')
-replaces=('ntfsprogs')
-
-prepare() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i 
{ntfsprogs,src}/Makefile.in
-}
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sbin=/usr/bin \
-   --mandir=/usr/share/man \
-   --disable-ldconfig \
-   --disable-static \
-   --with-fuse=external \
-   --enable-posix-acls \
-   --enable-extras \
-
-   make
-}
-
-package_ntfs-3g() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin 
rootlibdir=/usr/lib install
-   ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
-}

Copied: ntfs-3g/repos/extra-x86_64/PKGBUILD (from rev 334646, 
ntfs-3g/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 22:51:27 UTC (rev 334647)
@@ -0,0 +1,48 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tom Gundersen 
+# Contributor: Ronald van Haren 
+# Contributor: Thomas B�chler 
+
+pkgname=ntfs-3g
+_pkgname=ntfs-3g_ntfsprogs
+pkgver=2017.3.23
+pkgrel=2
+pkgdesc='NTFS filesystem driver and utilities'
+url='https://www.tuxera.com/community/open-source-ntfs-3g/'
+arch=('x86_64')
+license=('GPL2')
+depends=('util-linux' 'fuse2')
+source=("https://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
+sha256sums=('3e5a021d7b761261836dcb305370af299793eedbded731df3d6943802e1262d5')
+
+conflicts=('ntfsprogs')
+provides=('ntfsprogs')
+replaces=('ntfsprogs')
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i 
{ntfsprogs,src}/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sbin=/usr/bin \
+   --mandir=/usr/share/man \
+   --disable-ldconfig \
+   --disable-static \
+   --with-fuse=external \
+   --enable-xattr-mappings \
+   --enable-posix-acls \
+   --enable-extras \
+
+   make
+}
+
+package_ntfs-3g() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin 
rootlibdir=/usr/lib install
+   rm "${pkgdir}"/usr/share/man/man8/ntfsfallocate.8 # uninstalled binary
+   ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
+}


[arch-commits] Commit in ntfs-3g/trunk (PKGBUILD)

2018-09-15 Thread Gaëtan Bisson via arch-commits
Date: Saturday, September 15, 2018 @ 22:50:50
  Author: bisson
Revision: 334646

implement FS#59903 and FS#60054

Modified:
  ntfs-3g/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:32:37 UTC (rev 334645)
+++ PKGBUILD2018-09-15 22:50:50 UTC (rev 334646)
@@ -6,7 +6,7 @@
 pkgname=ntfs-3g
 _pkgname=ntfs-3g_ntfsprogs
 pkgver=2017.3.23
-pkgrel=1
+pkgrel=2
 pkgdesc='NTFS filesystem driver and utilities'
 url='https://www.tuxera.com/community/open-source-ntfs-3g/'
 arch=('x86_64')
@@ -33,6 +33,7 @@
--disable-ldconfig \
--disable-static \
--with-fuse=external \
+   --enable-xattr-mappings \
--enable-posix-acls \
--enable-extras \
 
@@ -42,5 +43,6 @@
 package_ntfs-3g() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin 
rootlibdir=/usr/lib install
+   rm "${pkgdir}"/usr/share/man/man8/ntfsfallocate.8 # uninstalled binary
ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
 }


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:49:06
  Author: ffy00
Revision: 381789

archrelease: copy trunk to community-x86_64

Added:
  pulseeffects/repos/community-x86_64/
  pulseeffects/repos/community-x86_64/PKGBUILD
(from rev 381788, pulseeffects/trunk/PKGBUILD)

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

Copied: pulseeffects/repos/community-x86_64/PKGBUILD (from rev 381788, 
pulseeffects/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-15 22:49:06 UTC (rev 381789)
@@ -0,0 +1,34 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Wellington 
+
+pkgname=pulseeffects
+pkgver=4.3.4
+pkgrel=2
+pkgdesc='Audio Effects for Pulseaudio Applications'
+arch=('x86_64')
+url='https://github.com/wwmm/pulseeffects'
+license=('GPL3')
+depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugins-good' 
'gst-plugins-bad'
+'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128')
+makedepends=('meson' 'boost' 'itstool'
+ 'calf' 'zam-plugins' 'rubberband' 'mda.lv2')
+optdepends=('calf: limiter, compressor exciter, bass enhancer and others'
+'zam-plugins: maximizer'
+'rubberband: pitch shifting'
+'mda.lv2: loudness')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('0d39282b5d07ab645b893fba5efbd625a46471ecb1bbbe093a334c92495e3cb6')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  arch-meson ..
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:49:02
  Author: ffy00
Revision: 381788

upgpkg: pulseeffects 4.3.4-2

Added:
  pulseeffects/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 22:49:02 UTC (rev 381788)
@@ -0,0 +1,34 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Wellington 
+
+pkgname=pulseeffects
+pkgver=4.3.4
+pkgrel=2
+pkgdesc='Audio Effects for Pulseaudio Applications'
+arch=('x86_64')
+url='https://github.com/wwmm/pulseeffects'
+license=('GPL3')
+depends=('gtk3' 'gtkmm3' 'glibmm' 'libpulse' 'gstreamer' 'gst-plugins-good' 
'gst-plugins-bad'
+'lilv' 'boost-libs' 'libsigc++' 'libsndfile' 'libsamplerate' 
'zita-convolver' 'libebur128')
+makedepends=('meson' 'boost' 'itstool'
+ 'calf' 'zam-plugins' 'rubberband' 'mda.lv2')
+optdepends=('calf: limiter, compressor exciter, bass enhancer and others'
+'zam-plugins: maximizer'
+'rubberband: pitch shifting'
+'mda.lv2: loudness')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('0d39282b5d07ab645b893fba5efbd625a46471ecb1bbbe093a334c92495e3cb6')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  arch-meson ..
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:35:44
  Author: ffy00
Revision: 381787

add root structure

Added:
  pulseeffects/
  pulseeffects/repos/
  pulseeffects/trunk/


[arch-commits] Commit in lightdm-webkit-theme-archlinux/repos (2 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:32:40
  Author: ffy00
Revision: 381786

archrelease: copy trunk to community-any

Added:
  lightdm-webkit-theme-archlinux/repos/community-any/
  lightdm-webkit-theme-archlinux/repos/community-any/PKGBUILD
(from rev 381785, lightdm-webkit-theme-archlinux/trunk/PKGBUILD)

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

Copied: lightdm-webkit-theme-archlinux/repos/community-any/PKGBUILD (from rev 
381785, lightdm-webkit-theme-archlinux/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-09-15 22:32:40 UTC (rev 381786)
@@ -0,0 +1,35 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: David Rodriguez 
+
+pkgname=lightdm-webkit-theme-archlinux
+pkgver=0.5.0
+_bgver=0.7
+pkgrel=1
+pkgdesc="ArchLinux version of the official Antergos greeter"
+arch=('any')
+url='https://github.com/Dissonant-Tech/lightdm-webkit-theme-archlinux'
+license=('GPL2')
+depends=('lightdm' 'lightdm-webkit2-greeter')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+"http://antergos.com/antergos-wallpapers-$_bgver.zip;)
+sha512sums=('ffbced0605fbcac680675b49c4ca246d911020c58208b9adf254d3ef87a20019c93dc5c68211867db7b549d5605aa006f4dbb60131ab0c2bb7ca5878c6dfb40d'
+
'b5c051b432d5e8d0ebb4870a11b1de63a46cd3c14853e03fe63f429f03e6838b92606b8f0365dcea7f9ab5ca1d67503b1839caf86f4684025d5b4933aca090ca')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i 's|/usr/share/|/usr/share/lightdm-webkit/themes/|g' index.html
+}
+
+package() {
+  _themedir="$pkgdir"/usr/share/lightdm-webkit/themes/archlinux
+
+  # Install theme
+  install -dm 755 "$_themedir"
+  cp -dpr --no-preserve=ownership $pkgname-$pkgver/* "$_themedir"
+
+  # Instal wallpapers
+  install -dm 755 "$_themedir"/wallpapers
+  cp -dpr --no-preserve=ownership antergos-wallpapers-$_bgver 
"$_themedir"/wallpapers
+}
+


[arch-commits] Commit in lightdm-webkit-theme-archlinux/trunk (PKGBUILD)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:32:36
  Author: ffy00
Revision: 381785

upgpkg: lightdm-webkit-theme-archlinux 0.5.0-1

Added:
  lightdm-webkit-theme-archlinux/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 22:32:36 UTC (rev 381785)
@@ -0,0 +1,35 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: David Rodriguez 
+
+pkgname=lightdm-webkit-theme-archlinux
+pkgver=0.5.0
+_bgver=0.7
+pkgrel=1
+pkgdesc="ArchLinux version of the official Antergos greeter"
+arch=('any')
+url='https://github.com/Dissonant-Tech/lightdm-webkit-theme-archlinux'
+license=('GPL2')
+depends=('lightdm' 'lightdm-webkit2-greeter')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+"http://antergos.com/antergos-wallpapers-$_bgver.zip;)
+sha512sums=('ffbced0605fbcac680675b49c4ca246d911020c58208b9adf254d3ef87a20019c93dc5c68211867db7b549d5605aa006f4dbb60131ab0c2bb7ca5878c6dfb40d'
+
'b5c051b432d5e8d0ebb4870a11b1de63a46cd3c14853e03fe63f429f03e6838b92606b8f0365dcea7f9ab5ca1d67503b1839caf86f4684025d5b4933aca090ca')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i 's|/usr/share/|/usr/share/lightdm-webkit/themes/|g' index.html
+}
+
+package() {
+  _themedir="$pkgdir"/usr/share/lightdm-webkit/themes/archlinux
+
+  # Install theme
+  install -dm 755 "$_themedir"
+  cp -dpr --no-preserve=ownership $pkgname-$pkgver/* "$_themedir"
+
+  # Instal wallpapers
+  install -dm 755 "$_themedir"/wallpapers
+  cp -dpr --no-preserve=ownership antergos-wallpapers-$_bgver 
"$_themedir"/wallpapers
+}
+


[arch-commits] Commit in lightdm-webkit2-greeter/repos (3 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:28:24
  Author: ffy00
Revision: 381784

archrelease: copy trunk to community-x86_64

Added:
  lightdm-webkit2-greeter/repos/community-x86_64/
  lightdm-webkit2-greeter/repos/community-x86_64/PKGBUILD
(from rev 381783, lightdm-webkit2-greeter/trunk/PKGBUILD)
  lightdm-webkit2-greeter/repos/community-x86_64/archlinux-user.svg
(from rev 381783, lightdm-webkit2-greeter/trunk/archlinux-user.svg)

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

Copied: lightdm-webkit2-greeter/repos/community-x86_64/PKGBUILD (from rev 
381783, lightdm-webkit2-greeter/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-15 22:28:24 UTC (rev 381784)
@@ -0,0 +1,49 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Dustin Falgout 
+
+pkgname=lightdm-webkit2-greeter
+_pkgname=web-greeter
+pkgver=2.2.5
+pkgrel=1
+pkgdesc='LightDM greeter that uses WebKit2 for theming via HTML/JavaScript.'
+arch=('x86_64')
+url='https://github.com/antergos/web-greeter'
+license=('GPL3')
+depends=('lightdm' 'webkit2gtk' 'accountsservice' 'gnome-backgrounds')
+makedepends=('gobject-introspection' 'meson' 'gettext' 'dbus-glib')
+backup=("etc/lightdm/$pkgname.conf")
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+
"archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-light-scalable.svg;
+'archlinux-user.svg')
+sha512sums=('173fe64dc3ff9bde0bc3d72319ab014001364eae8336a72b052333e0c6687167164277fd87de7051c689f12f64aeb441f95a9f0d38cc780ccb77751ab62204da'
+
'a553510431d3771a0ef5c7aaec198f89302f11ea8fe6db83bdac496d087ded6d5a99e442d3d20fd7b9231a76ec0df0f1ffb3da2511f79d196c8516345241d1da'
+
'4cf515e5eefa0a16d1ebda6e4cbef2103e405325e265472c3cdc4928f05749597913406494fc4384b268288efbc0bbb86fefb648d1dd6e62c1dbc6569c8253b6')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  _pixmaps='/usr/share/pixmaps'
+
+  sed -i \
+   -e "s|\/usr.+antergos\.png|$_pixmaps/archlinux-logo.svg|g;" \
+   -e "s|\/usr.+logo-user\.png|$_pixmaps/archlinux-user.svg|g" \
+   "data/$pkgname.conf"
+}
+
+build() {
+  cd $_pkgname-$pkgver/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  install -Dm 644 "$srcdir"/archlinux-logo.svg 
"$pkgdir"/usr/share/pixmaps/archlinux-logo.svg
+  install -Dm 644 "$srcdir"/archlinux-user.svg 
"$pkgdir"/usr/share/pixmaps/archlinux-user.svg
+}
+

Copied: lightdm-webkit2-greeter/repos/community-x86_64/archlinux-user.svg (from 
rev 381783, lightdm-webkit2-greeter/trunk/archlinux-user.svg)
===
(Binary files differ)


[arch-commits] Commit in lightdm-webkit2-greeter/trunk (PKGBUILD archlinux-user.svg)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:28:20
  Author: ffy00
Revision: 381783

upgpkg: lightdm-webkit2-greeter 2.2.5-1

Added:
  lightdm-webkit2-greeter/trunk/PKGBUILD
  lightdm-webkit2-greeter/trunk/archlinux-user.svg

+
 PKGBUILD   |   49 +
 archlinux-user.svg |1 +
 2 files changed, 50 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 22:28:20 UTC (rev 381783)
@@ -0,0 +1,49 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Dustin Falgout 
+
+pkgname=lightdm-webkit2-greeter
+_pkgname=web-greeter
+pkgver=2.2.5
+pkgrel=1
+pkgdesc='LightDM greeter that uses WebKit2 for theming via HTML/JavaScript.'
+arch=('x86_64')
+url='https://github.com/antergos/web-greeter'
+license=('GPL3')
+depends=('lightdm' 'webkit2gtk' 'accountsservice' 'gnome-backgrounds')
+makedepends=('gobject-introspection' 'meson' 'gettext' 'dbus-glib')
+backup=("etc/lightdm/$pkgname.conf")
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+
"archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-light-scalable.svg;
+'archlinux-user.svg')
+sha512sums=('173fe64dc3ff9bde0bc3d72319ab014001364eae8336a72b052333e0c6687167164277fd87de7051c689f12f64aeb441f95a9f0d38cc780ccb77751ab62204da'
+
'a553510431d3771a0ef5c7aaec198f89302f11ea8fe6db83bdac496d087ded6d5a99e442d3d20fd7b9231a76ec0df0f1ffb3da2511f79d196c8516345241d1da'
+
'4cf515e5eefa0a16d1ebda6e4cbef2103e405325e265472c3cdc4928f05749597913406494fc4384b268288efbc0bbb86fefb648d1dd6e62c1dbc6569c8253b6')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  _pixmaps='/usr/share/pixmaps'
+
+  sed -i \
+   -e "s|\/usr.+antergos\.png|$_pixmaps/archlinux-logo.svg|g;" \
+   -e "s|\/usr.+logo-user\.png|$_pixmaps/archlinux-user.svg|g" \
+   "data/$pkgname.conf"
+}
+
+build() {
+  cd $_pkgname-$pkgver/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  install -Dm 644 "$srcdir"/archlinux-logo.svg 
"$pkgdir"/usr/share/pixmaps/archlinux-logo.svg
+  install -Dm 644 "$srcdir"/archlinux-user.svg 
"$pkgdir"/usr/share/pixmaps/archlinux-user.svg
+}
+

Added: archlinux-user.svg
===
(Binary files differ)

Index: lightdm-webkit2-greeter/trunk/archlinux-user.svg
===
--- archlinux-user.svg  2018-09-15 22:17:36 UTC (rev 381782)
+++ archlinux-user.svg  2018-09-15 22:28:20 UTC (rev 381783)

Property changes on: lightdm-webkit2-greeter/trunk/archlinux-user.svg
___
Added: svn:mime-type
## -0,0 +1 ##
+image/svg+xml
\ No newline at end of property


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

2018-09-15 Thread Antonio Rojas via arch-commits
Date: Saturday, September 15, 2018 @ 22:17:36
  Author: arojas
Revision: 381782

archrelease: copy trunk to community-x86_64

Added:
  latte-dock/repos/community-x86_64/PKGBUILD
(from rev 381781, latte-dock/trunk/PKGBUILD)
Deleted:
  latte-dock/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 22:16:52 UTC (rev 381781)
+++ PKGBUILD2018-09-15 22:17:36 UTC (rev 381782)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Michael Straube 
-
-pkgname=latte-dock
-pkgver=0.8.0
-pkgrel=1
-pkgdesc='A dock based on Plasma Frameworks'
-arch=(x86_64)
-url='https://store.kde.org/p/1169519/'
-license=(GPL)
-depends=(plasma-framework knewstuff hicolor-icon-theme)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('7ab5f532a87141a5c22dcf24ef7c993a21d56a30fefd5ce466db982c4cc8e9fd'
-'SKIP')
-validpgpkeys=(325E97C32E601F5D4EADCF3A55999050A2D9110E) # Michail Vourlakos 
(mvourlakos) 
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: latte-dock/repos/community-x86_64/PKGBUILD (from rev 381781, 
latte-dock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 22:17:36 UTC (rev 381782)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Michael Straube 
+
+pkgname=latte-dock
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='A dock based on Plasma Frameworks'
+arch=(x86_64)
+url='https://store.kde.org/p/1169519/'
+license=(GPL)
+depends=(plasma-framework knewstuff hicolor-icon-theme)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('989c263727770b3c254b03f0a197649b7c0bc39ae75ded63d433779da10288b8'
+'SKIP')
+validpgpkeys=(325E97C32E601F5D4EADCF3A55999050A2D9110E) # Michail Vourlakos 
(mvourlakos) 
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-15 Thread Antonio Rojas via arch-commits
Date: Saturday, September 15, 2018 @ 22:16:52
  Author: arojas
Revision: 381781

Update to 0.8.1

Modified:
  latte-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 22:11:53 UTC (rev 381780)
+++ PKGBUILD2018-09-15 22:16:52 UTC (rev 381781)
@@ -2,7 +2,7 @@
 # Contributor: Michael Straube 
 
 pkgname=latte-dock
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc='A dock based on Plasma Frameworks'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(plasma-framework knewstuff hicolor-icon-theme)
 makedepends=(extra-cmake-modules)
 
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('7ab5f532a87141a5c22dcf24ef7c993a21d56a30fefd5ce466db982c4cc8e9fd'
+sha256sums=('989c263727770b3c254b03f0a197649b7c0bc39ae75ded63d433779da10288b8'
 'SKIP')
 validpgpkeys=(325E97C32E601F5D4EADCF3A55999050A2D9110E) # Michail Vourlakos 
(mvourlakos) 
 


[arch-commits] Commit in (3 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:11:53
  Author: ffy00
Revision: 381780

add root structure

Added:
  lightdm-webkit2-greeter/
  lightdm-webkit2-greeter/repos/
  lightdm-webkit2-greeter/trunk/


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:09:13
  Author: ffy00
Revision: 381778

upgpkg: gnome-twitch 0.4.2-4

Modified:
  gnome-twitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 21:44:43 UTC (rev 381777)
+++ PKGBUILD2018-09-15 22:09:13 UTC (rev 381778)
@@ -7,13 +7,13 @@
  'gnome-twitch-player-backend-gstreamer-opengl'
  'gnome-twitch-player-backend-mpv-opengl')
 pkgver=0.4.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
 arch=('x86_64')
 url='https://github.com/vinszent/gnome-twitch'
 license=('GPL3')
-depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
-makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
+depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas')
+makedepends=('meson' 'gobject-introspection' 'gstreamer' 'gst-libav' 
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 
'clutter-gtk' 'mpv')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
 
sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
 
@@ -60,7 +60,7 @@
 }
 
 package_gnome-twitch() {
-  depends=('gnome-twitch-player-backend')
+  depends+=('gnome-twitch-player-backend')
   optdepends=('gnome-twitch-player-backend-gstreamer-cairo: GStreamer Cairo 
backend'
   'gnome-twitch-player-backend-gstreamer-clutter: GStreamer 
Clutter backend'
   'gnome-twitch-player-backend-gstreamer-opengl: GStreamer OpenGL 
backend'


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 22:09:19
  Author: ffy00
Revision: 381779

archrelease: copy trunk to community-x86_64

Added:
  gnome-twitch/repos/community-x86_64/PKGBUILD
(from rev 381778, gnome-twitch/trunk/PKGBUILD)
Deleted:
  gnome-twitch/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  218 ++---
 1 file changed, 109 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 22:09:13 UTC (rev 381778)
+++ PKGBUILD2018-09-15 22:09:19 UTC (rev 381779)
@@ -1,109 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgbase=gnome-twitch
-pkgname=('gnome-twitch'
- 'gnome-twitch-player-backend-gstreamer-cairo'
- 'gnome-twitch-player-backend-gstreamer-clutter'
- 'gnome-twitch-player-backend-gstreamer-opengl'
- 'gnome-twitch-player-backend-mpv-opengl')
-pkgver=0.4.2
-pkgrel=3
-pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
-arch=('x86_64')
-url='https://github.com/vinszent/gnome-twitch'
-license=('GPL3')
-depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
-makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
-
-build() {
-  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
-
-  # Build app
-  echo 'Build the main app...'
-  cd "$srcdir"/$pkgbase-$pkgver/build
-  arch-meson ..
-  ninja
-
-  # Build GStreamer Cairo backend
-  echo 'Building the GStreamer Cairo backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-cairo
-  ninja
-
-  # Build GStreamer Clutter backend
-  echo 'Building the GStreamer Clutter backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-clutter
-  ninja
-
-  # Build GStreamer OpenGL backend
-  echo 'Building the GStreamer OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-opengl
-  ninja
-
-  # Build MPV OpenGL backend
-  echo 'Building the MPV OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=mpv-opengl
-  ninja
-}
-
-package_gnome-twitch() {
-  depends=('gnome-twitch-player-backend')
-  optdepends=('gnome-twitch-player-backend-gstreamer-cairo: GStreamer Cairo 
backend'
-  'gnome-twitch-player-backend-gstreamer-clutter: GStreamer 
Clutter backend'
-  'gnome-twitch-player-backend-gstreamer-opengl: GStreamer OpenGL 
backend'
-  'gnome-twitch-player-backend-mpv-opengl: MPV OpenGL')
-
-  cd $pkgbase-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-cairo() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-cairo
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-clutter() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-clutter
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-opengl() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-mpv-opengl() {
-  depends=('gnome-twitch' 'mpv')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/mpv-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: gnome-twitch/repos/community-x86_64/PKGBUILD (from rev 381778, 
gnome-twitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 22:09:19 UTC (rev 381779)
@@ -0,0 +1,109 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=gnome-twitch
+pkgname=('gnome-twitch'
+ 'gnome-twitch-player-backend-gstreamer-cairo'
+ 'gnome-twitch-player-backend-gstreamer-clutter'
+ 'gnome-twitch-player-backend-gstreamer-opengl'
+ 'gnome-twitch-player-backend-mpv-opengl')
+pkgver=0.4.2
+pkgrel=4
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')

[arch-commits] Commit in (3 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:44:43
  Author: ffy00
Revision: 381777

add root structure

Added:
  lightdm-webkit-theme-archlinux/
  lightdm-webkit-theme-archlinux/repos/
  lightdm-webkit-theme-archlinux/trunk/


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:43:31
  Author: ffy00
Revision: 381776

archrelease: copy trunk to community-x86_64

Added:
  gnome-twitch/repos/community-x86_64/PKGBUILD
(from rev 381775, gnome-twitch/trunk/PKGBUILD)
Deleted:
  gnome-twitch/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  218 ++---
 1 file changed, 109 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 21:43:26 UTC (rev 381775)
+++ PKGBUILD2018-09-15 21:43:31 UTC (rev 381776)
@@ -1,109 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgbase=gnome-twitch
-pkgname=('gnome-twitch'
- 'gnome-twitch-player-backend-gstreamer-cairo'
- 'gnome-twitch-player-backend-gstreamer-clutter'
- 'gnome-twitch-player-backend-gstreamer-opengl'
- 'gnome-twitch-player-backend-mpv-opengl')
-pkgver=0.4.2
-pkgrel=2
-pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
-arch=('x86_64')
-url='https://github.com/vinszent/gnome-twitch'
-license=('GPL3')
-depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
-makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
-
-build() {
-  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
-
-  # Build app
-  echo 'Build the main app...'
-  cd "$srcdir"/$pkgbase-$pkgver/build
-  arch-meson ..
-  ninja
-
-  # Build GStreamer Cairo backend
-  echo 'Building the GStreamer Cairo backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-cairo
-  ninja
-
-  # Build GStreamer Clutter backend
-  echo 'Building the GStreamer Clutter backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-clutter
-  ninja
-
-  # Build GStreamer OpenGL backend
-  echo 'Building the GStreamer OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-opengl
-  ninja
-
-  # Build MPV OpenGL backend
-  echo 'Building the MPV OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=mpv-opengl
-  ninja
-}
-
-package_gnome-twitch() {
-  depends=('gnome-twitch-player-backend')
-  optdepends=('gnome-twitch-player-backend-gstreamer-cairo: GStreamer Cairo 
backend'
-  'gnome-twitch-player-backend-gstreamer-clutter: GStreamer 
Clutter backend'
-  'gnome-twitch-player-backend-gstreamer-opengl: GStreamer OpenGL 
backend'
-  'gnome-twitch-player-backend-mpv-opengl: MPV OpenGL')
-
-  cd $pkgbase-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-cairo() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-cairo
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-clutter() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-clutter
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-opengl() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/gs-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-mpv-opengl() {
-  depends=('mpv')
-  provides=('gnome-twitch-player-backend')
-
-  cd $pkgbase-$pkgver/mpv-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: gnome-twitch/repos/community-x86_64/PKGBUILD (from rev 381775, 
gnome-twitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 21:43:31 UTC (rev 381776)
@@ -0,0 +1,109 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=gnome-twitch
+pkgname=('gnome-twitch'
+ 'gnome-twitch-player-backend-gstreamer-cairo'
+ 'gnome-twitch-player-backend-gstreamer-clutter'
+ 'gnome-twitch-player-backend-gstreamer-opengl'
+ 'gnome-twitch-player-backend-mpv-opengl')
+pkgver=0.4.2
+pkgrel=3
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')

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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:43:26
  Author: ffy00
Revision: 381775

upgpkg: gnome-twitch 0.4.2-3

Modified:
  gnome-twitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 21:38:50 UTC (rev 381774)
+++ PKGBUILD2018-09-15 21:43:26 UTC (rev 381775)
@@ -7,7 +7,7 @@
  'gnome-twitch-player-backend-gstreamer-opengl'
  'gnome-twitch-player-backend-mpv-opengl')
 pkgver=0.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
 arch=('x86_64')
 url='https://github.com/vinszent/gnome-twitch'
@@ -99,7 +99,7 @@
 }
 
 package_gnome-twitch-player-backend-mpv-opengl() {
-  depends=('mpv')
+  depends=('gnome-twitch' 'mpv')
   provides=('gnome-twitch-player-backend')
 
   cd $pkgbase-$pkgver/mpv-opengl


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:38:50
  Author: ffy00
Revision: 381774

archrelease: copy trunk to community-x86_64

Added:
  gnome-twitch/repos/community-x86_64/PKGBUILD
(from rev 381773, gnome-twitch/trunk/PKGBUILD)
Deleted:
  gnome-twitch/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  208 +++--
 1 file changed, 109 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 21:38:45 UTC (rev 381773)
+++ PKGBUILD2018-09-15 21:38:50 UTC (rev 381774)
@@ -1,99 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgbase=gnome-twitch
-pkgname=('gnome-twitch'
- 'gnome-twitch-player-backend-gstreamer-cairo'
- 'gnome-twitch-player-backend-gstreamer-clutter'
- 'gnome-twitch-player-backend-gstreamer-opengl'
- 'gnome-twitch-player-backend-mpv-opengl')
-pkgver=0.4.2
-pkgrel=1
-pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
-arch=('x86_64')
-url='https://github.com/vinszent/gnome-twitch'
-license=('GPL3')
-depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
-makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
-
-build() {
-  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
-
-  # Build app
-  echo 'Build the main app...'
-  cd "$srcdir"/$pkgbase-$pkgver/build
-  arch-meson ..
-  ninja
-
-  # Build GStreamer Cairo backend
-  echo 'Building the GStreamer Cairo backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-cairo
-  ninja
-
-  # Build GStreamer Clutter backend
-  echo 'Building the GStreamer Clutter backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-clutter
-  ninja
-
-  # Build GStreamer OpenGL backend
-  echo 'Building the GStreamer OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=gstreamer-opengl
-  ninja
-
-  # Build MPV OpenGL backend
-  echo 'Building the MPV OpenGL backend...'
-  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
-  arch-meson .. \
-   -Dbuild-executable=false \
-   -Dbuild-player-backends=mpv-opengl
-  ninja
-}
-
-package_gnome-twitch() {
-  cd $pkgbase-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-cairo() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-
-  cd $pkgbase-$pkgver/gs-cairo
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-clutter() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
-
-  cd $pkgbase-$pkgver/gs-clutter
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-gstreamer-opengl() {
-  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
-
-  cd $pkgbase-$pkgver/gs-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-
-package_gnome-twitch-player-backend-mpv-opengl() {
-  depends=('mpv')
-
-  cd $pkgbase-$pkgver/mpv-opengl
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: gnome-twitch/repos/community-x86_64/PKGBUILD (from rev 381773, 
gnome-twitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 21:38:50 UTC (rev 381774)
@@ -0,0 +1,109 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=gnome-twitch
+pkgname=('gnome-twitch'
+ 'gnome-twitch-player-backend-gstreamer-cairo'
+ 'gnome-twitch-player-backend-gstreamer-clutter'
+ 'gnome-twitch-player-backend-gstreamer-opengl'
+ 'gnome-twitch-player-backend-mpv-opengl')
+pkgver=0.4.2
+pkgrel=2
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')
+url='https://github.com/vinszent/gnome-twitch'
+license=('GPL3')
+depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
+makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
+
+build() {
+  mkdir -p 

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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:38:45
  Author: ffy00
Revision: 381773

upgpkg: gnome-twitch 0.4.2-2

Modified:
  gnome-twitch/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 21:31:40 UTC (rev 381772)
+++ PKGBUILD2018-09-15 21:38:45 UTC (rev 381773)
@@ -7,7 +7,7 @@
  'gnome-twitch-player-backend-gstreamer-opengl'
  'gnome-twitch-player-backend-mpv-opengl')
 pkgver=0.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
 arch=('x86_64')
 url='https://github.com/vinszent/gnome-twitch'
@@ -60,6 +60,12 @@
 }
 
 package_gnome-twitch() {
+  depends=('gnome-twitch-player-backend')
+  optdepends=('gnome-twitch-player-backend-gstreamer-cairo: GStreamer Cairo 
backend'
+  'gnome-twitch-player-backend-gstreamer-clutter: GStreamer 
Clutter backend'
+  'gnome-twitch-player-backend-gstreamer-opengl: GStreamer OpenGL 
backend'
+  'gnome-twitch-player-backend-mpv-opengl: MPV OpenGL')
+
   cd $pkgbase-$pkgver/build
 
   DESTDIR="$pkgdir" ninja install
@@ -67,6 +73,7 @@
 
 package_gnome-twitch-player-backend-gstreamer-cairo() {
   depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
+  provides=('gnome-twitch-player-backend')
 
   cd $pkgbase-$pkgver/gs-cairo
 
@@ -75,6 +82,7 @@
 
 package_gnome-twitch-player-backend-gstreamer-clutter() {
   depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
+  provides=('gnome-twitch-player-backend')
 
   cd $pkgbase-$pkgver/gs-clutter
 
@@ -83,6 +91,7 @@
 
 package_gnome-twitch-player-backend-gstreamer-opengl() {
   depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
+  provides=('gnome-twitch-player-backend')
 
   cd $pkgbase-$pkgver/gs-opengl
 
@@ -91,6 +100,7 @@
 
 package_gnome-twitch-player-backend-mpv-opengl() {
   depends=('mpv')
+  provides=('gnome-twitch-player-backend')
 
   cd $pkgbase-$pkgver/mpv-opengl
 


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:31:40
  Author: ffy00
Revision: 381772

archrelease: copy trunk to community-x86_64

Added:
  gnome-twitch/repos/community-x86_64/
  gnome-twitch/repos/community-x86_64/PKGBUILD
(from rev 381771, gnome-twitch/trunk/PKGBUILD)

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

Copied: gnome-twitch/repos/community-x86_64/PKGBUILD (from rev 381771, 
gnome-twitch/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-15 21:31:40 UTC (rev 381772)
@@ -0,0 +1,99 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=gnome-twitch
+pkgname=('gnome-twitch'
+ 'gnome-twitch-player-backend-gstreamer-cairo'
+ 'gnome-twitch-player-backend-gstreamer-clutter'
+ 'gnome-twitch-player-backend-gstreamer-opengl'
+ 'gnome-twitch-player-backend-mpv-opengl')
+pkgver=0.4.2
+pkgrel=1
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')
+url='https://github.com/vinszent/gnome-twitch'
+license=('GPL3')
+depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
+makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
+
+build() {
+  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
+
+  # Build app
+  echo 'Build the main app...'
+  cd "$srcdir"/$pkgbase-$pkgver/build
+  arch-meson ..
+  ninja
+
+  # Build GStreamer Cairo backend
+  echo 'Building the GStreamer Cairo backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=gstreamer-cairo
+  ninja
+
+  # Build GStreamer Clutter backend
+  echo 'Building the GStreamer Clutter backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=gstreamer-clutter
+  ninja
+
+  # Build GStreamer OpenGL backend
+  echo 'Building the GStreamer OpenGL backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=gstreamer-opengl
+  ninja
+
+  # Build MPV OpenGL backend
+  echo 'Building the MPV OpenGL backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=mpv-opengl
+  ninja
+}
+
+package_gnome-twitch() {
+  cd $pkgbase-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-gstreamer-cairo() {
+  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
+
+  cd $pkgbase-$pkgver/gs-cairo
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-gstreamer-clutter() {
+  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
+
+  cd $pkgbase-$pkgver/gs-clutter
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-gstreamer-opengl() {
+  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
+
+  cd $pkgbase-$pkgver/gs-opengl
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-mpv-opengl() {
+  depends=('mpv')
+
+  cd $pkgbase-$pkgver/mpv-opengl
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 21:29:38
  Author: ffy00
Revision: 381771

upgpkg: gnome-twitch 0.4.2-1

Added:
  gnome-twitch/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 21:29:38 UTC (rev 381771)
@@ -0,0 +1,99 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=gnome-twitch
+pkgname=('gnome-twitch'
+ 'gnome-twitch-player-backend-gstreamer-cairo'
+ 'gnome-twitch-player-backend-gstreamer-clutter'
+ 'gnome-twitch-player-backend-gstreamer-opengl'
+ 'gnome-twitch-player-backend-mpv-opengl')
+pkgver=0.4.2
+pkgrel=1
+pkgdesc='Enjoy Twitch on your GNU/Linux desktop.'
+arch=('x86_64')
+url='https://github.com/vinszent/gnome-twitch'
+license=('GPL3')
+depends=('gtk3' 'libsoup' 'json-glib' 'webkit2gtk' 'libpeas' 
'gobject-introspection')
+makedepends=('meson' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk' 'mpv')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('f13806a73b1a2ca5e84104b649f845f45410a01a1516cfe7bf2b28dfab12b99ebe4db8bee65c1658410512e2df57ec440308dc5a8d4047f805d230397ef7b92d')
+
+build() {
+  mkdir -p $pkgname-$pkgver/{build,gs-cairo,gs-clutter,gs-opengl,mpv-opengl}
+
+  # Build app
+  echo 'Build the main app...'
+  cd "$srcdir"/$pkgbase-$pkgver/build
+  arch-meson ..
+  ninja
+
+  # Build GStreamer Cairo backend
+  echo 'Building the GStreamer Cairo backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/gs-cairo
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=gstreamer-cairo
+  ninja
+
+  # Build GStreamer Clutter backend
+  echo 'Building the GStreamer Clutter backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/gs-clutter
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=gstreamer-clutter
+  ninja
+
+  # Build GStreamer OpenGL backend
+  echo 'Building the GStreamer OpenGL backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/gs-opengl
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=gstreamer-opengl
+  ninja
+
+  # Build MPV OpenGL backend
+  echo 'Building the MPV OpenGL backend...'
+  cd "$srcdir"/$pkgbase-$pkgver/mpv-opengl
+  arch-meson .. \
+   -Dbuild-executable=false \
+   -Dbuild-player-backends=mpv-opengl
+  ninja
+}
+
+package_gnome-twitch() {
+  cd $pkgbase-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-gstreamer-cairo() {
+  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
+
+  cd $pkgbase-$pkgver/gs-cairo
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-gstreamer-clutter() {
+  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad' 'clutter-gst' 'clutter-gtk')
+
+  cd $pkgbase-$pkgver/gs-clutter
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-gstreamer-opengl() {
+  depends=('gnome-twitch' 'gstreamer' 'gst-libav' 'gst-plugins-base' 
'gst-plugins-good' 'gst-plugins-bad')
+
+  cd $pkgbase-$pkgver/gs-opengl
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+package_gnome-twitch-player-backend-mpv-opengl() {
+  depends=('mpv')
+
+  cd $pkgbase-$pkgver/mpv-opengl
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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


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

2018-09-15 Thread Balló György via arch-commits
Date: Saturday, September 15, 2018 @ 20:57:26
  Author: bgyorgy
Revision: 381769

upgpkg: evolution-on 3.24.2-2

Remove unused gconf dependency

Modified:
  evolution-on/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:42:05 UTC (rev 381768)
+++ PKGBUILD2018-09-15 20:57:26 UTC (rev 381769)
@@ -2,20 +2,28 @@
 
 pkgname=evolution-on
 pkgver=3.24.2
-pkgrel=1
-pkgdesc='Tray plugin for the Evolution email client.'
+pkgrel=2
+pkgdesc='Tray plugin for the Evolution email client'
 arch=('x86_64')
 url='https://github.com/acidrain42/evolution-on'
 license=('GPL2')
-depends=('evolution' 'gconf' 'libnotify')
+depends=('evolution' 'libnotify')
 makedepends=('git' 'gnome-common')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
 
sha512sums=('7f6c048c052ecab2efefaeddaba9db8f7f63035c5505fce0b9c260b5cf2044fe0c4d90a2e7461e1643f507daa1d3a871be9c16e58311d229697d9ce11faa82cf')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i '/AM_GCONF_SOURCE_2/d' configure.ac
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
   cd $pkgname-$pkgver
 
-  ./autogen.sh --prefix=/usr
+  ./configure --prefix=/usr
 
   make
 }


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

2018-09-15 Thread Balló György via arch-commits
Date: Saturday, September 15, 2018 @ 20:57:30
  Author: bgyorgy
Revision: 381770

archrelease: copy trunk to community-x86_64

Added:
  evolution-on/repos/community-x86_64/PKGBUILD
(from rev 381769, evolution-on/trunk/PKGBUILD)
Deleted:
  evolution-on/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 20:57:26 UTC (rev 381769)
+++ PKGBUILD2018-09-15 20:57:30 UTC (rev 381770)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=evolution-on
-pkgver=3.24.2
-pkgrel=1
-pkgdesc='Tray plugin for the Evolution email client.'
-arch=('x86_64')
-url='https://github.com/acidrain42/evolution-on'
-license=('GPL2')
-depends=('evolution' 'gconf' 'libnotify')
-makedepends=('git' 'gnome-common')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('7f6c048c052ecab2efefaeddaba9db8f7f63035c5505fce0b9c260b5cf2044fe0c4d90a2e7461e1643f507daa1d3a871be9c16e58311d229697d9ce11faa82cf')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}
-

Copied: evolution-on/repos/community-x86_64/PKGBUILD (from rev 381769, 
evolution-on/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 20:57:30 UTC (rev 381770)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=evolution-on
+pkgver=3.24.2
+pkgrel=2
+pkgdesc='Tray plugin for the Evolution email client'
+arch=('x86_64')
+url='https://github.com/acidrain42/evolution-on'
+license=('GPL2')
+depends=('evolution' 'libnotify')
+makedepends=('git' 'gnome-common')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('7f6c048c052ecab2efefaeddaba9db8f7f63035c5505fce0b9c260b5cf2044fe0c4d90a2e7461e1643f507daa1d3a871be9c16e58311d229697d9ce11faa82cf')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i '/AM_GCONF_SOURCE_2/d' configure.ac
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 20:42:05
  Author: ffy00
Revision: 381768

Remove propset

Modified:
  evolution-on/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:41:28 UTC (rev 381767)
+++ PKGBUILD2018-09-15 20:42:05 UTC (rev 381768)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=evolution-on


[arch-commits] Commit in gnome-twitch (3 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 20:41:28
  Author: ffy00
Revision: 381767

Add root structure

Added:
  gnome-twitch/gnome-twitch/
  gnome-twitch/gnome-twitch/repos/
  gnome-twitch/gnome-twitch/trunk/


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 20:41:14
  Author: ffy00
Revision: 381766

Add root structure

Added:
  gnome-twitch/
  gnome-twitch/repos/
  gnome-twitch/trunk/


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 20:37:46
  Author: ffy00
Revision: 381764

upgpkg: evolution-on 3.24.2-1

Modified:
  evolution-on/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:28:49 UTC (rev 381763)
+++ PKGBUILD2018-09-15 20:37:46 UTC (rev 381764)
@@ -1,2 +1,29 @@
 # $Id$
 # Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=evolution-on
+pkgver=3.24.2
+pkgrel=1
+pkgdesc='Tray plugin for the Evolution email client.'
+arch=('x86_64')
+url='https://github.com/acidrain42/evolution-on'
+license=('GPL2')
+depends=('evolution' 'gconf' 'libnotify')
+makedepends=('git' 'gnome-common')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('7f6c048c052ecab2efefaeddaba9db8f7f63035c5505fce0b9c260b5cf2044fe0c4d90a2e7461e1643f507daa1d3a871be9c16e58311d229697d9ce11faa82cf')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+


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

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 20:37:51
  Author: ffy00
Revision: 381765

archrelease: copy trunk to community-x86_64

Added:
  evolution-on/repos/community-x86_64/
  evolution-on/repos/community-x86_64/PKGBUILD
(from rev 381764, evolution-on/trunk/PKGBUILD)

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

Copied: evolution-on/repos/community-x86_64/PKGBUILD (from rev 381764, 
evolution-on/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-15 20:37:51 UTC (rev 381765)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=evolution-on
+pkgver=3.24.2
+pkgrel=1
+pkgdesc='Tray plugin for the Evolution email client.'
+arch=('x86_64')
+url='https://github.com/acidrain42/evolution-on'
+license=('GPL2')
+depends=('evolution' 'gconf' 'libnotify')
+makedepends=('git' 'gnome-common')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('7f6c048c052ecab2efefaeddaba9db8f7f63035c5505fce0b9c260b5cf2044fe0c4d90a2e7461e1643f507daa1d3a871be9c16e58311d229697d9ce11faa82cf')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in aisleriot/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:32:37
  Author: heftig
Revision: 334645

archrelease: copy trunk to extra-x86_64

Added:
  aisleriot/repos/extra-x86_64/PKGBUILD
(from rev 334644, aisleriot/trunk/PKGBUILD)
Deleted:
  aisleriot/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 20:32:22 UTC (rev 334644)
+++ PKGBUILD2018-09-15 20:32:37 UTC (rev 334645)
@@ -1,51 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=aisleriot
-pkgver=3.22.6
-pkgrel=1
-pkgdesc="A collection of patience games written in guile scheme"
-url="https://wiki.gnome.org/Apps/Aisleriot;
-arch=(x86_64)
-license=(GPL)
-depends=(guile gtk3 librsvg libcanberra gconf dconf)
-makedepends=(intltool itstool docbook-xsl yelp-tools appdata-tools 
gnome-common git)
-optdepends=('libkdegames: KDE card sets'
-'pysolfc: PySol card sets'
-'pysolfc-cardsets: PySol card sets')
-options=(!emptydirs)
-_commit=0bccad236d311a51995eed018a4563ad79b1a9e3  # tags/3.22.6^0
-source=("git+https://gitlab.gnome.org/GNOME/aisleriot.git#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 --disable-static \
---with-kde-card-theme-path=/usr/share/carddecks \
---with-pysol-card-theme-path=/usr/share/PySolFC
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
-  install -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \
---domain aisleriot "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm "$pkgdir"/etc/gconf/schemas/*.schemas
-}

Copied: aisleriot/repos/extra-x86_64/PKGBUILD (from rev 334644, 
aisleriot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 20:32:37 UTC (rev 334645)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=aisleriot
+pkgver=3.22.6
+pkgrel=2
+pkgdesc="A collection of patience games written in guile scheme"
+url="https://wiki.gnome.org/Apps/Aisleriot;
+arch=(x86_64)
+license=(GPL)
+depends=(guile gtk3 librsvg libcanberra dconf)
+makedepends=(appdata-tools gnome-common git)
+optdepends=('libkdegames: KDE card sets'
+'pysolfc: PySol card sets'
+'pysolfc-cardsets: PySol card sets')
+options=(!emptydirs)
+_commit=0bccad236d311a51995eed018a4563ad79b1a9e3  # tags/3.22.6^0
+source=("git+https://gitlab.gnome.org/GNOME/aisleriot.git#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 \
+--disable-static \
+--with-platform=gtk-only \
+--with-kde-card-theme-path=/usr/share/carddecks \
+--with-pysol-card-theme-path=/usr/share/PySolFC
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:32:22
  Author: heftig
Revision: 334644

3.22.6-2

Modified:
  aisleriot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:23:50 UTC (rev 334643)
+++ PKGBUILD2018-09-15 20:32:22 UTC (rev 334644)
@@ -2,13 +2,13 @@
 
 pkgname=aisleriot
 pkgver=3.22.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A collection of patience games written in guile scheme"
 url="https://wiki.gnome.org/Apps/Aisleriot;
 arch=(x86_64)
 license=(GPL)
-depends=(guile gtk3 librsvg libcanberra gconf dconf)
-makedepends=(intltool itstool docbook-xsl yelp-tools appdata-tools 
gnome-common git)
+depends=(guile gtk3 librsvg libcanberra dconf)
+makedepends=(appdata-tools gnome-common git)
 optdepends=('libkdegames: KDE card sets'
 'pysolfc: PySol card sets'
 'pysolfc-cardsets: PySol card sets')
@@ -30,8 +30,13 @@
 build() {
   cd $pkgname
 
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static \
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--disable-static \
+--with-platform=gtk-only \
 --with-kde-card-theme-path=/usr/share/carddecks \
 --with-pysol-card-theme-path=/usr/share/PySolFC
 
@@ -43,9 +48,5 @@
 
 package() {
   cd $pkgname
-  make DESTDIR="$pkgdir" install GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
-  install -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \
---domain aisleriot "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm "$pkgdir"/etc/gconf/schemas/*.schemas
+  make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in (4 files)

2018-09-15 Thread Filipe Laíns via arch-commits
Date: Saturday, September 15, 2018 @ 20:28:49
  Author: ffy00
Revision: 381763

Add root structure

Added:
  evolution-on/
  evolution-on/repos/
  evolution-on/trunk/
  evolution-on/trunk/PKGBUILD

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

Added: evolution-on/trunk/PKGBUILD
===
--- evolution-on/trunk/PKGBUILD (rev 0)
+++ evolution-on/trunk/PKGBUILD 2018-09-15 20:28:49 UTC (rev 381763)
@@ -0,0 +1,2 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 


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


[arch-commits] Commit in gnome-music/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:23:43
  Author: heftig
Revision: 334642

archrelease: copy trunk to testing-x86_64

Added:
  gnome-music/repos/testing-x86_64/PKGBUILD
(from rev 334641, gnome-music/trunk/PKGBUILD)
Deleted:
  gnome-music/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  107 ++---
 1 file changed, 53 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 20:23:35 UTC (rev 334641)
+++ PKGBUILD2018-09-15 20:23:43 UTC (rev 334642)
@@ -1,54 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-music
-pkgver=3.30.0+10+gae02f798
-pkgrel=1
-epoch=1
-pkgdesc="Music player and management application"
-url="https://wiki.gnome.org/Apps/Music;
-arch=(x86_64)
-license=(GPL)
-depends=(grilo grilo-plugins tracker-miners libdmapsharing libmediaart gtk3 
gvfs python-gobject
- python-cairo gst-plugins-base python-requests libdazzle)
-makedepends=(gobject-introspection git meson yelp-tools appstream-glib)
-optdepends=('gst-plugins-good: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-libav: Extra media codecs')
-groups=(gnome)
-_commit=ae02f798d64e016918de4b9d14854d36d7d8ff55  # 
environments/review-gnome-3-30-6fvdp1/deployments/273
-source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
-  git submodule update
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-
-  cd "$pkgdir"
-  python -m compileall -d / usr/lib
-  python -O -m compileall -d / usr/lib
-}

Copied: gnome-music/repos/testing-x86_64/PKGBUILD (from rev 334641, 
gnome-music/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 20:23:43 UTC (rev 334642)
@@ -0,0 +1,53 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-music
+pkgver=3.30.0+10+gae02f798
+pkgrel=2
+epoch=1
+pkgdesc="Music player and management application"
+url="https://wiki.gnome.org/Apps/Music;
+arch=(x86_64)
+license=(GPL)
+depends=(grilo grilo-plugins tracker-miners libdmapsharing libmediaart gtk3 
gvfs python-gobject
+ python-cairo gst-plugins-base python-requests libdazzle)
+makedepends=(gobject-introspection git meson yelp-tools appstream-glib)
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs')
+groups=(gnome)
+_commit=ae02f798d64e016918de4b9d14854d36d7d8ff55  # 
environments/review-gnome-3-30-6fvdp1/deployments/273
+source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+}


[arch-commits] Commit in gobject-introspection/repos/testing-x86_64 (2 files)

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:23:35
  Author: heftig
Revision: 334641

archrelease: copy trunk to testing-x86_64

Added:
  gobject-introspection/repos/testing-x86_64/PKGBUILD
(from rev 334640, gobject-introspection/trunk/PKGBUILD)
Deleted:
  gobject-introspection/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 20:23:27 UTC (rev 334640)
+++ PKGBUILD2018-09-15 20:23:35 UTC (rev 334641)
@@ -1,57 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgbase=gobject-introspection
-pkgname=(gobject-introspection gobject-introspection-runtime)
-pkgver=1.58.0+2+g1f1dd7f4
-pkgrel=1
-pkgdesc="Introspection system for GObject-based libraries"
-url="https://wiki.gnome.org/Projects/GObjectIntrospection;
-arch=(x86_64)
-license=(LGPL GPL)
-depends=(python python-mako)
-makedepends=(cairo git gtk-doc python-sphinx meson)
-options=(!emptydirs)
-_commit=1f1dd7f4857c13db507ad663664a5e4b8d620ffc  # gnome-3-30
-source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-  
-build() {
-  arch-meson $pkgbase build -D cairo=true -D gtk-doc=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package_gobject-introspection() {
-  depends+=("gobject-introspection-runtime=$pkgver-$pkgrel")
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  pushd "$pkgdir"
-  python -m compileall -d / usr/lib/gobject-introspection
-  python -O -m compileall -d / usr/lib/gobject-introspection
-  popd
-
-### Split runtime
-  mkdir -p "$srcdir/runtime/lib"
-  mv "$pkgdir"/usr/lib/{lib*,girepository-*} "$srcdir/runtime/lib"
-}
-
-package_gobject-introspection-runtime() {
-  pkgdesc+=" (runtime library)"
-  depends=(glib2)
-
-  mv "$srcdir/runtime" "$pkgdir/usr"
-}

Copied: gobject-introspection/repos/testing-x86_64/PKGBUILD (from rev 334640, 
gobject-introspection/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 20:23:35 UTC (rev 334641)
@@ -0,0 +1,55 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=gobject-introspection
+pkgname=(gobject-introspection gobject-introspection-runtime)
+pkgver=1.58.0+2+g1f1dd7f4
+pkgrel=2
+pkgdesc="Introspection system for GObject-based libraries"
+url="https://wiki.gnome.org/Projects/GObjectIntrospection;
+arch=(x86_64)
+license=(LGPL GPL)
+depends=(python python-mako)
+makedepends=(cairo git gtk-doc python-sphinx meson)
+options=(!emptydirs)
+_commit=1f1dd7f4857c13db507ad663664a5e4b8d620ffc  # gnome-3-30
+source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+  
+build() {
+  arch-meson $pkgbase build -D cairo=true -D gtk-doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package_gobject-introspection() {
+  depends+=("gobject-introspection-runtime=$pkgver-$pkgrel")
+
+  DESTDIR="$pkgdir" meson install -C build
+
+  python -m compileall -d /usr/lib/gobject-introspection 
"$pkgdir/usr/lib/gobject-introspection"
+  python -O -m compileall -d /usr/lib/gobject-introspection 
"$pkgdir/usr/lib/gobject-introspection"
+
+### Split runtime
+  mkdir -p "$srcdir/runtime/lib"
+  mv "$pkgdir"/usr/lib/{lib*,girepository-*} "$srcdir/runtime/lib"
+}
+
+package_gobject-introspection-runtime() {
+  pkgdesc+=" (runtime library)"
+  depends=(glib2)
+
+  mv "$srcdir/runtime" "$pkgdir/usr"
+}


[arch-commits] Commit in pygobject/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:23:50
  Author: heftig
Revision: 334643

archrelease: copy trunk to testing-x86_64

Added:
  pygobject/repos/testing-x86_64/PKGBUILD
(from rev 334642, pygobject/trunk/PKGBUILD)
Deleted:
  pygobject/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  148 ++---
 1 file changed, 73 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 20:23:43 UTC (rev 334642)
+++ PKGBUILD2018-09-15 20:23:50 UTC (rev 334643)
@@ -1,75 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.30.1
-pkgrel=2
-pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
-url="https://wiki.gnome.org/Projects/PyGObject;
-arch=(x86_64)
-license=(LGPL)
-depends=(gobject-introspection-runtime)
-makedepends=(python{,2}-cairo gobject-introspection git meson)
-optdepends=('cairo: Cairo bindings')
-_commit=85baa83ca780b4aae89ce5f25b1186ee3790b828  # tags/3.30.1^0
-source=("git+https://gitlab.gnome.org/GNOME/pygobject.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-_build() (
-  arch-meson $pkgbase build-$1 -D python=/usr/bin/$1
-  ninja -C build-$1
-)
-
-_package() {
-  DESTDIR="$pkgdir" meson install -C build-$1
-  pushd "$pkgdir"
-  $1 -m compileall -d / usr/lib
-  $1 -O -m compileall -d / usr/lib
-  popd
-}
-
-build() {
-  _build python
-  _build python2
-}
-
-package_python-gobject() {
-  depends=("pygobject-devel=$pkgver" python)
-
-  _package python
-
-### Split -devel
-  mkdir -p "$srcdir/devel"
-  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
-}
-
-package_python2-gobject() {
-  pkgdesc="${pkgdesc/Python/Python2}"
-  depends=("pygobject-devel=$pkgver" python2)
-
-  _package python2
-
-### Remove -devel
-  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
-}
-
-package_pygobject-devel() {
-  pkgdesc="Common development files for pygobject"
-  optdepends=()
-
-  mkdir -p "$pkgdir/usr/lib"
-  mv devel/include "$pkgdir/usr"
-  mv devel/pkgconfig "$pkgdir/usr/lib"
-}
-
-# vim:set sw=2 et:

Copied: pygobject/repos/testing-x86_64/PKGBUILD (from rev 334642, 
pygobject/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 20:23:50 UTC (rev 334643)
@@ -0,0 +1,73 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.30.1
+pkgrel=3
+pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
+url="https://wiki.gnome.org/Projects/PyGObject;
+arch=(x86_64)
+license=(LGPL)
+depends=(gobject-introspection-runtime)
+makedepends=(python{,2}-cairo gobject-introspection git meson)
+optdepends=('cairo: Cairo bindings')
+_commit=85baa83ca780b4aae89ce5f25b1186ee3790b828  # tags/3.30.1^0
+source=("git+https://gitlab.gnome.org/GNOME/pygobject.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+_build() (
+  arch-meson $pkgbase build-$1 -D python=/usr/bin/$1
+  ninja -C build-$1
+)
+
+_package() {
+  DESTDIR="$pkgdir" meson install -C build-$1
+  $1 -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  $1 -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+}
+
+build() {
+  _build python
+  _build python2
+}
+
+package_python-gobject() {
+  depends=("pygobject-devel=$pkgver" python)
+
+  _package python
+
+### Split -devel
+  mkdir -p "$srcdir/devel"
+  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
+}
+
+package_python2-gobject() {
+  pkgdesc="${pkgdesc/Python/Python2}"
+  depends=("pygobject-devel=$pkgver" python2)
+
+  _package python2
+
+### Remove -devel
+  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
+}
+
+package_pygobject-devel() {
+  pkgdesc="Common development files for pygobject"
+  optdepends=()
+
+  mkdir -p "$pkgdir/usr/lib"
+  mv devel/include "$pkgdir/usr"
+  mv devel/pkgconfig "$pkgdir/usr/lib"
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in glib2/repos/testing-x86_64 (8 files)

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:23:27
  Author: heftig
Revision: 334640

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 334639, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 334639, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 334639, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 334639, glib2/trunk/noisy-glib-compile-schemas.diff)
Deleted:
  glib2/repos/testing-x86_64/PKGBUILD
  glib2/repos/testing-x86_64/gio-querymodules.hook
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff

-+
 PKGBUILD|  150 ++
 gio-querymodules.hook   |   22 ++---
 glib-compile-schemas.hook   |   24 +++---
 noisy-glib-compile-schemas.diff |   48 ++--
 4 files changed, 121 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-15 20:23:05 UTC (rev 334639)
+++ PKGBUILD2018-09-15 20:23:27 UTC (rev 334640)
@@ -1,76 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgbase=glib2
-pkgname=(glib2 glib2-docs)
-pkgver=2.58.0+25+gd89e862f3
-pkgrel=2
-pkgdesc="Low level core library"
-url="https://wiki.gnome.org/Projects/GLib;
-license=(LGPL2.1)
-arch=(x86_64)
-depends=(pcre libffi libutil-linux zlib)
-makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux 
meson dbus)
-checkdepends=(desktop-file-utils)
-optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
-'libelf: gresource inspection tool')
-options=(!emptydirs)
-_commit=d89e862f3cfb0b6b7708c0425547c2a38add9342  # glib-2-58
-source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
-noisy-glib-compile-schemas.diff
-glib-compile-schemas.hook gio-querymodules.hook)
-sha256sums=('SKIP'
-'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
-'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
-'5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6')
-
-pkgver() {
-  cd glib
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd glib
-
-  # Suppress noise from glib-compile-schemas.hook
-  patch -Np1 -i ../noisy-glib-compile-schemas.diff
-}
-
-build() {
-  arch-meson glib build \
--D selinux=false \
--D man=true \
--D gtk_doc=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build -t 2
-}
-
-package_glib2() {
-  DESTDIR="$pkgdir" meson install -C build
-  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
-
-  pushd "$pkgdir"
-  python -m compileall -d / usr/share/glib-2.0/codegen
-  python -O -m compileall -d / usr/share/glib-2.0/codegen
-  popd
-
-  # Split docs
-  mv "$pkgdir/usr/share/gtk-doc" "$srcdir"
-}
-
-package_glib2-docs() {
-  pkgdesc="Documentation for GLib"
-  depends=()
-  optdepends=()
-  license+=(custom)
-
-  mkdir -p "$pkgdir/usr/share"
-  mv gtk-doc "$pkgdir/usr/share"
-
-  install -Dt "$pkgdir/usr/share/licenses/glib2-docs" -m644 
glib/docs/reference/COPYING
-}
-
-# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 334639, 
glib2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-15 20:23:27 UTC (rev 334640)
@@ -0,0 +1,74 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.58.0+25+gd89e862f3
+pkgrel=3
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(pcre libffi libutil-linux zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux 
meson dbus)
+checkdepends=(desktop-file-utils)
+optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
+'libelf: gresource inspection tool')
+options=(!emptydirs)
+_commit=d89e862f3cfb0b6b7708c0425547c2a38add9342  # glib-2-58
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+noisy-glib-compile-schemas.diff
+glib-compile-schemas.hook gio-querymodules.hook)
+sha256sums=('SKIP'
+'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
+'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
+'5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Suppress noise from glib-compile-schemas.hook
+  patch -Np1 -i ../noisy-glib-compile-schemas.diff
+}
+
+build() {
+  arch-meson glib 

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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:23:05
  Author: heftig
Revision: 334639

2.58.0+25+gd89e862f3-3

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:17:26 UTC (rev 334638)
+++ PKGBUILD2018-09-15 20:23:05 UTC (rev 334639)
@@ -4,7 +4,7 @@
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
 pkgver=2.58.0+25+gd89e862f3
-pkgrel=2
+pkgrel=3
 pkgdesc="Low level core library"
 url="https://wiki.gnome.org/Projects/GLib;
 license=(LGPL2.1)
@@ -52,10 +52,8 @@
   DESTDIR="$pkgdir" meson install -C build
   install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
 
-  pushd "$pkgdir"
-  python -m compileall -d / usr/share/glib-2.0/codegen
-  python -O -m compileall -d / usr/share/glib-2.0/codegen
-  popd
+  python -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+  python -O -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
 
   # Split docs
   mv "$pkgdir/usr/share/gtk-doc" "$srcdir"


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:17:11
  Author: heftig
Revision: 334637

3.30.0+10+gae02f798-2

Modified:
  gnome-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:17:05 UTC (rev 334636)
+++ PKGBUILD2018-09-15 20:17:11 UTC (rev 334637)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-music
 pkgver=3.30.0+10+gae02f798
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Music player and management application"
 url="https://wiki.gnome.org/Apps/Music;
@@ -48,7 +48,6 @@
 package() {
   DESTDIR="$pkgdir" meson install -C build
 
-  cd "$pkgdir"
-  python -m compileall -d / usr/lib
-  python -O -m compileall -d / usr/lib
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
 }


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

2018-09-15 Thread Jan Steffens via arch-commits
Date: Saturday, September 15, 2018 @ 20:17:26
  Author: heftig
Revision: 334638

3.30.1-3

Modified:
  pygobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-15 20:17:11 UTC (rev 334637)
+++ PKGBUILD2018-09-15 20:17:26 UTC (rev 334638)
@@ -4,7 +4,7 @@
 pkgbase=pygobject
 pkgname=(python-gobject python2-gobject pygobject-devel)
 pkgver=3.30.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
 url="https://wiki.gnome.org/Projects/PyGObject;
 arch=(x86_64)
@@ -32,10 +32,8 @@
 
 _package() {
   DESTDIR="$pkgdir" meson install -C build-$1
-  pushd "$pkgdir"
-  $1 -m compileall -d / usr/lib
-  $1 -O -m compileall -d / usr/lib
-  popd
+  $1 -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  $1 -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
 }
 
 build() {


  1   2   3   4   5   6   7   8   >