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

2020-04-08 Thread Felix Yan via arch-commits
Date: Wednesday, April 8, 2020 @ 16:39:55
  Author: felixonmars
Revision: 379851

libffi 3.3 rebuild

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-08 16:37:22 UTC (rev 379850)
+++ PKGBUILD2020-04-08 16:39:55 UTC (rev 379851)
@@ -5,7 +5,7 @@
 pkgbase=wayland
 pkgname=(wayland wayland-docs)
 pkgver=1.18.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
 url='https://wayland.freedesktop.org/'


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

2020-02-11 Thread Sébastien Luttringer via arch-commits
Date: Wednesday, February 12, 2020 @ 00:41:52
  Author: seblu
Revision: 375427

upgpkg: wayland 1.18.0-1

- New release
- Move to meson build system

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-11 21:52:36 UTC (rev 375426)
+++ PKGBUILD2020-02-12 00:41:52 UTC (rev 375427)
@@ -1,10 +1,10 @@
-# Maintainer: Tom Gundersen 
 # Maintainer: Sébastien Luttringer 
+# Contributor: Tom Gundersen 
 # Contributor: Joel Teichroeb 
 
 pkgbase=wayland
 pkgname=(wayland wayland-docs)
-pkgver=1.17.0
+pkgver=1.18.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -11,42 +11,28 @@
 url='https://wayland.freedesktop.org/'
 license=('MIT')
 depends=('glibc' 'libffi' 'expat' 'libxml2')
-makedepends=('libxslt' 'doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
+makedepends=('meson' 'ninja' 'libxslt' 'doxygen' 'xmlto' 'graphviz' 
'docbook-xsl')
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611'  # Bryce Harrington
-  'C0066D7DB8E9AC6844D728715E54498E697F11D7') # Derek Foreman
+  'C0066D7DB8E9AC6844D728715E54498E697F11D7'  # Derek Foreman
+  '34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48') # emersion 

 
source=("https://wayland.freedesktop.org/releases/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha1sums=('4d9e08a7a4a07fa37a25d7aa3ef83f08edec0600'
-  'SKIP')
+sha256sums=('4675a79f091020817a98fd0484e7208c8762242266967f55a67776936c2e294d'
+'SKIP')
 
