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

Jan de Groot jgc at nymeria.archlinux.org
Wed Sep 18 14:32:05 UTC 2013


    Date: Wednesday, September 18, 2013 @ 16:32:04
  Author: jgc
Revision: 194565

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

Added:
  gjs/repos/gnome-unstable-i686/
  gjs/repos/gnome-unstable-i686/PKGBUILD
    (from rev 194564, gjs/trunk/PKGBUILD)
  gjs/repos/gnome-unstable-i686/gettext-typo.patch
    (from rev 194564, gjs/trunk/gettext-typo.patch)
  gjs/repos/gnome-unstable-x86_64/
  gjs/repos/gnome-unstable-x86_64/PKGBUILD
    (from rev 194564, gjs/trunk/PKGBUILD)
  gjs/repos/gnome-unstable-x86_64/gettext-typo.patch
    (from rev 194564, gjs/trunk/gettext-typo.patch)

------------------------------------------+
 gnome-unstable-i686/PKGBUILD             |   30 +++++++++++++++++++++++++++++
 gnome-unstable-i686/gettext-typo.patch   |   22 +++++++++++++++++++++
 gnome-unstable-x86_64/PKGBUILD           |   30 +++++++++++++++++++++++++++++
 gnome-unstable-x86_64/gettext-typo.patch |   22 +++++++++++++++++++++
 4 files changed, 104 insertions(+)

Copied: gjs/repos/gnome-unstable-i686/PKGBUILD (from rev 194564, gjs/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-i686/PKGBUILD	                        (rev 0)
+++ gnome-unstable-i686/PKGBUILD	2013-09-18 14:32:04 UTC (rev 194565)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=gjs
+pkgver=1.37.6
+pkgrel=1
+pkgdesc="Javascript Bindings for GNOME"
+arch=(i686 x86_64)
+url="http://live.gnome.org/Gjs"
+license=(GPL)
+depends=(cairo gobject-introspection 'js>=17.0.0')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/gjs/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c82af84216bd875cd311265c477783c839022117453c2af00e72be3faa644cbd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  #make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gjs/repos/gnome-unstable-i686/gettext-typo.patch (from rev 194564, gjs/trunk/gettext-typo.patch)
===================================================================
--- gnome-unstable-i686/gettext-typo.patch	                        (rev 0)
+++ gnome-unstable-i686/gettext-typo.patch	2013-09-18 14:32:04 UTC (rev 194565)
@@ -0,0 +1,22 @@
+From 178c810b7797ff2fca0440e519ddf4dbede589a1 Mon Sep 17 00:00:00 2001
+From: Giovanni Campagna <gcampagna at src.gnome.org>
+Date: Sun, 12 May 2013 16:46:19 +0000
+Subject: gettext: fix typo
+
+https://bugzilla.gnome.org/show_bug.cgi?id=700336
+---
+diff --git a/modules/gettext.js b/modules/gettext.js
+index 8f73c13..60991e1 100644
+--- a/modules/gettext.js
++++ b/modules/gettext.js
+@@ -46,7 +46,7 @@ function gettext(msgid) {
+     return GLib.dgettext(null, msgid);
+ }
+ function dgettext(domain, msgid) {
+-    return GLib.dgetext(domain, msgid);
++    return GLib.dgettext(domain, msgid);
+ }
+ function dcgettext(domain, msgid, category) {
+     return GLib.dcgettext(domain, msgid, category);
+--
+cgit v0.9.2

Copied: gjs/repos/gnome-unstable-x86_64/PKGBUILD (from rev 194564, gjs/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD	                        (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD	2013-09-18 14:32:04 UTC (rev 194565)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=gjs
+pkgver=1.37.6
+pkgrel=1
+pkgdesc="Javascript Bindings for GNOME"
+arch=(i686 x86_64)
+url="http://live.gnome.org/Gjs"
+license=(GPL)
+depends=(cairo gobject-introspection 'js>=17.0.0')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/gjs/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c82af84216bd875cd311265c477783c839022117453c2af00e72be3faa644cbd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  #make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gjs/repos/gnome-unstable-x86_64/gettext-typo.patch (from rev 194564, gjs/trunk/gettext-typo.patch)
===================================================================
--- gnome-unstable-x86_64/gettext-typo.patch	                        (rev 0)
+++ gnome-unstable-x86_64/gettext-typo.patch	2013-09-18 14:32:04 UTC (rev 194565)
@@ -0,0 +1,22 @@
+From 178c810b7797ff2fca0440e519ddf4dbede589a1 Mon Sep 17 00:00:00 2001
+From: Giovanni Campagna <gcampagna at src.gnome.org>
+Date: Sun, 12 May 2013 16:46:19 +0000
+Subject: gettext: fix typo
+
+https://bugzilla.gnome.org/show_bug.cgi?id=700336
+---
+diff --git a/modules/gettext.js b/modules/gettext.js
+index 8f73c13..60991e1 100644
+--- a/modules/gettext.js
++++ b/modules/gettext.js
+@@ -46,7 +46,7 @@ function gettext(msgid) {
+     return GLib.dgettext(null, msgid);
+ }
+ function dgettext(domain, msgid) {
+-    return GLib.dgetext(domain, msgid);
++    return GLib.dgettext(domain, msgid);
+ }
+ function dcgettext(domain, msgid, category) {
+     return GLib.dcgettext(domain, msgid, category);
+--
+cgit v0.9.2




More information about the arch-commits mailing list