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

Jan Steffens heftig at archlinux.org
Thu Jun 22 18:23:10 UTC 2017


    Date: Thursday, June 22, 2017 @ 18:23:10
  Author: heftig
Revision: 299146

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

Added:
  glib2/repos/testing-i686/
  glib2/repos/testing-i686/PKGBUILD
    (from rev 299145, glib2/trunk/PKGBUILD)
  glib2/repos/testing-i686/gio-querymodules.hook
    (from rev 299145, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-i686/glib-compile-schemas.hook
    (from rev 299145, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-i686/skip-broken-timer-test.patch
    (from rev 299145, glib2/trunk/skip-broken-timer-test.patch)
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
    (from rev 299145, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
    (from rev 299145, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
    (from rev 299145, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/skip-broken-timer-test.patch
    (from rev 299145, glib2/trunk/skip-broken-timer-test.patch)

---------------------------------------------+
 testing-i686/PKGBUILD                       |   85 ++++++++++++++++++++++++++
 testing-i686/gio-querymodules.hook          |   11 +++
 testing-i686/glib-compile-schemas.hook      |   12 +++
 testing-i686/skip-broken-timer-test.patch   |   12 +++
 testing-x86_64/PKGBUILD                     |   85 ++++++++++++++++++++++++++
 testing-x86_64/gio-querymodules.hook        |   11 +++
 testing-x86_64/glib-compile-schemas.hook    |   12 +++
 testing-x86_64/skip-broken-timer-test.patch |   12 +++
 8 files changed, 240 insertions(+)

Copied: glib2/repos/testing-i686/PKGBUILD (from rev 299145, glib2/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.52.3
+pkgrel=1
+pkgdesc="Low level core library"
+url="http://www.gtk.org/"
+arch=(i686 x86_64)
+makedepends=(gettext gtk-doc libffi pcre zlib shared-mime-info python libelf git util-linux)
+checkdepends=(desktop-file-utils dbus)
+_commit=90bb8778f2eabf00bee5bff1259c48f1e7b791b8  # tags/2.52.3^0
+source=("git+https://git.gnome.org/browse/glib#commit=$_commit"
+        glib-compile-schemas.hook
+        gio-querymodules.hook
+        skip-broken-timer-test.patch)
+sha256sums=('SKIP'
+            'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
+            '5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6'
+            'a39dc8c1c1707053d565d5b198b1f03f7c55b31e11335a1bfdc3f9803b114d5d')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+  git revert -n 6560b37450cd  # Noisy glib-compile-schemas
+
+  # Rounding error in timer tests?
+  # GLib:ERROR:timer.c:38:test_timer_basic: assertion failed (micros == ((guint64)(elapsed * 1e6)) % 1000000): (1 == 0)
+  [[ $CARCH == i686 ]] && patch -Np1 -i ../skip-broken-timer-test.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd glib
+  ./configure --prefix=/usr --libdir=/usr/lib \
+      --sysconfdir=/etc \
+      --with-pcre=system \
+      --disable-fam \
+      --enable-gtk-doc \
+      $(check_option debug y && echo --enable-debug=yes)
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd glib
+  make check
+}
+
+package_glib2() {
+  depends=(pcre libffi libutil-linux)
+  optdepends=('python: for gdbus-codegen and gtester-report'
+              'libelf: gresource inspection tool')
+  options=(!emptydirs)
+  license=(LGPL)
+
+  cd glib
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/share/gtk-doc"
+
+  # install hooks
+  install -d "$pkgdir/usr/share/libalpm/hooks/"
+  install -m644 "$srcdir"/{glib-compile-schemas,gio-querymodules}.hook \
+    "$pkgdir/usr/share/libalpm/hooks/"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for glib2"
+  conflicts=(gobject2-docs)
+  replaces=(gobject2-docs)
+  license=(custom)
+  options=(!emptydirs)
+
+  cd glib/docs
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/share/man"
+
+  install -Dm644 reference/COPYING "$pkgdir/usr/share/licenses/glib2-docs/COPYING"
+}

Copied: glib2/repos/testing-i686/gio-querymodules.hook (from rev 299145, glib2/trunk/gio-querymodules.hook)
===================================================================
--- testing-i686/gio-querymodules.hook	                        (rev 0)
+++ testing-i686/gio-querymodules.hook	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/*.so
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules /usr/lib/gio/modules

Copied: glib2/repos/testing-i686/glib-compile-schemas.hook (from rev 299145, glib2/trunk/glib-compile-schemas.hook)
===================================================================
--- testing-i686/glib-compile-schemas.hook	                        (rev 0)
+++ testing-i686/glib-compile-schemas.hook	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/glib-2.0/schemas/*.gschema.xml
+Target = usr/share/glib-2.0/schemas/*.gschema.override
+
+[Action]
+Description = Compiling GSettings XML schema files...
+When = PostTransaction
+Exec = /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

Copied: glib2/repos/testing-i686/skip-broken-timer-test.patch (from rev 299145, glib2/trunk/skip-broken-timer-test.patch)
===================================================================
--- testing-i686/skip-broken-timer-test.patch	                        (rev 0)
+++ testing-i686/skip-broken-timer-test.patch	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,12 @@
+diff --git i/glib/tests/Makefile.am w/glib/tests/Makefile.am
+index 43b11f05da63fa02..37406ecdf17e0094 100644
+--- i/glib/tests/Makefile.am
++++ w/glib/tests/Makefile.am
+@@ -106,7 +106,6 @@ test_programs = \
+ 	test-printf			\
+ 	thread				\
+ 	timeout				\
+-	timer				\
+ 	tree				\
+ 	utf8-performance		\
+ 	utf8-pointer			\

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 299145, glib2/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.52.3
+pkgrel=1
+pkgdesc="Low level core library"
+url="http://www.gtk.org/"
+arch=(i686 x86_64)
+makedepends=(gettext gtk-doc libffi pcre zlib shared-mime-info python libelf git util-linux)
+checkdepends=(desktop-file-utils dbus)
+_commit=90bb8778f2eabf00bee5bff1259c48f1e7b791b8  # tags/2.52.3^0
+source=("git+https://git.gnome.org/browse/glib#commit=$_commit"
+        glib-compile-schemas.hook
+        gio-querymodules.hook
+        skip-broken-timer-test.patch)
+sha256sums=('SKIP'
+            'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
+            '5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6'
+            'a39dc8c1c1707053d565d5b198b1f03f7c55b31e11335a1bfdc3f9803b114d5d')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+  git revert -n 6560b37450cd  # Noisy glib-compile-schemas
+
+  # Rounding error in timer tests?
+  # GLib:ERROR:timer.c:38:test_timer_basic: assertion failed (micros == ((guint64)(elapsed * 1e6)) % 1000000): (1 == 0)
+  [[ $CARCH == i686 ]] && patch -Np1 -i ../skip-broken-timer-test.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd glib
+  ./configure --prefix=/usr --libdir=/usr/lib \
+      --sysconfdir=/etc \
+      --with-pcre=system \
+      --disable-fam \
+      --enable-gtk-doc \
+      $(check_option debug y && echo --enable-debug=yes)
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd glib
+  make check
+}
+
+package_glib2() {
+  depends=(pcre libffi libutil-linux)
+  optdepends=('python: for gdbus-codegen and gtester-report'
+              'libelf: gresource inspection tool')
+  options=(!emptydirs)
+  license=(LGPL)
+
+  cd glib
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/share/gtk-doc"
+
+  # install hooks
+  install -d "$pkgdir/usr/share/libalpm/hooks/"
+  install -m644 "$srcdir"/{glib-compile-schemas,gio-querymodules}.hook \
+    "$pkgdir/usr/share/libalpm/hooks/"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for glib2"
+  conflicts=(gobject2-docs)
+  replaces=(gobject2-docs)
+  license=(custom)
+  options=(!emptydirs)
+
+  cd glib/docs
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/share/man"
+
+  install -Dm644 reference/COPYING "$pkgdir/usr/share/licenses/glib2-docs/COPYING"
+}

Copied: glib2/repos/testing-x86_64/gio-querymodules.hook (from rev 299145, glib2/trunk/gio-querymodules.hook)
===================================================================
--- testing-x86_64/gio-querymodules.hook	                        (rev 0)
+++ testing-x86_64/gio-querymodules.hook	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/*.so
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules /usr/lib/gio/modules

Copied: glib2/repos/testing-x86_64/glib-compile-schemas.hook (from rev 299145, glib2/trunk/glib-compile-schemas.hook)
===================================================================
--- testing-x86_64/glib-compile-schemas.hook	                        (rev 0)
+++ testing-x86_64/glib-compile-schemas.hook	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/glib-2.0/schemas/*.gschema.xml
+Target = usr/share/glib-2.0/schemas/*.gschema.override
+
+[Action]
+Description = Compiling GSettings XML schema files...
+When = PostTransaction
+Exec = /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

Copied: glib2/repos/testing-x86_64/skip-broken-timer-test.patch (from rev 299145, glib2/trunk/skip-broken-timer-test.patch)
===================================================================
--- testing-x86_64/skip-broken-timer-test.patch	                        (rev 0)
+++ testing-x86_64/skip-broken-timer-test.patch	2017-06-22 18:23:10 UTC (rev 299146)
@@ -0,0 +1,12 @@
+diff --git i/glib/tests/Makefile.am w/glib/tests/Makefile.am
+index 43b11f05da63fa02..37406ecdf17e0094 100644
+--- i/glib/tests/Makefile.am
++++ w/glib/tests/Makefile.am
+@@ -106,7 +106,6 @@ test_programs = \
+ 	test-printf			\
+ 	thread				\
+ 	timeout				\
+-	timer				\
+ 	tree				\
+ 	utf8-performance		\
+ 	utf8-pointer			\



More information about the arch-commits mailing list