-prepare() {
-  cd $pkgbase-$pkgver
-}
-
 build() {
-  cd $pkgbase-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+  meson build $pkgbase-$pkgver --buildtype=release --prefix=/usr
+  ninja -C build
 }
 
 check() {
-  cd $pkgbase-$pkgver
-
-  make check
+  ninja -C build test
 }
 
 package_wayland() {
-  cd $pkgbase-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p "$srcdir/docs/share"
-  mv "$pkgdir"/usr/share/{doc,man} "$srcdir/docs/share"
-
-  install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  DESTDIR="$pkgdir" ninja -C build install
+  mkdir -p docs/share
+  mv "$pkgdir"/usr/share/{doc,man} docs/share
+  install -Dm 644 $pkgbase-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 
 package_wayland-docs() {
@@ -53,11 +39,8 @@
   pkgdesc+=" (documentation)"
   depends=()
 
-  cd $pkgbase-$pkgver
-
-  mv "$srcdir/docs" "$pkgdir/usr"
-
-  install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  mv docs "$pkgdir/usr"
+  install -Dm 644 $pkgbase-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-03-20 Thread Sébastien Luttringer via arch-commits
Date: Thursday, March 21, 2019 @ 04:07:07
  Author: seblu
Revision: 348778

upgpkg: wayland 1.17.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-21 03:05:10 UTC (rev 348777)
+++ PKGBUILD2019-03-21 04:07:07 UTC (rev 348778)
@@ -4,7 +4,7 @@
 
 pkgbase=wayland
 pkgname=(wayland wayland-docs)
-pkgver=1.16.0
+pkgver=1.17.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611'  # Bryce Harrington
   'C0066D7DB8E9AC6844D728715E54498E697F11D7') # Derek Foreman
 
source=("https://wayland.freedesktop.org/releases/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha1sums=('24c63a5045c653dcfa24efd10fa7c7de89aca9ef'
+sha1sums=('4d9e08a7a4a07fa37a25d7aa3ef83f08edec0600'
   'SKIP')
 
 prepare() {


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

2018-08-24 Thread Jan Steffens via arch-commits
Date: Friday, August 24, 2018 @ 19:05:05
  Author: heftig
Revision: 332986

1.16.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-24 18:21:22 UTC (rev 332985)
+++ PKGBUILD2018-08-24 19:05:05 UTC (rev 332986)
@@ -5,7 +5,7 @@
 
 pkgbase=wayland
 pkgname=(wayland wayland-docs)
-pkgver=1.15.0
+pkgver=1.16.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611'  # Bryce Harrington
   'C0066D7DB8E9AC6844D728715E54498E697F11D7') # Derek Foreman
 
source=("https://wayland.freedesktop.org/releases/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha1sums=('374e07b4f3b7fdfa7c4206cdd48224ea00d69d68'
+sha1sums=('24c63a5045c653dcfa24efd10fa7c7de89aca9ef'
   'SKIP')
 
 prepare() {


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

2018-05-14 Thread Jan Steffens via arch-commits
Date: Monday, May 14, 2018 @ 17:07:23
  Author: heftig
Revision: 324261

1.15.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-14 10:07:25 UTC (rev 324260)
+++ PKGBUILD2018-05-14 17:07:23 UTC (rev 324261)
@@ -3,8 +3,9 @@
 # Maintainer: Sébastien Luttringer 
 # Contributor: Joel Teichroeb 
 
-pkgname=wayland
-pkgver=1.14.0
+pkgbase=wayland
+pkgname=(wayland wayland-docs)
+pkgver=1.15.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -11,26 +12,53 @@
 url='https://wayland.freedesktop.org/'
 license=('MIT')
 depends=('glibc' 'libffi' 'expat' 'libxml2')
-validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
-source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('53a443be3bafe73209bbc49ef2cb134ed16e0141'
+makedepends=('libxslt' 'doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
+validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611'  # Bryce Harrington
+  'C0066D7DB8E9AC6844D728715E54498E697F11D7') # Derek Foreman
+source=("https://wayland.freedesktop.org/releases/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha1sums=('374e07b4f3b7fdfa7c4206cdd48224ea00d69d68'
   'SKIP')
 
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgbase-$pkgver
 
   ./configure \
 --prefix=/usr \
---disable-documentation \
 --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
-package() {
-  cd $pkgname-$pkgver
+check() {
+  cd $pkgbase-$pkgver
 
+  make check
+}
+
+package_wayland() {
+  cd $pkgbase-$pkgver
+
   make DESTDIR="$pkgdir" install
+
+  mkdir -p "$srcdir/docs/share"
+  mv "$pkgdir"/usr/share/{doc,man} "$srcdir/docs/share"
+
   install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 
+package_wayland-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  cd $pkgbase-$pkgver
+
+  mv "$srcdir/docs" "$pkgdir/usr"
+
+  install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
 # vim:set ts=2 sw=2 et:


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

2017-08-11 Thread Sébastien Luttringer
Date: Friday, August 11, 2017 @ 23:06:37
  Author: seblu
Revision: 301954

upgpkg: wayland 1.14.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-11 22:12:21 UTC (rev 301953)
+++ PKGBUILD2017-08-11 23:06:37 UTC (rev 301954)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=wayland
-pkgver=1.13.0
+pkgver=1.14.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('glibc' 'libffi' 'expat' 'libxml2')
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
 
source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('a8575325ed2885948624043c71629310df928312'
+sha1sums=('53a443be3bafe73209bbc49ef2cb134ed16e0141'
   'SKIP')
 
 build() {


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

2017-02-26 Thread Sébastien Luttringer
Date: Sunday, February 26, 2017 @ 13:12:23
  Author: seblu
Revision: 289562

upgpkg: wayland 1.13.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-02-26 10:16:38 UTC (rev 289561)
+++ PKGBUILD2017-02-26 13:12:23 UTC (rev 289562)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=wayland
-pkgver=1.12.0
+pkgver=1.13.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -11,10 +11,9 @@
 url='https://wayland.freedesktop.org/'
 license=('MIT')
 depends=('glibc' 'libffi' 'expat' 'libxml2')
-makedepends=('doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
 
source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('9a0dd96f53fff3e227035ed76caaa209b632ea8d'
+sha1sums=('a8575325ed2885948624043c71629310df928312'
   'SKIP')
 
 build() {
@@ -22,6 +21,7 @@
 
   ./configure \
 --prefix=/usr \
+--disable-documentation \
 --disable-static
   make
 }


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

2016-09-21 Thread Sébastien Luttringer
Date: Wednesday, September 21, 2016 @ 09:55:46
  Author: seblu
Revision: 276795

upgpkg: wayland 1.12.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-21 09:13:49 UTC (rev 276794)
+++ PKGBUILD2016-09-21 09:55:46 UTC (rev 276795)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=wayland
-pkgver=1.11.0
+pkgver=1.12.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
 validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
 
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('ba0494a3ab811251f7ad72710bc751cb668d8848'
+sha1sums=('9a0dd96f53fff3e227035ed76caaa209b632ea8d'
   'SKIP')
 
 build() {


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

2016-06-05 Thread Sébastien Luttringer
Date: Sunday, June 5, 2016 @ 22:47:12
  Author: seblu
Revision: 269059

upgpkg: wayland 1.11.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-05 18:07:20 UTC (rev 269058)
+++ PKGBUILD2016-06-05 20:47:12 UTC (rev 269059)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=wayland
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('glibc' 'libffi' 'expat' 'libxml2')
 makedepends=('doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
 source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('a593c012233942ac9b0291dace6bb4a068ee99ea')
+sha1sums=('ba0494a3ab811251f7ad72710bc751cb668d8848')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-18 Thread Sébastien Luttringer
Date: Thursday, February 18, 2016 @ 12:27:57
  Author: seblu
Revision: 259945

upgpkg: wayland 1.10.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-18 08:54:24 UTC (rev 259944)
+++ PKGBUILD2016-02-18 11:27:57 UTC (rev 259945)
@@ -11,7 +11,7 @@
 url='http://wayland.freedesktop.org'
 license=('MIT')
 depends=('glibc' 'libffi' 'expat' 'libxml2')
-makedepends=('doxygen' 'xmlto' 'graphviz')
+makedepends=('doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
 source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
 sha1sums=('a593c012233942ac9b0291dace6bb4a068ee99ea')
 
@@ -18,7 +18,8 @@
 build() {
   cd $pkgname-$pkgver
 
-  ./configure --prefix=/usr \
+  ./configure \
+--prefix=/usr \
 --disable-static
   make
 }


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

2016-02-17 Thread Sébastien Luttringer
Date: Wednesday, February 17, 2016 @ 17:39:12
  Author: seblu
Revision: 259920

upgpkg: wayland 1.10.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 16:34:57 UTC (rev 259919)
+++ PKGBUILD2016-02-17 16:39:12 UTC (rev 259920)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url='http://wayland.freedesktop.org'
 license=('MIT')
-depends=('libffi' 'expat' 'libxml2')
+depends=('glibc' 'libffi' 'expat' 'libxml2')
 makedepends=('doxygen' 'xmlto' 'graphviz')
 source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
 sha1sums=('a593c012233942ac9b0291dace6bb4a068ee99ea')


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

2016-02-17 Thread Sébastien Luttringer
Date: Wednesday, February 17, 2016 @ 17:34:43
  Author: seblu
Revision: 259918

upgpkg: wayland 1.10.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 16:26:22 UTC (rev 259917)
+++ PKGBUILD2016-02-17 16:34:43 UTC (rev 259918)
@@ -4,16 +4,16 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=wayland
-pkgver=1.9.0
+pkgver=1.10.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
 url='http://wayland.freedesktop.org'
 license=('MIT')
-depends=('libffi' 'expat')
+depends=('libffi' 'expat' 'libxml2')
 makedepends=('doxygen' 'xmlto' 'graphviz')
 source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('39dedba2a5c8a83e7b3a3076fc8f4c4495289f81')
+sha1sums=('a593c012233942ac9b0291dace6bb4a068ee99ea')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-22 Thread Sébastien Luttringer
Date: Tuesday, September 22, 2015 @ 22:11:47
  Author: seblu
Revision: 247083

upgpkg: wayland 1.9.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 20:01:38 UTC (rev 247082)
+++ PKGBUILD2015-09-22 20:11:47 UTC (rev 247083)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb 
 
 pkgname=wayland
-pkgver=1.8.1
+pkgver=1.9.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen' 'xmlto' 'graphviz')
 source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('3a0a1174d0740d052422b2bab5ffa33599954aa4')
+sha1sums=('39dedba2a5c8a83e7b3a3076fc8f4c4495289f81')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-13 Thread Sébastien Luttringer
Date: Sunday, June 14, 2015 @ 01:08:40
  Author: seblu
Revision: 240740

upgpkg: wayland 1.8.1-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-13 22:29:08 UTC (rev 240739)
+++ PKGBUILD2015-06-13 23:08:40 UTC (rev 240740)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen' 'xmlto' 'graphviz')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('43cc740a0dce0908b455dfb3ebb1eae125da3fff')
+sha1sums=('3a0a1174d0740d052422b2bab5ffa33599954aa4')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-03 Thread Sébastien Luttringer
Date: Wednesday, June 3, 2015 @ 08:20:51
  Author: seblu
Revision: 240278

upgpkg: wayland 1.8.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-03 05:31:17 UTC (rev 240277)
+++ PKGBUILD2015-06-03 06:20:51 UTC (rev 240278)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.7.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen' 'xmlto' 'graphviz')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
+sha1sums=('43cc740a0dce0908b455dfb3ebb1eae125da3fff')
 
 build() {
   cd $pkgname-$pkgver


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

2015-02-14 Thread Sébastien Luttringer
Date: Sunday, February 15, 2015 @ 00:43:36
  Author: seblu
Revision: 231401

upgpkg: wayland 1.7.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-14 23:37:34 UTC (rev 231400)
+++ PKGBUILD2015-02-14 23:43:36 UTC (rev 231401)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.6.1
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -11,9 +11,9 @@
 url='http://wayland.freedesktop.org'
 license=('MIT')
 depends=('libffi' 'expat')
-makedepends=('doxygen')
+makedepends=('doxygen' 'xmlto' 'graphviz')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('cda1d24762cd5d14ae5bcadd9e5b0cdfce3d8b11')
+sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
 
 build() {
   cd $pkgname-$pkgver
@@ -29,3 +29,5 @@
   make DESTDIR=$pkgdir install
   install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
+
+# vim:set ts=2 sw=2 et:


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 20:46:28
  Author: seblu
Revision: 229991

upgpkg: wayland 1.6.1-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 15:42:29 UTC (rev 229990)
+++ PKGBUILD2015-01-25 19:46:28 UTC (rev 229991)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('6183108a3bffb204c05b7f37b763b6278760572d')
+sha1sums=('cda1d24762cd5d14ae5bcadd9e5b0cdfce3d8b11')
 
 build() {
   cd $pkgname-$pkgver


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

2014-09-19 Thread Sébastien Luttringer
Date: Friday, September 19, 2014 @ 20:06:43
  Author: seblu
Revision: 222114

upgpkg: wayland 1.6.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-19 17:46:31 UTC (rev 222113)
+++ PKGBUILD2014-09-19 18:06:43 UTC (rev 222114)
@@ -1,10 +1,10 @@
 # $Id$
 # Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Sébastien Luttringer
+# Maintainer: Sébastien Luttringer se...@archlinux.org
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.5.93
+pkgver=1.6.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('9ce236dbd1d13ae371dddc40530a6cf78001f40a')
+sha1sums=('6183108a3bffb204c05b7f37b763b6278760572d')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-17 Thread Jan de Groot
Date: Wednesday, September 17, 2014 @ 12:52:47
  Author: jgc
Revision: 221828

upgpkg: wayland 1.5.93-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-17 10:36:20 UTC (rev 221827)
+++ PKGBUILD2014-09-17 10:52:47 UTC (rev 221828)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.5.91
+pkgver=1.5.93
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('0b0513706eee5a43d33f5e4bc9cafa5d78037db5')
+sha1sums=('9ce236dbd1d13ae371dddc40530a6cf78001f40a')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:25:16
  Author: jgc
Revision: 220970

upgpkg: wayland 1.5.91-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:17:59 UTC (rev 220969)
+++ PKGBUILD2014-09-04 20:25:16 UTC (rev 220970)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.5.0
+pkgver=1.5.91
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('bace08b4a531ea4b80b4cf4e953320bc48ed7efe')
+sha1sums=('0b0513706eee5a43d33f5e4bc9cafa5d78037db5')
 
 build() {
   cd $pkgname-$pkgver



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

2014-05-21 Thread Sébastien Luttringer
Date: Thursday, May 22, 2014 @ 00:00:55
  Author: seblu
Revision: 213372

upgpkg: wayland 1.5.0-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-21 18:07:34 UTC (rev 213371)
+++ PKGBUILD2014-05-21 22:00:55 UTC (rev 213372)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.4.0
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('bc91befb8386ec5c1ff4f24ad8464c24a7496ae2')
+sha1sums=('bace08b4a531ea4b80b4cf4e953320bc48ed7efe')
 
 build() {
   cd $pkgname-$pkgver



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

2014-01-24 Thread Tom Gundersen
Date: Friday, January 24, 2014 @ 15:01:25
  Author: tomegun
Revision: 204640

upgpkg: wayland 1.4.0-1

upstream release

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-24 13:26:47 UTC (rev 204639)
+++ PKGBUILD2014-01-24 14:01:25 UTC (rev 204640)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.3.0
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('febbbfc8d76ed0b2157077d50cb6e5ceb1aa47de')
+sha1sums=('bc91befb8386ec5c1ff4f24ad8464c24a7496ae2')
 
 build() {
   cd $pkgname-$pkgver



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

2013-10-10 Thread Tom Gundersen
Date: Thursday, October 10, 2013 @ 14:46:05
  Author: tomegun
Revision: 196270

upgpkg: wayland 1.3.0-1

upstream release

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-10 11:00:54 UTC (rev 196269)
+++ PKGBUILD2013-10-10 12:46:05 UTC (rev 196270)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.2.1
+pkgver=1.3.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('doxygen')
 options=(!libtool)
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('2214b690cb5a4f9695d287f27730c4368e6ef829')
+sha1sums=('febbbfc8d76ed0b2157077d50cb6e5ceb1aa47de')
 
 build() {
   cd $pkgname-$pkgver



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

2013-08-28 Thread Laurent Carlier
Date: Wednesday, August 28, 2013 @ 22:08:06
  Author: lcarlier
Revision: 193711

upgpkg: wayland 1.2.1-1

upstream update 1.2.1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-28 15:51:15 UTC (rev 193710)
+++ PKGBUILD2013-08-28 20:08:06 UTC (rev 193711)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -14,9 +14,11 @@
 makedepends=('doxygen')
 options=(!libtool)
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('2214b690cb5a4f9695d287f27730c4368e6ef829')
 
 build() {
   cd $pkgname-$pkgver
+
   ./configure --prefix=/usr \
 --disable-static
   make
@@ -24,7 +26,7 @@
 
 package() {
   cd $pkgname-$pkgver
+
   make DESTDIR=$pkgdir install
   install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
-md5sums=('48d375afb15f3e68a72cf7b4fd8f4a63')



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

2013-07-13 Thread Tom Gundersen
Date: Saturday, July 13, 2013 @ 20:59:19
  Author: tomegun
Revision: 190062

upgpkg: wayland 1.2.0-1

upstream release

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-13 18:28:32 UTC (rev 190061)
+++ PKGBUILD2013-07-13 18:59:19 UTC (rev 190062)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.1.0
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -27,4 +27,4 @@
   make DESTDIR=$pkgdir install
   install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
-md5sums=('d2dc9398a83692cafc16eba6e45f85d8')
+md5sums=('48d375afb15f3e68a72cf7b4fd8f4a63')



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

2013-04-16 Thread Tom Gundersen
Date: Tuesday, April 16, 2013 @ 14:12:48
  Author: tomegun
Revision: 182950

upgpkg: wayland 1.1.0-1

upstream release

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-16 10:32:11 UTC (rev 182949)
+++ PKGBUILD2013-04-16 12:12:48 UTC (rev 182950)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.0.6
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -27,4 +27,4 @@
   make DESTDIR=$pkgdir install
   install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
-md5sums=('936a2590aea69fa3c0cf234d54b9137c')
+md5sums=('d2dc9398a83692cafc16eba6e45f85d8')



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

2013-03-22 Thread Tom Gundersen
Date: Friday, March 22, 2013 @ 17:52:17
  Author: tomegun
Revision: 180519

upgpkg: wayland 1.0.6-1

upstream release

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-22 13:51:11 UTC (rev 180518)
+++ PKGBUILD2013-03-22 16:52:17 UTC (rev 180519)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.0.5
+pkgver=1.0.6
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -27,6 +27,4 @@
   make DESTDIR=$pkgdir install
   install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
-
-# vim:set ts=2 sw=2 et:
-md5sums=('e2e9ebfbaf9b013471c620b99938d764')
+md5sums=('936a2590aea69fa3c0cf234d54b9137c')



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

2013-02-18 Thread Andreas Radke
Date: Monday, February 18, 2013 @ 17:46:09
  Author: andyrtr
Revision: 178236

drop static libs for future builds - nothing needs them

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 16:38:26 UTC (rev 178235)
+++ PKGBUILD2013-02-18 16:46:09 UTC (rev 178236)
@@ -17,7 +17,8 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr \
+--disable-static
   make
 }
 



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

2013-02-14 Thread Tom Gundersen
Date: Friday, February 15, 2013 @ 00:49:14
  Author: tomegun
Revision: 178056

upgpkg: wayland 1.0.5-1

upstream release

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-14 23:39:56 UTC (rev 178055)
+++ PKGBUILD2013-02-14 23:49:14 UTC (rev 178056)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.0.4
+pkgver=1.0.5
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -14,7 +14,6 @@
 makedepends=('doxygen')
 options=(!libtool)
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('2f65654a54366cacd39a69bc5a41fea21b357e34')
 
 build() {
   cd $pkgname-$pkgver
@@ -29,3 +28,4 @@
 }
 
 # vim:set ts=2 sw=2 et:
+md5sums=('e2e9ebfbaf9b013471c620b99938d764')



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

2013-02-12 Thread Tom Gundersen
Date: Tuesday, February 12, 2013 @ 17:59:03
  Author: tomegun
Revision: 177966

update maintainer

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-12 16:58:33 UTC (rev 177965)
+++ PKGBUILD2013-02-12 16:59:03 UTC (rev 177966)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: Sébastien Luttringer
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Sébastien Luttringer
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland